diff --git a/.github/actions/setup_slurm_action/action.yml b/.github/actions/setup_slurm_action/action.yml index a5d771f02..8aa533cce 100644 --- a/.github/actions/setup_slurm_action/action.yml +++ b/.github/actions/setup_slurm_action/action.yml @@ -44,7 +44,7 @@ runs: SlurmdSpoolDir: /tmp/slurmd # the default /var/lib/slurm/slurmd does not work because of noexec mounting in github actions StateSaveLocation: /var/lib/slurm/slurmctld AccountingStorageType: accounting_storage/slurmdbd - SelectType: select/cons_res + SelectType: select/cons_tres slurmdbd_config: StorageType: accounting_storage/mysql PidFile: /run/slurmdbd.pid @@ -86,7 +86,7 @@ runs: shell: bash -e {0} run: | sudo retry --until=success -- sacctmgr -i create account "Name=runner" - sudo sacctmgr -i create user "Name=runner" "Account=runner" + sudo retry --until=success -- sacctmgr -i create user "Name=runner" "Account=runner" - name: Test srun submission shell: bash -e {0} diff --git a/CHANGELOG.md b/CHANGELOG.md index d27f9fa8b..1ddd20a40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,28 @@ Notable changes to Sparkle will be documented in this file. -## [0.9.1.1] - 2025/12/12 +## [0.9.3] - ??/??/2025 + +### Added +- Flushing completed jobs from jobs command by hitting spacebar [SPRK-313] + +## [0.9.2] - 07/01/2025 + +### Fixed +- Bugs regarding using Configuration with instance features [SPRK-364] +- Allow user to easily recompile runsolver with initialise command for Venv support [SPRK-367] +- Added performance data argument to clean up command [SPRK-367] +- Updated wait command to yield more information when jobs are finished [SPRK-367] + +### Added +- Added documentation on how to use Venv instead of Conda for Sparkle [SPRK-367] +- Added autocompletion for Sparkle CLI [SPRK-332] +- Cancelling a job through the interactive table now has a confirmation dialog [SPRK-343] + +### Changed +- The wait command and cancel command have been merged into the `jobs` command [SPRK-343] + +## [0.9.1.2] - 2025/12/12 Patchfix diff --git a/Documentation/requirements.txt b/Documentation/requirements.txt index a41fe116e..6155f750f 100644 --- a/Documentation/requirements.txt +++ b/Documentation/requirements.txt @@ -7,4 +7,4 @@ sphinx-copybutton sphinx_rtd_theme==2.0.0 pandas # Also in environment.yml but needed for sphinx filelock==3.15.1 -RunRunner==0.1.8 +RunRunner==0.1.9.1 diff --git a/Documentation/source/commandlist.md b/Documentation/source/commandlist.md index 790c7c3ec..8e02affde 100644 --- a/Documentation/source/commandlist.md +++ b/Documentation/source/commandlist.md @@ -2,7 +2,6 @@ - {ref}`cmd-add-feature-extractor` - {ref}`cmd-add-instances` - {ref}`cmd-add-solver` -- {ref}`cmd-cancel` - {ref}`cmd-cleanup` - {ref}`cmd-compute-features` - {ref}`cmd-compute-marginal-contribution` @@ -10,16 +9,14 @@ - {ref}`cmd-construct-portfolio-selector` - {ref}`cmd-generate-report` - {ref}`cmd-initialise` +- {ref}`cmd-jobs` - {ref}`cmd-load-snapshot` - {ref}`cmd-remove-feature-extractor` - {ref}`cmd-remove-instances` - {ref}`cmd-remove-solver` - {ref}`cmd-run-ablation` -- {ref}`cmd-run-configured-solver` - {ref}`cmd-run-parallel-portfolio` - {ref}`cmd-run-portfolio-selector` - {ref}`cmd-run-solvers` - {ref}`cmd-save-snapshot` - {ref}`cmd-status` -- {ref}`cmd-validate-configured-vs-default` -- {ref}`cmd-wait` diff --git a/Documentation/source/commands.md b/Documentation/source/commands.md index 0972d7900..c17665ec2 100644 --- a/Documentation/source/commands.md +++ b/Documentation/source/commands.md @@ -20,7 +20,7 @@ srun -N1 -n1 -c1 path/to/package/sparkle/CLI/initialise.py ``` In the `Examples/` directory a number of common command sequences are given. For instance, for configuration with specified training and -testing sets see e.g. `Examples/configuration_runtime.sh` for an example of a sequence of commands to execute. Note that some command run in the background and need time to complete before the next command is executed. To see whether a command is still running the `wait` command can be used. +testing sets see e.g. `Examples/configuration_runtime.sh` for an example of a sequence of commands to execute. Note that some command run in the background and need time to complete before the next command is executed. To see whether a command is still running the `jobs` command can be used. In the `Output/` directory paths to generated scripts and logs are gathered per executed command. diff --git a/Documentation/source/commandsautoprogram.md b/Documentation/source/commandsautoprogram.md index cec5cf663..af55083ff 100644 --- a/Documentation/source/commandsautoprogram.md +++ b/Documentation/source/commandsautoprogram.md @@ -30,14 +30,6 @@ ``` -(cmd-cancel)= - -```{eval-rst} -.. autoprogram:: sparkle.CLI.cancel:parser_function() - :prog: cancel - -``` - (cmd-cleanup)= ```{eval-rst} @@ -94,6 +86,14 @@ ``` +(cmd-jobs)= + +```{eval-rst} +.. autoprogram:: sparkle.CLI.jobs:parser_function() + :prog: jobs + +``` + (cmd-load-snapshot)= ```{eval-rst} @@ -173,11 +173,3 @@ :prog: status ``` - -(cmd-wait)= - -```{eval-rst} -.. autoprogram:: sparkle.CLI.wait:parser_function() - :prog: wait - -``` diff --git a/Documentation/source/conf.py b/Documentation/source/conf.py index 1ad64c5b3..1c3fe8e0a 100644 --- a/Documentation/source/conf.py +++ b/Documentation/source/conf.py @@ -23,7 +23,7 @@ from pygments.formatters.terminal import TerminalFormatter import sparkle.CLI -from sparkle.CLI.cli import commands +from sparkle.CLI._cli_ import commands # Add path to sparkle root sys.path.append(os.path.abspath("../../sparkle")) diff --git a/Documentation/source/faq.md b/Documentation/source/faq.md new file mode 100644 index 000000000..29ca28903 --- /dev/null +++ b/Documentation/source/faq.md @@ -0,0 +1,29 @@ +# Frequently Asked Questions + +In this section we discuss various questions and problems you may run into when using Sparkle. + +## Setting up + +A problem that can occur for most users in the beginning is setting up the required compilers and executables such as `GCC`, `R` or `Java`. + +### Lmod: I am having problems managing my versions in Lmod, what can I do? + +If your system works with [Lmod](http://lmod.readthedocs.org), we recommend loading the modules in the following order (Check that the versions are available): + +```bash +module load R/4.3.2 +module load Java/8.402 +module load numactl/2.0.16-GCCcore-12.2.0 +``` + +Whilst loading these modules you can receive various messages that module versions have changed whilst loading. Executing the loads in this order will ensure the changes are correct. Afterwards you can save your loaded modules as a set with nickname `sparkle` by typing: + +```bash +module save sparkle +``` + +Which can then at a later point easily be loaded by typing: + +```bash +module restore sparkle +``` diff --git a/Documentation/source/images/sparkle_platform_base.drawio b/Documentation/source/images/sparkle_platform_base.drawio new file mode 100644 index 000000000..b91c1b4eb --- /dev/null +++ b/Documentation/source/images/sparkle_platform_base.drawio @@ -0,0 +1,76 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Documentation/source/images/sparkle_platform_base.png b/Documentation/source/images/sparkle_platform_base.png new file mode 100644 index 000000000..4d911d76d Binary files /dev/null and b/Documentation/source/images/sparkle_platform_base.png differ diff --git a/Documentation/source/images/sparkle_platform_output.drawio b/Documentation/source/images/sparkle_platform_output.drawio new file mode 100644 index 000000000..64a58187f --- /dev/null +++ b/Documentation/source/images/sparkle_platform_output.drawio @@ -0,0 +1,181 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Documentation/source/images/sparkle_platform_output.png b/Documentation/source/images/sparkle_platform_output.png new file mode 100644 index 000000000..bf3a1cc85 Binary files /dev/null and b/Documentation/source/images/sparkle_platform_output.png differ diff --git a/Documentation/source/index.md b/Documentation/source/index.md index 2def92a2e..fbb70d45e 100644 --- a/Documentation/source/index.md +++ b/Documentation/source/index.md @@ -35,6 +35,10 @@ Furthermore, Sparkle handles various tasks for the user such as: ## Installation +Sparkle is a Python based package, but required several non-Python dependencies to run fully. The easiest installation is through Conda. A setup with Python virtual Environment is also possible, but requires more user input for the installation process. + +### Conda + The quick and full installation of Sparkle can be done using Conda (For Conda installation see [here]( https://docs.conda.io/en/latest/miniconda.html)). Simply download the `environment.yml` file from the [Github](https://github.com/ADA-research/Sparkle/blob/main/environment.yml) with wget: @@ -64,7 +68,11 @@ The creation of the Conda environment also takes care of the installation of the You will need to reactivate the environment every time you start the terminal, before using Sparkle. ``` -Sparkle can also be installed as a standalone package using Pip. We recommend creating a new virtual environment (For example, [venv](https://docs.python.org/3/library/venv.html)) before to ensure no clashes between dependencies occur. +### venv + +Sparkle can also be installed as a standalone package using Pip. We recommend creating a new virtual environment with [venv](https://docs.python.org/3/library/venv.html) before to ensure no clashes between dependencies occur. Note that when creating a new venv, Sparkle needs Python 3.10 to run, so create your virtual environment with this Python version active + +To install Sparkle in the virtual environment simply type: ```bash pip install SparkleAI @@ -72,7 +80,16 @@ pip install SparkleAI Note that a direct installation through Pip does not handle certain dependencies of the Sparkle CLI, such as the required libraries for compiling [RunSolver](https://www.cril.univ-artois.fr/~roussel/runsolver/). -### Install dependencies +You will need to supply, asside from the other dependencies in the next section, the following in your virtual environment: +- `Python 3.10` is required to use Sparkle +- `libnuma` and `numactl` in order to compile RunSolver. We suggest to use `GCC 12.2.0`. +- The `R6` package, in order to compile `IRACE` + +### Bash autocomplete + +If you wish for the Bash autocomplete to also work for Sparkle's CLI commands, you can type `sparkle install autocomplete`, which will append a single line of code to your `.bash_profile` allowing you to auto complete any sparkle command with the tab. + +### Dependencies Asside from several package dependencies, Sparkle's package / CLI relies on a few user supplied executables: - `LaTex` compiler ([pdflatex](https://gist.github.com/rain1024/98dd5e2c6c8c28f9ea9d)) for report generation - `Java`, tested with version 1.8.0_402, in order to use SMAC2 @@ -140,6 +157,7 @@ K. van der Blom, H. H. Hoos, C. Luo and J. G. Rook, **Sparkle: Toward Accessible ### Maintainers Thijs Snelleman, Jeroen Rook, +Hadar Shavit, Holger H. Hoos, ### Contributors @@ -157,7 +175,8 @@ Marie Anastacio, Aaron Berger Koen van der Blom, Noah Peil, -Brian Schiller +Brian Schiller, +Emir Pisiciri ### Contact sparkle@aim.rwth-aachen.de diff --git a/Documentation/source/tutorials.md b/Documentation/source/tutorials.md index a324529fd..dad2ca1c3 100644 --- a/Documentation/source/tutorials.md +++ b/Documentation/source/tutorials.md @@ -79,6 +79,18 @@ make cp VRP_SISRs ../ ``` +#### Untested: FastVC2+p and MetaVC + +FastVC2+p and MetaVC require `glibc-static` in order to compile, and are currently untested within Sparkle. Therefore none of the examples below make use of these solvers, but they are available in the downloadable resources. +It can be recompiled as follows in the `Examples/Resources/MinVC/Solvers/FastVC2+p` directory: + +```bash +unzip FastVC2+p_std_source_code.zip +cd FastVC2+p_std_source_code +make + +``` + ```{include} ../../Examples/configuration_runtime.md ``` diff --git a/Examples/Resources/MinVC/Solvers/FastVC2+p/sparkle_run_default_wrapper.py b/Examples/Resources/MinVC/Solvers/FastVC2+p/sparkle_run_default_wrapper.py deleted file mode 100755 index 4eb99c6f4..000000000 --- a/Examples/Resources/MinVC/Solvers/FastVC2+p/sparkle_run_default_wrapper.py +++ /dev/null @@ -1,94 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: UTF-8 -*- - -import argparse - -# Problem specific imports -import fcntl -import sys -from sparkle.types import SolverStatus - - -# Print a command line call for the target algorithm with a given instance file -def print_command(instance_file, seed_str: str, cutoff_time_str: str): - executable_name = 'fastvc2+p' - param_str = "-cand_count '198'" - - # NOTE: This algorithm requires the cutoff time, but to ensure consistent runtime - # measurements by Sparkle we multiply it by 10 to make sure the algorithm does not - # stop early, but is stopped by Sparkle (runsolver) consistenty with other solvers - cutoff_time_str = str(int(cutoff_time_str) * 10) - command_line = executable_name + ' -inst ' + instance_file + ' -seed ' + seed_str +\ - ' -cutoff_time ' + cutoff_time_str + ' -opt 0 ' + param_str - - print(command_line) - - -# Parse problem specific output and print it for Sparkle; or ask Sparkle to use it's -# own parser (SAT only) -def print_output(terminal_output_file): - # Read solution quality from file - infile = open(terminal_output_file, 'r') - fcntl.flock(infile.fileno(), fcntl.LOCK_EX) - - solution_quality = sys.maxsize - status = SolverStatus.UNKNOWN - lines = infile.readlines() - - for line in lines: - words = line.strip().split() - if len(words) <= 0: - continue - if len(words) >= 4 and words[1] == 'c' and words[2] == 'Arguments' and \ - words[3] == 'Error!': - status = SolverStatus.CRASHED - break - if len(words) >= 4 and words[1] == 'c' and words[2] == 'vertex_cover:': - temp_solution_quality = int(words[3]) - if solution_quality < 0 or temp_solution_quality < solution_quality: - solution_quality = temp_solution_quality - status = SolverStatus.SUCCESS - - infile.close() - - # [required for quality objective] Print keyword 'quality' followed by a space - # and the solution quality - print('quality ' + str(solution_quality)) - # [optional] Print keyword 'status' followed by a space and the run status - print('status ' + status.value) - - -# No editing needed for your own wrapper below this line ### - - -if __name__ == '__main__': - # Define command line arguments - parser = argparse.ArgumentParser() - group = parser.add_mutually_exclusive_group(required=True) - group.add_argument('--print-command', metavar='INSTANCE_FILE', type=str, - help='print command line call to the target algorithm \ - to stdout given an instance file') - group.add_argument('--print-output', metavar='TERMINAL_OUTPUT_FILE', type=str, - help='print target algorithm output in Sparkle format given an \ - output file containing what the algorithm wrote to the terminal') - parser.add_argument('--seed', metavar='VALUE', type=str, - help='required with --print-command; seed for the target \ - algorithm to use') - parser.add_argument('--cutoff-time', metavar='VALUE', type=str, - help='optional with --print-command; cutoff time in \ - seconds for the target algorithm') - - # Process command line arguments - args = parser.parse_args() - if args.print_command and args.seed is None: - parser.error('--print-command requires --seed') - instance_file = args.print_command - terminal_output_file = args.print_output - seed_str = args.seed - cutoff_time_str = args.cutoff_time - - # Call function based on arguments - if (instance_file is not None): - print_command(instance_file, seed_str, cutoff_time_str) - elif (terminal_output_file is not None): - print_output(terminal_output_file) diff --git a/Examples/Resources/MinVC/Solvers/FastVC2+p/sparkle_run_generic_wrapper.py b/Examples/Resources/MinVC/Solvers/FastVC2+p/sparkle_run_generic_wrapper.py deleted file mode 100755 index ede1bcedd..000000000 --- a/Examples/Resources/MinVC/Solvers/FastVC2+p/sparkle_run_generic_wrapper.py +++ /dev/null @@ -1,23 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: UTF-8 -*- - -import sys -import subprocess -from pathlib import Path - - -executable_name = r'fastvc2+p' - -relative_path = sys.argv[1] -minvc_instance_file = sys.argv[2] -cutoff_time_str = sys.argv[3] -seed_str = r'1' -para_str = " ".join(sys.argv[4:]) - -cmd_list = [Path(relative_path) / Path(executable_name), - "-inst", minvc_instance_file, - "-seed", seed_str, - "-cutoff_time", cutoff_time_str, - "-opt 0", para_str] - -subprocess.run(cmd_list) diff --git a/Examples/Resources/MinVC/Solvers/FastVC2+p/sparkle_solver_wrapper.py b/Examples/Resources/MinVC/Solvers/FastVC2+p/sparkle_solver_wrapper.py new file mode 100644 index 000000000..568d3561d --- /dev/null +++ b/Examples/Resources/MinVC/Solvers/FastVC2+p/sparkle_solver_wrapper.py @@ -0,0 +1,79 @@ +#!/usr/bin/env python3 +# -*- coding: UTF-8 -*- +"""FastVC2+p solver wrapper.""" +import sys +import subprocess +from pathlib import Path +from sparkle.types import SolverStatus +from sparkle.tools.solver_wrapper_parsing import parse_solver_wrapper_args + +# Convert the arguments to a dictionary +args = parse_solver_wrapper_args(sys.argv[1:]) + +# Extract and delete data that needs specific formatting +solver_dir = Path(args["solver_dir"]) +instance = Path(args["instance"]) +seed = args["seed"] +cutoff = args["cutoff_time"] + +del args["solver_dir"] +del args["instance"] +del args["cutoff_time"] +del args["seed"] + +solver_name = "fastvc2+p" +if solver_dir != Path("."): + solver_exec = f"{solver_dir / solver_name}" +else: + f"./{solver_name}" + +# NOTE: This algorithm requires the cutoff time, but to ensure consistent runtime +# measurements by Sparkle we multiply it by 10 to make sure the algorithm does not +# stop early, but is stopped by Sparkle (runsolver) consistenty with other solvers + +# NOTE: Unused optional arguments: +# -opt +# -cand_count +solver_cmd = [solver_exec, + "-inst", str(instance), + "-seed", str(seed), + "-cutoff_time", str(cutoff * 10)] + +# Construct call from args dictionary +params = [] +for key in args: + if args[key] is not None: + params.extend(["-" + str(key), str(args[key])]) + +try: + solver_call = subprocess.run(solver_cmd + params, + capture_output=True) +except Exception as ex: + print(f"Solver call failed with exception:\n{ex}") + +# Convert Solver output to dictionary for configurator target algorithm script +output_str = solver_call.stdout.decode() +# Optional: Print original output so the solution can be verified by SATVerifier +print(output_str) + +status = SolverStatus.UNKNOWN +solution_quality = sys.maxsize +for line in output_str.splitlines(): + words = line.strip().split() + if len(words) <= 0: + continue + if len(words) >= 4 and words[1] == 'c' and words[2] == 'Arguments' and \ + words[3] == 'Error!': + status = SolverStatus.CRASHED + break + if len(words) >= 4 and words[1] == 'c' and words[2] == 'vertex_cover:': + temp_solution_quality = int(words[3]) + if solution_quality < 0 or temp_solution_quality < solution_quality: + solution_quality = temp_solution_quality + status = SolverStatus.SUCCESS + +outdir = {"status": status.value, + "quality": solution_quality, + "solver_call": solver_cmd + params} + +print(outdir) diff --git a/Examples/Resources/MinVC/Solvers/MetaVC-Generic/sparkle_run_default_wrapper.py b/Examples/Resources/MinVC/Solvers/MetaVC-Generic/sparkle_run_default_wrapper.py deleted file mode 100755 index 63ea120bd..000000000 --- a/Examples/Resources/MinVC/Solvers/MetaVC-Generic/sparkle_run_default_wrapper.py +++ /dev/null @@ -1,74 +0,0 @@ -#!/usr/bin/env python3 -# -*- coding: UTF-8 -*- - -import argparse - -# Problem specific imports -import fcntl -import sys - - -# Print a command line call for the target algorithm with a given instance file -def print_command(instance_file, seed_str: str, cutoff_time_str: str): - executable_name = 'MetaVC' - param_str = "-opt '0' -print_sol '1' -edge_weight_p_scale '0.5214052710418935' -edge_weight_threshold_scale '0.414990365260387' -init_sol '1' -perform_adding_random_walk '0' -perform_bms '0' -perform_cc_adding '1' -perform_edge_weight_scheme '1' -perform_preprocess '1' -perform_removing_random_walk '0' -perform_ruin_and_reconstruct '0' -sel_adding_v '4' -sel_edge_weight_scheme '1' -sel_removing_v '2' -sel_uncov_e '1' -tabu_tenure '5'" - - command_line = executable_name + ' -inst ' + instance_file + ' -seed ' + seed_str + ' ' + param_str - - print(command_line) - - -# Parse problem specific output and print it for Sparkle; or ask Sparkle to use it's own parser (SAT only) -def print_output(terminal_output_file: str): - # Read solution quality from file - infile = open(terminal_output_file, 'r') - fcntl.flock(infile.fileno(), fcntl.LOCK_EX) - - solution_quality = sys.maxsize - status = 'UNKNOWN' - lines = infile.readlines() - - for line in lines: - words = line.strip().split() - if len(words) <= 0: - continue - if len(words) >=4 and words[1] == 'c' and words[2] == 'vertex_cover:': - temp_solution_quality = int(words[3]) - if solution_quality < 0 or temp_solution_quality < solution_quality: - solution_quality = temp_solution_quality - status = 'SUCCESS' - - infile.close() - - # [required for quality objective] Print keyword 'quality' followed by a space and the solution quality - print('quality ' + str(solution_quality)) - # [optional] Print keyword 'status' followed by a space and the run status - print('status ' + status) - - -### No editing needed for your own wrapper below this line ### - - -if __name__ == '__main__': - # Define command line arguments - parser = argparse.ArgumentParser() - group = parser.add_mutually_exclusive_group(required=True) - group.add_argument('--print-command', metavar='INSTANCE_FILE', type=str, help='print command line call to the target algorithm to stdout given an instance file') - group.add_argument('--print-output', metavar='TERMINAL_OUTPUT_FILE', type=str, help='print target algorithm output in Sparkle format given an output file containing what the algorithm wrote to the terminal') - parser.add_argument('--seed', metavar='VALUE', type=str, help='required with --print-command; seed for the target algorithm to use') - parser.add_argument('--cutoff-time', metavar='VALUE', type=str, help='optional with --print-command; cutoff time in seconds for the target algorithm') - - # Process command line arguments - args = parser.parse_args() - if args.print_command and args.seed is None: - parser.error('--print-command requires --seed') - instance_file = args.print_command - terminal_output_file = args.print_output - seed_str = args.seed - cutoff_time_str = args.cutoff_time - - # Call function based on arguments - if(instance_file is not None): - print_command(instance_file, seed_str, cutoff_time_str) - elif(terminal_output_file is not None): - print_output(terminal_output_file) diff --git a/Examples/Resources/MinVC/Solvers/MetaVC-Generic/sparkle_solver_wrapper.py b/Examples/Resources/MinVC/Solvers/MetaVC-Generic/sparkle_solver_wrapper.py new file mode 100644 index 000000000..f827633e2 --- /dev/null +++ b/Examples/Resources/MinVC/Solvers/MetaVC-Generic/sparkle_solver_wrapper.py @@ -0,0 +1,110 @@ +#!/usr/bin/env python3 +# -*- coding: UTF-8 -*- +"""MetaVC-Generic solver wrapper.""" +import sys +import subprocess +from pathlib import Path +from sparkle.types import SolverStatus +from sparkle.tools.solver_wrapper_parsing import parse_solver_wrapper_args + +# Convert the arguments to a dictionary +args = parse_solver_wrapper_args(sys.argv[1:]) + +# Extract and delete data that needs specific formatting +solver_dir = Path(args["solver_dir"]) +instance = Path(args["instance"]) +seed = args["seed"] +cutoff = args["cutoff_time"] + +del args["solver_dir"] +del args["instance"] +del args["cutoff_time"] +del args["seed"] + +solver_name = "MetaVC" +if solver_dir != Path("."): + solver_exec = f"{solver_dir / solver_name}" +else: + f"./{solver_name}" + +''' +c Usage: ./MetaVC (*Required*) +c -inst (*Required*) +c -seed (*Required*) +c -opt +c -print_sol {0, 1} (Default: 0) [Print solution] +c -perform_preprocess {0, 1} (Default: 1) +c -init_sol {1, 2} (Default: 1) +c -perform_ruin_and_reconstruct {0, 1} (Default: 0) +c -prob_ruin_and_reconstruct [0, 1] (Default: 0.001) +c -num_vertex_ruin_and_reconstruct {int, from 1 to 100} (Default: 10) +c -perform_removing_random_walk {0, 1} (Default: 0) +c -removing_prob_random_walk [0, 1] (Default: 0.05) +c -perform_bms {0, 1} (Default: 0) +c -bms_k {int, from 20 to 1000} (Default: 50) +c -sel_removing_v {1, 2, 3, 4, 5, 6, 7, 8, 9} (Default: 1) +c -tabu_tenure {int, from 1 to 100} (Default: 3) +c -removing_prob_novelty [0, 1] (Default: 0.5) +c -prob_distri_c1 [2, 10] (Default: 2.15) +c -prob_distri_c2 {int, from 1 to 10} (Default: 4) +c -prob_distri_c3 {int, from 10000 to 1000000} (Default: 75000) +c -perform_adding_random_walk {0, 1} (Default: 0) +c -adding_prob_random_walk [0, 1] (Default: 0.05) +c -perform_cc_adding {0, 1} (Default: 1) +c -sel_adding_v {1, 2, 3, 4, 5, 6} (Default: 1) +c -adding_prob_novelty [0, 1] (Default: 0.5) +c -sel_uncov_e {1, 2} (Default: 1) +c -perform_edge_weight_scheme {0, 1} (Default: 1) +c -sel_edge_weight_scheme {1, 2, 3, 4} (Default: 1) +c -edge_weight_threshold_scale [0, 1] (Default: 0.5) +c -edge_weight_p_scale [0, 1] (Default: 0.3) +c -edge_weight_q_scale [0, 1] (Default: 0.7) +c -paws_smooth_probability [0, 1] (Default: 0.8) +c -paws_periodical_step_length {int, from 50 to 10000} (Default: 200) +c -perform_vertex_weight_scheme {0, 1} (Default: 0) +c -sel_vertex_weight_scheme {1, 2} (Default: 1) +c -twmvc_smooth_probability [0, 1] (Default: 0.01) +c -twmvc_delta {int, from 1000 to 1000000} (Default: 100000) +c -twmvc_beta [0, 1] (Default: 0.8) +c -twmvc_periodical_step_length {int, from 50 to 10000} (Default: 100) +''' + +solver_cmd = [solver_exec, + "-inst", str(instance), + "-seed", str(seed)] + +# Construct call from args dictionary +params = [] +for key in args: + if args[key] is not None: + params.extend(["-" + str(key), str(args[key])]) + +try: + solver_call = subprocess.run(solver_cmd + params, + capture_output=True) +except Exception as ex: + print(f"Solver call failed with exception:\n{ex}") + +# Convert Solver output to dictionary for configurator target algorithm script +output_str = solver_call.stdout.decode() +# Optional: Print original output so the solution can be verified by SATVerifier +print(output_str) + +solution_quality = sys.maxsize +status = SolverStatus.UNKNOWN + +for line in output_str.splitlines(): + words = line.strip().split() + if len(words) <= 0: + continue + if len(words) >= 4 and words[1] == 'c' and words[2] == 'vertex_cover:': + temp_solution_quality = int(words[3]) + if solution_quality < 0 or temp_solution_quality < solution_quality: + solution_quality = temp_solution_quality + status = SolverStatus.SUCCESS + +outdir = {"status": status.value, + "quality": solution_quality, + "solver_call": solver_cmd + params} + +print(outdir) diff --git a/Examples/configuration_quality.md b/Examples/configuration_quality.md index 4da46d669..269cf7fcd 100644 --- a/Examples/configuration_quality.md +++ b/Examples/configuration_quality.md @@ -42,7 +42,7 @@ sparkle configure_solver --solver Solvers/VRP_SISRs/ --instance-set-train Instan Wait for the configuration to be completed: ```bash -sparkle wait +sparkle jobs ``` Generate a report detailing the results on the training (and optionally testing) set. This includes the experimental procedure and performance information; this will be located in `Output/Configuration/Analysis`. The configuration scenario is saved by Sparkle, including the specified objective. diff --git a/Examples/configuration_quality.sh b/Examples/configuration_quality.sh index e2d4a7856..e9d3663cb 100755 --- a/Examples/configuration_quality.sh +++ b/Examples/configuration_quality.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Auto-Generated .sh files from the original .md by Sparkle 0.9.0 +# Auto-Generated .sh files from the original .md by Sparkle 0.9.2 ## Algorithm Quality Configuration # We can configure an algorithm too based on some quality objective, that can be defined by the user. See the {ref}`SparkleObjective ` page for all options regarding objective defintions. @@ -36,7 +36,7 @@ sparkle configure_solver --solver Solvers/VRP_SISRs/ --instance-set-train Instan # Wait for the configuration to be completed: -sparkle wait +sparkle jobs # Generate a report detailing the results on the training (and optionally testing) set. This includes the experimental procedure and performance information; this will be located in `Output/Configuration/Analysis`. The configuration scenario is saved by Sparkle, including the specified objective. diff --git a/Examples/configuration_randomforest.md b/Examples/configuration_randomforest.md index 56718a043..517ec1f72 100644 --- a/Examples/configuration_randomforest.md +++ b/Examples/configuration_randomforest.md @@ -31,7 +31,7 @@ sparkle configure_solver --solver RandomForest --instance-set-train Iris --objec Wait for configuration to be completed ```bash -sparkle wait +sparkle jobs ``` Generate a report detailing the results on the training (and optionally testing) set. diff --git a/Examples/configuration_randomforest.sh b/Examples/configuration_randomforest.sh index fb4b50876..f13da93c1 100644 --- a/Examples/configuration_randomforest.sh +++ b/Examples/configuration_randomforest.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Auto-Generated .sh files from the original .md by Sparkle 0.9.0 +# Auto-Generated .sh files from the original .md by Sparkle 0.9.2 ## Configuring Random Forest on Iris @@ -25,7 +25,7 @@ sparkle configure_solver --solver RandomForest --instance-set-train Iris --objec # Wait for configuration to be completed -sparkle wait +sparkle jobs # Generate a report detailing the results on the training (and optionally testing) set. diff --git a/Examples/configuration_runtime.md b/Examples/configuration_runtime.md index 80ef5977b..e56c3bdcf 100644 --- a/Examples/configuration_runtime.md +++ b/Examples/configuration_runtime.md @@ -44,7 +44,7 @@ This step should take about ~10 minutes, although it is of course very cluster / We have to wait for the algorithm configuration to be completed, to get live updates on your terminal we can simply run: ```bash -sparkle wait +sparkle jobs ``` And now we can generate a report detailing the results on the training (and optionally testing) set. This includes the experimental procedure and performance information; this will be located in `Output/Configuration/Analysis/`. Note that you may get the warning that not all solvers have been run yet: Sometimes an algorithm call may crash and can easily be restarted by sparkle by running `sparkle run solvers`. @@ -69,7 +69,7 @@ sparkle run_ablation --solver Solvers/PbO-CCSAT-Generic/ --instance-set-train In Wait for ablation to be completed ```bash -sparkle wait +sparkle jobs ``` Generate a report including ablation, and as before the results on the train (and optionally test) set, the experimental procedure and performance information; this will be located in a `Configuration_Reports/` subdirectory for the solver, training set, and optionally test set like `PbO-CCSAT-Generic_PTN/Sparkle-latex-generator-for-configuration/` diff --git a/Examples/configuration_runtime.sh b/Examples/configuration_runtime.sh index 449051b22..b58efbce5 100644 --- a/Examples/configuration_runtime.sh +++ b/Examples/configuration_runtime.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Auto-Generated .sh files from the original .md by Sparkle 0.9.0 +# Auto-Generated .sh files from the original .md by Sparkle 0.9.2 ## Algorithm Runtime Configuration @@ -38,7 +38,7 @@ sparkle configure_solver --solver Solvers/PbO-CCSAT-Generic/ --instance-set-trai # We have to wait for the algorithm configuration to be completed, to get live updates on your terminal we can simply run: -sparkle wait +sparkle jobs # And now we can generate a report detailing the results on the training (and optionally testing) set. This includes the experimental procedure and performance information; this will be located in `Output/Configuration/Analysis/`. Note that you may get the warning that not all solvers have been run yet: Sometimes an algorithm call may crash and can easily be restarted by sparkle by running `sparkle run solvers`. @@ -57,7 +57,7 @@ sparkle run_ablation --solver Solvers/PbO-CCSAT-Generic/ --instance-set-train In # Wait for ablation to be completed -sparkle wait +sparkle jobs # Generate a report including ablation, and as before the results on the train (and optionally test) set, the experimental procedure and performance information; this will be located in a `Configuration_Reports/` subdirectory for the solver, training set, and optionally test set like `PbO-CCSAT-Generic_PTN/Sparkle-latex-generator-for-configuration/` @@ -69,7 +69,7 @@ sparkle generate_report #### Run configured solver on a single instance -# Now that we have a configured solver, we can run it on a single instance to get a result. +# Now that we have a configured solver, we can run it on a single instance to get a result. We do not have to specify which solver, as we only added one to Sparkle in this example. By specifying an instance set after `--best-configuration`, Sparkle will only consider configurations found for this instance set. sparkle run_solvers --best-configuration PTN --instance Examples/Resources/Instances/PTN2/Ptn-7824-b20.cnf --run-on local diff --git a/Examples/parallel_portfolio_runtime.sh b/Examples/parallel_portfolio_runtime.sh index 58c94713c..4ceb2ad44 100755 --- a/Examples/parallel_portfolio_runtime.sh +++ b/Examples/parallel_portfolio_runtime.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Auto-Generated .sh files from the original .md by Sparkle 0.9.0 +# Auto-Generated .sh files from the original .md by Sparkle 0.9.2 ## Running a Parallel Portfolio # In this tutorial we will measure the runtime performance of several algorithms in parallel. The general idea is that we consider the algorithms as a portfolio that we run in parallel (hence the name) and terminate all running algorithms once a solution is found. diff --git a/Examples/selection.md b/Examples/selection.md index 4f16285db..e128cca87 100644 --- a/Examples/selection.md +++ b/Examples/selection.md @@ -49,17 +49,17 @@ sparkle run solvers --performance-data ``` ### Construct a portfolio selector -To make sure feature computation and solver performance computation are done before constructing the portfolio use the `wait` command +To make sure feature computation and solver performance computation are done before constructing the portfolio use the `jobs` command ```bash -sparkle wait +sparkle jobs ``` Now we can construct a portfolio selector, using the previously computed features and the objective value results of running the solvers. We can specify an objective to select on with the `--objective` flag, but if we do not, Sparkle will default to the first objective specified in the Settings file. The `--selector-timeout` argument determines for how many seconds we will train our selector for. We can set the flag `--solver-ablation` for actual marginal contribution computation later. ```bash sparkle construct portfolio selector --selector-timeout 1000 --solver-ablation -sparkle wait # Wait for the constructor to complete its computations +sparkle jobs # Wait for the constructor to complete its computations ``` ### Generate a report @@ -86,7 +86,7 @@ Run the portfolio selector on a testing instance *set* ```bash sparkle run portfolio selector Examples/Resources/Instances/PTN2/ -sparkle wait # Wait for the portfolio selector to be done running on the testing instance set +sparkle jobs # Wait for the portfolio selector to be done running on the testing instance set ``` #### Generate a report including results on the test set @@ -125,21 +125,21 @@ We compute the features for the new extractor and new instances. ```bash sparkle compute features -sparkle wait # Wait for it to complete before continuing +sparkle jobs # Wait for it to complete before continuing ``` And run the solvers on the new data set. ```bash sparkle run solvers --performance-data -sparkle wait +sparkle jobs ``` Now we can train a selector based on these features. ```bash sparkle construct portfolio selector --selector-timeout 1000 -sparkle wait #Wait for the computation to be done +sparkle jobs # Wait for the computation to be done ``` And generate the report. When running on the PTN/PTN2 data sets, you can compare the two to see the impact of different feature extractors. diff --git a/Examples/selection.sh b/Examples/selection.sh index 0665f1630..1f7e6c3e9 100755 --- a/Examples/selection.sh +++ b/Examples/selection.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Auto-Generated .sh files from the original .md by Sparkle 0.9.0 +# Auto-Generated .sh files from the original .md by Sparkle 0.9.2 ## Algorithm Selection @@ -35,19 +35,19 @@ sparkle add feature extractor Examples/Resources/Extractors/SAT-features-competi sparkle compute features ### Run the solvers -# Similarly, we can now also compute our objective values for our solvers, in this case PAR10. Note that we can at this point still specifiy multiple objectives by separating them with a comma, or denote them in our settings file. +# Similarly, we can now also compute our objective values for our solvers, in this case PAR10 as specified in the settings file. We run the run solvers command with the `--performance-data`, so Sparkle will compute all empty values in the performance data frame. sparkle run solvers --performance-data ### Construct a portfolio selector -# To make sure feature computation and solver performance computation are done before constructing the portfolio use the `wait` command +# To make sure feature computation and solver performance computation are done before constructing the portfolio use the `jobs` command -sparkle wait +sparkle jobs -# Now we can construct a portfolio selector, using the previously computed features and the results of running the solvers. The `--selector-timeout` argument determines for how many seconds we will train our selector for. We can set the flag `--solver-ablation` for actual marginal contribution computation later. +# Now we can construct a portfolio selector, using the previously computed features and the objective value results of running the solvers. We can specify an objective to select on with the `--objective` flag, but if we do not, Sparkle will default to the first objective specified in the Settings file. The `--selector-timeout` argument determines for how many seconds we will train our selector for. We can set the flag `--solver-ablation` for actual marginal contribution computation later. sparkle construct portfolio selector --selector-timeout 1000 --solver-ablation -sparkle wait # Wait for the constructor to complete its computations +sparkle jobs # Wait for the constructor to complete its computations ### Generate a report @@ -68,7 +68,7 @@ sparkle run portfolio selector Examples/Resources/Instances/PTN2/plain7824.cnf - # Run the portfolio selector on a testing instance *set* sparkle run portfolio selector Examples/Resources/Instances/PTN2/ -sparkle wait # Wait for the portfolio selector to be done running on the testing instance set +sparkle jobs # Wait for the portfolio selector to be done running on the testing instance set #### Generate a report including results on the test set @@ -97,17 +97,17 @@ sparkle add instances Examples/Resources/Instances/SATCOMP2023_SUB # We compute the features for the new extractor and new instances. sparkle compute features -sparkle wait # Wait for it to complete before continuing +sparkle jobs # Wait for it to complete before continuing # And run the solvers on the new data set. -sparkle run solvers -sparkle wait +sparkle run solvers --performance-data +sparkle jobs # Now we can train a selector based on these features. sparkle construct portfolio selector --selector-timeout 1000 -sparkle wait #Wait for the computation to be done +sparkle jobs # Wait for the computation to be done # And generate the report. When running on the PTN/PTN2 data sets, you can compare the two to see the impact of different feature extractors. diff --git a/Examples/selection_multi-file_instance.md b/Examples/selection_multi-file_instance.md index 45cc46ae5..9c08a895a 100644 --- a/Examples/selection_multi-file_instance.md +++ b/Examples/selection_multi-file_instance.md @@ -55,7 +55,7 @@ sparkle run_solvers --objectives quality To make sure feature computation and solver performance computation are done before constructing the portfolio use the `wait` command ```bash -sparkle wait +sparkle jobs ``` Construct a portfolio selector, using the previously computed features and the results of running the solvers. We again set the objective measure to quality. @@ -87,7 +87,7 @@ sparkle run_portfolio_selector Examples/Resources/CCAG/Instances/CCAG2/ --object Wait for the portfolio selector to be done running on the testing instance set ```bash -sparkle wait +sparkle jobs ``` Generate an experimental report that includes the results on the test set, and as before the experimental procedure and performance information; this will be located at `Components/Sparkle-latex-generator/Sparkle_Report_For_Test.pdf`. We again set the obejctive to quality. diff --git a/Examples/selection_multi-file_instance.sh b/Examples/selection_multi-file_instance.sh index f4eeed0d8..1303ec606 100755 --- a/Examples/selection_multi-file_instance.sh +++ b/Examples/selection_multi-file_instance.sh @@ -1,5 +1,5 @@ #!/usr/bin/env bash -# Auto-Generated .sh files from the original .md by Sparkle 0.9.0 +# Auto-Generated .sh files from the original .md by Sparkle 0.9.2 ## Algorithm selection with multi-file instances @@ -45,7 +45,7 @@ sparkle run_solvers --objectives quality # To make sure feature computation and solver performance computation are done before constructing the portfolio use the `wait` command -sparkle wait +sparkle jobs # Construct a portfolio selector, using the previously computed features and the results of running the solvers. We again set the objective measure to quality. @@ -69,7 +69,7 @@ sparkle run_portfolio_selector Examples/Resources/CCAG/Instances/CCAG2/ --object # Wait for the portfolio selector to be done running on the testing instance set -sparkle wait +sparkle jobs # Generate an experimental report that includes the results on the test set, and as before the experimental procedure and performance information; this will be located at `Components/Sparkle-latex-generator/Sparkle_Report_For_Test.pdf`. We again set the obejctive to quality. diff --git a/README.md b/README.md index 0b4e601b8..d54d3a36c 100644 --- a/README.md +++ b/README.md @@ -20,8 +20,13 @@ Furthermore, Sparkle handles various tasks for the user such as: * Compute cluster job submission and monitoring * Log file collection + ## Installation +Sparkle is a Python based package, but required several non-Python dependencies to run fully. The easiest installation is through Conda. A setup with Python virtual Environment is also possible, but requires more user input for the installation process. + +### Conda + The quick and full installation of Sparkle can be done using Conda (For Conda installation see [here]( https://docs.conda.io/en/latest/miniconda.html)). Simply download the `environment.yml` file from the [Github](https://github.com/ADA-research/Sparkle/blob/main/environment.yml) with wget: @@ -51,7 +56,11 @@ The creation of the Conda environment also takes care of the installation of the You will need to reactivate the environment every time you start the terminal, before using Sparkle. ``` -Sparkle can also be installed as a standalone package using Pip. We recommend creating a new virtual environment (For example, [venv](https://docs.python.org/3/library/venv.html)) before to ensure no clashes between dependencies occur. +### venv + +Sparkle can also be installed as a standalone package using Pip. We recommend creating a new virtual environment with [venv](https://docs.python.org/3/library/venv.html) before to ensure no clashes between dependencies occur. Note that when creating a new venv, Sparkle needs Python 3.10 to run, so create your virtual environment with this Python version active + +To install Sparkle in the virtual environment simply type: ```bash pip install SparkleAI @@ -59,11 +68,20 @@ pip install SparkleAI Note that a direct installation through Pip does not handle certain dependencies of the Sparkle CLI, such as the required libraries for compiling [RunSolver](https://www.cril.univ-artois.fr/~roussel/runsolver/). -### Install dependencies +You will need to supply, asside from the other dependencies in the next section, the following in your virtual environment: +- `Python 3.10` is required to use Sparkle +- `libnuma` and `numactl` in order to compile RunSolver. We suggest to use `GCC 12.2.0`. +- The `R6` package, in order to compile `IRACE` + +### Bash autocomplete + +If you wish for the Bash autocomplete to also work for Sparkle's CLI commands, you can type `sparkle install autocomplete`, which will append a single line of code to your `.bash_profile` allowing you to auto complete any sparkle command with the tab. + +### Dependencies Asside from several package dependencies, Sparkle's package / CLI relies on a few user supplied executables: - `LaTex` compiler ([pdflatex](https://gist.github.com/rain1024/98dd5e2c6c8c28f9ea9d)) for report generation - `Java`, tested with version 1.8.0_402, in order to use SMAC2 -- `R`, tested with version 4.3.1 in order to use IRACE +- `R` 4.3.1, in order to use IRACE Other dependencies are handled by the Conda environment, but if that is not an option for you please ensure you have the following: @@ -127,6 +145,7 @@ K. van der Blom, H. H. Hoos, C. Luo and J. G. Rook, **Sparkle: Toward Accessible ### Maintainers Thijs Snelleman, Jeroen Rook, +Hadar Shavit, Holger H. Hoos, ### Contributors @@ -144,7 +163,8 @@ Marie Anastacio, Aaron Berger Koen van der Blom, Noah Peil, -Brian Schiller +Brian Schiller, +Emir Pisiciri ### Contact sparkle@aim.rwth-aachen.de diff --git a/dist/SparkleAI-0.9.2.tar.gz b/dist/SparkleAI-0.9.2.tar.gz new file mode 100644 index 000000000..6396ad92d Binary files /dev/null and b/dist/SparkleAI-0.9.2.tar.gz differ diff --git a/dist/sparkleai-0.9.1.2.tar.gz b/dist/sparkleai-0.9.1.2.tar.gz new file mode 100644 index 000000000..326dde54e Binary files /dev/null and b/dist/sparkleai-0.9.1.2.tar.gz differ diff --git a/setup.py b/setup.py index e8c104ef3..606e87892 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ "tabulate==0.9.0", "pytermgui==7.7.2", "tqdm==4.66.5", - "RunRunner==0.1.8", + "RunRunner==0.1.9.1", # Reporting packages "plotly==5.24.1", "kaleido==0.2.1", @@ -34,4 +34,4 @@ "smac==2.2.0", ], include_package_data=True, - entry_points={"console_scripts": ["sparkle=sparkle.CLI.cli:main"], },) + entry_points={"console_scripts": ["sparkle=sparkle.CLI._cli_:main"], },) diff --git a/sparkle/CLI/cli.py b/sparkle/CLI/_cli_.py similarity index 66% rename from sparkle/CLI/cli.py rename to sparkle/CLI/_cli_.py index a5ec7f9aa..9225974c9 100644 --- a/sparkle/CLI/cli.py +++ b/sparkle/CLI/_cli_.py @@ -24,11 +24,6 @@ def commands() -> list[str]: def main() -> None: """Pass through command to launch CLI commands.""" - # Make sure Core and Package commands are executable - # NOTE: This would preferably be in a post-install script so its only done once - for path in package_cli_entry_points: - if not os.access(path, os.X_OK): # Pip installation changes exec rights - path.chmod(0o755) max_space = max([path.name.count("_") for path in module_path.iterdir() if path.is_file()]) if len(sys.argv) < 2: @@ -42,12 +37,22 @@ def main() -> None: command_file = module_path / f"{command}.py" if command in possible_commands: break + if command_file.is_file(): - if not os.access(command_file, os.X_OK): # Pip installation changes exec rights - command_file.chmod(0o755) - os.system(f"{command_file} {' '.join(args)}") + os.system(f"python3 {command_file} {' '.join(args)}") + elif command == "install_autocomplete": + script_path = module_path / "autocomplete.sh" + bash_profile = Path.home() / ".bash_profile" + if not bash_profile.exists(): + bash_profile.open("w+").close() + bash_profile.open("a").write( + "\n#----- Sparkle AutoComplete ----\n" + f"source {script_path.absolute()}" + "\n#----- Sparkle AutoComplete ----\n") + print(f"Sparkle autocomplete installed! To enable, run `source {bash_profile}` " + "or restart your terminal.") else: - print(f"Does not understand command {command}") + print(f"Sparkle does not understand command <{command}>") if __name__ == "__main__": diff --git a/sparkle/CLI/add_feature_extractor.py b/sparkle/CLI/add_feature_extractor.py index 609fae661..4d701349c 100755 --- a/sparkle/CLI/add_feature_extractor.py +++ b/sparkle/CLI/add_feature_extractor.py @@ -32,14 +32,13 @@ def main(argv: list[str]) -> None: """Main function of the add feature extractor command.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() parser = parser_function() # Process command line arguments args = parser.parse_args(argv) - check_for_initialise() - extractor_source = Path(args.extractor_path) if not extractor_source.exists(): print(f'Feature extractor path "{extractor_source}" does not exist!') diff --git a/sparkle/CLI/add_instances.py b/sparkle/CLI/add_instances.py index 47e7312b4..cb3a9386f 100755 --- a/sparkle/CLI/add_instances.py +++ b/sparkle/CLI/add_instances.py @@ -35,14 +35,13 @@ def main(argv: list[str]) -> None: # Define command line arguments parser = parser_function() + check_for_initialise() # Process command line arguments args = parser.parse_args(argv) instances_source = Path(args.instances_path) instances_target = gv.settings().DEFAULT_instance_dir / instances_source.name - check_for_initialise() - if not instances_source.exists(): print(f'Instance set path "{instances_source}" does not exist!') sys.exit(-1) diff --git a/sparkle/CLI/add_solver.py b/sparkle/CLI/add_solver.py index a4f7e9f1f..50388b94c 100755 --- a/sparkle/CLI/add_solver.py +++ b/sparkle/CLI/add_solver.py @@ -36,6 +36,7 @@ def main(argv: list[str]) -> None: """Main function of the command.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -46,8 +47,6 @@ def main(argv: list[str]) -> None: deterministic = args.deterministic solution_verifier = args.solution_verifier - check_for_initialise() - if not solver_source.exists(): print(f'Solver path "{solver_source}" does not exist!') sys.exit(-1) diff --git a/sparkle/CLI/autocomplete.sh b/sparkle/CLI/autocomplete.sh new file mode 100755 index 000000000..09164b4c4 --- /dev/null +++ b/sparkle/CLI/autocomplete.sh @@ -0,0 +1,37 @@ +# -------------------------------- Sparkle autocomplete --------------------------------- +_sparkle_target() { + local cur opts + # Retrieving the current typed argument + cur="${COMP_WORDS[COMP_CWORD]}" + + # Preparing an array to store available list for completions + # COMREPLY will be checked to suggest the list + COMPREPLY=() + + # Here, we only handle the case of the second keyword, first being sparkle + # we want to leave the autocomplete of the standard usage to the default, + # so COMREPLY stays an empty array and we fallback through "-o default" + if [ "${#COMP_WORDS[@]}" -gt 2 ]; then + return 0 + fi + + # Package path is the path of this file's dir + PACKAGE_PATH=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd ) + + # Otherwise, first we retrieve all paths of folder and .py files inside the package, + # we keep only the package related section, remove the .py extension and convert their separators into dots + opts=$(find $PACKAGE_PATH -maxdepth 1 -name "[a-zA-Z]*.py" | sed "s|$PACKAGE_PATH/||" | sed "s|\.py||") + + # Then we store the whole list by invoking "compgen" and filling COMREPLY with its output content. + # To mimick standard bash autocompletions we truncate autocomplete to the next folder (identified by dots) + COMPREPLY=($(compgen -W "$opts" -- "$cur")) +} + +# nospace disables printing of a space at the end of autocomplete, +# it allows to chain the autocomplete but: +# - removes the indication on end of chain that only one match was found. +# - removes the addition of the trailing / for standard python completion on folders +# -o default makes sure that default behaviour of bash is used when our script returns 0 +complete -F _sparkle_target -o default sparkle + +# -------------------------------- Sparkle autocomplete --------------------------------- diff --git a/sparkle/CLI/cancel.py b/sparkle/CLI/cancel.py deleted file mode 100755 index 0161edca6..000000000 --- a/sparkle/CLI/cancel.py +++ /dev/null @@ -1,102 +0,0 @@ -#!/usr/bin/env python3 -"""Command to cancel async jobs.""" -import sys -import argparse -import pytermgui as ptg - -from runrunner.base import Status - -from sparkle.CLI.help import logging -from sparkle.CLI.help import argparse_custom as ac -from sparkle.CLI.help import jobs as jobs_help -from sparkle.CLI.help import global_variables as gv - - -def parser_function() -> argparse.ArgumentParser: - """Create parser for the cancel command.""" - parser = argparse.ArgumentParser(description="Command to cancel running jobs.") - parser.add_argument(*ac.JobIDsArgument.names, **ac.JobIDsArgument.kwargs) - parser.add_argument(*ac.AllJobsArgument.names, **ac.AllJobsArgument.kwargs) - return parser - - -def main(argv: list[str]) -> None: - """Main function of the cancel command.""" - # Log command call - logging.log_command(sys.argv) - - # Define command line arguments - parser = parser_function() - - # Process command line arguments - args = parser.parse_args(argv) - - # Filter jobs on relevant status - path = gv.settings().DEFAULT_log_output - jobs = [run for run in jobs_help.get_runs_from_file(path) - if run.status == Status.WAITING or run.status == Status.RUNNING] - if args.all or args.job_ids: - killed_jobs = [] - for j in jobs: - if args.all or j.run_id in args.job_ids: - j.kill() - killed_jobs.append(j) - if len(killed_jobs) == 0: - if args.all: - print("No jobs to cancel.") - sys.exit(0) - else: - print(f"ERROR: No jobs with ids {args.job_ids} to cancel.") - # NOTE: Should we raise an error here instead? - sys.exit(-1) - print(f"Canceled {len(killed_jobs)} jobs with IDs: " - f"{', '.join([j.run_id for j in killed_jobs])}.") - elif len(jobs) == 0: - print("No jobs available to cancel.") - else: - jobs = sorted(jobs, key=lambda j: j.run_id) - ptg.Button.chars = {"delimiter": ["", ""]} # Disable padding around buttons - - def cancel_jobs(self: ptg.Button) -> None: - """Cancel jobs based on a button click.""" - job_id = self.label.split("|")[1].strip() - for job in jobs: - if job.run_id == job_id: - job.kill() - # Replace button with label - for iw, widget in enumerate(self.parent._widgets): - if isinstance(widget, ptg.Button) and \ - widget.label == self.label: - self.parent._widgets[iw] = ptg.Label(self.label) - break - refresh_data(self.parent) - - def refresh_data(self: ptg.Window) -> None: - """Refresh the table.""" - data_table = jobs_help.create_jobs_table(jobs, markup=True).splitlines() - for iw, widget in enumerate(self._widgets): - self._widgets[iw] = type(widget)(data_table[iw], onclick=cancel_jobs) - self._widgets[iw].parent = self - - table = jobs_help.create_jobs_table(jobs, markup=True).splitlines() - with ptg.WindowManager() as manager: - window = ( - ptg.Window( - width=len(table[0]), - box="EMPTY", - ) - .set_title("Running Sparkle Jobs") - ) - for row in table: - if "|" not in row or not row.split("|")[1].strip().isnumeric(): - window._add_widget(ptg.Label(row)) - else: - window._add_widget(ptg.Button(label=row, onclick=cancel_jobs)) - - manager.add(window) - - sys.exit(0) - - -if __name__ == "__main__": - main(sys.argv[1:]) diff --git a/sparkle/CLI/cleanup.py b/sparkle/CLI/cleanup.py index bc4af821a..437648702 100755 --- a/sparkle/CLI/cleanup.py +++ b/sparkle/CLI/cleanup.py @@ -8,6 +8,7 @@ from sparkle.CLI.help import global_variables as gv from sparkle.CLI.help import argparse_custom as ac from sparkle.CLI.help import snapshot_help as snh +from sparkle.CLI.help import jobs as jobs_help def parser_function() -> argparse.ArgumentParser: @@ -17,6 +18,8 @@ def parser_function() -> argparse.ArgumentParser: parser.add_argument(*ac.CleanupArgumentAll.names, **ac.CleanupArgumentAll.kwargs) parser.add_argument(*ac.CleanupArgumentRemove.names, **ac.CleanupArgumentRemove.kwargs) + parser.add_argument(*ac.CleanUpPerformanceDataArgument.names, + **ac.CleanUpPerformanceDataArgument.kwargs) return parser @@ -47,6 +50,26 @@ def main(argv: list[str]) -> None: else: remove_temporary_files() print("Cleaned platform of temporary files!") + if args.performance_data: + # Check if we can cleanup the PerformanceDataFrame if necessary + from runrunner.base import Status + running_jobs = jobs_help.get_runs_from_file(gv.settings().DEFAULT_log_output, + filter=[Status.WAITING, + Status.RUNNING]) + if len(running_jobs) > 0: + print("WARNING: There are still running jobs! Continue cleaning? [y/n]") + a = input() + if a != "y": + sys.exit(0) + from sparkle.structures import PerformanceDataFrame + performance_data = PerformanceDataFrame( + gv.settings().DEFAULT_performance_data_path) + index_num = len(performance_data.index) + # We only clean lines that are completely empty + performance_data.remove_empty_runs() + performance_data.save_csv() + print(f"Removed {index_num - len(performance_data.index)} rows from the " + f"Performance DataFrame, leaving {len(performance_data.index)} rows.") sys.exit(0) diff --git a/sparkle/CLI/compute_features.py b/sparkle/CLI/compute_features.py index 43efdeab2..8432310e8 100755 --- a/sparkle/CLI/compute_features.py +++ b/sparkle/CLI/compute_features.py @@ -71,7 +71,7 @@ def compute_features( for instance_path, extractor_name, feature_group in jobs: extractor_path = gv.settings().DEFAULT_extractor_dir / extractor_name instance_paths.add(instance_path) - cmd = (f"{features_core} " + cmd = (f"python3 {features_core} " f"--instance {instance_path} " f"--extractor {extractor_path} " f"--feature-csv {feature_data.csv_filepath} " @@ -123,6 +123,7 @@ def main(argv: list[str]) -> None: """Main function of the compute features command.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -130,8 +131,6 @@ def main(argv: list[str]) -> None: # Process command line arguments args = parser.parse_args(argv) - check_for_initialise() - if ac.set_by_user(args, "settings_file"): gv.settings().read_settings_ini( args.settings_file, SettingState.CMD_LINE diff --git a/sparkle/CLI/compute_marginal_contribution.py b/sparkle/CLI/compute_marginal_contribution.py index fdc620fd1..2c186c98d 100755 --- a/sparkle/CLI/compute_marginal_contribution.py +++ b/sparkle/CLI/compute_marginal_contribution.py @@ -193,6 +193,7 @@ def main(argv: list[str]) -> None: """Main function of the marginal contribution command.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -200,8 +201,6 @@ def main(argv: list[str]) -> None: # Process command line arguments args = parser.parse_args(argv) - check_for_initialise() - if ac.set_by_user(args, "settings_file"): gv.settings().read_settings_ini( args.settings_file, SettingState.CMD_LINE diff --git a/sparkle/CLI/configure_solver.py b/sparkle/CLI/configure_solver.py index c6333189e..750366a6a 100755 --- a/sparkle/CLI/configure_solver.py +++ b/sparkle/CLI/configure_solver.py @@ -3,11 +3,8 @@ from __future__ import annotations import argparse import sys -import os import math -from pandas import DataFrame - from runrunner import Runner from sparkle.CLI.help import global_variables as gv @@ -19,7 +16,6 @@ from sparkle.platform.settings_objects import SettingState from sparkle.structures import PerformanceDataFrame, FeatureDataFrame -from sparkle.configurator import implementations as configurator_implementations from sparkle.solver import Solver from sparkle.instance import Instance_Set @@ -89,6 +85,7 @@ def main(argv: list[str]) -> None: """Main function of the configure solver command.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() parser = parser_function() @@ -118,39 +115,8 @@ def main(argv: list[str]) -> None: use_features = args.use_features run_on = gv.settings().get_run_on() - check_for_initialise() - configurator = gv.settings().get_general_sparkle_configurator() configurator_settings = gv.settings().get_configurator_settings(configurator.name) - if use_features and configurator.name == configurator_implementations.SMAC2.__name__: - feature_data = FeatureDataFrame(gv.settings().DEFAULT_feature_data_path) - - data_dict = {} - feature_data_df = feature_data.dataframe - - for label, row in feature_data_df.iterrows(): - # os.path.split(os.path.split(label)[0])[1] gives the dir/instance set name - if os.path.split(os.path.split(label)[0])[1] == instance_set_train.name: - if row.empty: - print("No feature data exists for the given training set, please " - "run add_feature_extractor.py, then compute_features.py") - sys.exit(-1) - - new_label = (f"../../../instances/{instance_set_train.name}/" - + os.path.split(label)[1]) - data_dict[new_label] = row - - feature_data_df = DataFrame.from_dict(data_dict, orient="index", - columns=feature_data_df.columns) - - if feature_data.has_missing_value(): - print("You have unfinished feature computation jobs, please run " - "`sparkle compute features`") - sys.exit(-1) - - for index, column in enumerate(feature_data_df): - feature_data_df.rename(columns={column: f"Feature{index+1}"}, inplace=True) - configurator_settings.update({"feature_data_df": feature_data_df}) sparkle_objectives =\ gv.settings().get_general_sparkle_objectives() @@ -164,6 +130,23 @@ def main(argv: list[str]) -> None: "Adding to data frame.") performance_data.add_objective(objective.name) + if use_features: + feature_data = FeatureDataFrame(gv.settings().DEFAULT_feature_data_path) + # Check that the train instance set is in the feature data frame + invalid = False + remaining_instance_jobs =\ + set([instance for instance, _, _ in feature_data.remaining_jobs()]) + for instance in instance_set_train.instance_paths: + if str(instance) not in feature_data.instances: + print(f"ERROR: Train Instance {instance} not found in feature data.") + invalid = True + elif instance in remaining_instance_jobs: # Check jobs + print(f"ERROR: Features have not been computed for instance {instance}.") + invalid = True + if invalid: + sys.exit(-1) + configurator_settings.update({"feature_data": feature_data}) + sbatch_options = gv.settings().get_slurm_extra_options(as_args=True) config_scenario = configurator.scenario_class()( solver, instance_set_train, sparkle_objectives, @@ -172,15 +155,16 @@ def main(argv: list[str]) -> None: # Run the default configuration remaining_jobs = performance_data.get_job_list() relevant_jobs = [] - for job in remaining_jobs: - if job[-1] != str(solver.directory): + for instance, run_id, solver_id in remaining_jobs: + # NOTE: This run_id skip will not work if we do multiple runs per configuration + if run_id != 1 or solver_id != str(solver.directory): continue configuration = performance_data.get_value( - job[2], job[0], sparkle_objectives[0].name, run=job[1], + solver_id, instance, sparkle_objectives[0].name, run=run_id, solver_fields=[PerformanceDataFrame.column_configuration]) # Only run jobs with the default configuration if not isinstance(configuration, str) and math.isnan(configuration): - relevant_jobs.append(job) + relevant_jobs.append((instance, run_id, solver_id)) # Expand the performance dataframe so it can store the configuration performance_data.add_runs(configurator_runs, @@ -213,6 +197,8 @@ def main(argv: list[str]) -> None: cutoff_time=config_scenario.cutoff_time, log_dir=config_scenario.validation, base_dir=sl.caller_log_dir, + job_name=f"Default Configuration: {solver.name} Validation on " + f"{instance_set_train.name}", run_on=run_on) dependency_job_list.append(default_job) @@ -226,24 +212,28 @@ def main(argv: list[str]) -> None: gv.latest_scenario().set_config_instance_set_test(instance_set_test.directory) # Schedule test set jobs if args.test_set_run_all_configurations: + # TODO: Schedule test set runs for all configurations + print("Running all configurations on test set is not implemented yet.") pass else: # We place the results in the index we just added run_index = list(set([performance_data.get_instance_num_runs(str(i)) for i in instance_set_test.instance_paths])) - test_set_job = solver.run_performance_dataframe( - instance_set_test, - run_index, - performance_data, - cutoff_time=config_scenario.cutoff_time, - objective=config_scenario.sparkle_objective, - train_set=instance_set_train, - sbatch_options=sbatch_options, - log_dir=config_scenario.validation, - base_dir=sl.caller_log_dir, - dependencies=dependency_job_list, - run_on=run_on) - dependency_job_list.append(test_set_job) + test_set_job = solver.run_performance_dataframe( + instance_set_test, + run_index, + performance_data, + cutoff_time=config_scenario.cutoff_time, + objective=config_scenario.sparkle_objective, + train_set=instance_set_train, + sbatch_options=sbatch_options, + log_dir=config_scenario.validation, + base_dir=sl.caller_log_dir, + dependencies=dependency_job_list, + job_name=f"Best Configuration: {solver.name} Validation on " + f"{instance_set_test.name}", + run_on=run_on) + dependency_job_list.append(test_set_job) else: # Set to default to overwrite possible old path gv.latest_scenario().set_config_instance_set_test() diff --git a/sparkle/CLI/construct_portfolio_selector.py b/sparkle/CLI/construct_portfolio_selector.py index 1b6ee2d95..4b81f6251 100755 --- a/sparkle/CLI/construct_portfolio_selector.py +++ b/sparkle/CLI/construct_portfolio_selector.py @@ -59,6 +59,7 @@ def main(argv: list[str]) -> None: """Main method of construct portfolio selector.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -69,8 +70,6 @@ def main(argv: list[str]) -> None: flag_recompute_portfolio = args.recompute_portfolio_selector solver_ablation = args.solver_ablation - check_for_initialise() - if ac.set_by_user(args, "settings_file"): gv.settings().read_settings_ini( args.settings_file, SettingState.CMD_LINE @@ -171,8 +170,8 @@ def main(argv: list[str]) -> None: # Compute the marginal contribution with_actual = "--actual" if solver_ablation else "" - cmd = (f"sparkle/CLI/compute_marginal_contribution.py --perfect {with_actual} " - f"{ac.ObjectivesArgument.names[0]} {objective}") + cmd = (f"python3 sparkle/CLI/compute_marginal_contribution.py --perfect " + f"{with_actual} {ac.ObjectivesArgument.names[0]} {objective}") solver_names = ", ".join([Path(s).name for s in performance_data.solvers]) marginal_contribution = rrr.add_to_queue( runner=run_on, diff --git a/sparkle/CLI/core/__init__.py b/sparkle/CLI/core/__init__.py new file mode 100644 index 000000000..c7b0312d1 --- /dev/null +++ b/sparkle/CLI/core/__init__.py @@ -0,0 +1 @@ +"""Init of CLI core module.""" diff --git a/sparkle/CLI/generate_report.py b/sparkle/CLI/generate_report.py index a966fcd89..f8ccb88f1 100755 --- a/sparkle/CLI/generate_report.py +++ b/sparkle/CLI/generate_report.py @@ -60,10 +60,9 @@ def parser_function() -> argparse.ArgumentParser: def main(argv: list[str]) -> None: """Generate a report for an executed experiment.""" - prev_settings = Settings(PurePath("Settings/latest.ini")) - # Log command call sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -71,8 +70,6 @@ def main(argv: list[str]) -> None: # Process command line arguments args = parser.parse_args(argv) - check_for_initialise() - # Do first, so other command line options can override settings from the file if ac.set_by_user(args, "settings_file"): gv.settings().read_settings_ini( @@ -98,7 +95,8 @@ def main(argv: list[str]) -> None: gv.file_storage_data_mapping[gv.instances_nickname_path], gv.settings().DEFAULT_instance_dir, Instance_Set) - Settings.check_settings_changes(gv.settings(), prev_settings) + Settings.check_settings_changes(gv.settings(), + Settings(PurePath("Settings/latest.ini"))) # If no arguments are set get the latest scenario if not selection and test_case_dir is None and solver is None: scenario = gv.latest_scenario().get_latest_scenario() @@ -153,7 +151,7 @@ def main(argv: list[str]) -> None: instance_sets, test_set, objective, cutoff_time, output) selection_output.write_output() - print("Machine readable output is placed at: ", selection_output.output) + print("Machine readable output is placed at:", selection_output.output) if not only_json: sgfs.generate_report_selection( @@ -186,7 +184,7 @@ def main(argv: list[str]) -> None: objective, output) parallel_portfolio_output.write_output() - print("Machine readable output is placed at: ", parallel_portfolio_output.output) + print("Machine readable output is placed at:", parallel_portfolio_output.output) if not only_json: sgrfpph.generate_report_parallel_portfolio( @@ -239,7 +237,8 @@ def main(argv: list[str]) -> None: configuration_jobs = performance_data.get_job_list() if len(configuration_jobs) > 0: print(f"ERROR: {(len(configuration_jobs))} jobs for the configuration were " - "not executed! Please run 'sparkle run solvers' before continuing.") + "not executed! Please run 'sparkle run solvers --performance-data' " + "before continuing.") sys.exit(-1) # Create machine readable output output = gv.settings().DEFAULT_configuration_output_analysis @@ -250,7 +249,7 @@ def main(argv: list[str]) -> None: instance_set_test, output) config_output.write_output() - print("Machine readable output is placed at: ", config_output.output) + print("Machine readable output is placed at:", config_output.output) if not only_json: sgrfch.generate_report_for_configuration( diff --git a/sparkle/CLI/help/argparse_custom.py b/sparkle/CLI/help/argparse_custom.py index 375b7cb79..b5d5d223d 100644 --- a/sparkle/CLI/help/argparse_custom.py +++ b/sparkle/CLI/help/argparse_custom.py @@ -104,6 +104,11 @@ def __init__(self: ArgumentContainer, names: list[str], kwargs: dict[str, Any])\ "which to determine the best configuration. If " "empty, all known instances are used."}) +CancelJobsArgument = \ + ArgumentContainer(names=["--cancel"], + kwargs={"action": "store_true", + "help": "cancel the job(s) with the given ID(s)"}) + CleanupArgumentAll = \ ArgumentContainer(names=["--all"], kwargs={"action": "store_true", @@ -115,6 +120,11 @@ def __init__(self: ArgumentContainer, names: list[str], kwargs: dict[str, Any])\ "help": "remove all files in the platform, including " "user data such as InstanceSets and Solvers"}) +CleanUpPerformanceDataArgument = \ + ArgumentContainer(names=["--performance-data"], + kwargs={"action": "store_true", + "help": "clean performance data from empty lines"}) + ConfigurationArgument = \ ArgumentContainer(names=["--configuration"], kwargs={"required": False, @@ -348,6 +358,13 @@ def __init__(self: ArgumentContainer, names: list[str], kwargs: dict[str, Any])\ "help": "compute the remaining jobs in the Performance " "DataFrame"}) +RebuildRunsolverArgument = \ + ArgumentContainer(names=["--rebuild-runsolver"], + kwargs={"action": "store_true", + "required": False, + "default": False, + "help": "Clean the RunSolver executable and rebuild it."}) + RunOnArgument = ArgumentContainer(names=["--run-on"], kwargs={"type": Runner, "choices": [Runner.LOCAL, @@ -484,8 +501,10 @@ def __init__(self: ArgumentContainer, names: list[str], kwargs: dict[str, Any])\ ArgumentContainer(names=["--solution-verifier"], kwargs={"type": str, "default": None, - "help": "the class name of the solution verifier or path " - "to solutions to use for the Solver."}) + "help": "the class name of the solution verifier to use " + "for the Solver. If it is a Path, will resolve as " + "a SolutionFileVerifier class with the specified " + "Path instead."}) ObjectiveArgument = \ ArgumentContainer(names=["--objective"], diff --git a/sparkle/CLI/help/jobs.py b/sparkle/CLI/help/jobs.py index c84cbd7ab..51675bbef 100644 --- a/sparkle/CLI/help/jobs.py +++ b/sparkle/CLI/help/jobs.py @@ -1,13 +1,9 @@ """File to help with RunRunner jobs.""" from pathlib import Path -from tabulate import tabulate - from runrunner.base import Status from runrunner.slurm import SlurmRun -from sparkle.platform.cli_types import TEXT - def get_runs_from_file(path: Path, print_error: bool = False, @@ -36,42 +32,3 @@ def get_runs_from_file(path: Path, if print_error: print(f"[WARNING] Could not load file: {file}. Exception: {ex}") return runs - - -def create_jobs_table(jobs: list[SlurmRun], markup: bool = True) -> str: - """Create a table of jobs. - - Args: - runs: List of SlurmRun objects. - markup: By default some mark up will be applied to the table. - If false, a more plain version will be created. - - Returns: - A table of jobs as a string. - """ - job_table = [["RunId", "Name", "Quality of Service", "Partition", "Status", - "Dependencies", "Finished Jobs", "Run Time"]] - for job in jobs: - # Count number of jobs that have finished - finished_jobs_count = sum(1 for status in job.all_status - if status == Status.COMPLETED) - if markup: # Format job.status - status_text = \ - TEXT.format_text([TEXT.BOLD], job.status) \ - if job.status == Status.RUNNING else \ - (TEXT.format_text([TEXT.ITALIC], job.status) - if job.status == Status.COMPLETED else job.status) - else: - status_text = job.status - job_table.append( - [job.run_id, - job.name, - job.qos, - job.partition, - status_text, - "None" if len(job.dependencies) == 0 else ", ".join(job.dependencies), - f"{finished_jobs_count}/{len(job.all_status)}", - job.runtime]) - if markup: - return tabulate(job_table, headers="firstrow", tablefmt="grid") - return job_table diff --git a/sparkle/CLI/help/logging.py b/sparkle/CLI/help/logging.py index 133de9b9f..31729521b 100644 --- a/sparkle/CLI/help/logging.py +++ b/sparkle/CLI/help/logging.py @@ -50,7 +50,7 @@ def _update_caller_file_path(timestamp: str) -> None: """ caller_file = caller + "_main_log.txt" - caller_dir = Path(timestamp + "_" + caller) + caller_dir = Path(caller + "_" + timestamp) log_dir = gv.settings().DEFAULT_log_output # Set caller directory for other Sparkle functions to use global caller_out_dir @@ -102,7 +102,7 @@ def log_command(argv: list[str]) -> None: _update_caller(argv) # Prepare logging information - timestamp = time.strftime("%Y-%m-%d-%H:%M:%S", time.localtime(time.time())) + timestamp = time.strftime("%Y-%m-%d-%H.%M.%S", time.localtime(time.time())) _update_caller_file_path(timestamp) output_file = caller_log_path args = " ".join(argv[0:]) diff --git a/sparkle/CLI/initialise.py b/sparkle/CLI/initialise.py index 03c0c637b..319b18d2f 100755 --- a/sparkle/CLI/initialise.py +++ b/sparkle/CLI/initialise.py @@ -10,20 +10,22 @@ from sparkle.CLI.help import argparse_custom as ac from sparkle.CLI.help import snapshot_help as snh -from sparkle.platform.settings_objects import Settings -from sparkle.structures import PerformanceDataFrame, FeatureDataFrame from sparkle.CLI.help import global_variables as gv from sparkle.configurator.implementations.irace import IRACE +from sparkle.platform import Settings +from sparkle.structures import PerformanceDataFrame, FeatureDataFrame def parser_function() -> argparse.ArgumentParser: """Parse CLI arguments for the initialise command.""" parser = argparse.ArgumentParser( description="Initialise the Sparkle platform in the current directory.") - parser.add_argument(*ac.NoSavePlatformArgument.names, - **ac.NoSavePlatformArgument.kwargs) parser.add_argument(*ac.DownloadExamplesArgument.names, **ac.DownloadExamplesArgument.kwargs) + parser.add_argument(*ac.NoSavePlatformArgument.names, + **ac.NoSavePlatformArgument.kwargs) + parser.add_argument(*ac.RebuildRunsolverArgument.names, + **ac.RebuildRunsolverArgument.kwargs) return parser @@ -51,7 +53,7 @@ def initialise_irace() -> None: """Initialise IRACE.""" if shutil.which("R") is None: warnings.warn("R is not installed, which is required for the IRACE" - "configurator. Make sure R is installed and try again.") + "configurator. Consider installing R.") return print("Initialising IRACE ...") r6_package_check = subprocess.run(["Rscript", "-e", @@ -103,13 +105,15 @@ def check_for_initialise() -> None: def initialise_sparkle(save_existing_platform: bool = True, - download_examples: bool = False) -> None: + download_examples: bool = False, + rebuild_runsolver: bool = False) -> None: """Initialize a new Sparkle platform. Args: save_existing_platform: If present, save the current platform as a snapshot. download_examples: Downloads examples from the Sparkle Github. WARNING: May take a some time to complete due to the large amount of data. + rebuild_runsolver: Will clean the RunSolver executable and rebuild it. """ print("Start initialising Sparkle platform ...") if detect_sparkle_platform_exists(check=all): @@ -143,6 +147,15 @@ def initialise_sparkle(save_existing_platform: bool = True, objectives=gv.settings().get_general_sparkle_objectives(), n_runs=1) + if rebuild_runsolver: + print("Cleaning Runsolver ...") + runsolver_clean = subprocess.run(["make", "clean"], + cwd=gv.settings().DEFAULT_runsolver_dir, + capture_output=True) + if runsolver_clean.returncode != 0: + warnings.warn(f"[{runsolver_clean.returncode}] Cleaning of Runsolver failed " + f"with the following msg: {runsolver_clean.stdout.decode()}") + # Check that Runsolver is compiled, otherwise, compile if not gv.settings().DEFAULT_runsolver_exec.exists(): print("Runsolver does not exist, trying to compile...") @@ -176,8 +189,8 @@ def initialise_sparkle(save_existing_platform: bool = True, if shutil.which("java") is None: # NOTE: An automatic resolution of Java at this point would be good # However, loading modules from Python has thusfar not been successfull. - warnings.warn("Could not find Java as an executable! " - "Java 1.8.0_402 is required to use SMAC2 as a configurator.") + warnings.warn("Could not find Java as an executable! Java 1.8.0_402 is required " + "to use SMAC2 as a configurator. Consider installing Java.") # Check if IRACE is installed if not IRACE.configurator_executable.exists(): @@ -185,7 +198,6 @@ def initialise_sparkle(save_existing_platform: bool = True, if download_examples: # Download Sparkle examples from Github - # NOTE: Needs to be thoroughly tested after Pip install is working print("Downloading examples ...") curl = subprocess.Popen( ["curl", "https://codeload.github.com/ADA-research/Sparkle/tar.gz/main"], @@ -208,7 +220,8 @@ def main(argv: list[str]) -> None: # Process command line arguments args = parser.parse_args(argv) initialise_sparkle(save_existing_platform=args.no_save, - download_examples=args.download_examples) + download_examples=args.download_examples, + rebuild_runsolver=args.rebuild_runsolver) sys.exit(0) diff --git a/sparkle/CLI/jobs.py b/sparkle/CLI/jobs.py new file mode 100755 index 000000000..731202019 --- /dev/null +++ b/sparkle/CLI/jobs.py @@ -0,0 +1,276 @@ +#!/usr/bin/env python3 +"""Command to interact with async jobs.""" +import sys +import time +import argparse + +import pytermgui as ptg +from tabulate import tabulate + +from runrunner.base import Status, Run +from runrunner.slurm import SlurmRun + +from sparkle.platform.cli_types import TEXT +from sparkle.CLI.help import logging +from sparkle.CLI.help import argparse_custom as ac +from sparkle.CLI.help import jobs as jobs_help +from sparkle.CLI.help import global_variables as gv + + +def parser_function() -> argparse.ArgumentParser: + """Create parser for the jobs command.""" + parser = argparse.ArgumentParser(description="Command to interact with async jobs. " + "The command starts an interactive " + "table when no flags are given. Jobs " + "can be selected for cancelling in the " + "table and non activate jobs can be " + "flushed by pressing the spacebar.") + parser.add_argument(*ac.CancelJobsArgument.names, **ac.CancelJobsArgument.kwargs) + parser.add_argument(*ac.JobIDsArgument.names, **ac.JobIDsArgument.kwargs) + parser.add_argument(*ac.AllJobsArgument.names, **ac.AllJobsArgument.kwargs) + return parser + + +def create_jobs_table(jobs: list[SlurmRun], + markup: bool = True, + format: str = "grid") -> str: + """Create a table of jobs. + + Args: + runs: List of SlurmRun objects. + markup: By default some mark up will be applied to the table. + If false, a more plain version will be created. + format: The tabulate format to use. + per_job: If true, returns a dict with the job ids as keys and + The lines per job as values. + + Returns: + A table of jobs as a string. + """ + job_table = [["RunId", "Name", "Quality of Service", "Partition", "Status", + "Dependencies", "Finished Jobs", "Run Time"]] + for job in jobs: + # Count number of jobs that have finished + finished_jobs_count = sum(1 for status in job.all_status + if status == Status.COMPLETED) + if markup: # Format job.status + status_text = \ + TEXT.format_text([TEXT.BOLD], job.status) \ + if job.status == Status.RUNNING else \ + (TEXT.format_text([TEXT.ITALIC], job.status) + if job.status == Status.COMPLETED else job.status.value) + else: + status_text = job.status.value + job_table.append( + [job.run_id, + job.name, + job.qos, + job.partition, + status_text, + "None" if len(job.dependencies) == 0 else ", ".join(job.dependencies), + f"{finished_jobs_count}/{len(job.all_status)}", + job.runtime]) + if markup: + job_table = tabulate(job_table, headers="firstrow", tablefmt=format, + maxcolwidths=[12, 32, 14, 12, 16, 16, 16, 10]) + return job_table + + +def table_gui(jobs: list[Run]) -> None: + """Display a table of running jobs.""" + jobs = sorted(jobs, key=lambda j: j.run_id) + ptg.Button.chars = {"delimiter": ["", ""]} # Disable padding around buttons + + def cancel_jobs(self: ptg.Button) -> None: + """Cancel jobs based on a button click.""" + job_id = self.label.split("|")[1].strip() + job = job_id_map[job_id] + + def kill_exit(self: ptg.Button) -> None: + """Two step protocol of killing the job and removing the popup.""" + job.kill() + manager.remove(popup) + + button_yes = ptg.Button("Yes", kill_exit) + button_no = ptg.Button("No", lambda *_: manager.remove(popup)) + + popup = manager.alert(ptg.Label(f"Cancel job {job_id}?"), + button_no, button_yes) + + refresh_data(self.parent) + + def refresh_data(self: ptg.Window | ptg.WindowManager, key: str = None) -> None: + """Refresh the table.""" + # Resolve window + window = self._windows[-1] if isinstance(self, ptg.WindowManager) else self + # Fetch latest data + for job in jobs: + if job.status in [Status.WAITING, Status.RUNNING]: + job.get_latest_job_details() + job_table = create_jobs_table(jobs, + markup=True).splitlines() + + if window.width != len(job_table[0]): # Resize window + window.width = len(job_table[0]) + + for index, row in enumerate(job_table): + if row.startswith("|"): + row_id = row.split("|")[1].strip() + if (row_id in job_id_map.keys() + and job_id_map[row_id].status in [Status.WAITING, + Status.RUNNING]): + window._widgets[index + 1] = ptg.Button(row, cancel_jobs) + else: + window._widgets[index + 1] = ptg.Label(row) + else: + window._widgets[index + 1] = ptg.Label(row) + window._widgets[index + 1].parent = window + + table = create_jobs_table(jobs, markup=True).splitlines() + with ptg.WindowManager() as manager: + def macro_reload(fmt: str) -> str: + """Updates jobs in the table with an interval.""" + if "last_reload" not in globals(): + global last_reload + last_reload = time.time() + diff = time.time() - last_reload + interval = 10.0 + if diff > interval: # Check every 10 seconds + last_reload = 0 + any_running = False + for job in jobs: + if job.status in [Status.RUNNING, Status.WAITING]: + any_running = True + job.get_latest_job_details() + if not any_running: + manager.stop() + refresh_data(manager) + last_reload = time.time() + n_bars = int(diff / 2) + return "|" + "â–ˆ" * n_bars + " " * (4 - n_bars) + "|" + + def flush_popup(self: ptg.WindowManager, key: str) -> None: + """Pop up for flushing completed jobs.""" + if len(jobs) <= 1: # Cannot flush the last job + return + flushable_jobs = [] + flushable_job_ids = [] + for job in jobs: + if job.status not in [Status.WAITING, Status.RUNNING]: + flushable_jobs.append(job) + flushable_job_ids.append(job.run_id) + if len(flushable_jobs) == 0: # Nothing to flush + return + + def flush(self: ptg.Button) -> None: + """Flush completed jobs.""" + for job in flushable_jobs: + jobs.remove(job) + del job_id_map[job.run_id] + flushable_widgets = [] + table_window = manager._windows[-1] + for iw, widget in enumerate(table_window._widgets): + if isinstance(widget, ptg.Label): + if ("|" in widget.value + and widget.value.split("|")[1].strip().isnumeric()): + job_id = widget.value.split("|")[1].strip() + if job_id in flushable_job_ids: + flushable_widgets.append(widget) + # Jobs can be multiple rows (labels) in the table window, + # are underlined with a vertical line to seperate jobs + offset = 1 + while (len(table_window._widgets) - (iw + offset)) > 0: + current_widget = table_window._widgets[iw + offset] + if not isinstance(current_widget, ptg.Label): + break # This method only cleans labels + flushable_widgets.append(current_widget) + if current_widget.value.startswith("+"): + break # Seperation line, stop + offset += 1 + for widget in flushable_widgets: + table_window.remove(widget) + manager.remove(popup) + + popup = manager.alert(ptg.Label("Flush non-active jobs?"), + ptg.Button("Yes", flush), + ptg.Button("No", lambda *_: manager.remove(popup))) + + ptg.tim.define("!reload", macro_reload) + window = ( + ptg.Window( + "[bold]Sparkle Jobs [!reload]%c", + width=len(table[0]), + box="EMPTY", + ) + ) + job_id_map = {job.run_id: job for job in jobs} + for row in table: + if "|" not in row or not row.split("|")[1].strip().isnumeric(): + window._add_widget(ptg.Label(row)) + else: + window._add_widget(ptg.Button(label=row, onclick=cancel_jobs)) + + manager.add(window) + manager.bind(" ", flush_popup, description="Flush finished jobs") + + # If all jobs were finished, print final table. + if all([j.status not in [Status.WAITING, Status.RUNNING] for j in jobs]): + table = create_jobs_table(jobs, format="fancy_grid") + print(table) + + +def main(argv: list[str]) -> None: + """Main function of the jobs command.""" + # Log command call + logging.log_command(sys.argv) + + # Define command line arguments + parser = parser_function() + + # Process command line arguments + args = parser.parse_args(argv) + + # Filter jobs on relevant status + path = gv.settings().DEFAULT_log_output + jobs = [run for run in jobs_help.get_runs_from_file(path) + if run.status == Status.WAITING or run.status == Status.RUNNING] + if args.job_ids: # Filter + jobs = [job for job in jobs if job.run_id in args.job_ids] + job_ids = [job.run_id for job in jobs] + for id in args.job_ids: + if id not in job_ids: + print(f"WARNING: Job ID {id} was not found ") + + if len(jobs) == 0: + if args.job_ids: + print(f"None of the specified jobs are running: {args.job_ids}") + sys.exit(-1) + print("No jobs running.") + if args.cancel: + sys.exit(-1) + sys.exit(0) + + if args.cancel: + if args.all or args.job_ids: + killed_jobs = [] + for j in jobs: + if args.all or j.run_id in args.job_ids: + j.kill() + killed_jobs.append(j) + if len(killed_jobs) == 0: + if args.all: + print("No jobs to cancel.") + sys.exit(0) + else: + print(f"ERROR: No jobs with ids {args.job_ids} to cancel.") + sys.exit(-1) + print(f"Canceled {len(killed_jobs)} jobs with IDs: " + f"{', '.join([j.run_id for j in killed_jobs])}.") + sys.exit(0) + else: + table_gui(jobs) + sys.exit(0) + + +if __name__ == "__main__": + main(sys.argv[1:]) diff --git a/sparkle/CLI/remove_feature_extractor.py b/sparkle/CLI/remove_feature_extractor.py index 9d0614b51..def1c183f 100755 --- a/sparkle/CLI/remove_feature_extractor.py +++ b/sparkle/CLI/remove_feature_extractor.py @@ -28,6 +28,7 @@ def main(argv: list[str]) -> None: """Main function of the remove feature extractor command.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -41,8 +42,6 @@ def main(argv: list[str]) -> None: gv.settings().DEFAULT_extractor_dir, class_name=Extractor) - check_for_initialise() - if extractor is None: print(f'Feature extractor path "{args.extractor_path}" does not exist!') sys.exit(-1) diff --git a/sparkle/CLI/remove_instances.py b/sparkle/CLI/remove_instances.py index 8501e90b6..6bb4ab5cc 100755 --- a/sparkle/CLI/remove_instances.py +++ b/sparkle/CLI/remove_instances.py @@ -27,6 +27,7 @@ def main(argv: list[str]) -> None: """Main function of the remove instances command.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -38,8 +39,6 @@ def main(argv: list[str]) -> None: nickname_dict=gv.file_storage_data_mapping[gv.instances_nickname_path], target_dir=gv.settings().DEFAULT_instance_dir) - check_for_initialise() - if instances_path is None or not instances_path.exists() or not\ instances_path.is_dir(): print(f'Could not resolve instances path arg "{args.instances_path}"!') diff --git a/sparkle/CLI/remove_solver.py b/sparkle/CLI/remove_solver.py index 09e94f97f..a83d2f77f 100755 --- a/sparkle/CLI/remove_solver.py +++ b/sparkle/CLI/remove_solver.py @@ -26,6 +26,7 @@ def main(argv: list[str]) -> None: """Main function of the remove solver command.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -37,7 +38,6 @@ def main(argv: list[str]) -> None: gv.file_storage_data_mapping[gv.solver_nickname_list_path], gv.settings().DEFAULT_solver_dir) - check_for_initialise() if solver_path is None: print(f'Could not resolve Solver path/name "{solver_path}"!') sys.exit(-1) diff --git a/sparkle/CLI/run_ablation.py b/sparkle/CLI/run_ablation.py index 9b6d34102..4d47aa768 100755 --- a/sparkle/CLI/run_ablation.py +++ b/sparkle/CLI/run_ablation.py @@ -53,6 +53,7 @@ def parser_function() -> argparse.ArgumentParser: def main(argv: list[str]) -> None: """Main function to run ablation analysis.""" sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -60,8 +61,6 @@ def main(argv: list[str]) -> None: # Process command line arguments args = parser.parse_args(argv) - check_for_initialise() - if ac.set_by_user(args, "settings_file"): # Do first, so other command line options can override settings from the file gv.settings().read_settings_ini( diff --git a/sparkle/CLI/run_parallel_portfolio.py b/sparkle/CLI/run_parallel_portfolio.py index 43312618e..7ca9f9cc7 100755 --- a/sparkle/CLI/run_parallel_portfolio.py +++ b/sparkle/CLI/run_parallel_portfolio.py @@ -247,6 +247,7 @@ def main(argv: list[str]) -> None: """Main method of run parallel portfolio command.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -268,8 +269,6 @@ def main(argv: list[str]) -> None: solvers = [Solver(p) for p in gv.settings().DEFAULT_solver_dir.iterdir() if p.is_dir()] - check_for_initialise() - # Compare current settings to latest.ini prev_settings = Settings(PurePath("Settings/latest.ini")) Settings.check_settings_changes(gv.settings(), prev_settings) diff --git a/sparkle/CLI/run_portfolio_selector.py b/sparkle/CLI/run_portfolio_selector.py index ffd5fc07d..92754d566 100755 --- a/sparkle/CLI/run_portfolio_selector.py +++ b/sparkle/CLI/run_portfolio_selector.py @@ -38,6 +38,7 @@ def main(argv: list[str]) -> None: """Main function of the run portfolio selector command.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -45,8 +46,6 @@ def main(argv: list[str]) -> None: # Process command line arguments args = parser.parse_args(argv) - check_for_initialise() - if ac.set_by_user(args, "settings_file"): gv.settings().read_settings_ini( args.settings_file, SettingState.CMD_LINE @@ -110,7 +109,7 @@ def main(argv: list[str]) -> None: run_core = Path(__file__).parent.parent.resolve() /\ "CLI" / "core" / "run_portfolio_selector_core.py" - cmd_list = [f"python {run_core} " + cmd_list = [f"python3 {run_core} " f"--selector {selector_path} " f"--feature-data-csv {feature_dataframe.csv_filepath} " f"--performance-data-csv {performance_data.csv_filepath} " diff --git a/sparkle/CLI/run_solvers.py b/sparkle/CLI/run_solvers.py index c38086fae..b1b53f70b 100755 --- a/sparkle/CLI/run_solvers.py +++ b/sparkle/CLI/run_solvers.py @@ -207,6 +207,7 @@ def main(argv: list[str]) -> None: """Main function of the run solvers command.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -230,7 +231,6 @@ def main(argv: list[str]) -> None: else: objective = resolve_objective(args.objective) - check_for_initialise() # Compare current settings to latest.ini prev_settings = Settings(PurePath("Settings/latest.ini")) Settings.check_settings_changes(gv.settings(), prev_settings) diff --git a/sparkle/CLI/status.py b/sparkle/CLI/status.py index 51142826f..2f1e2869b 100755 --- a/sparkle/CLI/status.py +++ b/sparkle/CLI/status.py @@ -22,6 +22,7 @@ def main(argv: list[str]) -> None: """Main function of the status command.""" # Log command call sl.log_command(sys.argv) + check_for_initialise() # Define command line arguments parser = parser_function() @@ -29,8 +30,6 @@ def main(argv: list[str]) -> None: # Process command line arguments args = parser.parse_args(argv) - check_for_initialise() - print("Reporting current system status of Sparkle ...") sssh.print_sparkle_list([s for s in gv.settings().DEFAULT_solver_dir.iterdir()], "Solver", args.verbose) diff --git a/sparkle/CLI/wait.py b/sparkle/CLI/wait.py deleted file mode 100755 index 26d7e67c4..000000000 --- a/sparkle/CLI/wait.py +++ /dev/null @@ -1,119 +0,0 @@ -#!/usr/bin/env python3 -"""Sparkle command to wait for one or more other commands to complete execution.""" -import sys -import signal -import time -import argparse -from pathlib import Path - -from runrunner.base import Status - -from sparkle.platform.cli_types import VerbosityLevel -from sparkle.CLI.help import jobs as jobs_help -from sparkle.CLI.help import logging -from sparkle.CLI.help import argparse_custom as ac -from sparkle.CLI.help import global_variables as gv - - -def parser_function() -> argparse.ArgumentParser: - """Define the command line arguments. - - Returns: - The argument parser. - """ - parser = argparse.ArgumentParser( - description="Wait for async jobs to finish. Gives periodic updates in table " - " format about each job.") - parser.add_argument(*ac.JobIDsArgument.names, **ac.JobIDsArgument.kwargs) - return parser - - -def wait_for_jobs(path: Path, - check_interval: int, - verbosity: VerbosityLevel = VerbosityLevel.STANDARD, - filter: list[str] = None) -> None: - """Wait for all active jobs to finish executing. - - Args: - path: The Path where to look for the stored jobs. - check_interval: The time in seconds between updating the jobs. - verbosity: Amount of information shown. - The lower verbosity means lower computational load. - filter: If present, only show the given job ids. - """ - # Filter jobs on relevant status - jobs = [run for run in jobs_help.get_runs_from_file(path) - if run.status == Status.WAITING or run.status == Status.RUNNING] - - if filter is not None: - jobs = [job for job in jobs if job.run_id in filter] - - running_jobs = jobs - - def signal_handler(num: int, _: any) -> None: - """Create clean exit for CTRL + C.""" - if num == signal.SIGINT: - sys.exit() - signal.signal(signal.SIGINT, signal_handler) - - # If verbosity is quiet there is no need for further information - if verbosity == VerbosityLevel.QUIET: - prev_jobs = len(running_jobs) + 1 - while len(running_jobs) > 0: - if len(running_jobs) < prev_jobs: - print(f"Waiting for {len(running_jobs)} jobs...", flush=False) - time.sleep(check_interval) - prev_jobs = len(running_jobs) - running_jobs = [run for run in running_jobs - if run.status == Status.WAITING - or run.status == Status.RUNNING] - - # If verbosity is standard the command will print a table with relevant information - elif verbosity == VerbosityLevel.STANDARD: - # Order in which to display the jobs - status_order = {Status.COMPLETED: 0, Status.RUNNING: 1, Status.WAITING: 2} - while len(running_jobs) > 0: - for job in running_jobs: - job.get_latest_job_details() - running_jobs = [run for run in running_jobs - if run.status == Status.WAITING - or run.status == Status.RUNNING] - sorted_jobs = sorted( - jobs, key=lambda job: (status_order.get(job.status, 4), job.run_id)) - table = jobs_help.create_jobs_table(sorted_jobs) - print(table) - time.sleep(check_interval) - - # Clears the table for the new table to be printed - lines = table.count("\n") + 1 - # \033 is the escape character (ESC), - # [{lines}A is the escape sequence that moves the cursor up. - print(f"\033[{lines}A", end="") - # [J is the escape sequence that clears the console from the cursor down - print("\033[J", end="") - - print("All jobs done!") - - -def main(argv: list[str]) -> None: - """Main function of the wait command.""" - # Log command call - logging.log_command(sys.argv) - - # Define command line arguments - parser = parser_function() - - # Process command line arguments - args = parser.parse_args(argv) - - check_interval = gv.settings().get_general_check_interval() - verbosity = gv.settings().get_general_verbosity() - - wait_for_jobs(path=gv.settings().DEFAULT_log_output, - check_interval=check_interval, - verbosity=verbosity, - filter=args.job_ids) - - -if __name__ == "__main__": - main(sys.argv[1:]) diff --git a/sparkle/Components/paramils-v3.0.0/AUTHORS.txt b/sparkle/Components/paramils-v3.0.0/AUTHORS.txt new file mode 100644 index 000000000..91ea41d0a --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/AUTHORS.txt @@ -0,0 +1,4 @@ +Current maintainer +================== + +Aymeric Blot diff --git a/sparkle/Components/paramils-v3.0.0/LICENCE.txt b/sparkle/Components/paramils-v3.0.0/LICENCE.txt new file mode 100644 index 000000000..94a9ed024 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/LICENCE.txt @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/sparkle/Components/paramils-v3.0.0/example_cplex/cplex-params.txt b/sparkle/Components/paramils-v3.0.0/example_cplex/cplex-params.txt new file mode 100644 index 000000000..47c9fdbd6 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_cplex/cplex-params.txt @@ -0,0 +1,90 @@ +advance {1}[1] #ADVIND. No auto. Normally {0,1,2}, but requires a basis supplied by user, so N/A. Cat. +barrier_algorithm {0,1,2,3}[0] #BARALG. No auto. Some numerical issues. Cat. +barrier_colnonzeros {0}[0] #BARCOLNZ. 0=Auto, poorly informed. N+. {0,5,20,80,320,1280} +barrier_convergetol {1e-08}[1e-08] #BAREPCOMP. No auto. Numerical, left at default. R+, >= 1e-12 +barrier_crossover {-1,0,1,2}[0] #BARCROSSALG. 0=Auto. Cat. +barrier_limits_corrections {-1}[-1] #BARMAXCOR. -1=Auto. Numerical, left at default. {-1,0,N+} +barrier_limits_growth {1e+6,1e+8,1e+10,1e+12,1e+14}[1e+12] #BARGROWTH. No auto. Somewhat numerical. R+, >=1.0 +barrier_ordering {0,1,2,3} [0] #BARORDER. 0=Auto. Cat. +barrier_qcpconvergetol {1e-07}[1e-07] #BARQCPEPCOMP. No auto. Numerical, left at default. R+, >= 1e-12 +barrier_startalg {1,2,3,4}[1] #BARSTARTALG. No auto. Cat. +emphasis_memory {yes,no}[no] #MEMORYEMPHASIS. No auto. Binary. +emphasis_mip {0,1,2,3,4}[0] #MIPEMPHASIS. No auto. Binary. +emphasis_numerical {yes,no}[no] #NUMERICALEMPHASIS. No auto. Binary. +feasopt_mode{0,1,2,3,4,5}[0] #FEASOPTMODE. No auto. Cat. +feasopt_tolerance{1e-04,1e-06,1e-08}[1e-06] #EPRELAX. Not sure if this is a tuning parameter. R+, >1e-8 +lpmethod {0,1,3,4,5,6}[0] #LPMETHOD. 0=Auto. Cat. If threads = 1 (for us always) 2 is the same as 0. +mip_cuts_cliques {-1,0,1,2,3}[0] # CLIQUES. 0=Auto. Cat. +mip_cuts_covers {-1,0,1,2,3}[0] #COVERS. 0=Auto. Cat. +mip_cuts_disjunctive {-1,0,1,2,3}[0] #DISJCUTS. 0=Auto. Cat. +mip_cuts_flowcovers {-1,0,1,2}[0] #FLOWCOVERS. 0=Auto. Cat. +mip_cuts_gomory {-1,0,1,2}[0] #FRACCUTS. 0=Auto. Cat. +mip_cuts_gubcovers {-1,0,1,2}[0] #GUBCOVERS. 0=Auto. Cat. +mip_cuts_implied {-1,0,1,2}[0] #IMPLBD. 0=Auto. Cat. +mip_cuts_mircut {-1,0,1,2}[0] #MIRCUTS. 0=Auto. Cat. +mip_cuts_pathcut {-1,0,1,2}[0] #FLOWPATHS. 0=Auto. Cat. +mip_limits_aggforcut {0,1,2,3,5,10} [3] #AGGCUTLIM. No auto. +mip_limits_cutpasses {0}[0] #CUTPASS. 0=Auto. Poorly informed. {-1,0,1,4,16,64} +mip_limits_cutsfactor {1,2,4,8,16}[4] #CUTSFACTOR. No auto. R+ +mip_limits_gomorycand {50,100,200,400,800}[200] #FRACCAND. No auto. N+ +mip_limits_gomorypass {0}[0] #FRACPASS. 0=Auto. poorly informed. N+. {0,1,4,16,64} +mip_limits_polishtime {0}[0] #POLISHTIME. This is an important parameter, but only for optimization problems, not for prooving optimality. It should also be set relative to allowed runtime. +mip_limits_probetime {2,5,10,100,1e+75}[1e+75] #PROBETIME. No auto. R+. Setting this fairly low should allow us to use aggressive probing up to a cutoff time. +mip_limits_repairtries {0}[0] #REPAIRTRIES. Only if user provides MIP starting solution. No auto. N+. N/A +mip_limits_strongcand {2,5,10,20,40}[10] #STRONGCANDLIM. No auto. N+ +mip_limits_strongit {0}[0] #STRONGITLIM. 0=Auto. N+. Poorly informed. {0,5,10,20,40,80} +mip_limits_submipnodelim {125,250,500,1000,2000}[500] #SUBMIPNODELIM. No auto. N+ +mip_ordertype {0,1,2,3}[0] #MIPORDIND. No auto. Cat. +mip_strategy_backtrack {0.99, 0.999, 0.9999, 0.99999, 0.999999}[0.9999] #BTTOL. No auto. R+ in interval 0 to 1. +mip_strategy_bbinterval {0,2,4,7,15,30}[7] #BBINTERVAL. N+_0. No auto. +mip_strategy_branch {-1,0,1}[0] #BRDIR. 0=Auto. Cat. +mip_strategy_dive {0,1,2,3}[0] #DIVETYPE. 0=Auto. Cat. +mip_strategy_file {0,1}[1] #NODEFILEIND. No auto. Cat. DISALLOW values 2 and 3 => they write files to disk (stuff will break and we run out of space) +mip_strategy_heuristicfreq {-1,0,5,10,20,40,80}[0] #HEURFREQ. 0=Auto. 20 may be good setting. N+ +mip_strategy_lbheur {yes,no} [no] #LBHEUR. No auto. Binary. +mip_strategy_nodeselect {0,1,2,3}[1] #NODESEL. No auto. Cat. +mip_strategy_order{yes,no}[yes] #MIPORDIND. No auto. Binary. +mip_strategy_presolvenode {-1,0,1,2}[0] #PRESLVND. 0=Auto. Cat. +mip_strategy_probe {-1,0,1,2,3}[0] #PROBE. 0=Auto. Cat. But if I remember correctly, this is one of the most important tuning params. +mip_strategy_rinsheur {-1,0,5,10,20,40,80}[0] #RINSHEUR. 0=Auto. N+. 20 might be a good value. +mip_strategy_startalgorithm {0,1,2,3,4,5,6}[0] #STARTALG. 0=Auto. Cat. +mip_strategy_subalgorithm {0,1,2,3,4,5}[0] #SUBALG. 0=Auto. Cat. +mip_strategy_variableselect {-1,0,1,2,3,4}[0] #VARSEL. 0=Auto. Cat. +network_netfind {1,2,3}[2] #NETFIND. No auto. Cat. +network_pricing {0,1,2}[0] #NETPPRIIND. 0=Auto, but currently equivalent to (now thus hidden) option 3. Cat. +preprocessing_aggregator {-1}[-1] #AGGIND. -1=Auto. poorly informed. N+ {-1,0,1,4,16} +preprocessing_boundstrength {-1,0,1}[-1] #BNDSTRENIND. -1=Auto. Cat. +preprocessing_coeffreduce {0,1,2}[2] #COEREDIND. No auto. Cat. +preprocessing_dependency {-1,0,1,2,3}[-1] #DEPIND. -1=Auto. Cat. +preprocessing_dual {-1,0,1}[0] #PREDUAL. 0=Auto. Cat. +preprocessing_fill {2,5,10,20,40}[10] #AGGFILL. No auto. +preprocessing_numpass {-1}[-1] #PREPASS. -1=Auto. N+. Poorly informed. 0 is redundant (no preproc)) {-1,1,2,4,8,16} +preprocessing_presolve {yes,no}[yes] #PREIND. No auto. Binary. +preprocessing_qpmakepsd {yes,no}[yes] #QPMAKEPSDIND. No auto. Binary. +preprocessing_reduce {0,1,2,3}[3] #REDUCE. No auto. Cat. +preprocessing_relax {-1,0,1}[-1] #RELAXPREIND. -1=Auto. Cat. +preprocessing_repeatpresolve {-1,0,1,2,3}[-1] #REPEATPRESOLVE. -1=Auto. Cat. +preprocessing_symmetry {-1,0,1,2,3}[-1] #SYMMETRY. -1=Auto. Cat. +qpmethod {0,1,2,3,4}[0] #QPMETHOD. 0=Automatic. Cat. +read_scale {-1,0,1}[0] #SCAIND. No auto. Cat. +sifting_algorithm {0,1,2,3,4}[0] #SIFTALG. 0=Auto. Cat. +simplex_crash {-1,0,1}[1] #CRAIND. No auto. Cat. +simplex_dgradient {0,1,2,3,4,5}[0] #DPRIIND. 0=Auto. Cat. +simplex_limits_perturbation {0}[0] #PERLIM. 0=Auto. Poorly informed. N+ {0,10,100,1000} +simplex_limits_singularity {2,5,10,20,40}[10] #SINGLIM. No auto. N+ +simplex_perturbation {no 1e-06, yes 1e-06}[no 1e-06] #PERIND. Very annoying, two variables in one! PERIND is the indicator, leave the constant at its value. No auto. Binary & R+ for the two params. +simplex_pgradient {-1,0,1,2,3,4}[0] #PPRIIND. No auto. Cat. +simplex_pricing {0}[0] #PRICELIM. 0=Auto. N+. Size of simplex pricing candidate list. Poorly informed. {0,5,10,20,40,80} +simplex_refactor {0} [0] #REINV. 0=Auto. N+. Simplex refactorization interval. Hoyt's LP notes say Chvtal suggests an optimal refactorization interval of 16. {0,4,8,16,32,64} +simplex_tolerances_feasibility {1e-06}[1e-06] # EPINT. Numerical - use default for now. R+, > 1e-5 +simplex_tolerances_markowitz {0.01}[0.01] # EPMRK. No auto. Numerical - use default for now. R+ in interval 0.0001 to 0.99999. +simplex_tolerances_optimality {1e-06}[1e-06] # EPOPT. Numerical - use default for now. R+, > 1e-5 + +Conditionals: +mip_limits_gomorycand | mip_cuts_gomory in {0,1,2} # mip_cuts_gomory just can't be -1 +mip_limits_strongcand | mip_strategy_variableselect in {3} +mip_limits_strongit | mip_strategy_variableselect in {3} +mip_limits_submipnodelim | mip_strategy_rinsheur in {0,5,10,20,40,80} # RINSHEUR not -1 +mip_strategy_bbinterval | mip_strategy_nodeselect in {2} +preprocessing_numpass | preprocessing_presolve in {yes} +mip_strategy_order | mip_ordertype in {1,2,3} diff --git a/sparkle/Components/paramils-v3.0.0/example_cplex/cplex_wrapper.rb b/sparkle/Components/paramils-v3.0.0/example_cplex/cplex_wrapper.rb new file mode 100644 index 000000000..4355b8a16 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_cplex/cplex_wrapper.rb @@ -0,0 +1,197 @@ +require "param_reader.rb" +#=== This wrapper reads in some parameters, sets up a call to CPLEX, performs it, reads the result, and outputs it in a nice format for ParamILS. + +#=== Deal with inputs. +if ARGV.length < 5 + puts "CPLEX wrapper is a wrapper around CPLEX, so it can be tuned with ParamILS." + puts "Usage: ruby cplex_wrapper.rb ." + exit -1 +end +instance_relname = ARGV[0] +instance_specifics = ARGV[1] # ignored in all cases so far +cutoff_time = ARGV[2].to_f +cutoff_length = ARGV[3].to_i +seed = ARGV[4].to_i # ignored + +if cutoff_length > 2100000000 + cutoff_length = 2100000000 +end + +t = Time.now +datetime = t.strftime("%Y-%m-%d %H:%M:%S") # YYYY-MM-DD HH:MM:SS +#outfile = "cplex-out-#{datetime}-#{rand}".gsub(/ /,"") +outfile = "./example_cplex/cplex-out-tmp-#{rand}" + +param_lines = [] +i=5 +while i #{outfile}" +system("#{cmd} > #{outfile}") + +=begin +inner_exit = $? +puts "inner exit: #{inner_exit}" +puts "Outfile: #{outfile}" +=end + +=begin +File.open(outfile, "w"){|out| +# puts "Calling cmd: #{cmd}" + File.popen(cmd){|file| + while line = file.gets +# puts line + out.puts line + end + } +} +=end + + + +######################################################################### +#=== Reading output. +######################################################################### + +#=== Setting up variables for run output. +solved = "CRASHED" +seed = -1 +best_sol = -1 +best_length = -1 +measured_runlength = -1 +measured_runtime = -1 + +gap = 1e10 + +File.open(outfile){|file| + while line = file.gets +# puts "Read line: #{line}" + + ######################################################################### + #=== Parsing CPLEX run output + ######################################################################### + if line =~/(#{float_regexp})%/ + gap = $1.to_f + end + + if line =~ /MIP\s*-\s*Integer optimal solution:\s*Objective\s*=\s*(#{float_regexp})/ + best_sol = $1 + solved = 'SAT' + end + + if line =~ /MIP\s*-\s*Integer optimal,\s*tolerance\s*\(#{float_regexp}\/#{float_regexp}\):\s*Objective\s*=\s*(#{float_regexp})/ + best_sol = $1 + solved = 'SAT' + end + + + if line =~ /Solution time\s*=\s*(#{float_regexp})\s*sec\.\s*Iterations\s*=\s*(\d+)\s*Nodes\s*=\s*(\d+)/ + measured_runtime = $1 + iterations = $2 + measured_runlength = $3 + end + + if line =~ /Solution time\s*=\s*(#{float_regexp}) sec\.\s*Iterations =\s*(\d+)/ +# solved = 'SAT' + measured_runtime = $1 + iterations = $2 + end + + if line =~ /Solution time =\s*(#{float_regexp}) sec\./ + #solved = 'SAT' + measured_runtime = $1 + iterations = 0 + end + + if line =~ /Optimal:\s*Objective =\s*#{float_regexp}/ + solved = 'SAT' + end + + if line =~ /Infeasible/ + solved = 'UNSAT' + end + + if line =~ /MIP\s*-\s*Time limit exceeded, integer feasible:\s*Objective\s*=\s*(#{float_regexp})/ + best_sol = $1 + solved = 'TIMEOUT' + end + + if line =~ /MIP - Time limit exceeded, no integer solution./ + solved = 'TIMEOUT' + end + + if line =~ /CPLEX Error 1001: Out of memory./ + solved = 'TIMEOUT' + end + + if line =~ /CPLEX Error 3019: Failure to solve MIP subproblem./ + solved = 'TIMEOUT' + end + + if line =~ /CPLEX Error/ + solved = 'TIMEOUT' + end + + if line =~ /Time limit exceeded/ + solved = 'TIMEOUT' + end + +# if line =~ /Filesize limit exceeded/ +# solved = 'TIMEOUT' +# end + + if line =~ /Solution time =\s*(#{float_regexp})\s*sec\.\s*Iterations\s*=\s*(\d+)\s*Nodes\s*=\s*\((\d+)\)\s*\((\d+)\)/ + measured_runtime = $1 + iterations = $2 + measured_runlength = $3 + end + + raise "Error: Failed to initialize CPLEX environment" if line =~ /Failed to initialize CPLEX environment./ + end + best_sol = gap # This is really what we want to minimize. + +# raise "Error: solved neither TIMEOUT nor SAT - probably parsing problem. Here's the complete output: #{content}" + + if solved == "CRASHED" + puts "\n\n==============================================\n\nWARNING: CPLEX crashed -> most likely file not found or no license\n\n=======================\n" + #=== You may want to catch this exception and try a rerun once a license frees up - that's what I do in my own experiments. + raise "No such file or directory: CPLEX crashed -> most likely file not found or no license\n\n=======================" + else + puts "Result for ParamILS: #{solved}, #{measured_runtime}, #{measured_runlength}, #{best_sol}, #{seed}" + end +} +File.delete(outfile) diff --git a/sparkle/Components/paramils-v3.0.0/example_cplex/param_reader.rb b/sparkle/Components/paramils-v3.0.0/example_cplex/param_reader.rb new file mode 100644 index 000000000..068913b95 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_cplex/param_reader.rb @@ -0,0 +1,292 @@ +def float_regexp() + return '[+-]?\d+(?:\.\d+)?(?:[eE][+-]\d+)?'; +end + +# ================================================ +# Read parameters from executable. +# ================================================ +def read_params(paramfile) + params = [] + domain = Hash.new + default = Hash.new + conditionals = Hash.new + forbidden_combos = [] + + File.open(paramfile){|file| + #=== Match parameter format: param_name {value1,value2,...}[default_value] + while line = file.gets and line =~ /^(.*)\s*\{(.*)\}\s*\[(.*)\]/ or line =~ /^\s*(#.*)?\n$/ + next if line =~ /^\s*(#.*)?\n$/ # deal with empty and comment lines + line =~ /^(.*)\s*\{(.*)\}\s*\[(.*)\]/ + parname, vals, default_val = $1.strip, $2.strip, $3.strip + values = vals.strip.split(",").map{|x|x.strip} #Match values. + #=== Check whether possible values include default - deal with possible different number formats. + unless values.include?(default_val) + if default =~ /(#{float_regexp})/ + def_f = $1.to_f + for val in values + default = $1 if val =~ /(#{float_regexp})/ and $1.to_f == def_f + end + end + raise "default value #{default_val} is not a possible value for #{parname}. Only #{values.join(",")} are ok." unless values.include?(default_val) + end + domain[parname] = values + default[parname] = default_val + end +# p line +# p domain + params = domain.keys.sort + + #=== Deal with conditional parameters. + #=== Already read line "Conditionals" (since it's the first line not matching the above) + #=== Example: parameter a is only relevant if c=1 or c=2: "a|c in {1,2}" + + #=== Match lines with conditional rules. + while line=file.gets and line =~ /^(.*)\|(.*) in \{(.*)\}/ or line =~ /^\s*(#.*)?\n$/ + next if line =~ /^\s*(#.*)?\n$/ # deal with empty and comment lines + line =~ /^(.*)\|(.*) in \{(.*)\}/ + conditional_param, deciding_param, deciding_vals = $1, $2, $3 + conditional_param.strip! + deciding_param.strip! + deciding_vals = deciding_vals.strip.split(",").map{|x|x.strip} + + #=== Make sure there are no errors. + puts "WARNING. Conditional parameter #{conditional_param} does not exist." unless params.include?(conditional_param) + puts "WARNING. Variable #{deciding_param} which #{conditional_param} is conditional on does not exist." unless params.include?(deciding_param) + deciding_vals.each{|x| +# puts "WARNING. Value #{x} of variable #{deciding_param} which #{conditional_param} is conditional on does not exist." unless domain[deciding_param].include?(x) + } +# deciding_vals.map!{|x| domain[deciding_param].index(x)} + conditionals[conditional_param] = Hash.new unless conditionals.key?(conditional_param) + conditionals[conditional_param][deciding_param] = deciding_vals + end +# puts line + + while line=file.gets + next if line =~ /^\s*(#.*)?\n$/ # deal with empty and comment lines + line =~ /\{(.*)\}/ + combo =$1 + #TODO: implement debugging info in case specified values don't exist. + forbidden_combos << combo.split(",").map{|x|x.strip.split("=")} # One entry: "a=1,b=2,c=3" => ["a=1","b=2","c=3"] => [[a,1],[b,2],[c,3]] + end + + combos = 1 + num_params = 0 + for param in params + num_params += 1 if domain[param].length>1 + combos *= domain[param].length + end + +# puts "Number of parameters with >1 value: #{num_params}" +# puts "Number of parameter configurations (less forbidden ones): #{combos}" + } + return [params, domain, default, conditionals, forbidden_combos] +end + +# ========================================= +# Remove all irrelevant conditional parameters from state. When one is removed that may trigger others to be removed, too. +# ========================================= +def strip_state(state) + removedParam = true + activeParams = state.keys.sort.dup + while removedParam +# p activeParams + removedParam = false + paramsForLoop = activeParams.dup + for param in paramsForLoop + if $conditionals.key?(param) + for parent in $conditionals[param].keys + if (not $conditionals[param][parent].index(state[parent])) or (not activeParams.include?(parent)) +# p $conditionals[param][parent] + activeParams.delete(param) + removedParam = true + next + end + end + end + end + end + result = Hash.new + for param in activeParams + result[param] = state[param] + end + return result +end + +# ========================================= +# state as string +# ========================================= +def state_string(state) + return state["param_string"] if state.key?("param_string") + stripped_state = strip_state(state) + stripped_state.keys.sort.map{|param| param + "=" + stripped_state[param].to_s}.join(" ") +end + + +def output_to_s(params, domain, default, conditionals, forbidden_combos) + output = [] + output << "======================================================\nparameters begin: " + for param in params + output << " #{param}: domain=#{domain[param].join(",")}, default=#{default[param]}" + end + output << "parameters end.\n======================================================" + + output << "======================================================\nconditionals begin: " + for key in conditionals.keys.sort + output << " #{key}| #{conditionals[key].to_a.join(" ")}" + end + output << "conditionals end.\n======================================================" + + output << "======================================================\nforbidden begin: " + for forbidden_combo in forbidden_combos + output << " #{forbidden_combo.map{|x|x.join("=")}.join(", ")}" + end + output << "forbidden end.\n======================================================" + return output.join("\n") +end + + +# ========================================= +# Returns true iff state is forbidden by $forbidden_combos. +# ========================================= +def forbidden(state, forbidden_combos) + forbidden = false + for forbidden_combo in forbidden_combos + #A combo is satisfied if all its assignments are satisfied. + match = true + for assignment in forbidden_combo + param, forbidden_value = assignment + match = false unless state[param] == forbidden_value +# puts "#{param}, #{forbidden_value}" +# puts "#{param}, #{state[param]}" + end + return true if match # a forbidden combo is matched. + end + return false +end + + +# ========================================= +# Binary counter for increasing the state one at a time. Return value true/false, changing state itself! +# ========================================= +def increase_state(state, domain, sorted_params, fixed_ass) +# p $conditionals +# err + for param in sorted_params + next if fixed_ass.key?(param) + + #=== If parameter is conditional, skip it if it is inactive. + if $conditionals.key?(param) + active = true +# puts "param" +# p param + for deciding_param in $conditionals[param].keys +# puts "deciding_param" +# p deciding_param + good_vals= $conditionals[param][deciding_param] +# puts good_vals +# p good_vals + active = false unless good_vals.include?(state[deciding_param]) + end + next unless active + end + + idx = domain[param].index(state[param]) + raise "idx can't be nil but it is for state #{state} and param #{param} with domain #{$domain[param]} and value state[param]" if idx == nil + + if idx == domain[param].length-1 + state[param] = domain[param][0] + else + state[param] = domain[param][idx+1] + return true + end + end + return false # can't increase state anymore +end + +# ========================================= +# Return true if y is (indirectly) dependent on x. (Recursive procedure to determine) +# ========================================= +def predecessor(x,y) + return false if not $conditionals.key?(y) + return true if $conditionals[y].key?(x) + for pred in $conditionals[y].keys + return true if predecessor(x,pred) + end + return false +end + +########################################################################### +#=== Build array containing all possible parameter settings. +#=== Internally also build hash for quick checks if an equivalent state is already in there. +########################################################################### +def get_all_distinct_states(params, domain, forbidden_combos, out, fixed_ass) + sorted_params = params.sort{|x,y| predecessor(x,y) ? -1 :1} + + all_distinct_states = [] + all_states = Hash.new + curr_state = Hash.new + sorted_params.map{|x| curr_state[x] = domain[x][0]} + fixed_ass.keys.map{|x| curr_state[x] = fixed_ass[x]} + + all_states = {} + count = 0 + allcount = 0 + nonforbidden_count = 0 + loop do + allcount += 1 + unless forbidden(curr_state, forbidden_combos) + nonforbidden_count +=1 + + stripped_state = strip_state(curr_state) + state_as_string = state_string(curr_state) + unless all_states.key?(state_as_string) + count += 1 +# puts "#{count} (#{nonforbidden_count}, #{allcount}): #{state_as_string}" + puts "#{count} (#{nonforbidden_count}, #{allcount})" if count.modulo(1000)[1]==1 +# out.puts "#{count} (#{allcount}): #{state_as_string}" + + all_distinct_states << [stripped_state, state_as_string] + all_states[state_as_string] = 0 + end + end + break unless increase_state(curr_state, domain, sorted_params, fixed_ass) + end + puts "nonforbidden count: #{nonforbidden_count}" + return all_distinct_states +end + + +# ================================================ +# Build string of fixed parameters. +# ================================================ +def fixed_string(fixed_ass) + fixed_string = "" + for param in fixed_ass.keys + fixed_string << "#{param}=#{fixed_ass[param]} " + end + return fixed_string +end + +# ================================================ +# Build Hash of fixed parameters. +# ================================================ +def set_fixed_params(fix_input, domain, params, out) + fixed_ass = Hash.new + #=== Parse fix and remember them in hash. + if fix_input + # p fix_input + fix_input = fix_input.split.map! {|x| x.strip.to_s} +# p fix_input + 0.step(fix_input.length-1,2){|i| + param = fix_input[i] + value = fix_input[i+1] + # p [param, value] + out.puts "*************************** WARNING *****************************\nparam #{param} set to fixed value #{value}, which is not included in its domain #{domain[param].join(", ")}\n*****************************************************************" unless domain[param].include?(value) + puts "*************************** WARNING *****************************\nparam #{param} set to fixed value #{value}, which is not included in its domain #{domain[param].join(", ")}\n*****************************************************************" unless domain[param].include?(value) + fixed_ass[param] = value + } + end +# out.puts "manually fixed: #{fixed_string(fixed_ass)}" +# puts "manually fixed: #{fixed_string(fixed_ass)}" + return fixed_ass +end \ No newline at end of file diff --git a/sparkle/Components/paramils-v3.0.0/example_cplex/scenario-Cplex-CATS-smalltrain-smalltest.txt b/sparkle/Components/paramils-v3.0.0/example_cplex/scenario-Cplex-CATS-smalltrain-smalltest.txt new file mode 100644 index 000000000..a2237c4f9 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_cplex/scenario-Cplex-CATS-smalltrain-smalltest.txt @@ -0,0 +1,12 @@ +algo = ruby example_cplex/cplex_wrapper.rb +execdir = . +deterministic = 1 +run_obj = runtime +overall_obj = mean +cutoff_time = 5 +cutoff_length = max +tunerTimeout = 30 +paramfile = example_cplex/cplex-params.txt +outdir = example_cplex/paramils-out +instance_file = example_data/CATS100-small-train.txt +test_instance_file = example_data/CATS100-small-test.txt diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0000.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0000.lp new file mode 100644 index 000000000..fa9b8baee --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0000.lp @@ -0,0 +1,1071 @@ +max + +112.327x0 + 75.1158x1 + 1841.18x2 + 2536.39x3 + 2447.29x4 + 2414.72x5 + 2355.96x6 + 2313.63x7 + 654.21x8 + 667.846x9 + +637.818x10 + 516.924x11 + 496.98x12 + 482.399x13 + 61.1921x14 + 144.147x15 + 170.845x16 + 195.693x17 + 173.52x18 + 200.372x19 + +155.95x20 + 113.474x21 + 54.7926x22 + 1728.31x23 + 2504.99x24 + 2445.27x25 + 2429.72x26 + 2349.38x27 + 2321.47x28 + 727.98x29 + +830.076x30 + 759.588x31 + 722.12x32 + 713.11x33 + 690.867x34 + 670.294x35 + 574.13x36 + 567.378x37 + 563.011x38 + 534.987x39 + +495.003x40 + 476.744x41 + 549.885x42 + 480.696x43 + 437.268x44 + 421.918x45 + 182.458x46 + 399.807x47 + 571.536x48 + 505.043x49 + +472.332x50 + 440.85x51 + 334.15x52 + 2348.94x53 + 2640.54x54 + 2582.65x55 + 2556.77x56 + 2541.01x57 + 2522.3x58 + 712.016x59 + +711.481x60 + 693.927x61 + 653.742x62 + 652.377x63 + 637.528x64 + 542.902x65 + 550.381x66 + 464.586x67 + 370.291x68 + 268.735x69 + +874.986x70 + 1154.97x71 + 1076.07x72 + 1061.87x73 + 1025.74x74 + 1007.46x75 + 932.881x76 + 1147.81x77 + 1120.18x78 + 1118.61x79 + +1098.26x80 + 1070.42x81 + 284.98x82 + 254.212x83 + 245.219x84 + 208.956x85 + 150.156x86 + 250.684x87 + 306.977x88 + 205.051x89 + +195.65x90 + 808.733x91 + 1211.32x92 + 1181.87x93 + 1167.58x94 + 1165.88x95 + 1137.14x96 + 396.02x97 + 523.823x98 + 453.21x99 + +424.041x100 + 328.768x101 + 271.12x102 + 693.253x103 + 923.282x104 + 811.351x105 + 801.298x106 + 788.856x107 + 726.869x108 + 866.646x109 + +1155.19x110 + 973.627x111 + 970.422x112 + 945.46x113 + 930.456x114 + 526.139x115 + 753.195x116 + 635.71x117 + 630.505x118 + 589.389x119 + +587.578x120 + 531.109x121 + 572.77x122 + 546.53x123 + 513.442x124 + 493.415x125 + 177.425x126 + 122.446x127 + 108.004x128 + 560.955x129 + +804.284x130 + 730.091x131 + 656.219x132 + 618.136x133 + 598.526x134 + 277.782x135 + 264.988x136 + 204.219x137 + 171.461x138 + 411.021x139 + +413.88x140 + 404.779x141 + 568.748x142 + 704.347x143 + 692.401x144 + 646.556x145 + 616.271x146 + 552.217x147 + 293.758x148 + 367.084x149 + +330.218x150 + 235.159x151 + 341.773x152 + 368.327x153 + 290.455x154 + 260.607x155 + 186.285x156 + 129.368x157 + 1628.75x158 + 2365.53x159 + +2280.03x160 + 2155.35x161 + 2054.34x162 + 2054.04x163 + 471.581x164 + 585.628x165 + 564.005x166 + 515.055x167 + 512.609x168 + 498.582x169 + +701.472x170 + 732.951x171 + 618.24x172 + 617.817x173 + 572.839x174 + 549.841x175 + 724.381x176 + 1069.13x177 + 1061.6x178 + 1017.81x179 + +988.963x180 + 932.049x181 + 42.5379x182 + 276.722x183 + 324.85x184 + 312.371x185 + 257.373x186 + 169.447x187 + 167.846x188 + 436.126x189 + +568.923x190 + 537.154x191 + 527x192 + 524.28x193 + 409.365x194 + 228.274x195 + 308.072x196 + 237.145x197 + 410.272x198 + 544.326x199 + +517.223x200 + 488.359x201 + 458.547x202 + 439.108x203 + 1570.84x204 + 1850.05x205 + 1782.22x206 + 1778.49x207 + 1735.73x208 + 1638.64x209 + +660.965x210 + 678.295x211 + 651.042x212 + 642.288x213 + 636.096x214 + 499.391x215 + 1359.25x216 + 1913.32x217 + 1900.55x218 + 1868.83x219 + +1822.72x220 + 1770.85x221 + 466.092x222 + 503.934x223 + 484.787x224 + 471.017x225 + 437.693x226 + 403.066x227 + 2.90136x228 + 3594.59x229 + +4091.28x230 + 4075.39x231 + 3916.54x232 + 3828.63x233 + 3783.97x234 + 75.562x235 + 76.8694x236 + 644.901x237 + 666.504x238 + 572.37x239 + +542.963x240 + 518.918x241 + 515.966x242 + 20.9492x243 + 1689.12x244 + 2205.62x245 + 1995.57x246 + 1969.76x247 + 1949.45x248 + 1927.89x249 + +887.726x250 + 1075.52x251 + 1040.82x252 + 975.805x253 + 961.462x254 + 855.581x255 + 82.1105x256 + 85.6923x257 + 33.9318x258 + 492.684x259 + +553.507x260 + 540.989x261 + 513.683x262 + 399.818x263 + 386.368x264 + 305.876x265 + 337.577x266 + 295.682x267 + 291.608x268 + 157.485x269 + +269.84x270 + 261.974x271 + 161.936x272 + 348.151x273 + 503.916x274 + 355.491x275 + 350.841x276 + 497.903x277 + 513.382x278 + 492.971x279 + +459.22x280 + 434.772x281 + 387.23x282 + 236.619x283 + 270.597x284 + 87.9475x285 + 3212.1x286 + 3957.02x287 + 3806.75x288 + 3774.59x289 + +3770.58x290 + 3700.95x291 + 1380.7x292 + 1868.6x293 + 1814.93x294 + 1738.59x295 + 1703.29x296 + 1663.75x297 + 1003.74x298 + 1055.14x299 + +1013.61x300 + 975.166x301 + 972.053x302 + 967.58x303 + 1356.7x304 + 1627.33x305 + 1564.11x306 + 1542.08x307 + 1457.12x308 + 1455.84x309 + +143.232x310 + 117.373x311 + 442.828x312 + 573.14x313 + 480.07x314 + 467.95x315 + 337.591x316 + 324.465x317 + 714.07x318 + 1041.07x319 + +1037.4x320 + 1035.36x321 + 987.394x322 + 961.949x323 + 765.57x324 + 1033.2x325 + 1004.43x326 + 949.238x327 + 913.04x328 + 887.298x329 + +596.876x330 + 814.941x331 + 782.381x332 + 751.532x333 + 707.714x334 + 682.844x335 + 35.7773x336 + 797.142x337 + 1001.07x338 + 962.465x339 + +918.367x340 + 798.129x341 + 781.83x342 + 45.5162x343 + 283.567x344 + 351.478x345 + 321.021x346 + 2887.26x347 + 3478.06x348 + 3381.13x349 + +3224.83x350 + 3193.12x351 + 3177.72x352 + 270.494x353 + 402.539x354 + 310.516x355 + 247.025x356 + 191.12x357 + 1209.99x358 + 1312.7x359 + +1284.26x360 + 1277.55x361 + 1213.3x362 + 1190.8x363 + 67.5437x364 + 1324.84x365 + 1467.65x366 + 1420.57x367 + 1377.07x368 + 1325.38x369 + +1311.7x370 + 1303.64x371 + 1596.55x372 + 1581.82x373 + 1510.18x374 + 1499.63x375 + 1463.37x376 + 601.379x377 + 631.773x378 + 608.197x379 + +566.565x380 + 563.451x381 + 543.633x382 + 1019.97x383 + 1036.26x384 + 1032.19x385 + 949.175x386 + 917.213x387 + 905.293x388 + 466.848x389 + +666.199x390 + 581.83x391 + 540.287x392 + 532.525x393 + 503.091x394 + 690.445x395 + 834.405x396 + 803.466x397 + 760.044x398 + 751.36x399 + +738.724x400 + 656.195x401 + 725.776x402 + 724.46x403 + 719.263x404 + 635.467x405 + 611.973x406 + 345.146x407 + 372.235x408 + 231.61x409 + +218.279x410 + 76.4535x411 + 1662.03x412 + 1709.87x413 + 1699.17x414 + 1672.96x415 + 1603.85x416 + 1586.73x417 + 339.685x418 + 426.673x419 + +339.063x420 + 268.41x421 + 251.424x422 + 565.839x423 + 731.899x424 + 684.3x425 + 668.273x426 + 661.682x427 + 605.662x428 + 525.782x429 + +646.856x430 + 626.311x431 + 549.734x432 + 511.1x433 + 427.474x434 + 1185.2x435 + 1496.28x436 + 1422.37x437 + 1415.57x438 + 1372.23x439 + +1365.09x440 + 37.5906x441 + 718.093x442 + 909.562x443 + 831.004x444 + 784.544x445 + 754.002x446 + 693.868x447 + 139.187x448 + 178.63x449 + +173.807x450 + 449.446x451 + 496.661x452 + 446.363x453 + 431.988x454 + 397.861x455 + 769.069x456 + 964.876x457 + 798.776x458 + 774.943x459 + +729.217x460 + 688.021x461 + 883.12x462 + 1005.3x463 + 960.606x464 + 957.423x465 + 920.918x466 + 870.537x467 + 27.0902x468 + 172.419x469 + +244.74x470 + 104.794x471 + 591.064x472 + 863.634x473 + 812.321x474 + 793.612x475 + 734.512x476 + 732.016x477 + 129.787x478 + 799.673x479 + +809.491x480 + 747.751x481 + 745.961x482 + 727.271x483 + 653.376x484 + 1649.14x485 + 1998.52x486 + 1973.76x487 + 1913.89x488 + 1879.97x489 + +1828.4x490 + 1637.15x491 + 2009.93x492 + 1933.26x493 + 1861.86x494 + 1858.37x495 + 1855.98x496 + 120.827x497 + 9.05156x498 + 299.718x499 + +405.771x500 + 333.846x501 + 310.365x502 + 269.644x503 + 166.621x504 + +st + +x6 + x25 + x26 + x60 + x61 + x63 + x154 + x155 + x158 + x167 ++ x169 + x179 + x180 + x181 + x189 + x190 + x204 + x206 + x207 + x209 ++ x232 + x243 + x286 + x287 + x291 + x292 + x318 + x319 + x320 + x321 ++ x323 + x332 + x371 + x376 + x434 <= 1 + +x6 + x23 + x25 + x26 + x59 + x60 + x61 + x63 + x64 + x154 ++ x158 + x164 + x166 + x167 + x168 + x169 + x179 + x180 + x181 + x189 ++ x190 + x191 + x192 + x204 + x206 + x207 + x209 + x286 + x287 + x288 ++ x290 + x291 + x292 + x297 + x309 + x318 + x319 + x320 + x321 + x323 ++ x332 + x347 + x351 + x371 + x376 + x434 + x493 <= 1 + +x23 + x25 + x26 + x59 + x60 + x61 + x63 + x64 + x158 + x164 ++ x166 + x167 + x168 + x169 + x176 + x179 + x180 + x181 + x189 + x190 ++ x191 + x192 + x204 + x206 + x207 + x209 + x214 + x216 + x217 + x221 ++ x223 + x229 + x230 + x233 + x286 + x287 + x288 + x291 + x320 + x321 ++ x323 + x344 + x347 + x351 + x371 + x376 + x386 + x492 + x493 + x494 ++ x495 + x496 <= 1 + +x23 + x25 + x26 + x59 + x61 + x63 + x64 + x147 + x163 + x164 ++ x179 + x180 + x181 + x191 + x192 + x204 + x206 + x208 + x214 + x216 ++ x217 + x218 + x223 + x229 + x230 + x231 + x233 + x241 + x257 + x286 ++ x288 + x320 + x321 + x347 + x376 + x491 + x492 + x493 + x494 + x495 ++ x496 <= 1 + +x23 + x25 + x26 + x27 + x28 + x61 + x64 + x93 + x147 + x163 ++ x179 + x204 + x206 + x216 + x223 + x229 + x233 + x241 + x286 + x291 ++ x320 + x347 + x361 + x447 + x491 + x492 + x493 + x494 + x495 + x496 + <= 1 + +x23 + x27 + x28 + x46 + x57 + x58 + x64 + x93 + x94 + x163 ++ x188 + x204 + x206 + x216 + x223 + x229 + x233 + x241 + x244 + x247 ++ x286 + x291 + x294 + x296 + x327 + x334 + x335 + x341 + x347 + x353 ++ x355 + x356 + x357 + x360 + x361 + x373 + x402 + x417 + x447 + x459 ++ x491 + x492 + x493 + x494 + x495 + x496 <= 1 + +x23 + x27 + x28 + x45 + x57 + x94 + x163 + x195 + x197 + x204 ++ x210 + x214 + x229 + x230 + x231 + x233 + x234 + x237 + x238 + x242 ++ x247 + x248 + x286 + x294 + x296 + x327 + x328 + x330 + x334 + x335 ++ x341 + x347 + x353 + x355 + x356 + x357 + x360 + x361 + x368 + x373 ++ x383 + x387 + x388 + x396 + x402 + x425 + x457 + x459 + x491 + x492 ++ x493 + x494 + x495 + x496 <= 1 + +x4 + x5 + x23 + x28 + x44 + x49 + x57 + x94 + x104 + x163 ++ x195 + x196 + x204 + x214 + x229 + x230 + x231 + x232 + x233 + x234 ++ x238 + x242 + x247 + x248 + x286 + x296 + x327 + x330 + x334 + x335 ++ x339 + x341 + x347 + x348 + x353 + x354 + x355 + x360 + x361 + x368 ++ x373 + x383 + x387 + x388 + x396 + x401 + x402 + x403 + x457 + x459 ++ x486 + x488 + x489 + x492 + x493 + x494 + x496 + x497 <= 1 + +x4 + x5 + x23 + x28 + x57 + x104 + x145 + x163 + x204 + x229 ++ x230 + x231 + x232 + x233 + x234 + x238 + x245 + x247 + x248 + x286 ++ x330 + x335 + x337 + x338 + x339 + x340 + x341 + x342 + x347 + x348 ++ x353 + x354 + x355 + x360 + x388 + x402 + x444 + x456 + x457 + x486 ++ x488 + x489 + x490 + x492 + x497 + x498 <= 1 + +x4 + x5 + x23 + x28 + x230 + x231 + x232 + x233 + x247 + x248 ++ x330 + x335 + x337 + x338 + x339 + x340 + x348 + x355 + x402 + x444 ++ x457 + x486 + x489 + x490 + x492 + x498 <= 1 + +x6 + x23 + x25 + x26 + x60 + x61 + x63 + x92 + x152 + x154 ++ x155 + x158 + x167 + x168 + x169 + x179 + x180 + x189 + x190 + x206 ++ x207 + x217 + x219 + x220 + x248 + x286 + x288 + x290 + x291 + x292 ++ x309 + x318 + x319 + x320 + x321 + x323 + x330 + x332 + x347 + x351 ++ x359 + x376 + x429 + x434 + x493 <= 1 + +x23 + x25 + x26 + x59 + x60 + x61 + x62 + x63 + x96 + x152 ++ x153 + x154 + x155 + x158 + x164 + x165 + x166 + x167 + x168 + x169 ++ x176 + x179 + x180 + x181 + x189 + x190 + x192 + x204 + x206 + x207 ++ x209 + x217 + x218 + x219 + x220 + x221 + x233 + x241 + x257 + x286 ++ x287 + x288 + x289 + x290 + x291 + x292 + x295 + x296 + x297 + x309 ++ x318 + x319 + x320 + x321 + x323 + x330 + x332 + x344 + x345 + x346 ++ x347 + x350 + x351 + x359 + x372 + x376 + x432 + x434 + x439 + x462 ++ x491 + x493 + x494 + x495 <= 1 + +x5 + x23 + x25 + x26 + x59 + x63 + x77 + x78 + x96 + x152 ++ x153 + x158 + x160 + x164 + x166 + x167 + x168 + x169 + x176 + x179 ++ x180 + x181 + x190 + x191 + x192 + x204 + x206 + x209 + x216 + x217 ++ x219 + x220 + x221 + x229 + x230 + x233 + x237 + x241 + x257 + x286 ++ x287 + x288 + x289 + x291 + x292 + x295 + x296 + x309 + x319 + x320 ++ x321 + x323 + x332 + x344 + x345 + x346 + x347 + x350 + x351 + x359 ++ x376 + x386 + x389 + x472 + x477 + x491 + x492 + x493 + x494 + x495 ++ x496 <= 1 + +x6 + x23 + x27 + x63 + x92 + x94 + x158 + x160 + x163 + x166 ++ x168 + x179 + x180 + x181 + x190 + x191 + x192 + x204 + x206 + x208 ++ x209 + x216 + x217 + x218 + x219 + x220 + x221 + x229 + x230 + x233 ++ x241 + x257 + x286 + x289 + x292 + x296 + x311 + x320 + x321 + x323 ++ x346 + x347 + x350 + x351 + x362 + x376 + x386 + x472 + x491 + x493 ++ x494 + x495 + x496 <= 1 + +x23 + x24 + x27 + x28 + x64 + x94 + x158 + x163 + x179 + x180 ++ x190 + x191 + x204 + x208 + x209 + x216 + x227 + x229 + x230 + x231 ++ x233 + x234 + x257 + x286 + x292 + x294 + x296 + x297 + x310 + x311 ++ x320 + x321 + x347 + x350 + x351 + x356 + x357 + x372 + x373 + x375 ++ x417 + x443 + x465 + x491 + x492 + x494 + x495 + x496 <= 1 + +x23 + x27 + x28 + x46 + x93 + x94 + x188 + x210 + x212 + x216 ++ x227 + x229 + x230 + x231 + x233 + x234 + x235 + x244 + x247 + x286 ++ x294 + x296 + x297 + x304 + x320 + x347 + x353 + x356 + x357 + x373 ++ x388 + x417 + x489 + x490 + x491 + x492 + x494 + x495 + x496 <= 1 + +x5 + x23 + x27 + x28 + x41 + x44 + x45 + x46 + x57 + x64 ++ x94 + x163 + x195 + x196 + x197 + x210 + x211 + x212 + x214 + x229 ++ x230 + x231 + x232 + x233 + x234 + x235 + x237 + x238 + x242 + x244 ++ x247 + x284 + x286 + x294 + x296 + x306 + x327 + x330 + x334 + x341 ++ x347 + x357 + x358 + x360 + x361 + x373 + x382 + x383 + x384 + x387 ++ x388 + x402 + x403 + x405 + x457 + x459 + x486 + x488 + x490 + x491 ++ x492 + x494 + x495 + x496 <= 1 + +x4 + x5 + x23 + x28 + x41 + x44 + x45 + x46 + x57 + x93 ++ x94 + x196 + x210 + x211 + x212 + x214 + x229 + x230 + x231 + x232 ++ x233 + x234 + x238 + x247 + x283 + x284 + x286 + x293 + x294 + x327 ++ x330 + x334 + x340 + x341 + x342 + x347 + x354 + x360 + x361 + x376 ++ x383 + x384 + x385 + x386 + x387 + x388 + x396 + x401 + x403 + x457 ++ x459 + x486 + x487 + x488 + x489 + x490 + x491 + x492 <= 1 + +x4 + x5 + x22 + x23 + x28 + x41 + x42 + x44 + x45 + x57 ++ x204 + x229 + x230 + x231 + x232 + x233 + x234 + x238 + x244 + x247 ++ x248 + x262 + x283 + x285 + x293 + x294 + x305 + x335 + x337 + x338 ++ x339 + x340 + x341 + x342 + x349 + x354 + x360 + x383 + x384 + x385 ++ x386 + x388 + x396 + x402 + x403 + x404 + x457 + x459 + x477 + x486 ++ x487 + x488 + x490 + x491 <= 1 + +x4 + x23 + x28 + x184 + x204 + x230 + x231 + x232 + x233 + x244 ++ x245 + x247 + x248 + x291 + x330 + x333 + x335 + x337 + x338 + x339 ++ x340 + x341 + x348 + x354 + x402 + x444 + x457 + x479 + x487 + x488 ++ x489 + x491 + x492 <= 1 + +x6 + x23 + x25 + x26 + x60 + x158 + x161 + x164 + x166 + x167 ++ x168 + x179 + x180 + x181 + x206 + x209 + x215 + x216 + x217 + x218 ++ x219 + x220 + x221 + x241 + x256 + x286 + x288 + x289 + x290 + x291 ++ x292 + x293 + x295 + x297 + x309 + x318 + x319 + x320 + x321 + x323 ++ x330 + x332 + x345 + x347 + x348 + x349 + x351 + x376 + x429 + x432 ++ x434 + x446 + x462 + x464 + x493 + x494 <= 1 + +x3 + x23 + x25 + x26 + x60 + x61 + x62 + x63 + x96 + x113 ++ x152 + x155 + x156 + x158 + x160 + x164 + x165 + x166 + x167 + x168 ++ x176 + x178 + x179 + x180 + x181 + x205 + x208 + x209 + x215 + x216 ++ x217 + x218 + x219 + x220 + x221 + x239 + x257 + x286 + x287 + x288 ++ x289 + x290 + x291 + x292 + x295 + x307 + x309 + x318 + x319 + x320 ++ x321 + x323 + x332 + x347 + x349 + x351 + x352 + x359 + x376 + x429 ++ x432 + x434 + x435 + x439 + x446 + x464 + x472 + x491 + x493 + x494 ++ x495 <= 1 + +x3 + x5 + x23 + x25 + x26 + x27 + x59 + x60 + x61 + x62 ++ x76 + x77 + x78 + x96 + x110 + x113 + x134 + x153 + x158 + x160 ++ x162 + x164 + x169 + x176 + x178 + x180 + x181 + x191 + x192 + x204 ++ x205 + x207 + x208 + x209 + x216 + x217 + x218 + x219 + x220 + x221 ++ x230 + x237 + x286 + x287 + x288 + x289 + x290 + x291 + x292 + x295 ++ x296 + x318 + x321 + x323 + x347 + x349 + x350 + x351 + x352 + x359 ++ x376 + x389 + x393 + x394 + x435 + x439 + x447 + x460 + x472 + x476 ++ x477 + x493 + x494 <= 1 + +x6 + x23 + x25 + x26 + x27 + x59 + x62 + x77 + x92 + x94 ++ x96 + x110 + x111 + x113 + x114 + x134 + x153 + x158 + x160 + x163 ++ x166 + x176 + x181 + x190 + x191 + x192 + x204 + x205 + x206 + x207 ++ x208 + x209 + x213 + x216 + x217 + x218 + x219 + x220 + x221 + x230 ++ x233 + x275 + x286 + x287 + x288 + x289 + x290 + x292 + x295 + x296 ++ x347 + x348 + x349 + x350 + x351 + x352 + x362 + x389 + x391 + x392 ++ x472 + x473 + x476 + x493 + x494 + x495 <= 1 + +x23 + x24 + x27 + x28 + x94 + x96 + x158 + x177 + x179 + x206 ++ x207 + x210 + x211 + x216 + x229 + x231 + x233 + x234 + x236 + x244 ++ x249 + x286 + x293 + x294 + x296 + x297 + x305 + x310 + x347 + x350 ++ x356 + x372 + x377 + x379 + x406 + x415 + x465 + x476 + x486 + x493 ++ x495 + x496 <= 1 + +x23 + x24 + x27 + x28 + x58 + x64 + x94 + x210 + x211 + x216 ++ x229 + x230 + x233 + x234 + x236 + x244 + x247 + x286 + x293 + x294 ++ x296 + x297 + x304 + x305 + x306 + x347 + x358 + x360 + x361 + x362 ++ x372 + x377 + x380 + x403 + x404 + x406 + x465 + x486 + x487 + x488 ++ x489 + x490 + x491 + x493 + x494 + x495 + x496 <= 1 + +x23 + x28 + x46 + x53 + x57 + x64 + x91 + x93 + x94 + x95 ++ x197 + x206 + x207 + x211 + x212 + x216 + x229 + x230 + x233 + x234 ++ x235 + x236 + x244 + x247 + x248 + x249 + x286 + x290 + x293 + x294 ++ x296 + x304 + x305 + x306 + x330 + x333 + x334 + x347 + x352 + x358 ++ x360 + x361 + x362 + x369 + x372 + x377 + x382 + x384 + x401 + x403 ++ x404 + x405 + x406 + x465 + x485 + x486 + x487 + x488 + x489 + x490 ++ x491 <= 1 + +x28 + x44 + x45 + x56 + x57 + x91 + x93 + x94 + x95 + x194 ++ x206 + x211 + x212 + x214 + x226 + x229 + x230 + x231 + x233 + x238 ++ x244 + x247 + x248 + x262 + x290 + x293 + x294 + x304 + x305 + x331 ++ x333 + x334 + x339 + x340 + x342 + x347 + x349 + x358 + x360 + x376 ++ x377 + x382 + x384 + x386 + x387 + x388 + x396 + x401 + x403 + x404 ++ x405 + x406 + x449 + x457 + x459 + x461 + x485 + x486 + x487 + x488 ++ x489 + x490 + x491 <= 1 + +x28 + x41 + x42 + x43 + x91 + x93 + x95 + x204 + x206 + x214 ++ x226 + x227 + x230 + x231 + x232 + x233 + x244 + x247 + x248 + x249 ++ x253 + x262 + x294 + x305 + x306 + x309 + x330 + x331 + x333 + x335 ++ x337 + x338 + x339 + x340 + x342 + x349 + x350 + x382 + x383 + x384 ++ x385 + x386 + x387 + x388 + x396 + x401 + x404 + x405 + x448 + x449 ++ x457 + x459 + x485 + x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x28 + x41 + x42 + x43 + x81 + x93 + x184 + x204 + x207 + x231 ++ x232 + x244 + x247 + x248 + x253 + x262 + x291 + x305 + x306 + x330 ++ x331 + x333 + x335 + x337 + x338 + x339 + x340 + x341 + x342 + x350 ++ x384 + x385 + x405 + x457 + x459 + x479 + x485 + x486 + x487 + x488 ++ x489 + x490 + x491 <= 1 + +x3 + x6 + x23 + x25 + x60 + x62 + x123 + x134 + x158 + x176 ++ x178 + x180 + x181 + x209 + x215 + x216 + x217 + x218 + x219 + x220 ++ x221 + x286 + x287 + x288 + x289 + x290 + x291 + x292 + x293 + x295 ++ x297 + x301 + x309 + x319 + x321 + x323 + x347 + x348 + x349 + x351 ++ x352 + x376 + x393 + x394 + x432 + x462 + x464 + x466 + x493 <= 1 + +x3 + x5 + x6 + x7 + x23 + x24 + x25 + x26 + x29 + x33 ++ x59 + x62 + x76 + x78 + x79 + x92 + x109 + x110 + x113 + x123 ++ x124 + x125 + x134 + x148 + x149 + x150 + x151 + x156 + x158 + x160 ++ x174 + x176 + x177 + x178 + x179 + x180 + x181 + x208 + x209 + x215 ++ x216 + x217 + x218 + x219 + x220 + x221 + x239 + x286 + x287 + x288 ++ x289 + x290 + x291 + x292 + x293 + x295 + x297 + x307 + x309 + x318 ++ x319 + x320 + x321 + x323 + x347 + x348 + x349 + x350 + x351 + x352 ++ x359 + x372 + x376 + x389 + x393 + x394 + x426 + x432 + x435 + x439 ++ x440 + x446 + x447 + x462 + x463 + x464 + x466 + x472 + x477 + x493 ++ x494 <= 1 + +x3 + x5 + x6 + x25 + x26 + x29 + x33 + x34 + x59 + x62 ++ x76 + x77 + x78 + x79 + x92 + x94 + x96 + x110 + x113 + x148 ++ x149 + x150 + x156 + x158 + x160 + x162 + x169 + x176 + x177 + x178 ++ x179 + x180 + x181 + x204 + x205 + x207 + x208 + x210 + x213 + x215 ++ x216 + x217 + x218 + x219 + x220 + x221 + x234 + x237 + x239 + x275 ++ x286 + x287 + x288 + x289 + x290 + x291 + x292 + x295 + x297 + x305 ++ x323 + x347 + x348 + x349 + x350 + x351 + x352 + x358 + x359 + x362 ++ x372 + x376 + x379 + x389 + x393 + x424 + x432 + x435 + x439 + x440 ++ x446 + x447 + x460 + x462 + x463 + x464 + x466 + x472 + x475 + x476 ++ x477 + x493 + x494 <= 1 + +x3 + x5 + x6 + x25 + x26 + x29 + x31 + x32 + x33 + x34 ++ x62 + x76 + x77 + x78 + x79 + x92 + x94 + x96 + x111 + x133 ++ x150 + x160 + x163 + x177 + x191 + x204 + x205 + x207 + x208 + x210 ++ x213 + x215 + x216 + x217 + x218 + x219 + x220 + x221 + x230 + x233 ++ x234 + x237 + x239 + x240 + x249 + x275 + x286 + x287 + x288 + x289 ++ x290 + x291 + x292 + x295 + x297 + x305 + x307 + x347 + x348 + x349 ++ x350 + x351 + x352 + x358 + x359 + x362 + x378 + x379 + x391 + x392 ++ x437 + x439 + x460 + x462 + x463 + x464 + x465 + x466 + x472 + x473 ++ x475 + x476 + x477 + x483 + x486 + x493 + x494 + x495 + x496 <= 1 + +x6 + x23 + x24 + x27 + x28 + x39 + x77 + x91 + x94 + x96 ++ x111 + x133 + x177 + x179 + x204 + x205 + x206 + x207 + x210 + x216 ++ x229 + x231 + x233 + x234 + x237 + x240 + x244 + x249 + x273 + x275 ++ x286 + x287 + x292 + x296 + x297 + x300 + x305 + x347 + x348 + x349 ++ x350 + x351 + x358 + x362 + x372 + x377 + x378 + x379 + x380 + x381 ++ x404 + x411 + x415 + x437 + x460 + x461 + x462 + x463 + x464 + x465 ++ x472 + x473 + x475 + x476 + x486 + x493 + x494 + x495 + x496 <= 1 + +x4 + x23 + x24 + x27 + x28 + x39 + x53 + x58 + x91 + x94 ++ x95 + x163 + x205 + x206 + x207 + x211 + x229 + x230 + x233 + x234 ++ x240 + x244 + x247 + x249 + x286 + x290 + x292 + x294 + x296 + x299 ++ x300 + x304 + x305 + x333 + x347 + x348 + x350 + x352 + x358 + x361 ++ x362 + x369 + x372 + x377 + x380 + x381 + x404 + x406 + x460 + x461 ++ x463 + x465 + x473 + x476 + x486 + x487 + x489 + x490 + x491 + x493 ++ x495 + x496 <= 1 + +x23 + x28 + x53 + x55 + x91 + x94 + x95 + x142 + x207 + x211 ++ x212 + x229 + x232 + x233 + x234 + x240 + x244 + x247 + x249 + x290 ++ x294 + x304 + x305 + x306 + x334 + x347 + x348 + x350 + x351 + x352 ++ x358 + x360 + x361 + x362 + x369 + x372 + x380 + x381 + x382 + x383 ++ x406 + x461 + x485 + x487 + x489 + x490 + x491 + x495 + x496 <= 1 + +x3 + x7 + x24 + x28 + x36 + x53 + x67 + x91 + x93 + x94 ++ x95 + x145 + x193 + x229 + x230 + x231 + x232 + x233 + x234 + x244 ++ x247 + x248 + x249 + x288 + x290 + x294 + x304 + x305 + x306 + x334 ++ x342 + x348 + x349 + x350 + x351 + x352 + x358 + x360 + x361 + x382 ++ x386 + x406 + x456 + x461 + x485 + x486 + x487 + x488 + x489 + x490 ++ x495 <= 1 + +x19 + x20 + x24 + x28 + x42 + x43 + x54 + x56 + x57 + x91 ++ x93 + x95 + x144 + x146 + x194 + x203 + x206 + x211 + x222 + x226 ++ x229 + x230 + x231 + x232 + x233 + x244 + x248 + x249 + x262 + x293 ++ x294 + x304 + x306 + x309 + x331 + x333 + x334 + x335 + x340 + x350 ++ x351 + x383 + x384 + x387 + x401 + x403 + x404 + x405 + x406 + x448 ++ x450 + x456 + x459 + x484 + x485 + x486 + x487 + x488 + x489 + x490 + <= 1 + +x20 + x26 + x28 + x42 + x43 + x58 + x91 + x93 + x179 + x192 ++ x203 + x214 + x222 + x223 + x225 + x226 + x227 + x229 + x230 + x231 ++ x232 + x233 + x244 + x253 + x262 + x293 + x305 + x331 + x333 + x335 ++ x337 + x338 + x339 + x342 + x350 + x383 + x384 + x387 + x405 + x446 ++ x450 + x485 + x486 + x487 + x488 + x489 <= 1 + +x2 + x6 + x23 + x24 + x25 + x26 + x27 + x28 + x29 + x30 ++ x31 + x50 + x68 + x78 + x79 + x81 + x92 + x109 + x110 + x112 ++ x116 + x118 + x121 + x122 + x124 + x129 + x130 + x131 + x134 + x139 ++ x151 + x159 + x160 + x161 + x162 + x170 + x174 + x175 + x176 + x177 ++ x178 + x180 + x181 + x205 + x208 + x217 + x218 + x220 + x245 + x248 ++ x254 + x286 + x287 + x288 + x289 + x290 + x291 + x293 + x348 + x349 ++ x351 + x352 + x366 + x367 + x369 + x376 + x394 + x423 + x424 + x425 ++ x426 + x427 + x436 + x438 + x439 + x440 + x442 + x444 + x447 + x466 ++ x467 + x477 <= 1 + +x1 + x2 + x3 + x5 + x6 + x7 + x16 + x23 + x24 + x25 ++ x26 + x28 + x29 + x30 + x31 + x32 + x33 + x50 + x76 + x77 ++ x78 + x79 + x81 + x92 + x96 + x101 + x109 + x110 + x112 + x113 ++ x116 + x118 + x121 + x122 + x123 + x124 + x125 + x129 + x130 + x134 ++ x141 + x148 + x151 + x156 + x158 + x159 + x160 + x161 + x162 + x174 ++ x176 + x177 + x178 + x180 + x181 + x204 + x205 + x207 + x208 + x209 ++ x217 + x218 + x219 + x220 + x221 + x234 + x248 + x254 + x286 + x287 ++ x288 + x289 + x290 + x291 + x293 + x295 + x297 + x347 + x348 + x349 ++ x350 + x351 + x352 + x359 + x376 + x393 + x394 + x414 + x423 + x424 ++ x426 + x427 + x435 + x436 + x437 + x438 + x439 + x440 + x442 + x444 ++ x446 + x447 + x462 + x463 + x466 + x467 + x477 + x480 + x483 + x484 + <= 1 + +x2 + x5 + x6 + x25 + x26 + x29 + x30 + x31 + x33 + x62 ++ x76 + x77 + x78 + x79 + x92 + x96 + x98 + x99 + x100 + x110 ++ x111 + x112 + x113 + x114 + x129 + x132 + x133 + x134 + x149 + x158 ++ x160 + x161 + x162 + x176 + x177 + x178 + x179 + x180 + x181 + x204 ++ x205 + x207 + x208 + x209 + x213 + x217 + x220 + x221 + x239 + x248 ++ x279 + x286 + x287 + x288 + x289 + x290 + x291 + x292 + x293 + x295 ++ x297 + x307 + x318 + x319 + x323 + x329 + x347 + x348 + x349 + x350 ++ x351 + x352 + x359 + x362 + x372 + x376 + x378 + x379 + x389 + x393 ++ x394 + x414 + x424 + x426 + x427 + x435 + x438 + x439 + x440 + x441 ++ x462 + x463 + x464 + x466 + x475 + x476 + x477 + x479 + x480 + x483 ++ x484 <= 1 + +x6 + x29 + x30 + x31 + x32 + x33 + x34 + x72 + x74 + x76 ++ x77 + x78 + x79 + x91 + x92 + x96 + x97 + x98 + x100 + x109 ++ x111 + x113 + x129 + x132 + x133 + x158 + x160 + x176 + x177 + x178 ++ x205 + x207 + x208 + x213 + x215 + x219 + x221 + x234 + x239 + x240 ++ x246 + x249 + x273 + x274 + x275 + x276 + x286 + x287 + x288 + x289 ++ x290 + x291 + x292 + x295 + x296 + x297 + x307 + x318 + x319 + x326 ++ x329 + x343 + x347 + x348 + x349 + x350 + x351 + x352 + x362 + x378 ++ x379 + x381 + x389 + x392 + x435 + x437 + x438 + x439 + x462 + x464 ++ x465 + x472 + x474 + x475 + x476 + x481 + x483 + x484 + x494 + x495 ++ x496 <= 1 + +x4 + x23 + x24 + x27 + x32 + x34 + x39 + x76 + x91 + x94 ++ x96 + x111 + x133 + x158 + x176 + x177 + x204 + x205 + x207 + x208 ++ x213 + x221 + x234 + x240 + x246 + x249 + x273 + x275 + x276 + x286 ++ x296 + x347 + x348 + x349 + x350 + x351 + x352 + x358 + x373 + x377 ++ x378 + x380 + x381 + x392 + x415 + x435 + x462 + x463 + x465 + x472 ++ x473 + x474 + x475 + x476 + x487 + x490 + x491 + x493 + x494 + x495 ++ x496 <= 1 + +x0 + x1 + x4 + x7 + x23 + x24 + x27 + x28 + x35 + x38 ++ x39 + x53 + x58 + x86 + x91 + x95 + x111 + x163 + x177 + x221 ++ x234 + x240 + x244 + x247 + x249 + x273 + x287 + x290 + x291 + x299 ++ x300 + x304 + x347 + x348 + x349 + x350 + x351 + x358 + x362 + x369 ++ x372 + x373 + x378 + x380 + x381 + x392 + x413 + x435 + x460 + x463 ++ x465 + x473 + x474 + x476 + x486 + x487 + x490 + x491 + x492 + x493 ++ x496 <= 1 + +x14 + x24 + x53 + x54 + x55 + x91 + x142 + x143 + x144 + x146 ++ x163 + x232 + x244 + x247 + x249 + x290 + x291 + x294 + x299 + x303 ++ x306 + x334 + x347 + x348 + x349 + x351 + x352 + x360 + x373 + x380 ++ x382 + x395 + x412 + x456 + x458 + x460 + x485 + x486 + x487 + x489 ++ x490 + x495 + x496 <= 1 + +x3 + x7 + x24 + x36 + x53 + x54 + x55 + x57 + x67 + x91 ++ x93 + x95 + x104 + x129 + x142 + x143 + x144 + x145 + x146 + x147 ++ x193 + x222 + x223 + x224 + x225 + x226 + x227 + x229 + x230 + x231 ++ x232 + x233 + x234 + x244 + x247 + x249 + x263 + x287 + x291 + x294 ++ x303 + x305 + x306 + x331 + x334 + x342 + x349 + x351 + x352 + x358 ++ x360 + x386 + x395 + x456 + x458 + x460 + x461 + x485 + x486 + x487 ++ x488 + x489 + x490 + x500 <= 1 + +x19 + x21 + x24 + x27 + x28 + x54 + x55 + x56 + x57 + x91 ++ x93 + x95 + x143 + x144 + x146 + x147 + x193 + x194 + x200 + x203 ++ x217 + x222 + x223 + x224 + x225 + x226 + x227 + x229 + x230 + x231 ++ x232 + x233 + x234 + x244 + x247 + x249 + x260 + x262 + x305 + x306 ++ x309 + x331 + x333 + x334 + x335 + x350 + x358 + x360 + x395 + x396 ++ x397 + x398 + x399 + x401 + x405 + x456 + x458 + x460 + x461 + x470 ++ x485 + x486 + x487 + x488 + x489 + x490 + x500 <= 1 + +x26 + x27 + x28 + x43 + x55 + x91 + x93 + x95 + x143 + x144 ++ x147 + x193 + x194 + x203 + x219 + x222 + x223 + x224 + x225 + x226 ++ x227 + x229 + x230 + x231 + x232 + x234 + x249 + x260 + x262 + x264 ++ x287 + x305 + x309 + x331 + x335 + x337 + x364 + x387 + x396 + x399 ++ x401 + x485 + x486 + x487 + x488 + x489 <= 1 + +x2 + x3 + x6 + x10 + x24 + x25 + x26 + x27 + x28 + x30 ++ x33 + x65 + x68 + x69 + x70 + x92 + x101 + x109 + x110 + x112 ++ x115 + x116 + x118 + x121 + x124 + x125 + x131 + x139 + x140 + x141 ++ x158 + x159 + x160 + x161 + x162 + x170 + x172 + x174 + x175 + x178 ++ x205 + x220 + x230 + x231 + x232 + x245 + x270 + x279 + x281 + x286 ++ x287 + x288 + x289 + x290 + x291 + x293 + x324 + x348 + x349 + x352 ++ x359 + x366 + x367 + x369 + x390 + x423 + x424 + x425 + x426 + x427 ++ x436 + x437 + x438 + x439 + x440 + x442 + x444 + x447 + x466 + x467 ++ x482 <= 1 + +x2 + x3 + x5 + x6 + x24 + x25 + x26 + x27 + x30 + x31 ++ x33 + x65 + x68 + x69 + x76 + x78 + x92 + x96 + x97 + x99 ++ x101 + x109 + x110 + x112 + x113 + x115 + x118 + x121 + x122 + x123 ++ x124 + x125 + x129 + x131 + x132 + x139 + x140 + x141 + x158 + x159 ++ x160 + x161 + x162 + x170 + x172 + x174 + x175 + x178 + x205 + x207 ++ x208 + x218 + x220 + x221 + x232 + x234 + x245 + x246 + x279 + x281 ++ x286 + x287 + x288 + x289 + x290 + x291 + x293 + x295 + x297 + x324 ++ x348 + x349 + x351 + x352 + x359 + x366 + x374 + x393 + x394 + x414 ++ x423 + x424 + x425 + x426 + x427 + x428 + x435 + x437 + x438 + x439 ++ x440 + x442 + x444 + x446 + x447 + x457 + x462 + x464 + x466 + x478 ++ x479 + x480 + x482 + x483 + x484 <= 1 + +x2 + x3 + x5 + x6 + x7 + x15 + x16 + x24 + x25 + x26 ++ x29 + x30 + x31 + x32 + x33 + x48 + x65 + x69 + x76 + x77 ++ x78 + x79 + x81 + x83 + x92 + x96 + x99 + x101 + x109 + x110 ++ x111 + x112 + x113 + x114 + x115 + x129 + x130 + x131 + x132 + x133 ++ x134 + x158 + x159 + x160 + x161 + x162 + x174 + x176 + x177 + x205 ++ x207 + x208 + x209 + x215 + x217 + x218 + x219 + x220 + x221 + x230 ++ x231 + x232 + x234 + x245 + x246 + x248 + x249 + x254 + x274 + x276 ++ x279 + x281 + x285 + x286 + x287 + x288 + x289 + x290 + x291 + x292 ++ x293 + x295 + x297 + x307 + x314 + x316 + x318 + x319 + x325 + x329 ++ x347 + x348 + x349 + x350 + x351 + x352 + x363 + x392 + x393 + x394 ++ x414 + x423 + x425 + x428 + x435 + x436 + x437 + x438 + x439 + x440 ++ x442 + x444 + x446 + x462 + x463 + x464 + x465 + x466 + x467 + x477 ++ x479 + x480 + x481 + x482 + x483 + x484 + x494 <= 1 + +x2 + x3 + x5 + x6 + x7 + x15 + x24 + x25 + x26 + x29 ++ x30 + x31 + x32 + x34 + x54 + x72 + x74 + x76 + x77 + x78 ++ x79 + x80 + x81 + x83 + x84 + x96 + x97 + x98 + x100 + x102 ++ x109 + x111 + x114 + x116 + x117 + x129 + x130 + x132 + x133 + x134 ++ x158 + x159 + x160 + x161 + x162 + x173 + x176 + x205 + x207 + x208 ++ x213 + x215 + x217 + x218 + x219 + x220 + x221 + x230 + x231 + x232 ++ x234 + x242 + x245 + x246 + x248 + x249 + x254 + x268 + x273 + x274 ++ x276 + x286 + x287 + x288 + x289 + x290 + x291 + x295 + x296 + x297 ++ x307 + x312 + x316 + x317 + x319 + x326 + x329 + x348 + x349 + x350 ++ x351 + x352 + x362 + x378 + x392 + x393 + x394 + x415 + x433 + x435 ++ x436 + x438 + x439 + x440 + x442 + x444 + x447 + x462 + x463 + x465 ++ x466 + x467 + x474 + x475 + x479 + x481 + x483 + x484 + x494 + x495 + <= 1 + +x3 + x5 + x6 + x30 + x34 + x53 + x54 + x55 + x77 + x80 ++ x81 + x83 + x84 + x96 + x102 + x105 + x116 + x117 + x120 + x129 ++ x130 + x132 + x133 + x158 + x159 + x160 + x161 + x163 + x205 + x207 ++ x208 + x213 + x216 + x217 + x218 + x230 + x232 + x242 + x245 + x268 ++ x289 + x317 + x319 + x329 + x348 + x349 + x350 + x352 + x363 + x374 ++ x415 + x430 + x435 + x436 + x438 + x440 + x442 + x465 + x467 + x475 ++ x481 + x483 + x502 <= 1 + +x0 + x3 + x4 + x7 + x23 + x24 + x27 + x35 + x38 + x39 ++ x53 + x54 + x55 + x56 + x58 + x81 + x85 + x86 + x91 + x95 ++ x119 + x143 + x161 + x163 + x165 + x177 + x186 + x229 + x232 + x233 ++ x234 + x244 + x249 + x287 + x291 + x298 + x299 + x300 + x302 + x303 ++ x304 + x305 + x308 + x348 + x349 + x350 + x351 + x352 + x358 + x363 ++ x372 + x373 + x413 + x416 + x463 + x471 + x473 + x474 + x491 + x492 ++ x496 + x501 + x502 + x503 <= 1 + +x3 + x4 + x7 + x24 + x35 + x36 + x37 + x38 + x39 + x40 ++ x53 + x56 + x58 + x65 + x66 + x67 + x81 + x95 + x142 + x143 ++ x144 + x145 + x147 + x163 + x165 + x177 + x199 + x229 + x230 + x231 ++ x232 + x233 + x234 + x244 + x247 + x249 + x252 + x259 + x287 + x291 ++ x294 + x298 + x300 + x302 + x303 + x304 + x305 + x306 + x308 + x309 ++ x348 + x363 + x373 + x397 + x413 + x474 + x485 + x488 + x490 + x492 ++ x500 + x501 + x502 <= 1 + +x3 + x7 + x25 + x32 + x35 + x36 + x37 + x38 + x40 + x53 ++ x54 + x55 + x56 + x57 + x58 + x65 + x66 + x67 + x95 + x104 ++ x142 + x143 + x144 + x145 + x146 + x147 + x165 + x189 + x193 + x199 ++ x201 + x222 + x224 + x225 + x226 + x229 + x230 + x231 + x232 + x233 ++ x234 + x244 + x247 + x249 + x252 + x260 + x261 + x263 + x264 + x287 ++ x289 + x294 + x300 + x302 + x303 + x304 + x305 + x306 + x308 + x309 ++ x351 + x352 + x395 + x397 + x398 + x421 + x456 + x460 + x461 + x485 ++ x488 + x489 + x490 + x492 + x499 + x500 + x501 <= 1 + +x4 + x7 + x24 + x25 + x27 + x28 + x32 + x37 + x56 + x57 ++ x66 + x67 + x93 + x95 + x103 + x104 + x107 + x108 + x111 + x142 ++ x143 + x144 + x146 + x147 + x163 + x189 + x193 + x194 + x198 + x199 ++ x200 + x201 + x202 + x203 + x224 + x225 + x229 + x230 + x231 + x232 ++ x233 + x234 + x242 + x259 + x260 + x261 + x262 + x264 + x302 + x308 ++ x309 + x331 + x332 + x350 + x351 + x375 + x395 + x396 + x397 + x398 ++ x399 + x400 + x421 + x456 + x458 + x460 + x485 + x486 + x487 + x488 ++ x489 + x490 + x499 + x500 <= 1 + +x4 + x7 + x25 + x27 + x28 + x56 + x57 + x91 + x103 + x104 ++ x105 + x107 + x108 + x128 + x142 + x146 + x189 + x193 + x194 + x198 ++ x199 + x201 + x203 + x222 + x223 + x224 + x225 + x226 + x227 + x229 ++ x230 + x231 + x232 + x233 + x260 + x262 + x264 + x309 + x331 + x337 ++ x395 + x397 + x399 + x400 + x466 + x485 + x486 + x487 + x488 + x489 + <= 1 + +x2 + x3 + x10 + x26 + x28 + x47 + x48 + x49 + x51 + x58 ++ x68 + x70 + x112 + x130 + x131 + x140 + x158 + x159 + x160 + x162 ++ x170 + x172 + x175 + x178 + x230 + x231 + x232 + x245 + x277 + x279 ++ x281 + x286 + x287 + x288 + x289 + x290 + x291 + x299 + x324 + x348 ++ x349 + x366 + x367 + x368 + x369 + x390 + x424 + x425 + x426 + x427 ++ x428 + x436 + x437 + x438 + x439 + x440 + x444 + x446 + x480 + x482 + <= 1 + +x2 + x3 + x6 + x25 + x26 + x28 + x48 + x68 + x69 + x70 ++ x97 + x99 + x100 + x101 + x112 + x118 + x121 + x123 + x125 + x129 ++ x130 + x131 + x132 + x134 + x158 + x159 + x160 + x162 + x172 + x175 ++ x176 + x178 + x181 + x182 + x208 + x218 + x220 + x230 + x231 + x232 ++ x245 + x246 + x248 + x274 + x277 + x279 + x281 + x286 + x287 + x288 ++ x289 + x291 + x316 + x317 + x324 + x348 + x349 + x350 + x351 + x352 ++ x374 + x385 + x423 + x424 + x425 + x426 + x427 + x428 + x436 + x438 ++ x442 + x444 + x445 + x446 + x447 + x475 + x480 <= 1 + +x3 + x5 + x6 + x7 + x10 + x11 + x24 + x25 + x26 + x31 ++ x34 + x48 + x55 + x58 + x69 + x70 + x75 + x76 + x77 + x78 ++ x79 + x80 + x84 + x96 + x97 + x98 + x99 + x100 + x109 + x112 ++ x114 + x120 + x129 + x130 + x132 + x133 + x134 + x158 + x159 + x160 ++ x161 + x162 + x171 + x173 + x176 + x177 + x178 + x205 + x208 + x209 ++ x212 + x218 + x220 + x221 + x230 + x231 + x232 + x234 + x242 + x244 ++ x245 + x246 + x248 + x249 + x250 + x254 + x273 + x274 + x276 + x281 ++ x286 + x287 + x288 + x289 + x290 + x291 + x295 + x297 + x312 + x314 ++ x316 + x317 + x318 + x322 + x324 + x325 + x326 + x328 + x347 + x348 ++ x349 + x350 + x351 + x352 + x362 + x363 + x365 + x367 + x368 + x371 ++ x374 + x385 + x390 + x392 + x414 + x417 + x423 + x425 + x433 + x435 ++ x436 + x437 + x438 + x439 + x442 + x445 + x446 + x464 + x467 + x474 ++ x475 + x479 + x481 + x482 + x484 + x495 <= 1 + +x2 + x3 + x5 + x7 + x24 + x25 + x26 + x34 + x53 + x54 ++ x55 + x58 + x70 + x71 + x72 + x74 + x76 + x79 + x80 + x81 ++ x82 + x83 + x84 + x96 + x102 + x109 + x114 + x115 + x117 + x120 ++ x130 + x132 + x133 + x159 + x161 + x173 + x205 + x208 + x213 + x218 ++ x219 + x231 + x232 + x234 + x245 + x246 + x250 + x252 + x255 + x274 ++ x286 + x287 + x288 + x289 + x291 + x302 + x312 + x315 + x318 + x348 ++ x349 + x350 + x352 + x362 + x363 + x367 + x374 + x392 + x433 + x435 ++ x436 + x438 + x440 + x465 + x467 + x474 + x475 + x479 + x481 + x492 + <= 1 + +x2 + x3 + x4 + x6 + x24 + x25 + x27 + x53 + x54 + x55 ++ x58 + x70 + x71 + x72 + x76 + x80 + x81 + x82 + x83 + x84 ++ x86 + x95 + x96 + x102 + x105 + x115 + x117 + x120 + x159 + x161 ++ x163 + x186 + x205 + x207 + x229 + x231 + x232 + x234 + x246 + x251 ++ x252 + x255 + x287 + x288 + x289 + x291 + x300 + x302 + x303 + x317 ++ x329 + x349 + x352 + x363 + x371 + x374 + x415 + x429 + x430 + x431 ++ x433 + x435 + x436 + x438 + x440 + x467 + x468 + x470 + x473 + x481 ++ x492 + x502 <= 1 + +x2 + x3 + x4 + x7 + x24 + x27 + x38 + x40 + x53 + x54 ++ x55 + x56 + x58 + x71 + x81 + x82 + x83 + x84 + x85 + x86 ++ x91 + x95 + x105 + x107 + x115 + x119 + x159 + x160 + x161 + x163 ++ x183 + x184 + x186 + x229 + x231 + x232 + x234 + x249 + x251 + x252 ++ x269 + x287 + x291 + x298 + x299 + x300 + x302 + x303 + x304 + x308 ++ x309 + x348 + x351 + x352 + x363 + x371 + x372 + x373 + x413 + x416 ++ x430 + x431 + x436 + x440 + x463 + x469 + x470 + x471 + x473 + x477 ++ x485 + x491 + x492 + x496 + x499 + x502 + x503 <= 1 + +x4 + x7 + x24 + x27 + x35 + x36 + x37 + x38 + x40 + x53 ++ x54 + x55 + x56 + x58 + x71 + x81 + x95 + x119 + x142 + x145 ++ x146 + x159 + x160 + x161 + x163 + x165 + x201 + x229 + x230 + x231 ++ x232 + x233 + x234 + x244 + x247 + x249 + x252 + x259 + x287 + x291 ++ x295 + x298 + x299 + x300 + x301 + x302 + x303 + x304 + x308 + x309 ++ x338 + x352 + x363 + x372 + x373 + x413 + x421 + x461 + x469 + x471 ++ x474 + x490 + x492 + x499 + x500 + x501 + x502 + x503 <= 1 + +x24 + x25 + x27 + x32 + x35 + x36 + x37 + x40 + x53 + x54 ++ x55 + x56 + x57 + x74 + x95 + x142 + x143 + x144 + x145 + x146 ++ x147 + x160 + x165 + x189 + x193 + x199 + x201 + x229 + x230 + x231 ++ x232 + x233 + x234 + x244 + x247 + x249 + x252 + x258 + x259 + x261 ++ x263 + x276 + x289 + x298 + x299 + x301 + x302 + x303 + x305 + x306 ++ x309 + x338 + x351 + x373 + x397 + x413 + x418 + x421 + x460 + x461 ++ x485 + x490 + x492 + x499 + x501 <= 1 + +x25 + x27 + x28 + x56 + x57 + x66 + x103 + x104 + x107 + x108 ++ x128 + x162 + x163 + x194 + x198 + x199 + x200 + x201 + x202 + x203 ++ x222 + x223 + x224 + x225 + x226 + x227 + x229 + x230 + x231 + x232 ++ x233 + x234 + x259 + x260 + x261 + x262 + x264 + x290 + x298 + x301 ++ x308 + x332 + x375 + x395 + x397 + x398 + x399 + x400 + x422 + x456 ++ x458 + x485 + x486 + x488 + x489 <= 1 + +x7 + x21 + x27 + x28 + x53 + x56 + x57 + x66 + x93 + x103 ++ x104 + x105 + x106 + x107 + x108 + x126 + x127 + x128 + x162 + x194 ++ x198 + x200 + x201 + x202 + x203 + x222 + x223 + x224 + x225 + x226 ++ x227 + x229 + x230 + x231 + x232 + x233 + x234 + x259 + x262 + x264 ++ x288 + x298 + x301 + x309 + x331 + x375 + x395 + x397 + x398 + x399 ++ x400 + x456 + x458 + x466 + x485 + x488 + x489 <= 1 + +x2 + x3 + x4 + x5 + x7 + x8 + x9 + x10 + x47 + x48 ++ x49 + x50 + x51 + x52 + x54 + x58 + x112 + x114 + x131 + x159 ++ x160 + x162 + x170 + x171 + x172 + x173 + x178 + x230 + x232 + x245 ++ x246 + x250 + x253 + x277 + x278 + x282 + x286 + x287 + x288 + x289 ++ x290 + x291 + x314 + x324 + x327 + x328 + x348 + x349 + x350 + x352 ++ x365 + x366 + x367 + x368 + x369 + x370 + x374 + x385 + x389 + x390 ++ x391 + x409 + x427 + x428 + x435 + x436 + x437 + x438 + x439 + x440 ++ x443 + x464 + x467 + x480 + x482 <= 1 + +x2 + x3 + x4 + x5 + x7 + x9 + x10 + x26 + x51 + x52 ++ x54 + x58 + x73 + x75 + x114 + x130 + x131 + x132 + x137 + x159 ++ x161 + x162 + x163 + x170 + x171 + x173 + x177 + x178 + x205 + x206 ++ x230 + x245 + x246 + x248 + x250 + x254 + x278 + x282 + x286 + x287 ++ x288 + x289 + x290 + x291 + x314 + x316 + x317 + x322 + x324 + x327 ++ x328 + x347 + x348 + x349 + x350 + x351 + x352 + x365 + x366 + x367 ++ x368 + x369 + x370 + x374 + x381 + x385 + x389 + x390 + x391 + x414 ++ x423 + x428 + x435 + x436 + x437 + x438 + x439 + x440 + x443 + x445 ++ x464 + x467 + x482 <= 1 + +x2 + x3 + x4 + x5 + x7 + x9 + x11 + x12 + x24 + x25 ++ x58 + x70 + x71 + x72 + x73 + x77 + x78 + x79 + x80 + x82 ++ x114 + x159 + x160 + x161 + x162 + x163 + x171 + x173 + x177 + x178 ++ x205 + x206 + x208 + x209 + x212 + x230 + x244 + x245 + x246 + x248 ++ x249 + x250 + x253 + x254 + x280 + x282 + x286 + x287 + x288 + x289 ++ x290 + x291 + x293 + x295 + x297 + x307 + x312 + x314 + x318 + x322 ++ x324 + x325 + x326 + x328 + x347 + x348 + x349 + x350 + x351 + x352 ++ x363 + x365 + x366 + x367 + x368 + x369 + x370 + x371 + x374 + x390 ++ x391 + x417 + x435 + x436 + x437 + x438 + x439 + x442 + x445 <= 1 + +x2 + x3 + x4 + x5 + x6 + x7 + x24 + x25 + x34 + x54 ++ x58 + x70 + x71 + x72 + x73 + x74 + x75 + x80 + x81 + x82 ++ x130 + x133 + x159 + x161 + x177 + x212 + x231 + x232 + x234 + x245 ++ x246 + x248 + x250 + x251 + x287 + x288 + x289 + x290 + x291 + x293 ++ x348 + x349 + x350 + x351 + x352 + x363 + x365 + x366 + x367 + x368 ++ x370 + x371 + x374 + x417 + x436 + x437 + x438 + x445 + x459 + x467 ++ x474 <= 1 + +x2 + x3 + x4 + x6 + x27 + x53 + x54 + x55 + x56 + x58 ++ x71 + x72 + x73 + x74 + x75 + x80 + x85 + x86 + x102 + x105 ++ x115 + x117 + x120 + x159 + x161 + x184 + x186 + x229 + x231 + x232 ++ x239 + x245 + x246 + x251 + x252 + x253 + x255 + x288 + x289 + x290 ++ x299 + x300 + x303 + x304 + x307 + x322 + x329 + x348 + x352 + x363 ++ x365 + x371 + x413 + x415 + x417 + x429 + x430 + x431 + x433 + x436 ++ x440 + x467 + x473 + x481 + x492 <= 1 + +x2 + x3 + x4 + x6 + x7 + x24 + x27 + x53 + x54 + x55 ++ x56 + x58 + x71 + x74 + x85 + x91 + x92 + x119 + x120 + x159 ++ x161 + x183 + x184 + x185 + x186 + x188 + x194 + x229 + x231 + x232 ++ x234 + x245 + x246 + x251 + x252 + x287 + x289 + x291 + x299 + x300 ++ x302 + x304 + x307 + x322 + x351 + x352 + x363 + x371 + x375 + x412 ++ x413 + x414 + x415 + x416 + x417 + x430 + x431 + x433 + x440 + x469 ++ x485 + x492 + x503 <= 1 + +x2 + x4 + x6 + x7 + x24 + x25 + x40 + x53 + x54 + x55 ++ x56 + x57 + x58 + x71 + x81 + x82 + x85 + x95 + x105 + x107 ++ x108 + x119 + x158 + x159 + x160 + x161 + x162 + x229 + x231 + x232 ++ x233 + x234 + x249 + x250 + x251 + x252 + x255 + x263 + x269 + x287 ++ x298 + x299 + x302 + x303 + x307 + x308 + x363 + x371 + x373 + x412 ++ x413 + x414 + x415 + x416 + x420 + x440 + x463 + x496 + x504 <= 1 + +x4 + x24 + x25 + x27 + x53 + x55 + x56 + x57 + x58 + x74 ++ x103 + x105 + x107 + x108 + x119 + x145 + x160 + x162 + x163 + x165 ++ x193 + x224 + x229 + x231 + x232 + x233 + x234 + x247 + x249 + x252 ++ x258 + x259 + x261 + x263 + x289 + x290 + x298 + x299 + x301 + x302 ++ x303 + x306 + x308 + x333 + x412 + x413 + x416 + x417 + x418 + x420 ++ x422 + x437 + x454 + x458 + x461 + x485 + x490 + x496 + x499 + x501 ++ x504 <= 1 + +x18 + x24 + x27 + x53 + x54 + x55 + x56 + x57 + x74 + x93 ++ x103 + x104 + x105 + x107 + x108 + x127 + x145 + x160 + x162 + x163 ++ x198 + x199 + x200 + x201 + x202 + x222 + x224 + x225 + x227 + x229 ++ x230 + x231 + x232 + x233 + x234 + x259 + x260 + x261 + x263 + x264 ++ x272 + x290 + x298 + x301 + x306 + x332 + x333 + x350 + x372 + x375 ++ x395 + x397 + x398 + x399 + x400 + x412 + x416 + x422 + x453 + x454 ++ x456 + x458 + x473 + x485 + x486 + x488 + x489 + x504 <= 1 + +x7 + x27 + x53 + x56 + x57 + x93 + x98 + x103 + x104 + x105 ++ x106 + x107 + x108 + x126 + x127 + x162 + x163 + x198 + x199 + x200 ++ x202 + x222 + x224 + x225 + x229 + x230 + x231 + x232 + x233 + x234 ++ x260 + x261 + x263 + x264 + x288 + x298 + x301 + x306 + x331 + x333 ++ x359 + x398 + x399 + x400 + x412 + x416 + x451 + x454 + x456 + x458 ++ x466 + x485 + x488 + x489 <= 1 + +x2 + x5 + x6 + x7 + x8 + x9 + x10 + x12 + x13 + x26 ++ x47 + x49 + x50 + x51 + x52 + x54 + x58 + x75 + x80 + x87 ++ x88 + x89 + x90 + x131 + x136 + x138 + x159 + x160 + x162 + x172 ++ x175 + x178 + x205 + x219 + x245 + x246 + x253 + x277 + x278 + x280 ++ x282 + x288 + x289 + x290 + x306 + x307 + x308 + x313 + x322 + x324 ++ x325 + x327 + x328 + x329 + x347 + x348 + x349 + x350 + x352 + x361 ++ x365 + x366 + x367 + x368 + x369 + x370 + x390 + x407 + x409 + x428 ++ x443 + x445 + x480 + x482 <= 1 + +x2 + x4 + x5 + x7 + x8 + x9 + x12 + x13 + x26 + x51 ++ x52 + x70 + x73 + x75 + x80 + x87 + x88 + x106 + x114 + x132 ++ x136 + x137 + x159 + x161 + x162 + x205 + x209 + x245 + x246 + x248 ++ x253 + x254 + x277 + x278 + x280 + x282 + x286 + x287 + x288 + x289 ++ x290 + x291 + x307 + x308 + x313 + x314 + x316 + x325 + x326 + x327 ++ x328 + x329 + x347 + x348 + x349 + x350 + x351 + x352 + x361 + x365 ++ x366 + x367 + x368 + x369 + x370 + x385 + x391 + x414 + x415 + x443 ++ x445 + x487 <= 1 + +x2 + x3 + x4 + x5 + x7 + x8 + x11 + x12 + x13 + x26 ++ x70 + x72 + x73 + x75 + x79 + x80 + x106 + x118 + x135 + x136 ++ x137 + x138 + x159 + x161 + x171 + x187 + x205 + x206 + x208 + x209 ++ x245 + x246 + x248 + x250 + x251 + x253 + x254 + x277 + x278 + x280 ++ x286 + x287 + x288 + x289 + x290 + x291 + x295 + x307 + x312 + x313 ++ x315 + x322 + x325 + x326 + x327 + x328 + x329 + x347 + x348 + x349 ++ x350 + x351 + x352 + x365 + x366 + x367 + x368 + x369 + x370 + x371 ++ x374 + x375 + x390 + x408 + x414 + x415 + x416 + x437 + x442 + x443 ++ x445 + x487 <= 1 + +x2 + x3 + x4 + x5 + x6 + x7 + x8 + x11 + x13 + x71 ++ x72 + x73 + x74 + x75 + x80 + x117 + x135 + x137 + x159 + x161 ++ x163 + x171 + x206 + x207 + x209 + x245 + x246 + x250 + x251 + x253 ++ x254 + x255 + x278 + x280 + x287 + x288 + x289 + x290 + x291 + x307 ++ x315 + x322 + x325 + x326 + x332 + x347 + x348 + x349 + x350 + x351 ++ x352 + x366 + x367 + x368 + x369 + x370 + x371 + x374 + x375 + x407 ++ x408 + x410 + x414 + x417 + x437 + x443 + x445 + x487 <= 1 + +x2 + x3 + x4 + x5 + x6 + x7 + x54 + x58 + x70 + x71 ++ x72 + x73 + x74 + x75 + x80 + x86 + x115 + x117 + x120 + x159 ++ x161 + x209 + x229 + x231 + x232 + x233 + x234 + x245 + x246 + x248 ++ x250 + x251 + x253 + x254 + x255 + x267 + x280 + x288 + x290 + x293 ++ x300 + x307 + x308 + x315 + x322 + x325 + x326 + x348 + x349 + x352 ++ x365 + x370 + x371 + x374 + x375 + x412 + x413 + x415 + x416 + x417 ++ x419 + x429 + x430 + x431 + x436 + x438 + x459 + x467 + x503 <= 1 + +x2 + x3 + x4 + x5 + x6 + x7 + x24 + x27 + x53 + x54 ++ x55 + x56 + x71 + x74 + x85 + x92 + x106 + x117 + x159 + x161 ++ x162 + x183 + x185 + x188 + x229 + x232 + x233 + x234 + x245 + x246 ++ x251 + x255 + x265 + x267 + x268 + x288 + x289 + x296 + x304 + x307 ++ x308 + x322 + x363 + x365 + x368 + x370 + x371 + x373 + x374 + x375 ++ x412 + x413 + x414 + x415 + x416 + x417 + x419 + x431 + x436 + x503 ++ x504 <= 1 + +x2 + x4 + x6 + x7 + x53 + x54 + x55 + x56 + x57 + x58 ++ x90 + x92 + x119 + x158 + x159 + x161 + x162 + x183 + x185 + x231 ++ x232 + x233 + x234 + x255 + x263 + x265 + x267 + x268 + x269 + x288 ++ x289 + x304 + x307 + x308 + x371 + x372 + x373 + x374 + x375 + x412 ++ x413 + x414 + x415 + x416 + x417 + x418 + x419 + x420 + x504 <= 1 + +x4 + x6 + x7 + x53 + x54 + x55 + x56 + x57 + x58 + x92 ++ x107 + x108 + x119 + x135 + x160 + x162 + x185 + x231 + x233 + x234 ++ x252 + x255 + x260 + x261 + x263 + x265 + x266 + x269 + x289 + x304 ++ x306 + x307 + x308 + x333 + x349 + x372 + x375 + x379 + x400 + x412 ++ x413 + x416 + x417 + x418 + x419 + x420 + x422 + x437 + x452 + x453 ++ x461 + x487 + x488 + x490 <= 1 + +x4 + x17 + x18 + x53 + x54 + x55 + x56 + x57 + x58 + x92 ++ x93 + x103 + x108 + x162 + x163 + x198 + x202 + x229 + x230 + x231 ++ x233 + x234 + x255 + x259 + x260 + x261 + x263 + x264 + x266 + x270 ++ x271 + x272 + x290 + x298 + x301 + x304 + x308 + x332 + x336 + x350 ++ x372 + x374 + x375 + x398 + x399 + x400 + x412 + x416 + x428 + x452 ++ x453 + x454 + x455 + x485 + x488 <= 1 + +x4 + x17 + x53 + x54 + x55 + x56 + x57 + x93 + x103 + x106 ++ x116 + x126 + x162 + x198 + x200 + x202 + x229 + x230 + x231 + x234 ++ x259 + x260 + x261 + x263 + x264 + x301 + x331 + x350 + x359 + x398 ++ x400 + x412 + x416 + x451 + x453 + x458 + x468 + x485 <= 1 + +x2 + x5 + x12 + x26 + x47 + x49 + x50 + x51 + x52 + x87 ++ x89 + x90 + x120 + x131 + x138 + x159 + x161 + x188 + x219 + x231 ++ x246 + x282 + x290 + x306 + x308 + x313 + x322 + x324 + x325 + x327 ++ x328 + x329 + x348 + x349 + x350 + x352 + x361 + x365 + x366 + x367 ++ x368 + x370 + x409 + x443 <= 1 + +x2 + x5 + x8 + x9 + x12 + x26 + x47 + x49 + x50 + x52 ++ x73 + x75 + x80 + x88 + x89 + x118 + x131 + x136 + x137 + x138 ++ x159 + x161 + x162 + x209 + x219 + x232 + x246 + x248 + x253 + x287 ++ x288 + x289 + x290 + x306 + x308 + x313 + x322 + x324 + x325 + x327 ++ x328 + x329 + x347 + x348 + x349 + x350 + x351 + x352 + x361 + x365 ++ x366 + x367 + x368 + x369 + x370 + x390 + x391 + x414 + x443 + x487 + <= 1 + +x2 + x5 + x13 + x26 + x47 + x70 + x72 + x73 + x75 + x106 ++ x118 + x135 + x136 + x138 + x187 + x206 + x208 + x209 + x232 + x246 ++ x248 + x250 + x251 + x287 + x288 + x290 + x291 + x308 + x312 + x313 ++ x315 + x322 + x324 + x325 + x326 + x328 + x348 + x349 + x350 + x351 ++ x352 + x365 + x366 + x370 + x375 + x408 + x412 + x414 + x415 + x416 ++ x437 + x443 + x445 + x487 <= 1 + +x2 + x5 + x7 + x11 + x13 + x26 + x58 + x72 + x73 + x75 ++ x79 + x106 + x161 + x163 + x187 + x206 + x208 + x209 + x245 + x246 ++ x250 + x251 + x254 + x287 + x288 + x289 + x290 + x291 + x307 + x309 ++ x315 + x322 + x325 + x326 + x328 + x332 + x347 + x348 + x349 + x350 ++ x351 + x352 + x370 + x371 + x375 + x407 + x410 + x412 + x413 + x414 ++ x415 + x416 + x437 + x443 + x445 <= 1 + +x2 + x11 + x55 + x58 + x73 + x106 + x187 + x245 + x246 + x287 ++ x288 + x289 + x290 + x326 + x349 + x352 + x370 + x371 + x373 + x375 ++ x410 + x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x2 + x27 + x55 + x56 + x106 + x183 + x185 + x187 + x218 + x229 ++ x245 + x246 + x255 + x287 + x288 + x289 + x290 + x291 + x326 + x371 ++ x373 + x374 + x375 + x412 + x413 + x414 + x415 + x416 + x504 <= 1 + +x2 + x24 + x48 + x53 + x54 + x55 + x56 + x92 + x232 + x245 ++ x246 + x255 + x267 + x288 + x289 + x304 + x307 + x365 + x412 + x413 ++ x414 + x415 + x416 + x417 <= 1 + +x56 + x57 + x92 + x135 + x162 + x228 + x229 + x233 + x234 + x265 ++ x266 + x289 + x308 + x375 + x391 + x412 + x413 + x417 + x455 <= 1 + +x54 + x55 + x56 + x57 + x103 + x116 + x122 + x229 + x230 + x233 ++ x259 + x261 + x264 + x266 + x270 + x271 + x272 + x289 + x301 + x308 ++ x374 + x375 + x391 + x417 + x451 + x452 + x455 + x458 <= 1 + +x37 + x55 + x56 + x57 + x116 + x122 + x157 + x200 + x202 + x229 ++ x230 + x247 + x259 + x260 + x261 + x263 + x264 + x271 + x301 + x359 ++ x374 + x412 + x417 + x451 + x452 + x455 + x458 + x474 + x485 <= 1 + +x0 + x1 <= 1 + +x2 + x3 + x4 + x5 + x6 + x7 <= 1 + +x8 + x9 + x10 + x11 + x12 + x13 <= 1 + +x15 + x16 <= 1 + +x17 + x18 <= 1 + +x19 + x20 + x21 <= 1 + +x23 + x24 + x25 + x26 + x27 + x28 <= 1 + +x29 + x30 + x31 + x32 + x33 + x34 <= 1 + +x35 + x36 + x37 + x38 + x39 + x40 <= 1 + +x41 + x42 + x43 + x44 + x45 + x46 <= 1 + +x47 + x48 + x49 + x50 + x51 + x52 <= 1 + +x53 + x54 + x55 + x56 + x57 + x58 <= 1 + +x59 + x60 + x61 + x62 + x63 + x64 <= 1 + +x65 + x66 + x67 + x68 + x69 <= 1 + +x70 + x71 + x72 + x73 + x74 + x75 <= 1 + +x76 + x77 + x78 + x79 + x80 + x81 <= 1 + +x82 + x83 + x84 + x85 + x86 <= 1 + +x87 + x88 + x89 + x90 <= 1 + +x91 + x92 + x93 + x94 + x95 + x96 <= 1 + +x97 + x98 + x99 + x100 + x101 + x102 <= 1 + +x103 + x104 + x105 + x106 + x107 + x108 <= 1 + +x109 + x110 + x111 + x112 + x113 + x114 <= 1 + +x115 + x116 + x117 + x118 + x119 + x120 <= 1 + +x121 + x122 + x123 + x124 + x125 <= 1 + +x126 + x127 + x128 <= 1 + +x129 + x130 + x131 + x132 + x133 + x134 <= 1 + +x135 + x136 + x137 + x138 <= 1 + +x139 + x140 + x141 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x148 + x149 + x150 + x151 <= 1 + +x152 + x153 + x154 + x155 + x156 <= 1 + +x158 + x159 + x160 + x161 + x162 + x163 <= 1 + +x164 + x165 + x166 + x167 + x168 + x169 <= 1 + +x170 + x171 + x172 + x173 + x174 + x175 <= 1 + +x176 + x177 + x178 + x179 + x180 + x181 <= 1 + +x183 + x184 + x185 + x186 + x187 + x188 <= 1 + +x189 + x190 + x191 + x192 + x193 + x194 <= 1 + +x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 + x221 <= 1 + +x222 + x223 + x224 + x225 + x226 + x227 <= 1 + +x229 + x230 + x231 + x232 + x233 + x234 <= 1 + +x235 + x236 <= 1 + +x237 + x238 + x239 + x240 + x241 + x242 <= 1 + +x244 + x245 + x246 + x247 + x248 + x249 <= 1 + +x250 + x251 + x252 + x253 + x254 + x255 <= 1 + + <= 1 + +x259 + x260 + x261 + x262 + x263 + x264 <= 1 + +x265 + x266 + x267 + x268 + x269 <= 1 + +x270 + x271 + x272 <= 1 + +x273 + x274 + x275 + x276 <= 1 + +x277 + x278 + x279 + x280 + x281 + x282 <= 1 + +x283 + x284 + x285 <= 1 + +x286 + x287 + x288 + x289 + x290 + x291 <= 1 + +x292 + x293 + x294 + x295 + x296 + x297 <= 1 + +x298 + x299 + x300 + x301 + x302 + x303 <= 1 + +x304 + x305 + x306 + x307 + x308 + x309 <= 1 + +x310 + x311 <= 1 + +x312 + x313 + x314 + x315 + x316 + x317 <= 1 + +x318 + x319 + x320 + x321 + x322 + x323 <= 1 + +x324 + x325 + x326 + x327 + x328 + x329 <= 1 + +x330 + x331 + x332 + x333 + x334 + x335 <= 1 + +x337 + x338 + x339 + x340 + x341 + x342 <= 1 + +x344 + x345 + x346 <= 1 + +x347 + x348 + x349 + x350 + x351 + x352 <= 1 + +x353 + x354 + x355 + x356 + x357 <= 1 + +x358 + x359 + x360 + x361 + x362 + x363 <= 1 + +x365 + x366 + x367 + x368 + x369 + x370 <= 1 + +x371 + x372 + x373 + x374 + x375 + x376 <= 1 + +x377 + x378 + x379 + x380 + x381 + x382 <= 1 + +x383 + x384 + x385 + x386 + x387 + x388 <= 1 + +x389 + x390 + x391 + x392 + x393 + x394 <= 1 + +x395 + x396 + x397 + x398 + x399 + x400 <= 1 + +x401 + x402 + x403 + x404 + x405 + x406 <= 1 + +x407 + x408 + x409 + x410 <= 1 + +x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 + x422 <= 1 + +x423 + x424 + x425 + x426 + x427 + x428 <= 1 + +x429 + x430 + x431 + x432 + x433 + x434 <= 1 + +x435 + x436 + x437 + x438 + x439 + x440 <= 1 + +x442 + x443 + x444 + x445 + x446 + x447 <= 1 + +x448 + x449 + x450 <= 1 + +x451 + x452 + x453 + x454 + x455 <= 1 + +x456 + x457 + x458 + x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x469 + x470 + x471 <= 1 + +x472 + x473 + x474 + x475 + x476 + x477 <= 1 + +x479 + x480 + x481 + x482 + x483 + x484 <= 1 + +x485 + x486 + x487 + x488 + x489 + x490 <= 1 + +x491 + x492 + x493 + x494 + x495 + x496 <= 1 + +x497 + x498 <= 1 + +x499 + x500 + x501 + x502 + x503 + x504 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 x503 x504 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0001.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0001.lp new file mode 100644 index 000000000..228c27f67 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0001.lp @@ -0,0 +1,1105 @@ +max + +322.627x0 + 448.966x1 + 404.674x2 + 386.499x3 + 292.101x4 + 276.459x5 + 1684.07x6 + 1890.66x7 + 1845.75x8 + 1769.11x9 + +1733.45x10 + 1719.61x11 + 2652.31x12 + 2719.77x13 + 2692.28x14 + 2662.06x15 + 2606.87x16 + 2606.72x17 + 1295.4x18 + 1446.07x19 + +1372.17x20 + 1355.58x21 + 1349.9x22 + 1341.18x23 + 93.4606x24 + 228.547x25 + 305.128x26 + 277.002x27 + 274.024x28 + 277.379x29 + +415.863x30 + 340.844x31 + 304.833x32 + 295.517x33 + 289.162x34 + 906.373x35 + 1056.2x36 + 1031.1x37 + 1018.27x38 + 1004.61x39 + +980.32x40 + 452.99x41 + 642.553x42 + 517.138x43 + 473.121x44 + 450.099x45 + 443.215x46 + 1043.99x47 + 1038.42x48 + 1037.69x49 + +1031.64x50 + 1030.95x51 + 982.308x52 + 1227.89x53 + 1188.61x54 + 1182.1x55 + 1150.92x56 + 1070.6x57 + 1055.28x58 + 1077.75x59 + +1222.64x60 + 1188.77x61 + 1160.01x62 + 1147.68x63 + 1141.49x64 + 1046.17x65 + 1163.7x66 + 1136.25x67 + 1132.35x68 + 1121.23x69 + +1097.84x70 + 94.1064x71 + 1483.65x72 + 2026.06x73 + 1977.45x74 + 1948.38x75 + 1941.99x76 + 1940.45x77 + 575.813x78 + 670.148x79 + +649.362x80 + 628.074x81 + 624.829x82 + 613.724x83 + 86.0017x84 + 278.617x85 + 300.778x86 + 261.156x87 + 231.29x88 + 798.181x89 + +976.392x90 + 968.637x91 + 865.885x92 + 859.317x93 + 843.61x94 + 100.34x95 + 482.809x96 + 603.59x97 + 577.289x98 + 554.873x99 + +513.101x100 + 478.286x101 + 893.666x102 + 1205.15x103 + 1190.1x104 + 1173.78x105 + 1172.55x106 + 1125.32x107 + 96.05x108 + 1314.42x109 + +1963.58x110 + 1946.97x111 + 1893.72x112 + 1878.23x113 + 1875.89x114 + 777.277x115 + 957.917x116 + 925.285x117 + 883.478x118 + 833.915x119 + +833.036x120 + 284.73x121 + 310.791x122 + 289.026x123 + 222.664x124 + 214.566x125 + 165.812x126 + 997.241x127 + 1024.73x128 + 1012.22x129 + +1008.06x130 + 978.635x131 + 938.493x132 + 1348.04x133 + 1356.11x134 + 1352.52x135 + 1349.01x136 + 1312.6x137 + 1295.1x138 + 30.1527x139 + +587.981x140 + 661.738x141 + 636.466x142 + 574.645x143 + 562.659x144 + 552.905x145 + 535.93x146 + 759.908x147 + 729.435x148 + 713.984x149 + +666.574x150 + 645.86x151 + 670.823x152 + 744.984x153 + 668.034x154 + 554.951x155 + 523.531x156 + 523.465x157 + 260.047x158 + 307.012x159 + +300.676x160 + 277.858x161 + 226.307x162 + 138.714x163 + 1359.91x164 + 1594.25x165 + 1565.81x166 + 1520.72x167 + 1490.05x168 + 1453.31x169 + +514.255x170 + 729.786x171 + 695.13x172 + 634.63x173 + 590.714x174 + 546.356x175 + 709.815x176 + 726.387x177 + 688.317x178 + 672.61x179 + +667.616x180 + 667.137x181 + 940.62x182 + 1286.84x183 + 1215.52x184 + 1155.47x185 + 1150.15x186 + 1140.74x187 + 207.04x188 + 239.022x189 + +209.322x190 + 169.617x191 + 1642.33x192 + 1949.82x193 + 1928.76x194 + 1842.4x195 + 1828.09x196 + 1822.57x197 + 1296.47x198 + 1482.51x199 + +1460.7x200 + 1368.8x201 + 1365.64x202 + 1360.39x203 + 860.539x204 + 885.155x205 + 882.608x206 + 826.809x207 + 821.02x208 + 817.119x209 + +401.657x210 + 516.522x211 + 500.881x212 + 499.449x213 + 476.618x214 + 467.609x215 + 300.29x216 + 414.509x217 + 358.041x218 + 288.989x219 + +271.368x220 + 628.495x221 + 931.953x222 + 854.568x223 + 848.257x224 + 838.934x225 + 824.916x226 + 681.468x227 + 924.676x228 + 816.771x229 + +813.807x230 + 759.833x231 + 758.275x232 + 2379.57x233 + 3046.01x234 + 2724.36x235 + 2703.28x236 + 2686.62x237 + 2614.24x238 + 252.523x239 + +341.861x240 + 304.885x241 + 300.576x242 + 284.766x243 + 240.327x244 + 422.051x245 + 473.964x246 + 423.875x247 + 335.052x248 + 300.055x249 + +265.223x250 + 1253.13x251 + 1279.71x252 + 1232x253 + 1211.24x254 + 1185.05x255 + 1178.74x256 + 491.988x257 + 610.116x258 + 554.644x259 + +496.955x260 + 475.265x261 + 438.199x262 + 1095.03x263 + 1248.82x264 + 1146.54x265 + 1141.59x266 + 1115.2x267 + 1085.54x268 + 894.101x269 + +863.697x270 + 860.841x271 + 852.417x272 + 839.77x273 + 798.215x274 + 818.416x275 + 977.8x276 + 961.975x277 + 949.28x278 + 934.589x279 + +876.724x280 + 75.0932x281 + 1056.36x282 + 1317.35x283 + 1287.18x284 + 1234.36x285 + 1173.95x286 + 1119.35x287 + 542.318x288 + 729.511x289 + +699.348x290 + 687.906x291 + 664.531x292 + 648.484x293 + 613.686x294 + 698.797x295 + 670.024x296 + 615.802x297 + 585.607x298 + 577.951x299 + +287.707x300 + 386.292x301 + 293.353x302 + 228.951x303 + 207.658x304 + 437.374x305 + 621.943x306 + 549.05x307 + 542.292x308 + 515.917x309 + +453.578x310 + 361.501x311 + 346.983x312 + 330.687x313 + 323.542x314 + 317.15x315 + 404.983x316 + 526.041x317 + 508.564x318 + 497.954x319 + +483.138x320 + 456.64x321 + 691.929x322 + 1023.08x323 + 988.652x324 + 946.761x325 + 935.098x326 + 933.032x327 + 509.728x328 + 619.015x329 + +581.365x330 + 544.818x331 + 527.437x332 + 526.327x333 + 833.851x334 + 871.706x335 + 866.885x336 + 813.473x337 + 809.628x338 + 807.313x339 + +766.804x340 + 817.491x341 + 804.838x342 + 790.966x343 + 744.43x344 + 685.158x345 + 3187.12x346 + 3314.11x347 + 3273.92x348 + 3260.7x349 + +3240.08x350 + 3187.02x351 + 772.179x352 + 986.364x353 + 928.377x354 + 922.941x355 + 914.28x356 + 851.368x357 + 291.891x358 + 437.54x359 + +363.921x360 + 224.418x361 + 816.1x362 + 916.965x363 + 893.372x364 + 817.78x365 + 802.933x366 + 791.807x367 + 180.175x368 + 115.156x369 + +98.4008x370 + 106.165x371 + 94.7481x372 + 135.829x373 + 172.382x374 + 249.659x375 + 222.806x376 + 203.444x377 + 1185.68x378 + 1412.21x379 + +1395.39x380 + 1373.06x381 + 1336.28x382 + 1275.44x383 + 1451.6x384 + 1736.73x385 + 1709.17x386 + 1664.42x387 + 1636.41x388 + 1576.55x389 + +132.502x390 + 162.255x391 + 158.159x392 + 1024.53x393 + 997.16x394 + 992.22x395 + 978.934x396 + 978.181x397 + 911.787x398 + 294.632x399 + +324.489x400 + 312.614x401 + 198.805x402 + 197.181x403 + 1022.95x404 + 1403.91x405 + 1361.56x406 + 1333.1x407 + 1311.95x408 + 1310.43x409 + +1735.75x410 + 1871.29x411 + 1851.15x412 + 1827.4x413 + 1764.32x414 + 1763.92x415 + 297.277x416 + 392.481x417 + 341.488x418 + 330.699x419 + +262.273x420 + 309.58x421 + 324.224x422 + 317.491x423 + 263.054x424 + 254.286x425 + 897.557x426 + 1175.25x427 + 1165.99x428 + 1133.03x429 + +1129.63x430 + 1086.85x431 + 963.739x432 + 1150.24x433 + 1114.65x434 + 1052.62x435 + 1019.12x436 + 1011.56x437 + 479.284x438 + 631.239x439 + +593.577x440 + 545.723x441 + 526.886x442 + 511.105x443 + 174.289x444 + 308.275x445 + 321.763x446 + 308.106x447 + 306.141x448 + 301.403x449 + +1686.94x450 + 2005.3x451 + 1968.2x452 + 1878.21x453 + 1868.25x454 + 1846.79x455 + 1626.03x456 + 2184.65x457 + 1940.06x458 + 1937.69x459 + +1888.06x460 + 1831.67x461 + 386.246x462 + 458.106x463 + 441.782x464 + 369.607x465 + 353.497x466 + 328.384x467 + 773.45x468 + 1056.99x469 + +1008.4x470 + 967.275x471 + 932.829x472 + 911.381x473 + 3786.74x474 + 4115.49x475 + 4104.53x476 + 4103.71x477 + 4092.66x478 + 4038.7x479 + +292.011x480 + 401.579x481 + 388.699x482 + 383.894x483 + 338.298x484 + 321.335x485 + 761.42x486 + 856.231x487 + 838.807x488 + 771.881x489 + +770.548x490 + 717.657x491 + 744.992x492 + 984.391x493 + 981.612x494 + 956.222x495 + 933.905x496 + 932.29x497 + 275.372x498 + 232.765x499 + + +st + +x8 + x10 + x14 + x20 + x59 + x61 + x64 + x72 + x74 + x75 ++ x78 + x80 + x82 + x83 + x111 + x112 + x116 + x133 + x136 + x140 ++ x141 + x143 + x144 + x145 + x164 + x165 + x167 + x169 + x184 + x193 ++ x197 + x212 + x234 + x251 + x252 + x253 + x255 + x256 + x270 + x272 ++ x273 + x284 + x292 + x298 + x305 + x306 + x309 + x310 + x346 + x363 ++ x384 + x386 + x387 + x388 + x389 + x393 + x394 + x395 + x397 + x398 ++ x410 + x411 + x412 + x413 + x414 + x415 + x440 + x442 + x450 + x451 ++ x457 + x469 + x470 + x471 + x474 + x478 + x495 <= 1 + +x8 + x14 + x26 + x47 + x51 + x52 + x59 + x61 + x64 + x72 ++ x73 + x74 + x75 + x77 + x78 + x79 + x80 + x82 + x83 + x90 ++ x96 + x98 + x109 + x111 + x112 + x117 + x133 + x134 + x136 + x143 ++ x164 + x165 + x167 + x168 + x169 + x193 + x199 + x202 + x212 + x222 ++ x223 + x234 + x251 + x252 + x253 + x256 + x270 + x272 + x274 + x284 ++ x292 + x298 + x299 + x306 + x331 + x344 + x346 + x358 + x359 + x360 ++ x362 + x363 + x364 + x367 + x384 + x386 + x387 + x388 + x389 + x393 ++ x394 + x395 + x397 + x410 + x411 + x412 + x413 + x414 + x415 + x432 ++ x438 + x440 + x450 + x451 + x457 + x459 + x467 + x469 + x470 + x471 ++ x474 + x475 + x478 + x494 + x495 <= 1 + +x8 + x9 + x13 + x15 + x47 + x52 + x59 + x61 + x63 + x64 ++ x74 + x75 + x78 + x79 + x80 + x81 + x82 + x83 + x90 + x98 ++ x111 + x112 + x113 + x133 + x134 + x136 + x137 + x164 + x165 + x167 ++ x168 + x169 + x171 + x186 + x192 + x199 + x202 + x206 + x212 + x223 ++ x251 + x252 + x253 + x254 + x256 + x265 + x269 + x270 + x272 + x273 ++ x274 + x284 + x306 + x331 + x332 + x343 + x344 + x346 + x358 + x359 ++ x360 + x362 + x363 + x364 + x366 + x367 + x384 + x387 + x388 + x389 ++ x393 + x394 + x397 + x410 + x411 + x412 + x413 + x414 + x415 + x432 ++ x437 + x438 + x439 + x440 + x441 + x443 + x450 + x451 + x457 + x458 ++ x459 + x465 + x467 + x468 + x469 + x470 + x471 + x474 + x475 + x476 ++ x477 + x478 + x494 <= 1 + +x6 + x7 + x8 + x9 + x10 + x13 + x15 + x28 + x55 + x59 ++ x61 + x63 + x64 + x74 + x75 + x79 + x80 + x81 + x82 + x83 ++ x111 + x112 + x113 + x133 + x134 + x135 + x136 + x137 + x138 + x164 ++ x165 + x167 + x168 + x169 + x171 + x186 + x192 + x199 + x211 + x213 ++ x214 + x218 + x223 + x251 + x252 + x253 + x254 + x255 + x256 + x265 ++ x267 + x268 + x269 + x270 + x272 + x273 + x274 + x328 + x330 + x331 ++ x332 + x341 + x343 + x344 + x346 + x359 + x361 + x362 + x363 + x364 ++ x365 + x366 + x367 + x384 + x387 + x389 + x393 + x394 + x397 + x410 ++ x411 + x412 + x413 + x414 + x415 + x431 + x432 + x437 + x438 + x440 ++ x441 + x443 + x450 + x451 + x455 + x457 + x458 + x459 + x462 + x463 ++ x464 + x465 + x467 + x471 + x474 + x475 + x476 + x478 <= 1 + +x8 + x10 + x13 + x15 + x55 + x59 + x61 + x63 + x82 + x110 ++ x111 + x112 + x113 + x133 + x134 + x135 + x136 + x137 + x138 + x167 ++ x168 + x169 + x182 + x210 + x211 + x213 + x214 + x215 + x223 + x235 ++ x245 + x246 + x251 + x252 + x253 + x254 + x255 + x256 + x265 + x267 ++ x268 + x270 + x272 + x273 + x274 + x281 + x328 + x329 + x330 + x331 ++ x332 + x333 + x341 + x342 + x343 + x344 + x345 + x346 + x362 + x365 ++ x367 + x384 + x389 + x397 + x410 + x411 + x412 + x413 + x414 + x415 ++ x431 + x432 + x434 + x437 + x440 + x451 + x455 + x458 + x462 + x463 ++ x464 + x466 + x474 + x475 + x476 + x478 + x494 <= 1 + +x12 + x13 + x15 + x16 + x19 + x55 + x59 + x63 + x79 + x107 ++ x111 + x113 + x133 + x134 + x135 + x137 + x138 + x165 + x167 + x169 ++ x186 + x192 + x196 + x199 + x201 + x210 + x211 + x213 + x214 + x215 ++ x229 + x235 + x246 + x251 + x252 + x253 + x254 + x255 + x256 + x270 ++ x272 + x273 + x329 + x333 + x340 + x341 + x342 + x343 + x344 + x345 ++ x348 + x356 + x405 + x409 + x411 + x412 + x413 + x432 + x433 + x435 ++ x437 + x451 + x462 + x466 + x474 + x475 + x476 + x478 + x494 <= 1 + +x6 + x9 + x11 + x77 + x171 + x236 + x288 + x289 + x291 + x293 ++ x301 + x352 + x354 + x355 + x378 + x380 + x413 + x459 + x474 + x498 ++ x499 <= 1 + +x6 + x9 + x11 + x12 + x14 + x29 + x30 + x31 + x32 + x33 ++ x34 + x137 + x170 + x171 + x236 + x263 + x266 + x288 + x289 + x291 ++ x293 + x301 + x338 + x352 + x353 + x354 + x355 + x356 + x378 + x380 ++ x405 + x474 + x475 + x498 + x499 <= 1 + +x9 + x11 + x29 + x31 + x32 + x33 + x58 + x115 + x117 + x120 ++ x171 + x187 + x200 + x263 + x266 + x267 + x288 + x292 + x293 + x353 ++ x354 + x355 + x378 + x380 + x382 + x405 + x481 + x484 + x499 <= 1 + +x9 + x29 + x32 + x33 + x58 + x66 + x67 + x68 + x76 + x77 ++ x114 + x115 + x119 + x120 + x135 + x171 + x187 + x233 + x263 + x266 ++ x288 + x292 + x293 + x348 + x350 + x351 + x352 + x353 + x378 + x405 ++ x460 + x474 <= 1 + +x10 + x14 + x26 + x27 + x61 + x64 + x72 + x73 + x74 + x75 ++ x77 + x78 + x80 + x82 + x83 + x90 + x111 + x112 + x116 + x117 ++ x136 + x140 + x141 + x143 + x144 + x145 + x154 + x156 + x157 + x164 ++ x165 + x167 + x168 + x169 + x184 + x198 + x212 + x234 + x251 + x253 ++ x255 + x272 + x273 + x284 + x298 + x305 + x306 + x309 + x310 + x349 ++ x360 + x367 + x386 + x387 + x388 + x389 + x393 + x394 + x395 + x396 ++ x397 + x398 + x410 + x411 + x412 + x413 + x414 + x415 + x442 + x457 ++ x471 + x474 + x478 + x494 + x495 <= 1 + +x10 + x25 + x26 + x27 + x47 + x51 + x52 + x61 + x64 + x72 ++ x73 + x74 + x75 + x77 + x78 + x80 + x82 + x90 + x95 + x109 ++ x111 + x112 + x116 + x117 + x133 + x134 + x136 + x140 + x141 + x143 ++ x144 + x154 + x156 + x164 + x165 + x167 + x168 + x169 + x172 + x182 ++ x192 + x193 + x211 + x212 + x234 + x253 + x255 + x270 + x272 + x273 ++ x274 + x284 + x287 + x298 + x299 + x306 + x346 + x349 + x362 + x363 ++ x367 + x384 + x385 + x386 + x387 + x388 + x389 + x410 + x411 + x412 ++ x413 + x414 + x415 + x432 + x438 + x439 + x441 + x442 + x457 + x465 ++ x468 + x469 + x470 + x471 + x474 + x475 + x477 + x478 + x494 + x495 + <= 1 + +x15 + x25 + x26 + x27 + x28 + x47 + x52 + x59 + x74 + x75 ++ x77 + x78 + x79 + x80 + x81 + x90 + x109 + x111 + x112 + x113 ++ x156 + x164 + x165 + x167 + x168 + x169 + x182 + x186 + x192 + x210 ++ x211 + x212 + x213 + x214 + x215 + x223 + x238 + x251 + x252 + x253 ++ x256 + x268 + x269 + x270 + x272 + x273 + x274 + x306 + x330 + x331 ++ x333 + x344 + x358 + x360 + x362 + x363 + x364 + x366 + x367 + x384 ++ x387 + x389 + x410 + x411 + x412 + x413 + x414 + x415 + x432 + x437 ++ x438 + x439 + x440 + x441 + x443 + x450 + x451 + x454 + x457 + x458 ++ x459 + x465 + x467 + x468 + x469 + x470 + x471 + x474 + x476 + x477 ++ x478 <= 1 + +x4 + x6 + x7 + x8 + x9 + x10 + x11 + x14 + x15 + x25 ++ x28 + x52 + x55 + x59 + x60 + x61 + x63 + x75 + x78 + x79 ++ x80 + x81 + x82 + x90 + x110 + x111 + x112 + x113 + x133 + x134 ++ x135 + x136 + x137 + x138 + x165 + x167 + x168 + x169 + x175 + x182 ++ x186 + x192 + x199 + x210 + x211 + x213 + x214 + x215 + x223 + x235 ++ x251 + x252 + x253 + x254 + x255 + x256 + x265 + x266 + x268 + x269 ++ x270 + x272 + x273 + x274 + x306 + x328 + x330 + x331 + x332 + x333 ++ x340 + x341 + x342 + x343 + x344 + x345 + x346 + x358 + x361 + x362 ++ x363 + x364 + x365 + x366 + x367 + x384 + x387 + x389 + x410 + x411 ++ x412 + x413 + x414 + x415 + x431 + x432 + x434 + x437 + x438 + x441 ++ x443 + x450 + x451 + x455 + x457 + x458 + x459 + x462 + x464 + x465 ++ x466 + x467 <= 1 + +x6 + x8 + x10 + x11 + x14 + x15 + x25 + x28 + x55 + x59 ++ x60 + x61 + x62 + x63 + x74 + x75 + x78 + x79 + x80 + x81 ++ x110 + x111 + x112 + x113 + x133 + x134 + x135 + x136 + x137 + x138 ++ x165 + x167 + x168 + x169 + x177 + x182 + x185 + x186 + x192 + x194 ++ x196 + x201 + x210 + x211 + x213 + x214 + x215 + x234 + x235 + x236 ++ x246 + x251 + x252 + x253 + x254 + x255 + x256 + x258 + x259 + x265 ++ x266 + x267 + x268 + x269 + x328 + x329 + x330 + x331 + x332 + x333 ++ x340 + x341 + x342 + x343 + x344 + x346 + x348 + x362 + x363 + x364 ++ x365 + x366 + x367 + x387 + x405 + x411 + x412 + x413 + x414 + x415 ++ x432 + x433 + x434 + x435 + x437 + x440 + x443 + x450 + x451 + x455 ++ x457 + x458 + x459 + x462 + x463 + x464 + x474 + x475 + x476 + x477 ++ x478 + x494 <= 1 + +x6 + x11 + x12 + x14 + x16 + x19 + x22 + x55 + x56 + x59 ++ x60 + x61 + x62 + x63 + x79 + x112 + x113 + x120 + x133 + x134 ++ x135 + x136 + x137 + x138 + x165 + x167 + x169 + x186 + x192 + x193 ++ x194 + x195 + x196 + x199 + x201 + x202 + x210 + x214 + x215 + x234 ++ x235 + x236 + x246 + x251 + x252 + x253 + x254 + x255 + x256 + x263 ++ x264 + x265 + x266 + x267 + x268 + x328 + x329 + x330 + x331 + x332 ++ x333 + x340 + x341 + x342 + x343 + x344 + x346 + x348 + x356 + x365 ++ x366 + x405 + x409 + x411 + x413 + x432 + x433 + x434 + x435 + x436 ++ x437 + x451 + x455 + x466 + x474 + x475 + x476 + x478 <= 1 + +x6 + x9 + x10 + x11 + x29 + x34 + x51 + x113 + x129 + x137 ++ x171 + x200 + x266 + x267 + x289 + x291 + x297 + x305 + x348 + x352 ++ x354 + x355 + x378 + x380 + x474 + x475 + x498 <= 1 + +x6 + x9 + x10 + x11 + x12 + x14 + x17 + x19 + x29 + x30 ++ x31 + x32 + x34 + x51 + x113 + x115 + x116 + x117 + x118 + x119 ++ x120 + x129 + x137 + x138 + x182 + x186 + x187 + x200 + x201 + x236 ++ x263 + x266 + x267 + x288 + x289 + x291 + x292 + x297 + x320 + x329 ++ x348 + x351 + x352 + x354 + x355 + x356 + x378 + x435 + x436 + x437 ++ x474 + x475 + x476 + x480 + x483 + x487 + x489 + x498 + x499 <= 1 + +x6 + x9 + x11 + x39 + x58 + x66 + x67 + x68 + x69 + x73 ++ x76 + x77 + x114 + x115 + x117 + x118 + x119 + x120 + x138 + x171 ++ x182 + x187 + x200 + x263 + x266 + x267 + x288 + x289 + x290 + x291 ++ x292 + x293 + x321 + x329 + x348 + x350 + x351 + x352 + x355 + x357 ++ x378 + x379 + x380 + x381 + x382 + x405 + x434 + x460 + x472 + x474 ++ x475 + x480 + x481 + x483 + x484 <= 1 + +x9 + x11 + x58 + x66 + x67 + x68 + x69 + x73 + x76 + x77 ++ x115 + x119 + x120 + x171 + x187 + x200 + x233 + x289 + x290 + x291 ++ x292 + x293 + x348 + x350 + x351 + x352 + x353 + x357 + x378 + x405 ++ x434 + x460 + x474 + x475 + x480 + x484 + x485 <= 1 + +x14 + x47 + x51 + x52 + x64 + x72 + x73 + x74 + x75 + x77 ++ x83 + x112 + x124 + x136 + x139 + x140 + x141 + x143 + x144 + x145 ++ x164 + x165 + x167 + x168 + x169 + x198 + x203 + x212 + x250 + x251 ++ x253 + x255 + x256 + x284 + x298 + x305 + x309 + x310 + x337 + x349 ++ x386 + x388 + x389 + x393 + x394 + x395 + x396 + x397 + x398 + x410 ++ x411 + x412 + x413 + x414 + x415 + x442 + x452 + x457 + x469 + x470 ++ x471 + x474 + x478 + x492 + x494 + x495 + x496 <= 1 + +x14 + x27 + x47 + x48 + x50 + x51 + x52 + x61 + x69 + x72 ++ x73 + x74 + x75 + x77 + x78 + x83 + x110 + x111 + x112 + x116 ++ x117 + x124 + x134 + x136 + x140 + x142 + x143 + x144 + x145 + x154 ++ x156 + x157 + x164 + x165 + x167 + x168 + x169 + x172 + x184 + x185 ++ x193 + x198 + x203 + x229 + x250 + x251 + x253 + x255 + x256 + x261 ++ x272 + x273 + x284 + x287 + x294 + x296 + x298 + x309 + x312 + x315 ++ x349 + x363 + x367 + x384 + x385 + x386 + x387 + x388 + x389 + x393 ++ x394 + x395 + x396 + x397 + x398 + x410 + x411 + x412 + x413 + x414 ++ x415 + x438 + x439 + x441 + x442 + x452 + x469 + x470 + x471 + x474 ++ x475 + x477 + x478 + x479 + x492 + x494 + x495 + x496 + x497 <= 1 + +x7 + x8 + x9 + x10 + x11 + x14 + x48 + x50 + x51 + x69 ++ x74 + x75 + x81 + x83 + x110 + x111 + x112 + x116 + x124 + x133 ++ x136 + x144 + x156 + x164 + x167 + x168 + x169 + x172 + x184 + x185 ++ x192 + x193 + x195 + x198 + x199 + x201 + x203 + x229 + x235 + x251 ++ x253 + x255 + x256 + x257 + x258 + x259 + x260 + x261 + x270 + x272 ++ x273 + x274 + x294 + x295 + x296 + x298 + x299 + x312 + x330 + x345 ++ x346 + x347 + x349 + x384 + x385 + x386 + x387 + x388 + x389 + x393 ++ x394 + x398 + x399 + x400 + x401 + x411 + x431 + x439 + x442 + x452 ++ x457 + x459 + x470 + x471 + x474 + x475 + x476 + x477 + x478 + x479 ++ x493 + x494 + x495 + x496 + x497 <= 1 + +x4 + x6 + x7 + x8 + x9 + x10 + x11 + x55 + x59 + x61 ++ x62 + x63 + x69 + x81 + x83 + x90 + x112 + x133 + x135 + x136 ++ x137 + x138 + x144 + x150 + x167 + x169 + x172 + x182 + x192 + x193 ++ x195 + x198 + x199 + x200 + x201 + x203 + x235 + x251 + x253 + x254 ++ x255 + x256 + x257 + x258 + x259 + x261 + x270 + x273 + x274 + x306 ++ x308 + x312 + x322 + x328 + x330 + x331 + x333 + x340 + x341 + x342 ++ x344 + x345 + x346 + x361 + x362 + x363 + x366 + x367 + x384 + x386 ++ x387 + x389 + x391 + x400 + x431 + x443 + x457 + x459 + x461 + x463 ++ x470 + x474 + x475 + x476 + x477 + x478 <= 1 + +x4 + x6 + x7 + x8 + x9 + x10 + x11 + x12 + x14 + x15 ++ x16 + x17 + x39 + x59 + x60 + x61 + x62 + x63 + x74 + x75 ++ x76 + x84 + x110 + x111 + x112 + x113 + x133 + x134 + x135 + x136 ++ x137 + x138 + x150 + x151 + x165 + x167 + x169 + x182 + x185 + x186 ++ x192 + x193 + x195 + x196 + x198 + x199 + x200 + x201 + x202 + x203 ++ x213 + x215 + x222 + x234 + x235 + x236 + x237 + x248 + x254 + x256 ++ x258 + x259 + x261 + x263 + x264 + x265 + x266 + x267 + x268 + x274 ++ x346 + x348 + x356 + x362 + x364 + x390 + x391 + x412 + x413 + x432 ++ x433 + x434 + x435 + x436 + x437 + x443 + x451 + x452 + x455 + x457 ++ x458 + x459 + x461 + x463 + x464 + x474 + x475 + x476 + x477 + x478 ++ x479 + x496 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 + x12 + x13 + x14 + x15 ++ x16 + x17 + x19 + x22 + x34 + x35 + x39 + x56 + x59 + x60 ++ x62 + x63 + x73 + x74 + x75 + x79 + x97 + x112 + x113 + x115 ++ x116 + x118 + x120 + x129 + x133 + x134 + x135 + x136 + x137 + x138 ++ x165 + x186 + x187 + x192 + x193 + x194 + x195 + x196 + x199 + x200 ++ x201 + x202 + x210 + x233 + x234 + x235 + x236 + x237 + x238 + x246 ++ x258 + x259 + x263 + x264 + x265 + x266 + x267 + x268 + x297 + x299 ++ x329 + x330 + x333 + x341 + x342 + x343 + x346 + x348 + x351 + x352 ++ x354 + x356 + x364 + x366 + x385 + x432 + x433 + x434 + x435 + x436 ++ x437 + x451 + x452 + x466 + x476 + x477 + x495 + x497 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 + x12 + x13 + x14 + x16 ++ x18 + x19 + x22 + x31 + x32 + x34 + x36 + x39 + x58 + x60 ++ x62 + x65 + x66 + x68 + x97 + x112 + x113 + x115 + x116 + x117 ++ x118 + x119 + x120 + x127 + x128 + x129 + x130 + x134 + x135 + x136 ++ x137 + x138 + x165 + x182 + x183 + x186 + x187 + x193 + x194 + x199 ++ x201 + x233 + x234 + x235 + x236 + x237 + x238 + x263 + x266 + x267 ++ x289 + x291 + x297 + x320 + x325 + x329 + x333 + x343 + x348 + x351 ++ x352 + x353 + x354 + x355 + x356 + x357 + x378 + x381 + x383 + x385 ++ x433 + x434 + x435 + x436 + x437 + x474 + x476 + x477 + x483 + x487 ++ x489 + x497 <= 1 + +x12 + x13 + x19 + x22 + x36 + x39 + x58 + x65 + x66 + x67 ++ x68 + x76 + x97 + x102 + x112 + x114 + x115 + x116 + x117 + x118 ++ x119 + x120 + x134 + x135 + x137 + x148 + x149 + x165 + x182 + x183 ++ x187 + x233 + x234 + x235 + x236 + x237 + x238 + x263 + x266 + x267 ++ x286 + x288 + x289 + x290 + x317 + x320 + x321 + x325 + x348 + x350 ++ x351 + x354 + x355 + x357 + x378 + x379 + x382 + x383 + x433 + x434 ++ x460 + x474 + x476 + x477 + x479 + x487 <= 1 + +x9 + x10 + x11 + x13 + x24 + x39 + x58 + x65 + x66 + x67 ++ x68 + x69 + x70 + x76 + x77 + x112 + x114 + x119 + x149 + x183 ++ x200 + x233 + x234 + x235 + x236 + x237 + x238 + x263 + x266 + x267 ++ x288 + x289 + x290 + x291 + x292 + x321 + x348 + x350 + x351 + x355 ++ x357 + x378 + x379 + x381 + x382 + x383 + x388 + x405 + x434 + x460 ++ x461 + x472 + x475 + x476 + x479 + x481 + x483 + x484 + x485 <= 1 + +x9 + x58 + x66 + x67 + x68 + x69 + x102 + x115 + x119 + x183 ++ x200 + x233 + x236 + x263 + x288 + x290 + x291 + x292 + x293 + x350 ++ x352 + x357 + x378 + x379 + x382 + x405 + x426 + x460 + x474 + x475 ++ x479 + x480 + x481 + x483 + x484 + x485 <= 1 + +x8 + x14 + x47 + x48 + x50 + x51 + x52 + x72 + x73 + x74 ++ x75 + x77 + x140 + x141 + x142 + x143 + x145 + x153 + x154 + x156 ++ x164 + x165 + x166 + x167 + x168 + x169 + x184 + x189 + x195 + x198 ++ x202 + x203 + x226 + x257 + x260 + x262 + x283 + x284 + x285 + x287 ++ x294 + x295 + x296 + x297 + x298 + x305 + x308 + x309 + x310 + x313 ++ x315 + x337 + x347 + x349 + x384 + x385 + x386 + x387 + x388 + x389 ++ x393 + x394 + x395 + x396 + x397 + x398 + x406 + x407 + x410 + x411 ++ x412 + x413 + x414 + x415 + x428 + x430 + x431 + x452 + x460 + x469 ++ x470 + x471 + x474 + x475 + x477 + x478 + x479 + x490 + x492 + x493 ++ x494 + x495 + x496 <= 1 + +x7 + x8 + x14 + x47 + x48 + x49 + x50 + x51 + x52 + x72 ++ x73 + x74 + x75 + x77 + x81 + x124 + x140 + x142 + x143 + x144 ++ x145 + x152 + x153 + x154 + x156 + x157 + x164 + x184 + x185 + x195 ++ x198 + x201 + x202 + x203 + x250 + x260 + x276 + x283 + x284 + x287 ++ x294 + x295 + x296 + x297 + x305 + x308 + x309 + x310 + x311 + x312 ++ x315 + x335 + x337 + x340 + x346 + x347 + x349 + x384 + x385 + x386 ++ x387 + x393 + x394 + x395 + x396 + x397 + x398 + x407 + x410 + x411 ++ x412 + x413 + x414 + x415 + x427 + x430 + x431 + x439 + x441 + x442 ++ x452 + x455 + x457 + x459 + x460 + x461 + x469 + x470 + x471 + x474 ++ x475 + x477 + x478 + x479 + x490 + x492 + x493 + x494 + x495 + x496 ++ x497 <= 1 + +x5 + x8 + x11 + x14 + x47 + x48 + x50 + x51 + x52 + x69 ++ x72 + x81 + x110 + x111 + x112 + x138 + x140 + x142 + x143 + x144 ++ x145 + x150 + x152 + x153 + x156 + x157 + x164 + x168 + x169 + x182 ++ x184 + x185 + x192 + x193 + x195 + x196 + x198 + x199 + x200 + x201 ++ x202 + x203 + x251 + x253 + x255 + x257 + x258 + x259 + x260 + x261 ++ x274 + x276 + x283 + x294 + x295 + x296 + x299 + x308 + x322 + x335 ++ x340 + x341 + x345 + x347 + x384 + x385 + x386 + x387 + x389 + x393 ++ x394 + x395 + x396 + x398 + x399 + x400 + x401 + x431 + x436 + x439 ++ x457 + x459 + x461 + x470 + x471 + x474 + x475 + x476 + x477 + x478 ++ x479 + x492 + x493 + x494 + x496 + x497 <= 1 + +x4 + x5 + x7 + x8 + x11 + x35 + x47 + x73 + x74 + x75 ++ x76 + x110 + x133 + x134 + x135 + x136 + x137 + x138 + x150 + x151 ++ x182 + x184 + x185 + x186 + x192 + x193 + x195 + x196 + x198 + x199 ++ x200 + x201 + x202 + x203 + x235 + x251 + x254 + x255 + x256 + x257 ++ x259 + x261 + x263 + x264 + x267 + x268 + x270 + x294 + x295 + x296 ++ x299 + x306 + x308 + x322 + x328 + x340 + x341 + x345 + x346 + x356 ++ x362 + x363 + x364 + x366 + x383 + x384 + x385 + x386 + x387 + x389 ++ x399 + x400 + x401 + x402 + x408 + x436 + x457 + x459 + x461 + x470 ++ x474 + x476 + x477 + x478 + x493 + x494 + x496 + x497 <= 1 + +x0 + x3 + x4 + x5 + x6 + x8 + x12 + x14 + x16 + x17 ++ x35 + x39 + x60 + x62 + x63 + x73 + x74 + x75 + x76 + x94 ++ x110 + x111 + x112 + x120 + x133 + x134 + x135 + x136 + x137 + x138 ++ x146 + x150 + x151 + x165 + x166 + x182 + x184 + x185 + x186 + x192 ++ x193 + x194 + x195 + x196 + x199 + x202 + x222 + x225 + x235 + x248 ++ x254 + x255 + x263 + x264 + x267 + x268 + x340 + x346 + x348 + x356 ++ x364 + x383 + x384 + x386 + x387 + x389 + x390 + x392 + x401 + x402 ++ x403 + x408 + x432 + x435 + x436 + x457 + x459 + x461 + x474 + x475 ++ x476 + x477 + x478 + x479 + x496 <= 1 + +x2 + x6 + x7 + x9 + x10 + x11 + x12 + x13 + x14 + x16 ++ x17 + x19 + x22 + x23 + x35 + x39 + x56 + x59 + x60 + x62 ++ x63 + x73 + x74 + x75 + x110 + x111 + x112 + x116 + x118 + x120 ++ x134 + x135 + x137 + x146 + x150 + x151 + x166 + x182 + x184 + x185 ++ x186 + x192 + x193 + x194 + x195 + x196 + x198 + x199 + x201 + x202 ++ x225 + x237 + x252 + x254 + x263 + x264 + x265 + x266 + x267 + x268 ++ x286 + x299 + x320 + x346 + x348 + x356 + x366 + x378 + x383 + x385 ++ x408 + x432 + x435 + x436 + x437 + x452 + x453 + x456 + x474 + x475 ++ x476 + x477 + x478 + x479 <= 1 + +x7 + x10 + x11 + x12 + x13 + x14 + x15 + x16 + x17 + x18 ++ x19 + x22 + x23 + x31 + x36 + x39 + x42 + x53 + x54 + x56 ++ x58 + x60 + x62 + x63 + x102 + x104 + x127 + x128 + x129 + x130 ++ x131 + x134 + x165 + x166 + x178 + x193 + x194 + x195 + x196 + x198 ++ x199 + x201 + x217 + x225 + x233 + x234 + x235 + x236 + x237 + x252 ++ x263 + x264 + x266 + x267 + x268 + x271 + x316 + x320 + x325 + x329 ++ x343 + x347 + x348 + x349 + x350 + x351 + x352 + x353 + x354 + x355 ++ x356 + x357 + x361 + x378 + x379 + x381 + x382 + x383 + x385 + x386 ++ x433 + x435 + x437 + x448 + x453 + x460 + x478 + x483 + x487 + x497 + <= 1 + +x7 + x10 + x11 + x12 + x13 + x14 + x16 + x17 + x18 + x19 ++ x22 + x36 + x39 + x42 + x53 + x54 + x56 + x58 + x60 + x61 ++ x65 + x66 + x67 + x68 + x69 + x70 + x76 + x102 + x104 + x114 ++ x115 + x119 + x127 + x128 + x129 + x130 + x131 + x134 + x148 + x149 ++ x182 + x183 + x193 + x194 + x197 + x208 + x233 + x234 + x235 + x236 ++ x237 + x238 + x252 + x267 + x271 + x286 + x290 + x317 + x320 + x321 ++ x324 + x325 + x326 + x332 + x347 + x348 + x349 + x350 + x351 + x357 ++ x378 + x379 + x381 + x382 + x383 + x405 + x407 + x410 + x417 + x434 ++ x453 + x455 + x461 + x476 + x477 + x479 + x481 <= 1 + +x7 + x9 + x10 + x12 + x13 + x14 + x16 + x53 + x54 + x56 ++ x58 + x65 + x66 + x67 + x68 + x69 + x70 + x76 + x77 + x102 ++ x104 + x115 + x119 + x127 + x128 + x129 + x130 + x131 + x141 + x146 ++ x148 + x149 + x183 + x193 + x194 + x197 + x205 + x207 + x208 + x217 ++ x233 + x234 + x235 + x236 + x237 + x238 + x290 + x321 + x324 + x332 ++ x348 + x350 + x351 + x375 + x379 + x381 + x382 + x388 + x405 + x417 ++ x418 + x433 + x434 + x450 + x453 + x460 + x461 + x479 + x481 + x485 + <= 1 + +x9 + x10 + x58 + x65 + x66 + x67 + x68 + x69 + x76 + x102 ++ x115 + x127 + x129 + x131 + x148 + x149 + x183 + x197 + x200 + x207 ++ x208 + x233 + x234 + x236 + x237 + x321 + x323 + x324 + x351 + x357 ++ x378 + x382 + x388 + x405 + x433 + x452 + x460 + x461 + x475 + x484 ++ x485 <= 1 + +x8 + x47 + x48 + x50 + x51 + x52 + x72 + x73 + x74 + x75 ++ x77 + x142 + x152 + x153 + x154 + x157 + x164 + x168 + x184 + x203 ++ x275 + x276 + x278 + x282 + x283 + x284 + x285 + x287 + x294 + x296 ++ x297 + x298 + x308 + x309 + x335 + x347 + x349 + x386 + x387 + x388 ++ x393 + x395 + x396 + x397 + x398 + x406 + x407 + x410 + x411 + x412 ++ x413 + x414 + x415 + x427 + x428 + x430 + x431 + x452 + x471 + x474 ++ x475 + x476 + x477 + x478 + x479 + x492 + x497 <= 1 + +x7 + x8 + x14 + x47 + x48 + x49 + x50 + x51 + x52 + x72 ++ x73 + x74 + x75 + x77 + x90 + x138 + x142 + x145 + x152 + x153 ++ x154 + x157 + x164 + x165 + x166 + x168 + x169 + x184 + x185 + x189 ++ x192 + x195 + x198 + x200 + x202 + x203 + x226 + x257 + x260 + x262 ++ x275 + x276 + x283 + x284 + x285 + x287 + x296 + x297 + x305 + x307 ++ x308 + x309 + x310 + x311 + x313 + x314 + x315 + x335 + x336 + x337 ++ x349 + x384 + x388 + x389 + x393 + x394 + x395 + x396 + x397 + x398 ++ x406 + x407 + x409 + x410 + x411 + x412 + x413 + x414 + x415 + x427 ++ x428 + x429 + x430 + x431 + x452 + x455 + x460 + x469 + x471 + x473 ++ x474 + x475 + x477 + x478 + x479 + x492 + x493 + x495 + x496 + x497 + <= 1 + +x8 + x14 + x47 + x48 + x49 + x50 + x51 + x52 + x72 + x73 ++ x74 + x75 + x77 + x138 + x140 + x142 + x157 + x164 + x169 + x182 ++ x184 + x185 + x188 + x189 + x192 + x193 + x195 + x198 + x200 + x201 ++ x202 + x203 + x226 + x257 + x258 + x260 + x261 + x262 + x275 + x276 ++ x287 + x296 + x299 + x308 + x310 + x311 + x313 + x314 + x335 + x337 ++ x340 + x345 + x347 + x349 + x407 + x410 + x411 + x412 + x413 + x414 ++ x415 + x431 + x455 + x460 + x470 + x474 + x475 + x477 + x478 + x479 ++ x492 + x493 + x495 + x496 + x497 <= 1 + +x0 + x3 + x4 + x5 + x7 + x8 + x11 + x12 + x14 + x16 ++ x17 + x36 + x37 + x70 + x94 + x108 + x110 + x112 + x133 + x134 ++ x135 + x136 + x137 + x138 + x146 + x150 + x151 + x182 + x184 + x185 ++ x186 + x188 + x190 + x191 + x192 + x193 + x194 + x195 + x196 + x199 ++ x200 + x201 + x202 + x203 + x222 + x225 + x235 + x252 + x256 + x263 ++ x271 + x294 + x295 + x299 + x345 + x346 + x364 + x366 + x383 + x384 ++ x385 + x386 + x387 + x389 + x392 + x399 + x402 + x403 + x408 + x459 ++ x461 + x470 + x474 + x475 + x476 + x477 + x478 + x479 + x497 <= 1 + +x0 + x1 + x2 + x3 + x5 + x7 + x8 + x11 + x12 + x14 ++ x16 + x17 + x35 + x36 + x37 + x40 + x65 + x70 + x73 + x76 ++ x93 + x94 + x133 + x137 + x138 + x150 + x151 + x166 + x184 + x185 ++ x186 + x190 + x192 + x194 + x195 + x196 + x201 + x202 + x207 + x222 ++ x225 + x235 + x254 + x255 + x264 + x268 + x271 + x294 + x295 + x316 ++ x317 + x345 + x346 + x383 + x384 + x387 + x403 + x408 + x435 + x461 ++ x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x0 + x1 + x2 + x3 + x7 + x12 + x14 + x16 + x17 + x18 ++ x19 + x20 + x22 + x23 + x35 + x36 + x37 + x56 + x60 + x62 ++ x65 + x70 + x73 + x76 + x82 + x110 + x111 + x114 + x116 + x118 ++ x120 + x127 + x130 + x131 + x132 + x135 + x138 + x146 + x150 + x166 ++ x183 + x184 + x185 + x186 + x187 + x192 + x194 + x195 + x196 + x198 ++ x216 + x219 + x235 + x254 + x264 + x265 + x271 + x286 + x316 + x317 ++ x346 + x347 + x348 + x351 + x372 + x380 + x383 + x408 + x435 + x436 ++ x448 + x472 + x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x0 + x1 + x2 + x3 + x6 + x9 + x11 + x12 + x13 + x15 ++ x16 + x17 + x18 + x19 + x20 + x21 + x22 + x23 + x35 + x36 ++ x39 + x42 + x43 + x50 + x53 + x54 + x56 + x60 + x62 + x63 ++ x65 + x66 + x70 + x76 + x87 + x88 + x102 + x104 + x105 + x107 ++ x110 + x113 + x114 + x118 + x127 + x130 + x131 + x132 + x135 + x146 ++ x147 + x148 + x166 + x177 + x178 + x183 + x186 + x187 + x192 + x193 ++ x194 + x195 + x196 + x197 + x198 + x216 + x217 + x233 + x234 + x235 ++ x236 + x237 + x238 + x252 + x254 + x263 + x264 + x266 + x269 + x271 ++ x316 + x317 + x318 + x323 + x326 + x346 + x347 + x348 + x349 + x350 ++ x351 + x353 + x354 + x355 + x379 + x382 + x383 + x386 + x388 + x408 ++ x417 + x429 + x435 + x445 + x448 + x452 + x453 + x454 + x455 + x460 ++ x469 + x476 + x477 + x478 + x479 <= 1 + +x1 + x2 + x9 + x10 + x12 + x13 + x14 + x15 + x16 + x17 ++ x18 + x19 + x22 + x35 + x36 + x43 + x65 + x66 + x67 + x68 ++ x69 + x70 + x76 + x85 + x87 + x88 + x102 + x104 + x105 + x110 ++ x114 + x118 + x127 + x128 + x129 + x130 + x131 + x146 + x148 + x178 ++ x183 + x187 + x193 + x194 + x195 + x196 + x197 + x205 + x207 + x208 ++ x217 + x233 + x234 + x235 + x236 + x237 + x238 + x252 + x271 + x290 ++ x316 + x317 + x318 + x320 + x321 + x323 + x326 + x332 + x346 + x347 ++ x348 + x349 + x350 + x351 + x353 + x357 + x379 + x382 + x383 + x388 ++ x405 + x453 + x455 + x460 + x461 + x469 + x476 + x477 + x479 + x485 + <= 1 + +x12 + x13 + x15 + x16 + x17 + x42 + x58 + x76 + x77 + x119 ++ x127 + x128 + x129 + x130 + x131 + x132 + x141 + x149 + x178 + x180 ++ x183 + x193 + x194 + x196 + x197 + x204 + x205 + x207 + x208 + x233 ++ x234 + x236 + x237 + x238 + x274 + x290 + x347 + x348 + x375 + x378 ++ x379 + x380 + x381 + x382 + x416 + x417 + x418 + x420 + x433 + x434 ++ x450 + x452 + x453 + x454 + x455 + x460 + x461 + x476 + x477 + x478 ++ x479 <= 1 + +x16 + x50 + x58 + x67 + x76 + x106 + x127 + x128 + x129 + x130 ++ x131 + x132 + x148 + x149 + x183 + x197 + x208 + x231 + x234 + x236 ++ x323 + x324 + x346 + x347 + x348 + x351 + x357 + x378 + x379 + x380 ++ x381 + x382 + x388 + x404 + x405 + x416 + x418 + x420 + x433 + x450 ++ x452 + x453 + x455 + x460 + x475 + x476 + x477 + x479 <= 1 + +x72 + x74 + x75 + x77 + x90 + x141 + x142 + x153 + x154 + x164 ++ x166 + x168 + x203 + x269 + x278 + x282 + x283 + x284 + x285 + x287 ++ x309 + x349 + x359 + x387 + x388 + x395 + x396 + x397 + x398 + x406 ++ x410 + x411 + x412 + x414 + x415 + x427 + x428 + x430 + x431 + x460 ++ x474 + x475 + x476 + x477 + x478 + x479 + x492 + x496 + x497 <= 1 + +x7 + x8 + x47 + x48 + x49 + x50 + x51 + x72 + x73 + x74 ++ x77 + x90 + x93 + x109 + x145 + x157 + x162 + x164 + x165 + x166 ++ x168 + x202 + x203 + x226 + x227 + x228 + x230 + x231 + x232 + x243 ++ x244 + x260 + x262 + x265 + x282 + x283 + x284 + x285 + x287 + x305 ++ x307 + x334 + x335 + x337 + x338 + x349 + x385 + x389 + x394 + x396 ++ x398 + x406 + x407 + x409 + x410 + x411 + x412 + x414 + x415 + x428 ++ x429 + x430 + x444 + x452 + x460 + x468 + x469 + x473 + x474 + x475 ++ x477 + x478 + x479 + x492 + x493 + x495 + x496 + x497 <= 1 + +x7 + x8 + x14 + x40 + x47 + x48 + x49 + x72 + x74 + x75 ++ x77 + x152 + x153 + x164 + x173 + x203 + x221 + x226 + x227 + x228 ++ x230 + x231 + x242 + x243 + x262 + x275 + x276 + x284 + x285 + x287 ++ x297 + x305 + x307 + x308 + x311 + x313 + x314 + x334 + x335 + x336 ++ x337 + x338 + x339 + x389 + x404 + x406 + x407 + x409 + x410 + x411 ++ x412 + x413 + x414 + x415 + x428 + x429 + x430 + x444 + x460 + x468 ++ x469 + x473 + x474 + x479 + x492 + x493 + x495 + x496 <= 1 + +x0 + x5 + x7 + x11 + x12 + x16 + x17 + x36 + x37 + x40 ++ x48 + x72 + x73 + x75 + x76 + x93 + x94 + x109 + x110 + x112 ++ x132 + x150 + x151 + x188 + x191 + x192 + x193 + x194 + x196 + x201 ++ x202 + x206 + x222 + x225 + x226 + x242 + x334 + x337 + x339 + x350 ++ x381 + x383 + x384 + x386 + x387 + x402 + x404 + x406 + x408 + x451 ++ x461 + x468 + x472 + x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x12 + x16 + x17 + x18 + x35 + x36 + x37 + x40 + x62 + x76 ++ x86 + x94 + x109 + x110 + x132 + x151 + x166 + x170 + x190 + x202 ++ x225 + x271 + x280 + x337 + x346 + x348 + x350 + x351 + x383 + x403 ++ x404 + x423 + x436 + x453 + x456 + x461 + x472 + x474 + x475 + x476 ++ x478 + x479 <= 1 + +x12 + x15 + x16 + x17 + x18 + x35 + x36 + x37 + x53 + x54 ++ x56 + x60 + x62 + x65 + x86 + x105 + x109 + x110 + x111 + x114 ++ x116 + x118 + x128 + x132 + x166 + x169 + x183 + x184 + x185 + x187 ++ x194 + x198 + x216 + x219 + x234 + x237 + x238 + x254 + x264 + x286 ++ x323 + x326 + x346 + x347 + x348 + x349 + x350 + x351 + x372 + x379 ++ x381 + x383 + x408 + x435 + x436 + x453 + x472 + x474 + x476 + x478 ++ x479 + x486 + x487 <= 1 + +x1 + x2 + x3 + x9 + x12 + x15 + x16 + x17 + x18 + x19 ++ x20 + x21 + x22 + x23 + x35 + x36 + x39 + x53 + x54 + x56 ++ x60 + x62 + x65 + x70 + x85 + x86 + x87 + x102 + x103 + x104 ++ x105 + x110 + x113 + x114 + x118 + x128 + x131 + x132 + x135 + x146 ++ x147 + x148 + x166 + x183 + x185 + x198 + x233 + x234 + x235 + x236 ++ x237 + x238 + x252 + x264 + x266 + x271 + x323 + x324 + x326 + x346 ++ x347 + x348 + x349 + x350 + x351 + x353 + x379 + x380 + x383 + x386 ++ x388 + x408 + x429 + x436 + x448 + x452 + x453 + x454 + x455 + x456 ++ x472 + x475 + x476 + x477 + x479 + x487 <= 1 + +x1 + x6 + x7 + x9 + x10 + x12 + x13 + x14 + x15 + x16 ++ x17 + x18 + x19 + x20 + x21 + x22 + x23 + x35 + x36 + x42 ++ x43 + x50 + x53 + x54 + x56 + x66 + x67 + x68 + x69 + x70 ++ x76 + x85 + x88 + x99 + x102 + x103 + x104 + x105 + x107 + x110 ++ x114 + x127 + x128 + x129 + x130 + x131 + x132 + x135 + x166 + x177 ++ x178 + x181 + x183 + x185 + x187 + x193 + x194 + x195 + x196 + x197 ++ x204 + x205 + x207 + x208 + x217 + x228 + x233 + x234 + x236 + x237 ++ x238 + x269 + x271 + x303 + x316 + x317 + x318 + x319 + x323 + x324 ++ x326 + x346 + x347 + x348 + x349 + x350 + x351 + x353 + x354 + x365 ++ x380 + x382 + x383 + x386 + x388 + x405 + x408 + x429 + x445 + x446 ++ x449 + x452 + x453 + x454 + x455 + x456 + x457 + x458 + x460 + x461 ++ x469 + x472 + x476 + x477 + x478 + x479 + x487 + x490 <= 1 + +x6 + x7 + x12 + x13 + x15 + x16 + x17 + x18 + x19 + x20 ++ x21 + x22 + x23 + x42 + x43 + x50 + x57 + x58 + x69 + x102 ++ x104 + x106 + x107 + x110 + x114 + x119 + x127 + x128 + x130 + x131 ++ x132 + x148 + x149 + x176 + x177 + x178 + x180 + x181 + x183 + x194 ++ x195 + x196 + x197 + x204 + x205 + x207 + x208 + x228 + x233 + x234 ++ x236 + x237 + x238 + x269 + x303 + x304 + x316 + x318 + x319 + x322 ++ x323 + x324 + x325 + x326 + x346 + x347 + x348 + x350 + x351 + x365 ++ x374 + x375 + x379 + x380 + x381 + x385 + x388 + x389 + x405 + x416 ++ x420 + x433 + x445 + x446 + x449 + x450 + x451 + x452 + x453 + x454 ++ x455 + x456 + x460 + x475 + x476 + x477 + x478 + x479 <= 1 + +x12 + x13 + x15 + x16 + x50 + x57 + x58 + x102 + x103 + x104 ++ x105 + x106 + x114 + x147 + x148 + x149 + x176 + x178 + x180 + x183 ++ x194 + x196 + x197 + x205 + x207 + x208 + x233 + x234 + x236 + x237 ++ x238 + x300 + x304 + x319 + x323 + x324 + x326 + x346 + x347 + x348 ++ x350 + x351 + x365 + x368 + x378 + x379 + x380 + x381 + x382 + x388 ++ x404 + x405 + x416 + x419 + x433 + x446 + x449 + x450 + x451 + x452 ++ x453 + x454 + x455 + x457 + x460 + x461 + x475 + x477 + x478 + x479 + <= 1 + +x72 + x74 + x77 + x89 + x90 + x92 + x93 + x100 + x141 + x142 ++ x153 + x166 + x175 + x203 + x236 + x265 + x269 + x275 + x278 + x282 ++ x283 + x284 + x285 + x286 + x287 + x349 + x395 + x396 + x406 + x412 ++ x414 + x415 + x426 + x427 + x428 + x429 + x431 + x453 + x475 + x476 ++ x477 + x479 + x492 <= 1 + +x48 + x49 + x51 + x52 + x64 + x72 + x74 + x77 + x89 + x90 ++ x91 + x92 + x93 + x109 + x111 + x158 + x162 + x164 + x166 + x227 ++ x228 + x230 + x231 + x232 + x239 + x243 + x244 + x262 + x265 + x268 ++ x279 + x280 + x282 + x285 + x286 + x307 + x334 + x335 + x337 + x338 ++ x339 + x350 + x385 + x398 + x404 + x406 + x407 + x410 + x414 + x415 ++ x424 + x428 + x430 + x468 + x473 + x474 + x477 + x478 + x479 + x492 ++ x493 <= 1 + +x7 + x40 + x48 + x49 + x52 + x72 + x74 + x75 + x76 + x77 ++ x89 + x91 + x92 + x93 + x94 + x100 + x109 + x111 + x126 + x152 ++ x162 + x164 + x166 + x170 + x173 + x174 + x175 + x203 + x221 + x222 ++ x225 + x226 + x228 + x230 + x231 + x232 + x239 + x241 + x242 + x243 ++ x244 + x275 + x276 + x277 + x278 + x279 + x280 + x282 + x285 + x286 ++ x287 + x307 + x310 + x314 + x334 + x336 + x337 + x338 + x339 + x385 ++ x404 + x406 + x407 + x408 + x409 + x415 + x424 + x426 + x428 + x429 ++ x430 + x454 + x460 + x468 + x473 + x474 + x476 + x477 + x478 + x479 ++ x492 <= 1 + +x17 + x37 + x40 + x72 + x75 + x76 + x92 + x93 + x94 + x126 ++ x150 + x170 + x175 + x187 + x191 + x221 + x222 + x225 + x226 + x228 ++ x229 + x232 + x239 + x241 + x242 + x244 + x277 + x279 + x282 + x287 ++ x307 + x334 + x337 + x339 + x384 + x404 + x406 + x407 + x408 + x409 ++ x423 + x424 + x426 + x429 + x451 + x459 + x468 + x474 + x475 + x476 ++ x477 + x478 + x479 + x480 <= 1 + +x12 + x17 + x18 + x37 + x40 + x45 + x72 + x76 + x109 + x163 ++ x170 + x220 + x221 + x222 + x224 + x225 + x229 + x232 + x334 + x337 ++ x339 + x347 + x383 + x384 + x404 + x406 + x407 + x408 + x409 + x423 ++ x436 + x456 + x459 + x461 + x472 + x474 + x476 + x478 + x479 <= 1 + +x12 + x15 + x17 + x37 + x54 + x56 + x65 + x73 + x105 + x106 ++ x109 + x132 + x185 + x187 + x216 + x218 + x219 + x220 + x233 + x234 ++ x237 + x238 + x254 + x264 + x346 + x347 + x348 + x349 + x350 + x351 ++ x372 + x373 + x381 + x404 + x409 + x468 + x472 + x479 + x482 + x486 + <= 1 + +x12 + x13 + x15 + x16 + x17 + x18 + x19 + x20 + x22 + x53 ++ x54 + x56 + x67 + x68 + x70 + x76 + x97 + x99 + x102 + x103 ++ x104 + x107 + x110 + x113 + x114 + x118 + x133 + x146 + x147 + x166 ++ x233 + x237 + x238 + x249 + x271 + x326 + x347 + x350 + x351 + x376 ++ x379 + x386 + x452 + x453 + x454 + x455 + x456 + x458 + x472 + x475 ++ x476 + x477 + x479 + x487 + x488 + x490 + x491 <= 1 + +x10 + x12 + x13 + x15 + x16 + x17 + x18 + x19 + x20 + x21 ++ x22 + x38 + x41 + x43 + x53 + x56 + x66 + x67 + x68 + x70 ++ x76 + x96 + x99 + x102 + x103 + x105 + x107 + x110 + x114 + x117 ++ x130 + x133 + x147 + x149 + x179 + x183 + x195 + x196 + x197 + x204 ++ x226 + x233 + x236 + x237 + x238 + x245 + x248 + x249 + x271 + x277 ++ x279 + x302 + x324 + x325 + x346 + x347 + x348 + x349 + x350 + x351 ++ x365 + x374 + x376 + x377 + x379 + x380 + x382 + x386 + x445 + x447 ++ x449 + x451 + x452 + x453 + x454 + x455 + x456 + x457 + x458 + x475 ++ x476 + x477 + x478 + x479 + x487 + x488 + x489 + x490 <= 1 + +x6 + x10 + x12 + x13 + x14 + x15 + x16 + x17 + x18 + x20 ++ x21 + x23 + x30 + x33 + x38 + x41 + x42 + x57 + x99 + x102 ++ x103 + x104 + x105 + x106 + x107 + x110 + x114 + x117 + x128 + x147 ++ x148 + x149 + x176 + x177 + x178 + x179 + x180 + x181 + x194 + x195 ++ x197 + x204 + x205 + x206 + x207 + x208 + x228 + x233 + x236 + x247 ++ x248 + x249 + x279 + x300 + x302 + x303 + x304 + x318 + x319 + x322 ++ x323 + x324 + x325 + x326 + x327 + x346 + x347 + x348 + x349 + x350 ++ x351 + x365 + x369 + x374 + x377 + x379 + x380 + x381 + x382 + x419 ++ x420 + x422 + x447 + x450 + x451 + x452 + x453 + x455 + x456 + x457 ++ x458 + x475 + x477 + x478 + x479 + x487 + x488 + x489 + x490 <= 1 + +x16 + x20 + x21 + x23 + x30 + x50 + x55 + x57 + x71 + x102 ++ x103 + x104 + x105 + x106 + x107 + x114 + x117 + x147 + x176 + x177 ++ x178 + x179 + x180 + x181 + x192 + x197 + x204 + x205 + x206 + x207 ++ x208 + x228 + x233 + x234 + x235 + x236 + x237 + x238 + x249 + x300 ++ x301 + x302 + x303 + x304 + x318 + x322 + x323 + x324 + x325 + x326 ++ x327 + x346 + x347 + x348 + x350 + x351 + x365 + x368 + x369 + x377 ++ x379 + x380 + x381 + x382 + x405 + x419 + x446 + x450 + x451 + x452 ++ x453 + x454 + x455 + x456 + x457 + x458 + x460 + x461 + x475 + x477 ++ x478 + x479 <= 1 + +x72 + x74 + x77 + x89 + x90 + x92 + x93 + x94 + x121 + x123 ++ x125 + x126 + x166 + x175 + x184 + x221 + x231 + x265 + x269 + x275 ++ x276 + x278 + x279 + x280 + x282 + x283 + x284 + x285 + x286 + x287 ++ x307 + x336 + x338 + x349 + x395 + x396 + x404 + x406 + x414 + x426 ++ x427 + x428 + x429 + x430 + x431 + x453 + x477 + x479 <= 1 + +x64 + x72 + x74 + x77 + x89 + x90 + x92 + x93 + x94 + x109 ++ x121 + x123 + x125 + x126 + x158 + x159 + x161 + x163 + x166 + x170 ++ x174 + x175 + x196 + x197 + x221 + x223 + x224 + x227 + x229 + x230 ++ x231 + x232 + x243 + x244 + x262 + x265 + x268 + x269 + x275 + x276 ++ x278 + x279 + x280 + x282 + x283 + x284 + x285 + x286 + x287 + x307 ++ x334 + x335 + x336 + x338 + x339 + x349 + x350 + x396 + x404 + x406 ++ x409 + x426 + x427 + x428 + x429 + x430 + x431 + x473 + x474 + x477 ++ x478 + x479 <= 1 + +x13 + x40 + x49 + x64 + x72 + x89 + x93 + x100 + x101 + x109 ++ x111 + x121 + x123 + x125 + x126 + x155 + x160 + x162 + x164 + x170 ++ x172 + x173 + x174 + x175 + x187 + x197 + x221 + x222 + x223 + x224 ++ x225 + x226 + x227 + x229 + x230 + x232 + x275 + x276 + x277 + x278 ++ x279 + x280 + x282 + x286 + x287 + x310 + x324 + x334 + x336 + x338 ++ x339 + x349 + x350 + x385 + x404 + x406 + x407 + x408 + x409 + x421 ++ x423 + x424 + x425 + x426 + x427 + x428 + x429 + x430 + x468 + x473 ++ x474 + x476 + x477 + x478 + x479 <= 1 + +x13 + x15 + x37 + x40 + x64 + x89 + x92 + x93 + x94 + x100 ++ x101 + x106 + x109 + x125 + x151 + x155 + x187 + x221 + x222 + x223 ++ x224 + x225 + x226 + x227 + x229 + x230 + x232 + x235 + x239 + x240 ++ x241 + x242 + x264 + x275 + x277 + x278 + x280 + x282 + x283 + x286 ++ x287 + x334 + x336 + x338 + x339 + x347 + x349 + x350 + x385 + x404 ++ x421 + x423 + x424 + x425 + x426 + x427 + x428 + x429 + x430 + x451 ++ x456 + x459 + x474 + x476 + x477 + x478 + x479 <= 1 + +x12 + x15 + x17 + x39 + x40 + x45 + x89 + x91 + x92 + x94 ++ x96 + x100 + x101 + x106 + x109 + x114 + x151 + x218 + x219 + x220 ++ x222 + x224 + x226 + x230 + x232 + x233 + x236 + x237 + x238 + x240 ++ x264 + x275 + x339 + x347 + x349 + x350 + x373 + x381 + x404 + x407 ++ x408 + x409 + x425 + x450 + x456 + x459 + x461 + x472 + x474 <= 1 + +x6 + x7 + x15 + x21 + x22 + x45 + x54 + x57 + x65 + x73 ++ x94 + x96 + x98 + x100 + x101 + x103 + x106 + x107 + x109 + x113 ++ x114 + x132 + x216 + x218 + x219 + x220 + x222 + x224 + x233 + x236 ++ x237 + x238 + x264 + x347 + x348 + x349 + x350 + x351 + x353 + x373 ++ x381 + x404 + x409 + x454 + x456 + x458 + x459 + x461 + x472 + x486 ++ x491 <= 1 + +x6 + x12 + x15 + x16 + x17 + x21 + x22 + x23 + x41 + x44 ++ x53 + x54 + x55 + x56 + x73 + x96 + x97 + x99 + x103 + x104 ++ x105 + x113 + x114 + x122 + x146 + x147 + x166 + x204 + x224 + x233 ++ x235 + x237 + x238 + x277 + x279 + x347 + x348 + x349 + x350 + x351 ++ x409 + x450 + x454 + x455 + x456 + x458 + x461 + x472 + x475 + x476 ++ x477 + x479 + x491 <= 1 + +x6 + x12 + x13 + x14 + x15 + x16 + x17 + x20 + x21 + x23 ++ x37 + x38 + x41 + x43 + x44 + x46 + x48 + x53 + x54 + x55 ++ x56 + x57 + x70 + x73 + x96 + x97 + x99 + x103 + x104 + x105 ++ x106 + x110 + x113 + x121 + x122 + x146 + x147 + x168 + x171 + x176 ++ x177 + x179 + x180 + x194 + x195 + x197 + x204 + x206 + x209 + x224 ++ x226 + x228 + x233 + x234 + x235 + x236 + x237 + x238 + x245 + x247 ++ x250 + x277 + x279 + x319 + x327 + x346 + x347 + x348 + x349 + x350 ++ x351 + x376 + x380 + x418 + x447 + x450 + x451 + x452 + x453 + x454 ++ x455 + x456 + x457 + x458 + x460 + x472 + x475 + x476 + x477 + x478 ++ x479 + x486 + x488 + x489 + x490 <= 1 + +x6 + x10 + x12 + x13 + x14 + x15 + x16 + x17 + x18 + x20 ++ x21 + x23 + x33 + x38 + x48 + x55 + x57 + x73 + x91 + x97 ++ x99 + x103 + x104 + x105 + x106 + x107 + x113 + x114 + x147 + x176 ++ x177 + x179 + x180 + x181 + x194 + x197 + x204 + x205 + x206 + x207 ++ x208 + x209 + x228 + x233 + x234 + x235 + x236 + x237 + x238 + x245 ++ x247 + x248 + x279 + x319 + x322 + x323 + x325 + x326 + x327 + x346 ++ x347 + x348 + x349 + x350 + x351 + x380 + x422 + x447 + x450 + x451 ++ x452 + x453 + x454 + x455 + x456 + x457 + x458 + x460 + x474 + x475 ++ x477 + x478 + x479 + x482 + x487 + x488 + x489 + x490 + x491 <= 1 + +x12 + x15 + x18 + x20 + x21 + x23 + x30 + x38 + x55 + x57 ++ x103 + x104 + x106 + x107 + x114 + x147 + x176 + x177 + x179 + x180 ++ x181 + x194 + x197 + x199 + x205 + x228 + x233 + x235 + x236 + x237 ++ x238 + x247 + x249 + x300 + x301 + x302 + x318 + x322 + x323 + x324 ++ x325 + x326 + x327 + x346 + x347 + x348 + x350 + x351 + x380 + x382 ++ x405 + x419 + x422 + x450 + x451 + x452 + x453 + x454 + x455 + x456 ++ x457 + x458 + x460 + x475 + x477 + x478 + x479 + x487 + x488 <= 1 + +x49 + x64 + x72 + x75 + x76 + x77 + x89 + x109 + x163 + x174 ++ x221 + x223 + x227 + x229 + x231 + x232 + x276 + x277 + x278 + x280 ++ x282 + x283 + x285 + x286 + x334 + x335 + x338 + x350 + x406 + x407 ++ x409 + x426 + x451 + x459 + x473 + x476 <= 1 + +x8 + x40 + x49 + x64 + x77 + x89 + x92 + x94 + x109 + x155 ++ x158 + x159 + x160 + x161 + x163 + x166 + x170 + x172 + x173 + x174 ++ x175 + x196 + x221 + x223 + x224 + x227 + x229 + x231 + x232 + x238 ++ x265 + x276 + x277 + x278 + x279 + x280 + x282 + x283 + x285 + x286 ++ x293 + x307 + x334 + x335 + x336 + x338 + x339 + x349 + x350 + x385 ++ x406 + x407 + x409 + x421 + x425 + x426 + x427 + x451 + x459 + x468 ++ x473 + x474 + x476 + x477 + x478 + x479 <= 1 + +x13 + x15 + x40 + x49 + x64 + x72 + x89 + x92 + x94 + x103 ++ x106 + x109 + x111 + x123 + x125 + x155 + x158 + x159 + x160 + x161 ++ x162 + x170 + x172 + x173 + x174 + x175 + x196 + x197 + x221 + x223 ++ x224 + x227 + x229 + x230 + x231 + x232 + x238 + x239 + x240 + x241 ++ x275 + x276 + x277 + x278 + x279 + x280 + x282 + x283 + x285 + x286 ++ x334 + x336 + x338 + x339 + x347 + x349 + x385 + x404 + x406 + x407 ++ x408 + x409 + x421 + x425 + x426 + x427 + x428 + x429 + x430 + x451 ++ x459 + x468 + x473 + x474 + x476 + x477 + x478 + x479 <= 1 + +x13 + x14 + x49 + x89 + x92 + x109 + x111 + x123 + x155 + x158 ++ x159 + x160 + x167 + x170 + x172 + x173 + x174 + x197 + x224 + x225 ++ x226 + x230 + x240 + x241 + x264 + x275 + x276 + x277 + x278 + x280 ++ x336 + x338 + x349 + x385 + x404 + x407 + x409 + x426 + x427 + x428 ++ x429 + x430 + x456 + x468 + x473 + x476 + x477 + x478 + x479 <= 1 + +x12 + x15 + x38 + x40 + x45 + x91 + x96 + x98 + x100 + x101 ++ x106 + x107 + x109 + x113 + x114 + x151 + x209 + x218 + x220 + x233 ++ x237 + x238 + x347 + x349 + x350 + x351 + x450 + x454 + x456 + x458 ++ x459 + x461 + x475 + x476 + x477 + x486 <= 1 + +x6 + x7 + x35 + x37 + x38 + x44 + x45 + x46 + x53 + x54 ++ x57 + x73 + x91 + x96 + x98 + x100 + x101 + x103 + x105 + x107 ++ x109 + x113 + x197 + x209 + x222 + x224 + x233 + x264 + x268 + x277 ++ x327 + x336 + x347 + x351 + x381 + x404 + x450 + x454 + x456 + x458 ++ x459 + x461 + x475 + x476 + x477 + x479 + x486 + x489 + x491 + x493 + <= 1 + +x16 + x17 + x20 + x21 + x23 + x37 + x38 + x41 + x43 + x44 ++ x46 + x53 + x54 + x57 + x73 + x91 + x105 + x106 + x110 + x113 ++ x122 + x180 + x197 + x206 + x209 + x234 + x245 + x247 + x277 + x322 ++ x327 + x346 + x347 + x349 + x351 + x370 + x380 + x381 + x408 + x450 ++ x453 + x454 + x455 + x456 + x457 + x458 + x461 + x475 + x476 + x477 ++ x478 + x479 + x486 + x489 + x490 + x491 + x493 <= 1 + +x13 + x15 + x16 + x17 + x20 + x21 + x23 + x37 + x38 + x46 ++ x53 + x54 + x57 + x70 + x73 + x91 + x103 + x105 + x106 + x168 ++ x197 + x200 + x204 + x206 + x209 + x233 + x234 + x235 + x236 + x237 ++ x238 + x250 + x277 + x319 + x322 + x327 + x346 + x347 + x348 + x349 ++ x350 + x351 + x370 + x371 + x408 + x450 + x453 + x454 + x456 + x457 ++ x458 + x474 + x475 + x476 + x477 + x479 + x482 + x486 + x488 + x489 ++ x490 + x491 <= 1 + +x13 + x14 + x15 + x16 + x17 + x20 + x21 + x23 + x38 + x53 ++ x55 + x57 + x73 + x91 + x93 + x97 + x99 + x107 + x114 + x176 ++ x179 + x181 + x200 + x204 + x205 + x206 + x207 + x209 + x233 + x234 ++ x235 + x236 + x237 + x238 + x279 + x322 + x325 + x327 + x336 + x346 ++ x347 + x348 + x349 + x350 + x351 + x450 + x452 + x453 + x454 + x456 ++ x457 + x458 + x474 + x475 + x476 + x482 + x488 + x489 + x491 <= 1 + +x13 + x14 + x15 + x16 + x20 + x21 + x55 + x107 + x205 + x206 ++ x209 + x233 + x234 + x235 + x237 + x238 + x322 + x346 + x347 + x348 ++ x349 + x350 + x351 + x450 + x474 + x475 + x480 + x482 + x488 <= 1 + +x6 + x49 + x72 + x75 + x76 + x109 + x161 + x163 + x168 + x172 ++ x174 + x221 + x224 + x227 + x231 + x265 + x278 + x282 + x283 + x285 ++ x350 + x406 + x407 + x409 + x422 + x426 + x473 <= 1 + +x40 + x72 + x76 + x77 + x89 + x92 + x109 + x161 + x172 + x173 ++ x174 + x175 + x221 + x223 + x224 + x227 + x229 + x231 + x238 + x265 ++ x278 + x282 + x283 + x285 + x286 + x293 + x335 + x339 + x349 + x350 ++ x385 + x406 + x407 + x409 + x421 + x422 + x426 + x427 + x451 + x468 ++ x473 + x476 + x478 + x479 <= 1 + +x72 + x76 + x89 + x92 + x221 + x223 + x227 + x238 + x282 + x283 ++ x285 + x286 + x335 + x349 + x350 + x426 + x427 + x478 <= 1 + +x13 + x14 + x49 + x92 + x111 + x155 + x159 + x160 + x167 + x173 ++ x174 + x225 + x230 + x240 + x275 + x280 + x427 + x456 + x458 + x459 ++ x473 + x478 <= 1 + +x13 + x17 + x38 + x49 + x113 + x152 + x155 + x167 + x173 + x187 ++ x230 + x268 + x280 + x295 + x347 + x351 + x454 + x456 + x458 + x459 ++ x473 + x486 <= 1 + +x13 + x17 + x35 + x38 + x41 + x45 + x46 + x91 + x98 + x101 ++ x103 + x107 + x109 + x113 + x122 + x152 + x155 + x167 + x173 + x209 ++ x268 + x280 + x295 + x328 + x336 + x342 + x347 + x351 + x404 + x454 ++ x456 + x458 + x459 + x461 + x475 + x476 + x477 + x479 + x486 + x491 ++ x493 <= 1 + +x13 + x15 + x16 + x17 + x38 + x41 + x44 + x45 + x46 + x54 ++ x57 + x91 + x98 + x101 + x122 + x209 + x327 + x328 + x342 + x346 ++ x347 + x351 + x450 + x454 + x456 + x458 + x461 + x475 + x489 + x490 ++ x491 + x493 <= 1 + +x13 + x15 + x17 + x39 + x44 + x46 + x57 + x91 + x98 + x168 ++ x206 + x209 + x233 + x234 + x235 + x236 + x237 + x325 + x327 + x342 ++ x346 + x347 + x348 + x349 + x350 + x351 + x371 + x408 + x450 + x454 ++ x458 + x476 + x486 + x488 + x489 + x490 + x491 <= 1 + +x13 + x38 + x44 + x55 + x57 + x91 + x93 + x114 + x179 + x181 ++ x209 + x234 + x235 + x237 + x238 + x322 + x325 + x327 + x346 + x347 ++ x348 + x351 + x410 + x413 + x454 + x475 + x476 + x482 + x488 <= 1 + +x13 + x15 + x16 + x17 + x21 + x23 + x53 + x55 + x57 + x91 ++ x93 + x121 + x124 + x176 + x179 + x181 + x204 + x206 + x234 + x235 ++ x237 + x238 + x327 + x346 + x347 + x348 + x349 + x350 + x351 + x410 ++ x453 + x454 + x456 + x458 + x474 + x475 + x476 + x486 + x488 + x491 + <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 + x22 + x23 <= 1 + +x25 + x26 + x27 + x28 <= 1 + +x29 + x30 + x31 + x32 + x33 + x34 <= 1 + +x35 + x36 + x37 + x38 + x39 + x40 <= 1 + +x41 + x42 + x43 + x44 + x45 + x46 <= 1 + +x47 + x48 + x49 + x50 + x51 + x52 <= 1 + +x53 + x54 + x55 + x56 + x57 + x58 <= 1 + +x59 + x60 + x61 + x62 + x63 + x64 <= 1 + +x65 + x66 + x67 + x68 + x69 + x70 <= 1 + +x72 + x73 + x74 + x75 + x76 + x77 <= 1 + +x78 + x79 + x80 + x81 + x82 + x83 <= 1 + +x85 + x86 + x87 + x88 <= 1 + +x89 + x90 + x91 + x92 + x93 + x94 <= 1 + +x96 + x97 + x98 + x99 + x100 + x101 <= 1 + +x102 + x103 + x104 + x105 + x106 + x107 <= 1 + +x109 + x110 + x111 + x112 + x113 + x114 <= 1 + +x115 + x116 + x117 + x118 + x119 + x120 <= 1 + +x121 + x122 + x123 + x124 + x125 + x126 <= 1 + +x127 + x128 + x129 + x130 + x131 + x132 <= 1 + +x133 + x134 + x135 + x136 + x137 + x138 <= 1 + +x140 + x141 + x142 + x143 + x144 + x145 <= 1 + +x146 + x147 + x148 + x149 + x150 + x151 <= 1 + +x152 + x153 + x154 + x155 + x156 + x157 <= 1 + +x158 + x159 + x160 + x161 + x162 + x163 <= 1 + +x164 + x165 + x166 + x167 + x168 + x169 <= 1 + +x170 + x171 + x172 + x173 + x174 + x175 <= 1 + +x176 + x177 + x178 + x179 + x180 + x181 <= 1 + +x182 + x183 + x184 + x185 + x186 + x187 <= 1 + +x188 + x189 + x190 + x191 <= 1 + +x192 + x193 + x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 <= 1 + +x221 + x222 + x223 + x224 + x225 + x226 <= 1 + +x227 + x228 + x229 + x230 + x231 + x232 <= 1 + +x233 + x234 + x235 + x236 + x237 + x238 <= 1 + +x239 + x240 + x241 + x242 + x243 + x244 <= 1 + +x245 + x246 + x247 + x248 + x249 + x250 <= 1 + +x251 + x252 + x253 + x254 + x255 + x256 <= 1 + +x257 + x258 + x259 + x260 + x261 + x262 <= 1 + +x263 + x264 + x265 + x266 + x267 + x268 <= 1 + +x269 + x270 + x271 + x272 + x273 + x274 <= 1 + +x275 + x276 + x277 + x278 + x279 + x280 <= 1 + +x282 + x283 + x284 + x285 + x286 + x287 <= 1 + +x288 + x289 + x290 + x291 + x292 + x293 <= 1 + +x294 + x295 + x296 + x297 + x298 + x299 <= 1 + +x300 + x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 + x310 <= 1 + +x311 + x312 + x313 + x314 + x315 <= 1 + +x316 + x317 + x318 + x319 + x320 + x321 <= 1 + +x322 + x323 + x324 + x325 + x326 + x327 <= 1 + +x328 + x329 + x330 + x331 + x332 + x333 <= 1 + +x334 + x335 + x336 + x337 + x338 + x339 <= 1 + +x340 + x341 + x342 + x343 + x344 + x345 <= 1 + +x346 + x347 + x348 + x349 + x350 + x351 <= 1 + +x352 + x353 + x354 + x355 + x356 + x357 <= 1 + +x358 + x359 + x360 + x361 <= 1 + +x362 + x363 + x364 + x365 + x366 + x367 <= 1 + +x368 + x369 <= 1 + +x370 + x371 <= 1 + +x372 + x373 <= 1 + +x374 + x375 + x376 + x377 <= 1 + +x378 + x379 + x380 + x381 + x382 + x383 <= 1 + +x384 + x385 + x386 + x387 + x388 + x389 <= 1 + +x390 + x391 + x392 <= 1 + +x393 + x394 + x395 + x396 + x397 + x398 <= 1 + +x399 + x400 + x401 + x402 + x403 <= 1 + +x404 + x405 + x406 + x407 + x408 + x409 <= 1 + +x410 + x411 + x412 + x413 + x414 + x415 <= 1 + +x416 + x417 + x418 + x419 + x420 <= 1 + +x421 + x422 + x423 + x424 + x425 <= 1 + +x426 + x427 + x428 + x429 + x430 + x431 <= 1 + +x432 + x433 + x434 + x435 + x436 + x437 <= 1 + +x438 + x439 + x440 + x441 + x442 + x443 <= 1 + +x445 + x446 + x447 + x448 + x449 <= 1 + +x450 + x451 + x452 + x453 + x454 + x455 <= 1 + +x456 + x457 + x458 + x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x492 + x493 + x494 + x495 + x496 + x497 <= 1 + +x498 + x499 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 + + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0002.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0002.lp new file mode 100644 index 000000000..904f806f5 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0002.lp @@ -0,0 +1,1029 @@ +max + +520.642x0 + 615.951x1 + 611.302x2 + 470.058x3 + 447.766x4 + 436.72x5 + 1211.33x6 + 1327.87x7 + 1320.77x8 + 1286.1x9 + +1243.68x10 + 1233.5x11 + 292.789x12 + 298.75x13 + 245.244x14 + 235.23x15 + 199.1x16 + 767.323x17 + 818.674x18 + 790.697x19 + +768.06x20 + 751.378x21 + 700.682x22 + 868.025x23 + 1108.8x24 + 1057.9x25 + 1040.14x26 + 1000.77x27 + 984.901x28 + 553.021x29 + +577.738x30 + 505.656x31 + 496.48x32 + 481.063x33 + 461.201x34 + 774.601x35 + 1068.67x36 + 1060.76x37 + 996.801x38 + 990.197x39 + +960.298x40 + 1038.37x41 + 1453.83x42 + 1448.25x43 + 1358.8x44 + 1323.57x45 + 1263.03x46 + 161.518x47 + 242.143x48 + 241.653x49 + +230.915x50 + 1090.54x51 + 1573.57x52 + 1511.94x53 + 1469.2x54 + 1386.03x55 + 1380.85x56 + 763.704x57 + 1026.18x58 + 947.28x59 + +895.66x60 + 864.27x61 + 830.977x62 + 363.835x63 + 352.276x64 + 323.838x65 + 250.041x66 + 1063.25x67 + 1309.14x68 + 1262.28x69 + +1244.22x70 + 1170.38x71 + 1168.59x72 + 868.546x73 + 1072.57x74 + 974.811x75 + 948.313x76 + 942.198x77 + 926.191x78 + 126.739x79 + +180.89x80 + 134.241x81 + 302.966x82 + 352.378x83 + 331.849x84 + 323.595x85 + 286.029x86 + 159.673x87 + 181.512x88 + 214.227x89 + +166.377x90 + 162.321x91 + 295.862x92 + 325.521x93 + 321.388x94 + 295.21x95 + 186.958x96 + 224.053x97 + 160.468x98 + 489.146x99 + +593.622x100 + 529.741x101 + 524.638x102 + 434.425x103 + 388.389x104 + 62.9492x105 + 2868.06x106 + 3208.35x107 + 3170.16x108 + 3162.19x109 + +3153.47x110 + 3140.38x111 + 363.307x112 + 475.19x113 + 458.409x114 + 438.319x115 + 394.699x116 + 344.599x117 + 230.314x118 + 172.698x119 + +167.242x120 + 446.705x121 + 579.424x122 + 539.747x123 + 489.335x124 + 443.328x125 + 411.274x126 + 1179.6x127 + 1335.47x128 + 1322.36x129 + +1271.99x130 + 1271.8x131 + 1227.21x132 + 110.884x133 + 1040.65x134 + 1200.87x135 + 1157.59x136 + 1139.01x137 + 1134.21x138 + 1078.94x139 + +349.481x140 + 426.687x141 + 360.181x142 + 311.276x143 + 295.598x144 + 243.336x145 + 711.604x146 + 1033.56x147 + 957.17x148 + 905.92x149 + +877.103x150 + 855.963x151 + 258.47x152 + 373.956x153 + 252.311x154 + 209.302x155 + 191.095x156 + 1861.49x157 + 2416.05x158 + 2350.72x159 + +2343x160 + 2303.91x161 + 2284.47x162 + 597.231x163 + 746.413x164 + 716.945x165 + 672.976x166 + 670.66x167 + 577.697x168 + 2280.25x169 + +2358.31x170 + 2352.73x171 + 2308.92x172 + 2242.89x173 + 2221.13x174 + 105.312x175 + 118.337x176 + 83.0052x177 + 82.5899x178 + 112.628x179 + +605.774x180 + 848.688x181 + 833.76x182 + 808.331x183 + 800.638x184 + 764.436x185 + 1182.69x186 + 1542.5x187 + 1467.11x188 + 1416.37x189 + +1396.29x190 + 1361.37x191 + 571.958x192 + 834.01x193 + 732.912x194 + 700.34x195 + 668.33x196 + 662.146x197 + 152.395x198 + 132.557x199 + +99.6672x200 + 85.8337x201 + 127.369x202 + 186.022x203 + 173.159x204 + 848.596x205 + 1133.29x206 + 907.692x207 + 882.945x208 + 868.614x209 + +866.225x210 + 268.468x211 + 392.802x212 + 376.346x213 + 276.692x214 + 233.902x215 + 222.453x216 + 329.894x217 + 288.026x218 + 269.877x219 + +241.914x220 + 629.958x221 + 701.423x222 + 678.489x223 + 645.075x224 + 619.972x225 + 504.04x226 + 601.008x227 + 689.849x228 + 662.909x229 + +595.89x230 + 510.059x231 + 471.084x232 + 3309.87x233 + 3354x234 + 3297.76x235 + 3285.48x236 + 3190.31x237 + 3162.13x238 + 1742.05x239 + +1906.09x240 + 1817.46x241 + 1780.93x242 + 1747.55x243 + 1726.56x244 + 883.194x245 + 1066.14x246 + 897.972x247 + 879.176x248 + 852.518x249 + +847.103x250 + 125.691x251 + 716.071x252 + 991.274x253 + 840.328x254 + 813.642x255 + 808.713x256 + 788.358x257 + 69.9402x258 + 1162.36x259 + +1471.91x260 + 1353.47x261 + 1319.21x262 + 1305.2x263 + 1305.14x264 + 365.946x265 + 409.316x266 + 395.286x267 + 386.236x268 + 378.638x269 + +348.821x270 + 781.444x271 + 900.746x272 + 832.965x273 + 824.277x274 + 811.615x275 + 802.242x276 + 401.581x277 + 535.886x278 + 494.511x279 + +444.497x280 + 437.159x281 + 415.57x282 + 468.882x283 + 449.749x284 + 445.313x285 + 441.014x286 + 376.753x287 + 322.024x288 + 1526.19x289 + +1886.41x290 + 1802.26x291 + 1799.75x292 + 1729.87x293 + 1723.33x294 + 606.294x295 + 845.978x296 + 781.578x297 + 701.115x298 + 675.62x299 + +671.437x300 + 1010.45x301 + 1250.41x302 + 1243.77x303 + 1223.97x304 + 1220.29x305 + 1209.74x306 + 397.152x307 + 498.577x308 + 488.097x309 + +479.862x310 + 465.942x311 + 429.211x312 + 823.163x313 + 1004.54x314 + 945.693x315 + 934.892x316 + 920.026x317 + 902.998x318 + 164.572x319 + +174.635x320 + 99.213x321 + 397.159x322 + 552.7x323 + 532.894x324 + 501.81x325 + 480.475x326 + 475.29x327 + 514.878x328 + 729.4x329 + +666.891x330 + 562.319x331 + 496.739x332 + 492.253x333 + 273.116x334 + 359.894x335 + 319.396x336 + 274.341x337 + 223.356x338 + 158.457x339 + +191.72x340 + 81.5336x341 + 501.041x342 + 551.991x343 + 525.159x344 + 518.534x345 + 417.856x346 + 213.56x347 + 497.761x348 + 700.472x349 + +667.067x350 + 663.735x351 + 607.763x352 + 604.553x353 + 187.75x354 + 279.381x355 + 146.749x356 + 234.812x357 + 304.581x358 + 254.103x359 + +144.206x360 + 393.812x361 + 463.709x362 + 423.336x363 + 414.475x364 + 412.684x365 + 392.684x366 + 1071.27x367 + 1265.54x368 + 1251.33x369 + +1226.84x370 + 1208.66x371 + 1199.68x372 + 434.058x373 + 400.013x374 + 395.015x375 + 379.052x376 + 348.557x377 + 340.037x378 + 868.601x379 + +934.068x380 + 933.024x381 + 887.317x382 + 871.181x383 + 863.255x384 + 156.113x385 + 2779.15x386 + 2995.92x387 + 2955.94x388 + 2873.2x389 + +2867.73x390 + 2861.71x391 + 89.6766x392 + 133.184x393 + 847.84x394 + 962.544x395 + 942.969x396 + 902.262x397 + 893.035x398 + 885.223x399 + +122.277x400 + 146.863x401 + 118.376x402 + 1704.33x403 + 2229.06x404 + 2185.68x405 + 2129.64x406 + 2114.65x407 + 2023.51x408 + 393.287x409 + +435.389x410 + 406.366x411 + 394.477x412 + 325.731x413 + 279.298x414 + 518.939x415 + 513.508x416 + 500.512x417 + 482.741x418 + 409.198x419 + +396.366x420 + 2096.56x421 + 2040.89x422 + 2021.9x423 + 1972.2x424 + 1970.94x425 + 1950.58x426 + 1212.56x427 + 1349.02x428 + 1327.02x429 + +1320.91x430 + 1277.58x431 + 1231.4x432 + 50.0833x433 + 566.708x434 + 524.042x435 + 505.503x436 + 489.999x437 + 486.972x438 + 447.768x439 + +869.789x440 + 931.949x441 + 883.449x442 + 865.439x443 + 814.293x444 + 794.816x445 + 773.008x446 + 990.778x447 + 920.449x448 + 910.73x449 + +882.477x450 + 858.953x451 + 621.72x452 + 557.049x453 + 549.495x454 + 492.125x455 + 445.527x456 + 411.741x457 + 345.733x458 + 277.441x459 + +268.486x460 + 259.002x461 + 162.033x462 + 358.292x463 + 435.934x464 + 296.94x465 + 293.795x466 + 270.695x467 + 518.059x468 + 707.46x469 + +688.252x470 + 686.346x471 + 630.908x472 + 559.031x473 + 646.749x474 + 789.511x475 + 784.518x476 + 745.597x477 + 719.764x478 + 692.724x479 + +178.689x480 + 225.889x481 + 871.304x482 + 986.252x483 + 945.86x484 + 884.533x485 + 839.223x486 + 811.25x487 + 1935.19x488 + 2121.86x489 + +2038.5x490 + 2031.72x491 + 1995.67x492 + 1993.12x493 + 945.387x494 + 1079.61x495 + 1065.55x496 + 1061.44x497 + 1036.16x498 + 1001.35x499 + + +st + +x58 + x109 + x157 + x210 + x333 + x386 + x388 + x403 + x404 + x406 ++ x419 + x428 + x429 + x430 + x432 + x475 + x478 + x479 <= 1 + +x35 + x41 + x46 + x57 + x135 + x146 + x151 + x210 + x245 + x249 ++ x295 + x296 + x298 + x299 + x332 + x379 + x384 + x387 + x404 + x406 ++ x408 + x415 + x416 + x419 + x420 + x424 + x430 + x478 + x479 <= 1 + +x24 + x25 + x35 + x38 + x40 + x41 + x42 + x43 + x46 + x57 ++ x66 + x134 + x135 + x136 + x137 + x139 + x146 + x149 + x151 + x170 ++ x173 + x208 + x210 + x236 + x245 + x246 + x249 + x250 + x292 + x295 ++ x296 + x297 + x298 + x299 + x300 + x331 + x332 + x379 + x380 + x381 ++ x384 + x386 + x387 + x388 + x404 + x406 + x416 + x418 + x427 + x430 ++ x432 + x474 + x478 + x479 + x484 + x496 <= 1 + +x24 + x25 + x35 + x41 + x42 + x43 + x45 + x46 + x61 + x63 ++ x64 + x66 + x82 + x86 + x134 + x135 + x136 + x137 + x139 + x151 ++ x160 + x161 + x170 + x173 + x210 + x237 + x245 + x246 + x247 + x249 ++ x250 + x263 + x292 + x295 + x296 + x297 + x298 + x299 + x332 + x379 ++ x380 + x381 + x382 + x384 + x386 + x387 + x388 + x389 + x390 + x399 ++ x404 + x407 + x474 + x478 + x484 + x496 <= 1 + +x25 + x41 + x43 + x53 + x54 + x61 + x63 + x66 + x86 + x108 ++ x110 + x134 + x135 + x136 + x137 + x139 + x151 + x160 + x161 + x217 ++ x219 + x233 + x234 + x235 + x236 + x237 + x238 + x245 + x246 + x247 ++ x249 + x250 + x259 + x261 + x263 + x292 + x296 + x332 + x357 + x358 ++ x359 + x375 + x379 + x380 + x381 + x382 + x383 + x384 + x386 + x387 ++ x388 + x389 + x404 + x407 + x496 <= 1 + +x25 + x41 + x42 + x43 + x46 + x60 + x65 + x86 + x110 + x134 ++ x135 + x136 + x137 + x139 + x151 + x159 + x160 + x161 + x206 + x217 ++ x218 + x219 + x235 + x236 + x237 + x238 + x263 + x292 + x296 + x357 ++ x358 + x372 + x379 + x380 + x381 + x382 + x383 + x386 + x387 + x388 ++ x389 + x390 + x407 <= 1 + +x96 + x136 + x137 + x139 + x151 + x160 + x216 + x218 + x219 + x224 ++ x235 + x238 + x259 + x262 + x372 + x381 + x382 + x383 + x386 + x390 ++ x403 + x407 <= 1 + +x136 + x137 + x139 + x160 + x381 + x382 + x383 + x386 + x403 + x407 + <= 1 + +x76 + x100 + x102 + x171 + x176 + x182 + x284 + x302 + x306 + x394 ++ x398 + x399 + x403 + x423 <= 1 + +x175 + x176 + x250 + x284 + x302 + x394 + x398 + x399 + x403 <= 1 + +x35 + x46 + x56 + x58 + x59 + x151 + x157 + x161 + x210 + x249 ++ x295 + x298 + x300 + x328 + x330 + x331 + x333 + x388 + x392 + x403 ++ x404 + x406 + x408 + x415 + x418 + x419 + x420 + x424 + x428 + x429 ++ x430 + x432 + x454 + x464 + x469 + x474 + x475 + x476 + x478 + x479 ++ x494 <= 1 + +x24 + x35 + x41 + x46 + x56 + x57 + x58 + x60 + x127 + x146 ++ x151 + x161 + x210 + x245 + x248 + x249 + x250 + x295 + x296 + x298 ++ x299 + x300 + x328 + x330 + x332 + x379 + x384 + x389 + x392 + x393 ++ x401 + x402 + x403 + x404 + x406 + x408 + x415 + x416 + x418 + x419 ++ x420 + x424 + x429 + x432 + x474 + x475 + x478 + x479 + x497 <= 1 + +x24 + x25 + x35 + x36 + x38 + x40 + x41 + x46 + x56 + x57 ++ x58 + x59 + x60 + x95 + x131 + x134 + x146 + x149 + x151 + x170 ++ x173 + x208 + x210 + x245 + x248 + x249 + x250 + x271 + x292 + x295 ++ x296 + x297 + x298 + x299 + x300 + x328 + x331 + x332 + x384 + x386 ++ x387 + x388 + x391 + x402 + x403 + x404 + x406 + x408 + x415 + x416 ++ x417 + x418 + x420 + x424 + x427 + x429 + x430 + x432 + x471 + x474 ++ x479 + x493 <= 1 + +x25 + x41 + x42 + x43 + x45 + x46 + x61 + x63 + x64 + x65 ++ x106 + x134 + x135 + x136 + x137 + x138 + x139 + x149 + x151 + x160 ++ x161 + x245 + x249 + x250 + x262 + x292 + x297 + x332 + x386 + x387 ++ x388 + x389 + x390 + x404 + x407 + x474 + x478 + x484 <= 1 + +x25 + x41 + x42 + x43 + x45 + x46 + x51 + x53 + x54 + x61 ++ x63 + x64 + x65 + x66 + x86 + x106 + x107 + x108 + x134 + x135 ++ x137 + x138 + x139 + x147 + x149 + x150 + x151 + x159 + x160 + x161 ++ x208 + x233 + x234 + x235 + x236 + x237 + x238 + x259 + x261 + x262 ++ x263 + x357 + x359 + x379 + x380 + x381 + x383 + x384 + x386 + x387 ++ x388 + x389 + x390 + x404 + x406 + x407 + x433 + x482 + x483 + x484 ++ x485 <= 1 + +x23 + x25 + x28 + x39 + x41 + x42 + x43 + x44 + x46 + x53 ++ x54 + x64 + x65 + x76 + x86 + x108 + x134 + x136 + x137 + x139 ++ x159 + x161 + x216 + x217 + x218 + x220 + x224 + x235 + x259 + x262 ++ x263 + x290 + x358 + x379 + x380 + x383 + x403 + x406 + x407 + x475 + <= 1 + +x23 + x25 + x28 + x39 + x42 + x43 + x44 + x46 + x54 + x134 ++ x136 + x137 + x139 + x159 + x216 + x217 + x218 + x219 + x220 + x224 ++ x235 + x259 + x261 + x262 + x263 + x379 + x380 + x381 + x382 + x383 ++ x386 + x390 + x398 + x403 + x407 + x431 + x475 <= 1 + +x25 + x28 + x54 + x102 + x117 + x136 + x137 + x139 + x157 + x217 ++ x219 + x220 + x235 + x302 + x382 + x383 + x386 + x398 + x399 + x403 ++ x407 <= 1 + +x73 + x75 + x76 + x77 + x100 + x102 + x108 + x136 + x157 + x180 ++ x182 + x185 + x235 + x237 + x254 + x302 + x382 + x394 + x398 + x399 ++ x403 + x407 + x410 + x414 + x423 + x425 + x465 <= 1 + +x130 + x157 + x175 + x177 + x180 + x182 + x185 + x211 + x284 + x302 ++ x382 + x394 + x398 + x399 + x403 + x413 + x423 + x490 <= 1 + +x24 + x35 + x38 + x59 + x127 + x128 + x129 + x130 + x131 + x132 ++ x146 + x149 + x157 + x159 + x161 + x173 + x210 + x245 + x248 + x295 ++ x296 + x298 + x299 + x300 + x328 + x330 + x331 + x332 + x333 + x344 ++ x388 + x415 + x416 + x417 + x420 + x424 + x427 + x428 + x429 + x430 ++ x432 + x457 + x464 + x469 + x475 + x476 + x478 + x481 + x494 + x497 + <= 1 + +x24 + x35 + x36 + x38 + x41 + x46 + x56 + x57 + x58 + x59 ++ x60 + x127 + x128 + x129 + x146 + x149 + x157 + x161 + x173 + x191 ++ x208 + x210 + x245 + x248 + x250 + x290 + x295 + x296 + x298 + x299 ++ x300 + x328 + x330 + x331 + x332 + x333 + x388 + x389 + x391 + x393 ++ x401 + x403 + x404 + x405 + x406 + x408 + x415 + x416 + x417 + x418 ++ x419 + x424 + x428 + x430 + x432 + x457 + x469 + x474 + x475 + x480 ++ x481 + x494 + x497 <= 1 + +x24 + x35 + x36 + x38 + x40 + x41 + x46 + x56 + x57 + x58 ++ x59 + x60 + x106 + x110 + x127 + x128 + x129 + x130 + x131 + x134 ++ x138 + x146 + x149 + x157 + x161 + x169 + x173 + x191 + x205 + x208 ++ x210 + x245 + x248 + x249 + x250 + x271 + x292 + x294 + x296 + x298 ++ x299 + x300 + x328 + x330 + x331 + x332 + x333 + x384 + x388 + x389 ++ x391 + x401 + x402 + x403 + x404 + x405 + x406 + x408 + x417 + x418 ++ x419 + x420 + x424 + x427 + x430 + x432 + x449 + x456 + x457 + x471 ++ x474 + x477 + x479 + x480 + x486 + x493 <= 1 + +x36 + x37 + x39 + x40 + x43 + x52 + x53 + x71 + x89 + x109 ++ x129 + x131 + x147 + x148 + x149 + x150 + x158 + x159 + x160 + x161 ++ x171 + x172 + x173 + x194 + x233 + x235 + x236 + x249 + x290 + x294 ++ x382 + x386 + x388 + x389 + x391 + x403 + x404 + x406 + x408 + x432 ++ x470 + x482 + x483 + x485 + x486 + x499 <= 1 + +x25 + x28 + x36 + x38 + x39 + x42 + x45 + x46 + x51 + x53 ++ x54 + x62 + x70 + x71 + x76 + x106 + x107 + x108 + x115 + x138 ++ x147 + x149 + x150 + x159 + x160 + x161 + x194 + x224 + x233 + x234 ++ x235 + x236 + x237 + x238 + x259 + x260 + x261 + x262 + x263 + x266 ++ x359 + x369 + x379 + x380 + x381 + x383 + x384 + x386 + x387 + x388 ++ x389 + x390 + x404 + x406 + x407 + x408 + x426 + x482 + x483 + x484 ++ x485 + x499 <= 1 + +x7 + x23 + x25 + x26 + x28 + x39 + x42 + x62 + x76 + x106 ++ x107 + x108 + x110 + x115 + x134 + x138 + x139 + x159 + x161 + x162 ++ x174 + x190 + x197 + x216 + x217 + x218 + x220 + x233 + x236 + x237 ++ x238 + x259 + x260 + x261 + x262 + x263 + x264 + x290 + x386 + x387 ++ x388 + x389 + x390 + x404 + x406 + x407 + x411 + x431 + x475 + x489 ++ x490 + x499 <= 1 + +x23 + x25 + x26 + x28 + x39 + x42 + x44 + x54 + x58 + x62 ++ x70 + x76 + x101 + x108 + x134 + x136 + x137 + x139 + x159 + x204 ++ x216 + x218 + x219 + x220 + x224 + x233 + x234 + x235 + x236 + x238 ++ x259 + x260 + x261 + x262 + x263 + x264 + x294 + x317 + x379 + x380 ++ x382 + x386 + x387 + x388 + x389 + x390 + x391 + x403 + x411 + x412 ++ x421 + x425 + x426 + x431 + x475 + x490 + x492 <= 1 + +x7 + x9 + x26 + x28 + x39 + x44 + x52 + x58 + x62 + x70 ++ x73 + x75 + x76 + x77 + x78 + x80 + x99 + x100 + x101 + x102 ++ x108 + x110 + x136 + x137 + x139 + x141 + x182 + x186 + x190 + x224 ++ x233 + x234 + x235 + x236 + x238 + x243 + x253 + x254 + x256 + x260 ++ x273 + x379 + x386 + x389 + x390 + x394 + x395 + x397 + x407 + x409 ++ x411 + x425 + x426 + x465 + x475 + x488 + x492 <= 1 + +x7 + x44 + x52 + x57 + x58 + x61 + x62 + x70 + x73 + x75 ++ x76 + x77 + x99 + x100 + x102 + x108 + x110 + x136 + x137 + x140 ++ x141 + x156 + x157 + x165 + x182 + x185 + x213 + x233 + x237 + x238 ++ x243 + x254 + x256 + x273 + x302 + x382 + x386 + x389 + x390 + x394 ++ x397 + x398 + x399 + x407 + x409 + x410 + x411 + x414 + x425 + x426 ++ x465 + x492 <= 1 + +x57 + x75 + x76 + x77 + x102 + x108 + x141 + x145 + x177 + x180 ++ x182 + x185 + x211 + x214 + x254 + x302 + x386 + x390 + x394 + x397 ++ x398 + x399 + x403 + x411 + x413 + x414 + x426 + x490 + x492 <= 1 + +x10 + x53 + x60 + x106 + x127 + x128 + x129 + x130 + x131 + x132 ++ x157 + x159 + x161 + x193 + x238 + x245 + x248 + x295 + x300 + x328 ++ x329 + x331 + x333 + x367 + x388 + x391 + x417 + x427 + x428 + x429 ++ x430 + x432 + x446 + x452 + x456 + x457 + x476 + x477 + x478 + x486 ++ x494 + x497 <= 1 + +x10 + x17 + x35 + x36 + x37 + x38 + x40 + x42 + x46 + x53 ++ x56 + x59 + x60 + x68 + x71 + x106 + x108 + x109 + x110 + x111 ++ x127 + x128 + x129 + x130 + x131 + x132 + x157 + x160 + x161 + x171 ++ x172 + x173 + x197 + x207 + x208 + x210 + x233 + x235 + x236 + x238 ++ x248 + x278 + x291 + x294 + x306 + x328 + x329 + x331 + x372 + x384 ++ x388 + x391 + x403 + x404 + x405 + x406 + x408 + x417 + x424 + x426 ++ x427 + x428 + x429 + x430 + x432 + x447 + x452 + x456 + x457 + x474 ++ x476 + x477 + x478 + x479 + x486 + x490 + x491 + x493 + x494 + x497 ++ x499 <= 1 + +x24 + x35 + x36 + x37 + x38 + x40 + x46 + x52 + x53 + x54 ++ x56 + x58 + x59 + x60 + x68 + x71 + x106 + x109 + x110 + x111 ++ x127 + x128 + x129 + x130 + x131 + x132 + x134 + x138 + x146 + x149 ++ x150 + x157 + x159 + x160 + x161 + x169 + x171 + x172 + x173 + x197 ++ x205 + x207 + x208 + x210 + x233 + x235 + x236 + x238 + x245 + x248 ++ x249 + x250 + x253 + x271 + x291 + x294 + x298 + x299 + x300 + x329 ++ x384 + x385 + x388 + x389 + x391 + x403 + x404 + x405 + x406 + x408 ++ x424 + x426 + x427 + x428 + x429 + x430 + x432 + x446 + x447 + x448 ++ x449 + x452 + x456 + x457 + x471 + x474 + x476 + x477 + x479 + x483 ++ x484 + x486 + x487 + x493 + x494 + x497 + x499 <= 1 + +x8 + x35 + x36 + x37 + x39 + x40 + x42 + x43 + x45 + x46 ++ x52 + x53 + x54 + x56 + x71 + x78 + x89 + x106 + x107 + x109 ++ x110 + x111 + x113 + x115 + x127 + x128 + x129 + x131 + x138 + x146 ++ x147 + x148 + x149 + x150 + x158 + x159 + x160 + x161 + x169 + x170 ++ x171 + x172 + x173 + x193 + x194 + x195 + x197 + x208 + x233 + x235 ++ x236 + x238 + x242 + x243 + x248 + x249 + x250 + x260 + x264 + x290 ++ x294 + x299 + x371 + x383 + x386 + x388 + x389 + x390 + x391 + x403 ++ x404 + x406 + x407 + x408 + x422 + x424 + x426 + x427 + x428 + x429 ++ x430 + x431 + x432 + x448 + x456 + x470 + x471 + x477 + x482 + x483 ++ x485 + x486 + x487 + x494 + x499 <= 1 + +x6 + x7 + x23 + x28 + x36 + x37 + x38 + x39 + x40 + x42 ++ x43 + x45 + x52 + x53 + x54 + x70 + x71 + x106 + x107 + x110 ++ x111 + x112 + x115 + x128 + x138 + x146 + x147 + x148 + x149 + x150 ++ x161 + x162 + x169 + x170 + x171 + x173 + x174 + x188 + x190 + x191 ++ x193 + x194 + x195 + x197 + x221 + x224 + x233 + x234 + x235 + x236 ++ x237 + x238 + x242 + x243 + x259 + x260 + x261 + x262 + x263 + x264 ++ x266 + x290 + x294 + x351 + x368 + x369 + x380 + x381 + x383 + x386 ++ x389 + x391 + x403 + x404 + x406 + x407 + x408 + x421 + x422 + x423 ++ x424 + x426 + x427 + x432 + x471 + x482 + x483 + x484 + x485 + x486 ++ x487 + x488 + x490 + x491 + x499 <= 1 + +x6 + x7 + x8 + x9 + x11 + x23 + x28 + x36 + x38 + x39 ++ x40 + x44 + x45 + x52 + x54 + x70 + x74 + x77 + x106 + x107 ++ x108 + x110 + x128 + x138 + x162 + x170 + x172 + x173 + x174 + x186 ++ x187 + x190 + x193 + x197 + x206 + x233 + x234 + x235 + x236 + x237 ++ x238 + x239 + x243 + x244 + x259 + x260 + x261 + x262 + x263 + x264 ++ x290 + x294 + x314 + x316 + x351 + x386 + x387 + x388 + x389 + x390 ++ x391 + x404 + x421 + x422 + x423 + x424 + x426 + x431 + x482 + x483 ++ x485 + x486 + x487 + x488 + x489 + x490 + x491 + x493 + x499 <= 1 + +x7 + x9 + x26 + x28 + x34 + x39 + x44 + x54 + x62 + x67 ++ x70 + x73 + x74 + x75 + x76 + x77 + x78 + x99 + x101 + x103 ++ x104 + x106 + x107 + x108 + x110 + x111 + x173 + x186 + x190 + x191 ++ x194 + x204 + x216 + x220 + x233 + x234 + x235 + x236 + x237 + x239 ++ x243 + x244 + x254 + x256 + x260 + x261 + x263 + x264 + x290 + x294 ++ x314 + x316 + x317 + x320 + x386 + x389 + x390 + x391 + x394 + x395 ++ x396 + x399 + x412 + x421 + x423 + x425 + x426 + x431 + x465 + x487 ++ x488 + x490 <= 1 + +x7 + x9 + x20 + x26 + x32 + x34 + x44 + x54 + x57 + x61 ++ x62 + x70 + x73 + x75 + x77 + x78 + x99 + x100 + x101 + x103 ++ x108 + x141 + x145 + x152 + x153 + x154 + x170 + x171 + x172 + x180 ++ x181 + x182 + x186 + x190 + x212 + x213 + x214 + x233 + x237 + x239 ++ x243 + x253 + x254 + x256 + x260 + x261 + x263 + x294 + x313 + x314 ++ x315 + x316 + x317 + x318 + x386 + x389 + x390 + x394 + x395 + x396 ++ x397 + x398 + x399 + x409 + x410 + x412 + x413 + x421 + x425 + x426 ++ x431 + x463 + x464 + x465 + x470 + x472 + x487 + x488 + x490 + x491 ++ x492 <= 1 + +x4 + x26 + x32 + x34 + x52 + x57 + x61 + x62 + x70 + x73 ++ x74 + x75 + x77 + x78 + x99 + x100 + x101 + x103 + x110 + x140 ++ x141 + x143 + x145 + x152 + x153 + x154 + x155 + x156 + x180 + x181 ++ x182 + x183 + x185 + x186 + x211 + x213 + x214 + x233 + x237 + x239 ++ x243 + x252 + x254 + x256 + x257 + x263 + x314 + x315 + x316 + x317 ++ x318 + x386 + x389 + x394 + x395 + x397 + x398 + x399 + x409 + x410 ++ x412 + x413 + x414 + x425 + x463 + x464 + x466 + x468 + x472 + x492 + <= 1 + +x4 + x26 + x61 + x62 + x73 + x74 + x75 + x77 + x78 + x110 ++ x140 + x142 + x143 + x145 + x152 + x153 + x155 + x178 + x179 + x180 ++ x181 + x182 + x183 + x185 + x211 + x212 + x213 + x214 + x215 + x237 ++ x239 + x243 + x256 + x257 + x294 + x315 + x316 + x317 + x386 + x394 ++ x397 + x398 + x399 + x409 + x412 + x413 + x414 + x463 + x466 + x467 ++ x468 + x470 + x472 + x473 + x490 + x492 <= 1 + +x10 + x37 + x40 + x42 + x51 + x53 + x59 + x60 + x67 + x71 ++ x106 + x109 + x110 + x127 + x128 + x129 + x130 + x131 + x132 + x134 ++ x157 + x160 + x161 + x162 + x192 + x195 + x197 + x248 + x291 + x293 ++ x295 + x329 + x331 + x333 + x347 + x380 + x388 + x391 + x403 + x405 ++ x446 + x455 + x476 + x490 <= 1 + +x10 + x11 + x17 + x36 + x37 + x40 + x42 + x51 + x53 + x56 ++ x59 + x60 + x67 + x68 + x71 + x106 + x108 + x109 + x110 + x127 ++ x128 + x129 + x130 + x131 + x132 + x157 + x158 + x159 + x160 + x161 ++ x162 + x192 + x195 + x197 + x207 + x238 + x242 + x248 + x267 + x289 ++ x291 + x297 + x306 + x329 + x347 + x370 + x380 + x386 + x388 + x391 ++ x403 + x405 + x408 + x429 + x446 + x449 + x452 + x455 + x457 + x476 ++ x479 + x490 + x491 + x493 + x497 <= 1 + +x8 + x10 + x11 + x27 + x35 + x36 + x37 + x40 + x51 + x53 ++ x56 + x59 + x60 + x68 + x71 + x106 + x109 + x110 + x111 + x127 ++ x128 + x129 + x130 + x131 + x132 + x138 + x150 + x160 + x162 + x169 ++ x171 + x172 + x173 + x192 + x195 + x197 + x205 + x207 + x233 + x234 ++ x235 + x236 + x238 + x250 + x253 + x261 + x267 + x289 + x291 + x293 ++ x329 + x370 + x385 + x388 + x391 + x403 + x404 + x405 + x406 + x408 ++ x427 + x428 + x429 + x430 + x431 + x432 + x446 + x447 + x448 + x449 ++ x451 + x455 + x456 + x484 + x487 + x488 + x490 + x491 + x493 + x497 ++ x499 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 + x33 + x45 + x52 + x70 ++ x71 + x74 + x78 + x88 + x89 + x106 + x107 + x110 + x111 + x113 ++ x115 + x128 + x129 + x131 + x146 + x147 + x148 + x150 + x158 + x159 ++ x161 + x169 + x171 + x172 + x173 + x192 + x194 + x195 + x197 + x205 ++ x208 + x221 + x233 + x234 + x235 + x236 + x237 + x238 + x242 + x264 ++ x265 + x266 + x268 + x270 + x289 + x291 + x294 + x297 + x369 + x371 ++ x383 + x389 + x390 + x391 + x403 + x404 + x405 + x406 + x408 + x422 ++ x423 + x424 + x426 + x427 + x428 + x429 + x431 + x432 + x454 + x471 ++ x482 + x486 + x487 + x491 + x499 <= 1 + +x6 + x7 + x8 + x9 + x11 + x23 + x28 + x29 + x33 + x36 ++ x37 + x38 + x39 + x42 + x43 + x45 + x51 + x52 + x53 + x54 ++ x70 + x71 + x74 + x88 + x91 + x104 + x106 + x107 + x109 + x111 ++ x112 + x113 + x115 + x116 + x117 + x128 + x131 + x135 + x147 + x148 ++ x150 + x158 + x159 + x161 + x169 + x171 + x172 + x173 + x174 + x187 ++ x188 + x189 + x190 + x191 + x193 + x194 + x195 + x197 + x208 + x221 ++ x233 + x234 + x235 + x236 + x237 + x238 + x242 + x259 + x260 + x261 ++ x262 + x264 + x265 + x266 + x268 + x270 + x289 + x290 + x294 + x297 ++ x303 + x305 + x368 + x369 + x371 + x375 + x389 + x404 + x405 + x406 ++ x407 + x408 + x422 + x423 + x424 + x426 + x428 + x429 + x431 + x454 ++ x482 + x483 + x485 + x486 + x487 + x496 + x499 <= 1 + +x7 + x8 + x9 + x11 + x29 + x32 + x34 + x42 + x43 + x44 ++ x45 + x52 + x70 + x71 + x72 + x74 + x76 + x78 + x91 + x104 ++ x106 + x107 + x109 + x111 + x112 + x114 + x131 + x138 + x150 + x159 ++ x169 + x170 + x171 + x172 + x173 + x174 + x186 + x187 + x188 + x190 ++ x191 + x194 + x205 + x206 + x207 + x208 + x233 + x234 + x235 + x236 ++ x237 + x238 + x243 + x244 + x246 + x251 + x253 + x259 + x260 + x261 ++ x262 + x263 + x264 + x282 + x305 + x314 + x316 + x340 + x351 + x368 ++ x369 + x371 + x373 + x374 + x375 + x386 + x387 + x389 + x390 + x395 ++ x404 + x405 + x406 + x408 + x421 + x422 + x423 + x424 + x425 + x426 ++ x431 + x482 + x483 + x485 + x487 + x488 + x489 + x490 + x491 + x492 ++ x493 + x499 <= 1 + +x6 + x7 + x8 + x26 + x28 + x29 + x31 + x32 + x34 + x73 ++ x74 + x75 + x76 + x77 + x78 + x99 + x101 + x103 + x104 + x106 ++ x107 + x108 + x109 + x110 + x111 + x112 + x114 + x158 + x170 + x171 ++ x172 + x173 + x186 + x190 + x191 + x194 + x233 + x234 + x235 + x236 ++ x243 + x252 + x253 + x254 + x255 + x256 + x260 + x261 + x262 + x264 ++ x290 + x294 + x314 + x316 + x317 + x320 + x351 + x368 + x369 + x371 ++ x386 + x390 + x394 + x395 + x397 + x399 + x406 + x407 + x408 + x421 ++ x425 + x426 + x431 + x482 + x483 + x488 + x489 + x490 + x491 + x492 ++ x493 + x496 <= 1 + +x7 + x9 + x20 + x26 + x29 + x31 + x32 + x34 + x57 + x61 ++ x62 + x73 + x74 + x75 + x77 + x78 + x103 + x104 + x107 + x109 ++ x110 + x140 + x141 + x142 + x143 + x144 + x153 + x170 + x171 + x172 ++ x183 + x185 + x186 + x190 + x191 + x194 + x212 + x233 + x234 + x235 ++ x239 + x243 + x252 + x253 + x254 + x255 + x256 + x257 + x264 + x294 ++ x314 + x315 + x316 + x319 + x320 + x368 + x371 + x386 + x394 + x395 ++ x396 + x397 + x398 + x399 + x407 + x421 + x425 + x426 + x455 + x463 ++ x464 + x469 + x470 + x472 + x473 + x488 + x490 + x491 <= 1 + +x7 + x9 + x26 + x32 + x44 + x57 + x61 + x62 + x70 + x73 ++ x74 + x75 + x77 + x78 + x103 + x110 + x140 + x142 + x143 + x144 ++ x145 + x152 + x153 + x154 + x155 + x156 + x178 + x180 + x181 + x182 ++ x183 + x185 + x186 + x198 + x200 + x211 + x212 + x213 + x214 + x215 ++ x243 + x247 + x252 + x254 + x256 + x257 + x263 + x278 + x294 + x313 ++ x314 + x315 + x316 + x317 + x386 + x389 + x390 + x394 + x395 + x396 ++ x397 + x398 + x410 + x425 + x463 + x466 + x467 + x468 + x470 + x472 ++ x473 <= 1 + +x4 + x26 + x32 + x41 + x44 + x110 + x142 + x143 + x144 + x145 ++ x179 + x180 + x181 + x182 + x184 + x185 + x186 + x198 + x201 + x211 ++ x212 + x213 + x214 + x215 + x238 + x239 + x243 + x247 + x256 + x279 ++ x313 + x316 + x317 + x319 + x321 + x386 + x396 + x397 + x398 + x425 ++ x466 + x467 + x469 + x470 + x472 + x473 <= 1 + +x10 + x11 + x13 + x51 + x53 + x56 + x60 + x71 + x106 + x108 ++ x109 + x110 + x111 + x157 + x160 + x161 + x162 + x192 + x196 + x205 ++ x248 + x272 + x276 + x291 + x293 + x331 + x333 + x347 + x367 + x386 ++ x387 + x388 + x391 + x403 + x405 + x427 + x428 + x429 + x430 + x431 ++ x446 + x450 + x451 + x476 <= 1 + +x6 + x10 + x11 + x12 + x13 + x27 + x40 + x51 + x53 + x56 ++ x59 + x67 + x68 + x71 + x106 + x108 + x109 + x110 + x111 + x113 ++ x127 + x128 + x129 + x130 + x132 + x138 + x157 + x158 + x159 + x160 ++ x161 + x162 + x168 + x192 + x205 + x206 + x233 + x234 + x235 + x236 ++ x238 + x242 + x253 + x272 + x276 + x289 + x291 + x293 + x297 + x306 ++ x329 + x355 + x370 + x386 + x387 + x388 + x391 + x403 + x405 + x422 ++ x423 + x427 + x428 + x429 + x430 + x431 + x446 + x447 + x448 + x449 ++ x450 + x451 + x452 + x453 + x454 + x455 + x488 + x491 + x493 <= 1 + +x6 + x8 + x9 + x10 + x11 + x13 + x37 + x43 + x59 + x71 ++ x106 + x107 + x108 + x109 + x110 + x111 + x113 + x127 + x128 + x129 ++ x130 + x131 + x132 + x158 + x159 + x160 + x161 + x162 + x168 + x169 ++ x171 + x173 + x187 + x192 + x195 + x197 + x205 + x206 + x207 + x209 ++ x233 + x234 + x235 + x236 + x237 + x238 + x241 + x242 + x253 + x264 ++ x265 + x267 + x272 + x274 + x276 + x289 + x291 + x293 + x297 + x306 ++ x329 + x335 + x355 + x360 + x367 + x370 + x386 + x387 + x389 + x390 ++ x391 + x403 + x405 + x408 + x422 + x423 + x425 + x427 + x446 + x447 ++ x448 + x449 + x450 + x451 + x452 + x453 + x454 + x455 + x456 + x484 ++ x488 + x490 + x491 + x493 + x497 + x498 <= 1 + +x6 + x8 + x9 + x10 + x11 + x33 + x37 + x52 + x108 + x110 ++ x111 + x113 + x127 + x131 + x132 + x148 + x158 + x159 + x161 + x162 ++ x169 + x171 + x172 + x173 + x174 + x192 + x193 + x194 + x195 + x196 ++ x197 + x205 + x206 + x207 + x208 + x209 + x233 + x234 + x235 + x236 ++ x237 + x238 + x242 + x246 + x259 + x264 + x265 + x266 + x268 + x269 ++ x270 + x289 + x291 + x297 + x339 + x360 + x369 + x371 + x387 + x389 ++ x390 + x391 + x397 + x408 + x421 + x422 + x423 + x425 + x426 + x427 ++ x428 + x429 + x446 + x448 + x449 + x451 + x452 + x453 + x454 + x488 ++ x491 + x493 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 + x33 + x37 + x39 + x44 ++ x45 + x51 + x52 + x54 + x69 + x70 + x72 + x74 + x78 + x88 ++ x90 + x91 + x104 + x106 + x107 + x108 + x109 + x110 + x111 + x112 ++ x116 + x117 + x135 + x147 + x148 + x150 + x169 + x170 + x171 + x172 ++ x173 + x174 + x187 + x188 + x189 + x190 + x191 + x193 + x194 + x205 ++ x206 + x207 + x208 + x209 + x221 + x222 + x223 + x225 + x233 + x234 ++ x235 + x236 + x237 + x238 + x246 + x259 + x260 + x262 + x264 + x265 ++ x268 + x269 + x270 + x289 + x292 + x293 + x294 + x303 + x305 + x318 ++ x323 + x324 + x339 + x340 + x347 + x367 + x368 + x369 + x370 + x371 ++ x373 + x374 + x375 + x377 + x387 + x389 + x390 + x391 + x395 + x396 ++ x397 + x404 + x405 + x406 + x407 + x408 + x421 + x422 + x423 + x424 ++ x425 + x426 + x453 + x461 + x462 + x485 + x488 + x489 + x490 + x491 ++ x492 + x493 + x495 + x496 + x498 <= 1 + +x2 + x8 + x9 + x29 + x30 + x33 + x37 + x44 + x45 + x52 ++ x54 + x55 + x69 + x74 + x75 + x109 + x110 + x111 + x112 + x117 ++ x124 + x135 + x147 + x148 + x158 + x161 + x162 + x172 + x173 + x174 ++ x186 + x188 + x189 + x222 + x223 + x225 + x233 + x234 + x235 + x236 ++ x237 + x238 + x243 + x246 + x252 + x253 + x255 + x257 + x269 + x270 ++ x305 + x308 + x313 + x314 + x323 + x342 + x343 + x344 + x345 + x349 ++ x375 + x387 + x389 + x391 + x395 + x396 + x406 + x407 + x408 + x421 ++ x422 + x423 + x424 + x425 + x426 + x440 + x441 + x443 + x444 + x445 ++ x458 + x461 + x462 + x488 + x489 + x490 + x491 + x492 + x494 + x495 ++ x498 <= 1 + +x2 + x6 + x8 + x29 + x30 + x31 + x33 + x34 + x44 + x45 ++ x52 + x55 + x69 + x75 + x76 + x84 + x106 + x107 + x108 + x109 ++ x110 + x111 + x114 + x116 + x135 + x158 + x162 + x173 + x186 + x187 ++ x188 + x189 + x190 + x191 + x195 + x223 + x233 + x234 + x235 + x236 ++ x237 + x238 + x243 + x252 + x255 + x257 + x260 + x261 + x262 + x277 ++ x278 + x290 + x308 + x313 + x314 + x316 + x317 + x342 + x344 + x345 ++ x349 + x350 + x351 + x371 + x395 + x396 + x406 + x407 + x421 + x422 ++ x423 + x425 + x426 + x440 + x441 + x444 + x458 + x459 + x461 + x489 ++ x490 + x491 + x492 + x495 + x496 <= 1 + +x0 + x4 + x5 + x31 + x44 + x55 + x106 + x107 + x109 + x111 ++ x114 + x142 + x155 + x160 + x162 + x181 + x183 + x184 + x185 + x186 ++ x187 + x188 + x189 + x190 + x191 + x199 + x212 + x233 + x234 + x239 ++ x244 + x247 + x257 + x277 + x278 + x279 + x281 + x282 + x313 + x314 ++ x315 + x316 + x317 + x344 + x345 + x351 + x371 + x390 + x396 + x437 ++ x439 + x441 + x450 + x458 + x460 + x468 + x469 + x470 + x491 + x492 + <= 1 + +x4 + x5 + x44 + x62 + x70 + x73 + x77 + x78 + x138 + x140 ++ x142 + x143 + x144 + x152 + x154 + x155 + x156 + x180 + x181 + x183 ++ x184 + x185 + x186 + x188 + x198 + x199 + x200 + x202 + x211 + x212 ++ x213 + x215 + x235 + x236 + x238 + x239 + x244 + x247 + x252 + x254 ++ x256 + x257 + x277 + x278 + x279 + x280 + x281 + x282 + x286 + x313 ++ x315 + x316 + x317 + x386 + x390 + x396 + x425 + x466 + x467 + x468 ++ x469 + x470 + x472 + x473 + x488 + x492 <= 1 + +x6 + x41 + x44 + x107 + x144 + x201 + x202 + x214 + x238 + x287 ++ x313 + x319 + x321 + x372 + x390 + x408 + x467 <= 1 + +x6 + x10 + x27 + x51 + x53 + x56 + x67 + x87 + x105 + x106 ++ x108 + x109 + x110 + x111 + x150 + x157 + x168 + x192 + x196 + x210 ++ x229 + x232 + x274 + x276 + x291 + x293 + x367 + x387 + x388 + x391 ++ x405 + x428 + x430 + x431 + x444 + x446 + x450 + x451 + x476 + x493 + <= 1 + +x6 + x10 + x11 + x12 + x13 + x14 + x16 + x27 + x51 + x53 ++ x56 + x67 + x71 + x85 + x106 + x108 + x109 + x110 + x129 + x132 ++ x157 + x158 + x159 + x160 + x161 + x162 + x168 + x170 + x192 + x196 ++ x229 + x230 + x232 + x234 + x242 + x253 + x274 + x276 + x291 + x293 ++ x301 + x329 + x354 + x367 + x370 + x372 + x386 + x387 + x388 + x391 ++ x405 + x408 + x427 + x431 + x444 + x446 + x447 + x448 + x449 + x450 ++ x451 + x476 + x489 + x493 <= 1 + +x6 + x9 + x10 + x11 + x12 + x14 + x15 + x16 + x43 + x53 ++ x55 + x87 + x106 + x107 + x108 + x109 + x110 + x111 + x127 + x129 ++ x130 + x132 + x157 + x158 + x159 + x160 + x161 + x162 + x168 + x174 ++ x192 + x193 + x195 + x196 + x205 + x206 + x207 + x209 + x229 + x232 ++ x233 + x234 + x235 + x236 + x237 + x238 + x240 + x241 + x242 + x267 ++ x272 + x274 + x275 + x276 + x289 + x291 + x292 + x293 + x294 + x301 ++ x306 + x329 + x334 + x335 + x354 + x355 + x356 + x367 + x368 + x369 ++ x370 + x372 + x387 + x388 + x390 + x391 + x400 + x405 + x408 + x423 ++ x447 + x448 + x449 + x451 + x453 + x455 + x488 + x489 + x490 + x491 ++ x492 + x493 + x497 + x498 <= 1 + +x6 + x9 + x11 + x41 + x51 + x67 + x69 + x72 + x87 + x106 ++ x109 + x127 + x132 + x148 + x158 + x159 + x160 + x162 + x169 + x171 ++ x172 + x173 + x174 + x187 + x192 + x193 + x194 + x195 + x196 + x197 ++ x205 + x206 + x207 + x209 + x225 + x233 + x235 + x236 + x238 + x264 ++ x267 + x275 + x276 + x289 + x291 + x292 + x293 + x301 + x323 + x335 ++ x336 + x339 + x355 + x356 + x367 + x369 + x370 + x371 + x372 + x387 ++ x388 + x389 + x390 + x391 + x405 + x421 + x422 + x423 + x425 + x426 ++ x428 + x441 + x444 + x445 + x447 + x448 + x449 + x451 + x453 + x454 ++ x488 + x491 + x492 + x493 <= 1 + +x6 + x8 + x9 + x10 + x11 + x27 + x33 + x45 + x51 + x52 ++ x54 + x67 + x69 + x70 + x72 + x106 + x107 + x108 + x109 + x110 ++ x111 + x122 + x132 + x135 + x148 + x158 + x162 + x167 + x169 + x170 ++ x171 + x172 + x173 + x174 + x187 + x188 + x189 + x191 + x193 + x195 ++ x207 + x221 + x222 + x223 + x225 + x234 + x235 + x236 + x238 + x241 ++ x246 + x260 + x262 + x264 + x268 + x269 + x289 + x291 + x292 + x293 ++ x307 + x308 + x310 + x313 + x323 + x324 + x326 + x367 + x368 + x369 ++ x370 + x371 + x374 + x377 + x389 + x397 + x404 + x405 + x406 + x407 ++ x408 + x421 + x422 + x423 + x425 + x426 + x440 + x441 + x442 + x444 ++ x445 + x453 + x488 + x491 <= 1 + +x1 + x3 + x8 + x9 + x30 + x45 + x51 + x52 + x69 + x72 ++ x84 + x90 + x107 + x108 + x109 + x110 + x111 + x116 + x117 + x122 ++ x124 + x135 + x148 + x158 + x161 + x162 + x169 + x170 + x171 + x172 ++ x173 + x174 + x186 + x187 + x188 + x189 + x191 + x193 + x194 + x195 ++ x206 + x221 + x222 + x223 + x225 + x236 + x237 + x238 + x241 + x243 ++ x246 + x255 + x257 + x269 + x289 + x290 + x292 + x293 + x302 + x303 ++ x304 + x305 + x308 + x313 + x318 + x323 + x324 + x326 + x342 + x343 ++ x345 + x347 + x349 + x362 + x367 + x368 + x369 + x371 + x373 + x374 ++ x377 + x384 + x387 + x389 + x390 + x391 + x397 + x404 + x405 + x406 ++ x407 + x421 + x422 + x423 + x424 + x425 + x426 + x440 + x441 + x442 ++ x443 + x444 + x445 + x462 + x477 + x484 + x488 + x489 + x490 + x491 ++ x492 + x493 + x494 + x495 + x496 + x498 <= 1 + +x0 + x1 + x2 + x3 + x8 + x28 + x29 + x30 + x31 + x45 ++ x52 + x69 + x72 + x84 + x107 + x108 + x109 + x110 + x111 + x114 ++ x116 + x122 + x123 + x148 + x158 + x160 + x162 + x169 + x171 + x172 ++ x173 + x174 + x187 + x188 + x189 + x190 + x191 + x233 + x234 + x235 ++ x236 + x237 + x238 + x239 + x243 + x244 + x255 + x278 + x279 + x281 ++ x283 + x285 + x290 + x293 + x302 + x304 + x305 + x312 + x314 + x315 ++ x327 + x349 + x350 + x352 + x353 + x362 + x363 + x365 + x368 + x371 ++ x387 + x389 + x390 + x391 + x395 + x396 + x404 + x405 + x407 + x421 ++ x422 + x423 + x425 + x426 + x440 + x441 + x442 + x443 + x444 + x458 ++ x459 + x461 + x488 + x489 + x490 + x491 + x492 + x495 + x496 <= 1 + +x0 + x2 + x3 + x4 + x5 + x30 + x52 + x55 + x58 + x61 ++ x72 + x107 + x109 + x111 + x114 + x160 + x181 + x183 + x184 + x190 ++ x233 + x234 + x235 + x236 + x237 + x238 + x239 + x244 + x247 + x252 ++ x255 + x257 + x259 + x277 + x278 + x279 + x280 + x281 + x283 + x284 ++ x285 + x286 + x287 + x288 + x290 + x305 + x313 + x314 + x315 + x317 ++ x344 + x345 + x348 + x351 + x353 + x362 + x363 + x365 + x366 + x387 ++ x390 + x395 + x405 + x407 + x422 + x425 + x434 + x437 + x439 + x444 ++ x450 + x460 + x468 + x469 + x472 + x473 + x488 + x489 + x490 + x491 ++ x495 <= 1 + +x0 + x5 + x73 + x107 + x109 + x111 + x154 + x156 + x180 + x183 ++ x184 + x199 + x200 + x202 + x203 + x215 + x235 + x238 + x239 + x244 ++ x247 + x252 + x259 + x277 + x279 + x280 + x281 + x282 + x285 + x286 ++ x287 + x303 + x305 + x313 + x315 + x317 + x363 + x390 + x448 + x460 ++ x468 + x469 + x472 + x473 + x488 + x489 <= 1 + +x41 + x107 + x144 + x180 + x183 + x184 + x201 + x202 + x239 + x277 ++ x279 + x281 + x282 + x285 + x287 + x313 + x321 + x372 + x390 + x473 + <= 1 + +x10 + x20 + x24 + x27 + x55 + x106 + x109 + x151 + x157 + x158 ++ x159 + x162 + x163 + x164 + x165 + x168 + x169 + x170 + x174 + x196 ++ x227 + x228 + x229 + x237 + x239 + x240 + x241 + x242 + x291 + x292 ++ x293 + x301 + x302 + x304 + x306 + x367 + x370 + x372 + x391 + x396 ++ x450 + x489 + x493 <= 1 + +x6 + x7 + x10 + x11 + x14 + x24 + x26 + x27 + x55 + x56 ++ x67 + x79 + x80 + x82 + x83 + x85 + x106 + x107 + x108 + x109 ++ x110 + x111 + x157 + x158 + x159 + x162 + x163 + x168 + x169 + x170 ++ x196 + x209 + x227 + x228 + x229 + x230 + x232 + x233 + x234 + x236 ++ x237 + x239 + x240 + x241 + x242 + x271 + x273 + x274 + x275 + x276 ++ x289 + x291 + x293 + x300 + x301 + x302 + x304 + x306 + x367 + x370 ++ x372 + x391 + x396 + x405 + x408 + x447 + x448 + x450 + x451 + x489 ++ x493 + x495 + x497 <= 1 + +x12 + x14 + x15 + x16 + x23 + x26 + x43 + x51 + x55 + x67 ++ x72 + x79 + x82 + x83 + x87 + x106 + x107 + x108 + x109 + x110 ++ x111 + x132 + x157 + x158 + x159 + x160 + x161 + x162 + x168 + x172 ++ x174 + x196 + x205 + x207 + x209 + x227 + x228 + x232 + x233 + x234 ++ x236 + x237 + x239 + x240 + x241 + x242 + x261 + x271 + x272 + x273 ++ x275 + x276 + x289 + x291 + x292 + x293 + x294 + x301 + x304 + x306 ++ x334 + x335 + x337 + x338 + x354 + x356 + x368 + x387 + x388 + x391 ++ x408 + x445 + x447 + x449 + x450 + x489 + x490 + x492 + x495 + x497 ++ x498 <= 1 + +x16 + x23 + x41 + x43 + x51 + x55 + x67 + x69 + x72 + x82 ++ x83 + x87 + x106 + x108 + x109 + x110 + x111 + x132 + x157 + x158 ++ x162 + x169 + x170 + x171 + x172 + x174 + x189 + x192 + x193 + x196 ++ x206 + x207 + x209 + x233 + x236 + x238 + x240 + x241 + x242 + x272 ++ x275 + x276 + x289 + x291 + x292 + x293 + x294 + x307 + x334 + x336 ++ x337 + x346 + x354 + x356 + x367 + x368 + x369 + x370 + x371 + x377 ++ x387 + x389 + x391 + x422 + x423 + x425 + x445 + x447 + x488 + x489 ++ x491 + x492 + x493 + x495 + x498 <= 1 + +x11 + x27 + x30 + x48 + x51 + x54 + x69 + x72 + x82 + x84 ++ x95 + x106 + x107 + x108 + x109 + x110 + x111 + x135 + x157 + x158 ++ x162 + x166 + x169 + x170 + x171 + x172 + x173 + x174 + x187 + x188 ++ x189 + x192 + x193 + x196 + x209 + x222 + x223 + x225 + x240 + x241 ++ x243 + x244 + x246 + x257 + x289 + x291 + x292 + x293 + x294 + x303 ++ x304 + x305 + x307 + x308 + x310 + x326 + x336 + x337 + x341 + x342 ++ x343 + x346 + x367 + x368 + x369 + x370 + x371 + x374 + x377 + x387 ++ x389 + x391 + x404 + x405 + x406 + x407 + x408 + x440 + x442 + x443 ++ x445 + x477 + x488 + x489 + x490 + x491 + x492 + x493 + x495 + x498 + <= 1 + +x18 + x21 + x27 + x47 + x48 + x49 + x51 + x54 + x67 + x68 ++ x69 + x72 + x90 + x92 + x93 + x95 + x96 + x106 + x107 + x108 ++ x109 + x110 + x111 + x116 + x117 + x122 + x124 + x126 + x146 + x170 ++ x171 + x172 + x187 + x188 + x189 + x193 + x206 + x222 + x223 + x225 ++ x234 + x235 + x236 + x237 + x238 + x240 + x241 + x243 + x244 + x246 ++ x282 + x293 + x303 + x305 + x307 + x308 + x309 + x310 + x312 + x318 ++ x322 + x323 + x324 + x325 + x326 + x330 + x349 + x352 + x367 + x368 ++ x369 + x387 + x389 + x391 + x421 + x422 + x423 + x424 + x425 + x440 ++ x442 + x443 + x445 + x477 + x491 + x493 + x494 + x495 + x496 + x498 + <= 1 + +x18 + x21 + x45 + x67 + x68 + x69 + x72 + x94 + x96 + x106 ++ x107 + x108 + x109 + x111 + x121 + x123 + x124 + x126 + x158 + x171 ++ x172 + x184 + x187 + x189 + x191 + x226 + x233 + x234 + x235 + x237 ++ x238 + x240 + x241 + x243 + x244 + x255 + x260 + x282 + x290 + x309 ++ x311 + x312 + x318 + x322 + x324 + x325 + x326 + x327 + x330 + x348 ++ x349 + x352 + x353 + x365 + x366 + x387 + x389 + x391 + x421 + x422 ++ x423 + x424 + x425 + x426 + x434 + x435 + x436 + x437 + x438 + x440 ++ x459 + x477 + x488 + x489 + x490 + x491 + x493 + x496 <= 1 + +x0 + x1 + x2 + x3 + x5 + x18 + x20 + x21 + x22 + x30 ++ x31 + x58 + x61 + x84 + x98 + x111 + x123 + x125 + x126 + x169 ++ x171 + x172 + x173 + x174 + x184 + x233 + x234 + x235 + x236 + x237 ++ x238 + x243 + x247 + x255 + x280 + x282 + x283 + x284 + x285 + x286 ++ x287 + x289 + x290 + x305 + x309 + x311 + x315 + x318 + x322 + x348 ++ x349 + x350 + x352 + x353 + x361 + x362 + x363 + x364 + x366 + x387 ++ x388 + x396 + x407 + x421 + x422 + x434 + x435 + x436 + x437 + x438 ++ x439 + x441 + x443 + x444 + x468 + x495 <= 1 + +x0 + x1 + x3 + x5 + x20 + x21 + x31 + x68 + x107 + x109 ++ x110 + x111 + x171 + x172 + x183 + x184 + x203 + x215 + x233 + x237 ++ x238 + x239 + x244 + x247 + x277 + x278 + x279 + x280 + x281 + x283 ++ x285 + x287 + x288 + x289 + x290 + x305 + x328 + x348 + x351 + x361 ++ x362 + x363 + x366 + x372 + x390 + x395 + x421 + x434 + x435 + x437 ++ x439 + x441 + x443 + x460 + x468 + x471 + x473 + x489 <= 1 + +x3 + x73 + x107 + x111 + x170 + x184 + x203 + x215 + x239 + x244 ++ x247 + x252 + x277 + x280 + x281 + x286 + x328 + x348 + x390 <= 1 + +x20 + x24 + x27 + x55 + x56 + x85 + x106 + x108 + x109 + x110 ++ x111 + x147 + x157 + x158 + x160 + x162 + x163 + x164 + x165 + x169 ++ x170 + x174 + x196 + x227 + x228 + x229 + x230 + x236 + x237 + x240 ++ x241 + x242 + x272 + x290 + x291 + x292 + x293 + x301 + x302 + x304 ++ x306 + x370 + x391 + x405 + x450 <= 1 + +x7 + x8 + x23 + x24 + x27 + x55 + x56 + x83 + x85 + x106 ++ x107 + x108 + x109 + x110 + x111 + x130 + x147 + x157 + x158 + x159 ++ x160 + x162 + x163 + x169 + x170 + x174 + x196 + x209 + x227 + x228 ++ x230 + x231 + x232 + x234 + x236 + x237 + x239 + x240 + x241 + x242 ++ x271 + x273 + x274 + x275 + x289 + x290 + x291 + x292 + x293 + x301 ++ x302 + x304 + x306 + x370 + x372 + x405 + x424 + x451 + x489 + x493 + <= 1 + +x15 + x23 + x38 + x51 + x55 + x72 + x106 + x107 + x108 + x109 ++ x111 + x157 + x158 + x159 + x160 + x162 + x163 + x164 + x165 + x166 ++ x167 + x209 + x227 + x230 + x231 + x232 + x240 + x241 + x242 + x271 ++ x272 + x273 + x274 + x275 + x276 + x289 + x292 + x301 + x304 + x334 ++ x337 + x338 + x488 <= 1 + +x55 + x106 + x107 + x108 + x109 + x111 + x157 + x158 + x159 + x167 ++ x169 + x170 + x174 + x181 + x188 + x237 + x240 + x241 + x242 + x272 ++ x273 + x274 + x275 + x289 + x292 + x293 + x294 + x301 + x303 + x304 ++ x305 + x333 + x338 + x340 + x381 + x387 + x498 <= 1 + +x55 + x106 + x107 + x108 + x109 + x110 + x111 + x138 + x158 + x162 ++ x166 + x167 + x169 + x170 + x174 + x188 + x222 + x246 + x289 + x291 ++ x292 + x293 + x294 + x301 + x303 + x304 + x305 + x310 + x340 + x342 ++ x343 + x346 + x364 + x368 + x369 + x381 + x387 + x405 + x406 + x440 ++ x442 + x443 + x445 + x493 + x498 <= 1 + +x47 + x48 + x49 + x67 + x68 + x69 + x72 + x92 + x93 + x94 ++ x95 + x96 + x107 + x108 + x111 + x121 + x122 + x123 + x126 + x189 ++ x206 + x233 + x234 + x235 + x236 + x237 + x244 + x303 + x307 + x309 ++ x310 + x311 + x312 + x318 + x322 + x325 + x326 + x327 + x330 + x350 ++ x353 + x368 + x387 + x388 + x391 + x421 + x422 + x423 + x424 + x438 ++ x442 + x443 + x445 + x477 + x489 + x493 + x494 + x496 + x498 <= 1 + +x7 + x17 + x18 + x19 + x21 + x22 + x47 + x50 + x67 + x68 ++ x69 + x72 + x92 + x93 + x94 + x97 + x107 + x108 + x111 + x120 ++ x121 + x122 + x123 + x124 + x125 + x126 + x171 + x172 + x187 + x189 ++ x226 + x233 + x234 + x235 + x237 + x238 + x241 + x244 + x255 + x280 ++ x303 + x309 + x310 + x311 + x312 + x315 + x318 + x322 + x324 + x325 ++ x327 + x330 + x348 + x349 + x350 + x352 + x353 + x365 + x388 + x421 ++ x422 + x423 + x424 + x434 + x436 + x437 + x438 + x442 + x443 + x459 ++ x489 + x494 <= 1 + +x1 + x2 + x18 + x19 + x21 + x22 + x50 + x69 + x81 + x97 ++ x98 + x125 + x172 + x184 + x226 + x233 + x234 + x235 + x240 + x243 ++ x244 + x247 + x255 + x280 + x284 + x286 + x309 + x315 + x318 + x325 ++ x327 + x330 + x336 + x348 + x350 + x352 + x361 + x364 + x366 + x373 ++ x376 + x388 + x421 + x422 + x424 + x434 + x436 + x438 + x441 + x489 + <= 1 + +x17 + x18 + x19 + x20 + x21 + x22 + x68 + x107 + x109 + x110 ++ x111 + x118 + x119 + x171 + x183 + x203 + x239 + x240 + x244 + x283 ++ x288 + x290 + x376 + x378 + x390 + x421 + x434 + x435 + x439 + x471 ++ x492 <= 1 + +x17 + x18 + x19 + x20 + x22 + x107 + x110 + x244 + x288 + x290 ++ x339 + x367 + x435 + x439 + x471 + x492 <= 1 + +x23 + x24 + x27 + x55 + x56 + x106 + x108 + x109 + x130 + x157 ++ x158 + x159 + x160 + x162 + x163 + x164 + x165 + x166 + x169 + x170 ++ x174 + x196 + x228 + x229 + x230 + x231 + x237 + x240 + x241 + x242 ++ x271 + x272 + x273 + x275 + x301 + x302 + x304 + x306 + x372 + x405 + <= 1 + +x8 + x23 + x27 + x55 + x74 + x106 + x107 + x108 + x109 + x110 ++ x130 + x147 + x157 + x158 + x159 + x160 + x162 + x163 + x164 + x165 ++ x166 + x167 + x169 + x170 + x174 + x209 + x227 + x228 + x230 + x231 ++ x234 + x236 + x237 + x240 + x241 + x242 + x271 + x272 + x273 + x274 ++ x275 + x289 + x290 + x291 + x292 + x293 + x301 + x302 + x304 + x306 ++ x372 <= 1 + +x15 + x38 + x55 + x56 + x72 + x83 + x85 + x106 + x107 + x108 ++ x109 + x111 + x130 + x157 + x158 + x159 + x160 + x162 + x163 + x164 ++ x165 + x166 + x167 + x169 + x170 + x174 + x181 + x209 + x231 + x234 ++ x236 + x237 + x240 + x241 + x242 + x271 + x273 + x274 + x289 + x290 ++ x291 + x292 + x293 + x301 + x304 + x306 + x370 + x372 + x405 + x488 ++ x489 <= 1 + +x55 + x106 + x107 + x108 + x109 + x111 + x157 + x158 + x159 + x160 ++ x162 + x164 + x165 + x166 + x167 + x169 + x170 + x174 + x181 + x231 ++ x234 + x237 + x240 + x241 + x242 + x252 + x271 + x273 + x274 + x275 ++ x292 + x294 + x311 + x333 + x338 + x346 + x372 + x442 <= 1 + +x55 + x106 + x107 + x108 + x109 + x111 + x164 + x166 + x167 + x169 ++ x170 + x174 + x231 + x234 + x237 + x240 + x241 + x242 + x258 + x289 ++ x292 + x294 + x301 + x303 + x304 + x305 + x343 + x346 + x387 + x440 ++ x442 + x492 <= 1 + +x18 + x19 + x21 + x49 + x50 + x67 + x68 + x69 + x92 + x94 ++ x107 + x108 + x111 + x121 + x126 + x171 + x172 + x233 + x234 + x241 ++ x244 + x303 + x307 + x312 + x318 + x348 + x350 + x352 + x353 + x387 ++ x388 + x421 + x422 + x424 + x436 + x437 + x438 + x489 + x492 <= 1 + +x17 + x18 + x19 + x21 + x22 + x68 + x69 + x93 + x107 + x111 ++ x120 + x121 + x123 + x124 + x125 + x133 + x189 + x226 + x234 + x238 ++ x239 + x240 + x241 + x244 + x303 + x311 + x318 + x322 + x325 + x327 ++ x350 + x353 + x361 + x364 + x365 + x378 + x388 + x421 + x422 + x423 ++ x424 + x436 + x485 + x489 <= 1 + +x1 + x17 + x19 + x22 + x68 + x107 + x118 + x120 + x121 + x125 ++ x174 + x221 + x226 + x234 + x239 + x240 + x244 + x303 + x318 + x352 ++ x361 + x364 + x373 + x376 + x378 + x435 + x436 + x438 <= 1 + +x17 + x19 + x22 + x68 + x107 + x118 + x119 + x125 + x174 + x226 ++ x234 + x239 + x240 + x244 + x283 + x288 + x290 + x303 + x376 + x378 ++ x390 + x435 + x492 <= 1 + +x17 + x19 + x20 + x22 + x68 + x119 + x226 + x240 + x244 + x288 ++ x290 + x306 + x376 + x378 + x439 + x462 + x492 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 <= 1 + +x17 + x18 + x19 + x20 + x21 + x22 <= 1 + +x23 + x24 + x25 + x26 + x27 + x28 <= 1 + +x29 + x30 + x31 + x32 + x33 + x34 <= 1 + +x35 + x36 + x37 + x38 + x39 + x40 <= 1 + +x41 + x42 + x43 + x44 + x45 + x46 <= 1 + +x47 + x48 + x49 + x50 <= 1 + +x51 + x52 + x53 + x54 + x55 + x56 <= 1 + +x57 + x58 + x59 + x60 + x61 + x62 <= 1 + +x63 + x64 + x65 + x66 <= 1 + +x67 + x68 + x69 + x70 + x71 + x72 <= 1 + +x73 + x74 + x75 + x76 + x77 + x78 <= 1 + +x79 + x80 <= 1 + +x82 + x83 + x84 + x85 + x86 + x87 <= 1 + +x88 + x89 + x90 + x91 <= 1 + +x92 + x93 + x94 + x95 + x96 <= 1 + +x97 + x98 <= 1 + +x99 + x100 + x101 + x102 + x103 + x104 <= 1 + +x106 + x107 + x108 + x109 + x110 + x111 <= 1 + +x112 + x113 + x114 + x115 + x116 + x117 <= 1 + +x118 + x119 + x120 <= 1 + +x121 + x122 + x123 + x124 + x125 + x126 <= 1 + +x127 + x128 + x129 + x130 + x131 + x132 <= 1 + +x134 + x135 + x136 + x137 + x138 + x139 <= 1 + +x140 + x141 + x142 + x143 + x144 + x145 <= 1 + +x146 + x147 + x148 + x149 + x150 + x151 <= 1 + +x152 + x153 + x154 + x155 + x156 <= 1 + +x157 + x158 + x159 + x160 + x161 + x162 <= 1 + +x163 + x164 + x165 + x166 + x167 + x168 <= 1 + +x169 + x170 + x171 + x172 + x173 + x174 <= 1 + +x175 + x176 + x177 <= 1 + +x178 + x179 <= 1 + +x180 + x181 + x182 + x183 + x184 + x185 <= 1 + +x186 + x187 + x188 + x189 + x190 + x191 <= 1 + +x192 + x193 + x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 <= 1 + +x202 + x203 <= 1 + +x205 + x206 + x207 + x208 + x209 + x210 <= 1 + +x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 <= 1 + +x221 + x222 + x223 + x224 + x225 + x226 <= 1 + +x227 + x228 + x229 + x230 + x231 + x232 <= 1 + +x233 + x234 + x235 + x236 + x237 + x238 <= 1 + +x239 + x240 + x241 + x242 + x243 + x244 <= 1 + +x245 + x246 + x247 + x248 + x249 + x250 <= 1 + +x252 + x253 + x254 + x255 + x256 + x257 <= 1 + +x259 + x260 + x261 + x262 + x263 + x264 <= 1 + +x265 + x266 + x267 + x268 + x269 + x270 <= 1 + +x271 + x272 + x273 + x274 + x275 + x276 <= 1 + +x277 + x278 + x279 + x280 + x281 + x282 <= 1 + +x283 + x284 + x285 + x286 + x287 + x288 <= 1 + +x289 + x290 + x291 + x292 + x293 + x294 <= 1 + +x295 + x296 + x297 + x298 + x299 + x300 <= 1 + +x301 + x302 + x303 + x304 + x305 + x306 <= 1 + +x307 + x308 + x309 + x310 + x311 + x312 <= 1 + +x313 + x314 + x315 + x316 + x317 + x318 <= 1 + +x319 + x320 + x321 <= 1 + +x322 + x323 + x324 + x325 + x326 + x327 <= 1 + +x328 + x329 + x330 + x331 + x332 + x333 <= 1 + +x334 + x335 + x336 + x337 + x338 <= 1 + +x339 + x340 <= 1 + +x342 + x343 + x344 + x345 + x346 + x347 <= 1 + +x348 + x349 + x350 + x351 + x352 + x353 <= 1 + +x354 + x355 + x356 <= 1 + +x357 + x358 + x359 <= 1 + +x361 + x362 + x363 + x364 + x365 + x366 <= 1 + +x367 + x368 + x369 + x370 + x371 + x372 <= 1 + +x373 + x374 + x375 + x376 + x377 + x378 <= 1 + +x379 + x380 + x381 + x382 + x383 + x384 <= 1 + +x386 + x387 + x388 + x389 + x390 + x391 <= 1 + +x392 + x393 <= 1 + +x394 + x395 + x396 + x397 + x398 + x399 <= 1 + +x401 + x402 <= 1 + +x403 + x404 + x405 + x406 + x407 + x408 <= 1 + +x409 + x410 + x411 + x412 + x413 + x414 <= 1 + +x415 + x416 + x417 + x418 + x419 + x420 <= 1 + +x421 + x422 + x423 + x424 + x425 + x426 <= 1 + +x427 + x428 + x429 + x430 + x431 + x432 <= 1 + +x434 + x435 + x436 + x437 + x438 + x439 <= 1 + +x440 + x441 + x442 + x443 + x444 + x445 <= 1 + +x446 + x447 + x448 + x449 + x450 + x451 <= 1 + +x452 + x453 + x454 + x455 + x456 + x457 <= 1 + +x458 + x459 + x460 + x461 + x462 <= 1 + +x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x480 + x481 <= 1 + +x482 + x483 + x484 + x485 + x486 + x487 <= 1 + +x488 + x489 + x490 + x491 + x492 + x493 <= 1 + +x494 + x495 + x496 + x497 + x498 + x499 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 + + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0003.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0003.lp new file mode 100644 index 000000000..de7b6d0fa --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0003.lp @@ -0,0 +1,1047 @@ +max + +664.711x0 + 874.368x1 + 863.79x2 + 861.622x3 + 843.665x4 + 833.921x5 + 75.6782x6 + 228.573x7 + 292.42x8 + 222.386x9 + +184.789x10 + 183.434x11 + 354.853x12 + 359.903x13 + 334.629x14 + 243.867x15 + 243.727x16 + 1021.65x17 + 1133.27x18 + 1039.27x19 + +1035.28x20 + 1032.1x21 + 990.495x22 + 407.796x23 + 380.177x24 + 374.547x25 + 357.985x26 + 260.406x27 + 883.169x28 + 954.771x29 + +950.111x30 + 924.008x31 + 879.189x32 + 869.465x33 + 91.6969x34 + 111.088x35 + 755.704x36 + 819.235x37 + 809.012x38 + 736.688x39 + +731.902x40 + 707.528x41 + 496.412x42 + 697.914x43 + 685.545x44 + 662.74x45 + 653.767x46 + 648.64x47 + 824.051x48 + 883.394x49 + +805.303x50 + 783.684x51 + 771.958x52 + 768.184x53 + 85.3583x54 + 1099.17x55 + 1571.18x56 + 1526.51x57 + 1440x58 + 1298.53x59 + +1279.5x60 + 1442.77x61 + 1706.8x62 + 1648.63x63 + 1634.77x64 + 1607.73x65 + 1596.29x66 + 157.921x67 + 166.412x68 + 116.244x69 + +1006.9x70 + 1057.98x71 + 1052.09x72 + 1042.42x73 + 1037.06x74 + 1023.63x75 + 741.268x76 + 794.199x77 + 780.24x78 + 728.308x79 + +705.121x80 + 696.964x81 + 414.295x82 + 466.502x83 + 412.885x84 + 407.226x85 + 388.169x86 + 337.514x87 + 1031.52x88 + 976.457x89 + +904.684x90 + 809.37x91 + 807.237x92 + 768.405x93 + 247.257x94 + 368.063x95 + 317.882x96 + 246.363x97 + 316.618x98 + 365.33x99 + +354.293x100 + 334.775x101 + 211.788x102 + 201.957x103 + 71.5725x104 + 3113.31x105 + 3526.77x106 + 3477.02x107 + 3451.92x108 + 3395.41x109 + +3391.39x110 + 420.59x111 + 484.825x112 + 457.699x113 + 387.818x114 + 375.619x115 + 372.892x116 + 276.306x117 + 296.967x118 + 289.969x119 + +257.419x120 + 236.058x121 + 234.962x122 + 577.974x123 + 699.828x124 + 693.458x125 + 613.866x126 + 604.95x127 + 591.409x128 + 312.491x129 + +402.041x130 + 343.769x131 + 266.431x132 + 261.841x133 + 205.162x134 + 28.8361x135 + 287.113x136 + 387.721x137 + 359.687x138 + 327.975x139 + +291.783x140 + 257.243x141 + 733.434x142 + 1038.62x143 + 936.462x144 + 925.584x145 + 920.543x146 + 912.992x147 + 1192.43x148 + 1332.35x149 + +1302.14x150 + 1257.96x151 + 1198.96x152 + 1178.43x153 + 603.798x154 + 486.216x155 + 454.243x156 + 452.651x157 + 443.86x158 + 418.62x159 + +472.109x160 + 550.472x161 + 533.591x162 + 458.532x163 + 399.401x164 + 399.266x165 + 1044.04x166 + 1461.55x167 + 1391.08x168 + 1351.49x169 + +1337.08x170 + 1262.87x171 + 364.661x172 + 470.901x173 + 332.852x174 + 283.883x175 + 275.265x176 + 265.001x177 + 908.071x178 + 909.454x179 + +871.425x180 + 859.975x181 + 838.748x182 + 834.023x183 + 236.886x184 + 272.668x185 + 210.03x186 + 892.807x187 + 1039.56x188 + 1003.83x189 + +953.185x190 + 925.98x191 + 894.644x192 + 1265.36x193 + 1581.68x194 + 1560.89x195 + 1455.46x196 + 1439.5x197 + 1421.33x198 + 1032.42x199 + +1205.53x200 + 1078.55x201 + 1064.47x202 + 1045.86x203 + 1044.52x204 + 1446.41x205 + 1718.57x206 + 1620.01x207 + 1614.58x208 + 1607.73x209 + +1586.83x210 + 567.265x211 + 699.519x212 + 616.54x213 + 609.325x214 + 592.333x215 + 559.993x216 + 922.492x217 + 989.718x218 + 839.247x219 + +820.425x220 + 805.477x221 + 783.812x222 + 235.779x223 + 253.946x224 + 241.145x225 + 199.854x226 + 146.03x227 + 1047.73x228 + 1104.75x229 + +1065.04x230 + 1064.72x231 + 1054.53x232 + 1032.33x233 + 638.415x234 + 866.212x235 + 733.464x236 + 651.545x237 + 629.157x238 + 628.577x239 + +821.034x240 + 1032.61x241 + 982.141x242 + 976.706x243 + 976.703x244 + 954.993x245 + 381.093x246 + 537.45x247 + 487.576x248 + 382.407x249 + +325.591x250 + 301.996x251 + 79.314x252 + 681.482x253 + 834.19x254 + 777.516x255 + 777.046x256 + 752.36x257 + 734.808x258 + 578.88x259 + +616.002x260 + 589.93x261 + 552.208x262 + 549.384x263 + 539.584x264 + 907.454x265 + 1069.42x266 + 989.402x267 + 943.738x268 + 922.892x269 + +922.742x270 + 724.619x271 + 889.449x272 + 881.527x273 + 866.382x274 + 838.164x275 + 823.385x276 + 381.036x277 + 477.513x278 + 458.999x279 + +424.166x280 + 405.025x281 + 388.781x282 + 175.184x283 + 231.387x284 + 215.029x285 + 95.0804x286 + 885.807x287 + 1033.29x288 + 942.783x289 + +895.789x290 + 859.489x291 + 721.488x292 + 898.323x293 + 1327.71x294 + 1308.46x295 + 1305.93x296 + 1223.37x297 + 1223.29x298 + 1138.19x299 + +1185.82x300 + 1142.34x301 + 1133.81x302 + 1122.34x303 + 1120.03x304 + 1880.32x305 + 2120.04x306 + 2091.88x307 + 2032.72x308 + 2007.51x309 + +2001.77x310 + 693.462x311 + 961.833x312 + 903.816x313 + 868.388x314 + 843.196x315 + 837.051x316 + 507.1x317 + 615.956x318 + 581.139x319 + +579.25x320 + 537.578x321 + 527.258x322 + 1188.82x323 + 1440.92x324 + 1412.63x325 + 1330.54x326 + 1323.18x327 + 1322.73x328 + 488.438x329 + +709.443x330 + 679.125x331 + 676.636x332 + 638.658x333 + 599.495x334 + 174.263x335 + 145.922x336 + 470.035x337 + 531.784x338 + 520.84x339 + +509.928x340 + 507.954x341 + 445.269x342 + 651.951x343 + 743.553x344 + 713.925x345 + 700.332x346 + 688.949x347 + 670.765x348 + 119.942x349 + +167.914x350 + 137.226x351 + 234.594x352 + 172.723x353 + 158.857x354 + 91.9924x355 + 118.447x356 + 405.021x357 + 454.966x358 + 386.157x359 + +265.688x360 + 257.728x361 + 781.485x362 + 913.18x363 + 883.056x364 + 816.337x365 + 778.151x366 + 765.794x367 + 123.957x368 + 119.006x369 + +1392.13x370 + 1793.88x371 + 1778.87x372 + 1748.11x373 + 1681.63x374 + 1620.46x375 + 491.142x376 + 595.753x377 + 570.396x378 + 548.946x379 + +488.251x380 + 479.98x381 + 199.128x382 + 259.372x383 + 191.306x384 + 142.838x385 + 138.984x386 + 1157.71x387 + 1209.99x388 + 1143.78x389 + +1124.04x390 + 1118.82x391 + 1105.87x392 + 800.117x393 + 764.225x394 + 708.946x395 + 707.022x396 + 685.719x397 + 685.291x398 + 1135.57x399 + +1217.73x400 + 1167.6x401 + 1141.67x402 + 1092.7x403 + 1085.23x404 + 707.274x405 + 780.466x406 + 755.309x407 + 747.148x408 + 746.28x409 + +710.616x410 + 411.972x411 + 579.094x412 + 578.805x413 + 547.172x414 + 496.67x415 + 467.534x416 + 634.569x417 + 766.574x418 + 731.677x419 + +681.497x420 + 645.014x421 + 631.993x422 + 1565.49x423 + 1741.16x424 + 1691.1x425 + 1622.88x426 + 1589.75x427 + 1537.46x428 + 190.951x429 + +168.076x430 + 209.38x431 + 282.883x432 + 268.417x433 + 241.941x434 + 194.346x435 + 150.019x436 + 496.866x437 + 681.207x438 + 575.375x439 + +551.13x440 + 549.403x441 + 496.136x442 + 186.462x443 + 220.629x444 + 1278.53x445 + 1500.99x446 + 1456.82x447 + 1374.04x448 + 1361.9x449 + +1361.42x450 + 534.379x451 + 785.11x452 + 585.307x453 + 563.39x454 + 533.596x455 + 454.614x456 + 396.291x457 + 510.338x458 + 502.956x459 + +498.244x460 + 490.989x461 + 478.416x462 + 321.083x463 + 273.744x464 + 251.975x465 + 240.277x466 + 222.679x467 + 199.104x468 + 178.032x469 + +137.62x470 + 139.494x471 + 1636.02x472 + 2007.98x473 + 1979.36x474 + 1936.08x475 + 1860.41x476 + 1812.28x477 + 41.6528x478 + 39.6101x479 + +760.667x480 + 1043.09x481 + 952.323x482 + 942.317x483 + 918.094x484 + 903.345x485 + 733.183x486 + 958.631x487 + 955.462x488 + 891.897x489 + +851.791x490 + 808.746x491 + 20.7567x492 + 506.49x493 + 631.022x494 + 620.091x495 + 587.293x496 + 559.968x497 + 559.53x498 + 680.269x499 + +719.424x500 + 714.541x501 + 705.623x502 + 650.805x503 + 639.902x504 + +st + +x23 + x24 + x25 + x62 + x105 + x106 + x107 + x108 + x109 + x115 ++ x213 + x255 + x288 + x315 + x321 + x322 + x371 + x373 + x395 + x397 ++ x398 + x401 + x424 + x426 + x427 + x445 + x448 + x450 + x463 + x466 ++ x473 + x475 + x482 + x493 + x496 + x498 <= 1 + +x23 + x24 + x25 + x26 + x59 + x61 + x62 + x63 + x65 + x66 ++ x74 + x80 + x88 + x93 + x105 + x106 + x107 + x108 + x109 + x110 ++ x115 + x123 + x128 + x167 + x181 + x193 + x194 + x196 + x198 + x228 ++ x229 + x232 + x247 + x249 + x250 + x251 + x255 + x288 + x291 + x305 ++ x306 + x308 + x309 + x310 + x317 + x320 + x321 + x322 + x339 + x371 ++ x373 + x393 + x394 + x395 + x396 + x397 + x398 + x399 + x401 + x402 ++ x403 + x424 + x425 + x426 + x427 + x437 + x438 + x439 + x445 + x448 ++ x450 + x466 + x467 + x473 + x475 + x482 + x493 + x494 + x496 + x497 ++ x498 <= 1 + +x23 + x24 + x25 + x26 + x56 + x57 + x59 + x61 + x62 + x63 ++ x65 + x78 + x80 + x90 + x105 + x106 + x108 + x115 + x123 + x125 ++ x128 + x158 + x167 + x191 + x193 + x194 + x196 + x198 + x201 + x212 ++ x228 + x229 + x230 + x231 + x232 + x233 + x250 + x251 + x255 + x257 ++ x266 + x269 + x288 + x296 + x305 + x306 + x317 + x318 + x320 + x321 ++ x322 + x337 + x339 + x342 + x371 + x373 + x378 + x393 + x394 + x395 ++ x396 + x397 + x398 + x399 + x401 + x402 + x403 + x424 + x437 + x438 ++ x439 + x440 + x445 + x448 + x450 + x496 + x497 + x498 <= 1 + +x21 + x23 + x25 + x26 + x27 + x56 + x57 + x61 + x62 + x78 ++ x80 + x89 + x90 + x105 + x106 + x108 + x111 + x113 + x115 + x116 ++ x123 + x125 + x128 + x150 + x158 + x167 + x191 + x193 + x228 + x230 ++ x231 + x232 + x233 + x251 + x255 + x257 + x269 + x293 + x296 + x297 ++ x298 + x305 + x306 + x309 + x315 + x317 + x318 + x320 + x322 + x341 ++ x342 + x370 + x371 + x373 + x378 + x393 + x394 + x395 + x396 + x397 ++ x398 + x407 + x423 + x424 + x428 + x437 + x440 + x442 + x445 + x448 ++ x449 + x475 + x496 <= 1 + +x26 + x42 + x61 + x62 + x105 + x106 + x108 + x111 + x113 + x114 ++ x116 + x123 + x125 + x158 + x167 + x170 + x191 + x193 + x194 + x195 ++ x197 + x228 + x239 + x251 + x257 + x293 + x296 + x297 + x298 + x305 ++ x306 + x309 + x315 + x317 + x318 + x320 + x322 + x341 + x342 + x370 ++ x373 + x394 + x396 + x397 + x398 + x407 + x423 + x424 + x428 + x437 ++ x440 + x442 + x445 + x475 + x483 + x489 <= 1 + +x22 + x31 + x42 + x55 + x56 + x105 + x106 + x108 + x111 + x113 ++ x114 + x116 + x123 + x125 + x127 + x143 + x158 + x191 + x242 + x244 ++ x245 + x257 + x293 + x297 + x298 + x306 + x317 + x318 + x322 + x326 ++ x327 + x342 + x370 + x373 + x389 + x397 + x398 + x405 + x407 + x408 ++ x409 + x423 + x424 + x427 + x428 + x440 + x442 + x445 + x475 + x489 ++ x490 <= 1 + +x10 + x31 + x55 + x56 + x105 + x106 + x108 + x143 + x144 + x191 ++ x197 + x241 + x242 + x244 + x273 + x293 + x294 + x297 + x298 + x304 ++ x316 + x317 + x318 + x323 + x326 + x327 + x370 + x373 + x380 + x381 ++ x405 + x406 + x407 + x408 + x409 + x410 + x423 + x424 + x428 + x486 ++ x489 + x490 <= 1 + +x55 + x83 + x105 + x143 + x191 + x194 + x197 + x242 + x293 + x297 ++ x298 + x304 + x316 + x400 + x406 + x407 + x409 + x423 + x424 + x428 + <= 1 + +x11 + x82 + x83 + x84 + x85 + x87 + x104 + x124 + x143 + x144 ++ x149 + x185 + x190 + x194 + x197 + x241 + x242 + x243 + x244 + x264 ++ x297 + x304 + x314 + x328 + x405 + x424 + x489 <= 1 + +x38 + x85 + x144 + x169 + x222 + x242 + x244 + x299 + x304 + x310 ++ x328 + x378 + x423 + x427 + x473 + x476 <= 1 + +x57 + x61 + x62 + x64 + x65 + x66 + x105 + x106 + x195 + x196 ++ x198 + x265 + x267 + x270 + x294 + x399 + x401 + x403 + x425 + x446 ++ x448 + x449 + x464 <= 1 + +x19 + x20 + x24 + x25 + x49 + x56 + x57 + x58 + x61 + x62 ++ x63 + x64 + x65 + x66 + x74 + x75 + x76 + x77 + x78 + x79 ++ x80 + x93 + x105 + x106 + x107 + x108 + x109 + x110 + x111 + x115 ++ x124 + x128 + x167 + x178 + x179 + x180 + x181 + x183 + x193 + x194 ++ x195 + x196 + x197 + x198 + x210 + x228 + x229 + x230 + x231 + x232 ++ x233 + x246 + x247 + x248 + x249 + x251 + x253 + x255 + x256 + x257 ++ x269 + x288 + x291 + x305 + x306 + x308 + x309 + x310 + x317 + x321 ++ x322 + x324 + x327 + x339 + x341 + x349 + x351 + x371 + x373 + x387 ++ x390 + x395 + x399 + x401 + x402 + x403 + x424 + x425 + x426 + x427 ++ x439 + x445 + x448 + x449 + x450 + x466 + x467 + x473 + x474 + x475 ++ x482 + x483 + x493 + x494 + x496 + x497 + x498 <= 1 + +x17 + x18 + x20 + x21 + x49 + x56 + x57 + x61 + x62 + x63 ++ x64 + x65 + x66 + x72 + x74 + x75 + x76 + x78 + x79 + x80 ++ x84 + x89 + x90 + x93 + x105 + x106 + x107 + x108 + x109 + x110 ++ x116 + x128 + x167 + x179 + x180 + x188 + x193 + x194 + x196 + x198 ++ x201 + x228 + x229 + x230 + x231 + x232 + x233 + x246 + x248 + x249 ++ x250 + x251 + x255 + x257 + x266 + x269 + x288 + x291 + x305 + x306 ++ x308 + x309 + x310 + x319 + x321 + x322 + x327 + x337 + x339 + x341 ++ x342 + x364 + x371 + x372 + x373 + x378 + x393 + x394 + x395 + x396 ++ x397 + x398 + x399 + x401 + x402 + x403 + x425 + x428 + x437 + x438 ++ x439 + x440 + x445 + x446 + x448 + x450 + x473 + x474 + x475 + x493 ++ x494 + x496 + x497 + x498 <= 1 + +x17 + x21 + x23 + x26 + x27 + x55 + x56 + x57 + x58 + x72 ++ x77 + x78 + x79 + x80 + x88 + x89 + x90 + x93 + x105 + x106 ++ x107 + x108 + x109 + x110 + x111 + x112 + x113 + x114 + x116 + x120 ++ x128 + x150 + x154 + x158 + x179 + x180 + x191 + x193 + x194 + x195 ++ x196 + x198 + x229 + x230 + x231 + x232 + x233 + x255 + x257 + x269 ++ x293 + x295 + x296 + x305 + x306 + x309 + x315 + x318 + x320 + x325 ++ x327 + x337 + x338 + x339 + x341 + x342 + x370 + x371 + x372 + x373 ++ x374 + x375 + x393 + x394 + x395 + x396 + x398 + x399 + x445 + x446 ++ x448 + x449 + x450 + x473 + x496 + x497 <= 1 + +x6 + x27 + x57 + x66 + x75 + x89 + x91 + x93 + x105 + x106 ++ x108 + x111 + x112 + x113 + x114 + x116 + x125 + x149 + x158 + x167 ++ x170 + x180 + x193 + x194 + x195 + x197 + x229 + x230 + x231 + x232 ++ x233 + x239 + x293 + x295 + x296 + x297 + x298 + x315 + x320 + x325 ++ x326 + x327 + x337 + x338 + x341 + x342 + x370 + x371 + x373 + x374 ++ x375 + x393 + x394 + x396 + x397 + x423 + x428 + x440 + x442 + x445 ++ x472 + x475 + x489 + x493 <= 1 + +x7 + x8 + x10 + x22 + x42 + x55 + x56 + x105 + x106 + x108 ++ x110 + x116 + x123 + x124 + x125 + x127 + x144 + x191 + x197 + x207 ++ x240 + x241 + x242 + x243 + x244 + x245 + x293 + x294 + x297 + x298 ++ x304 + x307 + x323 + x326 + x327 + x370 + x376 + x380 + x397 + x423 ++ x424 + x427 + x428 + x442 + x445 + x475 <= 1 + +x7 + x8 + x9 + x10 + x37 + x105 + x106 + x108 + x110 + x123 ++ x124 + x127 + x143 + x144 + x149 + x185 + x191 + x194 + x197 + x207 ++ x240 + x241 + x242 + x243 + x244 + x245 + x273 + x293 + x294 + x297 ++ x298 + x303 + x304 + x316 + x318 + x323 + x326 + x327 + x334 + x370 ++ x372 + x374 + x376 + x379 + x380 + x381 + x405 + x406 + x407 + x408 ++ x409 + x410 + x423 + x428 + x442 + x486 + x489 + x490 <= 1 + +x7 + x9 + x10 + x11 + x37 + x38 + x124 + x127 + x143 + x144 ++ x149 + x190 + x191 + x194 + x197 + x241 + x242 + x243 + x244 + x245 ++ x273 + x297 + x298 + x304 + x311 + x314 + x316 + x328 + x370 + x374 ++ x375 + x376 + x377 + x378 + x379 + x380 + x381 + x405 + x406 + x408 ++ x409 + x410 + x423 + x425 + x428 + x442 + x446 + x486 + x489 + x490 + <= 1 + +x7 + x11 + x37 + x38 + x82 + x83 + x84 + x85 + x86 + x87 ++ x124 + x142 + x143 + x144 + x149 + x169 + x190 + x194 + x240 + x241 ++ x242 + x243 + x244 + x245 + x264 + x273 + x274 + x297 + x298 + x302 ++ x304 + x314 + x328 + x374 + x376 + x377 + x378 + x379 + x381 + x405 ++ x406 + x408 + x409 + x410 + x423 + x428 + x489 + x490 <= 1 + +x38 + x82 + x83 + x85 + x143 + x144 + x149 + x169 + x190 + x194 ++ x220 + x222 + x241 + x242 + x243 + x244 + x274 + x298 + x299 + x304 ++ x308 + x328 + x374 + x378 + x405 + x406 + x408 + x409 + x423 + x473 ++ x476 + x489 + x490 + x491 <= 1 + +x5 + x56 + x57 + x61 + x62 + x64 + x65 + x66 + x70 + x73 ++ x74 + x76 + x77 + x78 + x86 + x105 + x106 + x108 + x110 + x124 ++ x180 + x181 + x189 + x193 + x194 + x195 + x196 + x198 + x202 + x208 ++ x210 + x224 + x228 + x231 + x247 + x253 + x260 + x265 + x266 + x267 ++ x268 + x269 + x270 + x294 + x295 + x305 + x309 + x321 + x340 + x387 ++ x388 + x399 + x401 + x402 + x403 + x424 + x425 + x426 + x427 + x438 ++ x446 + x448 + x449 + x463 + x464 + x474 + x475 + x481 + x483 + x493 ++ x495 <= 1 + +x2 + x3 + x4 + x20 + x21 + x56 + x57 + x58 + x61 + x62 ++ x63 + x64 + x65 + x66 + x72 + x73 + x74 + x75 + x76 + x77 ++ x78 + x79 + x89 + x93 + x105 + x106 + x107 + x108 + x109 + x110 ++ x112 + x115 + x124 + x128 + x178 + x180 + x181 + x183 + x193 + x194 ++ x195 + x196 + x197 + x198 + x200 + x206 + x208 + x210 + x229 + x246 ++ x247 + x248 + x249 + x250 + x253 + x255 + x256 + x257 + x265 + x266 ++ x267 + x268 + x269 + x270 + x279 + x289 + x291 + x294 + x295 + x305 ++ x306 + x308 + x309 + x310 + x321 + x324 + x339 + x340 + x341 + x344 ++ x349 + x350 + x371 + x373 + x387 + x388 + x390 + x395 + x399 + x400 ++ x401 + x402 + x403 + x424 + x425 + x426 + x427 + x438 + x439 + x440 ++ x445 + x446 + x448 + x449 + x450 + x463 + x464 + x467 + x473 + x474 ++ x475 + x481 + x482 + x483 + x485 + x493 + x494 + x498 <= 1 + +x17 + x18 + x19 + x20 + x21 + x22 + x24 + x27 + x49 + x56 ++ x57 + x58 + x60 + x61 + x62 + x63 + x64 + x65 + x66 + x72 ++ x73 + x74 + x75 + x76 + x77 + x78 + x79 + x80 + x81 + x88 ++ x89 + x90 + x93 + x105 + x106 + x107 + x108 + x109 + x110 + x111 ++ x112 + x115 + x124 + x128 + x162 + x167 + x168 + x171 + x181 + x182 ++ x188 + x193 + x194 + x195 + x196 + x197 + x198 + x206 + x207 + x208 ++ x209 + x210 + x228 + x229 + x230 + x231 + x232 + x233 + x246 + x250 ++ x255 + x256 + x257 + x266 + x268 + x269 + x277 + x278 + x280 + x288 ++ x291 + x293 + x295 + x305 + x306 + x308 + x313 + x317 + x319 + x321 ++ x327 + x339 + x340 + x351 + x364 + x371 + x372 + x373 + x387 + x390 ++ x395 + x396 + x398 + x399 + x400 + x401 + x402 + x403 + x424 + x425 ++ x426 + x427 + x428 + x438 + x439 + x440 + x445 + x446 + x447 + x448 ++ x449 + x450 + x467 + x473 + x474 + x475 + x483 + x493 + x494 + x497 ++ x498 <= 1 + +x0 + x17 + x21 + x27 + x40 + x55 + x56 + x57 + x58 + x61 ++ x62 + x63 + x64 + x65 + x66 + x76 + x77 + x78 + x79 + x81 ++ x88 + x89 + x90 + x91 + x93 + x105 + x106 + x107 + x108 + x109 ++ x110 + x112 + x114 + x124 + x125 + x127 + x128 + x149 + x150 + x167 ++ x168 + x179 + x180 + x182 + x188 + x193 + x195 + x197 + x200 + x201 ++ x210 + x228 + x229 + x230 + x231 + x232 + x233 + x246 + x250 + x257 ++ x269 + x277 + x278 + x280 + x282 + x291 + x293 + x295 + x296 + x297 ++ x305 + x306 + x307 + x308 + x309 + x310 + x313 + x315 + x318 + x319 ++ x320 + x324 + x325 + x327 + x337 + x338 + x340 + x371 + x373 + x375 ++ x393 + x394 + x395 + x396 + x398 + x403 + x425 + x426 + x427 + x428 ++ x438 + x439 + x440 + x445 + x446 + x447 + x448 + x449 + x450 + x473 ++ x475 + x477 + x483 + x484 + x485 + x494 + x497 <= 1 + +x6 + x17 + x40 + x55 + x56 + x57 + x58 + x61 + x62 + x63 ++ x65 + x66 + x81 + x90 + x91 + x92 + x93 + x105 + x106 + x107 ++ x108 + x109 + x110 + x112 + x113 + x114 + x125 + x127 + x149 + x151 ++ x158 + x164 + x167 + x179 + x180 + x182 + x184 + x188 + x193 + x195 ++ x197 + x207 + x229 + x245 + x257 + x280 + x282 + x293 + x294 + x295 ++ x296 + x297 + x298 + x300 + x304 + x305 + x308 + x315 + x320 + x326 ++ x327 + x328 + x337 + x338 + x370 + x371 + x373 + x374 + x375 + x392 ++ x393 + x394 + x396 + x397 + x425 + x426 + x427 + x428 + x445 + x473 ++ x475 + x484 + x489 <= 1 + +x8 + x9 + x17 + x40 + x56 + x57 + x62 + x63 + x66 + x88 ++ x90 + x91 + x93 + x105 + x106 + x108 + x110 + x112 + x123 + x125 ++ x127 + x151 + x167 + x168 + x182 + x193 + x195 + x197 + x204 + x207 ++ x229 + x245 + x293 + x294 + x295 + x296 + x297 + x298 + x304 + x307 ++ x308 + x315 + x323 + x324 + x326 + x327 + x328 + x370 + x374 + x375 ++ x380 + x407 + x423 + x424 + x425 + x426 + x427 + x428 + x445 + x447 ++ x473 + x475 + x484 <= 1 + +x9 + x40 + x58 + x63 + x66 + x87 + x105 + x106 + x108 + x110 ++ x124 + x127 + x185 + x240 + x241 + x242 + x243 + x244 + x245 + x264 ++ x273 + x293 + x303 + x304 + x307 + x308 + x309 + x311 + x312 + x314 ++ x315 + x316 + x323 + x325 + x326 + x327 + x328 + x334 + x370 + x374 ++ x375 + x380 + x381 + x405 + x406 + x407 + x408 + x409 + x410 + x423 ++ x425 + x426 + x428 + x442 + x486 + x489 + x490 + x491 <= 1 + +x36 + x37 + x38 + x40 + x58 + x66 + x84 + x87 + x105 + x106 ++ x108 + x110 + x143 + x190 + x191 + x240 + x241 + x242 + x243 + x244 ++ x245 + x264 + x273 + x274 + x297 + x298 + x307 + x308 + x311 + x314 ++ x316 + x323 + x326 + x328 + x370 + x374 + x375 + x376 + x377 + x379 ++ x380 + x381 + x405 + x406 + x407 + x408 + x409 + x410 + x423 + x425 ++ x428 + x442 + x446 + x486 + x489 + x490 <= 1 + +x11 + x36 + x38 + x40 + x82 + x83 + x84 + x85 + x86 + x87 ++ x142 + x143 + x144 + x149 + x150 + x169 + x208 + x240 + x241 + x242 ++ x243 + x244 + x245 + x264 + x274 + x297 + x298 + x299 + x302 + x304 ++ x308 + x309 + x328 + x335 + x347 + x370 + x376 + x377 + x379 + x381 ++ x405 + x406 + x408 + x409 + x410 + x423 + x428 + x446 + x466 + x476 ++ x486 + x490 + x491 <= 1 + +x36 + x38 + x40 + x143 + x144 + x149 + x169 + x208 + x220 + x241 ++ x243 + x274 + x298 + x299 + x308 + x328 + x335 + x336 + x347 + x359 ++ x365 + x377 + x379 + x389 + x406 + x408 + x410 + x423 + x428 + x473 ++ x476 + x489 + x491 + x500 <= 1 + +x1 + x2 + x5 + x17 + x18 + x19 + x20 + x21 + x46 + x56 ++ x57 + x60 + x61 + x62 + x63 + x64 + x65 + x66 + x70 + x72 ++ x73 + x74 + x76 + x77 + x78 + x81 + x89 + x105 + x106 + x108 ++ x110 + x137 + x167 + x171 + x189 + x194 + x195 + x198 + x200 + x202 ++ x206 + x208 + x210 + x214 + x223 + x224 + x225 + x228 + x231 + x233 ++ x237 + x247 + x248 + x253 + x256 + x265 + x266 + x267 + x269 + x270 ++ x283 + x284 + x289 + x305 + x319 + x387 + x388 + x390 + x401 + x402 ++ x403 + x425 + x426 + x429 + x430 + x438 + x448 + x449 + x450 + x452 ++ x463 + x465 + x481 + x483 + x495 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 + x17 + x18 + x19 + x20 ++ x21 + x46 + x56 + x57 + x58 + x61 + x63 + x64 + x65 + x66 ++ x72 + x73 + x74 + x75 + x76 + x77 + x79 + x81 + x88 + x89 ++ x92 + x105 + x106 + x107 + x108 + x110 + x137 + x162 + x164 + x168 ++ x171 + x178 + x179 + x180 + x181 + x183 + x189 + x194 + x195 + x196 ++ x198 + x200 + x205 + x206 + x207 + x208 + x209 + x210 + x223 + x224 ++ x225 + x236 + x246 + x247 + x248 + x256 + x265 + x266 + x267 + x268 ++ x269 + x270 + x277 + x278 + x279 + x281 + x283 + x284 + x285 + x289 ++ x291 + x294 + x295 + x302 + x305 + x308 + x309 + x310 + x319 + x331 ++ x344 + x350 + x371 + x372 + x373 + x387 + x388 + x390 + x399 + x400 ++ x402 + x403 + x404 + x424 + x425 + x426 + x427 + x430 + x439 + x445 ++ x446 + x447 + x448 + x449 + x450 + x452 + x464 + x465 + x474 + x481 ++ x483 + x484 + x485 + x494 + x495 <= 1 + +x0 + x1 + x2 + x3 + x4 + x17 + x18 + x19 + x20 + x21 ++ x22 + x49 + x60 + x61 + x63 + x64 + x65 + x66 + x72 + x73 ++ x74 + x75 + x76 + x77 + x78 + x79 + x81 + x88 + x89 + x92 ++ x93 + x105 + x106 + x107 + x108 + x109 + x110 + x160 + x161 + x162 ++ x164 + x167 + x171 + x178 + x179 + x181 + x182 + x183 + x189 + x194 ++ x195 + x196 + x198 + x200 + x206 + x207 + x208 + x209 + x210 + x225 ++ x228 + x229 + x230 + x231 + x232 + x233 + x253 + x256 + x257 + x266 ++ x267 + x268 + x270 + x277 + x278 + x281 + x284 + x285 + x287 + x288 ++ x289 + x291 + x294 + x295 + x300 + x302 + x305 + x306 + x307 + x308 ++ x309 + x310 + x312 + x315 + x319 + x324 + x325 + x326 + x327 + x328 ++ x332 + x338 + x340 + x364 + x371 + x372 + x373 + x374 + x387 + x388 ++ x389 + x390 + x391 + x392 + x399 + x400 + x401 + x402 + x403 + x404 ++ x424 + x425 + x426 + x427 + x438 + x439 + x447 + x448 + x449 + x450 ++ x465 + x474 + x475 + x477 + x481 + x483 + x484 + x485 + x494 + x495 + <= 1 + +x0 + x17 + x21 + x55 + x56 + x61 + x62 + x63 + x65 + x66 ++ x72 + x74 + x75 + x105 + x106 + x107 + x108 + x109 + x110 + x128 ++ x138 + x150 + x160 + x161 + x162 + x163 + x164 + x165 + x178 + x179 ++ x182 + x183 + x193 + x194 + x195 + x196 + x197 + x198 + x200 + x201 ++ x204 + x205 + x206 + x207 + x208 + x209 + x210 + x228 + x229 + x230 ++ x231 + x232 + x233 + x256 + x258 + x267 + x269 + x277 + x278 + x280 ++ x282 + x294 + x295 + x296 + x300 + x303 + x305 + x306 + x307 + x308 ++ x309 + x310 + x312 + x313 + x315 + x324 + x325 + x326 + x327 + x328 ++ x340 + x346 + x364 + x371 + x373 + x374 + x387 + x388 + x389 + x390 ++ x391 + x392 + x422 + x425 + x426 + x445 + x446 + x447 + x448 + x449 ++ x450 + x458 + x465 + x473 + x474 + x475 + x477 + x480 + x481 + x484 ++ x485 + x488 + x497 + x503 <= 1 + +x5 + x40 + x52 + x55 + x56 + x57 + x58 + x60 + x62 + x65 ++ x70 + x75 + x88 + x89 + x90 + x91 + x92 + x93 + x105 + x106 ++ x107 + x108 + x109 + x110 + x113 + x114 + x125 + x127 + x128 + x144 ++ x149 + x150 + x151 + x160 + x161 + x164 + x167 + x168 + x171 + x182 ++ x184 + x188 + x193 + x195 + x196 + x197 + x198 + x199 + x200 + x201 ++ x203 + x204 + x206 + x207 + x208 + x209 + x210 + x224 + x245 + x272 ++ x280 + x282 + x294 + x295 + x296 + x300 + x303 + x305 + x306 + x307 ++ x308 + x309 + x313 + x315 + x324 + x325 + x326 + x327 + x328 + x337 ++ x338 + x340 + x370 + x371 + x372 + x373 + x374 + x375 + x387 + x392 ++ x393 + x394 + x422 + x423 + x425 + x426 + x427 + x445 + x446 + x447 ++ x450 + x452 + x472 + x473 + x475 + x477 + x480 + x484 + x489 + x503 + <= 1 + +x22 + x52 + x53 + x55 + x56 + x57 + x58 + x88 + x89 + x90 ++ x91 + x105 + x106 + x107 + x108 + x109 + x110 + x151 + x168 + x193 ++ x195 + x196 + x197 + x201 + x204 + x207 + x209 + x229 + x237 + x240 ++ x272 + x280 + x294 + x296 + x302 + x303 + x305 + x306 + x307 + x308 ++ x309 + x311 + x314 + x315 + x316 + x323 + x324 + x325 + x326 + x327 ++ x328 + x370 + x371 + x372 + x373 + x374 + x375 + x393 + x423 + x425 ++ x426 + x445 + x447 + x473 + x475 + x491 + x503 <= 1 + +x55 + x57 + x58 + x90 + x91 + x105 + x106 + x108 + x110 + x127 ++ x142 + x185 + x197 + x204 + x240 + x245 + x264 + x294 + x302 + x303 ++ x304 + x307 + x308 + x309 + x311 + x312 + x314 + x315 + x316 + x323 ++ x324 + x325 + x326 + x327 + x328 + x355 + x370 + x371 + x374 + x375 ++ x423 + x425 + x426 + x428 + x447 + x491 + x499 + x503 <= 1 + +x8 + x55 + x58 + x86 + x105 + x106 + x108 + x110 + x142 + x226 ++ x243 + x296 + x302 + x304 + x308 + x309 + x311 + x312 + x314 + x324 ++ x325 + x326 + x328 + x355 + x356 + x370 + x371 + x375 + x377 + x410 ++ x441 + x446 + x447 + x490 + x491 + x499 + x503 <= 1 + +x40 + x49 + x58 + x82 + x86 + x142 + x144 + x149 + x186 + x240 ++ x243 + x298 + x299 + x302 + x304 + x308 + x309 + x311 + x312 + x314 ++ x328 + x356 + x376 + x377 + x379 + x410 + x446 + x486 + x490 + x491 + <= 1 + +x36 + x38 + x108 + x143 + x144 + x169 + x170 + x220 + x241 + x260 ++ x299 + x336 + x347 + x389 + x423 + x428 + x492 + x500 <= 1 + +x1 + x2 + x3 + x4 + x5 + x17 + x18 + x19 + x20 + x46 ++ x57 + x60 + x61 + x63 + x64 + x65 + x66 + x68 + x70 + x71 ++ x72 + x73 + x74 + x76 + x105 + x106 + x107 + x108 + x109 + x110 ++ x136 + x137 + x139 + x140 + x167 + x178 + x183 + x189 + x194 + x196 ++ x198 + x202 + x205 + x206 + x207 + x208 + x209 + x210 + x214 + x227 ++ x228 + x229 + x230 + x231 + x232 + x233 + x236 + x253 + x256 + x265 ++ x266 + x267 + x268 + x270 + x281 + x289 + x293 + x305 + x307 + x312 ++ x331 + x344 + x388 + x399 + x402 + x403 + x424 + x425 + x426 + x427 ++ x429 + x448 + x449 + x474 + x481 + x483 + x495 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 + x17 + x18 + x19 + x20 ++ x22 + x46 + x61 + x64 + x65 + x66 + x70 + x71 + x72 + x73 ++ x74 + x75 + x77 + x79 + x81 + x92 + x105 + x106 + x107 + x108 ++ x109 + x110 + x136 + x137 + x138 + x139 + x167 + x171 + x173 + x178 ++ x179 + x180 + x181 + x182 + x183 + x189 + x194 + x195 + x196 + x198 ++ x202 + x205 + x206 + x207 + x208 + x209 + x210 + x212 + x223 + x227 ++ x228 + x229 + x230 + x231 + x232 + x233 + x236 + x248 + x253 + x254 ++ x256 + x258 + x267 + x268 + x270 + x277 + x279 + x281 + x283 + x285 ++ x286 + x287 + x289 + x294 + x305 + x308 + x312 + x319 + x325 + x331 ++ x332 + x343 + x344 + x347 + x371 + x372 + x374 + x387 + x388 + x390 ++ x391 + x392 + x399 + x400 + x402 + x403 + x404 + x424 + x425 + x426 ++ x427 + x445 + x446 + x447 + x448 + x449 + x450 + x455 + x474 + x475 ++ x480 + x481 + x483 + x485 + x495 <= 1 + +x0 + x3 + x17 + x18 + x19 + x20 + x22 + x49 + x51 + x58 ++ x59 + x60 + x62 + x66 + x70 + x71 + x72 + x73 + x76 + x77 ++ x79 + x81 + x88 + x92 + x105 + x106 + x107 + x108 + x109 + x110 ++ x137 + x138 + x162 + x167 + x168 + x171 + x173 + x178 + x179 + x180 ++ x181 + x182 + x183 + x189 + x195 + x196 + x198 + x205 + x206 + x207 ++ x208 + x209 + x210 + x212 + x227 + x253 + x254 + x256 + x265 + x266 ++ x267 + x268 + x270 + x278 + x279 + x281 + x288 + x289 + x291 + x294 ++ x305 + x306 + x307 + x308 + x309 + x310 + x312 + x313 + x319 + x325 ++ x332 + x338 + x344 + x345 + x346 + x347 + x348 + x364 + x372 + x373 ++ x387 + x388 + x389 + x390 + x391 + x399 + x400 + x401 + x402 + x403 ++ x404 + x424 + x425 + x426 + x427 + x446 + x447 + x449 + x450 + x452 ++ x453 + x454 + x455 + x458 + x474 + x475 + x477 + x480 + x481 + x482 ++ x483 + x484 + x485 + x495 <= 1 + +x0 + x19 + x20 + x21 + x22 + x48 + x49 + x51 + x52 + x53 ++ x55 + x58 + x59 + x60 + x62 + x63 + x64 + x66 + x70 + x71 ++ x73 + x74 + x75 + x79 + x88 + x92 + x106 + x107 + x108 + x110 ++ x138 + x150 + x151 + x160 + x161 + x162 + x163 + x165 + x173 + x193 ++ x195 + x196 + x199 + x200 + x201 + x202 + x204 + x205 + x206 + x207 ++ x208 + x209 + x210 + x228 + x229 + x232 + x253 + x254 + x256 + x258 ++ x279 + x287 + x288 + x289 + x295 + x296 + x305 + x306 + x307 + x308 ++ x309 + x310 + x313 + x314 + x325 + x326 + x327 + x343 + x344 + x346 ++ x347 + x348 + x372 + x373 + x374 + x387 + x388 + x389 + x390 + x391 ++ x392 + x399 + x400 + x401 + x402 + x403 + x404 + x425 + x427 + x447 ++ x450 + x451 + x452 + x453 + x454 + x455 + x458 + x460 + x474 + x475 ++ x477 + x480 + x481 + x482 + x484 + x485 + x487 + x488 + x491 <= 1 + +x18 + x21 + x22 + x48 + x52 + x53 + x55 + x56 + x58 + x60 ++ x62 + x63 + x65 + x66 + x70 + x71 + x80 + x88 + x89 + x90 ++ x91 + x92 + x105 + x106 + x107 + x108 + x110 + x125 + x149 + x150 ++ x151 + x164 + x168 + x171 + x173 + x184 + x199 + x200 + x201 + x203 ++ x204 + x205 + x206 + x207 + x208 + x209 + x210 + x232 + x238 + x249 ++ x254 + x256 + x282 + x300 + x311 + x313 + x314 + x316 + x325 + x326 ++ x328 + x345 + x372 + x388 + x389 + x390 + x391 + x392 + x400 + x423 ++ x427 + x450 + x451 + x452 + x458 + x488 + x491 + x503 <= 1 + +x22 + x30 + x48 + x52 + x53 + x55 + x56 + x57 + x58 + x60 ++ x63 + x105 + x106 + x107 + x108 + x110 + x144 + x147 + x149 + x150 ++ x151 + x168 + x184 + x193 + x195 + x196 + x197 + x199 + x200 + x203 ++ x204 + x205 + x206 + x207 + x208 + x210 + x237 + x238 + x249 + x254 ++ x272 + x282 + x296 + x302 + x303 + x311 + x313 + x314 + x316 + x323 ++ x324 + x325 + x326 + x327 + x426 + x427 + x446 + x447 + x450 + x472 ++ x473 + x480 + x491 + x503 <= 1 + +x39 + x58 + x105 + x106 + x108 + x148 + x149 + x165 + x197 + x203 ++ x204 + x226 + x237 + x238 + x272 + x274 + x292 + x296 + x302 + x303 ++ x304 + x309 + x311 + x323 + x324 + x326 + x370 + x375 + x441 + x478 ++ x491 + x499 + x503 <= 1 + +x55 + x110 + x127 + x142 + x165 + x184 + x185 + x223 + x226 + x238 ++ x240 + x243 + x245 + x263 + x274 + x296 + x302 + x303 + x304 + x307 ++ x308 + x309 + x311 + x312 + x314 + x315 + x316 + x323 + x324 + x325 ++ x326 + x327 + x328 + x441 + x446 + x447 + x478 + x479 + x499 + x503 + <= 1 + +x15 + x40 + x49 + x55 + x61 + x142 + x143 + x184 + x185 + x186 ++ x226 + x234 + x238 + x240 + x302 + x304 + x311 + x314 + x324 + x369 ++ x428 + x446 + x478 + x479 + x490 + x491 <= 1 + +x15 + x49 + x108 + x130 + x142 + x143 + x169 + x170 + x182 + x186 ++ x238 + x241 + x252 + x260 + x299 + x311 + x389 + x423 + x428 + x446 ++ x491 + x500 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 + x18 + x19 + x46 + x61 ++ x64 + x65 + x66 + x68 + x70 + x80 + x105 + x106 + x107 + x108 ++ x109 + x110 + x136 + x140 + x141 + x167 + x171 + x178 + x183 + x198 ++ x202 + x206 + x208 + x209 + x210 + x212 + x214 + x215 + x231 + x233 ++ x254 + x258 + x265 + x266 + x267 + x268 + x270 + x289 + x305 + x306 ++ x307 + x312 + x330 + x333 + x334 + x388 + x399 + x400 + x402 + x403 ++ x426 + x448 + x449 + x474 + x480 + x481 + x483 <= 1 + +x0 + x1 + x3 + x4 + x18 + x46 + x49 + x51 + x52 + x65 ++ x70 + x71 + x73 + x81 + x108 + x136 + x139 + x140 + x141 + x167 ++ x171 + x173 + x189 + x194 + x196 + x198 + x202 + x205 + x206 + x207 ++ x208 + x209 + x210 + x211 + x212 + x214 + x215 + x227 + x231 + x232 ++ x233 + x236 + x253 + x254 + x258 + x265 + x268 + x270 + x279 + x281 ++ x286 + x287 + x288 + x289 + x294 + x305 + x306 + x307 + x310 + x312 ++ x329 + x330 + x331 + x333 + x334 + x343 + x344 + x347 + x368 + x387 ++ x388 + x390 + x391 + x402 + x416 + x424 + x426 + x445 + x447 + x448 ++ x449 + x455 + x456 + x474 + x475 + x480 + x487 <= 1 + +x3 + x4 + x18 + x19 + x20 + x22 + x49 + x51 + x52 + x59 ++ x60 + x69 + x70 + x71 + x72 + x73 + x92 + x105 + x106 + x110 ++ x140 + x141 + x168 + x170 + x171 + x178 + x179 + x181 + x195 + x196 ++ x198 + x199 + x201 + x202 + x205 + x206 + x207 + x208 + x209 + x210 ++ x212 + x213 + x214 + x215 + x253 + x254 + x258 + x265 + x266 + x267 ++ x268 + x270 + x287 + x288 + x289 + x291 + x305 + x306 + x307 + x309 ++ x310 + x312 + x313 + x329 + x330 + x331 + x332 + x334 + x343 + x345 ++ x346 + x347 + x348 + x364 + x368 + x369 + x372 + x387 + x388 + x389 ++ x390 + x391 + x399 + x400 + x401 + x404 + x426 + x447 + x449 + x450 ++ x451 + x453 + x454 + x455 + x456 + x474 + x475 + x480 + x481 + x482 ++ x484 + x487 + x490 + x496 <= 1 + +x19 + x20 + x21 + x48 + x51 + x52 + x55 + x58 + x59 + x60 ++ x62 + x63 + x64 + x70 + x71 + x75 + x92 + x105 + x106 + x107 ++ x108 + x110 + x138 + x150 + x160 + x161 + x163 + x168 + x170 + x171 ++ x181 + x189 + x193 + x195 + x196 + x199 + x201 + x202 + x204 + x205 ++ x206 + x207 + x208 + x209 + x210 + x232 + x254 + x258 + x287 + x305 ++ x306 + x307 + x308 + x309 + x310 + x313 + x333 + x343 + x344 + x345 ++ x346 + x347 + x348 + x363 + x372 + x387 + x388 + x389 + x390 + x391 ++ x392 + x401 + x404 + x427 + x447 + x449 + x451 + x452 + x453 + x454 ++ x455 + x456 + x458 + x460 + x461 + x477 + x480 + x481 + x482 + x484 ++ x485 + x487 + x488 <= 1 + +x22 + x39 + x41 + x48 + x51 + x52 + x53 + x55 + x59 + x60 ++ x62 + x63 + x64 + x70 + x71 + x75 + x88 + x91 + x92 + x102 ++ x105 + x149 + x150 + x151 + x160 + x163 + x168 + x171 + x193 + x199 ++ x201 + x203 + x204 + x205 + x207 + x208 + x209 + x210 + x258 + x293 ++ x300 + x306 + x307 + x309 + x310 + x313 + x325 + x328 + x345 + x370 ++ x372 + x387 + x388 + x389 + x390 + x392 + x427 + x450 + x451 + x453 ++ x454 + x456 + x457 + x458 + x460 + x472 + x474 + x477 + x484 + x485 ++ x488 + x495 <= 1 + +x33 + x39 + x41 + x48 + x52 + x53 + x56 + x57 + x58 + x59 ++ x60 + x62 + x92 + x101 + x105 + x106 + x107 + x108 + x109 + x110 ++ x147 + x148 + x149 + x150 + x151 + x152 + x153 + x163 + x168 + x171 ++ x174 + x199 + x200 + x201 + x203 + x204 + x205 + x207 + x208 + x209 ++ x222 + x237 + x272 + x290 + x292 + x293 + x313 + x325 + x362 + x364 ++ x370 + x372 + x375 + x404 + x427 + x441 + x446 + x447 + x450 + x451 ++ x458 + x460 + x472 + x485 + x488 + x499 + x503 <= 1 + +x12 + x14 + x33 + x39 + x41 + x48 + x53 + x57 + x58 + x101 ++ x102 + x105 + x106 + x107 + x108 + x109 + x110 + x148 + x149 + x150 ++ x151 + x152 + x153 + x163 + x165 + x168 + x197 + x199 + x203 + x204 ++ x225 + x234 + x235 + x236 + x237 + x238 + x272 + x274 + x290 + x292 ++ x296 + x310 + x323 + x363 + x370 + x375 + x441 + x458 + x472 + x474 ++ x476 + x499 + x503 <= 1 + +x5 + x12 + x14 + x39 + x55 + x102 + x109 + x142 + x148 + x151 ++ x153 + x165 + x187 + x222 + x234 + x235 + x236 + x237 + x238 + x263 ++ x274 + x292 + x302 + x311 + x323 + x324 + x325 + x326 + x392 + x479 ++ x500 <= 1 + +x12 + x15 + x16 + x41 + x55 + x61 + x108 + x142 + x176 + x177 ++ x186 + x205 + x220 + x221 + x234 + x235 + x236 + x238 + x240 + x274 ++ x302 + x304 + x311 + x323 + x324 + x392 + x428 + x432 + x500 <= 1 + +x15 + x41 + x49 + x61 + x108 + x170 + x182 + x238 + x423 + x432 ++ x500 <= 1 + +x0 + x2 + x19 + x46 + x67 + x68 + x80 + x105 + x107 + x108 ++ x109 + x110 + x141 + x167 + x171 + x202 + x212 + x214 + x215 + x231 ++ x233 + x254 + x258 + x265 + x305 + x307 + x312 + x331 + x333 + x343 ++ x400 + x447 + x448 + x449 + x487 <= 1 + +x2 + x3 + x4 + x18 + x51 + x59 + x65 + x67 + x71 + x73 ++ x80 + x105 + x106 + x108 + x136 + x139 + x140 + x141 + x166 + x167 ++ x168 + x171 + x201 + x202 + x206 + x209 + x210 + x211 + x212 + x214 ++ x215 + x233 + x254 + x258 + x265 + x268 + x286 + x305 + x312 + x329 ++ x331 + x333 + x334 + x343 + x383 + x387 + x388 + x391 + x392 + x400 ++ x402 + x416 + x418 + x447 + x449 + x475 + x480 + x482 + x487 <= 1 + +x2 + x4 + x22 + x39 + x59 + x60 + x67 + x69 + x71 + x72 ++ x91 + x100 + x105 + x106 + x108 + x109 + x110 + x118 + x139 + x166 ++ x167 + x168 + x169 + x170 + x171 + x198 + x199 + x201 + x202 + x205 ++ x209 + x211 + x212 + x213 + x214 + x215 + x216 + x253 + x254 + x258 ++ x295 + x305 + x306 + x309 + x310 + x329 + x331 + x332 + x333 + x334 ++ x343 + x345 + x346 + x348 + x372 + x383 + x389 + x391 + x392 + x400 ++ x401 + x404 + x418 + x455 + x475 + x480 + x482 + x487 + x490 <= 1 + +x39 + x43 + x45 + x48 + x50 + x51 + x55 + x59 + x60 + x64 ++ x71 + x92 + x99 + x100 + x105 + x106 + x109 + x110 + x147 + x150 ++ x151 + x166 + x168 + x169 + x170 + x171 + x189 + x193 + x196 + x199 ++ x201 + x202 + x204 + x205 + x207 + x208 + x209 + x210 + x215 + x216 ++ x234 + x258 + x287 + x295 + x300 + x306 + x307 + x309 + x310 + x325 ++ x343 + x345 + x346 + x348 + x363 + x371 + x372 + x389 + x390 + x391 ++ x392 + x401 + x404 + x418 + x449 + x451 + x453 + x454 + x456 + x460 ++ x461 + x462 + x477 + x487 + x488 <= 1 + +x33 + x35 + x39 + x41 + x45 + x48 + x60 + x63 + x64 + x98 ++ x99 + x100 + x101 + x102 + x103 + x105 + x107 + x110 + x147 + x150 ++ x151 + x166 + x168 + x170 + x171 + x187 + x189 + x193 + x202 + x205 ++ x207 + x208 + x209 + x210 + x211 + x216 + x230 + x234 + x236 + x237 ++ x271 + x272 + x287 + x290 + x292 + x295 + x300 + x301 + x306 + x307 ++ x308 + x309 + x310 + x313 + x325 + x332 + x363 + x371 + x372 + x390 ++ x392 + x404 + x437 + x441 + x454 + x456 + x457 + x460 + x461 + x472 ++ x474 + x476 + x477 + x488 <= 1 + +x1 + x5 + x14 + x30 + x33 + x37 + x39 + x41 + x44 + x48 ++ x50 + x53 + x59 + x98 + x99 + x101 + x102 + x105 + x106 + x107 ++ x109 + x110 + x147 + x148 + x149 + x150 + x151 + x152 + x153 + x166 ++ x168 + x170 + x171 + x174 + x183 + x187 + x189 + x199 + x200 + x203 ++ x204 + x205 + x207 + x208 + x210 + x222 + x228 + x234 + x235 + x236 ++ x237 + x263 + x272 + x287 + x290 + x292 + x306 + x307 + x310 + x313 ++ x362 + x363 + x364 + x366 + x367 + x404 + x437 + x441 + x447 + x459 ++ x472 + x474 + x476 + x477 + x485 + x499 + x501 <= 1 + +x1 + x5 + x14 + x30 + x36 + x37 + x39 + x41 + x50 + x53 ++ x59 + x61 + x109 + x110 + x142 + x147 + x153 + x159 + x174 + x183 ++ x187 + x190 + x192 + x199 + x200 + x203 + x205 + x207 + x221 + x222 ++ x228 + x263 + x287 + x290 + x292 + x299 + x302 + x306 + x307 + x310 ++ x313 + x323 + x324 + x364 + x366 + x375 + x404 + x437 + x441 + x472 ++ x474 + x477 + x485 + x499 + x500 <= 1 + +x1 + x12 + x13 + x16 + x33 + x36 + x37 + x39 + x41 + x52 ++ x95 + x107 + x110 + x145 + x147 + x148 + x150 + x152 + x153 + x159 ++ x177 + x187 + x190 + x203 + x205 + x217 + x218 + x219 + x220 + x221 ++ x236 + x238 + x259 + x260 + x262 + x263 + x271 + x272 + x273 + x274 ++ x275 + x276 + x290 + x292 + x299 + x302 + x306 + x310 + x323 + x324 ++ x384 + x407 + x441 + x472 + x500 <= 1 + +x12 + x13 + x16 + x29 + x36 + x41 + x81 + x109 + x110 + x129 ++ x132 + x133 + x146 + x147 + x148 + x152 + x153 + x159 + x172 + x175 ++ x176 + x177 + x178 + x186 + x205 + x218 + x219 + x220 + x221 + x236 ++ x238 + x240 + x262 + x272 + x274 + x275 + x276 + x299 + x302 + x323 ++ x324 + x367 + x374 + x472 + x500 <= 1 + +x15 + x16 + x81 + x97 + x107 + x109 + x110 + x129 + x132 + x133 ++ x134 + x172 + x175 + x176 + x177 + x186 + x190 + x205 + x259 + x260 ++ x271 + x274 + x275 + x299 + x323 + x357 + x359 + x361 + x374 + x472 + <= 1 + +x29 + x42 + x45 + x166 + x169 + x367 + x382 + x386 + x476 + x477 + <= 1 + +x42 + x43 + x45 + x46 + x59 + x91 + x107 + x108 + x109 + x110 ++ x118 + x119 + x121 + x126 + x166 + x168 + x169 + x198 + x206 + x209 ++ x213 + x297 + x301 + x310 + x329 + x330 + x331 + x332 + x382 + x383 ++ x400 + x418 + x421 + x443 + x444 + x472 + x473 + x475 + x476 + x477 + <= 1 + +x31 + x50 + x59 + x60 + x69 + x91 + x107 + x108 + x109 + x110 ++ x118 + x119 + x120 + x121 + x122 + x151 + x166 + x168 + x169 + x171 ++ x198 + x202 + x206 + x209 + x211 + x213 + x215 + x216 + x300 + x301 ++ x310 + x329 + x331 + x332 + x334 + x346 + x348 + x363 + x372 + x383 ++ x391 + x392 + x400 + x418 + x421 + x444 + x473 + x475 + x476 + x477 ++ x480 + x482 + x487 <= 1 + +x32 + x34 + x43 + x44 + x45 + x47 + x48 + x50 + x51 + x59 ++ x60 + x64 + x71 + x98 + x100 + x103 + x107 + x109 + x110 + x117 ++ x119 + x120 + x166 + x168 + x169 + x170 + x171 + x211 + x213 + x215 ++ x216 + x234 + x239 + x295 + x301 + x329 + x332 + x334 + x346 + x348 ++ x363 + x367 + x372 + x389 + x391 + x392 + x400 + x404 + x421 + x453 ++ x457 + x459 + x460 + x461 + x462 + x473 + x474 + x475 + x476 + x477 ++ x482 + x486 + x487 + x488 + x502 <= 1 + +x28 + x30 + x32 + x33 + x34 + x35 + x45 + x47 + x50 + x53 ++ x59 + x60 + x64 + x98 + x99 + x100 + x101 + x103 + x105 + x106 ++ x107 + x109 + x110 + x126 + x145 + x147 + x156 + x166 + x170 + x203 ++ x205 + x209 + x211 + x213 + x216 + x230 + x234 + x235 + x236 + x237 ++ x239 + x271 + x272 + x276 + x300 + x301 + x332 + x363 + x367 + x389 ++ x404 + x422 + x433 + x448 + x456 + x457 + x459 + x460 + x461 + x462 ++ x472 + x474 + x476 + x477 + x482 + x486 + x488 + x502 <= 1 + +x28 + x30 + x32 + x33 + x35 + x44 + x45 + x47 + x48 + x50 ++ x53 + x60 + x63 + x64 + x98 + x99 + x105 + x106 + x107 + x109 ++ x110 + x145 + x148 + x150 + x151 + x152 + x153 + x155 + x156 + x166 ++ x170 + x189 + x192 + x199 + x203 + x205 + x207 + x208 + x210 + x234 ++ x235 + x237 + x239 + x271 + x272 + x276 + x290 + x292 + x300 + x301 ++ x303 + x307 + x358 + x362 + x363 + x364 + x365 + x366 + x367 + x413 ++ x414 + x415 + x417 + x433 + x437 + x459 + x461 + x462 + x472 + x474 ++ x476 + x477 + x486 + x501 + x502 <= 1 + +x14 + x28 + x30 + x36 + x37 + x39 + x41 + x59 + x109 + x148 ++ x152 + x153 + x154 + x159 + x172 + x174 + x187 + x192 + x199 + x200 ++ x203 + x209 + x219 + x263 + x275 + x287 + x290 + x292 + x299 + x306 ++ x307 + x310 + x324 + x375 + x412 + x420 + x472 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 + x36 + x37 + x52 + x95 ++ x97 + x107 + x109 + x132 + x133 + x134 + x142 + x145 + x146 + x148 ++ x152 + x153 + x154 + x157 + x159 + x172 + x174 + x175 + x176 + x187 ++ x190 + x192 + x217 + x218 + x219 + x220 + x221 + x255 + x259 + x260 ++ x263 + x271 + x273 + x274 + x275 + x276 + x299 + x310 + x324 + x360 ++ x361 + x366 + x384 + x420 + x436 + x470 + x472 + x476 <= 1 + +x13 + x28 + x29 + x31 + x32 + x33 + x36 + x37 + x95 + x97 ++ x107 + x109 + x110 + x132 + x133 + x134 + x142 + x145 + x146 + x147 ++ x152 + x172 + x173 + x174 + x175 + x176 + x177 + x187 + x190 + x205 ++ x219 + x221 + x255 + x259 + x260 + x262 + x263 + x273 + x274 + x275 ++ x299 + x310 + x344 + x359 + x361 + x374 + x420 + x484 <= 1 + +x13 + x28 + x32 + x36 + x37 + x97 + x107 + x109 + x110 + x129 ++ x131 + x132 + x133 + x134 + x142 + x145 + x146 + x147 + x152 + x172 ++ x175 + x176 + x177 + x187 + x190 + x205 + x255 + x259 + x260 + x262 ++ x263 + x264 + x323 + x357 + x359 + x361 + x374 + x419 + x420 + x432 + <= 1 + +x29 + x42 + x43 + x45 + x46 + x126 + x166 + x169 + x206 + x301 ++ x308 + x329 + x330 + x367 + x382 + x385 + x386 + x424 + x473 + x476 ++ x477 <= 1 + +x29 + x31 + x38 + x42 + x43 + x45 + x46 + x47 + x59 + x107 ++ x109 + x110 + x122 + x126 + x153 + x166 + x169 + x206 + x291 + x301 ++ x329 + x330 + x382 + x383 + x384 + x385 + x386 + x391 + x421 + x424 ++ x443 + x472 + x473 + x476 + x477 <= 1 + +x31 + x38 + x42 + x43 + x44 + x47 + x50 + x51 + x59 + x103 ++ x107 + x108 + x109 + x110 + x117 + x118 + x119 + x121 + x122 + x123 ++ x126 + x135 + x166 + x169 + x206 + x209 + x211 + x213 + x216 + x300 ++ x301 + x384 + x385 + x386 + x391 + x418 + x421 <= 1 + +x31 + x34 + x38 + x42 + x43 + x44 + x47 + x50 + x51 + x59 ++ x103 + x107 + x108 + x109 + x117 + x119 + x120 + x126 + x166 + x169 ++ x170 + x206 + x211 + x213 + x216 + x239 + x271 + x290 + x300 + x301 ++ x303 + x316 + x329 + x334 + x348 + x372 + x389 + x391 + x404 + x421 ++ x457 + x459 + x462 + x477 + x487 + x488 + x504 <= 1 + +x16 + x34 + x35 + x42 + x43 + x44 + x45 + x47 + x53 + x59 ++ x60 + x64 + x105 + x109 + x120 + x126 + x156 + x166 + x203 + x217 ++ x230 + x234 + x239 + x271 + x272 + x276 + x300 + x301 + x303 + x307 ++ x365 + x404 + x417 + x421 + x422 + x457 + x459 + x461 + x472 + x473 ++ x474 + x476 + x477 + x486 + x487 + x488 + x498 + x502 + x504 <= 1 + +x28 + x29 + x30 + x32 + x33 + x43 + x44 + x45 + x47 + x63 ++ x64 + x96 + x106 + x107 + x109 + x145 + x146 + x148 + x150 + x151 ++ x152 + x153 + x154 + x155 + x156 + x157 + x170 + x188 + x189 + x192 ++ x203 + x217 + x218 + x221 + x222 + x234 + x235 + x237 + x239 + x261 ++ x276 + x290 + x292 + x299 + x300 + x301 + x302 + x303 + x330 + x333 ++ x358 + x362 + x363 + x364 + x365 + x366 + x367 + x375 + x412 + x413 ++ x414 + x415 + x416 + x417 + x418 + x419 + x420 + x422 + x433 + x435 ++ x459 + x461 + x472 + x474 + x476 + x477 + x499 + x501 + x502 + x504 + <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 + x44 + x94 + x95 + x96 ++ x107 + x109 + x145 + x146 + x148 + x151 + x152 + x153 + x154 + x155 ++ x156 + x157 + x187 + x188 + x192 + x217 + x218 + x219 + x220 + x221 ++ x222 + x235 + x239 + x261 + x262 + x273 + x275 + x276 + x299 + x301 ++ x302 + x303 + x310 + x333 + x358 + x360 + x362 + x365 + x366 + x367 ++ x375 + x411 + x412 + x413 + x414 + x415 + x416 + x417 + x419 + x420 ++ x422 + x431 + x433 + x434 + x435 + x436 + x469 + x476 + x499 + x501 ++ x502 + x504 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 + x94 + x95 + x97 + x107 ++ x109 + x131 + x145 + x146 + x148 + x151 + x152 + x153 + x154 + x155 ++ x157 + x159 + x187 + x188 + x192 + x217 + x218 + x219 + x220 + x221 ++ x222 + x239 + x262 + x271 + x273 + x275 + x276 + x299 + x303 + x310 ++ x345 + x353 + x358 + x360 + x362 + x366 + x375 + x384 + x411 + x412 ++ x413 + x414 + x415 + x416 + x417 + x420 + x431 + x435 + x436 + x462 ++ x468 + x469 + x470 + x472 + x476 + x477 + x501 + x502 + x504 <= 1 + +x28 + x29 + x30 + x31 + x32 + x91 + x95 + x107 + x109 + x146 ++ x148 + x152 + x159 + x192 + x217 + x218 + x219 + x220 + x221 + x222 ++ x244 + x271 + x273 + x275 + x276 + x303 + x345 + x411 + x415 + x431 ++ x435 + x462 + x468 + x470 + x504 <= 1 + +x13 + x28 + x32 + x36 + x37 + x94 + x96 + x97 + x107 + x109 ++ x129 + x130 + x131 + x133 + x134 + x145 + x146 + x147 + x148 + x152 ++ x175 + x187 + x190 + x191 + x192 + x259 + x260 + x261 + x264 + x271 ++ x272 + x275 + x276 + x323 + x357 + x359 + x361 + x374 + x419 + x432 ++ x434 + x476 + x501 <= 1 + +x29 + x42 + x45 + x46 + x126 + x166 + x169 + x200 + x275 + x301 ++ x308 + x382 + x385 + x386 + x424 + x473 + x477 <= 1 + +x29 + x31 + x46 + x117 + x122 + x123 + x126 + x153 + x161 + x166 ++ x169 + x206 + x300 + x301 + x316 + x330 + x385 + x421 + x472 + x473 ++ x476 <= 1 + +x65 + x117 + x118 + x121 + x122 + x123 + x126 + x166 + x169 + x170 ++ x206 + x300 + x301 + x316 + x419 + x421 + x457 + x472 + x473 + x474 ++ x476 + x477 + x487 + x488 + x504 <= 1 + +x38 + x42 + x43 + x44 + x47 + x50 + x51 + x65 + x107 + x109 ++ x126 + x166 + x169 + x170 + x216 + x217 + x218 + x271 + x300 + x301 ++ x303 + x307 + x316 + x417 + x418 + x419 + x421 + x457 + x462 + x472 ++ x473 + x474 + x476 + x477 + x486 + x487 + x488 + x500 + x504 <= 1 + +x40 + x43 + x44 + x47 + x50 + x54 + x60 + x107 + x109 + x132 ++ x146 + x166 + x169 + x170 + x188 + x217 + x218 + x230 + x261 + x299 ++ x300 + x301 + x303 + x307 + x365 + x417 + x418 + x419 + x472 + x473 ++ x474 + x476 + x477 + x486 + x500 + x502 <= 1 + +x40 + x41 + x43 + x44 + x47 + x50 + x107 + x109 + x146 + x157 ++ x166 + x170 + x188 + x192 + x217 + x218 + x230 + x235 + x261 + x299 ++ x300 + x301 + x303 + x333 + x358 + x362 + x365 + x367 + x414 + x416 ++ x417 + x418 + x419 + x422 + x459 + x472 + x473 + x474 + x476 + x477 ++ x486 + x501 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 + x44 + x47 + x90 + x106 ++ x107 + x109 + x130 + x145 + x146 + x148 + x152 + x153 + x154 + x155 ++ x156 + x157 + x170 + x188 + x192 + x217 + x218 + x219 + x220 + x221 ++ x222 + x235 + x239 + x261 + x262 + x273 + x275 + x276 + x290 + x299 ++ x301 + x302 + x303 + x330 + x333 + x352 + x353 + x357 + x358 + x360 ++ x362 + x363 + x365 + x366 + x367 + x375 + x411 + x412 + x413 + x414 ++ x415 + x419 + x431 + x433 + x434 + x435 + x436 + x471 + x472 + x499 ++ x501 + x502 + x504 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 + x94 + x96 + x106 + x107 ++ x109 + x130 + x131 + x145 + x146 + x148 + x152 + x153 + x155 + x156 ++ x157 + x170 + x188 + x192 + x197 + x217 + x218 + x219 + x220 + x221 ++ x222 + x235 + x239 + x259 + x261 + x262 + x271 + x273 + x275 + x276 ++ x330 + x352 + x353 + x354 + x357 + x358 + x360 + x362 + x365 + x366 ++ x375 + x411 + x412 + x413 + x414 + x415 + x416 + x417 + x419 + x420 ++ x422 + x431 + x433 + x434 + x435 + x436 + x468 + x469 + x472 + x476 ++ x501 + x502 + x504 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 + x94 + x96 + x106 + x107 ++ x109 + x129 + x130 + x131 + x145 + x146 + x147 + x148 + x152 + x153 ++ x155 + x187 + x188 + x190 + x191 + x192 + x197 + x219 + x235 + x259 ++ x261 + x262 + x271 + x273 + x275 + x276 + x352 + x354 + x357 + x359 ++ x360 + x361 + x362 + x365 + x366 + x411 + x412 + x413 + x417 + x420 ++ x422 + x431 + x432 + x434 + x436 + x472 + x476 + x501 + x502 + x504 + <= 1 + +x28 + x30 + x32 + x93 + x94 + x96 + x107 + x109 + x121 + x129 ++ x130 + x131 + x134 + x145 + x147 + x148 + x152 + x153 + x187 + x188 ++ x190 + x191 + x192 + x214 + x219 + x259 + x261 + x264 + x271 + x272 ++ x275 + x276 + x314 + x323 + x354 + x357 + x359 + x360 + x361 + x362 ++ x365 + x366 + x411 + x420 + x422 + x432 + x434 + x476 + x501 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 <= 1 + +x17 + x18 + x19 + x20 + x21 + x22 <= 1 + +x23 + x24 + x25 + x26 + x27 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 <= 1 + +x36 + x37 + x38 + x39 + x40 + x41 <= 1 + +x42 + x43 + x44 + x45 + x46 + x47 <= 1 + +x48 + x49 + x50 + x51 + x52 + x53 <= 1 + +x55 + x56 + x57 + x58 + x59 + x60 <= 1 + +x61 + x62 + x63 + x64 + x65 + x66 <= 1 + +x67 + x68 + x69 <= 1 + +x70 + x71 + x72 + x73 + x74 + x75 <= 1 + +x76 + x77 + x78 + x79 + x80 + x81 <= 1 + +x82 + x83 + x84 + x85 + x86 + x87 <= 1 + +x88 + x89 + x90 + x91 + x92 + x93 <= 1 + +x94 + x95 + x96 + x97 <= 1 + +x98 + x99 + x100 + x101 + x102 + x103 <= 1 + +x105 + x106 + x107 + x108 + x109 + x110 <= 1 + +x111 + x112 + x113 + x114 + x115 + x116 <= 1 + +x117 + x118 + x119 + x120 + x121 + x122 <= 1 + +x123 + x124 + x125 + x126 + x127 + x128 <= 1 + +x129 + x130 + x131 + x132 + x133 + x134 <= 1 + +x136 + x137 + x138 + x139 + x140 + x141 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x148 + x149 + x150 + x151 + x152 + x153 <= 1 + +x154 + x155 + x156 + x157 + x158 + x159 <= 1 + +x160 + x161 + x162 + x163 + x164 + x165 <= 1 + +x166 + x167 + x168 + x169 + x170 + x171 <= 1 + +x172 + x173 + x174 + x175 + x176 + x177 <= 1 + +x178 + x179 + x180 + x181 + x182 + x183 <= 1 + +x184 + x185 + x186 <= 1 + +x187 + x188 + x189 + x190 + x191 + x192 <= 1 + +x193 + x194 + x195 + x196 + x197 + x198 <= 1 + +x199 + x200 + x201 + x202 + x203 + x204 <= 1 + +x205 + x206 + x207 + x208 + x209 + x210 <= 1 + +x211 + x212 + x213 + x214 + x215 + x216 <= 1 + +x217 + x218 + x219 + x220 + x221 + x222 <= 1 + +x223 + x224 + x225 + x226 + x227 <= 1 + +x228 + x229 + x230 + x231 + x232 + x233 <= 1 + +x234 + x235 + x236 + x237 + x238 + x239 <= 1 + +x240 + x241 + x242 + x243 + x244 + x245 <= 1 + +x246 + x247 + x248 + x249 + x250 + x251 <= 1 + +x253 + x254 + x255 + x256 + x257 + x258 <= 1 + +x259 + x260 + x261 + x262 + x263 + x264 <= 1 + +x265 + x266 + x267 + x268 + x269 + x270 <= 1 + +x271 + x272 + x273 + x274 + x275 + x276 <= 1 + +x277 + x278 + x279 + x280 + x281 + x282 <= 1 + +x283 + x284 + x285 + x286 <= 1 + +x287 + x288 + x289 + x290 + x291 + x292 <= 1 + +x293 + x294 + x295 + x296 + x297 + x298 <= 1 + +x299 + x300 + x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 + x310 <= 1 + +x311 + x312 + x313 + x314 + x315 + x316 <= 1 + +x317 + x318 + x319 + x320 + x321 + x322 <= 1 + +x323 + x324 + x325 + x326 + x327 + x328 <= 1 + +x329 + x330 + x331 + x332 + x333 + x334 <= 1 + +x335 + x336 <= 1 + +x337 + x338 + x339 + x340 + x341 + x342 <= 1 + +x343 + x344 + x345 + x346 + x347 + x348 <= 1 + +x349 + x350 + x351 <= 1 + +x352 + x353 + x354 <= 1 + +x355 + x356 <= 1 + +x357 + x358 + x359 + x360 + x361 <= 1 + +x362 + x363 + x364 + x365 + x366 + x367 <= 1 + +x368 + x369 <= 1 + +x370 + x371 + x372 + x373 + x374 + x375 <= 1 + +x376 + x377 + x378 + x379 + x380 + x381 <= 1 + +x382 + x383 + x384 + x385 + x386 <= 1 + +x387 + x388 + x389 + x390 + x391 + x392 <= 1 + +x393 + x394 + x395 + x396 + x397 + x398 <= 1 + +x399 + x400 + x401 + x402 + x403 + x404 <= 1 + +x405 + x406 + x407 + x408 + x409 + x410 <= 1 + +x411 + x412 + x413 + x414 + x415 + x416 <= 1 + +x417 + x418 + x419 + x420 + x421 + x422 <= 1 + +x423 + x424 + x425 + x426 + x427 + x428 <= 1 + +x429 + x430 <= 1 + +x431 + x432 + x433 + x434 + x435 + x436 <= 1 + +x437 + x438 + x439 + x440 + x441 + x442 <= 1 + +x443 + x444 <= 1 + +x445 + x446 + x447 + x448 + x449 + x450 <= 1 + +x451 + x452 + x453 + x454 + x455 + x456 <= 1 + +x457 + x458 + x459 + x460 + x461 + x462 <= 1 + +x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 <= 1 + +x472 + x473 + x474 + x475 + x476 + x477 <= 1 + +x478 + x479 <= 1 + +x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x493 + x494 + x495 + x496 + x497 + x498 <= 1 + +x499 + x500 + x501 + x502 + x503 + x504 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 x503 x504 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0004.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0004.lp new file mode 100644 index 000000000..e101443dc --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0004.lp @@ -0,0 +1,1086 @@ +max + +1628.43x0 + 1773.07x1 + 1766.11x2 + 1698.26x3 + 1676.77x4 + 1665.3x5 + 1534.66x6 + 1624.1x7 + 1563.43x8 + 1541.53x9 + +1512.99x10 + 1498.25x11 + 659.967x12 + 861.749x13 + 848.301x14 + 786.315x15 + 695.515x16 + 673.202x17 + 165.925x18 + 210.679x19 + +206.78x20 + 137.166x21 + 308.772x22 + 456.819x23 + 364.292x24 + 335.31x25 + 301.56x26 + 274.924x27 + 791.084x28 + 995.457x29 + +981.816x30 + 916.287x31 + 907.225x32 + 897.8x33 + 307.451x34 + 436.069x35 + 434.874x36 + 394.288x37 + 334.192x38 + 418.371x39 + +611.564x40 + 536.827x41 + 481.053x42 + 441.824x43 + 440.657x44 + 586.291x45 + 673.521x46 + 528.403x47 + 522.433x48 + 497.641x49 + +492.475x50 + 595.299x51 + 661.976x52 + 651.662x53 + 638.269x54 + 592.448x55 + 572.944x56 + 1035.33x57 + 1375.45x58 + 1343.92x59 + +1247.55x60 + 1234.46x61 + 1220.76x62 + 131.655x63 + 148.055x64 + 471.004x65 + 653.068x66 + 502.41x67 + 453.91x68 + 453.187x69 + +413.739x70 + 916.185x71 + 1060.16x72 + 951.723x73 + 950.309x74 + 941.988x75 + 927.162x76 + 773.051x77 + 1116.75x78 + 1099.87x79 + +1097.96x80 + 1094.7x81 + 1086.1x82 + 268.441x83 + 382.689x84 + 342.469x85 + 320.275x86 + 238.582x87 + 851.027x88 + 1003.01x89 + +971.195x90 + 919.113x91 + 883.422x92 + 848.445x93 + 1925.41x94 + 2271.29x95 + 2145.8x96 + 2117.99x97 + 2047.66x98 + 2039.86x99 + +257.317x100 + 373.043x101 + 358.795x102 + 317.48x103 + 811.416x104 + 948.055x105 + 815.659x106 + 797.557x107 + 761.5x108 + 750.265x109 + +3.25639x110 + 1818.36x111 + 2183.83x112 + 1852.86x113 + 1834.89x114 + 1816.12x115 + 1789.08x116 + 301.483x117 + 339.783x118 + 326.109x119 + +227.259x120 + 65.6418x121 + 212.911x122 + 283.075x123 + 945.483x124 + 1175.47x125 + 1174.04x126 + 1149.37x127 + 1147.97x128 + 1083.13x129 + +1523.25x130 + 1880.25x131 + 1709.85x132 + 1677.66x133 + 1676.8x134 + 1669.05x135 + 614.387x136 + 727.462x137 + 723.584x138 + 701.12x139 + +668.419x140 + 664.221x141 + 295.696x142 + 293.729x143 + 270.802x144 + 63.3848x145 + 1820.6x146 + 1964.32x147 + 1929.31x148 + 1921.99x149 + +1804.15x150 + 1794.77x151 + 724.911x152 + 1015.6x153 + 864.827x154 + 772.75x155 + 757.422x156 + 726.647x157 + 1198.09x158 + 1280.83x159 + +1251.5x160 + 1216.56x161 + 1137.82x162 + 1073.98x163 + 797.266x164 + 1020.8x165 + 957.644x166 + 888.387x167 + 782.513x168 + 768.326x169 + +126.594x170 + 124.464x171 + 89.436x172 + 88.604x173 + 364.169x174 + 509.267x175 + 406.895x176 + 402.537x177 + 395.815x178 + 378.169x179 + +329.497x180 + 333.854x181 + 289.169x182 + 276.394x183 + 223.987x184 + 27.58x185 + 2306.1x186 + 2607.28x187 + 2543.75x188 + 2463.29x189 + +2446.9x190 + 2370.54x191 + 123.205x192 + 148.225x193 + 116.687x194 + 230.659x195 + 187.99x196 + 162.964x197 + 846.026x198 + 1132.01x199 + +1106.85x200 + 983.82x201 + 927.361x202 + 913.524x203 + 1250.86x204 + 1578.37x205 + 1538.08x206 + 1529.38x207 + 1521.93x208 + 1496.35x209 + +687.786x210 + 725.779x211 + 660.866x212 + 649.463x213 + 637.806x214 + 628.436x215 + 266.14x216 + 380.631x217 + 371.397x218 + 304.909x219 + +287.401x220 + 261.71x221 + 312.436x222 + 395.139x223 + 348.6x224 + 218.436x225 + 130.04x226 + 1065.85x227 + 1390.4x228 + 1373.7x229 + +1366.01x230 + 1351.4x231 + 1275.27x232 + 539.714x233 + 795.361x234 + 760.922x235 + 672.842x236 + 622.716x237 + 607.441x238 + 774.737x239 + +863.289x240 + 784.288x241 + 749.92x242 + 743.464x243 + 738.941x244 + 274.457x245 + 284.77x246 + 240.8x247 + 363.575x248 + 415.096x249 + +354.774x250 + 330.584x251 + 328.912x252 + 293.196x253 + 653.685x254 + 922.402x255 + 882.563x256 + 825.544x257 + 791.204x258 + 777.47x259 + +432.549x260 + 526.011x261 + 522.451x262 + 510.99x263 + 499.327x264 + 465.112x265 + 111.99x266 + 974.374x267 + 1314.86x268 + 1243.23x269 + +1237.83x270 + 1175.55x271 + 1151.4x272 + 1146.88x273 + 1685.9x274 + 1432.58x275 + 1427.68x276 + 1425.81x277 + 1384.88x278 + 210.567x279 + +235.593x280 + 1790.42x281 + 1903.94x282 + 1894.57x283 + 1862.63x284 + 1844.85x285 + 1839.24x286 + 168.093x287 + 249.876x288 + 181.997x289 + +1403.54x290 + 1788.18x291 + 1610.31x292 + 1559.81x293 + 1538.28x294 + 1525.02x295 + 623.043x296 + 593.349x297 + 485.388x298 + 483.064x299 + +470.044x300 + 441.994x301 + 183.646x302 + 239.847x303 + 170.61x304 + 154.275x305 + 969.825x306 + 1322.5x307 + 1243.55x308 + 1028.55x309 + +1008.99x310 + 983.812x311 + 920.014x312 + 1255.92x313 + 1214.06x314 + 1203.29x315 + 1194.7x316 + 1169.67x317 + 705.216x318 + 763.443x319 + +736.834x320 + 711.643x321 + 706.833x322 + 684.606x323 + 149.358x324 + 869.508x325 + 1022.96x326 + 994.894x327 + 989.445x328 + 977.884x329 + +942.815x330 + 186.689x331 + 240.073x332 + 202.915x333 + 166.876x334 + 945.301x335 + 1028.02x336 + 996.051x337 + 990.222x338 + 980.493x339 + +944.734x340 + 317.83x341 + 348.848x342 + 275.304x343 + 189.849x344 + 104.654x345 + 305.107x346 + 343.843x347 + 327.642x348 + 159.131x349 + +304.698x350 + 339.525x351 + 331.564x352 + 302.005x353 + 286.301x354 + 219.39x355 + 116.313x356 + 202.934x357 + 276.808x358 + 260.405x359 + +250.531x360 + 175.409x361 + 491.121x362 + 454.177x363 + 372.107x364 + 343.584x365 + 260.458x366 + 270.454x367 + 309.998x368 + 306.995x369 + +238.364x370 + 222.291x371 + 246.562x372 + 244.696x373 + 133.884x374 + 966.952x375 + 1190.33x376 + 1132.05x377 + 1122.07x378 + 1062.3x379 + +1034.01x380 + 431.129x381 + 530.846x382 + 504.673x383 + 476.322x384 + 455.458x385 + 404.703x386 + 644.027x387 + 797.757x388 + 769.44x389 + +768.043x390 + 738.549x391 + 722.083x392 + 264.202x393 + 267.164x394 + 230.276x395 + 146.215x396 + 2455.71x397 + 2759.89x398 + 2756.77x399 + +2747.75x400 + 2721.31x401 + 2680.65x402 + 544.123x403 + 752.903x404 + 710.219x405 + 707.948x406 + 674.348x407 + 652.162x408 + 239.704x409 + +250.56x410 + 235.536x411 + 218.27x412 + 186.066x413 + 389.731x414 + 386.915x415 + 355.585x416 + 339.412x417 + 312.361x418 + 34.6047x419 + +525.953x420 + 562.373x421 + 502.205x422 + 491.802x423 + 491.663x424 + 473.074x425 + 1126.54x426 + 1337.04x427 + 1300.2x428 + 1254.25x429 + +1229.77x430 + 1225.96x431 + 832.214x432 + 901.753x433 + 897.269x434 + 863.186x435 + 786.869x436 + 785.593x437 + 3107.46x438 + 3216.74x439 + +3194.74x440 + 3165.92x441 + 3141.61x442 + 3117.61x443 + 2292.75x444 + 2497.24x445 + 2476.14x446 + 2462.08x447 + 2392.3x448 + 2381.31x449 + +572.276x450 + 629.411x451 + 624.688x452 + 608.251x453 + 589.364x454 + 559.076x455 + 670.829x456 + 881.112x457 + 871.512x458 + 869.366x459 + +852.818x460 + 849.479x461 + 361.297x462 + 420.327x463 + 393.774x464 + 369.142x465 + 367.609x466 + 338.967x467 + 987.483x468 + 1467.47x469 + +1448.58x470 + 1395.84x471 + 1362.72x472 + 1314.25x473 + 195.574x474 + 283.064x475 + 279.749x476 + 116.668x477 + 434.81x478 + 602.084x479 + +596.377x480 + 536.537x481 + 490.934x482 + 448.642x483 + 72.3057x484 + 845.501x485 + 1146.38x486 + 1119.94x487 + 1046.89x488 + 995.058x489 + +979.361x490 + 806.177x491 + 1144.97x492 + 1106.81x493 + 1084.42x494 + 1063.25x495 + 1044.5x496 + 256.157x497 + 255.135x498 + 182.926x499 + +144.108x500 + 127.852x501 + +st + +x11 + x32 + x33 + x79 + x82 + x97 + x106 + x112 + x113 + x116 ++ x227 + x230 + x231 + x244 + x281 + x283 + x285 + x316 + x328 + x330 ++ x376 + x377 + x386 + x425 + x428 + x438 + x439 + x450 + x454 + x464 ++ x467 + x469 + x488 + x491 + x494 <= 1 + +x8 + x11 + x30 + x32 + x33 + x69 + x77 + x78 + x79 + x80 ++ x91 + x101 + x135 + x186 + x187 + x190 + x227 + x232 + x254 + x256 ++ x271 + x281 + x312 + x316 + x325 + x328 + x329 + x375 + x376 + x377 ++ x381 + x384 + x386 + x401 + x421 + x423 + x439 + x441 + x452 + x455 ++ x462 + x466 + x469 + x472 + x486 + x488 + x490 + x491 + x494 <= 1 + +x28 + x32 + x33 + x61 + x77 + x79 + x80 + x82 + x91 + x136 ++ x217 + x227 + x230 + x232 + x254 + x256 + x284 + x312 + x321 + x323 ++ x328 + x329 + x375 + x376 + x377 + x381 + x386 + x439 + x441 + x469 ++ x491 + x494 <= 1 + +x32 + x61 + x77 + x79 + x80 + x82 + x120 + x136 + x138 + x139 ++ x141 + x231 + x232 + x254 + x256 + x257 + x258 + x284 + x286 + x312 ++ x317 + x318 + x320 + x321 + x328 + x377 + x381 + x386 + x468 + x469 ++ x480 + x486 <= 1 + +x4 + x5 + x11 + x24 + x31 + x38 + x57 + x59 + x60 + x61 ++ x62 + x65 + x66 + x67 + x70 + x120 + x127 + x130 + x135 + x136 ++ x138 + x139 + x141 + x150 + x151 + x158 + x159 + x160 + x189 + x191 ++ x230 + x231 + x254 + x255 + x256 + x257 + x258 + x281 + x282 + x284 ++ x285 + x286 + x290 + x293 + x307 + x312 + x313 + x314 + x315 + x316 ++ x317 + x318 + x319 + x320 + x321 + x322 + x323 + x328 + x377 + x447 ++ x451 + x468 + x469 + x486 + x493 + x495 <= 1 + +x5 + x8 + x24 + x38 + x57 + x60 + x61 + x62 + x66 + x70 ++ x117 + x120 + x127 + x130 + x131 + x135 + x136 + x138 + x139 + x150 ++ x151 + x159 + x163 + x184 + x229 + x230 + x231 + x254 + x258 + x272 ++ x281 + x284 + x286 + x290 + x293 + x294 + x312 + x313 + x314 + x317 ++ x318 + x319 + x320 + x321 + x322 + x377 + x405 + x438 + x441 + x442 ++ x447 + x468 <= 1 + +x5 + x34 + x38 + x57 + x60 + x61 + x66 + x70 + x75 + x130 ++ x131 + x134 + x135 + x150 + x151 + x229 + x231 + x254 + x258 + x272 ++ x290 + x293 + x294 + x314 + x317 + x318 + x405 + x438 + x441 + x442 ++ x443 + x444 + x468 + x477 <= 1 + +x31 + x34 + x36 + x37 + x57 + x94 + x109 + x130 + x132 + x135 ++ x140 + x141 + x146 + x148 + x150 + x158 + x163 + x186 + x189 + x191 ++ x229 + x240 + x293 + x294 + x302 + x303 + x313 + x314 + x317 + x397 ++ x405 + x444 + x448 + x468 <= 1 + +x34 + x36 + x37 + x95 + x104 + x105 + x109 + x130 + x132 + x133 ++ x135 + x146 + x148 + x150 + x155 + x157 + x158 + x163 + x186 + x189 ++ x191 + x200 + x293 + x294 + x303 + x441 + x442 + x448 + x494 <= 1 + +x37 + x86 + x100 + x105 + x109 + x132 + x133 + x135 + x146 + x150 ++ x157 + x158 + x161 + x167 + x186 + x189 + x191 + x294 + x336 + x399 ++ x438 + x439 + x441 + x442 <= 1 + +x11 + x28 + x32 + x33 + x56 + x65 + x69 + x77 + x79 + x82 ++ x97 + x112 + x113 + x114 + x116 + x227 + x230 + x231 + x239 + x244 ++ x281 + x283 + x284 + x285 + x309 + x316 + x325 + x328 + x329 + x330 ++ x357 + x359 + x376 + x377 + x386 + x390 + x425 + x433 + x438 + x439 ++ x443 + x450 + x454 + x456 + x464 + x467 + x469 + x471 + x472 + x488 ++ x491 + x494 + x496 <= 1 + +x4 + x8 + x11 + x28 + x30 + x32 + x33 + x56 + x60 + x65 ++ x68 + x69 + x70 + x73 + x77 + x78 + x79 + x80 + x81 + x82 ++ x97 + x101 + x113 + x133 + x135 + x186 + x187 + x191 + x198 + x227 ++ x230 + x232 + x244 + x254 + x259 + x281 + x283 + x284 + x285 + x286 ++ x312 + x316 + x317 + x323 + x325 + x328 + x329 + x330 + x357 + x358 ++ x360 + x375 + x376 + x377 + x381 + x383 + x384 + x386 + x398 + x399 ++ x401 + x420 + x421 + x423 + x438 + x439 + x441 + x443 + x450 + x451 ++ x452 + x453 + x454 + x455 + x456 + x462 + x465 + x466 + x467 + x469 ++ x472 + x486 + x488 + x490 + x491 + x493 + x494 + x501 <= 1 + +x1 + x8 + x11 + x28 + x29 + x30 + x32 + x33 + x65 + x70 ++ x79 + x82 + x91 + x97 + x131 + x133 + x134 + x135 + x152 + x186 ++ x187 + x188 + x191 + x211 + x217 + x227 + x230 + x244 + x272 + x281 ++ x283 + x284 + x285 + x286 + x312 + x316 + x317 + x323 + x325 + x328 ++ x329 + x330 + x357 + x360 + x361 + x375 + x376 + x377 + x381 + x384 ++ x386 + x423 + x424 + x439 + x441 + x450 + x451 + x452 + x453 + x454 ++ x455 + x469 + x471 + x472 + x486 + x488 + x490 + x491 + x493 + x494 ++ x497 + x498 + x501 <= 1 + +x1 + x3 + x7 + x8 + x11 + x22 + x24 + x28 + x30 + x31 ++ x32 + x33 + x57 + x65 + x67 + x70 + x72 + x73 + x82 + x127 ++ x131 + x133 + x134 + x135 + x138 + x139 + x141 + x147 + x150 + x186 ++ x187 + x188 + x191 + x211 + x216 + x217 + x220 + x227 + x230 + x232 ++ x244 + x256 + x257 + x269 + x272 + x273 + x281 + x282 + x283 + x284 ++ x285 + x286 + x290 + x312 + x316 + x317 + x318 + x319 + x320 + x321 ++ x322 + x323 + x329 + x330 + x360 + x377 + x398 + x404 + x423 + x429 ++ x439 + x442 + x447 + x450 + x451 + x452 + x455 + x469 + x471 + x472 ++ x486 + x490 + x493 + x494 + x495 + x497 + x498 + x501 <= 1 + +x3 + x4 + x5 + x8 + x11 + x24 + x27 + x28 + x30 + x31 ++ x32 + x57 + x60 + x61 + x62 + x65 + x66 + x67 + x70 + x72 ++ x73 + x75 + x76 + x110 + x112 + x115 + x127 + x131 + x134 + x135 ++ x136 + x137 + x138 + x139 + x141 + x147 + x148 + x149 + x150 + x151 ++ x159 + x160 + x211 + x230 + x231 + x255 + x256 + x257 + x258 + x268 ++ x269 + x272 + x273 + x281 + x282 + x284 + x285 + x286 + x290 + x293 ++ x312 + x313 + x314 + x315 + x316 + x317 + x318 + x319 + x320 + x321 ++ x322 + x323 + x404 + x439 + x447 + x451 + x452 + x468 + x469 + x476 ++ x486 + x491 + x493 + x495 + x498 <= 1 + +x5 + x8 + x28 + x31 + x57 + x59 + x60 + x61 + x62 + x66 ++ x70 + x75 + x76 + x95 + x112 + x122 + x123 + x124 + x127 + x131 ++ x134 + x135 + x138 + x139 + x141 + x148 + x150 + x151 + x158 + x159 ++ x160 + x163 + x187 + x188 + x189 + x190 + x191 + x208 + x211 + x229 ++ x230 + x231 + x254 + x255 + x256 + x257 + x258 + x272 + x281 + x282 ++ x284 + x286 + x290 + x293 + x294 + x300 + x307 + x308 + x312 + x313 ++ x314 + x317 + x318 + x319 + x320 + x321 + x322 + x323 + x326 + x377 ++ x388 + x404 + x405 + x438 + x439 + x443 + x447 + x451 + x452 + x468 ++ x469 + x486 + x491 + x493 + x495 <= 1 + +x30 + x31 + x34 + x35 + x36 + x37 + x38 + x57 + x75 + x95 ++ x102 + x115 + x127 + x130 + x131 + x132 + x134 + x135 + x136 + x140 ++ x141 + x186 + x189 + x191 + x229 + x231 + x272 + x290 + x293 + x294 ++ x303 + x313 + x314 + x317 + x326 + x405 + x438 + x439 + x440 + x441 ++ x442 + x443 + x444 + x448 + x468 + x474 + x477 + x493 <= 1 + +x34 + x35 + x36 + x57 + x74 + x94 + x95 + x99 + x105 + x109 ++ x115 + x119 + x127 + x130 + x131 + x132 + x133 + x134 + x135 + x136 ++ x146 + x148 + x150 + x151 + x163 + x187 + x207 + x228 + x229 + x240 ++ x293 + x294 + x313 + x314 + x317 + x345 + x373 + x397 + x399 + x405 ++ x438 + x439 + x440 + x441 + x442 + x443 + x444 + x448 + x453 + x468 ++ x493 + x494 <= 1 + +x35 + x36 + x37 + x86 + x95 + x104 + x105 + x109 + x130 + x131 ++ x132 + x133 + x134 + x135 + x146 + x148 + x150 + x151 + x152 + x155 ++ x157 + x158 + x161 + x163 + x186 + x189 + x191 + x193 + x200 + x204 ++ x236 + x240 + x275 + x293 + x294 + x303 + x313 + x314 + x317 + x336 ++ x388 + x399 + x411 + x438 + x441 + x442 + x443 + x444 + x448 + x453 ++ x468 + x494 <= 1 + +x37 + x74 + x84 + x86 + x95 + x98 + x105 + x109 + x131 + x132 ++ x133 + x135 + x146 + x150 + x151 + x152 + x157 + x158 + x161 + x186 ++ x189 + x191 + x192 + x193 + x228 + x229 + x231 + x240 + x267 + x275 ++ x294 + x314 + x336 + x398 + x399 + x438 + x441 + x442 + x448 + x494 + <= 1 + +x11 + x32 + x33 + x51 + x53 + x56 + x65 + x67 + x68 + x69 ++ x77 + x79 + x80 + x81 + x82 + x108 + x111 + x112 + x113 + x114 ++ x116 + x203 + x212 + x227 + x229 + x230 + x231 + x239 + x244 + x254 ++ x259 + x281 + x283 + x285 + x309 + x316 + x325 + x328 + x329 + x330 ++ x358 + x359 + x364 + x383 + x421 + x424 + x425 + x433 + x439 + x450 ++ x453 + x454 + x455 + x461 + x462 + x464 + x465 + x466 + x471 + x472 ++ x485 + x486 + x488 <= 1 + +x0 + x3 + x4 + x28 + x29 + x30 + x33 + x65 + x67 + x68 ++ x69 + x73 + x77 + x78 + x79 + x80 + x81 + x82 + x112 + x113 ++ x116 + x135 + x179 + x203 + x227 + x229 + x230 + x232 + x239 + x244 ++ x259 + x278 + x281 + x283 + x285 + x295 + x312 + x316 + x317 + x325 ++ x328 + x330 + x358 + x359 + x361 + x377 + x383 + x420 + x421 + x423 ++ x424 + x425 + x438 + x439 + x441 + x443 + x450 + x451 + x452 + x453 ++ x454 + x455 + x461 + x462 + x464 + x465 + x466 + x467 + x469 + x471 ++ x472 + x485 + x486 + x488 + x491 <= 1 + +x1 + x2 + x3 + x4 + x11 + x28 + x29 + x30 + x32 + x33 ++ x60 + x65 + x67 + x68 + x69 + x73 + x75 + x77 + x78 + x79 ++ x80 + x81 + x82 + x91 + x96 + x97 + x101 + x112 + x113 + x116 ++ x134 + x135 + x146 + x151 + x152 + x186 + x187 + x191 + x216 + x227 ++ x230 + x232 + x239 + x244 + x259 + x273 + x278 + x281 + x283 + x284 ++ x285 + x286 + x312 + x315 + x316 + x317 + x323 + x325 + x327 + x328 ++ x329 + x330 + x357 + x360 + x361 + x376 + x377 + x381 + x384 + x385 ++ x386 + x398 + x399 + x400 + x401 + x420 + x421 + x423 + x424 + x425 ++ x439 + x440 + x443 + x450 + x455 + x461 + x462 + x463 + x465 + x466 ++ x467 + x469 + x471 + x472 + x486 + x487 + x488 + x490 + x491 + x494 + <= 1 + +x1 + x3 + x4 + x6 + x7 + x8 + x11 + x16 + x28 + x30 ++ x31 + x32 + x59 + x60 + x67 + x73 + x77 + x78 + x82 + x98 ++ x127 + x132 + x133 + x134 + x135 + x159 + x160 + x184 + x186 + x187 ++ x188 + x191 + x216 + x217 + x219 + x220 + x227 + x230 + x232 + x244 ++ x257 + x272 + x273 + x281 + x282 + x283 + x284 + x285 + x286 + x290 ++ x312 + x315 + x318 + x319 + x320 + x323 + x325 + x326 + x327 + x328 ++ x329 + x330 + x381 + x385 + x391 + x398 + x399 + x401 + x429 + x439 ++ x442 + x443 + x461 + x467 + x469 + x472 + x486 + x488 + x490 + x491 ++ x494 + x496 + x501 <= 1 + +x3 + x4 + x6 + x7 + x8 + x11 + x24 + x27 + x28 + x30 ++ x31 + x32 + x58 + x59 + x60 + x61 + x62 + x67 + x72 + x73 ++ x76 + x81 + x98 + x112 + x115 + x127 + x132 + x133 + x134 + x135 ++ x148 + x149 + x150 + x151 + x159 + x160 + x186 + x187 + x188 + x190 ++ x191 + x215 + x217 + x218 + x219 + x220 + x227 + x230 + x231 + x232 ++ x255 + x257 + x269 + x271 + x281 + x282 + x283 + x284 + x285 + x286 ++ x290 + x308 + x313 + x314 + x315 + x316 + x317 + x318 + x319 + x320 ++ x321 + x323 + x325 + x326 + x327 + x328 + x329 + x330 + x361 + x388 ++ x391 + x398 + x399 + x401 + x438 + x439 + x440 + x442 + x443 + x461 ++ x469 + x491 + x492 + x494 + x495 + x496 <= 1 + +x5 + x11 + x28 + x30 + x31 + x57 + x58 + x59 + x60 + x61 ++ x62 + x66 + x70 + x72 + x73 + x74 + x75 + x76 + x95 + x115 ++ x123 + x127 + x131 + x134 + x135 + x136 + x137 + x138 + x139 + x140 ++ x141 + x146 + x147 + x148 + x149 + x150 + x151 + x158 + x159 + x160 ++ x187 + x188 + x189 + x190 + x191 + x205 + x208 + x211 + x229 + x230 ++ x243 + x254 + x255 + x256 + x257 + x258 + x267 + x272 + x273 + x281 ++ x282 + x284 + x285 + x286 + x290 + x307 + x308 + x312 + x313 + x318 ++ x319 + x320 + x321 + x322 + x326 + x338 + x377 + x388 + x392 + x404 ++ x405 + x438 + x439 + x440 + x443 + x446 + x447 + x468 + x469 + x470 ++ x474 + x476 + x486 + x493 + x495 + x496 + x498 <= 1 + +x5 + x30 + x31 + x46 + x57 + x59 + x60 + x61 + x62 + x71 ++ x72 + x75 + x81 + x95 + x105 + x125 + x127 + x131 + x133 + x134 ++ x135 + x136 + x138 + x139 + x140 + x141 + x146 + x147 + x148 + x149 ++ x150 + x151 + x158 + x159 + x160 + x162 + x163 + x186 + x188 + x189 ++ x190 + x191 + x208 + x229 + x230 + x250 + x255 + x293 + x294 + x307 ++ x308 + x313 + x314 + x319 + x326 + x338 + x356 + x388 + x398 + x399 ++ x403 + x404 + x405 + x438 + x439 + x440 + x441 + x442 + x443 + x447 ++ x470 + x474 + x475 + x476 + x477 + x493 + x495 + x496 <= 1 + +x5 + x9 + x34 + x74 + x92 + x94 + x95 + x98 + x99 + x105 ++ x109 + x115 + x117 + x118 + x119 + x130 + x132 + x133 + x135 + x146 ++ x148 + x150 + x151 + x157 + x161 + x163 + x187 + x188 + x189 + x207 ++ x228 + x240 + x264 + x275 + x277 + x290 + x293 + x294 + x307 + x336 ++ x397 + x398 + x399 + x401 + x410 + x440 + x441 + x442 + x444 + x448 + <= 1 + +x9 + x35 + x36 + x74 + x83 + x84 + x92 + x95 + x105 + x109 ++ x115 + x119 + x130 + x131 + x132 + x133 + x135 + x146 + x148 + x150 ++ x151 + x152 + x155 + x157 + x158 + x161 + x162 + x163 + x171 + x186 ++ x187 + x188 + x189 + x191 + x240 + x275 + x277 + x293 + x294 + x313 ++ x314 + x317 + x336 + x338 + x388 + x405 + x440 + x444 + x448 + x468 ++ x493 <= 1 + +x9 + x35 + x71 + x74 + x83 + x84 + x86 + x98 + x115 + x130 ++ x131 + x132 + x133 + x150 + x152 + x155 + x157 + x158 + x161 + x162 ++ x163 + x171 + x172 + x186 + x189 + x191 + x192 + x193 + x204 + x228 ++ x231 + x240 + x267 + x294 + x303 + x314 + x336 + x388 + x397 + x398 ++ x399 + x411 + x438 + x441 + x442 + x448 + x481 + x494 <= 1 + +x1 + x8 + x11 + x51 + x53 + x56 + x68 + x69 + x77 + x80 ++ x81 + x106 + x108 + x113 + x114 + x116 + x166 + x186 + x212 + x229 ++ x231 + x254 + x273 + x274 + x275 + x281 + x283 + x285 + x306 + x309 ++ x316 + x330 + x349 + x358 + x364 + x384 + x416 + x420 + x421 + x424 ++ x425 + x438 + x453 + x454 + x455 + x458 + x460 + x461 + x464 + x465 ++ x485 + x486 + x488 + x490 <= 1 + +x0 + x1 + x2 + x4 + x7 + x8 + x11 + x19 + x30 + x33 ++ x51 + x52 + x53 + x56 + x68 + x69 + x77 + x79 + x80 + x81 ++ x82 + x96 + x98 + x104 + x106 + x107 + x108 + x112 + x113 + x114 ++ x116 + x146 + x166 + x179 + x186 + x200 + x203 + x212 + x244 + x259 ++ x273 + x274 + x275 + x276 + x278 + x281 + x295 + x297 + x309 + x312 ++ x315 + x316 + x325 + x328 + x330 + x349 + x359 + x364 + x381 + x382 ++ x383 + x384 + x385 + x389 + x416 + x420 + x421 + x424 + x438 + x439 ++ x440 + x451 + x452 + x453 + x454 + x458 + x460 + x461 + x466 + x470 ++ x471 + x472 + x485 + x486 + x488 + x490 + x492 <= 1 + +x0 + x1 + x2 + x4 + x6 + x7 + x8 + x9 + x11 + x28 ++ x29 + x30 + x32 + x33 + x47 + x48 + x52 + x55 + x59 + x81 ++ x96 + x98 + x104 + x106 + x107 + x108 + x112 + x114 + x116 + x134 ++ x146 + x148 + x151 + x166 + x167 + x186 + x187 + x190 + x191 + x200 ++ x213 + x216 + x219 + x220 + x221 + x227 + x230 + x232 + x239 + x241 ++ x243 + x244 + x259 + x268 + x273 + x275 + x276 + x278 + x281 + x283 ++ x284 + x286 + x295 + x308 + x309 + x311 + x312 + x314 + x315 + x316 ++ x325 + x377 + x381 + x382 + x383 + x384 + x385 + x386 + x389 + x398 ++ x399 + x400 + x401 + x423 + x424 + x429 + x439 + x440 + x460 + x461 ++ x462 + x463 + x465 + x470 + x471 + x472 + x485 + x486 + x487 + x488 ++ x490 + x491 + x492 + x495 + x499 <= 1 + +x0 + x1 + x2 + x3 + x4 + x6 + x7 + x8 + x11 + x42 ++ x47 + x48 + x78 + x81 + x82 + x88 + x96 + x98 + x112 + x114 ++ x134 + x135 + x146 + x148 + x150 + x151 + x159 + x160 + x167 + x186 ++ x187 + x188 + x190 + x191 + x200 + x215 + x216 + x217 + x218 + x219 ++ x220 + x227 + x230 + x231 + x232 + x255 + x259 + x273 + x281 + x282 ++ x283 + x284 + x285 + x286 + x290 + x292 + x295 + x308 + x311 + x312 ++ x313 + x314 + x315 + x319 + x320 + x321 + x325 + x326 + x327 + x328 ++ x330 + x376 + x385 + x389 + x398 + x399 + x400 + x401 + x429 + x439 ++ x440 + x443 + x463 + x469 + x470 + x471 + x485 + x490 + x491 + x492 ++ x495 + x496 + x499 <= 1 + +x0 + x1 + x3 + x4 + x5 + x7 + x43 + x57 + x58 + x59 ++ x60 + x61 + x62 + x66 + x67 + x71 + x72 + x73 + x74 + x75 ++ x76 + x112 + x115 + x127 + x132 + x133 + x134 + x147 + x148 + x149 ++ x150 + x151 + x159 + x160 + x161 + x162 + x186 + x187 + x188 + x189 ++ x190 + x191 + x215 + x229 + x239 + x240 + x241 + x242 + x243 + x255 ++ x267 + x268 + x269 + x284 + x285 + x286 + x290 + x295 + x313 + x315 ++ x317 + x325 + x326 + x327 + x329 + x330 + x338 + x382 + x388 + x389 ++ x391 + x398 + x399 + x401 + x438 + x439 + x440 + x442 + x443 + x471 ++ x495 + x496 <= 1 + +x0 + x1 + x4 + x5 + x7 + x11 + x31 + x40 + x43 + x46 ++ x57 + x58 + x59 + x60 + x61 + x62 + x66 + x71 + x72 + x73 ++ x74 + x75 + x76 + x95 + x96 + x98 + x99 + x115 + x123 + x127 ++ x130 + x131 + x132 + x133 + x134 + x137 + x138 + x140 + x146 + x147 ++ x148 + x149 + x150 + x151 + x158 + x159 + x160 + x162 + x186 + x187 ++ x188 + x189 + x190 + x191 + x205 + x228 + x229 + x239 + x240 + x241 ++ x242 + x243 + x255 + x256 + x257 + x258 + x267 + x269 + x284 + x286 ++ x290 + x292 + x307 + x308 + x313 + x326 + x338 + x387 + x388 + x391 ++ x392 + x398 + x399 + x401 + x404 + x406 + x438 + x439 + x440 + x441 ++ x442 + x443 + x445 + x446 + x447 + x448 + x470 + x492 + x493 + x495 ++ x496 <= 1 + +x0 + x5 + x31 + x46 + x57 + x62 + x71 + x72 + x73 + x74 ++ x75 + x76 + x81 + x95 + x96 + x97 + x98 + x99 + x105 + x115 ++ x118 + x125 + x126 + x127 + x130 + x131 + x132 + x133 + x134 + x135 ++ x139 + x146 + x148 + x149 + x150 + x151 + x158 + x159 + x160 + x162 ++ x163 + x188 + x189 + x190 + x220 + x228 + x229 + x230 + x239 + x241 ++ x242 + x255 + x256 + x257 + x271 + x290 + x294 + x307 + x308 + x313 ++ x314 + x326 + x327 + x338 + x391 + x397 + x398 + x399 + x400 + x401 ++ x403 + x404 + x405 + x406 + x412 + x438 + x439 + x440 + x441 + x442 ++ x443 + x444 + x445 + x446 + x447 + x448 + x470 + x475 + x492 + x493 ++ x495 + x496 <= 1 + +x5 + x9 + x62 + x64 + x71 + x74 + x98 + x99 + x105 + x109 ++ x111 + x115 + x117 + x118 + x126 + x130 + x131 + x132 + x133 + x134 ++ x146 + x148 + x150 + x151 + x155 + x157 + x158 + x159 + x160 + x162 ++ x163 + x186 + x188 + x189 + x190 + x228 + x229 + x231 + x242 + x264 ++ x277 + x290 + x292 + x293 + x294 + x307 + x338 + x365 + x391 + x397 ++ x398 + x399 + x401 + x402 + x409 + x410 + x411 + x412 + x439 + x440 ++ x441 + x442 + x443 + x444 + x448 + x470 + x475 + x495 + x496 <= 1 + +x9 + x35 + x71 + x74 + x84 + x98 + x99 + x105 + x109 + x115 ++ x130 + x131 + x133 + x146 + x148 + x150 + x151 + x155 + x157 + x158 ++ x160 + x161 + x162 + x163 + x170 + x172 + x186 + x189 + x194 + x204 ++ x208 + x228 + x231 + x264 + x267 + x277 + x292 + x294 + x314 + x317 ++ x338 + x397 + x398 + x399 + x409 + x410 + x411 + x438 + x439 + x440 ++ x441 + x442 + x443 + x444 + x448 + x470 <= 1 + +x71 + x74 + x83 + x84 + x86 + x98 + x115 + x128 + x130 + x133 ++ x146 + x148 + x150 + x151 + x152 + x155 + x157 + x158 + x161 + x162 ++ x163 + x170 + x171 + x172 + x173 + x191 + x192 + x193 + x194 + x204 ++ x228 + x231 + x264 + x267 + x294 + x313 + x314 + x336 + x399 + x442 ++ x444 <= 1 + +x11 + x18 + x19 + x41 + x51 + x53 + x56 + x68 + x78 + x79 ++ x81 + x96 + x104 + x106 + x108 + x111 + x113 + x114 + x116 + x186 ++ x191 + x212 + x214 + x229 + x231 + x232 + x274 + x275 + x276 + x293 ++ x306 + x309 + x316 + x384 + x387 + x425 + x456 + x457 + x458 + x460 ++ x461 + x464 + x471 <= 1 + +x0 + x1 + x2 + x4 + x19 + x41 + x51 + x52 + x53 + x54 ++ x55 + x56 + x68 + x69 + x78 + x79 + x80 + x81 + x82 + x96 ++ x104 + x106 + x107 + x108 + x111 + x113 + x114 + x116 + x127 + x151 ++ x179 + x186 + x191 + x200 + x202 + x210 + x212 + x213 + x214 + x229 ++ x231 + x273 + x274 + x275 + x276 + x278 + x312 + x349 + x362 + x364 ++ x382 + x383 + x385 + x398 + x400 + x402 + x415 + x416 + x420 + x422 ++ x431 + x442 + x456 + x457 + x458 + x460 + x461 + x470 + x471 + x485 ++ x492 <= 1 + +x0 + x1 + x2 + x4 + x6 + x7 + x8 + x11 + x28 + x29 ++ x33 + x39 + x40 + x51 + x52 + x53 + x54 + x55 + x56 + x78 ++ x80 + x96 + x104 + x106 + x107 + x108 + x116 + x146 + x151 + x161 ++ x202 + x210 + x212 + x213 + x214 + x227 + x239 + x243 + x259 + x271 ++ x273 + x275 + x276 + x278 + x284 + x292 + x295 + x308 + x311 + x316 ++ x325 + x326 + x327 + x347 + x348 + x382 + x383 + x384 + x385 + x392 ++ x396 + x398 + x429 + x431 + x438 + x439 + x463 + x470 + x471 + x485 ++ x486 + x487 + x489 + x490 + x492 + x500 <= 1 + +x0 + x1 + x2 + x3 + x4 + x6 + x7 + x8 + x11 + x24 ++ x39 + x42 + x47 + x48 + x59 + x78 + x80 + x81 + x96 + x97 ++ x112 + x114 + x146 + x151 + x154 + x160 + x161 + x162 + x186 + x187 ++ x190 + x191 + x216 + x218 + x219 + x221 + x227 + x230 + x232 + x235 ++ x241 + x242 + x243 + x273 + x276 + x278 + x281 + x282 + x283 + x284 ++ x285 + x286 + x290 + x292 + x295 + x308 + x312 + x315 + x316 + x325 ++ x326 + x327 + x330 + x382 + x383 + x385 + x389 + x398 + x400 + x438 ++ x439 + x440 + x443 + x460 + x463 + x470 + x485 + x490 + x491 + x492 ++ x495 + x496 + x499 + x500 <= 1 + +x0 + x1 + x6 + x7 + x8 + x11 + x24 + x43 + x45 + x46 ++ x47 + x58 + x59 + x60 + x71 + x72 + x73 + x76 + x80 + x96 ++ x97 + x107 + x112 + x128 + x132 + x134 + x137 + x146 + x147 + x148 ++ x149 + x150 + x159 + x160 + x161 + x162 + x186 + x187 + x188 + x189 ++ x190 + x202 + x210 + x215 + x218 + x221 + x229 + x230 + x232 + x235 ++ x241 + x242 + x243 + x258 + x259 + x268 + x269 + x276 + x282 + x283 ++ x285 + x286 + x290 + x292 + x295 + x315 + x325 + x326 + x327 + x330 ++ x338 + x380 + x382 + x385 + x387 + x389 + x417 + x438 + x439 + x440 ++ x442 + x463 + x469 + x470 + x485 + x489 + x492 + x495 + x496 <= 1 + +x0 + x1 + x5 + x31 + x40 + x43 + x46 + x59 + x60 + x61 ++ x62 + x71 + x72 + x73 + x95 + x96 + x97 + x98 + x99 + x107 ++ x112 + x115 + x132 + x134 + x137 + x140 + x147 + x160 + x162 + x186 ++ x187 + x188 + x189 + x190 + x191 + x209 + x215 + x228 + x229 + x239 ++ x240 + x241 + x242 + x243 + x257 + x258 + x259 + x268 + x269 + x270 ++ x274 + x282 + x286 + x290 + x291 + x292 + x295 + x307 + x313 + x326 ++ x327 + x338 + x380 + x387 + x388 + x389 + x390 + x391 + x392 + x398 ++ x399 + x427 + x438 + x439 + x440 + x441 + x442 + x445 + x446 + x449 ++ x469 + x470 + x492 + x493 + x496 <= 1 + +x5 + x7 + x46 + x57 + x58 + x59 + x60 + x61 + x62 + x66 ++ x71 + x72 + x74 + x76 + x95 + x96 + x97 + x98 + x99 + x100 ++ x125 + x126 + x127 + x130 + x131 + x133 + x134 + x140 + x146 + x147 ++ x148 + x149 + x151 + x162 + x163 + x186 + x187 + x188 + x189 + x190 ++ x191 + x205 + x209 + x215 + x229 + x239 + x240 + x242 + x243 + x255 ++ x256 + x258 + x262 + x267 + x269 + x271 + x274 + x286 + x307 + x313 ++ x326 + x327 + x335 + x338 + x340 + x380 + x387 + x390 + x391 + x392 ++ x397 + x398 + x399 + x400 + x403 + x404 + x406 + x427 + x438 + x439 ++ x440 + x442 + x444 + x445 + x446 + x447 + x448 + x449 + x470 + x487 + <= 1 + +x9 + x57 + x62 + x63 + x64 + x94 + x98 + x99 + x109 + x111 ++ x115 + x125 + x126 + x130 + x133 + x134 + x146 + x148 + x157 + x158 ++ x162 + x163 + x175 + x188 + x189 + x201 + x228 + x277 + x292 + x294 ++ x307 + x338 + x397 + x398 + x399 + x401 + x402 + x403 + x409 + x410 ++ x412 + x440 + x442 + x443 + x445 + x446 + x447 + x448 + x449 + x470 ++ x485 <= 1 + +x0 + x5 + x91 + x109 + x111 + x124 + x125 + x126 + x128 + x133 ++ x146 + x148 + x173 + x188 + x189 + x194 + x201 + x228 + x264 + x267 ++ x270 + x294 + x412 + x440 + x443 + x444 + x445 + x446 + x449 <= 1 + +x0 + x5 + x98 + x124 + x125 + x126 + x128 + x133 + x155 + x161 ++ x163 + x170 + x173 + x192 + x194 + x206 + x228 + x264 + x267 + x270 ++ x311 + x438 + x444 + x449 <= 1 + +x18 + x20 + x21 + x51 + x53 + x56 + x95 + x96 + x111 + x113 ++ x114 + x175 + x178 + x191 + x212 + x224 + x229 + x231 + x232 + x245 ++ x247 + x274 + x275 + x276 + x277 + x285 + x293 + x306 + x308 + x309 ++ x311 + x366 + x422 + x433 + x434 + x438 + x442 + x456 + x457 + x458 ++ x459 + x460 + x461 + x471 <= 1 + +x0 + x1 + x2 + x3 + x4 + x7 + x8 + x41 + x44 + x45 ++ x49 + x50 + x51 + x52 + x54 + x55 + x68 + x78 + x79 + x80 ++ x81 + x82 + x89 + x104 + x106 + x107 + x108 + x111 + x113 + x114 ++ x116 + x161 + x181 + x189 + x202 + x214 + x236 + x273 + x274 + x275 ++ x276 + x277 + x278 + x291 + x306 + x308 + x309 + x310 + x311 + x315 ++ x346 + x349 + x362 + x363 + x364 + x394 + x398 + x400 + x402 + x414 ++ x415 + x416 + x420 + x422 + x432 + x433 + x434 + x439 + x442 + x456 ++ x457 + x458 + x459 + x460 + x461 + x471 + x472 + x485 + x487 + x489 ++ x490 + x492 <= 1 + +x0 + x1 + x2 + x3 + x4 + x7 + x8 + x11 + x29 + x33 ++ x39 + x40 + x41 + x42 + x44 + x45 + x47 + x48 + x49 + x50 ++ x52 + x53 + x54 + x55 + x78 + x80 + x95 + x96 + x104 + x107 ++ x108 + x113 + x116 + x137 + x143 + x161 + x186 + x187 + x189 + x191 ++ x202 + x210 + x211 + x212 + x213 + x214 + x232 + x236 + x241 + x271 ++ x273 + x274 + x275 + x276 + x277 + x278 + x290 + x291 + x292 + x295 ++ x306 + x308 + x311 + x315 + x316 + x327 + x346 + x347 + x348 + x362 ++ x363 + x365 + x372 + x392 + x393 + x396 + x398 + x400 + x402 + x414 ++ x415 + x416 + x434 + x438 + x439 + x442 + x460 + x470 + x471 + x485 ++ x487 + x489 + x490 + x492 + x496 + x497 + x500 <= 1 + +x0 + x1 + x2 + x3 + x4 + x6 + x7 + x8 + x11 + x29 ++ x39 + x40 + x41 + x42 + x44 + x45 + x47 + x48 + x50 + x52 ++ x53 + x54 + x55 + x78 + x96 + x107 + x108 + x116 + x128 + x132 ++ x137 + x147 + x154 + x159 + x186 + x187 + x189 + x191 + x202 + x210 ++ x211 + x213 + x214 + x218 + x219 + x221 + x227 + x232 + x241 + x242 ++ x271 + x273 + x275 + x281 + x282 + x283 + x290 + x291 + x292 + x295 ++ x315 + x326 + x346 + x347 + x365 + x382 + x383 + x389 + x392 + x395 ++ x396 + x398 + x400 + x417 + x438 + x439 + x446 + x460 + x470 + x485 ++ x489 + x490 + x492 + x496 + x497 + x499 + x500 <= 1 + +x6 + x8 + x29 + x39 + x40 + x41 + x42 + x43 + x44 + x45 ++ x46 + x47 + x59 + x61 + x96 + x97 + x107 + x112 + x116 + x128 ++ x132 + x134 + x137 + x146 + x147 + x148 + x149 + x150 + x159 + x161 ++ x162 + x187 + x188 + x189 + x190 + x202 + x207 + x209 + x210 + x211 ++ x213 + x221 + x232 + x235 + x241 + x242 + x243 + x247 + x268 + x269 ++ x275 + x276 + x281 + x282 + x283 + x285 + x286 + x290 + x291 + x292 ++ x295 + x315 + x328 + x346 + x347 + x380 + x382 + x389 + x395 + x417 ++ x438 + x446 + x460 + x469 + x485 + x489 <= 1 + +x0 + x5 + x40 + x41 + x61 + x62 + x76 + x96 + x107 + x125 ++ x129 + x132 + x134 + x137 + x147 + x148 + x149 + x185 + x186 + x187 ++ x188 + x189 + x190 + x202 + x205 + x206 + x208 + x209 + x235 + x241 ++ x242 + x243 + x259 + x262 + x268 + x269 + x270 + x275 + x282 + x285 ++ x286 + x290 + x291 + x292 + x295 + x332 + x335 + x380 + x398 + x399 ++ x400 + x413 + x438 + x439 + x440 + x445 + x446 + x447 + x449 + x469 ++ x470 + x489 <= 1 + +x5 + x7 + x57 + x58 + x59 + x60 + x76 + x97 + x98 + x99 ++ x100 + x102 + x103 + x125 + x126 + x129 + x146 + x147 + x148 + x149 ++ x151 + x162 + x186 + x187 + x188 + x189 + x190 + x204 + x205 + x206 ++ x207 + x208 + x209 + x215 + x262 + x265 + x267 + x268 + x269 + x270 ++ x271 + x272 + x282 + x285 + x286 + x291 + x292 + x331 + x332 + x335 ++ x340 + x344 + x353 + x387 + x390 + x391 + x392 + x397 + x398 + x399 ++ x400 + x401 + x402 + x403 + x404 + x406 + x413 + x427 + x428 + x438 ++ x439 + x440 + x443 + x444 + x445 + x446 + x447 + x448 + x449 + x470 ++ x487 + x489 <= 1 + +x13 + x31 + x63 + x94 + x97 + x99 + x103 + x111 + x124 + x125 ++ x126 + x128 + x133 + x134 + x162 + x175 + x187 + x188 + x189 + x209 ++ x215 + x228 + x265 + x267 + x268 + x269 + x270 + x292 + x293 + x315 ++ x332 + x335 + x337 + x338 + x392 + x397 + x398 + x399 + x400 + x401 ++ x402 + x403 + x406 + x408 + x409 + x413 + x428 + x440 + x442 + x443 ++ x444 + x445 + x446 + x447 + x448 + x449 + x487 <= 1 + +x0 + x90 + x99 + x124 + x125 + x126 + x128 + x129 + x133 + x187 ++ x188 + x189 + x190 + x201 + x206 + x215 + x228 + x252 + x260 + x263 ++ x264 + x265 + x267 + x268 + x269 + x270 + x291 + x292 + x293 + x294 ++ x315 + x337 + x397 + x398 + x399 + x400 + x401 + x402 + x406 + x407 ++ x408 + x440 + x442 + x443 + x445 + x446 + x447 + x449 + x481 + x487 + <= 1 + +x99 + x124 + x125 + x126 + x128 + x206 + x218 + x228 + x263 + x264 ++ x267 + x270 + x291 + x292 + x293 + x294 + x311 + x397 + x398 + x400 ++ x406 + x445 + x446 + x449 <= 1 + +x3 + x4 + x10 + x18 + x20 + x21 + x22 + x26 + x49 + x58 ++ x75 + x89 + x95 + x104 + x106 + x108 + x111 + x113 + x114 + x116 ++ x169 + x175 + x176 + x178 + x180 + x181 + x183 + x184 + x222 + x223 ++ x224 + x231 + x232 + x245 + x246 + x247 + x273 + x275 + x276 + x277 ++ x285 + x302 + x304 + x306 + x307 + x308 + x309 + x310 + x311 + x363 ++ x366 + x400 + x402 + x422 + x433 + x434 + x438 + x442 + x456 + x457 ++ x458 + x459 + x460 + x461 + x489 <= 1 + +x0 + x1 + x2 + x3 + x4 + x20 + x23 + x25 + x44 + x45 ++ x49 + x50 + x51 + x52 + x54 + x55 + x58 + x79 + x89 + x95 ++ x104 + x106 + x108 + x111 + x113 + x114 + x116 + x142 + x143 + x161 ++ x169 + x180 + x181 + x182 + x183 + x184 + x202 + x210 + x213 + x214 ++ x223 + x224 + x232 + x236 + x246 + x266 + x273 + x274 + x275 + x277 ++ x278 + x304 + x306 + x308 + x309 + x310 + x311 + x348 + x362 + x363 ++ x366 + x371 + x372 + x373 + x394 + x400 + x402 + x414 + x418 + x422 ++ x432 + x433 + x434 + x438 + x442 + x456 + x457 + x458 + x459 + x460 ++ x468 + x471 + x472 + x489 <= 1 + +x0 + x1 + x2 + x3 + x4 + x7 + x23 + x29 + x39 + x42 ++ x44 + x45 + x48 + x49 + x50 + x55 + x78 + x95 + x111 + x113 ++ x114 + x116 + x128 + x132 + x142 + x143 + x144 + x191 + x202 + x210 ++ x212 + x213 + x214 + x224 + x232 + x273 + x274 + x275 + x277 + x281 ++ x282 + x295 + x306 + x308 + x309 + x310 + x311 + x348 + x362 + x363 ++ x365 + x371 + x372 + x373 + x393 + x394 + x402 + x414 + x415 + x417 ++ x418 + x433 + x434 + x438 + x442 + x456 + x457 + x458 + x459 + x485 ++ x487 + x489 + x490 + x492 <= 1 + +x0 + x1 + x2 + x3 + x4 + x7 + x8 + x23 + x39 + x42 ++ x44 + x48 + x50 + x52 + x54 + x78 + x95 + x107 + x113 + x116 ++ x128 + x132 + x142 + x144 + x189 + x191 + x210 + x211 + x213 + x214 ++ x221 + x232 + x273 + x274 + x281 + x282 + x295 + x306 + x308 + x365 ++ x389 + x392 + x393 + x395 + x398 + x400 + x414 + x415 + x417 + x433 ++ x458 + x459 + x485 + x489 + x490 <= 1 + +x5 + x58 + x59 + x125 + x190 + x205 + x206 + x207 + x208 + x209 ++ x260 + x262 + x270 + x272 + x292 + x334 + x335 + x341 + x344 + x390 ++ x397 + x400 + x401 + x402 + x428 + x430 + x435 + x436 + x439 + x440 ++ x441 + x443 + x444 + x445 + x446 + x449 <= 1 + +x5 + x58 + x59 + x100 + x102 + x103 + x125 + x126 + x147 + x149 ++ x156 + x190 + x204 + x205 + x206 + x207 + x208 + x209 + x237 + x262 ++ x267 + x268 + x269 + x270 + x271 + x272 + x285 + x286 + x291 + x292 ++ x296 + x297 + x299 + x310 + x331 + x334 + x335 + x341 + x344 + x387 ++ x390 + x391 + x397 + x399 + x400 + x401 + x402 + x403 + x427 + x428 ++ x429 + x430 + x431 + x435 + x436 + x439 + x440 + x441 + x443 + x444 ++ x445 + x446 + x447 + x449 + x487 <= 1 + +x58 + x76 + x94 + x95 + x97 + x98 + x99 + x103 + x129 + x147 ++ x149 + x187 + x188 + x189 + x190 + x205 + x206 + x207 + x208 + x209 ++ x238 + x261 + x262 + x267 + x271 + x272 + x285 + x286 + x287 + x289 ++ x291 + x292 + x334 + x335 + x339 + x340 + x387 + x390 + x397 + x400 ++ x402 + x403 + x404 + x406 + x407 + x413 + x427 + x435 + x436 + x438 ++ x440 + x441 + x443 + x444 + x445 + x446 + x447 + x449 + x470 + x487 ++ x489 <= 1 + +x10 + x13 + x15 + x17 + x38 + x76 + x94 + x97 + x98 + x99 ++ x126 + x128 + x129 + x130 + x147 + x149 + x201 + x205 + x206 + x208 ++ x209 + x227 + x228 + x261 + x263 + x265 + x267 + x269 + x289 + x291 ++ x292 + x337 + x340 + x390 + x397 + x398 + x401 + x402 + x403 + x407 ++ x408 + x429 + x436 + x440 + x441 + x442 + x443 + x444 + x445 + x446 ++ x447 + x448 + x449 + x487 <= 1 + +x2 + x10 + x13 + x14 + x15 + x29 + x38 + x90 + x94 + x99 ++ x111 + x112 + x114 + x115 + x124 + x126 + x128 + x129 + x149 + x187 ++ x188 + x189 + x190 + x199 + x200 + x205 + x206 + x208 + x209 + x227 ++ x228 + x250 + x251 + x252 + x260 + x263 + x265 + x267 + x268 + x269 ++ x270 + x283 + x284 + x291 + x292 + x293 + x294 + x315 + x322 + x369 ++ x390 + x397 + x401 + x406 + x407 + x408 + x436 + x440 + x442 + x443 ++ x446 + x447 + x448 + x449 + x487 + x488 <= 1 + +x13 + x14 + x97 + x99 + x111 + x112 + x114 + x115 + x124 + x126 ++ x128 + x129 + x188 + x190 + x199 + x200 + x227 + x228 + x248 + x250 ++ x251 + x252 + x263 + x270 + x284 + x322 + x397 + x399 + x407 + x443 ++ x446 + x487 + x488 <= 1 + +x21 + x25 + x75 + x89 + x94 + x95 + x111 + x113 + x114 + x116 ++ x148 + x174 + x175 + x176 + x178 + x222 + x223 + x236 + x273 + x275 ++ x276 + x277 + x306 + x307 + x308 + x309 + x310 + x311 + x400 + x402 ++ x434 + x456 + x457 + x458 + x468 + x472 + x473 + x484 + x489 <= 1 + +x1 + x3 + x4 + x6 + x10 + x22 + x23 + x25 + x26 + x49 ++ x50 + x54 + x55 + x61 + x71 + x89 + x104 + x106 + x111 + x113 ++ x114 + x116 + x124 + x131 + x164 + x168 + x169 + x175 + x176 + x177 ++ x178 + x180 + x181 + x182 + x183 + x190 + x198 + x202 + x203 + x236 ++ x245 + x246 + x273 + x275 + x276 + x277 + x278 + x282 + x302 + x304 ++ x306 + x308 + x309 + x310 + x311 + x354 + x366 + x371 + x374 + x378 ++ x400 + x422 + x432 + x433 + x434 + x438 + x441 + x442 + x456 + x457 ++ x459 + x468 + x471 + x472 <= 1 + +x3 + x6 + x9 + x10 + x23 + x49 + x54 + x71 + x85 + x94 ++ x101 + x111 + x113 + x131 + x160 + x164 + x169 + x180 + x182 + x190 ++ x198 + x202 + x203 + x204 + x233 + x236 + x271 + x276 + x277 + x278 ++ x301 + x302 + x304 + x306 + x307 + x308 + x309 + x310 + x311 + x351 ++ x352 + x354 + x355 + x374 + x375 + x378 + x380 + x402 + x426 + x432 ++ x433 + x434 + x440 + x456 + x457 + x459 + x468 + x471 + x479 <= 1 + +x6 + x9 + x10 + x23 + x43 + x85 + x100 + x101 + x111 + x113 ++ x116 + x149 + x156 + x164 + x169 + x174 + x177 + x179 + x190 + x198 ++ x199 + x202 + x203 + x204 + x205 + x208 + x209 + x269 + x271 + x277 ++ x278 + x296 + x297 + x300 + x301 + x306 + x307 + x309 + x310 + x339 ++ x350 + x351 + x353 + x374 + x375 + x378 + x380 + x397 + x398 + x399 ++ x400 + x401 + x402 + x408 + x426 + x430 + x432 + x433 + x435 + x437 ++ x439 + x440 + x441 + x443 + x445 + x449 + x457 + x459 + x471 + x478 ++ x479 + x482 <= 1 + +x6 + x7 + x9 + x10 + x12 + x43 + x58 + x85 + x87 + x88 ++ x100 + x103 + x115 + x121 + x147 + x149 + x156 + x177 + x179 + x190 ++ x198 + x199 + x201 + x203 + x204 + x205 + x208 + x209 + x233 + x234 ++ x235 + x237 + x238 + x271 + x274 + x278 + x296 + x297 + x298 + x299 ++ x300 + x301 + x307 + x310 + x337 + x343 + x353 + x387 + x426 + x427 ++ x428 + x429 + x430 + x431 + x432 + x435 + x437 + x440 + x441 + x443 ++ x444 + x445 + x446 + x447 + x448 + x449 + x471 + x473 + x478 + x480 ++ x482 + x483 <= 1 + +x5 + x6 + x7 + x9 + x10 + x12 + x58 + x87 + x88 + x90 ++ x91 + x93 + x100 + x102 + x103 + x125 + x147 + x149 + x154 + x156 ++ x179 + x187 + x188 + x190 + x198 + x199 + x200 + x201 + x203 + x204 ++ x205 + x206 + x207 + x208 + x209 + x233 + x234 + x237 + x238 + x260 ++ x262 + x267 + x268 + x269 + x271 + x272 + x278 + x288 + x291 + x295 ++ x296 + x297 + x299 + x300 + x310 + x335 + x337 + x340 + x341 + x342 ++ x343 + x344 + x376 + x387 + x397 + x399 + x400 + x401 + x402 + x426 ++ x427 + x428 + x429 + x430 + x431 + x432 + x435 + x436 + x437 + x440 ++ x441 + x443 + x444 + x445 + x446 + x447 + x448 + x449 + x473 + x478 ++ x480 + x483 <= 1 + +x12 + x16 + x17 + x29 + x77 + x87 + x88 + x90 + x92 + x93 ++ x94 + x95 + x97 + x98 + x99 + x102 + x129 + x147 + x149 + x187 ++ x188 + x190 + x199 + x201 + x205 + x206 + x207 + x209 + x238 + x260 ++ x261 + x262 + x271 + x272 + x276 + x287 + x288 + x289 + x291 + x292 ++ x293 + x295 + x299 + x336 + x337 + x339 + x340 + x342 + x397 + x403 ++ x407 + x408 + x426 + x427 + x428 + x431 + x435 + x436 + x438 + x440 ++ x441 + x442 + x443 + x447 + x483 <= 1 + +x2 + x10 + x14 + x15 + x16 + x17 + x29 + x58 + x89 + x90 ++ x92 + x94 + x95 + x96 + x97 + x98 + x99 + x111 + x112 + x114 ++ x124 + x126 + x128 + x129 + x130 + x132 + x165 + x167 + x187 + x188 ++ x190 + x199 + x200 + x201 + x204 + x205 + x206 + x207 + x208 + x209 ++ x227 + x228 + x252 + x253 + x260 + x261 + x263 + x265 + x268 + x270 ++ x276 + x287 + x291 + x293 + x295 + x315 + x322 + x337 + x339 + x340 ++ x379 + x390 + x397 + x401 + x402 + x407 + x408 + x426 + x428 + x429 ++ x436 + x440 + x442 + x443 + x444 + x447 + x473 + x483 + x487 + x488 + <= 1 + +x2 + x9 + x10 + x13 + x14 + x15 + x16 + x17 + x29 + x58 ++ x90 + x94 + x95 + x99 + x105 + x111 + x112 + x114 + x115 + x124 ++ x126 + x128 + x129 + x130 + x132 + x147 + x154 + x187 + x199 + x200 ++ x204 + x205 + x206 + x207 + x209 + x228 + x249 + x253 + x260 + x263 ++ x265 + x268 + x269 + x270 + x283 + x284 + x293 + x329 + x333 + x369 ++ x379 + x406 + x407 + x408 + x440 + x442 + x443 + x444 + x446 + x447 ++ x448 + x449 + x473 + x488 <= 1 + +x2 + x9 + x10 + x14 + x94 + x96 + x97 + x98 + x99 + x102 ++ x112 + x114 + x115 + x130 + x188 + x207 + x227 + x228 + x248 + x250 ++ x251 + x253 + x263 + x265 + x268 + x270 + x370 + x399 + x402 + x408 ++ x440 + x446 + x448 + x473 + x487 <= 1 + +x22 + x25 + x26 + x75 + x111 + x114 + x115 + x116 + x131 + x174 ++ x175 + x176 + x177 + x178 + x203 + x222 + x223 + x225 + x226 + x236 ++ x277 + x282 + x305 + x306 + x307 + x309 + x310 + x311 + x402 + x441 ++ x457 + x458 + x468 + x472 + x473 <= 1 + +x3 + x6 + x22 + x23 + x25 + x26 + x27 + x106 + x111 + x113 ++ x114 + x115 + x116 + x124 + x131 + x145 + x164 + x168 + x169 + x174 ++ x176 + x177 + x178 + x182 + x183 + x198 + x202 + x203 + x225 + x226 ++ x233 + x236 + x277 + x282 + x302 + x304 + x305 + x306 + x307 + x309 ++ x310 + x311 + x350 + x351 + x352 + x354 + x366 + x418 + x422 + x426 ++ x430 + x431 + x432 + x433 + x434 + x441 + x468 + x472 + x473 <= 1 + +x3 + x6 + x9 + x10 + x26 + x27 + x62 + x93 + x94 + x101 ++ x111 + x113 + x115 + x116 + x124 + x131 + x145 + x164 + x168 + x169 ++ x174 + x176 + x177 + x198 + x202 + x203 + x225 + x233 + x235 + x236 ++ x237 + x276 + x277 + x282 + x301 + x305 + x306 + x309 + x310 + x311 ++ x350 + x351 + x352 + x354 + x355 + x375 + x379 + x380 + x397 + x398 ++ x401 + x418 + x426 + x430 + x431 + x434 + x441 + x445 + x449 + x457 ++ x459 <= 1 + +x6 + x9 + x10 + x72 + x85 + x91 + x93 + x94 + x101 + x111 ++ x112 + x113 + x115 + x116 + x131 + x153 + x156 + x164 + x165 + x166 ++ x168 + x169 + x174 + x177 + x179 + x198 + x199 + x203 + x204 + x206 ++ x208 + x209 + x233 + x234 + x235 + x237 + x238 + x272 + x277 + x278 ++ x296 + x300 + x301 + x306 + x339 + x350 + x351 + x352 + x375 + x378 ++ x379 + x380 + x397 + x398 + x399 + x400 + x401 + x402 + x427 + x430 ++ x432 + x434 + x441 + x443 + x445 + x449 + x478 + x482 + x483 <= 1 + +x7 + x9 + x10 + x72 + x77 + x83 + x85 + x88 + x91 + x93 ++ x94 + x97 + x113 + x115 + x116 + x147 + x149 + x152 + x153 + x156 ++ x159 + x164 + x165 + x166 + x167 + x168 + x169 + x190 + x191 + x198 ++ x199 + x201 + x204 + x205 + x206 + x207 + x208 + x209 + x233 + x234 ++ x235 + x237 + x238 + x272 + x274 + x278 + x291 + x296 + x297 + x298 ++ x300 + x301 + x306 + x327 + x337 + x339 + x352 + x353 + x375 + x379 ++ x380 + x397 + x398 + x399 + x400 + x401 + x402 + x426 + x427 + x428 ++ x429 + x430 + x431 + x432 + x435 + x437 + x441 + x443 + x445 + x449 ++ x478 + x480 + x482 + x483 + x489 <= 1 + +x5 + x7 + x9 + x10 + x83 + x87 + x88 + x89 + x90 + x91 ++ x92 + x93 + x94 + x96 + x97 + x99 + x113 + x147 + x149 + x164 ++ x165 + x166 + x167 + x169 + x188 + x190 + x199 + x200 + x201 + x203 ++ x204 + x206 + x207 + x233 + x234 + x237 + x238 + x272 + x278 + x284 ++ x291 + x296 + x297 + x298 + x299 + x335 + x336 + x337 + x339 + x340 ++ x341 + x343 + x353 + x375 + x376 + x378 + x379 + x397 + x398 + x399 ++ x400 + x401 + x402 + x426 + x427 + x428 + x429 + x430 + x431 + x432 ++ x435 + x436 + x437 + x441 + x442 + x444 + x445 + x446 + x447 + x448 ++ x449 + x478 + x480 + x481 + x483 + x493 <= 1 + +x6 + x9 + x10 + x12 + x16 + x17 + x58 + x77 + x87 + x88 ++ x89 + x90 + x91 + x93 + x94 + x95 + x96 + x97 + x98 + x99 ++ x102 + x103 + x125 + x154 + x156 + x166 + x167 + x187 + x188 + x190 ++ x195 + x197 + x198 + x199 + x200 + x201 + x204 + x205 + x206 + x207 ++ x208 + x209 + x234 + x238 + x260 + x261 + x271 + x274 + x276 + x278 ++ x284 + x287 + x288 + x289 + x295 + x299 + x310 + x335 + x336 + x337 ++ x339 + x340 + x342 + x376 + x378 + x379 + x397 + x400 + x401 + x402 ++ x407 + x426 + x427 + x428 + x429 + x430 + x431 + x435 + x436 + x437 ++ x438 + x440 + x441 + x442 + x443 + x444 + x445 + x446 + x447 + x448 ++ x449 + x473 + x480 + x481 + x483 <= 1 + +x0 + x2 + x6 + x8 + x9 + x10 + x12 + x13 + x14 + x15 ++ x16 + x17 + x88 + x89 + x90 + x92 + x94 + x95 + x96 + x97 ++ x98 + x99 + x112 + x125 + x129 + x130 + x147 + x149 + x153 + x154 ++ x165 + x166 + x167 + x195 + x196 + x198 + x199 + x200 + x201 + x204 ++ x205 + x206 + x207 + x208 + x209 + x234 + x249 + x252 + x261 + x268 ++ x270 + x271 + x274 + x276 + x283 + x295 + x322 + x335 + x336 + x337 ++ x339 + x340 + x342 + x370 + x379 + x397 + x400 + x401 + x402 + x408 ++ x426 + x427 + x428 + x429 + x430 + x431 + x435 + x436 + x437 + x438 ++ x439 + x440 + x441 + x442 + x443 + x444 + x445 + x446 + x447 + x448 ++ x449 + x473 + x479 + x488 <= 1 + +x2 + x3 + x8 + x9 + x10 + x12 + x13 + x14 + x15 + x17 ++ x29 + x88 + x90 + x94 + x95 + x96 + x97 + x98 + x99 + x111 ++ x112 + x114 + x115 + x129 + x130 + x147 + x153 + x154 + x165 + x196 ++ x205 + x207 + x234 + x248 + x249 + x251 + x261 + x268 + x270 + x271 ++ x276 + x280 + x283 + x329 + x333 + x337 + x339 + x367 + x368 + x369 ++ x370 + x378 + x379 + x397 + x400 + x401 + x402 + x419 + x428 + x438 ++ x439 + x440 + x441 + x442 + x443 + x444 + x445 + x446 + x447 + x448 ++ x449 + x473 + x479 <= 1 + +x12 + x15 + x17 + x92 + x94 + x96 + x97 + x98 + x99 + x112 ++ x114 + x115 + x129 + x132 + x147 + x154 + x207 + x248 + x249 + x250 ++ x251 + x253 + x270 + x283 + x329 + x339 + x367 + x368 + x370 + x378 ++ x397 + x400 + x402 + x431 + x438 + x439 + x441 + x444 + x445 + x446 ++ x447 + x448 + x449 + x473 + x479 <= 1 + +x25 + x26 + x95 + x111 + x114 + x116 + x122 + x124 + x131 + x168 ++ x174 + x178 + x203 + x222 + x225 + x226 + x282 + x305 + x307 + x309 ++ x310 + x311 + x375 + x380 + x402 + x418 + x458 + x468 + x472 + x473 + <= 1 + +x3 + x22 + x25 + x27 + x111 + x113 + x114 + x116 + x122 + x124 ++ x168 + x169 + x198 + x201 + x203 + x226 + x305 + x306 + x307 + x309 ++ x310 + x311 + x354 + x355 + x375 + x379 + x380 + x441 + x456 + x459 ++ x468 + x472 + x473 <= 1 + +x6 + x10 + x22 + x26 + x27 + x62 + x113 + x114 + x124 + x140 ++ x145 + x164 + x168 + x176 + x198 + x204 + x233 + x236 + x237 + x277 ++ x282 + x300 + x310 + x311 + x350 + x355 + x375 + x378 + x379 + x380 ++ x398 + x400 + x401 + x402 + x426 + x427 + x430 + x437 + x441 + x445 ++ x459 + x468 + x472 + x473 + x481 <= 1 + +x6 + x9 + x10 + x27 + x93 + x94 + x111 + x112 + x113 + x115 ++ x116 + x140 + x153 + x155 + x164 + x165 + x168 + x198 + x204 + x233 ++ x235 + x237 + x274 + x277 + x278 + x282 + x298 + x301 + x306 + x310 ++ x327 + x339 + x355 + x375 + x376 + x378 + x379 + x380 + x397 + x400 ++ x401 + x402 + x426 + x427 + x430 + x437 + x445 + x449 + x459 + x472 ++ x473 + x478 + x481 + x482 <= 1 + +x6 + x7 + x9 + x10 + x88 + x91 + x93 + x94 + x97 + x111 ++ x112 + x113 + x115 + x149 + x152 + x153 + x155 + x156 + x165 + x166 ++ x167 + x168 + x204 + x206 + x208 + x209 + x233 + x234 + x235 + x237 ++ x238 + x274 + x282 + x291 + x298 + x310 + x327 + x376 + x378 + x379 ++ x380 + x397 + x399 + x400 + x401 + x402 + x426 + x427 + x428 + x429 ++ x430 + x432 + x435 + x437 + x444 + x445 + x448 + x449 + x473 + x481 ++ x482 + x489 <= 1 + +x1 + x5 + x6 + x7 + x9 + x10 + x16 + x88 + x89 + x90 ++ x91 + x92 + x93 + x94 + x144 + x149 + x152 + x153 + x154 + x155 ++ x156 + x164 + x165 + x166 + x167 + x168 + x188 + x204 + x206 + x207 ++ x208 + x234 + x235 + x237 + x238 + x272 + x274 + x291 + x298 + x299 ++ x327 + x335 + x343 + x375 + x376 + x378 + x379 + x397 + x399 + x401 ++ x402 + x426 + x427 + x428 + x429 + x430 + x431 + x436 + x437 + x440 ++ x441 + x442 + x443 + x444 + x445 + x446 + x447 + x448 + x449 + x473 ++ x478 + x481 + x482 + x489 <= 1 + +x2 + x6 + x9 + x10 + x16 + x77 + x88 + x89 + x92 + x93 ++ x94 + x96 + x98 + x99 + x149 + x152 + x153 + x154 + x156 + x165 ++ x166 + x167 + x197 + x199 + x201 + x204 + x206 + x207 + x208 + x234 ++ x238 + x261 + x274 + x288 + x291 + x295 + x298 + x335 + x336 + x337 ++ x339 + x340 + x376 + x378 + x379 + x397 + x399 + x400 + x401 + x402 ++ x407 + x426 + x427 + x428 + x429 + x430 + x431 + x437 + x439 + x440 ++ x441 + x442 + x443 + x444 + x445 + x446 + x447 + x448 + x449 + x473 ++ x482 <= 1 + +x2 + x8 + x10 + x12 + x13 + x14 + x15 + x16 + x17 + x89 ++ x90 + x92 + x93 + x94 + x96 + x97 + x99 + x112 + x129 + x130 ++ x147 + x149 + x153 + x154 + x156 + x165 + x199 + x200 + x201 + x268 ++ x270 + x271 + x274 + x283 + x291 + x295 + x336 + x340 + x368 + x378 ++ x397 + x399 + x400 + x401 + x402 + x426 + x428 + x429 + x430 + x431 ++ x438 + x439 + x440 + x441 + x442 + x443 + x444 + x445 + x446 + x447 ++ x448 + x449 + x473 + x479 + x480 <= 1 + +x2 + x3 + x12 + x13 + x14 + x15 + x92 + x94 + x96 + x97 ++ x98 + x99 + x111 + x112 + x114 + x129 + x130 + x147 + x153 + x205 ++ x207 + x249 + x279 + x280 + x283 + x291 + x295 + x324 + x329 + x331 ++ x333 + x340 + x367 + x368 + x369 + x378 + x397 + x400 + x401 + x402 ++ x431 + x438 + x439 + x440 + x441 + x443 + x444 + x445 + x446 + x447 ++ x448 + x449 + x473 + x479 + x480 <= 1 + +x2 + x92 + x94 + x96 + x97 + x112 + x114 + x129 + x153 + x205 ++ x207 + x248 + x253 + x278 + x279 + x283 + x329 + x367 + x397 + x401 ++ x402 + x431 + x445 + x446 + x447 + x448 + x449 + x479 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 + x38 <= 1 + +x39 + x40 + x41 + x42 + x43 + x44 <= 1 + +x45 + x46 + x47 + x48 + x49 + x50 <= 1 + +x51 + x52 + x53 + x54 + x55 + x56 <= 1 + +x57 + x58 + x59 + x60 + x61 + x62 <= 1 + +x63 + x64 <= 1 + +x65 + x66 + x67 + x68 + x69 + x70 <= 1 + +x71 + x72 + x73 + x74 + x75 + x76 <= 1 + +x77 + x78 + x79 + x80 + x81 + x82 <= 1 + +x83 + x84 + x85 + x86 + x87 <= 1 + +x88 + x89 + x90 + x91 + x92 + x93 <= 1 + +x94 + x95 + x96 + x97 + x98 + x99 <= 1 + +x100 + x101 + x102 + x103 <= 1 + +x104 + x105 + x106 + x107 + x108 + x109 <= 1 + +x111 + x112 + x113 + x114 + x115 + x116 <= 1 + +x117 + x118 + x119 + x120 <= 1 + +x122 + x123 <= 1 + +x124 + x125 + x126 + x127 + x128 + x129 <= 1 + +x130 + x131 + x132 + x133 + x134 + x135 <= 1 + +x136 + x137 + x138 + x139 + x140 + x141 <= 1 + +x142 + x143 + x144 <= 1 + +x146 + x147 + x148 + x149 + x150 + x151 <= 1 + +x152 + x153 + x154 + x155 + x156 + x157 <= 1 + +x158 + x159 + x160 + x161 + x162 + x163 <= 1 + +x164 + x165 + x166 + x167 + x168 + x169 <= 1 + +x170 + x171 + x172 + x173 <= 1 + +x174 + x175 + x176 + x177 + x178 + x179 <= 1 + +x180 + x181 + x182 + x183 + x184 <= 1 + +x186 + x187 + x188 + x189 + x190 + x191 <= 1 + +x192 + x193 + x194 <= 1 + +x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 + x221 <= 1 + +x222 + x223 + x224 + x225 + x226 <= 1 + +x227 + x228 + x229 + x230 + x231 + x232 <= 1 + +x233 + x234 + x235 + x236 + x237 + x238 <= 1 + +x239 + x240 + x241 + x242 + x243 + x244 <= 1 + +x245 + x246 + x247 <= 1 + +x248 + x249 + x250 + x251 + x252 + x253 <= 1 + +x254 + x255 + x256 + x257 + x258 + x259 <= 1 + +x260 + x261 + x262 + x263 + x264 + x265 <= 1 + +x267 + x268 + x269 + x270 + x271 + x272 <= 1 + +x273 + x274 + x275 + x276 + x277 + x278 <= 1 + +x279 + x280 <= 1 + +x281 + x282 + x283 + x284 + x285 + x286 <= 1 + +x287 + x288 + x289 <= 1 + +x290 + x291 + x292 + x293 + x294 + x295 <= 1 + +x296 + x297 + x298 + x299 + x300 + x301 <= 1 + +x302 + x303 + x304 + x305 <= 1 + +x306 + x307 + x308 + x309 + x310 + x311 <= 1 + +x312 + x313 + x314 + x315 + x316 + x317 <= 1 + +x318 + x319 + x320 + x321 + x322 + x323 <= 1 + +x325 + x326 + x327 + x328 + x329 + x330 <= 1 + +x331 + x332 + x333 + x334 <= 1 + +x335 + x336 + x337 + x338 + x339 + x340 <= 1 + +x341 + x342 + x343 + x344 <= 1 + +x346 + x347 + x348 + x349 <= 1 + +x350 + x351 + x352 + x353 + x354 + x355 <= 1 + +x357 + x358 + x359 + x360 + x361 <= 1 + +x362 + x363 + x364 + x365 + x366 <= 1 + +x367 + x368 + x369 + x370 <= 1 + +x371 + x372 + x373 + x374 <= 1 + +x375 + x376 + x377 + x378 + x379 + x380 <= 1 + +x381 + x382 + x383 + x384 + x385 + x386 <= 1 + +x387 + x388 + x389 + x390 + x391 + x392 <= 1 + +x393 + x394 + x395 + x396 <= 1 + +x397 + x398 + x399 + x400 + x401 + x402 <= 1 + +x403 + x404 + x405 + x406 + x407 + x408 <= 1 + +x409 + x410 + x411 + x412 + x413 <= 1 + +x414 + x415 + x416 + x417 + x418 <= 1 + +x420 + x421 + x422 + x423 + x424 + x425 <= 1 + +x426 + x427 + x428 + x429 + x430 + x431 <= 1 + +x432 + x433 + x434 + x435 + x436 + x437 <= 1 + +x438 + x439 + x440 + x441 + x442 + x443 <= 1 + +x444 + x445 + x446 + x447 + x448 + x449 <= 1 + +x450 + x451 + x452 + x453 + x454 + x455 <= 1 + +x456 + x457 + x458 + x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 <= 1 + +x478 + x479 + x480 + x481 + x482 + x483 <= 1 + +x485 + x486 + x487 + x488 + x489 + x490 <= 1 + +x491 + x492 + x493 + x494 + x495 + x496 <= 1 + +x497 + x498 + x499 + x500 + x501 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0005.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0005.lp new file mode 100644 index 000000000..49a42846f --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0005.lp @@ -0,0 +1,1093 @@ +max + +968.59x0 + 1152.51x1 + 1084.86x2 + 1058.82x3 + 1005.29x4 + 992.239x5 + 254.194x6 + 277.614x7 + 190.722x8 + 293.203x9 + +253.872x10 + 228.397x11 + 263.42x12 + 235.643x13 + 217.991x14 + 153.439x15 + 150.046x16 + 115.936x17 + 1025.49x18 + 1515.85x19 + +1513.35x20 + 1451.62x21 + 1431.04x22 + 1411.65x23 + 972.831x24 + 1078.07x25 + 1068.39x26 + 1035.08x27 + 992.471x28 + 991.745x29 + +199.998x30 + 235.061x31 + 227.836x32 + 212.023x33 + 167.689x34 + 377.491x35 + 421.41x36 + 348.067x37 + 255.28x38 + 206.901x39 + +606.556x40 + 534.455x41 + 519.587x42 + 500.252x43 + 493.019x44 + 477.503x45 + 1924.45x46 + 2393x47 + 2336.62x48 + 2335.26x49 + +2233.51x50 + 2205.47x51 + 168.988x52 + 139.461x53 + 622.057x54 + 604.512x55 + 604.375x56 + 575.426x57 + 569.885x58 + 554.479x59 + +1618.06x60 + 2198.44x61 + 2134.48x62 + 2123.13x63 + 2066.01x64 + 2058.1x65 + 400.28x66 + 470.394x67 + 401.92x68 + 387.651x69 + +376.662x70 + 357.038x71 + 1698.92x72 + 1832.53x73 + 1807.23x74 + 1774.88x75 + 1761.06x76 + 1757.17x77 + 1492.41x78 + 1660.67x79 + +1652.47x80 + 1597.64x81 + 1581.3x82 + 1548.86x83 + 629.794x84 + 820.946x85 + 756.593x86 + 693.687x87 + 673.062x88 + 669.428x89 + +2509.74x90 + 2995.12x91 + 2937.83x92 + 2840.38x93 + 2834x94 + 2812.32x95 + 266.665x96 + 387.267x97 + 381.336x98 + 363.428x99 + +69.9242x100 + 76.7947x101 + 449.1x102 + 567.104x103 + 520.045x104 + 381.648x105 + 333.511x106 + 316.188x107 + 385.348x108 + 389.474x109 + +363.743x110 + 324.973x111 + 321.559x112 + 294.441x113 + 286.375x114 + 251.771x115 + 211.021x116 + 187.6x117 + 841.339x118 + 967.877x119 + +956.762x120 + 928.992x121 + 901.492x122 + 881.956x123 + 1628.69x124 + 1700.8x125 + 1641.65x126 + 1624.71x127 + 1599.04x128 + 1598.72x129 + +46.976x130 + 40.7577x131 + 818.24x132 + 887.324x133 + 868.547x134 + 818.226x135 + 817.048x136 + 812.277x137 + 157.295x138 + 190.552x139 + +115.018x140 + 1075.48x141 + 1389.8x142 + 1293.54x143 + 1271.81x144 + 1229.65x145 + 1220.51x146 + 186.118x147 + 203.023x148 + 104.856x149 + +952.218x150 + 1042.35x151 + 1011.57x152 + 990.544x153 + 975.032x154 + 966.4x155 + 217.658x156 + 310.53x157 + 291.168x158 + 289.393x159 + +214.288x160 + 199.794x161 + 828.316x162 + 1050.32x163 + 962.433x164 + 952.469x165 + 946.942x166 + 891.739x167 + 550.948x168 + 596.732x169 + +529.646x170 + 447.668x171 + 416.475x172 + 403.993x173 + 429.274x174 + 507.995x175 + 501.292x176 + 493.038x177 + 470.465x178 + 457.306x179 + +96.112x180 + 302.617x181 + 333.804x182 + 285.184x183 + 260.158x184 + 254.761x185 + 310.094x186 + 459.136x187 + 355.653x188 + 346.763x189 + +306.888x190 + 303.782x191 + 1689.35x192 + 2218.99x193 + 2117.18x194 + 2070.88x195 + 2041.08x196 + 2035.16x197 + 795.109x198 + 850.639x199 + +804.673x200 + 794.078x201 + 762.18x202 + 691.716x203 + 177.99x204 + 175.766x205 + 47.8259x206 + 318.24x207 + 319.374x208 + 311.188x209 + +212.461x210 + 216.807x211 + 98.9505x212 + 100.326x213 + 52.504x214 + 1263.26x215 + 1463.95x216 + 1446.75x217 + 1427.2x218 + 1388.5x219 + +1338.66x220 + 503.754x221 + 509.677x222 + 474.577x223 + 465.81x224 + 440.462x225 + 437.679x226 + 1224.02x227 + 1332.85x228 + 1326.57x229 + +1188.63x230 + 1182.36x231 + 1163.25x232 + 545.993x233 + 613.553x234 + 562.819x235 + 559.75x236 + 532.092x237 + 531.588x238 + 1969.13x239 + +2311.1x240 + 2180.59x241 + 2150.71x242 + 2138.73x243 + 2112.76x244 + 106.382x245 + 2160.55x246 + 2163.86x247 + 2073.33x248 + 2060.19x249 + +2046.19x250 + 2025.84x251 + 332.901x252 + 468.612x253 + 379.513x254 + 356.52x255 + 281.743x256 + 128.81x257 + 1349.22x258 + 1423.28x259 + +1333.85x260 + 1301.04x261 + 1271.34x262 + 1233.19x263 + 718.97x264 + 756.907x265 + 735.679x266 + 684.034x267 + 677.296x268 + 672.98x269 + +220.297x270 + 184.056x271 + 183.807x272 + 143.172x273 + 542.463x274 + 754.347x275 + 725.783x276 + 704.409x277 + 701.946x278 + 701.435x279 + +125.356x280 + 363.601x281 + 471.822x282 + 428.835x283 + 396.381x284 + 354.714x285 + 353.598x286 + 2376.64x287 + 2680.67x288 + 2662.94x289 + +2654.08x290 + 2632.8x291 + 2611.6x292 + 785.805x293 + 966.301x294 + 861.751x295 + 840.17x296 + 800.036x297 + 784.423x298 + 218.105x299 + +289.355x300 + 254.863x301 + 212.335x302 + 177.743x303 + 156.161x304 + 382.203x305 + 260.264x306 + 230.551x307 + 173.529x308 + 154.346x309 + +794.837x310 + 745.359x311 + 720.406x312 + 690.731x313 + 653.981x314 + 653.546x315 + 56.9686x316 + 3165.57x317 + 3506.4x318 + 3470.19x319 + +3469.13x320 + 3442.49x321 + 3439.02x322 + 1592.11x323 + 1701.5x324 + 1689.76x325 + 1685.83x326 + 1678.22x327 + 1619.54x328 + 1138.37x329 + +1243.63x330 + 1238.94x331 + 1209.43x332 + 1199.7x333 + 1182.07x334 + 419.956x335 + 394.824x336 + 373.474x337 + 369.024x338 + 2066.7x339 + +2387.74x340 + 2321.98x341 + 2250.64x342 + 2249.35x343 + 2248.54x344 + 1755.45x345 + 1904.9x346 + 1893.09x347 + 1886.32x348 + 1885.23x349 + +1858.44x350 + 1244.8x351 + 1632.49x352 + 1488.11x353 + 1403.59x354 + 1385.7x355 + 1332.95x356 + 316.23x357 + 252.082x358 + 247.935x359 + +234.288x360 + 187.331x361 + 218.921x362 + 160.179x363 + 449.324x364 + 673.022x365 + 615.277x366 + 593.596x367 + 540.155x368 + 538.271x369 + +60.8289x370 + 445.831x371 + 656.052x372 + 580.476x373 + 526.491x374 + 500.819x375 + 472.324x376 + 938.279x377 + 1151.95x378 + 1122.97x379 + +1094.49x380 + 1090.34x381 + 1063.63x382 + 346.942x383 + 456.166x384 + 426.117x385 + 354.438x386 + 245.534x387 + 245.212x388 + 314.242x389 + +288.857x390 + 267.031x391 + 213.052x392 + 780.265x393 + 960.027x394 + 913.626x395 + 910.955x396 + 849.695x397 + 845.293x398 + 661.29x399 + +786.615x400 + 675.282x401 + 605.456x402 + 599.443x403 + 592.717x404 + 89.6853x405 + 1804.45x406 + 2109.57x407 + 2050.14x408 + 2010.77x409 + +1959.7x410 + 1935.91x411 + 1475.21x412 + 1603.9x413 + 1591.93x414 + 1521.84x415 + 1483.07x416 + 1471.91x417 + 234.97x418 + 228.924x419 + +184.006x420 + 179.298x421 + 50.4609x422 + 117.174x423 + 415.155x424 + 450.523x425 + 447.808x426 + 443.802x427 + 443.211x428 + 399.311x429 + +1592.16x430 + 1570.97x431 + 1541.06x432 + 1490.79x433 + 1454.98x434 + 1444.04x435 + 331.276x436 + 346.193x437 + 327.289x438 + 305.965x439 + +183.208x440 + 365.032x441 + 415.332x442 + 361.049x443 + 353.619x444 + 320.758x445 + 294.699x446 + 757.718x447 + 838.481x448 + 792.983x449 + +772.174x450 + 759.331x451 + 743.718x452 + 747.139x453 + 924.915x454 + 867.945x455 + 857.47x456 + 790.934x457 + 740.431x458 + 93.5506x459 + +1093.97x460 + 1453.51x461 + 1369.28x462 + 1343.23x463 + 1335.01x464 + 1308.5x465 + 911.767x466 + 1170.54x467 + 1158.12x468 + 1106.08x469 + +1099.81x470 + 1080.44x471 + 1560.03x472 + 1814.19x473 + 1780.3x474 + 1774.32x475 + 1764.92x476 + 1756.66x477 + 103.975x478 + 215.559x479 + +320.146x480 + 287.498x481 + 261.629x482 + 177.729x483 + 180.718x484 + 136.021x485 + 340.117x486 + 434.757x487 + 342.332x488 + 316.032x489 + +309.035x490 + 134.216x491 + 78.5282x492 + 95.4105x493 + 870.926x494 + 1216.97x495 + 1141.35x496 + 1031.41x497 + 1009.54x498 + 1003.25x499 + + +st + +x60 + x63 + x90 + x91 + x95 + x118 + x120 + x122 + x123 + x125 ++ x127 + x128 + x132 + x134 + x184 + x242 + x276 + x279 + x292 + x306 ++ x307 + x308 + x317 + x324 + x339 + x340 + x341 + x345 + x397 + x459 ++ x466 + x470 + x471 + x490 <= 1 + +x60 + x63 + x64 + x81 + x91 + x94 + x95 + x118 + x120 + x122 ++ x123 + x124 + x125 + x126 + x127 + x128 + x134 + x181 + x183 + x227 ++ x239 + x242 + x260 + x276 + x287 + x289 + x290 + x291 + x292 + x305 ++ x307 + x308 + x317 + x318 + x321 + x324 + x329 + x331 + x334 + x339 ++ x340 + x341 + x343 + x345 + x346 + x347 + x350 + x366 + x397 + x406 ++ x453 + x456 + x458 + x459 + x466 + x467 + x468 + x470 + x471 + x490 + <= 1 + +x19 + x60 + x61 + x62 + x63 + x64 + x80 + x81 + x90 + x91 ++ x93 + x94 + x95 + x105 + x118 + x119 + x120 + x122 + x123 + x124 ++ x125 + x126 + x127 + x128 + x129 + x134 + x181 + x182 + x183 + x184 ++ x185 + x200 + x227 + x232 + x239 + x246 + x248 + x249 + x251 + x258 ++ x260 + x261 + x262 + x263 + x279 + x287 + x288 + x289 + x290 + x291 ++ x292 + x308 + x309 + x321 + x324 + x329 + x331 + x332 + x333 + x334 ++ x339 + x340 + x341 + x342 + x343 + x344 + x345 + x350 + x366 + x406 ++ x453 + x456 + x458 + x466 + x470 + x471 + x472 + x492 + x493 <= 1 + +x50 + x51 + x60 + x61 + x62 + x63 + x64 + x74 + x78 + x80 ++ x81 + x90 + x91 + x92 + x93 + x94 + x95 + x96 + x99 + x118 ++ x119 + x122 + x123 + x124 + x125 + x126 + x127 + x128 + x152 + x166 ++ x185 + x194 + x195 + x196 + x219 + x227 + x232 + x239 + x241 + x242 ++ x246 + x247 + x248 + x249 + x251 + x258 + x260 + x261 + x262 + x263 ++ x279 + x287 + x288 + x289 + x290 + x291 + x292 + x321 + x322 + x324 ++ x326 + x329 + x331 + x333 + x334 + x339 + x341 + x342 + x343 + x360 ++ x398 + x406 + x407 + x408 + x410 + x411 + x416 + x453 + x456 + x458 ++ x466 + x467 + x469 + x472 + x473 + x496 + x497 <= 1 + +x23 + x62 + x64 + x74 + x78 + x80 + x85 + x91 + x94 + x96 ++ x97 + x98 + x118 + x119 + x121 + x122 + x128 + x135 + x165 + x166 ++ x196 + x198 + x201 + x202 + x203 + x219 + x220 + x239 + x240 + x241 ++ x242 + x243 + x247 + x248 + x249 + x251 + x258 + x262 + x263 + x287 ++ x288 + x289 + x290 + x291 + x292 + x317 + x318 + x321 + x322 + x324 ++ x326 + x329 + x331 + x332 + x333 + x334 + x339 + x340 + x341 + x342 ++ x344 + x351 + x354 + x355 + x356 + x376 + x393 + x395 + x396 + x397 ++ x398 + x406 + x407 + x408 + x411 + x468 + x472 + x476 <= 1 + +x23 + x50 + x62 + x64 + x65 + x74 + x80 + x82 + x85 + x91 ++ x94 + x96 + x98 + x119 + x121 + x122 + x128 + x166 + x196 + x198 ++ x199 + x201 + x202 + x215 + x219 + x220 + x239 + x240 + x242 + x243 ++ x246 + x247 + x248 + x249 + x251 + x258 + x262 + x263 + x287 + x288 ++ x289 + x290 + x291 + x292 + x317 + x318 + x319 + x321 + x322 + x326 ++ x339 + x341 + x342 + x344 + x351 + x352 + x354 + x355 + x356 + x393 ++ x397 + x406 + x408 + x411 + x415 + x472 + x485 <= 1 + +x23 + x39 + x63 + x64 + x65 + x73 + x75 + x77 + x80 + x82 ++ x92 + x94 + x119 + x121 + x132 + x145 + x162 + x163 + x164 + x165 ++ x166 + x167 + x175 + x196 + x198 + x199 + x201 + x202 + x203 + x208 ++ x215 + x219 + x239 + x242 + x243 + x247 + x290 + x296 + x317 + x318 ++ x319 + x320 + x321 + x322 + x328 + x331 + x341 + x342 + x344 + x351 ++ x352 + x353 + x354 + x355 + x356 + x382 + x394 + x395 + x397 + x406 ++ x407 + x408 + x409 + x411 + x415 + x417 + x460 + x462 + x465 + x485 + <= 1 + +x2 + x23 + x40 + x41 + x43 + x48 + x49 + x62 + x63 + x64 ++ x65 + x73 + x75 + x77 + x80 + x82 + x90 + x91 + x97 + x119 ++ x121 + x132 + x139 + x140 + x143 + x145 + x162 + x163 + x164 + x165 ++ x166 + x175 + x196 + x203 + x215 + x229 + x239 + x242 + x243 + x244 ++ x247 + x249 + x258 + x289 + x290 + x317 + x318 + x319 + x320 + x321 ++ x322 + x331 + x342 + x343 + x344 + x346 + x348 + x349 + x351 + x352 ++ x353 + x354 + x355 + x356 + x372 + x394 + x395 + x396 + x397 + x406 ++ x407 + x408 + x409 + x411 + x460 + x465 + x473 + x474 <= 1 + +x15 + x16 + x23 + x49 + x62 + x63 + x64 + x65 + x75 + x77 ++ x82 + x119 + x138 + x139 + x140 + x146 + x175 + x192 + x196 + x239 ++ x243 + x244 + x291 + x301 + x317 + x319 + x320 + x321 + x322 + x346 ++ x349 + x351 + x352 + x353 + x354 + x355 + x356 + x368 + x373 + x382 ++ x393 + x394 + x395 + x396 + x397 + x407 + x408 + x409 + x460 + x472 ++ x474 <= 1 + +x15 + x17 + x63 + x65 + x119 + x138 + x139 + x175 + x239 + x243 ++ x244 + x351 + x356 + x382 + x395 <= 1 + +x9 + x60 + x61 + x63 + x64 + x80 + x81 + x90 + x91 + x95 ++ x118 + x120 + x122 + x123 + x124 + x125 + x126 + x127 + x128 + x129 ++ x132 + x134 + x181 + x184 + x261 + x262 + x276 + x279 + x282 + x287 ++ x289 + x290 + x291 + x292 + x305 + x306 + x307 + x309 + x318 + x324 ++ x329 + x331 + x334 + x339 + x340 + x341 + x342 + x343 + x366 + x409 ++ x431 + x453 + x456 + x458 + x465 + x466 + x467 + x468 + x470 + x471 ++ x472 + x486 + x487 + x490 <= 1 + +x60 + x61 + x62 + x63 + x64 + x80 + x81 + x90 + x91 + x93 ++ x94 + x95 + x118 + x119 + x120 + x122 + x123 + x124 + x125 + x126 ++ x127 + x128 + x129 + x134 + x181 + x182 + x183 + x184 + x200 + x239 ++ x241 + x246 + x248 + x249 + x250 + x251 + x258 + x260 + x261 + x262 ++ x263 + x276 + x279 + x282 + x287 + x288 + x289 + x290 + x291 + x292 ++ x305 + x306 + x307 + x308 + x309 + x321 + x322 + x324 + x329 + x331 ++ x332 + x334 + x339 + x340 + x341 + x342 + x343 + x345 + x346 + x347 ++ x350 + x366 + x397 + x406 + x453 + x456 + x458 + x466 + x467 + x468 ++ x469 + x470 + x471 + x472 + x473 + x487 + x490 + x492 <= 1 + +x19 + x50 + x51 + x60 + x62 + x64 + x80 + x81 + x90 + x91 ++ x93 + x94 + x95 + x118 + x119 + x120 + x122 + x123 + x124 + x125 ++ x126 + x127 + x128 + x129 + x134 + x150 + x152 + x182 + x183 + x185 ++ x194 + x195 + x231 + x232 + x239 + x241 + x246 + x248 + x249 + x251 ++ x258 + x260 + x261 + x262 + x263 + x279 + x287 + x288 + x289 + x290 ++ x291 + x292 + x309 + x322 + x324 + x329 + x330 + x332 + x333 + x334 ++ x339 + x340 + x341 + x342 + x343 + x344 + x345 + x346 + x350 + x352 ++ x357 + x358 + x360 + x389 + x391 + x406 + x408 + x410 + x411 + x413 ++ x416 + x453 + x456 + x458 + x466 + x467 + x468 + x469 + x470 + x472 ++ x473 + x493 + x497 <= 1 + +x19 + x27 + x47 + x49 + x50 + x51 + x60 + x61 + x62 + x63 ++ x64 + x80 + x81 + x88 + x90 + x91 + x92 + x93 + x94 + x95 ++ x99 + x124 + x126 + x127 + x128 + x129 + x134 + x150 + x152 + x194 ++ x195 + x216 + x219 + x227 + x231 + x232 + x239 + x240 + x241 + x246 ++ x247 + x248 + x249 + x250 + x251 + x263 + x279 + x287 + x288 + x289 ++ x290 + x291 + x292 + x318 + x320 + x321 + x322 + x324 + x326 + x329 ++ x330 + x331 + x332 + x333 + x334 + x339 + x341 + x348 + x350 + x355 ++ x357 + x358 + x360 + x376 + x378 + x389 + x390 + x391 + x397 + x398 ++ x406 + x408 + x410 + x413 + x416 + x456 + x458 + x466 + x467 + x468 ++ x469 + x470 + x472 + x473 <= 1 + +x27 + x60 + x61 + x62 + x63 + x64 + x65 + x74 + x78 + x80 ++ x81 + x91 + x92 + x93 + x94 + x95 + x96 + x98 + x99 + x118 ++ x121 + x122 + x128 + x129 + x152 + x166 + x194 + x195 + x196 + x218 ++ x219 + x220 + x231 + x232 + x236 + x239 + x240 + x241 + x242 + x243 ++ x246 + x247 + x248 + x249 + x250 + x251 + x258 + x260 + x262 + x263 ++ x287 + x288 + x289 + x290 + x291 + x292 + x318 + x321 + x322 + x324 ++ x326 + x327 + x329 + x330 + x331 + x332 + x333 + x334 + x339 + x340 ++ x341 + x342 + x343 + x344 + x347 + x348 + x354 + x355 + x358 + x376 ++ x391 + x394 + x395 + x396 + x397 + x398 + x406 + x407 + x408 + x410 ++ x411 + x412 + x413 + x416 + x449 + x458 + x462 + x466 + x467 + x469 ++ x472 + x473 + x496 + x497 <= 1 + +x23 + x64 + x65 + x80 + x82 + x85 + x91 + x92 + x94 + x96 ++ x97 + x118 + x119 + x121 + x122 + x128 + x132 + x135 + x163 + x164 ++ x165 + x166 + x193 + x196 + x197 + x198 + x199 + x201 + x202 + x203 ++ x215 + x220 + x228 + x239 + x240 + x242 + x243 + x246 + x247 + x248 ++ x249 + x251 + x258 + x262 + x263 + x288 + x289 + x290 + x291 + x292 ++ x317 + x318 + x321 + x322 + x324 + x325 + x326 + x327 + x328 + x331 ++ x332 + x339 + x340 + x341 + x342 + x344 + x354 + x355 + x356 + x376 ++ x393 + x395 + x396 + x397 + x398 + x408 + x461 + x463 + x465 + x472 ++ x476 + x483 + x485 <= 1 + +x1 + x2 + x5 + x23 + x35 + x36 + x39 + x62 + x63 + x64 ++ x65 + x73 + x74 + x75 + x76 + x77 + x82 + x85 + x90 + x91 ++ x92 + x94 + x97 + x119 + x128 + x132 + x133 + x135 + x143 + x145 ++ x162 + x163 + x164 + x165 + x166 + x167 + x175 + x193 + x194 + x196 ++ x197 + x198 + x199 + x200 + x201 + x202 + x203 + x215 + x216 + x220 ++ x228 + x229 + x235 + x239 + x242 + x243 + x244 + x247 + x248 + x249 ++ x251 + x258 + x262 + x263 + x288 + x289 + x290 + x291 + x292 + x317 ++ x318 + x319 + x320 + x321 + x322 + x324 + x325 + x326 + x327 + x328 ++ x331 + x332 + x341 + x342 + x344 + x348 + x349 + x351 + x352 + x353 ++ x354 + x355 + x356 + x365 + x367 + x372 + x376 + x382 + x393 + x394 ++ x395 + x396 + x397 + x406 + x407 + x408 + x409 + x412 + x415 + x417 ++ x452 + x460 + x461 + x462 + x465 + x472 + x473 + x476 + x483 <= 1 + +x2 + x3 + x23 + x40 + x41 + x43 + x48 + x62 + x63 + x64 ++ x65 + x73 + x75 + x77 + x78 + x90 + x91 + x94 + x97 + x121 ++ x135 + x143 + x145 + x162 + x164 + x165 + x169 + x196 + x197 + x215 ++ x228 + x229 + x239 + x242 + x243 + x244 + x262 + x289 + x290 + x292 ++ x317 + x318 + x319 + x320 + x321 + x322 + x326 + x327 + x331 + x342 ++ x343 + x344 + x346 + x349 + x351 + x352 + x353 + x354 + x355 + x364 ++ x365 + x366 + x367 + x368 + x369 + x372 + x373 + x382 + x387 + x393 ++ x394 + x395 + x396 + x407 + x408 + x409 + x415 + x417 + x456 + x457 ++ x472 + x474 + x476 + x483 + x484 + x496 <= 1 + +x2 + x16 + x21 + x43 + x48 + x49 + x64 + x65 + x72 + x75 ++ x91 + x138 + x140 + x164 + x165 + x175 + x192 + x196 + x317 + x318 ++ x319 + x320 + x321 + x322 + x346 + x349 + x351 + x352 + x353 + x354 ++ x355 + x356 + x368 + x373 + x382 + x393 + x394 + x396 + x408 + x415 ++ x417 + x460 + x472 + x476 + x484 <= 1 + +x17 + x65 + x175 + x239 + x243 + x322 + x346 + x356 + x439 <= 1 + +x9 + x10 + x60 + x61 + x63 + x80 + x81 + x85 + x118 + x120 ++ x123 + x125 + x126 + x127 + x128 + x129 + x134 + x230 + x246 + x248 ++ x251 + x262 + x279 + x287 + x290 + x291 + x292 + x305 + x306 + x324 ++ x329 + x339 + x340 + x341 + x343 + x347 + x408 + x409 + x410 + x411 ++ x431 + x456 + x458 + x465 + x466 + x467 + x470 + x471 + x482 + x486 ++ x487 + x490 + x497 <= 1 + +x9 + x10 + x11 + x13 + x47 + x60 + x61 + x62 + x63 + x64 ++ x80 + x81 + x82 + x85 + x88 + x90 + x95 + x118 + x120 + x122 ++ x123 + x125 + x126 + x127 + x128 + x129 + x134 + x219 + x230 + x246 ++ x248 + x249 + x250 + x251 + x254 + x262 + x276 + x277 + x279 + x287 ++ x290 + x291 + x292 + x316 + x324 + x329 + x339 + x340 + x341 + x343 ++ x344 + x346 + x347 + x348 + x349 + x350 + x355 + x406 + x408 + x409 ++ x410 + x411 + x431 + x456 + x458 + x466 + x467 + x470 + x471 + x473 ++ x487 + x494 + x497 + x499 <= 1 + +x47 + x49 + x50 + x51 + x60 + x61 + x62 + x63 + x64 + x74 ++ x78 + x79 + x80 + x81 + x82 + x88 + x90 + x91 + x92 + x93 ++ x94 + x95 + x120 + x124 + x125 + x126 + x127 + x128 + x129 + x134 ++ x137 + x152 + x185 + x200 + x219 + x231 + x239 + x240 + x251 + x253 ++ x254 + x261 + x262 + x264 + x266 + x274 + x276 + x279 + x287 + x288 ++ x289 + x290 + x291 + x292 + x317 + x318 + x322 + x324 + x329 + x330 ++ x332 + x333 + x334 + x339 + x340 + x341 + x342 + x343 + x344 + x345 ++ x346 + x347 + x349 + x350 + x352 + x355 + x359 + x406 + x408 + x409 ++ x410 + x411 + x431 + x435 + x458 + x466 + x467 + x468 + x469 + x470 ++ x471 + x473 + x475 + x487 + x494 + x497 + x499 <= 1 + +x27 + x39 + x47 + x49 + x60 + x62 + x63 + x74 + x78 + x79 ++ x80 + x81 + x82 + x83 + x88 + x90 + x91 + x92 + x93 + x94 ++ x95 + x99 + x121 + x124 + x126 + x127 + x128 + x129 + x152 + x193 ++ x194 + x196 + x199 + x200 + x203 + x216 + x218 + x219 + x220 + x227 ++ x231 + x232 + x240 + x241 + x246 + x249 + x251 + x252 + x253 + x254 ++ x263 + x264 + x266 + x274 + x276 + x279 + x288 + x289 + x290 + x291 ++ x292 + x317 + x318 + x320 + x321 + x322 + x324 + x327 + x329 + x330 ++ x332 + x333 + x334 + x339 + x340 + x341 + x342 + x343 + x344 + x347 ++ x348 + x350 + x352 + x354 + x355 + x357 + x359 + x378 + x389 + x390 ++ x392 + x406 + x408 + x410 + x411 + x412 + x413 + x416 + x431 + x466 ++ x467 + x469 + x470 + x473 + x494 + x496 + x497 <= 1 + +x26 + x27 + x28 + x47 + x48 + x60 + x62 + x63 + x64 + x65 ++ x74 + x78 + x79 + x80 + x81 + x82 + x91 + x92 + x93 + x94 ++ x95 + x98 + x99 + x121 + x122 + x124 + x133 + x137 + x152 + x187 ++ x193 + x194 + x195 + x196 + x199 + x200 + x203 + x216 + x218 + x219 ++ x220 + x227 + x230 + x232 + x239 + x240 + x241 + x242 + x244 + x246 ++ x247 + x248 + x249 + x250 + x251 + x253 + x254 + x263 + x264 + x266 ++ x267 + x268 + x269 + x287 + x288 + x289 + x290 + x291 + x292 + x317 ++ x318 + x320 + x321 + x322 + x323 + x324 + x325 + x326 + x327 + x328 ++ x329 + x330 + x331 + x332 + x333 + x334 + x339 + x340 + x341 + x342 ++ x343 + x344 + x347 + x348 + x352 + x354 + x355 + x376 + x377 + x378 ++ x379 + x382 + x392 + x394 + x395 + x396 + x398 + x406 + x407 + x408 ++ x410 + x411 + x412 + x413 + x415 + x416 + x452 + x458 + x461 + x462 ++ x464 + x465 + x470 + x472 + x496 + x497 <= 1 + +x1 + x3 + x20 + x22 + x23 + x28 + x38 + x47 + x48 + x61 ++ x62 + x63 + x64 + x65 + x72 + x73 + x74 + x75 + x76 + x77 ++ x78 + x79 + x80 + x81 + x82 + x83 + x91 + x92 + x93 + x94 ++ x95 + x98 + x127 + x132 + x133 + x135 + x136 + x137 + x148 + x162 ++ x166 + x193 + x194 + x196 + x198 + x199 + x200 + x201 + x202 + x203 ++ x215 + x216 + x217 + x218 + x219 + x220 + x228 + x229 + x231 + x232 ++ x235 + x239 + x240 + x241 + x242 + x244 + x248 + x250 + x263 + x264 ++ x266 + x267 + x268 + x288 + x289 + x290 + x291 + x292 + x317 + x318 ++ x319 + x320 + x321 + x322 + x323 + x325 + x326 + x327 + x328 + x330 ++ x340 + x342 + x343 + x344 + x347 + x348 + x352 + x354 + x355 + x356 ++ x367 + x377 + x378 + x382 + x396 + x398 + x406 + x407 + x410 + x411 ++ x412 + x413 + x414 + x415 + x416 + x417 + x427 + x452 + x460 + x461 ++ x462 + x464 + x465 + x472 + x473 + x474 + x475 + x496 + x497 <= 1 + +x1 + x2 + x3 + x5 + x19 + x20 + x22 + x23 + x25 + x26 ++ x28 + x35 + x36 + x37 + x38 + x41 + x47 + x48 + x50 + x51 ++ x59 + x62 + x63 + x64 + x65 + x72 + x73 + x74 + x75 + x76 ++ x77 + x78 + x79 + x83 + x90 + x91 + x92 + x93 + x94 + x119 ++ x127 + x132 + x133 + x135 + x145 + x162 + x163 + x164 + x165 + x166 ++ x167 + x169 + x177 + x192 + x193 + x194 + x196 + x197 + x198 + x199 ++ x200 + x201 + x202 + x215 + x216 + x217 + x218 + x219 + x220 + x228 ++ x229 + x231 + x232 + x235 + x240 + x241 + x242 + x243 + x244 + x247 ++ x248 + x249 + x250 + x251 + x288 + x289 + x290 + x291 + x292 + x317 ++ x318 + x319 + x320 + x321 + x322 + x323 + x325 + x326 + x327 + x328 ++ x330 + x331 + x333 + x342 + x343 + x344 + x348 + x352 + x356 + x364 ++ x365 + x366 + x367 + x369 + x371 + x372 + x374 + x375 + x377 + x382 ++ x393 + x394 + x395 + x396 + x397 + x406 + x407 + x408 + x410 + x411 ++ x412 + x413 + x415 + x416 + x417 + x427 + x452 + x457 + x460 + x461 ++ x462 + x464 + x465 + x472 + x473 + x474 + x475 + x476 + x496 <= 1 + +x2 + x3 + x5 + x35 + x36 + x37 + x40 + x41 + x43 + x44 ++ x48 + x62 + x64 + x65 + x73 + x74 + x75 + x77 + x78 + x79 ++ x83 + x121 + x135 + x137 + x152 + x153 + x162 + x163 + x164 + x165 ++ x166 + x167 + x169 + x177 + x191 + x192 + x193 + x194 + x196 + x197 ++ x199 + x200 + x201 + x202 + x204 + x215 + x216 + x218 + x228 + x239 ++ x242 + x243 + x244 + x247 + x248 + x249 + x250 + x251 + x258 + x288 ++ x289 + x290 + x291 + x292 + x298 + x318 + x320 + x322 + x326 + x330 ++ x342 + x343 + x344 + x351 + x353 + x356 + x364 + x366 + x367 + x368 ++ x369 + x382 + x393 + x394 + x395 + x396 + x409 + x412 + x415 + x417 ++ x457 + x460 + x461 + x463 + x464 + x465 + x472 + x474 + x475 + x476 ++ x496 <= 1 + +x2 + x3 + x18 + x23 + x36 + x37 + x43 + x44 + x63 + x64 ++ x65 + x73 + x74 + x75 + x77 + x83 + x162 + x163 + x164 + x165 ++ x169 + x191 + x192 + x193 + x196 + x197 + x201 + x202 + x204 + x205 ++ x228 + x229 + x239 + x242 + x243 + x244 + x250 + x258 + x262 + x289 ++ x292 + x317 + x318 + x319 + x320 + x321 + x322 + x326 + x327 + x343 ++ x349 + x351 + x352 + x353 + x354 + x356 + x364 + x365 + x367 + x368 ++ x374 + x382 + x387 + x393 + x407 + x411 + x412 + x415 + x417 + x452 ++ x457 + x460 + x461 + x463 + x464 + x465 + x475 + x476 + x484 <= 1 + +x2 + x23 + x63 + x65 + x73 + x74 + x75 + x77 + x83 + x162 ++ x163 + x164 + x165 + x169 + x187 + x191 + x228 + x229 + x239 + x242 ++ x243 + x244 + x258 + x262 + x289 + x318 + x319 + x320 + x321 + x322 ++ x326 + x343 + x349 + x351 + x365 + x368 + x393 + x412 + x415 + x417 ++ x450 + x460 + x461 + x471 <= 1 + +x11 + x14 + x60 + x61 + x62 + x64 + x81 + x82 + x85 + x88 ++ x118 + x123 + x127 + x145 + x250 + x276 + x277 + x287 + x291 + x318 ++ x322 + x340 + x343 + x344 + x345 + x346 + x347 + x348 + x349 + x350 ++ x353 + x478 + x479 + x480 + x494 + x497 + x499 <= 1 + +x10 + x11 + x13 + x14 + x49 + x60 + x61 + x62 + x63 + x64 ++ x80 + x81 + x82 + x85 + x88 + x89 + x118 + x120 + x122 + x123 ++ x126 + x127 + x134 + x230 + x231 + x241 + x250 + x257 + x261 + x274 ++ x276 + x279 + x287 + x291 + x318 + x322 + x324 + x330 + x339 + x340 ++ x342 + x343 + x344 + x345 + x346 + x347 + x348 + x349 + x350 + x406 ++ x408 + x409 + x410 + x411 + x466 + x471 + x475 + x494 + x497 + x499 + <= 1 + +x49 + x60 + x61 + x64 + x74 + x76 + x78 + x81 + x82 + x84 ++ x88 + x89 + x90 + x92 + x93 + x94 + x95 + x126 + x127 + x129 ++ x231 + x239 + x240 + x241 + x246 + x249 + x251 + x252 + x254 + x257 ++ x267 + x268 + x269 + x291 + x318 + x322 + x324 + x329 + x330 + x333 ++ x339 + x340 + x341 + x342 + x343 + x344 + x345 + x347 + x350 + x355 ++ x406 + x408 + x409 + x410 + x411 + x413 + x416 + x431 + x435 + x466 ++ x467 + x468 + x471 + x473 + x475 + x480 + x494 + x496 + x497 + x499 + <= 1 + +x5 + x27 + x39 + x49 + x60 + x61 + x72 + x74 + x76 + x78 ++ x79 + x81 + x82 + x83 + x84 + x89 + x90 + x92 + x93 + x94 ++ x95 + x121 + x126 + x127 + x129 + x136 + x216 + x218 + x219 + x227 ++ x229 + x230 + x231 + x232 + x240 + x246 + x247 + x249 + x251 + x252 ++ x253 + x254 + x256 + x264 + x266 + x267 + x268 + x269 + x318 + x320 ++ x321 + x324 + x330 + x332 + x333 + x334 + x339 + x341 + x342 + x343 ++ x344 + x345 + x346 + x347 + x348 + x350 + x359 + x377 + x378 + x394 ++ x398 + x412 + x413 + x416 + x431 + x435 + x462 + x466 + x467 + x468 ++ x469 + x470 + x471 + x473 + x474 + x476 + x477 + x495 + x496 + x497 + <= 1 + +x19 + x24 + x25 + x26 + x27 + x28 + x29 + x60 + x61 + x65 ++ x72 + x73 + x74 + x75 + x76 + x77 + x78 + x79 + x80 + x81 ++ x82 + x83 + x91 + x92 + x93 + x95 + x121 + x126 + x127 + x133 ++ x135 + x136 + x142 + x152 + x187 + x193 + x194 + x195 + x200 + x203 ++ x207 + x216 + x217 + x218 + x219 + x220 + x227 + x228 + x229 + x230 ++ x231 + x232 + x246 + x247 + x249 + x250 + x251 + x252 + x253 + x263 ++ x264 + x265 + x266 + x267 + x268 + x269 + x287 + x288 + x289 + x290 ++ x291 + x292 + x294 + x318 + x321 + x329 + x330 + x331 + x332 + x333 ++ x334 + x339 + x341 + x342 + x344 + x347 + x348 + x352 + x353 + x354 ++ x355 + x369 + x372 + x374 + x377 + x378 + x379 + x380 + x382 + x392 ++ x394 + x395 + x398 + x406 + x407 + x410 + x411 + x412 + x413 + x415 ++ x416 + x431 + x435 + x462 + x464 + x465 + x467 + x468 + x470 + x472 ++ x473 + x474 + x475 + x476 + x477 + x495 + x496 + x497 <= 1 + +x3 + x19 + x20 + x22 + x23 + x24 + x25 + x26 + x27 + x28 ++ x29 + x38 + x47 + x48 + x50 + x62 + x63 + x64 + x65 + x72 ++ x73 + x74 + x75 + x76 + x77 + x78 + x79 + x81 + x83 + x90 ++ x91 + x92 + x93 + x94 + x95 + x126 + x127 + x132 + x133 + x135 ++ x136 + x137 + x192 + x193 + x194 + x195 + x196 + x197 + x199 + x201 ++ x215 + x216 + x217 + x218 + x219 + x220 + x227 + x228 + x229 + x230 ++ x231 + x232 + x240 + x241 + x242 + x246 + x247 + x248 + x249 + x250 ++ x251 + x263 + x264 + x265 + x266 + x267 + x268 + x269 + x287 + x288 ++ x289 + x290 + x291 + x292 + x297 + x317 + x318 + x319 + x320 + x321 ++ x322 + x323 + x326 + x327 + x328 + x330 + x333 + x334 + x342 + x343 ++ x344 + x347 + x348 + x352 + x353 + x354 + x355 + x356 + x365 + x369 ++ x371 + x372 + x374 + x398 + x406 + x407 + x410 + x411 + x412 + x413 ++ x414 + x415 + x416 + x417 + x427 + x462 + x464 + x465 + x468 + x472 ++ x473 + x474 + x475 + x476 + x477 + x495 + x496 + x497 <= 1 + +x0 + x1 + x2 + x3 + x5 + x19 + x20 + x21 + x22 + x23 ++ x24 + x26 + x27 + x28 + x29 + x35 + x37 + x38 + x44 + x47 ++ x48 + x50 + x51 + x55 + x59 + x62 + x63 + x68 + x72 + x73 ++ x74 + x76 + x77 + x78 + x79 + x83 + x91 + x93 + x95 + x101 ++ x132 + x133 + x135 + x136 + x137 + x144 + x145 + x150 + x177 + x192 ++ x193 + x194 + x195 + x196 + x197 + x205 + x216 + x217 + x218 + x219 ++ x220 + x235 + x239 + x242 + x248 + x249 + x251 + x266 + x267 + x288 ++ x290 + x291 + x317 + x318 + x319 + x320 + x321 + x323 + x325 + x326 ++ x327 + x328 + x330 + x333 + x342 + x344 + x348 + x351 + x354 + x356 ++ x364 + x365 + x367 + x371 + x374 + x375 + x382 + x393 + x398 + x401 ++ x405 + x407 + x410 + x411 + x412 + x413 + x415 + x417 + x431 + x460 ++ x464 + x465 + x472 + x474 + x475 + x476 + x477 + x496 <= 1 + +x0 + x1 + x2 + x3 + x5 + x18 + x20 + x21 + x23 + x24 ++ x28 + x29 + x41 + x43 + x44 + x47 + x68 + x71 + x73 + x74 ++ x75 + x76 + x77 + x78 + x83 + x92 + x93 + x101 + x119 + x128 ++ x133 + x137 + x150 + x152 + x153 + x162 + x163 + x164 + x165 + x166 ++ x167 + x168 + x169 + x171 + x177 + x191 + x192 + x193 + x194 + x195 ++ x196 + x197 + x204 + x205 + x215 + x216 + x218 + x220 + x228 + x239 ++ x240 + x242 + x243 + x244 + x251 + x267 + x289 + x290 + x292 + x298 ++ x317 + x318 + x319 + x320 + x321 + x322 + x326 + x327 + x343 + x349 ++ x351 + x352 + x353 + x356 + x364 + x365 + x366 + x368 + x369 + x371 ++ x372 + x374 + x375 + x376 + x382 + x393 + x396 + x406 + x407 + x410 ++ x411 + x412 + x415 + x416 + x417 + x452 + x457 + x460 + x461 + x462 ++ x463 + x464 + x465 + x472 + x474 + x475 + x476 <= 1 + +x2 + x18 + x23 + x28 + x65 + x73 + x75 + x77 + x100 + x101 ++ x128 + x137 + x162 + x169 + x186 + x193 + x196 + x197 + x204 + x205 ++ x228 + x239 + x242 + x243 + x244 + x247 + x289 + x292 + x297 + x317 ++ x320 + x321 + x327 + x343 + x351 + x353 + x356 + x364 + x368 + x369 ++ x372 + x387 + x406 + x411 + x412 + x415 + x460 + x461 + x464 + x465 ++ x475 + x476 <= 1 + +x18 + x20 + x23 + x73 + x75 + x77 + x100 + x155 + x162 + x163 ++ x186 + x187 + x191 + x193 + x204 + x205 + x206 + x228 + x239 + x242 ++ x243 + x244 + x258 + x261 + x353 + x364 + x434 + x460 + x463 + x491 + <= 1 + +x14 + x51 + x60 + x88 + x123 + x127 + x145 + x227 + x250 + x256 ++ x257 + x276 + x283 + x287 + x291 + x322 + x339 + x343 + x344 + x345 ++ x346 + x347 + x348 + x349 + x350 + x477 + x479 + x480 + x494 + x499 + <= 1 + +x11 + x12 + x13 + x51 + x60 + x62 + x82 + x84 + x85 + x88 ++ x89 + x120 + x127 + x230 + x235 + x250 + x256 + x257 + x261 + x274 ++ x276 + x283 + x291 + x339 + x340 + x342 + x343 + x345 + x346 + x347 ++ x348 + x349 + x350 + x367 + x406 + x408 + x409 + x414 + x477 + x480 ++ x494 + x499 <= 1 + +x12 + x13 + x49 + x51 + x60 + x61 + x62 + x65 + x82 + x84 ++ x85 + x86 + x88 + x89 + x90 + x92 + x94 + x95 + x126 + x147 ++ x148 + x230 + x238 + x239 + x240 + x241 + x243 + x244 + x251 + x257 ++ x261 + x276 + x291 + x318 + x319 + x321 + x324 + x330 + x333 + x339 ++ x340 + x341 + x342 + x343 + x344 + x345 + x346 + x347 + x348 + x349 ++ x350 + x406 + x408 + x409 + x410 + x411 + x431 + x435 + x467 + x468 ++ x471 + x477 + x480 + x494 + x495 + x496 + x497 + x498 + x499 <= 1 + +x49 + x53 + x60 + x61 + x62 + x82 + x90 + x92 + x93 + x94 ++ x126 + x129 + x230 + x231 + x240 + x247 + x251 + x252 + x253 + x257 ++ x261 + x268 + x269 + x291 + x292 + x318 + x321 + x324 + x339 + x341 ++ x342 + x343 + x344 + x345 + x346 + x348 + x350 + x352 + x377 + x378 ++ x398 + x409 + x431 + x470 + x471 + x473 + x476 + x495 + x496 + x498 ++ x499 <= 1 + +x19 + x20 + x23 + x24 + x25 + x26 + x29 + x46 + x47 + x48 ++ x49 + x51 + x72 + x73 + x76 + x77 + x78 + x79 + x82 + x83 ++ x84 + x90 + x91 + x92 + x93 + x95 + x121 + x133 + x142 + x187 ++ x193 + x194 + x195 + x197 + x203 + x207 + x209 + x215 + x216 + x217 ++ x218 + x220 + x227 + x228 + x229 + x230 + x231 + x232 + x242 + x244 ++ x246 + x247 + x248 + x249 + x250 + x265 + x268 + x287 + x288 + x289 ++ x290 + x292 + x294 + x313 + x317 + x318 + x319 + x320 + x321 + x322 ++ x323 + x327 + x328 + x332 + x334 + x336 + x337 + x341 + x352 + x353 ++ x354 + x377 + x378 + x379 + x380 + x407 + x410 + x411 + x412 + x413 ++ x414 + x415 + x416 + x417 + x424 + x429 + x462 + x465 + x468 + x470 ++ x474 + x475 + x476 + x477 + x495 <= 1 + +x19 + x20 + x21 + x23 + x24 + x25 + x27 + x46 + x47 + x48 ++ x49 + x50 + x60 + x63 + x65 + x72 + x73 + x74 + x75 + x76 ++ x77 + x78 + x79 + x81 + x83 + x87 + x91 + x92 + x93 + x94 ++ x95 + x103 + x121 + x126 + x127 + x142 + x193 + x194 + x195 + x197 ++ x215 + x216 + x217 + x218 + x219 + x220 + x227 + x228 + x229 + x230 ++ x231 + x232 + x240 + x241 + x242 + x246 + x248 + x250 + x251 + x263 ++ x264 + x265 + x269 + x280 + x288 + x289 + x290 + x291 + x292 + x294 ++ x297 + x317 + x318 + x319 + x320 + x321 + x322 + x323 + x326 + x327 ++ x328 + x330 + x332 + x333 + x334 + x337 + x345 + x353 + x354 + x372 ++ x374 + x377 + x378 + x379 + x380 + x400 + x407 + x410 + x412 + x413 ++ x414 + x416 + x417 + x424 + x425 + x427 + x429 + x462 + x464 + x465 ++ x468 + x472 + x473 + x474 + x475 + x476 + x477 + x495 <= 1 + +x0 + x1 + x2 + x3 + x4 + x20 + x21 + x22 + x23 + x27 ++ x28 + x29 + x46 + x47 + x51 + x55 + x57 + x59 + x61 + x68 ++ x72 + x73 + x75 + x76 + x77 + x79 + x83 + x91 + x92 + x93 ++ x95 + x102 + x104 + x132 + x136 + x137 + x146 + x154 + x172 + x176 ++ x192 + x193 + x195 + x197 + x216 + x220 + x242 + x248 + x251 + x288 ++ x289 + x298 + x315 + x317 + x318 + x319 + x320 + x321 + x322 + x323 ++ x326 + x348 + x371 + x374 + x398 + x400 + x401 + x405 + x407 + x410 ++ x411 + x412 + x415 + x417 + x431 + x434 + x450 + x452 + x460 + x461 ++ x464 + x465 + x474 + x476 + x496 <= 1 + +x0 + x1 + x2 + x4 + x5 + x7 + x20 + x22 + x23 + x24 ++ x26 + x28 + x41 + x44 + x61 + x65 + x66 + x68 + x71 + x72 ++ x73 + x75 + x76 + x77 + x83 + x92 + x93 + x95 + x136 + x146 ++ x150 + x152 + x153 + x154 + x155 + x158 + x159 + x164 + x167 + x168 ++ x170 + x171 + x192 + x193 + x195 + x196 + x197 + x220 + x239 + x240 ++ x242 + x288 + x290 + x292 + x298 + x317 + x318 + x319 + x320 + x321 ++ x322 + x351 + x353 + x356 + x369 + x371 + x374 + x375 + x376 + x400 ++ x401 + x407 + x410 + x430 + x431 + x432 + x434 + x447 + x450 + x451 ++ x452 + x455 + x457 + x460 + x461 + x463 + x464 + x465 + x474 + x475 ++ x476 <= 1 + +x0 + x1 + x5 + x20 + x23 + x44 + x46 + x48 + x61 + x65 ++ x66 + x71 + x76 + x77 + x83 + x94 + x95 + x107 + x111 + x145 ++ x150 + x151 + x153 + x154 + x155 + x156 + x157 + x158 + x160 + x161 ++ x168 + x170 + x171 + x195 + x217 + x273 + x288 + x300 + x317 + x318 ++ x319 + x320 + x321 + x322 + x351 + x371 + x375 + x376 + x379 + x410 ++ x431 + x434 + x447 + x450 + x452 + x453 + x454 + x457 + x460 + x461 ++ x463 + x474 + x475 + x476 + x491 <= 1 + +x5 + x18 + x20 + x23 + x48 + x61 + x71 + x75 + x100 + x141 ++ x150 + x151 + x153 + x154 + x155 + x160 + x171 + x186 + x187 + x191 ++ x193 + x195 + x206 + x229 + x243 + x244 + x261 + x288 + x300 + x317 ++ x318 + x319 + x320 + x321 + x322 + x351 + x394 + x410 + x434 + x447 ++ x450 + x454 + x455 + x457 + x460 + x463 + x475 + x491 <= 1 + +x14 + x51 + x52 + x60 + x62 + x230 + x233 + x241 + x256 + x259 ++ x283 + x291 + x322 + x343 + x344 + x345 + x346 + x347 + x348 + x349 ++ x350 + x406 + x414 + x477 + x488 + x494 + x495 <= 1 + +x12 + x51 + x60 + x62 + x82 + x90 + x95 + x120 + x230 + x233 ++ x235 + x238 + x240 + x241 + x244 + x247 + x250 + x256 + x259 + x261 ++ x319 + x322 + x329 + x340 + x342 + x343 + x344 + x345 + x346 + x347 ++ x348 + x349 + x350 + x408 + x409 + x414 + x477 + x494 + x495 + x498 ++ x499 <= 1 + +x12 + x46 + x49 + x51 + x65 + x84 + x86 + x90 + x92 + x94 ++ x95 + x120 + x123 + x147 + x149 + x217 + x233 + x234 + x235 + x238 ++ x239 + x240 + x241 + x243 + x244 + x246 + x247 + x250 + x251 + x256 ++ x259 + x261 + x291 + x294 + x298 + x319 + x321 + x322 + x327 + x339 ++ x340 + x342 + x343 + x344 + x345 + x346 + x347 + x348 + x349 + x406 ++ x408 + x409 + x413 + x414 + x416 + x419 + x462 + x467 + x471 + x494 ++ x495 + x498 + x499 <= 1 + +x24 + x45 + x46 + x48 + x50 + x51 + x58 + x79 + x84 + x86 ++ x87 + x90 + x92 + x142 + x149 + x194 + x209 + x217 + x233 + x234 ++ x236 + x238 + x240 + x241 + x242 + x243 + x244 + x246 + x247 + x249 ++ x250 + x259 + x261 + x294 + x298 + x319 + x337 + x345 + x347 + x401 ++ x407 + x409 + x410 + x411 + x412 + x413 + x414 + x415 + x416 + x426 ++ x436 + x437 + x439 + x440 + x462 + x463 + x474 + x498 + x499 <= 1 + +x19 + x24 + x25 + x27 + x29 + x42 + x45 + x46 + x47 + x48 ++ x49 + x50 + x51 + x72 + x73 + x76 + x79 + x83 + x84 + x86 ++ x87 + x90 + x91 + x92 + x93 + x95 + x104 + x133 + x142 + x146 ++ x151 + x194 + x195 + x207 + x209 + x215 + x216 + x217 + x218 + x228 ++ x229 + x230 + x231 + x232 + x234 + x236 + x240 + x241 + x244 + x245 ++ x246 + x247 + x249 + x250 + x259 + x260 + x265 + x275 + x288 + x289 ++ x290 + x294 + x298 + x318 + x319 + x322 + x323 + x325 + x327 + x328 ++ x332 + x335 + x336 + x337 + x338 + x341 + x345 + x347 + x349 + x377 ++ x378 + x379 + x380 + x381 + x401 + x407 + x409 + x410 + x411 + x412 ++ x413 + x414 + x416 + x424 + x426 + x429 + x432 + x436 + x440 + x450 ++ x462 + x463 + x472 + x499 <= 1 + +x19 + x20 + x21 + x24 + x25 + x27 + x29 + x46 + x47 + x48 ++ x49 + x50 + x51 + x54 + x56 + x57 + x58 + x59 + x61 + x65 ++ x72 + x73 + x74 + x75 + x76 + x77 + x78 + x79 + x83 + x86 ++ x87 + x90 + x91 + x92 + x93 + x95 + x103 + x104 + x142 + x144 ++ x146 + x151 + x163 + x167 + x192 + x193 + x194 + x195 + x197 + x230 ++ x231 + x232 + x234 + x236 + x237 + x240 + x241 + x242 + x244 + x246 ++ x247 + x248 + x250 + x259 + x260 + x265 + x269 + x288 + x289 + x290 ++ x294 + x297 + x311 + x312 + x313 + x314 + x315 + x317 + x318 + x319 ++ x320 + x321 + x322 + x323 + x325 + x326 + x327 + x328 + x332 + x338 ++ x341 + x345 + x347 + x349 + x350 + x353 + x362 + x377 + x378 + x379 ++ x380 + x381 + x399 + x400 + x401 + x407 + x410 + x411 + x413 + x414 ++ x417 + x424 + x425 + x426 + x427 + x428 + x429 + x431 + x432 + x434 ++ x450 + x454 + x455 + x462 + x468 + x474 + x475 + x476 + x477 <= 1 + +x0 + x1 + x3 + x4 + x21 + x22 + x24 + x25 + x26 + x27 ++ x29 + x46 + x47 + x48 + x49 + x50 + x51 + x54 + x55 + x56 ++ x57 + x59 + x61 + x65 + x66 + x67 + x72 + x74 + x79 + x83 ++ x87 + x90 + x91 + x92 + x93 + x95 + x102 + x103 + x104 + x105 ++ x136 + x137 + x146 + x153 + x154 + x155 + x163 + x167 + x168 + x170 ++ x172 + x173 + x176 + x179 + x192 + x193 + x195 + x197 + x221 + x222 ++ x223 + x265 + x275 + x287 + x288 + x289 + x290 + x294 + x295 + x297 ++ x310 + x311 + x312 + x313 + x315 + x317 + x318 + x319 + x320 + x321 ++ x322 + x326 + x340 + x341 + x350 + x380 + x399 + x400 + x401 + x402 ++ x404 + x412 + x413 + x415 + x417 + x428 + x430 + x431 + x432 + x434 ++ x450 + x454 + x455 + x461 + x463 + x464 + x468 + x474 + x476 <= 1 + +x0 + x1 + x3 + x4 + x5 + x6 + x7 + x8 + x24 + x25 ++ x26 + x28 + x42 + x46 + x47 + x48 + x49 + x50 + x51 + x65 ++ x66 + x67 + x68 + x69 + x70 + x72 + x87 + x91 + x92 + x93 ++ x102 + x103 + x104 + x105 + x106 + x136 + x137 + x146 + x152 + x153 ++ x154 + x155 + x156 + x157 + x158 + x159 + x161 + x167 + x168 + x170 ++ x171 + x172 + x173 + x176 + x179 + x192 + x193 + x195 + x197 + x221 ++ x223 + x240 + x242 + x259 + x260 + x277 + x287 + x288 + x290 + x292 ++ x312 + x313 + x315 + x317 + x318 + x319 + x320 + x321 + x322 + x326 ++ x371 + x373 + x375 + x379 + x380 + x381 + x384 + x407 + x410 + x430 ++ x431 + x432 + x433 + x434 + x447 + x450 + x451 + x452 + x453 + x454 ++ x455 + x457 + x461 + x463 + x464 + x474 + x475 <= 1 + +x0 + x1 + x5 + x6 + x8 + x46 + x48 + x66 + x69 + x70 ++ x71 + x83 + x91 + x93 + x102 + x103 + x105 + x107 + x150 + x151 ++ x153 + x154 + x155 + x156 + x157 + x158 + x159 + x160 + x161 + x168 ++ x170 + x171 + x173 + x176 + x179 + x195 + x197 + x217 + x223 + x229 ++ x273 + x287 + x288 + x292 + x300 + x317 + x318 + x319 + x320 + x321 ++ x322 + x340 + x351 + x371 + x373 + x375 + x379 + x431 + x434 + x447 ++ x450 + x453 + x454 + x455 + x457 + x460 + x461 + x463 + x464 + x474 ++ x475 <= 1 + +x5 + x18 + x20 + x48 + x61 + x69 + x71 + x105 + x107 + x141 ++ x144 + x145 + x146 + x150 + x151 + x153 + x154 + x155 + x156 + x160 ++ x161 + x173 + x229 + x243 + x255 + x271 + x288 + x292 + x300 + x317 ++ x318 + x320 + x321 + x322 + x339 + x434 + x453 + x454 + x455 + x457 ++ x460 + x463 + x464 + x475 + x486 + x491 <= 1 + +x52 + x53 + x202 + x227 + x230 + x283 + x286 + x322 + x344 + x345 ++ x347 + x349 + x406 + x414 + x488 + x494 + x495 <= 1 + +x20 + x46 + x49 + x51 + x60 + x90 + x94 + x95 + x115 + x120 ++ x151 + x227 + x233 + x237 + x238 + x244 + x246 + x247 + x250 + x291 ++ x343 + x344 + x346 + x348 + x349 + x381 + x384 + x413 + x414 + x416 ++ x418 + x421 + x437 + x438 + x477 + x494 + x495 + x498 + x499 <= 1 + +x20 + x45 + x46 + x47 + x49 + x51 + x60 + x90 + x92 + x93 ++ x94 + x95 + x115 + x117 + x125 + x233 + x234 + x237 + x238 + x240 ++ x241 + x243 + x246 + x247 + x250 + x259 + x293 + x298 + x304 + x319 ++ x321 + x323 + x325 + x327 + x345 + x346 + x347 + x348 + x349 + x381 ++ x407 + x408 + x409 + x419 + x421 + x434 + x437 + x455 + x463 + x471 ++ x477 + x494 + x495 + x498 <= 1 + +x19 + x24 + x25 + x29 + x40 + x45 + x46 + x47 + x50 + x51 ++ x58 + x63 + x72 + x76 + x79 + x84 + x86 + x87 + x90 + x92 ++ x93 + x95 + x114 + x125 + x142 + x151 + x194 + x195 + x217 + x233 ++ x234 + x236 + x237 + x238 + x240 + x241 + x242 + x243 + x244 + x246 ++ x247 + x250 + x259 + x260 + x261 + x282 + x293 + x294 + x298 + x310 ++ x311 + x314 + x319 + x320 + x323 + x325 + x327 + x328 + x341 + x345 ++ x346 + x347 + x349 + x378 + x379 + x380 + x381 + x401 + x407 + x408 ++ x409 + x410 + x411 + x413 + x414 + x415 + x417 + x430 + x432 + x433 ++ x436 + x437 + x439 + x454 + x463 + x473 + x474 + x477 + x495 + x498 ++ x499 <= 1 + +x19 + x20 + x21 + x25 + x29 + x40 + x42 + x45 + x46 + x47 ++ x48 + x49 + x50 + x51 + x54 + x56 + x58 + x67 + x72 + x73 ++ x76 + x78 + x79 + x84 + x86 + x87 + x90 + x91 + x92 + x93 ++ x95 + x103 + x133 + x142 + x144 + x146 + x151 + x193 + x194 + x195 ++ x197 + x209 + x216 + x217 + x218 + x228 + x232 + x234 + x236 + x237 ++ x240 + x241 + x242 + x243 + x244 + x250 + x258 + x259 + x260 + x275 ++ x278 + x288 + x289 + x294 + x301 + x310 + x311 + x312 + x313 + x314 ++ x317 + x318 + x319 + x320 + x323 + x325 + x328 + x335 + x336 + x338 ++ x339 + x341 + x347 + x349 + x377 + x378 + x379 + x380 + x381 + x400 ++ x401 + x407 + x408 + x409 + x410 + x411 + x414 + x417 + x425 + x426 ++ x429 + x430 + x432 + x433 + x434 + x439 + x454 + x462 + x463 + x472 ++ x473 + x474 + x475 + x477 + x498 + x499 <= 1 + +x3 + x4 + x19 + x21 + x40 + x42 + x45 + x46 + x47 + x48 ++ x49 + x50 + x51 + x54 + x56 + x57 + x58 + x67 + x69 + x72 ++ x76 + x78 + x79 + x80 + x83 + x86 + x87 + x90 + x91 + x92 ++ x93 + x95 + x135 + x146 + x151 + x172 + x192 + x194 + x195 + x197 ++ x226 + x236 + x237 + x244 + x248 + x250 + x258 + x259 + x260 + x265 ++ x294 + x310 + x311 + x312 + x313 + x317 + x318 + x319 + x320 + x321 ++ x322 + x323 + x325 + x328 + x335 + x336 + x338 + x341 + x345 + x346 ++ x349 + x353 + x361 + x362 + x377 + x378 + x379 + x380 + x381 + x400 ++ x407 + x408 + x409 + x410 + x411 + x424 + x425 + x426 + x428 + x432 ++ x433 + x454 + x461 + x463 + x491 + x498 <= 1 + +x0 + x3 + x4 + x18 + x19 + x21 + x22 + x25 + x26 + x29 ++ x42 + x46 + x47 + x48 + x49 + x50 + x54 + x55 + x56 + x57 ++ x67 + x69 + x70 + x72 + x79 + x87 + x90 + x91 + x92 + x93 ++ x95 + x128 + x129 + x136 + x157 + x172 + x197 + x221 + x222 + x223 ++ x224 + x226 + x259 + x260 + x275 + x277 + x278 + x295 + x297 + x310 ++ x311 + x312 + x313 + x315 + x317 + x318 + x319 + x320 + x321 + x335 ++ x340 + x361 + x363 + x379 + x380 + x381 + x399 + x400 + x402 + x403 ++ x404 + x425 + x428 + x430 + x432 + x433 + x434 + x435 + x461 + x463 ++ x464 + x475 + x476 <= 1 + +x0 + x1 + x4 + x6 + x7 + x18 + x19 + x21 + x22 + x26 ++ x42 + x46 + x47 + x48 + x49 + x50 + x51 + x54 + x55 + x56 ++ x66 + x67 + x69 + x70 + x75 + x91 + x92 + x93 + x104 + x106 ++ x124 + x129 + x136 + x152 + x153 + x154 + x155 + x156 + x157 + x158 ++ x168 + x170 + x172 + x173 + x197 + x221 + x222 + x223 + x224 + x225 ++ x226 + x259 + x260 + x277 + x287 + x288 + x290 + x310 + x312 + x313 ++ x315 + x317 + x318 + x319 + x320 + x321 + x350 + x363 + x373 + x379 ++ x380 + x381 + x384 + x385 + x400 + x404 + x423 + x428 + x430 + x431 ++ x432 + x433 + x434 + x435 + x451 + x452 + x461 + x463 + x464 + x474 ++ x475 + x476 <= 1 + +x8 + x18 + x19 + x22 + x48 + x61 + x70 + x94 + x103 + x105 ++ x106 + x107 + x108 + x109 + x112 + x141 + x143 + x144 + x145 + x146 ++ x150 + x151 + x153 + x154 + x155 + x159 + x161 + x167 + x170 + x171 ++ x173 + x174 + x176 + x178 + x179 + x197 + x249 + x255 + x259 + x270 ++ x271 + x273 + x300 + x317 + x319 + x320 + x321 + x322 + x325 + x327 ++ x340 + x373 + x399 + x402 + x431 + x433 + x434 + x447 + x450 + x454 ++ x461 + x464 + x469 <= 1 + +x5 + x18 + x20 + x22 + x48 + x61 + x94 + x107 + x110 + x141 ++ x143 + x144 + x145 + x146 + x150 + x151 + x153 + x154 + x155 + x159 ++ x160 + x229 + x243 + x249 + x255 + x270 + x271 + x288 + x292 + x317 ++ x318 + x319 + x320 + x321 + x325 + x327 + x340 + x342 + x433 + x434 ++ x447 + x448 + x450 + x453 + x454 + x455 + x457 + x475 <= 1 + +x20 + x28 + x49 + x193 + x227 + x283 + x286 + x299 + x303 + x322 ++ x344 + x406 + x409 + x414 + x420 + x477 + x488 + x494 + x495 <= 1 + +x20 + x28 + x49 + x51 + x90 + x93 + x94 + x95 + x113 + x115 ++ x151 + x227 + x240 + x241 + x283 + x299 + x304 + x341 + x344 + x346 ++ x348 + x381 + x407 + x409 + x414 + x418 + x420 + x438 + x477 <= 1 + +x20 + x90 + x93 + x94 + x95 + x113 + x114 + x115 + x117 + x194 ++ x208 + x227 + x240 + x241 + x243 + x246 + x247 + x250 + x283 + x293 ++ x298 + x304 + x314 + x319 + x323 + x325 + x346 + x380 + x381 + x388 ++ x407 + x408 + x409 + x414 + x418 + x419 + x420 + x421 + x430 + x434 ++ x438 + x455 + x477 + x495 + x498 <= 1 + +x46 + x47 + x50 + x58 + x72 + x76 + x113 + x114 + x116 + x117 ++ x125 + x142 + x194 + x217 + x237 + x240 + x241 + x243 + x244 + x246 ++ x247 + x278 + x282 + x284 + x289 + x293 + x298 + x301 + x303 + x304 ++ x314 + x319 + x339 + x345 + x346 + x349 + x380 + x408 + x409 + x414 ++ x417 + x430 + x432 + x436 + x438 + x473 + x474 + x477 + x498 <= 1 + +x19 + x25 + x46 + x47 + x48 + x49 + x50 + x51 + x58 + x72 ++ x76 + x90 + x93 + x116 + x142 + x143 + x144 + x182 + x195 + x209 ++ x217 + x218 + x240 + x241 + x243 + x244 + x275 + x278 + x287 + x293 ++ x294 + x301 + x310 + x311 + x314 + x319 + x320 + x325 + x339 + x340 ++ x341 + x346 + x349 + x377 + x381 + x409 + x414 + x432 + x434 + x473 ++ x477 <= 1 + +x18 + x21 + x22 + x31 + x47 + x48 + x49 + x57 + x68 + x141 ++ x142 + x143 + x144 + x145 + x146 + x198 + x277 + x278 + x293 + x295 ++ x296 + x340 + x383 + x399 + x402 + x403 + x430 + x432 + x435 <= 1 + +x0 + x18 + x21 + x22 + x29 + x31 + x47 + x48 + x49 + x50 ++ x57 + x72 + x102 + x106 + x112 + x124 + x125 + x128 + x129 + x141 ++ x142 + x143 + x144 + x145 + x146 + x186 + x188 + x189 + x190 + x192 ++ x197 + x198 + x221 + x222 + x223 + x224 + x226 + x260 + x274 + x275 ++ x277 + x278 + x285 + x293 + x295 + x296 + x297 + x317 + x319 + x320 ++ x340 + x386 + x399 + x402 + x403 + x404 + x430 + x432 + x435 + x441 ++ x443 + x446 + x448 + x449 + x451 + x476 + x479 + x481 <= 1 + +x0 + x1 + x4 + x18 + x19 + x21 + x22 + x26 + x30 + x31 ++ x47 + x48 + x49 + x50 + x51 + x55 + x56 + x102 + x104 + x106 ++ x112 + x124 + x125 + x128 + x129 + x141 + x142 + x143 + x144 + x145 ++ x146 + x172 + x174 + x179 + x188 + x189 + x192 + x198 + x221 + x222 ++ x223 + x224 + x225 + x226 + x259 + x260 + x278 + x285 + x287 + x295 ++ x297 + x312 + x315 + x317 + x318 + x340 + x350 + x384 + x385 + x399 ++ x402 + x403 + x404 + x430 + x431 + x432 + x433 + x434 + x435 + x443 ++ x446 + x448 + x449 + x451 + x452 + x469 + x489 <= 1 + +x0 + x4 + x18 + x19 + x22 + x61 + x70 + x89 + x105 + x106 ++ x107 + x108 + x109 + x110 + x111 + x112 + x124 + x125 + x128 + x141 ++ x143 + x144 + x145 + x146 + x167 + x173 + x174 + x176 + x178 + x179 ++ x180 + x192 + x249 + x255 + x259 + x270 + x272 + x315 + x317 + x319 ++ x320 + x321 + x325 + x342 + x348 + x350 + x373 + x385 + x399 + x402 ++ x403 + x404 + x433 + x435 + x445 + x447 + x448 + x449 + x451 + x469 + <= 1 + +x4 + x18 + x19 + x20 + x22 + x61 + x94 + x108 + x110 + x112 ++ x141 + x143 + x144 + x150 + x153 + x154 + x155 + x174 + x175 + x176 ++ x178 + x243 + x255 + x317 + x319 + x320 + x325 + x331 + x342 + x348 ++ x385 + x402 + x417 + x433 + x445 + x448 + x453 + x455 + x469 <= 1 + +x20 + x46 + x90 + x281 + x283 + x286 + x299 + x302 + x303 + x370 ++ x409 <= 1 + +x46 + x50 + x59 + x76 + x90 + x126 + x207 + x208 + x210 + x213 ++ x214 + x215 + x241 + x248 + x281 + x282 + x286 + x299 + x302 + x303 ++ x304 + x323 + x328 + x350 + x388 + x473 + x498 <= 1 + +x46 + x50 + x114 + x116 + x131 + x208 + x210 + x212 + x214 + x215 ++ x218 + x241 + x281 + x282 + x284 + x286 + x293 + x299 + x300 + x301 ++ x302 + x303 + x304 + x319 + x323 + x325 + x328 + x350 + x388 + x407 ++ x409 + x430 + x432 + x473 + x477 + x498 <= 1 + +x46 + x50 + x113 + x116 + x117 + x125 + x130 + x131 + x217 + x246 ++ x248 + x282 + x284 + x286 + x289 + x298 + x299 + x301 + x302 + x303 ++ x304 + x314 + x339 + x409 + x414 + x473 + x477 + x498 <= 1 + +x46 + x47 + x50 + x51 + x142 + x143 + x144 + x209 + x244 + x274 ++ x275 + x278 + x285 + x287 + x293 + x310 + x311 + x314 + x319 + x320 ++ x325 + x339 + x340 + x341 + x377 + x381 + x486 + x488 + x489 <= 1 + +x33 + x46 + x50 + x92 + x124 + x141 + x142 + x143 + x144 + x188 ++ x192 + x224 + x244 + x274 + x275 + x277 + x278 + x284 + x285 + x287 ++ x293 + x295 + x296 + x317 + x325 + x339 + x340 + x430 + x432 + x433 ++ x435 + x444 + x446 + x486 + x488 + x489 <= 1 + +x4 + x18 + x19 + x21 + x22 + x31 + x32 + x33 + x51 + x55 ++ x89 + x91 + x92 + x102 + x124 + x125 + x129 + x141 + x142 + x143 ++ x144 + x145 + x186 + x188 + x189 + x190 + x192 + x221 + x222 + x224 ++ x225 + x226 + x274 + x275 + x277 + x278 + x285 + x287 + x293 + x295 ++ x296 + x297 + x317 + x320 + x339 + x340 + x350 + x383 + x384 + x385 ++ x386 + x399 + x402 + x403 + x404 + x430 + x432 + x433 + x434 + x435 ++ x441 + x442 + x443 + x444 + x446 + x448 + x449 + x451 + x469 + x479 ++ x481 + x489 <= 1 + +x4 + x18 + x19 + x21 + x22 + x26 + x30 + x32 + x89 + x92 ++ x93 + x111 + x124 + x125 + x129 + x192 + x224 + x225 + x226 + x274 ++ x285 + x287 + x295 + x296 + x297 + x317 + x320 + x384 + x385 + x386 ++ x403 + x404 + x430 + x433 + x434 + x435 + x445 + x448 + x449 + x451 ++ x481 + x482 + x489 <= 1 + +x4 + x18 + x22 + x34 + x89 + x94 + x106 + x107 + x108 + x109 ++ x110 + x111 + x124 + x125 + x129 + x141 + x143 + x146 + x167 + x174 ++ x178 + x179 + x190 + x192 + x272 + x287 + x296 + x317 + x320 + x325 ++ x373 + x386 + x403 + x416 + x422 + x433 + x435 + x441 + x442 + x445 ++ x447 + x448 + x449 + x451 + x469 <= 1 + +x18 + x22 + x94 + x108 + x110 + x111 + x141 + x143 + x144 + x150 ++ x154 + x155 + x174 + x176 + x178 + x179 + x190 + x252 + x255 + x272 ++ x287 + x317 + x320 + x342 + x390 + x406 + x416 + x422 + x433 + x445 ++ x448 + x455 + x469 <= 1 + +x21 + x86 + x94 + x123 + x211 + x302 + x323 + x328 + x375 <= 1 + +x21 + x46 + x86 + x94 + x126 + x207 + x208 + x210 + x211 + x241 ++ x248 + x281 + x302 + x323 + x328 + x375 + x388 + x456 + x477 <= 1 + +x46 + x59 + x90 + x126 + x196 + x207 + x208 + x210 + x211 + x212 ++ x213 + x248 + x249 + x281 + x284 + x286 + x299 + x300 + x301 + x302 ++ x303 + x319 + x323 + x328 + x383 + x387 + x388 + x440 + x456 + x477 + <= 1 + +x46 + x126 + x130 + x131 + x196 + x210 + x215 + x248 + x281 + x282 ++ x284 + x286 + x299 + x300 + x301 + x302 + x303 + x304 + x319 + x323 ++ x328 + x383 + x387 + x388 + x430 + x432 + x435 + x440 + x498 <= 1 + +x21 + x130 + x189 + x210 + x274 + x275 + x277 + x278 + x281 + x284 ++ x319 + x323 + x328 + x383 + x387 + x388 + x430 + x432 + x433 + x435 ++ x481 <= 1 + +x18 + x21 + x22 + x46 + x50 + x54 + x91 + x92 + x124 + x129 ++ x141 + x142 + x143 + x144 + x188 + x189 + x190 + x192 + x222 + x225 ++ x244 + x274 + x275 + x277 + x278 + x281 + x284 + x285 + x287 + x293 ++ x296 + x350 + x383 + x384 + x387 + x404 + x430 + x432 + x433 + x435 ++ x443 + x449 + x481 <= 1 + +x18 + x21 + x30 + x32 + x33 + x34 + x124 + x129 + x177 + x186 ++ x188 + x189 + x190 + x192 + x225 + x275 + x277 + x285 + x287 + x295 ++ x296 + x297 + x350 + x383 + x385 + x386 + x403 + x430 + x433 + x435 ++ x441 + x442 + x443 + x444 + x446 + x447 + x449 + x451 + x479 + x482 + <= 1 + +x18 + x21 + x22 + x30 + x32 + x33 + x34 + x50 + x89 + x93 ++ x124 + x125 + x129 + x141 + x174 + x177 + x178 + x192 + x225 + x274 ++ x287 + x288 + x295 + x296 + x297 + x386 + x430 + x433 + x435 + x441 ++ x442 + x443 + x444 + x446 + x447 + x448 + x449 + x451 + x462 + x482 + <= 1 + +x18 + x21 + x22 + x34 + x94 + x109 + x124 + x125 + x141 + x174 ++ x177 + x178 + x295 + x296 + x317 + x320 + x345 + x386 + x433 + x435 ++ x441 + x442 + x444 + x445 + x447 + x448 + x449 + x451 + x462 + x469 ++ x482 <= 1 + +x47 + x109 + x124 + x125 + x141 + x177 + x178 + x295 + x296 + x320 ++ x345 + x442 + x444 + x448 + x449 + x462 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 <= 1 + +x9 + x10 <= 1 + +x11 + x12 + x13 + x14 <= 1 + +x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 + x22 + x23 <= 1 + +x24 + x25 + x26 + x27 + x28 + x29 <= 1 + +x30 + x31 + x32 + x33 + x34 <= 1 + +x35 + x36 + x37 + x38 + x39 <= 1 + +x40 + x41 + x42 + x43 + x44 + x45 <= 1 + +x46 + x47 + x48 + x49 + x50 + x51 <= 1 + +x52 + x53 <= 1 + +x54 + x55 + x56 + x57 + x58 + x59 <= 1 + +x60 + x61 + x62 + x63 + x64 + x65 <= 1 + +x66 + x67 + x68 + x69 + x70 + x71 <= 1 + +x72 + x73 + x74 + x75 + x76 + x77 <= 1 + +x78 + x79 + x80 + x81 + x82 + x83 <= 1 + +x84 + x85 + x86 + x87 + x88 + x89 <= 1 + +x90 + x91 + x92 + x93 + x94 + x95 <= 1 + +x96 + x97 + x98 + x99 <= 1 + +x100 + x101 <= 1 + +x102 + x103 + x104 + x105 + x106 + x107 <= 1 + +x108 + x109 + x110 + x111 + x112 <= 1 + +x113 + x114 + x115 + x116 + x117 <= 1 + +x118 + x119 + x120 + x121 + x122 + x123 <= 1 + +x124 + x125 + x126 + x127 + x128 + x129 <= 1 + +x130 + x131 <= 1 + +x132 + x133 + x134 + x135 + x136 + x137 <= 1 + +x138 + x139 + x140 <= 1 + +x141 + x142 + x143 + x144 + x145 + x146 <= 1 + +x147 + x148 + x149 <= 1 + +x150 + x151 + x152 + x153 + x154 + x155 <= 1 + +x156 + x157 + x158 + x159 + x160 + x161 <= 1 + +x162 + x163 + x164 + x165 + x166 + x167 <= 1 + +x168 + x169 + x170 + x171 + x172 + x173 <= 1 + +x174 + x175 + x176 + x177 + x178 + x179 <= 1 + +x181 + x182 + x183 + x184 + x185 <= 1 + +x186 + x187 + x188 + x189 + x190 + x191 <= 1 + +x192 + x193 + x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 <= 1 + +x207 + x208 + x209 + x210 <= 1 + +x212 + x213 + x214 <= 1 + +x215 + x216 + x217 + x218 + x219 + x220 <= 1 + +x221 + x222 + x223 + x224 + x225 + x226 <= 1 + +x227 + x228 + x229 + x230 + x231 + x232 <= 1 + +x233 + x234 + x235 + x236 + x237 + x238 <= 1 + +x239 + x240 + x241 + x242 + x243 + x244 <= 1 + +x246 + x247 + x248 + x249 + x250 + x251 <= 1 + +x252 + x253 + x254 + x255 + x256 + x257 <= 1 + +x258 + x259 + x260 + x261 + x262 + x263 <= 1 + +x264 + x265 + x266 + x267 + x268 + x269 <= 1 + +x270 + x271 + x272 + x273 <= 1 + +x274 + x275 + x276 + x277 + x278 + x279 <= 1 + +x281 + x282 + x283 + x284 + x285 + x286 <= 1 + +x287 + x288 + x289 + x290 + x291 + x292 <= 1 + +x293 + x294 + x295 + x296 + x297 + x298 <= 1 + +x299 + x300 + x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 <= 1 + +x310 + x311 + x312 + x313 + x314 + x315 <= 1 + +x317 + x318 + x319 + x320 + x321 + x322 <= 1 + +x323 + x324 + x325 + x326 + x327 + x328 <= 1 + +x329 + x330 + x331 + x332 + x333 + x334 <= 1 + +x335 + x336 + x337 + x338 <= 1 + +x339 + x340 + x341 + x342 + x343 + x344 <= 1 + +x345 + x346 + x347 + x348 + x349 + x350 <= 1 + +x351 + x352 + x353 + x354 + x355 + x356 <= 1 + +x357 + x358 + x359 + x360 <= 1 + +x361 + x362 + x363 <= 1 + +x364 + x365 + x366 + x367 + x368 + x369 <= 1 + +x371 + x372 + x373 + x374 + x375 + x376 <= 1 + +x377 + x378 + x379 + x380 + x381 + x382 <= 1 + +x383 + x384 + x385 + x386 + x387 + x388 <= 1 + +x389 + x390 + x391 + x392 <= 1 + +x393 + x394 + x395 + x396 + x397 + x398 <= 1 + +x399 + x400 + x401 + x402 + x403 + x404 <= 1 + +x406 + x407 + x408 + x409 + x410 + x411 <= 1 + +x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 <= 1 + +x424 + x425 + x426 + x427 + x428 + x429 <= 1 + +x430 + x431 + x432 + x433 + x434 + x435 <= 1 + +x436 + x437 + x438 + x439 + x440 <= 1 + +x441 + x442 + x443 + x444 + x445 + x446 <= 1 + +x447 + x448 + x449 + x450 + x451 + x452 <= 1 + +x453 + x454 + x455 + x456 + x457 + x458 <= 1 + +x460 + x461 + x462 + x463 + x464 + x465 <= 1 + +x466 + x467 + x468 + x469 + x470 + x471 <= 1 + +x472 + x473 + x474 + x475 + x476 + x477 <= 1 + +x479 + x480 + x481 + x482 <= 1 + +x483 + x484 + x485 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x492 + x493 <= 1 + +x494 + x495 + x496 + x497 + x498 + x499 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 + + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0006.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0006.lp new file mode 100644 index 000000000..cc115d30e --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0006.lp @@ -0,0 +1,1072 @@ +max + +555.73x0 + 794.932x1 + 782.878x2 + 714.621x3 + 629.104x4 + 627.356x5 + 1054.11x6 + 1317.75x7 + 1215.04x8 + 1205.31x9 + +1196.18x10 + 1182.44x11 + 248.29x12 + 327.339x13 + 288.236x14 + 287.811x15 + 271.317x16 + 207.501x17 + 1140.25x18 + 1428.83x19 + +1309.07x20 + 1226.15x21 + 1212.46x22 + 1162.36x23 + 383.86x24 + 483.539x25 + 479.508x26 + 379.719x27 + 366.022x28 + 354.197x29 + +1167.61x30 + 1457.1x31 + 1350.82x32 + 1341.79x33 + 1324.78x34 + 1288.26x35 + 807.917x36 + 937.451x37 + 931.336x38 + 921.965x39 + +900.626x40 + 874.856x41 + 339.923x42 + 481.47x43 + 468.249x44 + 375.885x45 + 358.913x46 + 346.463x47 + 758.738x48 + 944.634x49 + +921.77x50 + 905.428x51 + 890.936x52 + 889.482x53 + 150.431x54 + 221.276x55 + 123.71x56 + 102.743x57 + 792.627x58 + 901.887x59 + +876.629x60 + 826.537x61 + 808.995x62 + 788.409x63 + 735.142x64 + 910.116x65 + 878.185x66 + 834.639x67 + 827.204x68 + 798.964x69 + +221.519x70 + 331.808x71 + 13.5695x72 + 578.993x73 + 736.753x74 + 707.844x75 + 700.851x76 + 684.194x77 + 624.53x78 + 421.499x79 + +473.754x80 + 465.416x81 + 403.371x82 + 399.09x83 + 379.971x84 + 325.934x85 + 449.199x86 + 381.567x87 + 235.926x88 + 186.107x89 + +364.287x90 + 377.944x91 + 369.563x92 + 339.214x93 + 323.515x94 + 318.008x95 + 1833.9x96 + 2127.56x97 + 2063.73x98 + 2034.83x99 + +2017.2x100 + 1883.92x101 + 416.83x102 + 600.193x103 + 534.571x104 + 492.229x105 + 482.304x106 + 446.102x107 + 1626.95x108 + 2195.55x109 + +2174.63x110 + 2135.17x111 + 2091.95x112 + 2070.43x113 + 108.948x114 + 128.829x115 + 165.197x116 + 186.035x117 + 156.471x118 + 129.11x119 + +154.867x120 + 848.045x121 + 946.283x122 + 919.973x123 + 882.351x124 + 864.13x125 + 808.928x126 + 39.9828x127 + 439.475x128 + 545.33x129 + +499.26x130 + 481.823x131 + 478.245x132 + 468.241x133 + 38.8673x134 + 490.52x135 + 549.243x136 + 456.573x137 + 451.41x138 + 413.821x139 + +408.743x140 + 148.339x141 + 553.666x142 + 811.499x143 + 758.456x144 + 751.005x145 + 737.941x146 + 736.503x147 + 242.415x148 + 327.69x149 + +286.35x150 + 250.913x151 + 211.566x152 + 151.358x153 + 821.73x154 + 887.462x155 + 863.772x156 + 816.337x157 + 792.083x158 + 786.483x159 + +915.835x160 + 1138.7x161 + 1134.75x162 + 1127.15x163 + 1118.11x164 + 1082.92x165 + 888.811x166 + 1123.22x167 + 1032.95x168 + 1013.41x169 + +995.914x170 + 942.984x171 + 824.813x172 + 736.262x173 + 732.89x174 + 732.013x175 + 687.005x176 + 669.807x177 + 1271.13x178 + 1469.35x179 + +1438.7x180 + 1380.69x181 + 1367.9x182 + 1313.03x183 + 1152.19x184 + 1367.19x185 + 1352.5x186 + 1289.67x187 + 1269.69x188 + 1233.5x189 + +63.6038x190 + 65.3177x191 + 738.593x192 + 970.049x193 + 863.255x194 + 825.435x195 + 779.699x196 + 773.603x197 + 1036.75x198 + 1071.61x199 + +999.018x200 + 983.454x201 + 967.428x202 + 948.822x203 + 1539.23x204 + 2172.57x205 + 1827.66x206 + 1802.18x207 + 1774.1x208 + 1763.63x209 + +389.204x210 + 515.933x211 + 466.365x212 + 459.28x213 + 403.618x214 + 335.836x215 + 196.061x216 + 290.638x217 + 185.016x218 + 140.315x219 + +305.364x220 + 303.084x221 + 290.494x222 + 259.494x223 + 241.02x224 + 178.211x225 + 536.168x226 + 567.248x227 + 531.558x228 + 498.492x229 + +489.225x230 + 433.306x231 + 1068.13x232 + 1313.48x233 + 1244.7x234 + 1239.88x235 + 1199.03x236 + 1190.27x237 + 777.472x238 + 924.989x239 + +853.988x240 + 853.496x241 + 801.03x242 + 785.25x243 + 569.823x244 + 762.714x245 + 700.064x246 + 679.665x247 + 611.661x248 + 536.019x249 + +156.625x250 + 173.418x251 + 70.5872x252 + 725.177x253 + 934.999x254 + 847.693x255 + 822.993x256 + 812.159x257 + 808.257x258 + 930.302x259 + +1344.52x260 + 1259.85x261 + 1258.42x262 + 1256.78x263 + 1192.49x264 + 1808.46x265 + 1916.65x266 + 1891.38x267 + 1889.46x268 + 1878.21x269 + +1858.3x270 + 982.545x271 + 934.471x272 + 908.636x273 + 904.202x274 + 902.149x275 + 890.248x276 + 1473.7x277 + 1831.6x278 + 1745.98x279 + +1728.13x280 + 1700.95x281 + 1699.59x282 + 2312.68x283 + 2466.46x284 + 2306.67x285 + 2273.51x286 + 2261x287 + 2226.75x288 + 467.272x289 + +672.038x290 + 567.576x291 + 559.209x292 + 536.352x293 + 490.965x294 + 497.116x295 + 624.179x296 + 556.339x297 + 554.985x298 + 491.377x299 + +453.654x300 + 409.552x301 + 546.739x302 + 477.425x303 + 444.709x304 + 426.733x305 + 408.458x306 + 30.3245x307 + 585.249x308 + 655.102x309 + +625.042x310 + 613.246x311 + 608.942x312 + 497.057x313 + 504.601x314 + 562.465x315 + 555.131x316 + 496.677x317 + 490.335x318 + 288.449x319 + +322.477x320 + 463.783x321 + 448.292x322 + 435.41x323 + 386.603x324 + 375.252x325 + 966.709x326 + 1356.81x327 + 1253x328 + 1191.9x329 + +1142.95x330 + 1137.49x331 + 49.4031x332 + 343.787x333 + 512.06x334 + 417.633x335 + 412.126x336 + 407.419x337 + 341.879x338 + 105.574x339 + +983.228x340 + 1106.81x341 + 1083.72x342 + 1075x343 + 1069.18x344 + 1060.51x345 + 631.578x346 + 873.596x347 + 825.478x348 + 754.039x349 + +745.185x350 + 727.992x351 + 919.132x352 + 1040.58x353 + 1013.28x354 + 1008.22x355 + 961.102x356 + 950.245x357 + 214.574x358 + 285.336x359 + +270.3x360 + 262.548x361 + 242.592x362 + 222.525x363 + 1696.19x364 + 1823.06x365 + 1775.99x366 + 1730.26x367 + 1711.86x368 + 1708.67x369 + +728.976x370 + 739.724x371 + 722.694x372 + 700.712x373 + 684.414x374 + 633.734x375 + 228.965x376 + 302.968x377 + 190.34x378 + 164.725x379 + +56.216x380 + 103.99x381 + 642.562x382 + 698.052x383 + 675.551x384 + 671.821x385 + 632.889x386 + 632.65x387 + 277.515x388 + 388.406x389 + +376.456x390 + 342.861x391 + 313.98x392 + 245.692x393 + 1242x394 + 1543.07x395 + 1538.04x396 + 1506.6x397 + 1492.25x398 + 1462.75x399 + +531.805x400 + 574.97x401 + 552.298x402 + 548.928x403 + 526.847x404 + 491.968x405 + 39.2056x406 + 282.138x407 + 328.127x408 + 300.552x409 + +287.304x410 + 284.325x411 + 273.322x412 + 288.882x413 + 308.5x414 + 173.992x415 + 164.629x416 + 323.146x417 + 386.301x418 + 360.732x419 + +349.524x420 + 295.008x421 + 276.095x422 + 242.664x423 + 342.4x424 + 257.185x425 + 173.228x426 + 163.062x427 + 152.987x428 + 472.755x429 + +582.614x430 + 539.479x431 + 484.927x432 + 481.975x433 + 433.023x434 + 869.8x435 + 941.913x436 + 912.9x437 + 884.983x438 + 853.23x439 + +842.603x440 + 1953.76x441 + 2082.69x442 + 2045.83x443 + 2017.13x444 + 1907.58x445 + 1904.92x446 + 164.79x447 + 187.409x448 + 154.727x449 + +109.344x450 + 792.578x451 + 978.806x452 + 928.517x453 + 907.719x454 + 874.212x455 + 866.328x456 + 153.64x457 + 142.342x458 + 29.7288x459 + +211.074x460 + 260.757x461 + 170.204x462 + 170.104x463 + 124.388x464 + 362.659x465 + 514.775x466 + 480.824x467 + 460.447x468 + 453.198x469 + +450.604x470 + 1308.71x471 + 1548.29x472 + 1518.29x473 + 1506.91x474 + 1451.7x475 + 1425.05x476 + 587.454x477 + 764.662x478 + 710.046x479 + +689.688x480 + 661.249x481 + 656.828x482 + 146.66x483 + 165.744x484 + 119.687x485 + 594.744x486 + 680.224x487 + 640.839x488 + 636.2x489 + +595.489x490 + 576.966x491 + 1440.1x492 + 1670.66x493 + 1664.6x494 + 1660.52x495 + 1648.06x496 + 1602.56x497 + 811.979x498 + 989.332x499 + +898.604x500 + 871.397x501 + 819.165x502 + 746.679x503 + +st + +x142 + x184 + x192 + x194 + x196 + x204 + x205 + x206 + x208 + x209 ++ x232 + x237 + x242 + x289 + x293 + x294 + x356 + x358 + x361 + x362 ++ x398 + x426 + x427 + x428 + x455 + x467 + x488 <= 1 + +x8 + x11 + x44 + x63 + x97 + x99 + x122 + x142 + x144 + x147 ++ x184 + x187 + x188 + x192 + x193 + x194 + x195 + x204 + x205 + x206 ++ x208 + x209 + x232 + x236 + x237 + x240 + x242 + x289 + x290 + x291 ++ x293 + x294 + x329 + x340 + x343 + x353 + x356 + x357 + x358 + x363 ++ x364 + x398 + x425 + x427 + x455 + x492 + x493 + x500 + x502 <= 1 + +x1 + x44 + x45 + x63 + x97 + x99 + x108 + x122 + x124 + x142 ++ x143 + x145 + x147 + x184 + x188 + x189 + x192 + x195 + x197 + x204 ++ x208 + x209 + x225 + x232 + x236 + x237 + x242 + x248 + x289 + x290 ++ x291 + x292 + x294 + x329 + x343 + x353 + x354 + x355 + x356 + x357 ++ x363 + x364 + x368 + x421 + x466 + x474 + x493 + x500 + x501 + x502 + <= 1 + +x63 + x97 + x98 + x99 + x108 + x124 + x174 + x176 + x181 + x208 ++ x209 + x245 + x246 + x247 + x248 + x264 + x289 + x290 + x294 + x329 ++ x353 + x354 + x355 + x357 + x364 + x389 + x395 + x451 + x493 + x501 ++ x502 <= 1 + +x13 + x35 + x98 + x108 + x111 + x121 + x124 + x125 + x134 + x172 ++ x174 + x175 + x176 + x177 + x179 + x183 + x207 + x208 + x241 + x244 ++ x245 + x246 + x247 + x248 + x260 + x263 + x264 + x267 + x279 + x289 ++ x290 + x316 + x336 + x353 + x364 + x389 + x395 + x413 + x416 + x424 ++ x451 + x452 + x475 + x480 + x493 <= 1 + +x18 + x20 + x35 + x73 + x76 + x98 + x108 + x111 + x124 + x131 ++ x172 + x174 + x176 + x177 + x179 + x183 + x206 + x233 + x244 + x245 ++ x246 + x247 + x248 + x249 + x260 + x262 + x264 + x266 + x267 + x279 ++ x290 + x315 + x316 + x336 + x339 + x364 + x389 + x394 + x395 + x413 ++ x414 + x452 + x475 + x480 + x481 + x493 <= 1 + +x18 + x73 + x76 + x93 + x94 + x108 + x124 + x172 + x173 + x176 ++ x183 + x245 + x246 + x247 + x248 + x249 + x299 + x336 + x380 + x388 ++ x389 + x481 <= 1 + +x18 + x21 + x33 + x35 + x47 + x73 + x93 + x94 + x108 + x124 ++ x128 + x133 + x163 + x172 + x173 + x175 + x179 + x183 + x260 + x262 ++ x266 + x299 + x315 + x336 + x364 + x366 + x380 + x388 + x389 + x484 + <= 1 + +x18 + x21 + x35 + x66 + x72 + x73 + x90 + x93 + x94 + x108 ++ x124 + x128 + x133 + x175 + x178 + x183 + x260 + x262 + x263 + x283 ++ x336 + x389 + x391 + x411 + x446 + x454 <= 1 + +x41 + x66 + x72 + x95 + x108 + x178 + x183 + x260 + x262 + x263 ++ x333 + x336 + x369 + x378 + x388 + x389 + x391 + x446 <= 1 + +x44 + x122 + x142 + x143 + x144 + x147 + x189 + x192 + x193 + x194 ++ x195 + x196 + x197 + x204 + x205 + x206 + x208 + x209 + x236 + x237 ++ x238 + x240 + x242 + x289 + x293 + x294 + x343 + x353 + x355 + x356 ++ x358 + x359 + x361 + x362 + x363 + x365 + x373 + x398 + x423 + x426 ++ x427 + x428 + x444 + x450 + x455 + x488 + x492 + x498 <= 1 + +x42 + x44 + x45 + x50 + x53 + x108 + x122 + x142 + x143 + x144 ++ x145 + x147 + x184 + x187 + x188 + x192 + x193 + x194 + x195 + x197 ++ x204 + x205 + x206 + x208 + x209 + x235 + x236 + x237 + x238 + x240 ++ x270 + x289 + x291 + x292 + x293 + x294 + x340 + x343 + x353 + x354 ++ x355 + x357 + x358 + x361 + x362 + x363 + x364 + x365 + x373 + x374 ++ x398 + x423 + x425 + x426 + x427 + x428 + x450 + x455 + x492 + x493 ++ x498 + x501 + x502 <= 1 + +x1 + x42 + x45 + x50 + x52 + x53 + x58 + x63 + x97 + x121 ++ x122 + x124 + x137 + x142 + x143 + x144 + x145 + x146 + x147 + x184 ++ x186 + x187 + x188 + x189 + x192 + x193 + x194 + x195 + x196 + x197 ++ x204 + x205 + x206 + x208 + x209 + x232 + x235 + x236 + x237 + x238 ++ x239 + x240 + x242 + x289 + x290 + x291 + x292 + x294 + x343 + x352 ++ x353 + x354 + x355 + x356 + x357 + x364 + x365 + x368 + x374 + x397 ++ x418 + x420 + x421 + x455 + x466 + x474 + x492 + x493 + x499 + x500 ++ x501 + x502 <= 1 + +x42 + x47 + x52 + x63 + x97 + x111 + x122 + x126 + x137 + x142 ++ x146 + x147 + x184 + x189 + x194 + x197 + x204 + x206 + x208 + x232 ++ x238 + x239 + x240 + x242 + x266 + x291 + x292 + x343 + x352 + x353 ++ x356 + x357 + x364 + x368 + x373 + x397 + x417 + x418 + x421 + x422 ++ x455 + x466 + x493 <= 1 + +x21 + x29 + x42 + x46 + x47 + x63 + x96 + x97 + x99 + x108 ++ x111 + x126 + x130 + x142 + x146 + x171 + x194 + x204 + x206 + x208 ++ x232 + x240 + x243 + x266 + x292 + x352 + x353 + x364 + x368 + x371 ++ x394 + x397 + x398 + x408 + x417 + x418 + x421 + x422 + x451 + x455 ++ x466 <= 1 + +x12 + x13 + x17 + x18 + x20 + x22 + x34 + x35 + x65 + x76 ++ x77 + x108 + x111 + x121 + x124 + x125 + x131 + x172 + x174 + x176 ++ x177 + x179 + x183 + x198 + x201 + x206 + x207 + x208 + x232 + x233 ++ x241 + x244 + x245 + x246 + x247 + x248 + x249 + x259 + x260 + x262 ++ x263 + x264 + x266 + x267 + x277 + x279 + x290 + x315 + x316 + x319 ++ x336 + x353 + x364 + x369 + x389 + x391 + x394 + x395 + x398 + x413 ++ x414 + x415 + x416 + x431 + x451 + x452 + x475 + x493 <= 1 + +x13 + x17 + x18 + x20 + x30 + x31 + x34 + x35 + x65 + x76 ++ x77 + x78 + x90 + x111 + x126 + x128 + x129 + x133 + x138 + x161 ++ x171 + x172 + x173 + x174 + x176 + x177 + x179 + x182 + x183 + x201 ++ x206 + x207 + x208 + x233 + x244 + x245 + x246 + x247 + x248 + x249 ++ x259 + x260 + x262 + x263 + x264 + x266 + x267 + x277 + x279 + x290 ++ x314 + x315 + x316 + x338 + x364 + x366 + x367 + x369 + x391 + x394 ++ x414 + x433 + x452 + x497 <= 1 + +x18 + x20 + x21 + x30 + x35 + x54 + x56 + x57 + x90 + x91 ++ x93 + x94 + x95 + x108 + x124 + x126 + x128 + x132 + x133 + x160 ++ x163 + x172 + x173 + x174 + x175 + x179 + x182 + x183 + x249 + x259 ++ x260 + x262 + x263 + x266 + x279 + x287 + x315 + x316 + x336 + x338 ++ x364 + x366 + x380 + x388 + x390 + x391 + x393 + x394 + x433 + x444 ++ x452 + x454 + x492 + x495 + x497 <= 1 + +x18 + x20 + x21 + x30 + x56 + x84 + x90 + x92 + x93 + x94 ++ x95 + x133 + x138 + x160 + x175 + x181 + x183 + x205 + x207 + x259 ++ x262 + x263 + x266 + x267 + x270 + x277 + x283 + x287 + x316 + x317 ++ x333 + x338 + x366 + x376 + x380 + x388 + x390 + x391 + x392 + x492 + <= 1 + +x30 + x66 + x72 + x90 + x95 + x138 + x160 + x178 + x183 + x205 ++ x262 + x263 + x266 + x267 + x270 + x277 + x283 + x300 + x317 + x333 ++ x334 + x336 + x337 + x338 + x366 + x369 + x376 + x378 + x388 + x390 ++ x392 + x446 <= 1 + +x19 + x22 + x44 + x53 + x120 + x122 + x142 + x143 + x145 + x163 ++ x184 + x185 + x187 + x189 + x192 + x194 + x196 + x197 + x204 + x205 ++ x206 + x208 + x209 + x235 + x238 + x239 + x288 + x292 + x293 + x294 ++ x343 + x353 + x355 + x356 + x357 + x359 + x361 + x362 + x365 + x366 ++ x368 + x373 + x374 + x395 + x398 + x423 + x426 + x428 + x455 + x488 ++ x492 + x498 + x499 + x501 + x502 <= 1 + +x1 + x19 + x22 + x48 + x50 + x53 + x58 + x62 + x70 + x74 ++ x120 + x122 + x123 + x124 + x137 + x142 + x143 + x144 + x145 + x147 ++ x163 + x184 + x185 + x186 + x187 + x188 + x189 + x192 + x193 + x194 ++ x195 + x196 + x197 + x204 + x205 + x206 + x207 + x208 + x209 + x233 ++ x235 + x236 + x237 + x238 + x239 + x240 + x242 + x268 + x277 + x288 ++ x289 + x291 + x292 + x293 + x294 + x343 + x353 + x355 + x357 + x358 ++ x359 + x360 + x362 + x363 + x365 + x366 + x368 + x370 + x372 + x373 ++ x374 + x375 + x381 + x396 + x397 + x398 + x418 + x420 + x423 + x425 ++ x427 + x428 + x450 + x455 + x473 + x492 + x493 + x496 + x498 + x499 ++ x501 + x502 <= 1 + +x1 + x50 + x53 + x58 + x62 + x63 + x74 + x97 + x111 + x121 ++ x122 + x142 + x143 + x144 + x146 + x147 + x163 + x181 + x184 + x186 ++ x187 + x189 + x192 + x193 + x194 + x195 + x204 + x205 + x206 + x208 ++ x209 + x232 + x233 + x234 + x235 + x236 + x237 + x238 + x239 + x240 ++ x268 + x281 + x288 + x290 + x291 + x292 + x352 + x353 + x354 + x355 ++ x356 + x357 + x365 + x366 + x368 + x396 + x397 + x419 + x472 + x473 ++ x492 + x493 + x496 + x500 + x501 <= 1 + +x1 + x2 + x7 + x11 + x42 + x47 + x50 + x62 + x63 + x97 ++ x111 + x117 + x122 + x126 + x127 + x146 + x147 + x163 + x184 + x189 ++ x193 + x194 + x195 + x197 + x204 + x205 + x206 + x208 + x209 + x232 ++ x235 + x236 + x237 + x238 + x239 + x240 + x241 + x243 + x256 + x268 ++ x285 + x343 + x352 + x353 + x355 + x356 + x357 + x368 + x373 + x375 ++ x394 + x395 + x397 + x398 + x417 + x418 + x421 + x455 + x456 + x472 ++ x492 + x493 + x501 <= 1 + +x1 + x7 + x11 + x17 + x21 + x29 + x46 + x63 + x65 + x73 ++ x74 + x76 + x77 + x96 + x97 + x99 + x108 + x110 + x111 + x121 ++ x123 + x125 + x126 + x130 + x145 + x146 + x163 + x174 + x176 + x177 ++ x184 + x195 + x196 + x204 + x205 + x206 + x207 + x208 + x209 + x232 ++ x240 + x241 + x243 + x246 + x264 + x265 + x266 + x281 + x286 + x314 ++ x319 + x352 + x364 + x368 + x372 + x394 + x395 + x396 + x397 + x398 ++ x419 + x422 + x451 + x452 + x455 + x456 + x472 + x493 <= 1 + +x6 + x7 + x11 + x12 + x13 + x16 + x17 + x21 + x22 + x24 ++ x29 + x33 + x34 + x35 + x46 + x65 + x68 + x73 + x74 + x76 ++ x77 + x78 + x97 + x108 + x109 + x110 + x111 + x121 + x125 + x126 ++ x128 + x130 + x131 + x132 + x138 + x145 + x171 + x174 + x176 + x177 ++ x198 + x200 + x202 + x204 + x206 + x207 + x232 + x233 + x241 + x244 ++ x246 + x247 + x248 + x259 + x264 + x266 + x267 + x277 + x279 + x281 ++ x314 + x319 + x354 + x364 + x366 + x367 + x369 + x394 + x395 + x397 ++ x398 + x415 + x416 + x422 + x429 + x431 + x432 + x451 + x452 + x493 ++ x497 <= 1 + +x3 + x7 + x11 + x12 + x13 + x16 + x18 + x21 + x22 + x30 ++ x31 + x33 + x34 + x35 + x57 + x64 + x65 + x68 + x69 + x73 ++ x76 + x77 + x78 + x94 + x95 + x101 + x111 + x125 + x126 + x128 ++ x129 + x130 + x131 + x132 + x133 + x138 + x163 + x171 + x172 + x173 ++ x174 + x176 + x177 + x178 + x179 + x181 + x182 + x200 + x201 + x204 ++ x206 + x207 + x233 + x241 + x244 + x245 + x246 + x247 + x248 + x249 ++ x259 + x260 + x262 + x263 + x264 + x266 + x267 + x277 + x279 + x283 ++ x284 + x314 + x315 + x319 + x338 + x354 + x364 + x366 + x367 + x369 ++ x390 + x391 + x394 + x415 + x429 + x431 + x433 + x451 + x452 + x454 ++ x472 + x473 + x476 + x497 <= 1 + +x0 + x15 + x18 + x20 + x21 + x33 + x35 + x54 + x56 + x57 ++ x64 + x65 + x68 + x78 + x80 + x81 + x84 + x90 + x91 + x93 ++ x94 + x101 + x124 + x126 + x128 + x129 + x131 + x132 + x133 + x154 ++ x163 + x172 + x174 + x177 + x178 + x179 + x181 + x183 + x233 + x241 ++ x244 + x249 + x259 + x260 + x262 + x263 + x266 + x267 + x277 + x279 ++ x283 + x315 + x316 + x317 + x333 + x338 + x364 + x367 + x369 + x390 ++ x391 + x392 + x393 + x394 + x433 + x445 + x452 + x454 + x476 + x480 ++ x495 + x497 <= 1 + +x0 + x18 + x20 + x30 + x33 + x35 + x64 + x84 + x90 + x91 ++ x92 + x94 + x132 + x156 + x158 + x163 + x178 + x181 + x183 + x233 ++ x249 + x259 + x260 + x262 + x263 + x266 + x267 + x270 + x277 + x287 ++ x317 + x333 + x337 + x364 + x367 + x376 + x378 + x379 + x388 + x390 ++ x392 + x393 + x394 + x445 + x480 <= 1 + +x3 + x18 + x19 + x20 + x30 + x33 + x79 + x84 + x90 + x91 ++ x95 + x154 + x178 + x183 + x259 + x262 + x263 + x266 + x267 + x270 ++ x300 + x317 + x327 + x328 + x333 + x334 + x337 + x366 + x369 + x376 ++ x377 + x378 + x390 + x392 + x394 <= 1 + +x19 + x22 + x44 + x48 + x50 + x53 + x62 + x71 + x93 + x122 ++ x143 + x163 + x167 + x184 + x185 + x187 + x189 + x193 + x194 + x196 ++ x197 + x204 + x205 + x206 + x208 + x209 + x232 + x233 + x235 + x288 ++ x292 + x293 + x343 + x347 + x357 + x361 + x365 + x366 + x373 + x374 ++ x395 + x397 + x398 + x423 + x424 + x426 + x455 + x466 + x475 + x488 ++ x492 + x493 + x496 + x498 + x499 + x500 + x501 + x502 <= 1 + +x19 + x22 + x45 + x46 + x48 + x50 + x51 + x53 + x62 + x70 ++ x71 + x119 + x120 + x121 + x122 + x123 + x143 + x144 + x145 + x160 ++ x163 + x167 + x168 + x184 + x185 + x186 + x187 + x188 + x189 + x193 ++ x195 + x196 + x197 + x204 + x205 + x206 + x208 + x209 + x232 + x233 ++ x235 + x236 + x237 + x238 + x239 + x265 + x268 + x270 + x281 + x288 ++ x291 + x293 + x343 + x347 + x357 + x359 + x360 + x365 + x366 + x368 ++ x370 + x372 + x373 + x374 + x375 + x395 + x397 + x398 + x420 + x424 ++ x450 + x455 + x466 + x473 + x474 + x492 + x493 + x496 + x499 + x500 ++ x501 + x502 <= 1 + +x1 + x2 + x5 + x46 + x47 + x50 + x53 + x62 + x63 + x74 ++ x96 + x101 + x111 + x121 + x122 + x123 + x133 + x143 + x144 + x145 ++ x146 + x147 + x163 + x167 + x184 + x185 + x186 + x187 + x188 + x189 ++ x192 + x193 + x194 + x195 + x196 + x197 + x204 + x205 + x206 + x207 ++ x208 + x209 + x232 + x233 + x234 + x235 + x236 + x237 + x238 + x239 ++ x240 + x241 + x242 + x243 + x268 + x270 + x277 + x281 + x288 + x291 ++ x343 + x352 + x353 + x355 + x356 + x357 + x364 + x365 + x366 + x368 ++ x370 + x372 + x373 + x374 + x375 + x395 + x396 + x397 + x398 + x417 ++ x419 + x420 + x430 + x452 + x455 + x456 + x466 + x473 + x474 + x492 ++ x493 + x496 + x498 + x499 + x500 + x501 + x502 <= 1 + +x1 + x2 + x4 + x5 + x7 + x11 + x42 + x43 + x46 + x47 ++ x50 + x62 + x63 + x69 + x74 + x76 + x96 + x99 + x109 + x110 ++ x111 + x116 + x117 + x121 + x122 + x123 + x125 + x126 + x145 + x146 ++ x147 + x161 + x163 + x165 + x176 + x184 + x185 + x186 + x187 + x189 ++ x193 + x195 + x196 + x197 + x202 + x204 + x205 + x206 + x207 + x208 ++ x209 + x211 + x214 + x232 + x233 + x234 + x235 + x236 + x237 + x238 ++ x239 + x240 + x241 + x243 + x256 + x264 + x265 + x266 + x267 + x268 ++ x270 + x277 + x281 + x285 + x343 + x352 + x355 + x356 + x357 + x364 ++ x365 + x366 + x368 + x372 + x373 + x375 + x394 + x395 + x396 + x397 ++ x398 + x399 + x417 + x419 + x422 + x430 + x452 + x455 + x456 + x472 ++ x473 + x474 + x492 + x493 + x495 + x499 + x501 + x502 <= 1 + +x0 + x1 + x2 + x4 + x5 + x6 + x11 + x69 + x74 + x75 ++ x96 + x99 + x109 + x110 + x111 + x130 + x131 + x164 + x165 + x173 ++ x186 + x192 + x196 + x197 + x198 + x200 + x202 + x204 + x205 + x207 ++ x227 + x232 + x233 + x234 + x236 + x237 + x239 + x243 + x259 + x264 ++ x265 + x266 + x267 + x268 + x277 + x279 + x281 + x282 + x283 + x284 ++ x285 + x319 + x352 + x354 + x355 + x356 + x365 + x368 + x375 + x394 ++ x395 + x396 + x398 + x399 + x430 + x431 + x434 + x451 + x452 + x453 ++ x454 + x455 + x472 + x473 + x493 <= 1 + +x0 + x2 + x6 + x7 + x11 + x12 + x14 + x15 + x17 + x21 ++ x22 + x29 + x65 + x68 + x69 + x73 + x74 + x75 + x91 + x96 ++ x100 + x101 + x107 + x108 + x109 + x110 + x111 + x123 + x126 + x128 ++ x130 + x131 + x132 + x161 + x164 + x166 + x171 + x173 + x176 + x177 ++ x183 + x186 + x192 + x198 + x199 + x200 + x201 + x202 + x203 + x204 ++ x207 + x233 + x234 + x236 + x237 + x243 + x244 + x259 + x261 + x264 ++ x265 + x266 + x267 + x268 + x277 + x279 + x281 + x283 + x284 + x285 ++ x319 + x337 + x354 + x355 + x356 + x364 + x365 + x366 + x367 + x368 ++ x369 + x394 + x395 + x396 + x398 + x399 + x429 + x430 + x431 + x432 ++ x433 + x446 + x451 + x452 + x453 + x454 + x471 + x472 + x473 + x497 + <= 1 + +x3 + x7 + x11 + x12 + x14 + x15 + x16 + x21 + x30 + x31 ++ x33 + x34 + x35 + x38 + x64 + x65 + x68 + x69 + x73 + x74 ++ x75 + x76 + x77 + x78 + x91 + x96 + x100 + x101 + x107 + x108 ++ x110 + x111 + x123 + x124 + x126 + x128 + x129 + x130 + x131 + x132 ++ x159 + x171 + x172 + x173 + x177 + x178 + x179 + x183 + x198 + x200 ++ x201 + x234 + x241 + x244 + x245 + x259 + x260 + x264 + x266 + x267 ++ x268 + x277 + x279 + x284 + x285 + x314 + x319 + x327 + x337 + x338 ++ x354 + x355 + x364 + x365 + x366 + x367 + x369 + x394 + x395 + x396 ++ x429 + x431 + x432 + x433 + x442 + x445 + x451 + x453 + x454 + x472 ++ x473 + x476 + x497 <= 1 + +x15 + x20 + x30 + x33 + x34 + x35 + x54 + x55 + x64 + x65 ++ x68 + x69 + x77 + x78 + x79 + x80 + x81 + x82 + x83 + x84 ++ x91 + x101 + x107 + x108 + x124 + x128 + x129 + x131 + x132 + x154 ++ x155 + x156 + x157 + x163 + x177 + x178 + x179 + x181 + x183 + x201 ++ x234 + x241 + x260 + x261 + x262 + x264 + x266 + x267 + x277 + x328 ++ x337 + x364 + x365 + x367 + x369 + x379 + x390 + x392 + x393 + x394 ++ x399 + x429 + x444 + x445 + x472 + x476 + x478 + x480 + x497 <= 1 + +x0 + x20 + x30 + x33 + x34 + x35 + x64 + x68 + x79 + x81 ++ x83 + x84 + x92 + x98 + x108 + x156 + x158 + x163 + x178 + x179 ++ x180 + x181 + x183 + x259 + x262 + x263 + x267 + x270 + x277 + x328 ++ x329 + x333 + x337 + x344 + x348 + x364 + x367 + x369 + x379 + x388 ++ x392 + x393 + x394 + x445 <= 1 + +x19 + x20 + x30 + x33 + x34 + x79 + x82 + x83 + x95 + x154 ++ x156 + x158 + x178 + x180 + x183 + x201 + x262 + x263 + x266 + x267 ++ x268 + x270 + x297 + x317 + x318 + x327 + x328 + x343 + x364 + x369 ++ x377 + x394 + x401 <= 1 + +x48 + x51 + x70 + x71 + x80 + x113 + x119 + x133 + x144 + x149 ++ x166 + x167 + x168 + x169 + x184 + x185 + x186 + x188 + x206 + x231 ++ x235 + x237 + x265 + x268 + x269 + x270 + x288 + x333 + x334 + x366 ++ x368 + x370 + x371 + x372 + x374 + x452 + x456 + x476 + x492 + x496 + <= 1 + +x19 + x22 + x27 + x45 + x48 + x49 + x50 + x51 + x53 + x62 ++ x70 + x71 + x80 + x109 + x112 + x119 + x120 + x121 + x144 + x151 ++ x160 + x166 + x167 + x168 + x179 + x184 + x185 + x186 + x187 + x188 ++ x189 + x195 + x196 + x203 + x204 + x206 + x208 + x231 + x235 + x238 ++ x257 + x265 + x267 + x268 + x269 + x270 + x280 + x281 + x282 + x283 ++ x285 + x288 + x330 + x334 + x343 + x347 + x351 + x359 + x360 + x366 ++ x368 + x370 + x371 + x372 + x374 + x375 + x395 + x398 + x420 + x440 ++ x456 + x474 + x492 + x496 + x499 + x500 + x502 <= 1 + +x2 + x3 + x4 + x19 + x21 + x45 + x48 + x49 + x50 + x51 ++ x53 + x62 + x96 + x99 + x109 + x112 + x113 + x118 + x121 + x123 ++ x151 + x160 + x162 + x165 + x169 + x179 + x184 + x185 + x186 + x187 ++ x189 + x203 + x206 + x207 + x208 + x209 + x210 + x211 + x212 + x213 ++ x214 + x232 + x235 + x243 + x253 + x256 + x257 + x261 + x265 + x266 ++ x267 + x268 + x269 + x270 + x280 + x281 + x282 + x283 + x285 + x288 ++ x295 + x347 + x366 + x368 + x370 + x374 + x375 + x396 + x397 + x398 ++ x399 + x430 + x435 + x436 + x438 + x440 + x456 + x476 + x493 + x496 + <= 1 + +x0 + x2 + x3 + x4 + x7 + x21 + x32 + x43 + x62 + x63 ++ x69 + x76 + x96 + x99 + x109 + x110 + x112 + x116 + x118 + x121 ++ x123 + x126 + x136 + x145 + x146 + x161 + x165 + x169 + x170 + x179 ++ x185 + x186 + x189 + x200 + x203 + x204 + x205 + x206 + x207 + x208 ++ x209 + x210 + x211 + x212 + x213 + x214 + x232 + x233 + x236 + x239 ++ x241 + x243 + x253 + x256 + x258 + x261 + x265 + x266 + x267 + x268 ++ x269 + x270 + x281 + x282 + x283 + x284 + x285 + x286 + x287 + x288 ++ x327 + x347 + x352 + x356 + x357 + x364 + x365 + x366 + x368 + x370 ++ x372 + x375 + x395 + x396 + x397 + x398 + x399 + x419 + x429 + x430 ++ x435 + x440 + x451 + x454 + x456 + x469 + x472 + x474 + x476 + x493 ++ x495 + x496 + x499 + x501 <= 1 + +x0 + x2 + x5 + x7 + x11 + x29 + x32 + x43 + x68 + x74 ++ x75 + x96 + x109 + x110 + x111 + x112 + x125 + x130 + x132 + x141 ++ x160 + x164 + x165 + x171 + x173 + x186 + x192 + x198 + x199 + x200 ++ x202 + x203 + x204 + x205 + x209 + x212 + x213 + x227 + x232 + x233 ++ x234 + x236 + x243 + x256 + x261 + x264 + x265 + x266 + x268 + x269 ++ x270 + x277 + x279 + x281 + x282 + x283 + x284 + x285 + x287 + x288 ++ x327 + x347 + x352 + x354 + x356 + x368 + x375 + x393 + x394 + x395 ++ x396 + x398 + x399 + x429 + x430 + x431 + x434 + x435 + x443 + x446 ++ x451 + x452 + x454 + x456 + x472 + x474 + x493 + x495 + x496 <= 1 + +x0 + x5 + x6 + x7 + x11 + x21 + x29 + x30 + x31 + x32 ++ x34 + x38 + x40 + x68 + x69 + x73 + x75 + x96 + x100 + x101 ++ x108 + x109 + x110 + x111 + x125 + x130 + x131 + x132 + x158 + x160 ++ x161 + x164 + x165 + x166 + x171 + x173 + x186 + x198 + x199 + x200 ++ x201 + x202 + x203 + x207 + x213 + x233 + x234 + x236 + x237 + x243 ++ x259 + x261 + x264 + x265 + x266 + x267 + x269 + x277 + x279 + x281 ++ x283 + x284 + x285 + x287 + x327 + x352 + x354 + x365 + x367 + x368 ++ x369 + x394 + x395 + x396 + x398 + x399 + x429 + x430 + x431 + x432 ++ x434 + x442 + x446 + x447 + x449 + x451 + x452 + x454 + x471 + x472 ++ x473 + x482 + x493 + x495 + x497 + x499 <= 1 + +x6 + x7 + x9 + x10 + x11 + x14 + x16 + x20 + x21 + x30 ++ x31 + x32 + x33 + x34 + x35 + x38 + x40 + x55 + x64 + x65 ++ x68 + x69 + x75 + x77 + x78 + x100 + x101 + x108 + x109 + x110 ++ x111 + x130 + x154 + x156 + x157 + x158 + x159 + x160 + x161 + x164 ++ x165 + x166 + x171 + x172 + x173 + x178 + x181 + x198 + x199 + x200 ++ x201 + x202 + x203 + x227 + x233 + x234 + x236 + x259 + x261 + x264 ++ x267 + x268 + x277 + x279 + x283 + x284 + x285 + x327 + x328 + x338 ++ x352 + x354 + x365 + x366 + x369 + x394 + x395 + x396 + x399 + x432 ++ x434 + x442 + x443 + x445 + x446 + x447 + x448 + x451 + x453 + x454 ++ x471 + x472 + x473 + x476 + x477 + x479 + x480 + x493 + x495 + x497 + <= 1 + +x6 + x9 + x10 + x19 + x20 + x30 + x31 + x33 + x34 + x55 ++ x64 + x65 + x68 + x69 + x75 + x77 + x78 + x79 + x80 + x81 ++ x82 + x84 + x91 + x92 + x96 + x98 + x101 + x108 + x113 + x129 ++ x154 + x156 + x158 + x163 + x164 + x171 + x179 + x180 + x181 + x198 ++ x200 + x201 + x203 + x204 + x261 + x262 + x264 + x266 + x267 + x268 ++ x271 + x277 + x328 + x337 + x367 + x369 + x393 + x396 + x399 + x441 ++ x442 + x443 + x444 + x445 + x453 + x472 + x476 + x480 + x485 <= 1 + +x10 + x15 + x19 + x20 + x22 + x30 + x33 + x34 + x35 + x64 ++ x68 + x78 + x79 + x80 + x81 + x82 + x83 + x84 + x92 + x96 ++ x97 + x98 + x100 + x101 + x108 + x110 + x113 + x129 + x154 + x155 ++ x156 + x157 + x158 + x159 + x178 + x179 + x180 + x182 + x242 + x262 ++ x266 + x267 + x268 + x271 + x277 + x279 + x318 + x327 + x328 + x329 ++ x337 + x344 + x345 + x367 + x369 + x379 + x392 + x394 + x399 + x408 ++ x441 + x444 + x445 + x446 + x478 + x480 <= 1 + +x19 + x20 + x30 + x33 + x34 + x35 + x79 + x80 + x81 + x82 ++ x83 + x92 + x95 + x96 + x97 + x98 + x100 + x110 + x111 + x113 ++ x129 + x154 + x155 + x156 + x157 + x158 + x159 + x178 + x179 + x180 ++ x199 + x203 + x260 + x266 + x267 + x268 + x283 + x314 + x317 + x318 ++ x327 + x328 + x329 + x367 + x369 + x377 + x401 + x441 + x444 + x445 ++ x478 <= 1 + +x23 + x24 + x25 + x26 + x27 + x33 + x37 + x48 + x51 + x70 ++ x71 + x80 + x109 + x113 + x133 + x143 + x149 + x150 + x162 + x166 ++ x167 + x168 + x169 + x170 + x185 + x186 + x188 + x206 + x207 + x226 ++ x228 + x231 + x235 + x237 + x257 + x265 + x268 + x269 + x270 + x280 ++ x282 + x288 + x297 + x298 + x299 + x333 + x334 + x335 + x347 + x348 ++ x366 + x368 + x370 + x371 + x397 + x436 + x440 + x442 + x456 + x471 ++ x476 + x496 <= 1 + +x4 + x19 + x22 + x23 + x27 + x48 + x49 + x50 + x51 + x53 ++ x62 + x71 + x109 + x112 + x113 + x119 + x121 + x151 + x162 + x166 ++ x167 + x169 + x179 + x181 + x184 + x185 + x186 + x187 + x196 + x206 ++ x207 + x208 + x209 + x211 + x216 + x218 + x228 + x230 + x231 + x235 ++ x257 + x265 + x268 + x270 + x280 + x281 + x282 + x283 + x285 + x288 ++ x295 + x298 + x334 + x335 + x347 + x348 + x351 + x366 + x368 + x372 ++ x384 + x387 + x395 + x396 + x397 + x398 + x438 + x439 + x440 + x442 ++ x456 + x476 + x487 + x496 + x500 <= 1 + +x4 + x19 + x21 + x23 + x49 + x50 + x53 + x99 + x109 + x112 ++ x113 + x148 + x149 + x150 + x151 + x153 + x160 + x162 + x166 + x167 ++ x169 + x170 + x181 + x185 + x187 + x189 + x203 + x207 + x208 + x209 ++ x210 + x211 + x212 + x214 + x215 + x228 + x256 + x257 + x258 + x261 ++ x265 + x268 + x269 + x270 + x278 + x280 + x281 + x282 + x283 + x285 ++ x286 + x287 + x288 + x295 + x296 + x298 + x299 + x310 + x334 + x347 ++ x352 + x366 + x368 + x372 + x396 + x397 + x398 + x399 + x435 + x436 ++ x438 + x440 + x456 + x466 + x467 + x471 + x476 + x487 + x493 + x496 + <= 1 + +x0 + x2 + x3 + x4 + x21 + x32 + x43 + x49 + x52 + x62 ++ x96 + x99 + x109 + x111 + x112 + x113 + x121 + x126 + x146 + x148 ++ x151 + x153 + x160 + x161 + x162 + x165 + x169 + x170 + x185 + x189 ++ x204 + x207 + x208 + x209 + x210 + x211 + x212 + x213 + x214 + x215 ++ x226 + x227 + x228 + x229 + x256 + x257 + x258 + x261 + x265 + x266 ++ x268 + x269 + x270 + x278 + x281 + x282 + x283 + x284 + x285 + x286 ++ x287 + x288 + x299 + x352 + x365 + x366 + x368 + x385 + x396 + x397 ++ x398 + x436 + x438 + x439 + x440 + x454 + x456 + x465 + x467 + x469 ++ x470 + x471 + x496 <= 1 + +x5 + x6 + x8 + x9 + x11 + x31 + x32 + x96 + x99 + x109 ++ x110 + x111 + x112 + x125 + x146 + x153 + x160 + x161 + x164 + x165 ++ x186 + x190 + x199 + x202 + x209 + x210 + x212 + x213 + x215 + x227 ++ x234 + x236 + x256 + x257 + x259 + x261 + x265 + x267 + x268 + x269 ++ x278 + x281 + x282 + x283 + x284 + x285 + x286 + x287 + x288 + x345 ++ x368 + x369 + x393 + x395 + x396 + x399 + x434 + x441 + x442 + x443 ++ x446 + x453 + x454 + x456 + x471 + x472 + x473 + x475 + x482 + x495 + <= 1 + +x5 + x6 + x7 + x8 + x9 + x10 + x11 + x16 + x30 + x31 ++ x32 + x34 + x35 + x40 + x65 + x66 + x68 + x69 + x75 + x78 ++ x96 + x100 + x101 + x108 + x109 + x110 + x111 + x125 + x157 + x158 ++ x160 + x161 + x164 + x165 + x188 + x198 + x199 + x200 + x201 + x202 ++ x203 + x234 + x236 + x243 + x259 + x261 + x264 + x267 + x269 + x277 ++ x279 + x281 + x283 + x284 + x285 + x328 + x341 + x345 + x354 + x365 ++ x369 + x394 + x395 + x396 + x399 + x432 + x434 + x441 + x442 + x443 ++ x446 + x449 + x451 + x471 + x472 + x473 + x477 + x482 + x495 + x499 + <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 + x14 + x21 + x31 + x34 ++ x38 + x40 + x65 + x68 + x69 + x75 + x77 + x96 + x98 + x100 ++ x101 + x109 + x110 + x111 + x125 + x157 + x159 + x160 + x161 + x164 ++ x166 + x171 + x188 + x198 + x199 + x200 + x202 + x203 + x227 + x234 ++ x259 + x261 + x264 + x265 + x267 + x268 + x269 + x272 + x277 + x279 ++ x283 + x284 + x285 + x288 + x309 + x322 + x328 + x331 + x341 + x342 ++ x345 + x354 + x365 + x367 + x369 + x394 + x396 + x399 + x432 + x442 ++ x444 + x446 + x448 + x451 + x453 + x471 + x472 + x473 + x476 + x477 ++ x478 + x479 + x480 + x482 + x494 + x497 <= 1 + +x6 + x8 + x9 + x10 + x22 + x31 + x32 + x33 + x60 + x61 ++ x64 + x66 + x69 + x81 + x83 + x92 + x96 + x98 + x100 + x101 ++ x110 + x111 + x112 + x123 + x125 + x154 + x155 + x157 + x159 + x178 ++ x180 + x182 + x188 + x234 + x242 + x254 + x267 + x269 + x272 + x274 ++ x279 + x309 + x312 + x322 + x323 + x327 + x328 + x329 + x331 + x340 ++ x341 + x342 + x344 + x345 + x365 + x367 + x369 + x399 + x405 + x408 ++ x432 + x441 + x442 + x443 + x444 + x445 + x446 + x453 + x472 + x473 ++ x476 + x477 + x478 + x479 + x480 + x495 + x497 <= 1 + +x8 + x9 + x10 + x22 + x33 + x41 + x59 + x64 + x66 + x67 ++ x81 + x82 + x83 + x92 + x96 + x97 + x98 + x100 + x101 + x110 ++ x112 + x113 + x154 + x155 + x156 + x157 + x158 + x159 + x178 + x180 ++ x182 + x188 + x219 + x242 + x260 + x262 + x276 + x279 + x318 + x320 ++ x322 + x326 + x327 + x328 + x329 + x341 + x342 + x344 + x345 + x365 ++ x395 + x399 + x405 + x407 + x408 + x441 + x444 + x445 + x446 + x463 ++ x477 + x478 + x479 + x495 <= 1 + +x8 + x11 + x30 + x33 + x34 + x64 + x67 + x79 + x82 + x83 ++ x96 + x97 + x98 + x100 + x101 + x110 + x111 + x113 + x154 + x155 ++ x156 + x157 + x158 + x159 + x171 + x178 + x179 + x180 + x182 + x260 ++ x274 + x314 + x318 + x326 + x327 + x328 + x383 + x401 + x405 + x408 ++ x411 + x434 + x441 + x442 + x444 + x445 + x463 <= 1 + +x20 + x23 + x24 + x25 + x26 + x27 + x28 + x49 + x51 + x82 ++ x86 + x109 + x110 + x112 + x113 + x155 + x162 + x166 + x167 + x168 ++ x169 + x181 + x183 + x185 + x186 + x187 + x207 + x209 + x218 + x226 ++ x228 + x230 + x231 + x235 + x237 + x257 + x258 + x265 + x268 + x269 ++ x270 + x280 + x282 + x286 + x288 + x297 + x298 + x300 + x335 + x346 ++ x348 + x351 + x370 + x371 + x386 + x387 + x397 + x435 + x436 + x438 ++ x440 + x461 + x471 + x476 + x486 + x487 + x489 + x490 + x491 + x496 ++ x500 + x503 <= 1 + +x4 + x19 + x23 + x24 + x25 + x26 + x27 + x48 + x49 + x51 ++ x53 + x70 + x108 + x109 + x112 + x113 + x148 + x149 + x150 + x158 ++ x160 + x162 + x166 + x167 + x168 + x169 + x170 + x179 + x181 + x184 ++ x185 + x186 + x187 + x193 + x207 + x209 + x214 + x218 + x226 + x228 ++ x230 + x231 + x235 + x237 + x257 + x258 + x265 + x268 + x269 + x270 ++ x280 + x281 + x282 + x283 + x285 + x286 + x287 + x288 + x295 + x297 ++ x298 + x299 + x300 + x334 + x335 + x346 + x347 + x348 + x351 + x370 ++ x371 + x387 + x397 + x435 + x436 + x438 + x440 + x442 + x467 + x471 ++ x476 + x486 + x487 + x490 + x496 + x500 + x503 <= 1 + +x4 + x19 + x21 + x23 + x24 + x27 + x28 + x49 + x96 + x109 ++ x112 + x113 + x148 + x150 + x152 + x153 + x162 + x166 + x168 + x169 ++ x170 + x181 + x185 + x187 + x209 + x210 + x215 + x226 + x228 + x230 ++ x257 + x258 + x265 + x268 + x269 + x270 + x280 + x282 + x284 + x285 ++ x286 + x287 + x288 + x295 + x296 + x298 + x299 + x310 + x335 + x346 ++ x351 + x396 + x397 + x398 + x435 + x436 + x437 + x438 + x439 + x440 ++ x456 + x465 + x466 + x468 + x471 + x476 + x486 + x487 + x489 + x491 ++ x496 <= 1 + +x7 + x23 + x37 + x38 + x41 + x43 + x49 + x52 + x96 + x109 ++ x111 + x112 + x113 + x114 + x140 + x148 + x152 + x153 + x161 + x162 ++ x165 + x169 + x170 + x187 + x204 + x215 + x226 + x229 + x253 + x257 ++ x258 + x265 + x269 + x270 + x278 + x280 + x282 + x283 + x284 + x285 ++ x286 + x287 + x288 + x296 + x335 + x346 + x348 + x349 + x368 + x384 ++ x385 + x396 + x435 + x436 + x437 + x438 + x439 + x456 + x465 + x467 ++ x468 + x469 + x470 + x471 + x472 + x476 + x482 + x490 + x491 <= 1 + +x5 + x8 + x9 + x31 + x32 + x37 + x38 + x40 + x99 + x109 ++ x111 + x112 + x115 + x125 + x135 + x140 + x162 + x164 + x165 + x190 ++ x191 + x199 + x215 + x234 + x258 + x261 + x265 + x269 + x281 + x282 ++ x283 + x284 + x285 + x286 + x287 + x288 + x305 + x345 + x369 + x377 ++ x384 + x386 + x395 + x396 + x435 + x439 + x441 + x442 + x443 + x453 ++ x454 + x459 + x470 + x471 + x475 + x482 + x494 + x495 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 + x14 + x31 + x32 + x34 ++ x36 + x38 + x40 + x61 + x65 + x66 + x69 + x75 + x98 + x100 ++ x101 + x109 + x110 + x111 + x112 + x125 + x140 + x159 + x161 + x164 ++ x165 + x198 + x199 + x200 + x202 + x203 + x227 + x234 + x253 + x254 ++ x255 + x256 + x259 + x261 + x265 + x267 + x268 + x269 + x272 + x273 ++ x279 + x281 + x282 + x283 + x284 + x285 + x286 + x287 + x288 + x304 ++ x323 + x326 + x331 + x342 + x344 + x345 + x369 + x383 + x394 + x396 ++ x399 + x434 + x439 + x441 + x442 + x443 + x444 + x445 + x446 + x453 ++ x454 + x471 + x472 + x473 + x476 + x482 + x489 + x494 + x495 + x497 ++ x499 <= 1 + +x6 + x8 + x9 + x11 + x22 + x31 + x32 + x37 + x38 + x39 ++ x40 + x41 + x59 + x60 + x61 + x66 + x98 + x100 + x101 + x103 ++ x104 + x111 + x164 + x180 + x198 + x202 + x205 + x234 + x253 + x254 ++ x255 + x256 + x261 + x265 + x267 + x271 + x272 + x278 + x279 + x283 ++ x284 + x285 + x286 + x287 + x288 + x310 + x322 + x323 + x327 + x330 ++ x331 + x341 + x344 + x365 + x367 + x399 + x441 + x442 + x443 + x444 ++ x445 + x446 + x453 + x473 + x474 + x482 + x494 + x495 + x499 <= 1 + +x8 + x9 + x10 + x22 + x31 + x32 + x39 + x40 + x41 + x60 ++ x61 + x64 + x66 + x67 + x97 + x98 + x100 + x101 + x105 + x110 ++ x111 + x112 + x113 + x123 + x157 + x159 + x171 + x180 + x182 + x188 ++ x198 + x199 + x205 + x219 + x242 + x254 + x269 + x272 + x273 + x274 ++ x276 + x278 + x279 + x283 + x286 + x308 + x309 + x310 + x312 + x321 ++ x322 + x323 + x324 + x326 + x327 + x329 + x330 + x331 + x338 + x340 ++ x341 + x342 + x344 + x345 + x365 + x367 + x369 + x399 + x400 + x403 ++ x404 + x405 + x410 + x441 + x442 + x443 + x444 + x445 + x446 + x453 ++ x473 + x474 + x477 + x478 + x479 + x492 + x495 <= 1 + +x8 + x9 + x10 + x22 + x39 + x41 + x49 + x59 + x60 + x61 ++ x64 + x66 + x67 + x96 + x97 + x98 + x99 + x100 + x101 + x110 ++ x112 + x113 + x154 + x156 + x157 + x158 + x159 + x160 + x171 + x180 ++ x182 + x188 + x199 + x216 + x219 + x254 + x260 + x272 + x274 + x276 ++ x278 + x283 + x309 + x312 + x320 + x322 + x324 + x326 + x327 + x328 ++ x329 + x330 + x331 + x341 + x342 + x344 + x345 + x365 + x367 + x399 ++ x400 + x401 + x404 + x405 + x407 + x409 + x410 + x411 + x441 + x442 ++ x443 + x444 + x445 + x446 + x458 + x473 + x474 + x477 + x478 + x495 + <= 1 + +x22 + x34 + x41 + x58 + x59 + x61 + x67 + x96 + x97 + x98 ++ x110 + x112 + x113 + x154 + x155 + x156 + x157 + x159 + x160 + x171 ++ x178 + x180 + x182 + x205 + x216 + x217 + x225 + x260 + x274 + x276 ++ x308 + x309 + x312 + x318 + x326 + x327 + x328 + x329 + x330 + x331 ++ x340 + x341 + x342 + x344 + x345 + x367 + x399 + x401 + x407 + x409 ++ x411 + x441 + x442 + x443 + x444 + x445 + x446 + x473 + x474 + x495 + <= 1 + +x20 + x23 + x25 + x28 + x32 + x51 + x52 + x85 + x86 + x87 ++ x108 + x109 + x110 + x112 + x113 + x137 + x155 + x162 + x167 + x168 ++ x169 + x170 + x185 + x187 + x207 + x230 + x235 + x265 + x268 + x269 ++ x270 + x280 + x282 + x286 + x288 + x295 + x297 + x300 + x335 + x371 ++ x387 + x436 + x440 + x471 + x486 + x487 + x489 + x490 + x491 + x500 + <= 1 + +x19 + x23 + x24 + x25 + x26 + x28 + x32 + x51 + x52 + x86 ++ x87 + x108 + x109 + x110 + x112 + x113 + x149 + x150 + x156 + x162 ++ x166 + x167 + x168 + x169 + x170 + x185 + x186 + x187 + x207 + x230 ++ x231 + x235 + x239 + x265 + x268 + x269 + x270 + x280 + x282 + x285 ++ x286 + x287 + x295 + x297 + x334 + x335 + x346 + x347 + x348 + x351 ++ x371 + x382 + x386 + x387 + x397 + x435 + x436 + x438 + x439 + x440 ++ x442 + x465 + x467 + x486 + x487 + x489 + x490 + x491 + x496 + x500 ++ x503 <= 1 + +x5 + x18 + x19 + x23 + x26 + x28 + x51 + x108 + x109 + x112 ++ x113 + x162 + x166 + x168 + x170 + x181 + x185 + x226 + x229 + x230 ++ x245 + x257 + x265 + x268 + x269 + x270 + x280 + x282 + x284 + x285 ++ x287 + x288 + x295 + x296 + x298 + x299 + x346 + x348 + x349 + x350 ++ x351 + x382 + x384 + x386 + x387 + x396 + x397 + x435 + x436 + x437 ++ x438 + x439 + x440 + x442 + x465 + x467 + x468 + x469 + x486 + x487 ++ x489 + x490 + x491 + x494 + x496 + x503 <= 1 + +x7 + x19 + x23 + x26 + x38 + x49 + x52 + x100 + x108 + x109 ++ x111 + x112 + x113 + x135 + x136 + x140 + x152 + x162 + x175 + x207 ++ x229 + x253 + x257 + x258 + x265 + x269 + x270 + x278 + x282 + x283 ++ x284 + x285 + x286 + x287 + x288 + x296 + x298 + x301 + x311 + x346 ++ x348 + x349 + x350 + x351 + x382 + x384 + x386 + x435 + x436 + x437 ++ x438 + x439 + x441 + x442 + x465 + x467 + x468 + x469 + x470 + x471 ++ x476 + x482 + x487 + x489 + x490 + x494 + x496 + x503 <= 1 + +x6 + x7 + x8 + x36 + x37 + x38 + x39 + x41 + x43 + x48 ++ x49 + x52 + x100 + x112 + x113 + x114 + x115 + x135 + x136 + x139 ++ x140 + x152 + x161 + x162 + x164 + x165 + x169 + x170 + x175 + x191 ++ x199 + x229 + x247 + x253 + x254 + x258 + x261 + x265 + x269 + x271 ++ x275 + x280 + x282 + x283 + x284 + x285 + x286 + x287 + x288 + x296 ++ x301 + x303 + x305 + x346 + x350 + x351 + x367 + x384 + x385 + x386 ++ x395 + x396 + x435 + x437 + x438 + x439 + x441 + x443 + x453 + x459 ++ x465 + x467 + x468 + x469 + x470 + x471 + x472 + x474 + x475 + x476 ++ x479 + x482 + x489 + x490 + x494 + x496 + x503 <= 1 + +x6 + x8 + x9 + x10 + x31 + x32 + x36 + x37 + x38 + x39 ++ x40 + x41 + x48 + x52 + x60 + x61 + x98 + x99 + x100 + x101 ++ x110 + x136 + x161 + x164 + x165 + x182 + x202 + x203 + x234 + x250 ++ x253 + x254 + x255 + x256 + x258 + x265 + x267 + x268 + x269 + x271 ++ x272 + x273 + x275 + x278 + x279 + x282 + x283 + x284 + x285 + x286 ++ x287 + x288 + x301 + x303 + x304 + x305 + x326 + x330 + x341 + x344 ++ x345 + x346 + x351 + x367 + x369 + x383 + x384 + x385 + x386 + x424 ++ x437 + x438 + x441 + x442 + x443 + x444 + x445 + x453 + x468 + x470 ++ x471 + x472 + x473 + x474 + x475 + x481 + x490 + x494 + x495 + x497 + <= 1 + +x8 + x9 + x10 + x31 + x36 + x37 + x39 + x40 + x41 + x52 ++ x59 + x60 + x61 + x66 + x96 + x97 + x98 + x100 + x101 + x103 ++ x104 + x110 + x111 + x112 + x123 + x161 + x164 + x165 + x180 + x182 ++ x189 + x202 + x205 + x234 + x253 + x254 + x255 + x256 + x261 + x268 ++ x271 + x272 + x275 + x278 + x279 + x283 + x284 + x286 + x287 + x302 ++ x304 + x305 + x306 + x310 + x311 + x313 + x330 + x331 + x340 + x341 ++ x342 + x344 + x367 + x399 + x401 + x402 + x405 + x437 + x441 + x442 ++ x443 + x444 + x445 + x446 + x453 + x472 + x473 + x474 + x475 + x481 ++ x494 + x495 + x497 <= 1 + +x9 + x10 + x36 + x37 + x39 + x40 + x41 + x59 + x60 + x61 ++ x66 + x67 + x96 + x97 + x98 + x99 + x100 + x101 + x104 + x105 ++ x106 + x110 + x111 + x112 + x123 + x159 + x161 + x164 + x165 + x180 ++ x182 + x188 + x189 + x222 + x253 + x255 + x261 + x271 + x272 + x273 ++ x274 + x275 + x276 + x279 + x283 + x284 + x286 + x287 + x302 + x304 ++ x306 + x308 + x311 + x313 + x320 + x321 + x323 + x324 + x330 + x331 ++ x340 + x341 + x342 + x344 + x345 + x365 + x367 + x399 + x400 + x401 ++ x403 + x404 + x405 + x409 + x410 + x441 + x442 + x443 + x444 + x445 ++ x446 + x474 + x475 + x478 + x479 + x492 + x494 + x495 + x497 <= 1 + +x8 + x9 + x10 + x22 + x39 + x41 + x49 + x58 + x59 + x60 ++ x61 + x66 + x67 + x93 + x96 + x97 + x98 + x99 + x100 + x101 ++ x104 + x112 + x113 + x144 + x171 + x180 + x182 + x188 + x199 + x200 ++ x222 + x255 + x274 + x276 + x278 + x279 + x302 + x308 + x309 + x310 ++ x311 + x312 + x320 + x321 + x323 + x325 + x326 + x327 + x328 + x329 ++ x330 + x331 + x340 + x341 + x342 + x344 + x345 + x399 + x400 + x401 ++ x404 + x405 + x407 + x409 + x410 + x441 + x442 + x443 + x444 + x445 ++ x446 + x458 + x474 + x475 + x494 + x495 + x497 <= 1 + +x22 + x41 + x58 + x59 + x60 + x61 + x66 + x67 + x97 + x99 ++ x109 + x110 + x112 + x113 + x157 + x178 + x180 + x182 + x188 + x220 ++ x222 + x225 + x260 + x263 + x274 + x276 + x284 + x287 + x308 + x309 ++ x310 + x312 + x318 + x325 + x326 + x327 + x328 + x329 + x330 + x331 ++ x340 + x341 + x342 + x344 + x345 + x399 + x407 + x409 + x411 + x412 ++ x433 + x441 + x442 + x443 + x444 + x445 + x446 + x468 + x473 + x474 + <= 1 + +x23 + x25 + x28 + x32 + x51 + x85 + x86 + x87 + x88 + x108 ++ x109 + x112 + x113 + x137 + x155 + x167 + x168 + x169 + x170 + x205 ++ x265 + x268 + x269 + x270 + x277 + x278 + x280 + x282 + x284 + x285 ++ x286 + x297 + x335 + x349 + x371 + x382 + x383 + x387 + x436 + x461 ++ x486 + x487 + x488 + x489 + x491 + x498 + x503 <= 1 + +x18 + x23 + x32 + x85 + x86 + x88 + x108 + x109 + x112 + x113 ++ x137 + x155 + x167 + x168 + x169 + x170 + x181 + x205 + x265 + x269 ++ x270 + x277 + x278 + x280 + x283 + x284 + x285 + x286 + x287 + x288 ++ x329 + x349 + x371 + x382 + x383 + x387 + x460 + x461 + x483 + x486 ++ x488 + x491 + x494 + x498 + x503 <= 1 + +x18 + x23 + x100 + x112 + x113 + x135 + x136 + x140 + x162 + x166 ++ x168 + x175 + x209 + x221 + x253 + x265 + x266 + x267 + x269 + x270 ++ x278 + x280 + x282 + x284 + x286 + x287 + x288 + x346 + x349 + x350 ++ x351 + x382 + x384 + x386 + x437 + x465 + x470 + x487 + x489 + x494 ++ x496 + x503 <= 1 + +x7 + x18 + x19 + x23 + x38 + x58 + x100 + x108 + x109 + x112 ++ x113 + x135 + x136 + x139 + x140 + x162 + x168 + x175 + x178 + x207 ++ x253 + x258 + x265 + x266 + x269 + x270 + x278 + x280 + x282 + x283 ++ x284 + x286 + x287 + x288 + x296 + x311 + x346 + x349 + x350 + x355 ++ x382 + x383 + x384 + x386 + x465 + x468 + x470 + x475 + x488 + x490 ++ x494 + x496 + x498 + x503 <= 1 + +x6 + x36 + x37 + x38 + x48 + x52 + x135 + x136 + x139 + x152 ++ x175 + x229 + x269 + x278 + x280 + x284 + x285 + x286 + x287 + x288 ++ x296 + x301 + x303 + x305 + x326 + x350 + x383 + x384 + x385 + x402 ++ x439 + x443 + x459 + x469 + x470 + x471 + x474 + x475 + x476 + x479 ++ x490 <= 1 + +x6 + x31 + x36 + x37 + x38 + x39 + x40 + x48 + x52 + x60 ++ x98 + x99 + x110 + x139 + x217 + x229 + x250 + x251 + x252 + x254 ++ x255 + x256 + x258 + x271 + x272 + x273 + x278 + x280 + x283 + x284 ++ x285 + x286 + x287 + x301 + x302 + x303 + x304 + x306 + x326 + x330 ++ x350 + x360 + x383 + x385 + x402 + x410 + x437 + x439 + x443 + x444 ++ x458 + x471 + x474 + x475 + x476 + x492 + x494 <= 1 + +x6 + x8 + x9 + x10 + x20 + x31 + x36 + x37 + x39 + x40 ++ x59 + x60 + x67 + x97 + x98 + x99 + x100 + x102 + x103 + x104 ++ x106 + x110 + x123 + x129 + x164 + x180 + x217 + x250 + x251 + x253 ++ x254 + x255 + x267 + x271 + x272 + x273 + x275 + x276 + x278 + x279 ++ x280 + x283 + x284 + x285 + x286 + x287 + x301 + x302 + x303 + x304 ++ x306 + x313 + x321 + x324 + x326 + x330 + x331 + x342 + x360 + x367 ++ x386 + x397 + x400 + x402 + x403 + x404 + x424 + x437 + x441 + x443 ++ x444 + x445 + x446 + x453 + x474 + x475 + x481 + x492 + x494 + x495 ++ x497 <= 1 + +x6 + x8 + x9 + x10 + x36 + x37 + x39 + x40 + x41 + x60 ++ x67 + x96 + x97 + x98 + x99 + x100 + x101 + x102 + x104 + x105 ++ x106 + x107 + x161 + x180 + x182 + x188 + x189 + x221 + x222 + x224 ++ x255 + x271 + x272 + x273 + x274 + x275 + x276 + x278 + x279 + x280 ++ x281 + x284 + x285 + x286 + x287 + x302 + x303 + x304 + x306 + x308 ++ x311 + x313 + x320 + x321 + x324 + x326 + x330 + x331 + x340 + x341 ++ x342 + x348 + x367 + x400 + x402 + x403 + x404 + x412 + x437 + x441 ++ x443 + x444 + x445 + x446 + x478 + x481 + x492 + x494 + x495 + x497 + <= 1 + +x58 + x59 + x67 + x97 + x98 + x99 + x100 + x101 + x102 + x103 ++ x104 + x105 + x106 + x107 + x180 + x182 + x220 + x221 + x223 + x224 ++ x225 + x255 + x263 + x271 + x272 + x273 + x274 + x275 + x276 + x278 ++ x281 + x284 + x286 + x287 + x300 + x302 + x305 + x306 + x313 + x324 ++ x325 + x326 + x330 + x331 + x340 + x342 + x367 + x402 + x404 + x412 ++ x441 + x443 + x444 + x446 + x474 + x475 + x481 + x494 + x497 + x502 + <= 1 + +x58 + x59 + x61 + x67 + x97 + x98 + x99 + x101 + x102 + x105 ++ x106 + x107 + x113 + x180 + x182 + x220 + x222 + x223 + x224 + x225 ++ x263 + x271 + x273 + x274 + x276 + x281 + x284 + x287 + x300 + x312 ++ x320 + x325 + x326 + x328 + x329 + x330 + x331 + x340 + x344 + x412 ++ x433 + x441 + x443 + x444 + x468 + x474 + x497 <= 1 + +x23 + x32 + x51 + x85 + x87 + x88 + x89 + x108 + x109 + x112 ++ x137 + x170 + x266 + x269 + x270 + x277 + x278 + x280 + x282 + x285 ++ x286 + x297 + x307 + x329 + x350 + x387 + x464 + x486 + x488 + x491 ++ x494 + x498 <= 1 + +x3 + x18 + x23 + x85 + x87 + x88 + x89 + x108 + x112 + x113 ++ x135 + x137 + x155 + x166 + x167 + x170 + x181 + x269 + x270 + x277 ++ x278 + x280 + x282 + x283 + x284 + x285 + x286 + x288 + x329 + x349 ++ x350 + x387 + x460 + x464 + x486 + x488 + x489 + x494 + x498 + x503 + <= 1 + +x3 + x18 + x23 + x88 + x89 + x108 + x109 + x113 + x138 + x139 ++ x155 + x167 + x168 + x181 + x193 + x205 + x270 + x277 + x278 + x280 ++ x284 + x286 + x287 + x288 + x306 + x329 + x349 + x350 + x382 + x383 ++ x385 + x387 + x460 + x461 + x463 + x464 + x475 + x483 + x484 + x486 ++ x488 + x491 + x498 + x503 <= 1 + +x3 + x18 + x23 + x36 + x37 + x58 + x89 + x98 + x99 + x100 ++ x109 + x113 + x135 + x136 + x138 + x139 + x140 + x168 + x170 + x175 ++ x181 + x205 + x207 + x265 + x269 + x270 + x278 + x280 + x282 + x284 ++ x286 + x287 + x288 + x303 + x305 + x311 + x349 + x350 + x382 + x383 ++ x385 + x386 + x454 + x457 + x460 + x462 + x463 + x464 + x469 + x475 ++ x479 + x488 + x491 + x496 + x498 + x503 <= 1 + +x36 + x37 + x52 + x89 + x99 + x138 + x139 + x207 + x252 + x269 ++ x275 + x278 + x280 + x284 + x285 + x286 + x287 + x288 + x301 + x303 ++ x305 + x332 + x349 + x382 + x383 + x384 + x385 + x439 + x442 + x457 ++ x459 + x462 + x469 + x471 + x475 + x479 + x494 + x496 <= 1 + +x36 + x139 + x201 + x252 + x254 + x273 + x275 + x278 + x280 + x285 ++ x286 + x287 + x288 + x301 + x306 + x332 + x382 + x385 + x397 + x406 ++ x457 + x458 + x462 + x471 + x475 + x477 + x492 + x494 <= 1 + +x10 + x20 + x36 + x39 + x97 + x99 + x100 + x103 + x110 + x201 ++ x251 + x254 + x255 + x266 + x273 + x275 + x278 + x280 + x281 + x286 ++ x287 + x302 + x304 + x330 + x385 + x397 + x400 + x402 + x403 + x406 ++ x425 + x437 + x443 + x444 + x445 + x446 + x457 + x462 + x475 + x477 ++ x492 + x494 + x495 + x497 <= 1 + +x10 + x36 + x39 + x67 + x97 + x98 + x99 + x100 + x101 + x102 ++ x103 + x110 + x113 + x129 + x201 + x223 + x254 + x266 + x275 + x278 ++ x281 + x283 + x286 + x287 + x308 + x313 + x321 + x326 + x330 + x331 ++ x340 + x341 + x342 + x348 + x400 + x402 + x403 + x404 + x425 + x437 ++ x441 + x443 + x445 + x446 + x475 + x477 + x481 + x492 + x494 + x495 ++ x497 <= 1 + +x39 + x58 + x59 + x67 + x97 + x98 + x99 + x101 + x102 + x103 ++ x105 + x106 + x107 + x110 + x174 + x182 + x220 + x221 + x223 + x224 ++ x255 + x263 + x266 + x271 + x273 + x274 + x275 + x276 + x281 + x286 ++ x293 + x300 + x313 + x325 + x326 + x330 + x331 + x340 + x403 + x412 ++ x441 + x443 + x444 + x445 + x475 + x481 + x492 + x494 + x497 <= 1 + +x58 + x97 + x98 + x99 + x101 + x102 + x105 + x106 + x182 + x220 ++ x221 + x223 + x224 + x249 + x255 + x263 + x273 + x274 + x275 + x276 ++ x281 + x325 + x326 + x331 + x340 + x403 + x481 + x497 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 + x22 + x23 <= 1 + +x24 + x25 + x26 + x27 + x28 + x29 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 <= 1 + +x36 + x37 + x38 + x39 + x40 + x41 <= 1 + +x42 + x43 + x44 + x45 + x46 + x47 <= 1 + +x48 + x49 + x50 + x51 + x52 + x53 <= 1 + +x54 + x55 + x56 + x57 <= 1 + +x58 + x59 + x60 + x61 + x62 + x63 <= 1 + +x64 + x65 + x66 + x67 + x68 + x69 <= 1 + +x70 + x71 <= 1 + +x73 + x74 + x75 + x76 + x77 + x78 <= 1 + +x79 + x80 + x81 + x82 + x83 + x84 <= 1 + +x85 + x86 + x87 + x88 + x89 <= 1 + +x90 + x91 + x92 + x93 + x94 + x95 <= 1 + +x96 + x97 + x98 + x99 + x100 + x101 <= 1 + +x102 + x103 + x104 + x105 + x106 + x107 <= 1 + +x108 + x109 + x110 + x111 + x112 + x113 <= 1 + +x114 + x115 <= 1 + +x116 + x117 + x118 <= 1 + +x119 + x120 <= 1 + +x121 + x122 + x123 + x124 + x125 + x126 <= 1 + +x128 + x129 + x130 + x131 + x132 + x133 <= 1 + +x135 + x136 + x137 + x138 + x139 + x140 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x148 + x149 + x150 + x151 + x152 + x153 <= 1 + +x154 + x155 + x156 + x157 + x158 + x159 <= 1 + +x160 + x161 + x162 + x163 + x164 + x165 <= 1 + +x166 + x167 + x168 + x169 + x170 + x171 <= 1 + +x172 + x173 + x174 + x175 + x176 + x177 <= 1 + +x178 + x179 + x180 + x181 + x182 + x183 <= 1 + +x184 + x185 + x186 + x187 + x188 + x189 <= 1 + +x190 + x191 <= 1 + +x192 + x193 + x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 <= 1 + +x220 + x221 + x222 + x223 + x224 + x225 <= 1 + +x226 + x227 + x228 + x229 + x230 + x231 <= 1 + +x232 + x233 + x234 + x235 + x236 + x237 <= 1 + +x238 + x239 + x240 + x241 + x242 + x243 <= 1 + +x244 + x245 + x246 + x247 + x248 + x249 <= 1 + +x250 + x251 + x252 <= 1 + +x253 + x254 + x255 + x256 + x257 + x258 <= 1 + +x259 + x260 + x261 + x262 + x263 + x264 <= 1 + +x265 + x266 + x267 + x268 + x269 + x270 <= 1 + +x271 + x272 + x273 + x274 + x275 + x276 <= 1 + +x277 + x278 + x279 + x280 + x281 + x282 <= 1 + +x283 + x284 + x285 + x286 + x287 + x288 <= 1 + +x289 + x290 + x291 + x292 + x293 + x294 <= 1 + +x295 + x296 + x297 + x298 + x299 + x300 <= 1 + +x301 + x302 + x303 + x304 + x305 + x306 <= 1 + +x308 + x309 + x310 + x311 + x312 + x313 <= 1 + +x314 + x315 + x316 + x317 + x318 + x319 <= 1 + +x320 + x321 + x322 + x323 + x324 + x325 <= 1 + +x326 + x327 + x328 + x329 + x330 + x331 <= 1 + +x333 + x334 + x335 + x336 + x337 + x338 <= 1 + +x340 + x341 + x342 + x343 + x344 + x345 <= 1 + +x346 + x347 + x348 + x349 + x350 + x351 <= 1 + +x352 + x353 + x354 + x355 + x356 + x357 <= 1 + +x358 + x359 + x360 + x361 + x362 + x363 <= 1 + +x364 + x365 + x366 + x367 + x368 + x369 <= 1 + +x370 + x371 + x372 + x373 + x374 + x375 <= 1 + +x376 + x377 + x378 + x379 + x380 <= 1 + +x382 + x383 + x384 + x385 + x386 + x387 <= 1 + +x388 + x389 + x390 + x391 + x392 + x393 <= 1 + +x394 + x395 + x396 + x397 + x398 + x399 <= 1 + +x400 + x401 + x402 + x403 + x404 + x405 <= 1 + +x407 + x408 + x409 + x410 + x411 + x412 <= 1 + +x413 + x414 + x415 + x416 <= 1 + +x417 + x418 + x419 + x420 + x421 + x422 <= 1 + +x423 + x424 + x425 + x426 + x427 + x428 <= 1 + +x429 + x430 + x431 + x432 + x433 + x434 <= 1 + +x435 + x436 + x437 + x438 + x439 + x440 <= 1 + +x441 + x442 + x443 + x444 + x445 + x446 <= 1 + +x447 + x448 + x449 <= 1 + +x451 + x452 + x453 + x454 + x455 + x456 <= 1 + +x457 + x458 + x459 <= 1 + +x460 + x461 + x462 + x463 + x464 <= 1 + +x465 + x466 + x467 + x468 + x469 + x470 <= 1 + +x471 + x472 + x473 + x474 + x475 + x476 <= 1 + +x477 + x478 + x479 + x480 + x481 + x482 <= 1 + +x483 + x484 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x492 + x493 + x494 + x495 + x496 + x497 <= 1 + +x498 + x499 + x500 + x501 + x502 + x503 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 x503 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0007.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0007.lp new file mode 100644 index 000000000..d633f9e27 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0007.lp @@ -0,0 +1,1017 @@ +max + +286.47x0 + 412.922x1 + 380.479x2 + 326.091x3 + 323.987x4 + 276.47x5 + 369.952x6 + 355.997x7 + 334.142x8 + 325.221x9 + +324.219x10 + 64.9486x11 + 102.126x12 + 196.238x13 + 271.23x14 + 212.671x15 + 160.34x16 + 130.814x17 + 216.56x18 + 264.285x19 + +221.598x20 + 165.67x21 + 1460.8x22 + 1927.32x23 + 1923.53x24 + 1870.85x25 + 1837.54x26 + 1832.46x27 + 1903.43x28 + 2008.25x29 + +1971.2x30 + 1949.58x31 + 1901.45x32 + 1884.28x33 + 1049.52x34 + 1167.07x35 + 1156.62x36 + 1135.41x37 + 1122.23x38 + 1118.37x39 + +420.968x40 + 411.027x41 + 407.804x42 + 291.759x43 + 287.629x44 + 464.111x45 + 683.058x46 + 657.028x47 + 604.821x48 + 570.728x49 + +549.361x50 + 1114.96x51 + 1159.57x52 + 1135.71x53 + 1125.15x54 + 1041.49x55 + 1039.43x56 + 814.797x57 + 856.139x58 + 832.017x59 + +818.782x60 + 772.687x61 + 768.277x62 + 40.3894x63 + 60.497x64 + 88.2889x65 + 84.2057x66 + 331.86x67 + 428.385x68 + 394.499x69 + +385.149x70 + 331.805x71 + 291.258x72 + 146.746x73 + 214.915x74 + 192.609x75 + 6.68477x76 + 62.4276x77 + 579.209x78 + 713.589x79 + +666.391x80 + 666.089x81 + 653.821x82 + 646.623x83 + 520.316x84 + 574.627x85 + 555.883x86 + 495.05x87 + 476.937x88 + 445.273x89 + +107.932x90 + 886.946x91 + 1131.54x92 + 1126.13x93 + 1074.73x94 + 1010.57x95 + 988.992x96 + 2714.96x97 + 3094.92x98 + 3088.61x99 + +3075.92x100 + 3074.29x101 + 3073.8x102 + 3007.9x103 + 3088.16x104 + 3049.02x105 + 2960.71x106 + 2937.91x107 + 2914.33x108 + 189.065x109 + +225.483x110 + 211.72x111 + 199.199x112 + 162.089x113 + 621.659x114 + 698.42x115 + 590.544x116 + 573.373x117 + 559.121x118 + 533.803x119 + +497.865x120 + 743.053x121 + 716.182x122 + 714.436x123 + 602.02x124 + 562.606x125 + 849.395x126 + 1038.75x127 + 998.211x128 + 965.807x129 + +958.326x130 + 937.002x131 + 28.3035x132 + 228.624x133 + 234.766x134 + 177.079x135 + 161.002x136 + 144.523x137 + 458.37x138 + 502.667x139 + +446.064x140 + 430.049x141 + 393.989x142 + 365.543x143 + 313.547x144 + 257.526x145 + 227.945x146 + 217.528x147 + 203.255x148 + 612.539x149 + +804.274x150 + 793.144x151 + 791.645x152 + 745.274x153 + 742.318x154 + 645.925x155 + 742.536x156 + 729.093x157 + 713.057x158 + 711.869x159 + +647.952x160 + 399.532x161 + 544.723x162 + 528.082x163 + 525.661x164 + 514.228x165 + 503.308x166 + 360.276x167 + 445.26x168 + 368.954x169 + +363.791x170 + 336.869x171 + 244.312x172 + 459.048x173 + 597.86x174 + 587.096x175 + 516.284x176 + 497.975x177 + 456.192x178 + 1668.38x179 + +1821.07x180 + 1816.06x181 + 1785.29x182 + 1730.46x183 + 1718.94x184 + 25.4549x185 + 1127.36x186 + 1291.69x187 + 1248.42x188 + 1183.34x189 + +1123.16x190 + 1074.67x191 + 115.521x192 + 119.376x193 + 114.586x194 + 178.409x195 + 223.26x196 + 195.199x197 + 169.695x198 + 89.9361x199 + +119.845x200 + 68.4904x201 + 60.739x202 + 84.4075x203 + 916.858x204 + 966.305x205 + 945.505x206 + 940.682x207 + 916.809x208 + 890.587x209 + +484.592x210 + 604.015x211 + 565.615x212 + 541.93x213 + 534.284x214 + 506.591x215 + 537.556x216 + 740.786x217 + 714.889x218 + 629.323x219 + +619.634x220 + 577.711x221 + 296.339x222 + 441.598x223 + 431.048x224 + 389.719x225 + 291.905x226 + 269.903x227 + 143.778x228 + 152.289x229 + +32.9346x230 + 453.833x231 + 585.423x232 + 566.332x233 + 533.372x234 + 461.636x235 + 445.024x236 + 205.388x237 + 277.943x238 + 238.782x239 + +197.674x240 + 103.425x241 + 1142.61x242 + 1612.99x243 + 1598.22x244 + 1539.71x245 + 1534.97x246 + 1531.74x247 + 155.94x248 + 226.015x249 + +203.328x250 + 182.444x251 + 152.2x252 + 205.31x253 + 133.723x254 + 110.536x255 + 398.693x256 + 512.956x257 + 498.638x258 + 448.666x259 + +422.809x260 + 344.617x261 + 443.076x262 + 658.314x263 + 630.007x264 + 527.822x265 + 521.936x266 + 496.483x267 + 1436.34x268 + 1802.54x269 + +1776.57x270 + 1773.88x271 + 1656.85x272 + 1613.23x273 + 537.432x274 + 568.442x275 + 547.034x276 + 502.124x277 + 492.497x278 + 479.019x279 + +63.5116x280 + 170.175x281 + 189.643x282 + 129.645x283 + 1430.46x284 + 1922.06x285 + 1824.46x286 + 1776.71x287 + 1741.24x288 + 1692.32x289 + +291.419x290 + 255.337x291 + 243.527x292 + 193.264x293 + 528.568x294 + 775.83x295 + 647.76x296 + 620.553x297 + 581.869x298 + 550.165x299 + +647.026x300 + 741.015x301 + 676.554x302 + 627.635x303 + 570.279x304 + 555.519x305 + 387.11x306 + 580.246x307 + 542.59x308 + 526.804x309 + +464.29x310 + 461.42x311 + 1119.07x312 + 1192x313 + 1172.7x314 + 1171.82x315 + 1167.85x316 + 1162.01x317 + 2169.15x318 + 2472.77x319 + +2399.64x320 + 2389.83x321 + 2363.57x322 + 2354.62x323 + 14.0474x324 + 594.046x325 + 746.251x326 + 694.388x327 + 647.56x328 + 631.43x329 + +599.868x330 + 959.756x331 + 1190.69x332 + 1163.01x333 + 1089.4x334 + 1078.99x335 + 1050.17x336 + 683.648x337 + 801.945x338 + 758.613x339 + +706.522x340 + 647.877x341 + 635.522x342 + 432.003x343 + 479.398x344 + 441.305x345 + 409.337x346 + 392.689x347 + 389.736x348 + 662.962x349 + +763.853x350 + 725.407x351 + 690.136x352 + 680.079x353 + 652.297x354 + 702.906x355 + 705.093x356 + 672.193x357 + 672.122x358 + 647.943x359 + +636.254x360 + 149.343x361 + 175.579x362 + 99.0277x363 + 1261.66x364 + 1486.38x365 + 1485.19x366 + 1441.4x367 + 1425.93x368 + 1395.79x369 + +1479.58x370 + 1919.08x371 + 1866.79x372 + 1866.75x373 + 1753.23x374 + 1751.73x375 + 142.393x376 + 178.758x377 + 168.966x378 + 103.256x379 + +125.215x380 + 154.879x381 + 208.955x382 + 272.545x383 + 226.187x384 + 119.374x385 + 1046.61x386 + 1421.25x387 + 1321.29x388 + 1244.99x389 + +1211.21x390 + 1168.01x391 + 365.258x392 + 398.368x393 + 388.572x394 + 327.602x395 + 308.266x396 + 268.106x397 + 275.643x398 + 406.982x399 + +375.332x400 + 259.078x401 + 226.676x402 + 204.099x403 + 1054.13x404 + 1398.84x405 + 1350.79x406 + 1347.05x407 + 1293.59x408 + 1255.16x409 + +280.343x410 + 276.785x411 + 230.34x412 + 316.615x413 + 338.639x414 + 327.115x415 + 289.83x416 + 259.514x417 + 45.3916x418 + 297.545x419 + +306.244x420 + 256.709x421 + 238.938x422 + 228.916x423 + 165.434x424 + 114.557x425 + 90.9138x426 + 896.507x427 + 1181.33x428 + 1161.85x429 + +1108.16x430 + 1099.98x431 + 1098.68x432 + 1529.42x433 + 1667.41x434 + 1604.1x435 + 1600.1x436 + 1543.84x437 + 1530.95x438 + 130.828x439 + +205.565x440 + 250.844x441 + 148.105x442 + 375.309x443 + 562.435x444 + 553.616x445 + 547.682x446 + 486.844x447 + 448.779x448 + 344.459x449 + +471.881x450 + 400.308x451 + 379.701x452 + 340.761x453 + 294.992x454 + 106.47x455 + 79.2459x456 + 78.0518x457 + 163.128x458 + 154.468x459 + +148.551x460 + 140.881x461 + 1097.36x462 + 1392.6x463 + 1376.95x464 + 1349.72x465 + 1325.12x466 + 1292.47x467 + 437.477x468 + 591.451x469 + +576.519x470 + 547.09x471 + 453.338x472 + 445.291x473 + 127.344x474 + 139.328x475 + 508.588x476 + 595.436x477 + 573.666x478 + 430.332x479 + +404.143x480 + 323.302x481 + 634.63x482 + 733.053x483 + 722.874x484 + 651.588x485 + 645.403x486 + 641.939x487 + 1339.32x488 + 1357.94x489 + +1295.96x490 + 1262.31x491 + 1253.05x492 + 1248.86x493 + 341.727x494 + 408.902x495 + 371.964x496 + 344.34x497 + 318.862x498 + 307.496x499 + + +st + +x22 + x43 + x85 + x181 + x220 + x340 + x352 + x385 + x434 + x437 ++ x492 <= 1 + +x22 + x62 + x128 + x131 + x158 + x163 + x229 + x242 + x340 + x382 ++ x385 + x434 + x437 + x481 <= 1 + +x2 + x22 + x44 + x97 + x100 + x128 + x130 + x131 + x158 + x163 ++ x242 + x298 + x318 + x329 + x395 + x396 + x409 + x466 <= 1 + +x2 + x59 + x62 + x78 + x82 + x83 + x97 + x108 + x117 + x126 ++ x127 + x128 + x130 + x156 + x210 + x213 + x217 + x287 + x291 + x318 ++ x320 + x323 + x329 + x330 + x349 + x351 + x354 + x371 + x374 + x392 ++ x394 + x395 + x396 + x422 + x468 + x473 <= 1 + +x25 + x59 + x61 + x70 + x78 + x79 + x80 + x81 + x82 + x97 ++ x98 + x100 + x102 + x124 + x126 + x127 + x129 + x131 + x151 + x156 ++ x210 + x213 + x215 + x217 + x287 + x290 + x291 + x292 + x302 + x303 ++ x304 + x318 + x320 + x322 + x323 + x325 + x330 + x349 + x350 + x351 ++ x352 + x354 + x371 + x373 + x374 + x396 + x417 + x468 + x469 + x470 ++ x471 + x473 + x484 <= 1 + +x58 + x59 + x60 + x61 + x70 + x78 + x80 + x81 + x82 + x97 ++ x100 + x101 + x106 + x108 + x121 + x124 + x126 + x127 + x128 + x129 ++ x130 + x213 + x215 + x285 + x286 + x287 + x290 + x293 + x300 + x301 ++ x302 + x303 + x304 + x315 + x318 + x319 + x320 + x322 + x323 + x330 ++ x352 + x354 + x368 + x374 + x388 + x393 + x468 + x470 + x471 <= 1 + +x38 + x67 + x70 + x78 + x81 + x82 + x93 + x94 + x97 + x106 ++ x120 + x121 + x124 + x126 + x127 + x129 + x130 + x161 + x164 + x179 ++ x200 + x213 + x270 + x285 + x300 + x301 + x302 + x303 + x304 + x312 ++ x315 + x320 + x323 + x330 + x368 + x397 + x468 + x471 + x472 <= 1 + +x36 + x51 + x55 + x81 + x82 + x104 + x105 + x106 + x164 + x179 ++ x182 + x200 + x264 + x285 + x300 + x301 + x302 + x303 + x315 + x330 ++ x368 + x471 + x487 <= 1 + +x5 + x7 + x9 + x34 + x36 + x37 + x51 + x69 + x71 + x72 ++ x77 + x103 + x104 + x105 + x148 + x164 + x179 + x182 + x199 + x200 ++ x201 + x202 + x264 + x285 + x330 + x368 + x369 + x483 + x487 <= 1 + +x5 + x7 + x34 + x36 + x37 + x72 + x103 + x104 + x144 + x148 ++ x164 + x168 + x179 + x182 + x199 + x201 + x235 + x264 + x285 + x368 ++ x483 + x493 <= 1 + +x22 + x98 + x99 + x100 + x128 + x142 + x143 + x181 + x243 + x370 ++ x373 + x405 + x434 + x435 <= 1 + +x22 + x24 + x62 + x98 + x99 + x100 + x128 + x131 + x142 + x181 ++ x243 + x336 + x373 + x374 + x405 + x434 + x437 <= 1 + +x0 + x2 + x22 + x57 + x60 + x62 + x98 + x99 + x100 + x108 ++ x126 + x128 + x130 + x131 + x142 + x158 + x181 + x228 + x229 + x242 ++ x287 + x336 + x349 + x373 + x385 + x395 + x407 + x434 + x437 + x464 ++ x480 <= 1 + +x0 + x2 + x24 + x32 + x55 + x57 + x58 + x59 + x60 + x62 ++ x91 + x97 + x100 + x108 + x123 + x126 + x128 + x130 + x156 + x158 ++ x184 + x207 + x215 + x246 + x286 + x287 + x291 + x292 + x293 + x318 ++ x320 + x323 + x329 + x337 + x345 + x349 + x351 + x354 + x392 + x394 ++ x395 + x396 + x414 + x419 + x420 + x422 + x432 + x437 + x464 + x469 + <= 1 + +x1 + x10 + x25 + x32 + x38 + x52 + x54 + x55 + x57 + x58 ++ x59 + x60 + x61 + x62 + x68 + x70 + x78 + x80 + x81 + x93 ++ x97 + x98 + x100 + x101 + x102 + x108 + x126 + x128 + x129 + x130 ++ x131 + x151 + x184 + x210 + x212 + x213 + x215 + x236 + x246 + x285 ++ x286 + x287 + x290 + x292 + x293 + x302 + x304 + x305 + x317 + x318 ++ x320 + x321 + x322 + x323 + x330 + x342 + x345 + x349 + x351 + x352 ++ x354 + x371 + x372 + x373 + x374 + x405 + x410 + x411 + x413 + x414 ++ x417 + x419 + x420 + x422 + x423 + x471 <= 1 + +x24 + x25 + x32 + x37 + x55 + x57 + x58 + x61 + x67 + x68 ++ x69 + x70 + x71 + x78 + x79 + x80 + x81 + x82 + x97 + x98 ++ x100 + x106 + x108 + x121 + x122 + x124 + x126 + x127 + x128 + x129 ++ x130 + x131 + x151 + x161 + x210 + x215 + x285 + x287 + x300 + x302 ++ x304 + x305 + x318 + x319 + x320 + x322 + x323 + x325 + x329 + x330 ++ x349 + x350 + x351 + x352 + x354 + x366 + x368 + x387 + x388 + x393 ++ x396 + x397 + x411 + x417 + x419 + x422 + x423 + x468 + x469 + x470 ++ x471 + x472 + x473 <= 1 + +x24 + x25 + x34 + x36 + x51 + x55 + x67 + x70 + x71 + x78 ++ x79 + x81 + x93 + x94 + x97 + x98 + x100 + x104 + x106 + x108 ++ x120 + x121 + x122 + x124 + x126 + x127 + x128 + x129 + x130 + x148 ++ x161 + x210 + x211 + x212 + x213 + x269 + x270 + x285 + x286 + x287 ++ x300 + x303 + x304 + x305 + x320 + x325 + x352 + x366 + x368 + x373 ++ x397 + x417 + x423 + x464 + x468 + x472 + x473 <= 1 + +x7 + x9 + x34 + x36 + x37 + x38 + x51 + x55 + x67 + x69 ++ x71 + x72 + x79 + x81 + x102 + x104 + x105 + x106 + x122 + x124 ++ x129 + x148 + x164 + x182 + x184 + x199 + x211 + x281 + x283 + x285 ++ x300 + x301 + x303 + x304 + x305 + x315 + x320 + x334 + x366 + x368 ++ x387 + x389 + x487 <= 1 + +x5 + x6 + x7 + x9 + x10 + x34 + x36 + x37 + x51 + x67 ++ x69 + x71 + x72 + x91 + x101 + x104 + x105 + x164 + x179 + x182 ++ x183 + x199 + x200 + x201 + x202 + x235 + x264 + x283 + x285 + x298 ++ x320 + x358 + x368 + x369 + x389 + x463 + x493 <= 1 + +x5 + x6 + x7 + x8 + x9 + x10 + x34 + x36 + x62 + x72 ++ x105 + x144 + x145 + x146 + x168 + x179 + x182 + x201 + x202 + x264 ++ x285 + x368 + x369 + x463 <= 1 + +x4 + x35 + x57 + x91 + x98 + x99 + x100 + x123 + x143 + x181 ++ x230 + x232 + x263 + x370 + x373 + x374 + x382 + x383 + x384 + x404 ++ x407 + x432 + x434 + x435 <= 1 + +x0 + x4 + x22 + x24 + x25 + x57 + x58 + x60 + x62 + x91 ++ x98 + x99 + x100 + x124 + x125 + x128 + x130 + x131 + x138 + x139 ++ x142 + x143 + x181 + x182 + x186 + x196 + x228 + x229 + x230 + x242 ++ x243 + x265 + x287 + x317 + x318 + x336 + x353 + x373 + x374 + x384 ++ x404 + x405 + x407 + x434 + x435 + x437 <= 1 + +x0 + x1 + x4 + x24 + x29 + x57 + x58 + x59 + x60 + x62 ++ x98 + x99 + x100 + x121 + x128 + x130 + x131 + x138 + x139 + x142 ++ x143 + x181 + x182 + x196 + x213 + x228 + x229 + x269 + x317 + x320 ++ x322 + x323 + x349 + x353 + x354 + x373 + x374 + x395 + x405 + x407 ++ x434 + x437 + x464 <= 1 + +x0 + x1 + x3 + x4 + x10 + x24 + x25 + x29 + x38 + x52 ++ x57 + x58 + x59 + x60 + x80 + x93 + x94 + x98 + x100 + x121 ++ x122 + x123 + x126 + x129 + x131 + x143 + x151 + x181 + x182 + x184 ++ x207 + x212 + x213 + x215 + x228 + x246 + x253 + x269 + x273 + x317 ++ x318 + x320 + x322 + x323 + x339 + x342 + x349 + x353 + x354 + x370 ++ x373 + x374 + x387 + x405 + x407 <= 1 + +x1 + x2 + x3 + x24 + x25 + x38 + x52 + x54 + x55 + x57 ++ x58 + x59 + x60 + x61 + x62 + x68 + x80 + x81 + x91 + x93 ++ x94 + x97 + x98 + x99 + x100 + x101 + x102 + x106 + x108 + x120 ++ x121 + x122 + x123 + x158 + x184 + x207 + x212 + x215 + x219 + x236 ++ x246 + x253 + x269 + x286 + x287 + x305 + x310 + x317 + x318 + x320 ++ x321 + x322 + x323 + x337 + x338 + x339 + x340 + x342 + x349 + x351 ++ x352 + x353 + x354 + x362 + x368 + x370 + x372 + x373 + x374 + x392 ++ x394 + x398 + x399 + x405 + x410 + x411 + x412 + x413 + x414 + x420 ++ x431 + x432 + x448 + x464 + x469 + x470 + x472 <= 1 + +x3 + x24 + x25 + x36 + x38 + x51 + x52 + x55 + x61 + x68 ++ x78 + x82 + x91 + x97 + x98 + x99 + x100 + x101 + x106 + x108 ++ x120 + x121 + x122 + x126 + x127 + x129 + x130 + x151 + x158 + x183 ++ x184 + x193 + x207 + x211 + x212 + x219 + x224 + x269 + x286 + x300 ++ x302 + x303 + x305 + x318 + x319 + x320 + x322 + x323 + x325 + x329 ++ x330 + x351 + x352 + x366 + x368 + x372 + x373 + x387 + x388 + x391 ++ x392 + x393 + x394 + x397 + x399 + x405 + x423 + x464 + x468 + x469 ++ x470 + x471 + x472 + x473 <= 1 + +x24 + x25 + x36 + x37 + x38 + x55 + x61 + x67 + x68 + x69 ++ x70 + x71 + x78 + x93 + x94 + x97 + x98 + x99 + x101 + x106 ++ x108 + x120 + x122 + x126 + x127 + x128 + x129 + x130 + x179 + x184 ++ x192 + x207 + x210 + x211 + x212 + x215 + x219 + x269 + x270 + x271 ++ x282 + x300 + x304 + x318 + x319 + x320 + x321 + x322 + x323 + x325 ++ x329 + x330 + x366 + x368 + x372 + x387 + x388 + x389 + x391 + x392 ++ x393 + x399 + x419 + x421 + x464 <= 1 + +x7 + x9 + x10 + x34 + x36 + x38 + x51 + x55 + x67 + x69 ++ x79 + x93 + x94 + x99 + x100 + x101 + x102 + x106 + x122 + x128 ++ x129 + x130 + x164 + x179 + x183 + x184 + x207 + x211 + x281 + x282 ++ x285 + x315 + x320 + x321 + x323 + x325 + x328 + x329 + x331 + x334 ++ x335 + x350 + x353 + x364 + x365 + x366 + x368 + x387 + x389 + x391 ++ x421 + x445 <= 1 + +x5 + x6 + x7 + x9 + x10 + x34 + x69 + x71 + x72 + x93 ++ x94 + x99 + x101 + x103 + x104 + x105 + x132 + x144 + x145 + x146 ++ x147 + x179 + x182 + x183 + x285 + x312 + x313 + x334 + x353 + x355 ++ x366 + x368 + x387 + x389 + x421 + x463 <= 1 + +x5 + x6 + x8 + x9 + x72 + x102 + x144 + x145 + x146 + x147 ++ x179 + x182 + x189 + x202 + x264 + x364 + x366 + x368 + x369 + x421 ++ x428 + x463 <= 1 + +x35 + x39 + x97 + x98 + x99 + x100 + x107 + x123 + x125 + x131 ++ x140 + x141 + x191 + x232 + x233 + x242 + x258 + x263 + x370 + x373 ++ x374 + x382 + x383 + x384 + x404 + x405 + x407 + x432 + x434 + x435 ++ x437 <= 1 + +x4 + x35 + x49 + x91 + x95 + x99 + x125 + x131 + x138 + x140 ++ x142 + x191 + x230 + x242 + x243 + x252 + x255 + x258 + x263 + x370 ++ x373 + x374 + x383 + x404 + x405 + x407 + x409 + x424 + x425 + x434 ++ x435 + x437 + x454 <= 1 + +x8 + x25 + x28 + x29 + x35 + x58 + x60 + x91 + x131 + x138 ++ x139 + x140 + x142 + x143 + x181 + x182 + x186 + x190 + x242 + x243 ++ x246 + x247 + x252 + x254 + x258 + x263 + x265 + x275 + x317 + x370 ++ x373 + x374 + x405 + x412 + x424 + x426 + x431 + x432 + x434 + x437 ++ x455 + x456 <= 1 + +x1 + x8 + x24 + x25 + x29 + x33 + x35 + x57 + x58 + x59 ++ x60 + x61 + x80 + x91 + x93 + x97 + x100 + x121 + x123 + x126 ++ x131 + x151 + x181 + x182 + x184 + x243 + x246 + x252 + x253 + x263 ++ x265 + x302 + x317 + x318 + x323 + x339 + x340 + x342 + x349 + x351 ++ x353 + x354 + x370 + x373 + x374 + x387 + x410 + x412 + x414 + x431 ++ x437 + x455 + x457 + x464 + x470 <= 1 + +x3 + x8 + x19 + x24 + x54 + x55 + x68 + x80 + x82 + x97 ++ x98 + x100 + x101 + x102 + x122 + x123 + x181 + x182 + x183 + x184 ++ x207 + x246 + x268 + x269 + x271 + x272 + x273 + x305 + x317 + x323 ++ x337 + x338 + x339 + x340 + x352 + x361 + x362 + x372 + x387 + x388 ++ x391 + x394 + x397 + x399 + x431 + x432 + x457 + x464 + x472 <= 1 + +x3 + x18 + x19 + x24 + x25 + x47 + x52 + x54 + x55 + x61 ++ x68 + x82 + x91 + x93 + x94 + x95 + x97 + x98 + x99 + x100 ++ x101 + x102 + x106 + x108 + x121 + x122 + x126 + x129 + x181 + x183 ++ x184 + x197 + x207 + x210 + x211 + x212 + x219 + x246 + x269 + x271 ++ x272 + x273 + x279 + x286 + x305 + x310 + x318 + x320 + x321 + x323 ++ x325 + x332 + x337 + x338 + x339 + x340 + x342 + x351 + x358 + x361 ++ x363 + x370 + x372 + x373 + x391 + x399 + x413 + x415 + x420 + x431 ++ x432 + x445 + x446 + x447 + x448 + x464 + x469 + x470 + x472 + x473 + <= 1 + +x15 + x19 + x20 + x22 + x24 + x25 + x37 + x54 + x55 + x83 ++ x91 + x93 + x94 + x97 + x98 + x99 + x100 + x101 + x104 + x108 ++ x126 + x127 + x129 + x183 + x184 + x187 + x188 + x195 + x196 + x197 ++ x210 + x211 + x212 + x214 + x219 + x246 + x271 + x272 + x273 + x286 ++ x301 + x310 + x319 + x320 + x321 + x322 + x323 + x331 + x339 + x350 ++ x353 + x358 + x363 + x367 + x389 + x391 + x393 + x406 + x413 + x415 ++ x416 + x427 + x431 + x445 + x462 + x463 + x464 + x469 + x490 <= 1 + +x34 + x36 + x38 + x55 + x79 + x83 + x94 + x97 + x98 + x99 ++ x100 + x101 + x103 + x104 + x105 + x106 + x108 + x117 + x118 + x129 ++ x130 + x164 + x175 + x179 + x181 + x182 + x183 + x184 + x187 + x188 ++ x207 + x234 + x271 + x272 + x273 + x285 + x301 + x310 + x312 + x319 ++ x320 + x321 + x323 + x325 + x328 + x329 + x331 + x332 + x333 + x334 ++ x335 + x350 + x355 + x357 + x358 + x364 + x365 + x366 + x367 + x387 ++ x389 + x391 + x406 + x415 + x416 + x427 + x428 + x431 + x444 + x445 ++ x458 + x459 <= 1 + +x10 + x34 + x36 + x38 + x93 + x94 + x101 + x102 + x103 + x104 ++ x105 + x108 + x145 + x179 + x181 + x182 + x183 + x184 + x185 + x234 ++ x312 + x313 + x328 + x329 + x333 + x334 + x335 + x350 + x355 + x364 ++ x365 + x366 + x367 + x368 + x369 + x387 + x389 + x391 + x427 + x431 ++ x463 + x467 <= 1 + +x5 + x6 + x8 + x38 + x80 + x101 + x102 + x146 + x147 + x160 ++ x189 + x204 + x206 + x207 + x208 + x321 + x328 + x364 + x371 + x427 ++ x428 + x440 + x442 + x498 <= 1 + +x25 + x35 + x39 + x46 + x47 + x49 + x50 + x97 + x98 + x99 ++ x100 + x103 + x107 + x123 + x125 + x138 + x139 + x140 + x141 + x150 ++ x152 + x216 + x218 + x225 + x226 + x233 + x234 + x242 + x243 + x246 ++ x247 + x262 + x263 + x265 + x299 + x371 + x373 + x374 + x375 + x404 ++ x405 + x407 + x409 + x428 + x432 + x433 + x434 + x435 + x436 + x437 ++ x439 + x454 + x462 <= 1 + +x25 + x28 + x35 + x45 + x46 + x47 + x49 + x50 + x95 + x123 ++ x125 + x138 + x139 + x140 + x141 + x186 + x190 + x216 + x218 + x226 ++ x230 + x242 + x243 + x246 + x247 + x254 + x255 + x258 + x262 + x263 ++ x265 + x266 + x268 + x275 + x279 + x326 + x370 + x404 + x405 + x407 ++ x409 + x425 + x426 + x433 + x434 + x435 + x437 + x454 + x477 <= 1 + +x23 + x28 + x35 + x45 + x46 + x47 + x48 + x91 + x95 + x97 ++ x98 + x104 + x107 + x127 + x131 + x138 + x140 + x141 + x143 + x150 ++ x186 + x190 + x226 + x242 + x243 + x246 + x254 + x256 + x258 + x260 ++ x262 + x263 + x264 + x265 + x268 + x272 + x275 + x279 + x295 + x338 ++ x370 + x371 + x373 + x374 + x375 + x404 + x405 + x407 + x456 + x477 ++ x479 <= 1 + +x23 + x33 + x45 + x46 + x47 + x48 + x95 + x97 + x98 + x100 ++ x104 + x105 + x106 + x107 + x108 + x141 + x150 + x186 + x190 + x225 ++ x242 + x244 + x256 + x258 + x260 + x262 + x264 + x265 + x266 + x268 ++ x271 + x272 + x273 + x295 + x323 + x338 + x339 + x370 + x371 + x372 ++ x373 + x374 + x375 + x388 + x398 + x400 + x404 + x435 + x437 + x446 ++ x447 + x450 + x462 + x466 + x476 + x479 <= 1 + +x33 + x37 + x46 + x47 + x48 + x91 + x94 + x95 + x97 + x98 ++ x99 + x100 + x101 + x102 + x105 + x106 + x141 + x181 + x182 + x183 ++ x184 + x219 + x256 + x261 + x268 + x269 + x271 + x272 + x273 + x295 ++ x320 + x321 + x323 + x325 + x327 + x330 + x332 + x336 + x337 + x338 ++ x339 + x340 + x342 + x352 + x370 + x371 + x372 + x375 + x388 + x391 ++ x400 + x405 + x431 + x443 + x445 + x446 + x447 + x448 + x462 + x466 ++ x479 + x492 <= 1 + +x18 + x20 + x28 + x29 + x33 + x37 + x39 + x54 + x61 + x65 ++ x91 + x94 + x95 + x97 + x98 + x99 + x100 + x101 + x102 + x181 ++ x183 + x184 + x214 + x219 + x256 + x261 + x286 + x289 + x295 + x319 ++ x320 + x321 + x323 + x325 + x326 + x327 + x332 + x337 + x338 + x339 ++ x340 + x342 + x350 + x351 + x353 + x370 + x371 + x372 + x386 + x388 ++ x390 + x391 + x400 + x406 + x431 + x443 + x445 + x446 + x447 + x448 ++ x463 + x464 + x490 + x492 <= 1 + +x15 + x20 + x22 + x23 + x25 + x36 + x37 + x53 + x54 + x83 ++ x97 + x98 + x99 + x100 + x101 + x104 + x105 + x108 + x117 + x181 ++ x182 + x183 + x184 + x188 + x195 + x197 + x198 + x211 + x214 + x219 ++ x246 + x247 + x256 + x261 + x271 + x272 + x295 + x301 + x306 + x310 ++ x319 + x320 + x321 + x323 + x325 + x326 + x327 + x331 + x332 + x333 ++ x334 + x337 + x350 + x353 + x371 + x372 + x386 + x391 + x460 + x462 ++ x463 + x464 + x490 <= 1 + +x28 + x31 + x36 + x52 + x53 + x54 + x55 + x79 + x85 + x92 ++ x93 + x94 + x95 + x98 + x99 + x100 + x101 + x114 + x115 + x117 ++ x118 + x129 + x164 + x182 + x183 + x184 + x204 + x206 + x246 + x247 ++ x258 + x268 + x271 + x272 + x307 + x308 + x310 + x315 + x317 + x319 ++ x320 + x321 + x323 + x326 + x327 + x329 + x331 + x332 + x333 + x334 ++ x335 + x341 + x350 + x355 + x357 + x358 + x364 + x365 + x367 + x369 ++ x372 + x390 + x416 + x444 + x458 + x459 + x460 + x461 + x463 + x464 ++ x467 + x497 <= 1 + +x21 + x23 + x24 + x26 + x34 + x36 + x38 + x79 + x85 + x93 ++ x96 + x98 + x99 + x101 + x102 + x108 + x117 + x174 + x175 + x179 ++ x181 + x182 + x183 + x184 + x187 + x189 + x204 + x206 + x208 + x218 ++ x234 + x243 + x246 + x288 + x301 + x307 + x309 + x312 + x313 + x316 ++ x317 + x319 + x320 + x321 + x323 + x326 + x328 + x329 + x332 + x333 ++ x334 + x335 + x364 + x365 + x366 + x367 + x368 + x369 + x386 + x387 ++ x389 + x390 + x415 + x416 + x427 + x428 + x429 + x430 + x431 + x432 ++ x442 + x444 + x459 + x463 + x464 + x497 <= 1 + +x6 + x8 + x18 + x21 + x26 + x38 + x93 + x98 + x101 + x116 ++ x147 + x156 + x160 + x180 + x183 + x184 + x189 + x204 + x205 + x206 ++ x207 + x208 + x271 + x313 + x316 + x317 + x321 + x323 + x328 + x364 ++ x365 + x366 + x367 + x389 + x427 + x428 + x430 + x431 + x432 + x442 ++ x444 + x494 + x497 + x498 <= 1 + +x34 + x35 + x39 + x49 + x50 + x73 + x97 + x99 + x100 + x107 ++ x120 + x123 + x125 + x180 + x186 + x216 + x218 + x219 + x222 + x226 ++ x233 + x242 + x243 + x246 + x247 + x262 + x266 + x267 + x326 + x374 ++ x404 + x405 + x407 + x409 + x433 + x434 + x435 + x437 + x449 + x454 ++ x462 <= 1 + +x25 + x34 + x35 + x39 + x46 + x47 + x49 + x50 + x74 + x95 ++ x97 + x103 + x104 + x105 + x107 + x108 + x125 + x139 + x140 + x141 ++ x150 + x152 + x180 + x225 + x226 + x233 + x234 + x242 + x243 + x246 ++ x247 + x255 + x262 + x263 + x265 + x266 + x267 + x268 + x274 + x275 ++ x276 + x277 + x278 + x279 + x297 + x299 + x326 + x371 + x373 + x374 ++ x375 + x388 + x404 + x405 + x407 + x409 + x433 + x434 + x435 + x436 ++ x437 + x462 + x476 + x477 + x478 + x479 + x480 + x499 <= 1 + +x23 + x27 + x28 + x30 + x33 + x35 + x39 + x45 + x46 + x48 ++ x56 + x66 + x83 + x95 + x97 + x98 + x100 + x102 + x103 + x104 ++ x105 + x107 + x108 + x150 + x152 + x186 + x187 + x190 + x217 + x220 ++ x225 + x242 + x245 + x246 + x256 + x260 + x263 + x264 + x265 + x266 ++ x267 + x268 + x271 + x272 + x274 + x275 + x276 + x277 + x279 + x295 ++ x299 + x323 + x338 + x371 + x372 + x373 + x374 + x375 + x388 + x398 ++ x400 + x401 + x404 + x405 + x406 + x407 + x408 + x409 + x433 + x435 ++ x437 + x446 + x447 + x450 + x462 + x465 + x466 + x476 + x477 + x478 ++ x479 + x480 + x485 <= 1 + +x29 + x30 + x33 + x45 + x46 + x48 + x56 + x64 + x66 + x95 ++ x97 + x98 + x99 + x100 + x101 + x102 + x106 + x107 + x184 + x186 ++ x190 + x217 + x242 + x244 + x245 + x264 + x265 + x268 + x295 + x296 ++ x323 + x327 + x370 + x371 + x372 + x373 + x374 + x375 + x388 + x401 ++ x404 + x408 + x409 + x433 + x434 + x435 + x436 + x437 + x438 + x450 ++ x462 + x465 + x467 + x477 + x478 + x479 <= 1 + +x28 + x29 + x30 + x33 + x37 + x46 + x48 + x64 + x65 + x83 ++ x91 + x94 + x95 + x97 + x98 + x99 + x100 + x101 + x102 + x104 ++ x105 + x106 + x107 + x181 + x183 + x184 + x190 + x214 + x217 + x246 ++ x256 + x261 + x268 + x271 + x272 + x295 + x311 + x319 + x320 + x321 ++ x322 + x323 + x326 + x327 + x336 + x338 + x340 + x342 + x364 + x370 ++ x371 + x372 + x373 + x386 + x388 + x390 + x391 + x404 + x406 + x434 ++ x443 + x445 + x446 + x447 + x448 + x463 + x464 + x478 + x492 <= 1 + +x28 + x37 + x39 + x54 + x83 + x89 + x92 + x95 + x98 + x99 ++ x105 + x118 + x153 + x172 + x181 + x183 + x214 + x219 + x243 + x244 ++ x246 + x261 + x268 + x270 + x271 + x272 + x289 + x306 + x309 + x310 ++ x311 + x319 + x320 + x321 + x322 + x323 + x326 + x327 + x331 + x337 ++ x342 + x350 + x357 + x358 + x364 + x369 + x370 + x371 + x372 + x391 ++ x400 + x443 + x445 + x446 + x447 + x448 + x461 + x463 + x464 + x496 + <= 1 + +x22 + x25 + x28 + x36 + x37 + x52 + x53 + x54 + x83 + x92 ++ x93 + x94 + x95 + x98 + x99 + x100 + x101 + x103 + x104 + x105 ++ x106 + x108 + x114 + x115 + x117 + x118 + x153 + x159 + x175 + x181 ++ x182 + x183 + x184 + x195 + x198 + x214 + x243 + x246 + x247 + x267 ++ x268 + x270 + x271 + x272 + x288 + x306 + x307 + x308 + x309 + x312 ++ x313 + x315 + x316 + x319 + x321 + x326 + x328 + x331 + x332 + x334 ++ x335 + x336 + x337 + x341 + x355 + x356 + x357 + x358 + x360 + x365 ++ x367 + x369 + x386 + x389 + x390 + x391 + x427 + x429 + x432 + x443 ++ x444 + x458 + x460 + x461 + x463 + x464 + x467 + x492 + x493 + x496 + <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 + x28 + x31 + x36 + x37 ++ x38 + x51 + x52 + x53 + x54 + x79 + x85 + x92 + x93 + x94 ++ x96 + x98 + x99 + x101 + x102 + x103 + x104 + x105 + x106 + x114 ++ x159 + x174 + x175 + x179 + x180 + x181 + x182 + x183 + x184 + x214 ++ x243 + x244 + x258 + x268 + x270 + x271 + x272 + x273 + x284 + x286 ++ x288 + x306 + x307 + x309 + x311 + x312 + x313 + x314 + x315 + x316 ++ x319 + x321 + x328 + x331 + x332 + x333 + x334 + x335 + x336 + x341 ++ x355 + x356 + x357 + x358 + x360 + x364 + x365 + x366 + x367 + x369 ++ x386 + x387 + x389 + x427 + x428 + x429 + x431 + x432 + x444 + x463 ++ x464 + x467 + x488 + x489 + x494 + x495 + x496 + x497 <= 1 + +x22 + x23 + x24 + x26 + x31 + x41 + x51 + x98 + x99 + x101 ++ x102 + x103 + x104 + x105 + x107 + x115 + x117 + x156 + x159 + x160 ++ x162 + x163 + x175 + x179 + x180 + x182 + x183 + x184 + x205 + x206 ++ x243 + x244 + x270 + x271 + x272 + x273 + x286 + x288 + x289 + x307 ++ x309 + x311 + x312 + x313 + x314 + x315 + x316 + x317 + x319 + x321 ++ x323 + x332 + x333 + x334 + x335 + x336 + x341 + x355 + x356 + x357 ++ x358 + x359 + x360 + x364 + x365 + x366 + x367 + x368 + x369 + x386 ++ x387 + x389 + x390 + x427 + x428 + x431 + x432 + x488 + x489 + x494 ++ x498 + x499 <= 1 + +x6 + x21 + x23 + x24 + x26 + x27 + x41 + x93 + x98 + x99 ++ x101 + x102 + x104 + x105 + x106 + x116 + x156 + x157 + x160 + x179 ++ x180 + x181 + x182 + x183 + x184 + x189 + x204 + x205 + x206 + x207 ++ x208 + x218 + x270 + x271 + x272 + x273 + x288 + x289 + x307 + x309 ++ x311 + x312 + x313 + x317 + x320 + x321 + x323 + x328 + x335 + x364 ++ x365 + x366 + x367 + x369 + x387 + x389 + x428 + x429 + x430 + x431 ++ x432 + x463 + x489 + x494 + x497 + x498 <= 1 + +x34 + x35 + x39 + x45 + x46 + x47 + x49 + x50 + x73 + x74 ++ x76 + x97 + x100 + x120 + x125 + x139 + x152 + x179 + x180 + x216 ++ x218 + x222 + x225 + x226 + x233 + x234 + x235 + x242 + x262 + x266 ++ x267 + x274 + x276 + x277 + x278 + x279 + x297 + x298 + x299 + x341 ++ x402 + x404 + x405 + x406 + x407 + x408 + x409 + x433 + x436 + x437 ++ x449 + x451 + x452 + x453 + x454 + x462 + x476 + x480 <= 1 + +x33 + x34 + x35 + x39 + x45 + x47 + x49 + x50 + x56 + x74 ++ x101 + x103 + x104 + x106 + x107 + x108 + x124 + x125 + x135 + x150 ++ x151 + x152 + x179 + x180 + x186 + x188 + x216 + x220 + x231 + x233 ++ x234 + x235 + x242 + x243 + x245 + x246 + x247 + x262 + x266 + x267 ++ x268 + x274 + x275 + x276 + x277 + x278 + x279 + x297 + x299 + x371 ++ x374 + x375 + x388 + x398 + x402 + x403 + x404 + x405 + x406 + x407 ++ x408 + x409 + x433 + x435 + x436 + x449 + x451 + x452 + x453 + x462 ++ x479 + x480 + x481 + x486 <= 1 + +x23 + x33 + x34 + x35 + x39 + x45 + x46 + x47 + x48 + x49 ++ x50 + x56 + x95 + x97 + x98 + x100 + x101 + x102 + x103 + x104 ++ x105 + x106 + x107 + x108 + x124 + x150 + x151 + x152 + x186 + x188 ++ x190 + x216 + x217 + x220 + x242 + x243 + x244 + x245 + x246 + x247 ++ x267 + x269 + x274 + x275 + x276 + x277 + x278 + x279 + x280 + x295 ++ x296 + x297 + x299 + x371 + x374 + x375 + x388 + x390 + x398 + x402 ++ x404 + x405 + x406 + x407 + x408 + x409 + x433 + x435 + x436 + x438 ++ x446 + x449 + x450 + x451 + x462 + x465 + x466 + x467 + x476 + x477 ++ x480 + x481 <= 1 + +x23 + x27 + x28 + x29 + x30 + x32 + x33 + x39 + x45 + x46 ++ x50 + x56 + x97 + x98 + x99 + x100 + x101 + x102 + x103 + x104 ++ x105 + x106 + x107 + x108 + x149 + x186 + x187 + x190 + x217 + x220 ++ x221 + x225 + x232 + x242 + x244 + x245 + x247 + x260 + x274 + x275 ++ x276 + x278 + x295 + x296 + x297 + x318 + x327 + x359 + x370 + x371 ++ x372 + x373 + x374 + x375 + x377 + x388 + x390 + x401 + x406 + x407 ++ x408 + x409 + x433 + x434 + x435 + x436 + x437 + x438 + x443 + x450 ++ x462 + x465 + x467 + x478 + x480 + x485 <= 1 + +x29 + x30 + x31 + x32 + x33 + x39 + x45 + x50 + x52 + x56 ++ x87 + x95 + x96 + x97 + x98 + x99 + x100 + x101 + x102 + x103 ++ x104 + x105 + x106 + x107 + x149 + x153 + x154 + x176 + x181 + x183 ++ x184 + x187 + x190 + x191 + x244 + x245 + x247 + x271 + x274 + x276 ++ x284 + x289 + x308 + x322 + x359 + x364 + x365 + x367 + x370 + x371 ++ x378 + x388 + x390 + x404 + x406 + x407 + x408 + x409 + x443 + x447 ++ x448 + x490 + x491 + x492 <= 1 + +x39 + x51 + x52 + x53 + x54 + x56 + x84 + x86 + x87 + x88 ++ x89 + x97 + x98 + x99 + x100 + x102 + x103 + x104 + x105 + x106 ++ x107 + x115 + x116 + x153 + x176 + x181 + x183 + x209 + x214 + x219 ++ x224 + x244 + x261 + x272 + x284 + x289 + x308 + x320 + x321 + x322 ++ x327 + x331 + x335 + x341 + x357 + x358 + x364 + x365 + x367 + x370 ++ x371 + x390 + x391 + x406 + x408 + x444 + x463 + x467 + x488 + x489 ++ x491 + x492 + x493 + x496 <= 1 + +x22 + x23 + x25 + x26 + x28 + x29 + x30 + x31 + x32 + x51 ++ x52 + x53 + x54 + x56 + x83 + x84 + x86 + x89 + x99 + x102 ++ x103 + x104 + x105 + x106 + x107 + x114 + x115 + x116 + x117 + x118 ++ x119 + x153 + x162 + x163 + x166 + x174 + x176 + x178 + x179 + x180 ++ x181 + x182 + x183 + x198 + x209 + x243 + x244 + x245 + x247 + x261 ++ x268 + x270 + x271 + x272 + x284 + x286 + x288 + x289 + x306 + x308 ++ x314 + x315 + x316 + x321 + x322 + x326 + x327 + x328 + x331 + x335 ++ x341 + x344 + x355 + x356 + x357 + x358 + x360 + x365 + x366 + x367 ++ x369 + x371 + x391 + x406 + x408 + x427 + x428 + x429 + x430 + x444 ++ x463 + x464 + x467 + x488 + x492 + x493 + x495 + x496 <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 + x28 + x29 + x35 + x37 ++ x38 + x51 + x52 + x53 + x54 + x56 + x84 + x85 + x92 + x96 ++ x98 + x99 + x101 + x102 + x103 + x104 + x105 + x106 + x107 + x114 ++ x115 + x116 + x118 + x119 + x154 + x159 + x162 + x163 + x165 + x166 ++ x173 + x174 + x175 + x179 + x180 + x181 + x182 + x183 + x184 + x206 ++ x209 + x243 + x244 + x247 + x250 + x258 + x268 + x270 + x271 + x272 ++ x284 + x286 + x288 + x289 + x306 + x307 + x309 + x312 + x313 + x314 ++ x316 + x318 + x321 + x322 + x328 + x331 + x332 + x333 + x334 + x335 ++ x336 + x341 + x355 + x356 + x357 + x360 + x364 + x365 + x366 + x367 ++ x369 + x427 + x428 + x429 + x432 + x463 + x467 + x488 + x492 + x493 ++ x494 + x495 <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 + x28 + x31 + x41 + x51 ++ x52 + x53 + x85 + x92 + x98 + x99 + x101 + x102 + x103 + x104 ++ x105 + x106 + x107 + x114 + x115 + x116 + x118 + x119 + x155 + x156 ++ x157 + x159 + x162 + x163 + x175 + x181 + x182 + x184 + x188 + x204 ++ x206 + x243 + x244 + x270 + x272 + x273 + x287 + x288 + x289 + x306 ++ x311 + x317 + x321 + x322 + x332 + x333 + x334 + x335 + x336 + x341 ++ x355 + x356 + x357 + x359 + x360 + x364 + x365 + x366 + x367 + x387 ++ x389 + x390 + x391 + x418 + x428 + x429 + x431 + x467 + x489 + x498 ++ x499 <= 1 + +x23 + x24 + x25 + x26 + x27 + x28 + x30 + x31 + x32 + x40 ++ x41 + x51 + x52 + x53 + x90 + x101 + x102 + x103 + x104 + x106 ++ x107 + x114 + x116 + x119 + x155 + x156 + x157 + x159 + x160 + x165 ++ x187 + x188 + x189 + x204 + x205 + x206 + x207 + x208 + x243 + x244 ++ x270 + x271 + x272 + x273 + x284 + x287 + x289 + x311 + x312 + x313 ++ x317 + x333 + x336 + x355 + x356 + x357 + x359 + x364 + x365 + x367 ++ x369 + x387 + x389 + x390 + x428 + x429 + x430 + x492 + x499 <= 1 + +x35 + x39 + x45 + x47 + x49 + x50 + x73 + x74 + x76 + x103 ++ x107 + x108 + x111 + x120 + x124 + x125 + x150 + x151 + x152 + x179 ++ x216 + x218 + x220 + x231 + x232 + x233 + x235 + x242 + x243 + x245 ++ x246 + x247 + x262 + x266 + x267 + x274 + x275 + x276 + x277 + x278 ++ x279 + x294 + x296 + x297 + x298 + x299 + x375 + x388 + x403 + x404 ++ x409 + x433 + x435 + x436 + x437 + x449 + x451 + x452 + x453 + x454 ++ x476 + x483 + x486 <= 1 + +x12 + x29 + x33 + x45 + x47 + x49 + x50 + x73 + x74 + x75 ++ x94 + x97 + x98 + x99 + x100 + x101 + x103 + x104 + x107 + x108 ++ x149 + x150 + x151 + x152 + x179 + x180 + x216 + x217 + x218 + x220 ++ x221 + x232 + x233 + x235 + x245 + x247 + x262 + x266 + x267 + x277 ++ x294 + x298 + x299 + x375 + x407 + x409 + x451 + x452 + x453 + x462 ++ x481 + x482 + x483 + x485 + x486 <= 1 + +x23 + x26 + x29 + x32 + x33 + x34 + x35 + x38 + x39 + x49 ++ x50 + x97 + x98 + x99 + x100 + x101 + x102 + x103 + x104 + x105 ++ x107 + x108 + x179 + x186 + x188 + x190 + x216 + x217 + x218 + x220 ++ x221 + x231 + x232 + x235 + x236 + x242 + x245 + x247 + x260 + x266 ++ x267 + x269 + x274 + x278 + x294 + x295 + x296 + x297 + x298 + x299 ++ x318 + x370 + x371 + x372 + x374 + x375 + x402 + x405 + x407 + x408 ++ x409 + x433 + x435 + x436 + x438 + x449 + x450 + x451 + x452 + x462 ++ x465 + x466 + x476 + x477 + x478 + x481 + x482 + x484 + x485 + x486 + <= 1 + +x23 + x26 + x27 + x29 + x33 + x38 + x39 + x49 + x56 + x95 ++ x97 + x98 + x99 + x100 + x101 + x102 + x103 + x107 + x149 + x153 ++ x217 + x220 + x221 + x232 + x260 + x278 + x284 + x318 + x359 + x372 ++ x375 + x377 + x390 + x401 + x402 + x406 + x407 + x408 + x409 + x433 ++ x435 + x436 + x437 + x438 + x462 + x465 + x467 + x478 + x481 + x485 ++ x487 <= 1 + +x26 + x30 + x31 + x32 + x33 + x95 + x96 + x97 + x98 + x100 ++ x101 + x102 + x103 + x104 + x105 + x106 + x108 + x149 + x153 + x154 ++ x180 + x190 + x191 + x221 + x224 + x231 + x244 + x245 + x251 + x260 ++ x284 + x287 + x289 + x316 + x348 + x359 + x372 + x375 + x376 + x377 ++ x378 + x379 + x390 + x406 + x408 + x433 + x436 + x438 + x443 + x448 ++ x465 + x466 + x467 + x483 + x484 + x487 <= 1 + +x13 + x14 + x29 + x30 + x31 + x32 + x33 + x84 + x87 + x88 ++ x89 + x97 + x98 + x99 + x102 + x103 + x104 + x105 + x106 + x107 ++ x108 + x115 + x119 + x149 + x153 + x154 + x176 + x177 + x180 + x181 ++ x183 + x190 + x191 + x224 + x244 + x245 + x259 + x276 + x284 + x288 ++ x289 + x308 + x315 + x316 + x319 + x321 + x322 + x327 + x344 + x348 ++ x360 + x364 + x375 + x376 + x378 + x386 + x390 + x406 + x408 + x428 ++ x433 + x436 + x438 + x463 + x465 + x466 + x467 + x484 + x487 + x488 ++ x489 + x490 + x491 + x492 + x493 <= 1 + +x14 + x22 + x23 + x24 + x25 + x27 + x28 + x29 + x30 + x31 ++ x32 + x33 + x43 + x48 + x53 + x56 + x84 + x86 + x87 + x88 ++ x89 + x96 + x97 + x99 + x101 + x102 + x104 + x105 + x106 + x107 ++ x116 + x119 + x135 + x153 + x154 + x163 + x171 + x172 + x173 + x176 ++ x178 + x179 + x180 + x182 + x183 + x187 + x188 + x189 + x190 + x191 ++ x209 + x223 + x243 + x244 + x245 + x247 + x256 + x257 + x259 + x261 ++ x268 + x269 + x271 + x272 + x273 + x284 + x285 + x289 + x298 + x308 ++ x312 + x314 + x315 + x316 + x319 + x321 + x322 + x331 + x343 + x344 ++ x360 + x366 + x367 + x369 + x375 + x406 + x408 + x427 + x428 + x429 ++ x430 + x438 + x463 + x465 + x466 + x467 + x488 + x489 + x490 + x491 ++ x492 + x493 + x495 <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 + x28 + x29 + x30 + x31 ++ x32 + x33 + x43 + x52 + x85 + x86 + x91 + x92 + x96 + x101 ++ x102 + x103 + x104 + x105 + x106 + x107 + x118 + x119 + x136 + x151 ++ x154 + x161 + x162 + x163 + x165 + x166 + x167 + x171 + x172 + x173 ++ x174 + x176 + x177 + x178 + x182 + x187 + x188 + x191 + x203 + x205 ++ x209 + x222 + x223 + x244 + x245 + x250 + x257 + x259 + x270 + x272 ++ x284 + x286 + x287 + x288 + x289 + x312 + x313 + x314 + x316 + x318 ++ x319 + x322 + x331 + x333 + x336 + x344 + x360 + x365 + x367 + x369 ++ x427 + x429 + x430 + x432 + x438 + x467 + x488 + x489 + x490 + x491 ++ x493 + x495 <= 1 + +x22 + x23 + x24 + x26 + x27 + x30 + x32 + x40 + x42 + x44 ++ x92 + x96 + x99 + x104 + x105 + x106 + x107 + x119 + x136 + x154 ++ x155 + x156 + x157 + x159 + x160 + x161 + x162 + x165 + x166 + x167 ++ x170 + x171 + x172 + x173 + x174 + x178 + x187 + x188 + x189 + x191 ++ x205 + x208 + x209 + x244 + x257 + x268 + x270 + x273 + x312 + x313 ++ x314 + x316 + x319 + x322 + x356 + x365 + x367 + x369 + x434 + x436 ++ x438 + x440 + x441 + x488 + x489 + x491 + x493 <= 1 + +x22 + x23 + x25 + x26 + x27 + x28 + x30 + x31 + x32 + x40 ++ x41 + x42 + x44 + x51 + x53 + x92 + x96 + x99 + x103 + x104 ++ x105 + x106 + x107 + x114 + x127 + x136 + x155 + x156 + x157 + x159 ++ x160 + x161 + x165 + x166 + x174 + x186 + x187 + x188 + x189 + x191 ++ x204 + x205 + x206 + x208 + x209 + x241 + x269 + x270 + x271 + x272 ++ x273 + x284 + x285 + x286 + x287 + x288 + x289 + x313 + x314 + x318 ++ x319 + x322 + x356 + x365 + x380 + x381 + x389 + x428 + x430 + x441 ++ x493 + x499 <= 1 + +x97 + x100 + x102 + x103 + x107 + x108 + x109 + x111 + x112 + x120 ++ x149 + x151 + x152 + x179 + x216 + x221 + x231 + x232 + x233 + x235 ++ x242 + x245 + x247 + x286 + x294 + x296 + x297 + x298 + x375 + x403 ++ x409 + x427 + x453 + x481 + x492 <= 1 + +x27 + x59 + x73 + x75 + x97 + x100 + x101 + x102 + x108 + x112 ++ x149 + x150 + x151 + x152 + x179 + x180 + x216 + x218 + x221 + x232 ++ x235 + x245 + x247 + x277 + x294 + x296 + x297 + x298 + x299 + x359 ++ x403 + x404 + x407 + x408 + x409 + x436 + x452 + x465 + x466 + x482 ++ x483 + x484 + x485 + x486 <= 1 + +x26 + x27 + x29 + x31 + x32 + x33 + x39 + x48 + x75 + x97 ++ x101 + x102 + x103 + x108 + x113 + x149 + x150 + x152 + x154 + x179 ++ x186 + x190 + x218 + x220 + x221 + x231 + x236 + x245 + x247 + x277 ++ x284 + x294 + x296 + x299 + x318 + x359 + x374 + x375 + x386 + x404 ++ x408 + x409 + x433 + x435 + x436 + x438 + x462 + x465 + x466 + x474 ++ x475 + x482 + x483 + x484 + x485 + x486 + x487 <= 1 + +x26 + x27 + x30 + x31 + x32 + x33 + x48 + x63 + x97 + x98 ++ x99 + x100 + x101 + x102 + x103 + x105 + x107 + x108 + x110 + x149 ++ x150 + x152 + x153 + x154 + x177 + x180 + x190 + x221 + x278 + x284 ++ x286 + x288 + x348 + x372 + x375 + x386 + x390 + x401 + x406 + x408 ++ x433 + x435 + x436 + x437 + x438 + x465 + x466 + x467 + x475 + x482 ++ x483 + x484 + x485 + x486 + x487 + x490 <= 1 + +x13 + x14 + x15 + x17 + x27 + x28 + x29 + x30 + x31 + x32 ++ x33 + x48 + x97 + x98 + x99 + x100 + x101 + x102 + x103 + x104 ++ x105 + x106 + x107 + x108 + x109 + x110 + x149 + x153 + x154 + x177 ++ x180 + x224 + x227 + x231 + x236 + x245 + x249 + x260 + x284 + x286 ++ x287 + x288 + x289 + x316 + x319 + x322 + x332 + x376 + x379 + x386 ++ x390 + x406 + x465 + x466 + x467 + x473 + x482 + x484 + x485 + x487 ++ x490 + x491 + x492 + x493 <= 1 + +x13 + x14 + x15 + x17 + x27 + x28 + x29 + x30 + x31 + x32 ++ x33 + x48 + x56 + x84 + x86 + x87 + x88 + x89 + x92 + x96 ++ x97 + x99 + x102 + x103 + x105 + x106 + x107 + x108 + x135 + x153 ++ x173 + x176 + x177 + x178 + x180 + x183 + x189 + x190 + x191 + x222 ++ x223 + x224 + x227 + x234 + x244 + x245 + x249 + x259 + x268 + x269 ++ x270 + x271 + x273 + x284 + x285 + x286 + x287 + x288 + x289 + x315 ++ x316 + x318 + x319 + x321 + x322 + x343 + x344 + x345 + x346 + x348 ++ x360 + x369 + x386 + x406 + x408 + x438 + x465 + x466 + x488 + x489 ++ x490 + x491 + x492 + x493 <= 1 + +x22 + x28 + x29 + x30 + x31 + x32 + x33 + x56 + x84 + x86 ++ x88 + x89 + x92 + x96 + x102 + x103 + x104 + x105 + x106 + x107 ++ x154 + x162 + x163 + x165 + x166 + x169 + x171 + x173 + x177 + x178 ++ x180 + x191 + x222 + x227 + x244 + x256 + x257 + x259 + x261 + x273 ++ x284 + x285 + x286 + x288 + x289 + x314 + x315 + x316 + x318 + x319 ++ x321 + x322 + x333 + x343 + x344 + x346 + x360 + x370 + x375 + x386 ++ x427 + x429 + x430 + x462 + x488 + x489 + x490 + x491 + x492 + x493 + <= 1 + +x17 + x22 + x23 + x24 + x26 + x27 + x28 + x29 + x30 + x31 ++ x32 + x43 + x56 + x91 + x92 + x96 + x99 + x101 + x102 + x103 ++ x104 + x105 + x106 + x107 + x108 + x133 + x137 + x155 + x161 + x162 ++ x165 + x166 + x167 + x168 + x169 + x170 + x171 + x172 + x180 + x187 ++ x188 + x189 + x191 + x205 + x208 + x209 + x222 + x223 + x227 + x244 ++ x248 + x250 + x257 + x259 + x270 + x273 + x284 + x285 + x286 + x287 ++ x288 + x289 + x312 + x314 + x318 + x319 + x322 + x324 + x333 + x336 ++ x346 + x347 + x370 + x386 + x429 + x430 + x438 + x488 + x489 + x491 ++ x493 <= 1 + +x22 + x23 + x26 + x27 + x28 + x29 + x30 + x31 + x32 + x40 ++ x42 + x43 + x44 + x53 + x91 + x92 + x96 + x102 + x103 + x104 ++ x105 + x106 + x107 + x108 + x127 + x137 + x155 + x157 + x159 + x160 ++ x161 + x165 + x166 + x167 + x168 + x169 + x170 + x180 + x186 + x187 ++ x188 + x189 + x191 + x204 + x205 + x208 + x209 + x239 + x244 + x257 ++ x259 + x268 + x270 + x273 + x284 + x285 + x286 + x287 + x288 + x289 ++ x314 + x318 + x319 + x322 + x370 + x371 + x372 + x380 + x429 + x430 ++ x434 + x436 + x438 + x440 + x441 + x488 + x489 + x491 <= 1 + +x23 + x26 + x27 + x28 + x30 + x31 + x32 + x42 + x44 + x53 ++ x92 + x96 + x103 + x104 + x105 + x106 + x107 + x108 + x127 + x155 ++ x157 + x158 + x159 + x167 + x169 + x180 + x194 + x204 + x205 + x206 ++ x208 + x209 + x239 + x257 + x269 + x270 + x273 + x284 + x285 + x286 ++ x287 + x288 + x289 + x313 + x314 + x318 + x347 + x356 + x381 + x430 ++ x434 + x436 + x438 <= 1 + +x75 + x97 + x101 + x103 + x107 + x109 + x111 + x112 + x113 + x120 ++ x179 + x217 + x242 + x245 + x247 + x288 + x294 + x296 + x297 + x375 ++ x403 + x409 + x427 + x435 + x453 + x465 + x466 + x467 + x482 + x486 + <= 1 + +x33 + x75 + x97 + x100 + x101 + x102 + x107 + x108 + x109 + x111 ++ x112 + x113 + x179 + x180 + x221 + x236 + x242 + x245 + x247 + x269 ++ x288 + x294 + x296 + x297 + x298 + x303 + x404 + x409 + x433 + x435 ++ x436 + x465 + x466 + x467 + x474 + x482 + x483 + x484 + x485 + x486 + <= 1 + +x30 + x31 + x33 + x97 + x100 + x101 + x102 + x103 + x107 + x108 ++ x113 + x134 + x150 + x236 + x245 + x247 + x269 + x284 + x294 + x296 ++ x298 + x359 + x375 + x404 + x408 + x433 + x435 + x436 + x465 + x466 ++ x474 + x475 + x482 + x483 + x484 <= 1 + +x26 + x27 + x29 + x30 + x31 + x32 + x33 + x97 + x99 + x100 ++ x101 + x102 + x103 + x107 + x108 + x110 + x134 + x149 + x152 + x154 ++ x220 + x221 + x231 + x236 + x245 + x260 + x269 + x284 + x294 + x359 ++ x372 + x375 + x379 + x386 + x406 + x408 + x438 + x465 + x466 + x482 ++ x483 + x484 + x485 + x486 + x487 + x488 + x490 + x491 <= 1 + +x26 + x27 + x30 + x31 + x32 + x33 + x37 + x87 + x92 + x97 ++ x98 + x99 + x100 + x101 + x102 + x103 + x105 + x107 + x108 + x110 ++ x133 + x134 + x149 + x153 + x154 + x180 + x231 + x236 + x240 + x268 ++ x269 + x287 + x288 + x294 + x319 + x322 + x372 + x375 + x406 + x433 ++ x436 + x438 + x465 + x466 + x482 + x487 + x488 + x490 + x491 + x492 ++ x493 <= 1 + +x16 + x26 + x27 + x29 + x30 + x31 + x32 + x33 + x37 + x86 ++ x87 + x88 + x92 + x99 + x101 + x102 + x103 + x105 + x106 + x107 ++ x108 + x133 + x134 + x135 + x173 + x177 + x180 + x189 + x234 + x240 ++ x244 + x245 + x248 + x249 + x251 + x268 + x269 + x270 + x284 + x285 ++ x287 + x288 + x289 + x315 + x318 + x319 + x321 + x322 + x343 + x345 ++ x370 + x375 + x386 + x406 + x408 + x433 + x438 + x462 + x465 + x466 ++ x486 + x488 + x489 + x490 + x491 + x492 + x493 <= 1 + +x13 + x16 + x17 + x22 + x23 + x24 + x26 + x27 + x28 + x29 ++ x30 + x31 + x32 + x88 + x92 + x96 + x99 + x101 + x102 + x103 ++ x104 + x105 + x106 + x108 + x133 + x136 + x137 + x178 + x180 + x183 ++ x187 + x188 + x189 + x191 + x223 + x227 + x237 + x240 + x244 + x248 ++ x251 + x259 + x268 + x269 + x270 + x273 + x284 + x285 + x286 + x287 ++ x288 + x289 + x318 + x319 + x321 + x322 + x343 + x345 + x346 + x347 ++ x348 + x370 + x371 + x386 + x408 + x430 + x433 + x438 + x462 + x488 ++ x489 + x490 + x491 + x493 <= 1 + +x16 + x22 + x26 + x27 + x28 + x29 + x30 + x31 + x32 + x54 ++ x96 + x102 + x103 + x104 + x105 + x106 + x107 + x108 + x127 + x137 ++ x155 + x157 + x158 + x160 + x161 + x162 + x165 + x166 + x168 + x169 ++ x170 + x180 + x186 + x187 + x188 + x189 + x191 + x204 + x205 + x206 ++ x208 + x209 + x223 + x227 + x237 + x238 + x257 + x259 + x268 + x269 ++ x270 + x273 + x284 + x285 + x286 + x287 + x288 + x289 + x314 + x318 ++ x319 + x320 + x322 + x343 + x345 + x346 + x347 + x348 + x371 + x372 ++ x373 + x429 + x430 + x433 + x438 + x488 + x489 + x490 + x491 <= 1 + +x11 + x16 + x22 + x23 + x26 + x27 + x28 + x29 + x30 + x31 ++ x32 + x40 + x42 + x53 + x56 + x92 + x96 + x102 + x103 + x104 ++ x105 + x106 + x107 + x108 + x127 + x155 + x157 + x158 + x160 + x170 ++ x180 + x186 + x187 + x188 + x189 + x191 + x204 + x205 + x206 + x208 ++ x209 + x237 + x238 + x239 + x257 + x269 + x270 + x273 + x284 + x285 ++ x286 + x287 + x288 + x289 + x314 + x318 + x319 + x320 + x346 + x347 ++ x356 + x371 + x372 + x429 + x430 + x434 + x436 + x438 + x489 + x490 ++ x491 <= 1 + +x22 + x23 + x28 + x30 + x31 + x53 + x96 + x98 + x102 + x106 ++ x107 + x155 + x157 + x158 + x180 + x187 + x189 + x191 + x204 + x205 ++ x208 + x209 + x238 + x269 + x270 + x273 + x285 + x287 + x288 + x289 ++ x313 + x314 + x318 + x319 + x320 + x321 + x347 + x372 + x429 + x430 ++ x434 + x436 + x438 + x489 + x490 + x491 <= 1 + +x0 + x1 + x2 + x3 + x4 <= 1 + +x5 + x6 + x7 + x8 + x9 + x10 <= 1 + +x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 + x38 + x39 <= 1 + +x40 + x41 + x42 + x43 + x44 <= 1 + +x45 + x46 + x47 + x48 + x49 + x50 <= 1 + +x51 + x52 + x53 + x54 + x55 + x56 <= 1 + +x57 + x58 + x59 + x60 + x61 + x62 <= 1 + +x64 + x65 + x66 <= 1 + +x67 + x68 + x69 + x70 + x71 + x72 <= 1 + +x73 + x74 + x75 <= 1 + +x78 + x79 + x80 + x81 + x82 + x83 <= 1 + +x84 + x85 + x86 + x87 + x88 + x89 <= 1 + +x91 + x92 + x93 + x94 + x95 + x96 <= 1 + +x97 + x98 + x99 + x100 + x101 + x102 <= 1 + +x103 + x104 + x105 + x106 + x107 + x108 <= 1 + +x109 + x110 + x111 + x112 + x113 <= 1 + +x114 + x115 + x116 + x117 + x118 + x119 <= 1 + +x120 + x121 + x122 + x123 + x124 + x125 <= 1 + +x126 + x127 + x128 + x129 + x130 + x131 <= 1 + +x133 + x134 + x135 + x136 + x137 <= 1 + +x138 + x139 + x140 + x141 + x142 + x143 <= 1 + +x144 + x145 + x146 + x147 + x148 <= 1 + +x149 + x150 + x151 + x152 + x153 + x154 <= 1 + +x155 + x156 + x157 + x158 + x159 + x160 <= 1 + +x161 + x162 + x163 + x164 + x165 + x166 <= 1 + +x167 + x168 + x169 + x170 + x171 + x172 <= 1 + +x173 + x174 + x175 + x176 + x177 + x178 <= 1 + +x179 + x180 + x181 + x182 + x183 + x184 <= 1 + +x186 + x187 + x188 + x189 + x190 + x191 <= 1 + +x195 + x196 + x197 + x198 <= 1 + +x199 + x200 + x201 + x202 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 + x221 <= 1 + +x222 + x223 + x224 + x225 + x226 + x227 <= 1 + +x228 + x229 + x230 <= 1 + +x231 + x232 + x233 + x234 + x235 + x236 <= 1 + +x237 + x238 + x239 + x240 <= 1 + +x242 + x243 + x244 + x245 + x246 + x247 <= 1 + +x248 + x249 + x250 + x251 <= 1 + +x252 + x253 + x254 + x255 <= 1 + +x256 + x257 + x258 + x259 + x260 + x261 <= 1 + +x262 + x263 + x264 + x265 + x266 + x267 <= 1 + +x268 + x269 + x270 + x271 + x272 + x273 <= 1 + +x274 + x275 + x276 + x277 + x278 + x279 <= 1 + +x281 + x282 + x283 <= 1 + +x284 + x285 + x286 + x287 + x288 + x289 <= 1 + +x290 + x291 + x292 + x293 <= 1 + +x294 + x295 + x296 + x297 + x298 + x299 <= 1 + +x300 + x301 + x302 + x303 + x304 + x305 <= 1 + +x306 + x307 + x308 + x309 + x310 + x311 <= 1 + +x312 + x313 + x314 + x315 + x316 + x317 <= 1 + +x318 + x319 + x320 + x321 + x322 + x323 <= 1 + +x325 + x326 + x327 + x328 + x329 + x330 <= 1 + +x331 + x332 + x333 + x334 + x335 + x336 <= 1 + +x337 + x338 + x339 + x340 + x341 + x342 <= 1 + +x343 + x344 + x345 + x346 + x347 + x348 <= 1 + +x349 + x350 + x351 + x352 + x353 + x354 <= 1 + +x355 + x356 + x357 + x358 + x359 + x360 <= 1 + +x361 + x362 + x363 <= 1 + +x364 + x365 + x366 + x367 + x368 + x369 <= 1 + +x370 + x371 + x372 + x373 + x374 + x375 <= 1 + +x376 + x377 + x378 + x379 <= 1 + +x380 + x381 <= 1 + +x382 + x383 + x384 + x385 <= 1 + +x386 + x387 + x388 + x389 + x390 + x391 <= 1 + +x392 + x393 + x394 + x395 + x396 + x397 <= 1 + +x398 + x399 + x400 + x401 + x402 + x403 <= 1 + +x404 + x405 + x406 + x407 + x408 + x409 <= 1 + +x410 + x411 + x412 <= 1 + +x413 + x414 + x415 + x416 + x417 <= 1 + +x419 + x420 + x421 + x422 + x423 <= 1 + +x424 + x425 + x426 <= 1 + +x427 + x428 + x429 + x430 + x431 + x432 <= 1 + +x433 + x434 + x435 + x436 + x437 + x438 <= 1 + +x440 + x441 + x442 <= 1 + +x443 + x444 + x445 + x446 + x447 + x448 <= 1 + +x449 + x450 + x451 + x452 + x453 + x454 <= 1 + +x455 + x456 + x457 <= 1 + +x458 + x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 <= 1 + +x476 + x477 + x478 + x479 + x480 + x481 <= 1 + +x482 + x483 + x484 + x485 + x486 + x487 <= 1 + +x488 + x489 + x490 + x491 + x492 + x493 <= 1 + +x494 + x495 + x496 + x497 + x498 + x499 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 + + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0008.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0008.lp new file mode 100644 index 000000000..820006911 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0008.lp @@ -0,0 +1,1131 @@ +max + +141.857x0 + 191.688x1 + 140.667x2 + 878.291x3 + 997.441x4 + 876.085x5 + 831.68x6 + 828.289x7 + 794.817x8 + 848.324x9 + +1123.89x10 + 1004.47x11 + 935.546x12 + 902.128x13 + 878.459x14 + 1020.62x15 + 1083.04x16 + 1077.03x17 + 1004.37x18 + 976.047x19 + +967.183x20 + 237.195x21 + 343.696x22 + 278.168x23 + 253.939x24 + 212.178x25 + 197.627x26 + 707.272x27 + 763.75x28 + 744.407x29 + +681.42x30 + 676.89x31 + 652.917x32 + 743.968x33 + 1103.94x34 + 1011.62x35 + 980.7x36 + 980.095x37 + 978.536x38 + 34.1691x39 + +846.981x40 + 1055.09x41 + 1044.95x42 + 1020.71x43 + 1015.8x44 + 993.699x45 + 57.2543x46 + 58.5755x47 + 50.8105x48 + 2228x49 + +2538.88x50 + 2494.82x51 + 2458.47x52 + 2440.23x53 + 2413.25x54 + 2968.25x55 + 3281.92x56 + 3248.62x57 + 3219.05x58 + 3215.59x59 + +3213.23x60 + 149.131x61 + 193.785x62 + 315.409x63 + 424.078x64 + 372.861x65 + 348.069x66 + 302.131x67 + 217.677x68 + 604.246x69 + +827.861x70 + 802.327x71 + 780.922x72 + 636.284x73 + 574.159x74 + 500.355x75 + 424.468x76 + 357.798x77 + 349.321x78 + 283.931x79 + +248.576x80 + 254.082x81 + 369.635x82 + 333.518x83 + 308.98x84 + 277.934x85 + 224.023x86 + 671.423x87 + 826.981x88 + 798.813x89 + +695.322x90 + 681.178x91 + 674.541x92 + 1330.71x93 + 1327.18x94 + 1296.11x95 + 1293.5x96 + 1291.27x97 + 1291.22x98 + 204.382x99 + +133.339x100 + 2274.84x101 + 2733.35x102 + 2530.55x103 + 2454.81x104 + 2437.71x105 + 2420.63x106 + 717.546x107 + 1052.73x108 + 984.41x109 + +983.982x110 + 951.963x111 + 941.871x112 + 956.607x113 + 1060.34x114 + 945.502x115 + 925.385x116 + 921.152x117 + 917.106x118 + 1174.75x119 + +1467.74x120 + 1465.63x121 + 1457.43x122 + 1422.2x123 + 1395.87x124 + 789.739x125 + 903.581x126 + 880.686x127 + 857.481x128 + 834.875x129 + +832.601x130 + 887.737x131 + 968.498x132 + 912.09x133 + 906.327x134 + 896.543x135 + 850.955x136 + 1227.86x137 + 1270.69x138 + 1232.39x139 + +1017.42x140 + 996.949x141 + 991.009x142 + 84.7352x143 + 228.965x144 + 341.743x145 + 288.119x146 + 244.806x147 + 131.88x148 + 1420.46x149 + +1469.31x150 + 1440.45x151 + 1409.07x152 + 1396.52x153 + 1381.47x154 + 106.365x155 + 80.2551x156 + 205.805x157 + 276.652x158 + 271.855x159 + +242.411x160 + 148.515x161 + 642.715x162 + 784.077x163 + 783.301x164 + 673.261x165 + 624.426x166 + 616.239x167 + 246.344x168 + 358.546x169 + +192.798x170 + 164.189x171 + 147.618x172 + 371.701x173 + 428.904x174 + 392.008x175 + 320.352x176 + 302.233x177 + 296.149x178 + 131.978x179 + +151.382x180 + 40.9602x181 + 56.5371x182 + 347.301x183 + 423.092x184 + 346.386x185 + 304.677x186 + 292.686x187 + 243.062x188 + 958.379x189 + +1134.99x190 + 1047.29x191 + 1014.96x192 + 1006.26x193 + 999.531x194 + 197.187x195 + 164.629x196 + 110.504x197 + 70.9167x198 + 139.901x199 + +167.908x200 + 81.5152x201 + 1470.21x202 + 2201.48x203 + 2088.68x204 + 2078.24x205 + 2060.62x206 + 2053.88x207 + 358.533x208 + 389.783x209 + +373.868x210 + 330.589x211 + 311.952x212 + 271.439x213 + 233.599x214 + 200.074x215 + 169.89x216 + 169.394x217 + 277.012x218 + 341.582x219 + +308.6x220 + 303.097x221 + 234.411x222 + 154.057x223 + 88.9698x224 + 47.3033x225 + 104.346x226 + 145.273x227 + 132.342x228 + 104.406x229 + +2263.23x230 + 2490.42x231 + 2344.48x232 + 2291.94x233 + 2287.42x234 + 2242.06x235 + 309.054x236 + 341.128x237 + 330.071x238 + 305.723x239 + +290.024x240 + 156.353x241 + 349.479x242 + 408.201x243 + 405.174x244 + 393.566x245 + 393.377x246 + 350.988x247 + 781.138x248 + 957.468x249 + +947.194x250 + 917.92x251 + 908.219x252 + 845.187x253 + 228.22x254 + 334.435x255 + 290.251x256 + 200.23x257 + 935.704x258 + 1367.22x259 + +1320.53x260 + 1222.63x261 + 1221.28x262 + 1216.31x263 + 392.761x264 + 408.545x265 + 397.307x266 + 360.393x267 + 347.068x268 + 227.65x269 + +233.657x270 + 236.402x271 + 214.709x272 + 205.716x273 + 180.746x274 + 2009.1x275 + 2141.27x276 + 2135.66x277 + 2052.66x278 + 2037.64x279 + +2009.92x280 + 179.366x281 + 162.486x282 + 310.021x283 + 433.585x284 + 429.009x285 + 418.171x286 + 402.864x287 + 373.685x288 + 1080.21x289 + +1314.78x290 + 1274.8x291 + 1255.35x292 + 1227.12x293 + 1226.92x294 + 1186.83x295 + 1634.72x296 + 1580.93x297 + 1562.64x298 + 1520.42x299 + +1512.12x300 + 1371.15x301 + 1862.83x302 + 1858.96x303 + 1828.52x304 + 1711.92x305 + 1710.05x306 + 769.127x307 + 1040.81x308 + 1022.02x309 + +906.492x310 + 899.663x311 + 854.685x312 + 238.611x313 + 353.544x314 + 333.075x315 + 330.051x316 + 314.782x317 + 275.57x318 + 662.215x319 + +831.091x320 + 784.046x321 + 753.357x322 + 682.66x323 + 565.291x324 + 348.76x325 + 514.775x326 + 415.021x327 + 399.874x328 + 336.095x329 + +317.383x330 + 238.867x331 + 349.266x332 + 316.006x333 + 314.332x334 + 266.635x335 + 264.708x336 + 288.848x337 + 395.386x338 + 382.482x339 + +353.709x340 + 352.84x341 + 337.622x342 + 77.1197x343 + 94.2112x344 + 998.443x345 + 1046.96x346 + 1026.3x347 + 1009.09x348 + 1005.81x349 + +934.568x350 + 677.321x351 + 823.231x352 + 815.102x353 + 782.013x354 + 755.484x355 + 735.291x356 + 1422.4x357 + 1767.54x358 + 1656.59x359 + +1637.57x360 + 1598.21x361 + 1550.18x362 + 270.059x363 + 341.879x364 + 334.377x365 + 319.724x366 + 254.133x367 + 971.057x368 + 967.584x369 + +932.121x370 + 897.933x371 + 877.578x372 + 871.747x373 + 129.513x374 + 137.393x375 + 132.218x376 + 310.633x377 + 374.959x378 + 359.846x379 + +343.129x380 + 324.76x381 + 323.431x382 + 402.914x383 + 571.594x384 + 488.473x385 + 482.851x386 + 436.527x387 + 391.344x388 + 998.496x389 + +1060.44x390 + 1011.88x391 + 999.936x392 + 994.471x393 + 991.94x394 + 1333.03x395 + 1951.54x396 + 1775.89x397 + 1758.78x398 + 1713.69x399 + +1699.49x400 + 98.1577x401 + 823.593x402 + 1140x403 + 1038.95x404 + 1008.25x405 + 973.537x406 + 972.39x407 + 131.331x408 + 169.352x409 + +161.927x410 + 416.128x411 + 537.394x412 + 471.82x413 + 463.94x414 + 458.306x415 + 450.968x416 + 482.518x417 + 534.695x418 + 482.287x419 + +430.897x420 + 339.611x421 + 282.459x422 + 118.294x423 + 152.219x424 + 328.673x425 + 434.386x426 + 434.044x427 + 364.554x428 + 356.978x429 + +339.609x430 + 444.991x431 + 525.991x432 + 455.231x433 + 445.854x434 + 422.807x435 + 408.724x436 + 543.802x437 + 582.572x438 + 526.581x439 + +526.548x440 + 458.804x441 + 451.305x442 + 1124.11x443 + 1370.17x444 + 1212.93x445 + 1184.1x446 + 1160.36x447 + 1134.21x448 + 253.833x449 + +331.544x450 + 312.645x451 + 231.011x452 + 198.713x453 + 855.798x454 + 1068.7x455 + 1041.09x456 + 1029.91x457 + 942.757x458 + 915.364x459 + +292.732x460 + 226.859x461 + 181.755x462 + 711.955x463 + 859.384x464 + 840.21x465 + 823.291x466 + 686.198x467 + 677.901x468 + 177.237x469 + +177.038x470 + 111.491x471 + 359.128x472 + 370.925x473 + 358.619x474 + 340.844x475 + 329.395x476 + 307.59x477 + 284.017x478 + 275.806x479 + +261.866x480 + 218.069x481 + 354.241x482 + 517.387x483 + 454.042x484 + 446.344x485 + 441.062x486 + 401.261x487 + 158.278x488 + 193.176x489 + +172.031x490 + 86.3949x491 + 51.7894x492 + 44.755x493 + 505.397x494 + 688.095x495 + 676.253x496 + 630.796x497 + 624.891x498 + 603.98x499 + + +st + +x3 + x5 + x17 + x18 + x20 + x39 + x44 + x45 + x54 + x56 ++ x57 + x59 + x60 + x76 + x89 + x92 + x99 + x101 + x102 + x103 ++ x106 + x110 + x125 + x128 + x129 + x130 + x140 + x149 + x207 + x230 ++ x231 + x234 + x235 + x260 + x262 + x263 + x275 + x313 + x314 + x316 ++ x337 + x340 + x360 + x361 + x383 + x386 + x387 + x388 + x396 + x440 ++ x442 + x444 + x446 + x448 + x454 + x458 + x495 + x497 + x498 <= 1 + +x5 + x16 + x17 + x18 + x20 + x38 + x44 + x45 + x56 + x59 ++ x60 + x76 + x78 + x89 + x92 + x99 + x101 + x102 + x103 + x106 ++ x110 + x125 + x128 + x129 + x130 + x140 + x149 + x152 + x187 + x207 ++ x230 + x231 + x233 + x234 + x313 + x314 + x316 + x337 + x340 + x341 ++ x360 + x361 + x365 + x383 + x387 + x388 + x398 + x407 + x439 + x440 ++ x441 + x442 + x445 + x446 + x448 + x454 + x458 + x463 + x471 + x494 ++ x495 + x498 <= 1 + +x5 + x17 + x44 + x56 + x57 + x59 + x78 + x80 + x91 + x92 ++ x101 + x102 + x106 + x124 + x125 + x128 + x129 + x130 + x142 + x149 ++ x152 + x165 + x207 + x230 + x231 + x234 + x235 + x260 + x262 + x313 ++ x314 + x315 + x316 + x318 + x340 + x341 + x360 + x361 + x365 + x371 ++ x383 + x385 + x387 + x391 + x397 + x407 + x411 + x437 + x439 + x440 ++ x441 + x442 + x443 + x444 + x445 + x446 + x448 + x458 + x463 + x471 ++ x494 + x496 + x498 <= 1 + +x5 + x6 + x11 + x17 + x44 + x53 + x56 + x57 + x59 + x80 ++ x87 + x89 + x91 + x92 + x93 + x101 + x102 + x103 + x104 + x106 ++ x124 + x125 + x126 + x127 + x128 + x129 + x130 + x142 + x149 + x150 ++ x151 + x155 + x165 + x189 + x204 + x207 + x230 + x231 + x232 + x234 ++ x235 + x255 + x260 + x261 + x262 + x303 + x312 + x314 + x315 + x316 ++ x317 + x338 + x339 + x340 + x341 + x342 + x346 + x350 + x361 + x365 ++ x368 + x371 + x373 + x385 + x397 + x402 + x407 + x412 + x437 + x438 ++ x439 + x440 + x442 + x443 + x445 + x446 + x458 + x463 + x464 + x469 ++ x471 + x496 <= 1 + +x11 + x34 + x36 + x38 + x53 + x54 + x56 + x57 + x59 + x91 ++ x93 + x94 + x95 + x101 + x102 + x103 + x104 + x106 + x116 + x126 ++ x127 + x129 + x130 + x149 + x150 + x151 + x154 + x155 + x156 + x162 ++ x164 + x165 + x166 + x204 + x207 + x230 + x231 + x232 + x235 + x255 ++ x262 + x299 + x308 + x312 + x316 + x341 + x345 + x346 + x349 + x354 ++ x365 + x371 + x373 + x385 + x402 + x406 + x407 + x412 + x437 + x438 ++ x440 + x444 + x445 + x446 + x447 + x454 + x458 + x464 + x467 + x468 ++ x469 + x470 + x496 <= 1 + +x33 + x34 + x35 + x36 + x38 + x53 + x56 + x57 + x59 + x93 ++ x94 + x101 + x102 + x104 + x106 + x115 + x128 + x149 + x150 + x151 ++ x152 + x153 + x154 + x162 + x163 + x164 + x165 + x166 + x203 + x204 ++ x207 + x231 + x244 + x255 + x299 + x308 + x309 + x312 + x341 + x345 ++ x346 + x349 + x354 + x371 + x397 + x438 + x443 + x444 + x445 + x446 ++ x448 + x454 + x455 + x456 + x458 + x463 + x464 + x466 + x467 + x469 ++ x470 <= 1 + +x7 + x33 + x35 + x36 + x38 + x55 + x56 + x57 + x59 + x94 ++ x96 + x97 + x101 + x102 + x104 + x106 + x115 + x149 + x150 + x152 ++ x162 + x163 + x164 + x165 + x167 + x189 + x190 + x203 + x204 + x206 ++ x231 + x232 + x308 + x309 + x328 + x330 + x346 + x349 + x397 + x423 ++ x424 + x445 + x454 + x455 + x456 + x463 + x466 + x467 <= 1 + +x7 + x33 + x35 + x36 + x38 + x52 + x55 + x56 + x57 + x93 ++ x94 + x97 + x101 + x106 + x141 + x162 + x164 + x165 + x167 + x189 ++ x190 + x203 + x204 + x206 + x230 + x232 + x233 + x254 + x257 + x280 ++ x293 + x309 + x326 + x330 + x339 + x349 + x357 + x417 + x418 + x423 ++ x424 + x445 + x455 + x456 + x461 + x464 + x465 + x466 + x467 + x489 ++ x491 <= 1 + +x7 + x33 + x35 + x36 + x37 + x40 + x55 + x56 + x57 + x60 ++ x93 + x94 + x96 + x97 + x101 + x104 + x150 + x162 + x165 + x168 ++ x169 + x170 + x171 + x190 + x230 + x233 + x257 + x293 + x305 + x306 ++ x309 + x347 + x349 + x357 + x378 + x379 + x418 + x424 + x455 + x456 ++ x464 + x465 + x488 + x489 + x491 <= 1 + +x33 + x35 + x36 + x37 + x55 + x56 + x58 + x60 + x93 + x94 ++ x95 + x96 + x97 + x104 + x150 + x168 + x170 + x171 + x188 + x230 ++ x233 + x305 + x306 + x309 + x379 + x455 + x456 + x458 + x465 + x488 ++ x489 + x490 <= 1 + +x5 + x11 + x16 + x17 + x18 + x20 + x23 + x44 + x45 + x51 ++ x54 + x56 + x59 + x75 + x76 + x92 + x100 + x101 + x102 + x103 ++ x106 + x110 + x125 + x127 + x129 + x130 + x149 + x153 + x230 + x231 ++ x232 + x233 + x234 + x258 + x260 + x262 + x263 + x275 + x337 + x340 ++ x360 + x361 + x371 + x383 + x384 + x385 + x386 + x387 + x396 + x397 ++ x398 + x439 + x444 + x446 + x448 + x450 + x454 + x458 + x494 + x495 ++ x497 + x499 <= 1 + +x3 + x5 + x11 + x16 + x17 + x18 + x20 + x44 + x45 + x49 ++ x51 + x54 + x56 + x57 + x59 + x60 + x75 + x76 + x78 + x89 ++ x91 + x92 + x99 + x100 + x101 + x102 + x103 + x106 + x110 + x125 ++ x127 + x128 + x129 + x130 + x140 + x149 + x151 + x153 + x187 + x203 ++ x207 + x223 + x230 + x231 + x233 + x234 + x235 + x259 + x260 + x262 ++ x263 + x275 + x299 + x310 + x313 + x316 + x317 + x318 + x337 + x340 ++ x342 + x359 + x360 + x361 + x371 + x373 + x383 + x384 + x385 + x386 ++ x387 + x391 + x396 + x398 + x415 + x416 + x439 + x441 + x442 + x443 ++ x444 + x446 + x448 + x450 + x454 + x458 + x463 + x494 + x495 + x496 ++ x498 <= 1 + +x5 + x10 + x11 + x18 + x44 + x45 + x51 + x53 + x55 + x56 ++ x57 + x59 + x75 + x76 + x78 + x80 + x87 + x88 + x89 + x91 ++ x92 + x101 + x102 + x103 + x106 + x124 + x125 + x127 + x128 + x130 ++ x149 + x151 + x152 + x186 + x223 + x230 + x231 + x232 + x234 + x235 ++ x250 + x259 + x260 + x261 + x262 + x263 + x275 + x282 + x299 + x310 ++ x312 + x313 + x317 + x318 + x337 + x342 + x355 + x359 + x360 + x368 ++ x369 + x371 + x383 + x385 + x387 + x391 + x398 + x407 + x412 + x416 ++ x437 + x439 + x441 + x442 + x443 + x444 + x445 + x446 + x447 + x448 ++ x449 + x452 + x454 + x458 + x494 + x495 + x496 + x497 + x498 <= 1 + +x2 + x5 + x6 + x9 + x10 + x11 + x16 + x17 + x24 + x33 ++ x38 + x44 + x45 + x53 + x54 + x55 + x56 + x57 + x58 + x59 ++ x79 + x80 + x87 + x88 + x89 + x91 + x92 + x93 + x101 + x102 ++ x103 + x104 + x106 + x107 + x124 + x126 + x127 + x142 + x149 + x151 ++ x152 + x164 + x204 + x230 + x231 + x232 + x233 + x234 + x235 + x250 ++ x259 + x260 + x261 + x262 + x263 + x275 + x276 + x281 + x282 + x299 ++ x303 + x305 + x310 + x312 + x313 + x315 + x317 + x337 + x338 + x339 ++ x342 + x346 + x350 + x354 + x360 + x368 + x369 + x371 + x373 + x383 ++ x397 + x398 + x400 + x402 + x407 + x412 + x435 + x437 + x438 + x441 ++ x442 + x443 + x444 + x445 + x446 + x447 + x448 + x450 + x452 + x458 ++ x463 + x464 + x468 + x498 <= 1 + +x5 + x6 + x9 + x11 + x26 + x28 + x33 + x38 + x53 + x54 ++ x55 + x56 + x57 + x58 + x59 + x87 + x91 + x92 + x93 + x94 ++ x95 + x101 + x102 + x103 + x104 + x106 + x116 + x119 + x124 + x127 ++ x129 + x149 + x150 + x151 + x152 + x153 + x154 + x156 + x162 + x164 ++ x165 + x166 + x204 + x230 + x231 + x232 + x235 + x253 + x259 + x263 ++ x275 + x297 + x299 + x303 + x305 + x307 + x312 + x317 + x337 + x338 ++ x339 + x341 + x345 + x346 + x348 + x349 + x354 + x360 + x362 + x371 ++ x373 + x398 + x402 + x406 + x407 + x412 + x437 + x438 + x440 + x442 ++ x444 + x445 + x446 + x447 + x448 + x452 + x454 + x455 + x456 + x458 ++ x463 + x464 + x467 + x468 <= 1 + +x10 + x27 + x28 + x33 + x34 + x36 + x38 + x53 + x56 + x57 ++ x59 + x87 + x90 + x92 + x94 + x95 + x101 + x102 + x104 + x106 ++ x109 + x127 + x128 + x141 + x142 + x149 + x151 + x152 + x153 + x162 ++ x164 + x165 + x166 + x195 + x203 + x204 + x206 + x230 + x231 + x232 ++ x235 + x244 + x253 + x254 + x255 + x259 + x278 + x296 + x297 + x299 ++ x304 + x306 + x307 + x309 + x312 + x328 + x330 + x341 + x345 + x346 ++ x349 + x373 + x406 + x408 + x434 + x443 + x444 + x445 + x446 + x448 ++ x455 + x456 + x463 + x464 + x466 + x467 + x468 + x470 + x485 <= 1 + +x4 + x7 + x27 + x28 + x33 + x35 + x36 + x38 + x53 + x55 ++ x56 + x57 + x59 + x60 + x90 + x92 + x95 + x96 + x97 + x98 ++ x101 + x102 + x104 + x106 + x128 + x142 + x149 + x151 + x152 + x162 ++ x163 + x164 + x165 + x167 + x195 + x196 + x203 + x204 + x206 + x230 ++ x231 + x232 + x244 + x251 + x253 + x254 + x256 + x299 + x304 + x306 ++ x307 + x308 + x309 + x326 + x328 + x330 + x349 + x362 + x403 + x406 ++ x418 + x426 + x445 + x454 + x455 + x456 + x463 + x464 + x465 + x466 ++ x467 + x468 + x485 <= 1 + +x7 + x28 + x33 + x34 + x35 + x36 + x38 + x53 + x55 + x72 ++ x82 + x93 + x94 + x95 + x96 + x97 + x98 + x101 + x102 + x104 ++ x106 + x111 + x142 + x152 + x162 + x163 + x164 + x165 + x167 + x168 ++ x169 + x196 + x203 + x204 + x206 + x232 + x234 + x235 + x251 + x253 ++ x254 + x256 + x257 + x261 + x280 + x296 + x304 + x305 + x306 + x308 ++ x309 + x325 + x326 + x328 + x330 + x345 + x347 + x348 + x349 + x378 ++ x404 + x417 + x418 + x419 + x420 + x423 + x438 + x445 + x454 + x455 ++ x456 + x457 + x459 + x460 + x461 + x462 + x463 + x464 + x465 + x466 ++ x467 + x473 + x485 <= 1 + +x7 + x34 + x36 + x37 + x50 + x55 + x56 + x58 + x72 + x93 ++ x94 + x95 + x97 + x101 + x104 + x150 + x168 + x169 + x170 + x172 ++ x203 + x230 + x233 + x235 + x253 + x285 + x296 + x301 + x305 + x306 ++ x308 + x309 + x328 + x347 + x348 + x349 + x357 + x378 + x379 + x382 ++ x404 + x420 + x455 + x456 + x459 + x463 + x464 + x465 + x491 <= 1 + +x36 + x37 + x50 + x55 + x56 + x60 + x93 + x94 + x95 + x96 ++ x97 + x104 + x150 + x154 + x168 + x169 + x170 + x172 + x203 + x230 ++ x233 + x265 + x280 + x285 + x287 + x301 + x305 + x306 + x328 + x347 ++ x348 + x349 + x378 + x379 + x382 + x455 + x457 + x458 + x464 + x488 ++ x490 <= 1 + +x5 + x15 + x16 + x17 + x18 + x20 + x32 + x40 + x44 + x45 ++ x49 + x51 + x52 + x54 + x56 + x59 + x101 + x102 + x103 + x106 ++ x125 + x126 + x127 + x128 + x129 + x149 + x151 + x152 + x153 + x230 ++ x231 + x232 + x233 + x234 + x258 + x260 + x262 + x263 + x275 + x310 ++ x312 + x340 + x342 + x359 + x360 + x371 + x373 + x384 + x386 + x396 ++ x397 + x398 + x439 + x443 + x444 + x446 + x447 + x448 + x454 + x458 ++ x494 + x497 + x499 <= 1 + +x5 + x16 + x17 + x18 + x19 + x20 + x32 + x40 + x42 + x44 ++ x45 + x49 + x51 + x52 + x54 + x56 + x57 + x59 + x60 + x77 ++ x79 + x89 + x92 + x100 + x101 + x102 + x103 + x105 + x106 + x125 ++ x126 + x128 + x129 + x130 + x140 + x149 + x150 + x151 + x152 + x153 ++ x183 + x185 + x186 + x187 + x188 + x207 + x209 + x223 + x230 + x231 ++ x232 + x233 + x234 + x250 + x258 + x259 + x260 + x262 + x263 + x275 ++ x276 + x278 + x294 + x307 + x310 + x312 + x318 + x342 + x354 + x359 ++ x360 + x361 + x371 + x373 + x383 + x384 + x385 + x386 + x391 + x396 ++ x397 + x398 + x400 + x402 + x411 + x415 + x416 + x435 + x439 + x443 ++ x444 + x446 + x447 + x448 + x449 + x450 + x452 + x454 + x494 + x495 ++ x496 + x497 + x498 + x499 <= 1 + +x5 + x6 + x10 + x11 + x16 + x18 + x40 + x44 + x45 + x49 ++ x51 + x52 + x54 + x55 + x56 + x57 + x58 + x59 + x60 + x75 ++ x77 + x79 + x80 + x87 + x88 + x89 + x91 + x92 + x101 + x102 ++ x103 + x106 + x122 + x124 + x125 + x126 + x127 + x128 + x129 + x130 ++ x149 + x151 + x152 + x183 + x185 + x186 + x187 + x210 + x223 + x230 ++ x231 + x232 + x233 + x234 + x235 + x250 + x258 + x259 + x260 + x262 ++ x263 + x275 + x276 + x278 + x281 + x292 + x299 + x303 + x305 + x307 ++ x310 + x312 + x315 + x317 + x318 + x339 + x342 + x350 + x354 + x359 ++ x360 + x368 + x369 + x370 + x371 + x373 + x382 + x396 + x397 + x398 ++ x400 + x402 + x411 + x412 + x416 + x435 + x443 + x444 + x445 + x446 ++ x447 + x448 + x449 + x450 + x452 + x464 + x467 + x468 + x496 + x497 ++ x498 <= 1 + +x5 + x6 + x9 + x10 + x11 + x22 + x26 + x33 + x40 + x44 ++ x54 + x55 + x56 + x57 + x58 + x59 + x79 + x87 + x89 + x90 ++ x91 + x101 + x102 + x103 + x106 + x124 + x126 + x127 + x149 + x150 ++ x151 + x152 + x164 + x166 + x183 + x185 + x204 + x222 + x230 + x231 ++ x232 + x233 + x235 + x259 + x260 + x261 + x262 + x263 + x275 + x278 ++ x296 + x298 + x299 + x301 + x305 + x307 + x310 + x312 + x315 + x338 ++ x339 + x346 + x348 + x350 + x359 + x360 + x368 + x369 + x370 + x371 ++ x373 + x382 + x396 + x397 + x398 + x402 + x406 + x426 + x435 + x437 ++ x440 + x441 + x443 + x444 + x445 + x446 + x447 + x448 + x450 + x452 ++ x458 + x467 + x468 + x480 + x497 <= 1 + +x5 + x9 + x10 + x11 + x21 + x22 + x26 + x33 + x54 + x55 ++ x56 + x57 + x58 + x59 + x60 + x87 + x90 + x91 + x93 + x95 ++ x101 + x102 + x103 + x106 + x119 + x123 + x124 + x127 + x149 + x151 ++ x152 + x154 + x162 + x166 + x183 + x202 + x204 + x206 + x222 + x230 ++ x231 + x232 + x233 + x235 + x259 + x260 + x262 + x275 + x278 + x299 ++ x301 + x304 + x305 + x307 + x312 + x315 + x346 + x348 + x354 + x362 ++ x368 + x373 + x374 + x375 + x376 + x394 + x398 + x402 + x406 + x407 ++ x437 + x440 + x443 + x444 + x445 + x446 + x447 + x448 + x458 + x463 ++ x467 + x468 <= 1 + +x9 + x10 + x11 + x26 + x33 + x34 + x40 + x46 + x47 + x53 ++ x55 + x56 + x57 + x58 + x59 + x60 + x87 + x90 + x94 + x95 ++ x102 + x118 + x137 + x141 + x142 + x149 + x151 + x152 + x153 + x154 ++ x162 + x167 + x202 + x204 + x206 + x231 + x232 + x235 + x241 + x275 ++ x296 + x297 + x298 + x301 + x302 + x304 + x305 + x306 + x307 + x309 ++ x322 + x325 + x327 + x345 + x348 + x349 + x362 + x368 + x374 + x402 ++ x403 + x406 + x408 + x410 + x443 + x445 + x448 + x455 + x457 + x463 ++ x466 + x467 + x468 + x475 <= 1 + +x7 + x33 + x36 + x38 + x40 + x53 + x55 + x56 + x57 + x58 ++ x59 + x60 + x90 + x95 + x96 + x98 + x101 + x106 + x141 + x142 ++ x151 + x152 + x153 + x154 + x163 + x167 + x203 + x206 + x232 + x242 ++ x244 + x291 + x302 + x304 + x305 + x306 + x307 + x308 + x309 + x325 ++ x328 + x329 + x330 + x347 + x348 + x349 + x362 + x403 + x404 + x406 ++ x409 + x410 + x426 + x443 + x445 + x455 + x456 + x457 + x459 + x466 ++ x467 + x482 + x484 + x485 <= 1 + +x3 + x4 + x7 + x28 + x33 + x34 + x36 + x38 + x47 + x50 ++ x53 + x55 + x56 + x57 + x58 + x60 + x72 + x73 + x90 + x93 ++ x94 + x95 + x96 + x97 + x98 + x102 + x104 + x108 + x109 + x111 ++ x112 + x114 + x141 + x142 + x150 + x152 + x154 + x164 + x167 + x184 ++ x203 + x205 + x206 + x232 + x234 + x235 + x251 + x253 + x257 + x261 ++ x280 + x291 + x296 + x301 + x302 + x304 + x305 + x306 + x308 + x314 ++ x325 + x326 + x345 + x347 + x348 + x378 + x404 + x406 + x417 + x418 ++ x419 + x420 + x425 + x438 + x443 + x445 + x455 + x456 + x457 + x459 ++ x460 + x462 + x464 + x465 + x466 + x467 + x473 + x483 + x484 + x485 ++ x486 <= 1 + +x4 + x7 + x34 + x36 + x38 + x50 + x55 + x56 + x57 + x58 ++ x60 + x71 + x72 + x73 + x82 + x90 + x93 + x94 + x95 + x96 ++ x97 + x98 + x101 + x104 + x106 + x108 + x109 + x111 + x112 + x123 ++ x138 + x141 + x142 + x150 + x154 + x169 + x184 + x203 + x230 + x232 ++ x233 + x234 + x235 + x248 + x253 + x256 + x261 + x280 + x285 + x287 ++ x291 + x296 + x297 + x301 + x304 + x305 + x306 + x308 + x309 + x326 ++ x345 + x347 + x348 + x349 + x357 + x364 + x377 + x378 + x379 + x382 ++ x403 + x404 + x406 + x418 + x419 + x420 + x438 + x454 + x455 + x456 ++ x457 + x459 + x460 + x461 + x465 + x466 + x483 + x484 + x485 + x486 + <= 1 + +x4 + x7 + x20 + x34 + x36 + x37 + x38 + x44 + x55 + x56 ++ x60 + x93 + x94 + x95 + x96 + x97 + x98 + x104 + x106 + x112 ++ x141 + x142 + x154 + x170 + x172 + x203 + x233 + x248 + x253 + x280 ++ x283 + x285 + x286 + x287 + x288 + x299 + x301 + x305 + x306 + x308 ++ x309 + x347 + x349 + x357 + x364 + x377 + x379 + x382 + x455 + x456 ++ x457 + x486 + x490 <= 1 + +x5 + x14 + x15 + x16 + x17 + x18 + x19 + x20 + x27 + x29 ++ x32 + x45 + x49 + x51 + x54 + x56 + x59 + x65 + x66 + x103 ++ x106 + x128 + x130 + x149 + x151 + x152 + x153 + x230 + x232 + x233 ++ x234 + x258 + x263 + x271 + x292 + x298 + x310 + x360 + x386 + x395 ++ x396 + x397 + x411 + x416 + x444 + x447 + x448 + x454 + x458 + x494 + <= 1 + +x15 + x16 + x17 + x18 + x19 + x20 + x27 + x29 + x30 + x32 ++ x40 + x42 + x44 + x45 + x49 + x51 + x52 + x54 + x56 + x57 ++ x58 + x59 + x60 + x66 + x77 + x79 + x88 + x89 + x101 + x103 ++ x105 + x106 + x118 + x125 + x126 + x127 + x128 + x129 + x130 + x132 ++ x138 + x139 + x140 + x149 + x150 + x152 + x186 + x188 + x201 + x207 ++ x208 + x209 + x210 + x230 + x231 + x232 + x233 + x234 + x250 + x258 ++ x259 + x260 + x263 + x275 + x292 + x294 + x298 + x307 + x310 + x312 ++ x358 + x360 + x361 + x369 + x370 + x373 + x384 + x385 + x396 + x397 ++ x398 + x399 + x400 + x402 + x411 + x414 + x415 + x416 + x421 + x443 ++ x444 + x446 + x447 + x448 + x466 + x472 + x494 + x495 + x497 + x499 + <= 1 + +x11 + x17 + x18 + x40 + x42 + x44 + x45 + x49 + x51 + x52 ++ x54 + x55 + x56 + x57 + x58 + x59 + x60 + x75 + x77 + x87 ++ x88 + x89 + x91 + x101 + x102 + x103 + x106 + x118 + x122 + x125 ++ x126 + x127 + x128 + x129 + x130 + x132 + x137 + x149 + x152 + x154 ++ x183 + x184 + x185 + x186 + x204 + x209 + x210 + x218 + x223 + x230 ++ x231 + x232 + x233 + x234 + x250 + x258 + x259 + x262 + x263 + x275 ++ x276 + x278 + x290 + x292 + x294 + x296 + x301 + x303 + x307 + x312 ++ x318 + x350 + x360 + x368 + x369 + x370 + x384 + x397 + x398 + x400 ++ x405 + x411 + x412 + x415 + x416 + x421 + x447 + x452 + x466 + x495 ++ x496 + x497 + x498 + x499 <= 1 + +x6 + x9 + x10 + x11 + x21 + x22 + x23 + x26 + x33 + x35 ++ x40 + x44 + x46 + x55 + x56 + x57 + x58 + x59 + x87 + x91 ++ x101 + x102 + x106 + x118 + x123 + x124 + x126 + x136 + x149 + x151 ++ x152 + x154 + x185 + x202 + x204 + x222 + x230 + x232 + x233 + x235 ++ x259 + x262 + x275 + x276 + x278 + x290 + x294 + x295 + x296 + x299 ++ x301 + x305 + x306 + x307 + x312 + x339 + x348 + x360 + x362 + x368 ++ x369 + x371 + x373 + x402 + x406 + x407 + x426 + x441 + x443 + x446 ++ x450 + x468 + x499 <= 1 + +x6 + x10 + x11 + x33 + x34 + x40 + x42 + x43 + x46 + x52 ++ x54 + x55 + x56 + x57 + x58 + x59 + x60 + x69 + x87 + x91 ++ x95 + x97 + x101 + x106 + x109 + x111 + x118 + x123 + x136 + x137 ++ x141 + x152 + x153 + x154 + x202 + x204 + x221 + x230 + x231 + x232 ++ x233 + x235 + x259 + x275 + x276 + x278 + x290 + x294 + x296 + x299 ++ x301 + x302 + x305 + x306 + x307 + x320 + x322 + x327 + x345 + x362 ++ x369 + x371 + x374 + x375 + x376 + x394 + x402 + x406 + x407 + x409 ++ x426 + x468 <= 1 + +x16 + x33 + x34 + x40 + x46 + x47 + x53 + x54 + x55 + x56 ++ x57 + x58 + x59 + x60 + x69 + x73 + x87 + x90 + x95 + x97 ++ x108 + x114 + x118 + x133 + x137 + x141 + x142 + x152 + x153 + x202 ++ x232 + x234 + x235 + x258 + x276 + x278 + x290 + x294 + x296 + x298 ++ x301 + x302 + x304 + x305 + x306 + x307 + x321 + x322 + x325 + x327 ++ x345 + x348 + x349 + x362 + x375 + x387 + x402 + x403 + x404 + x406 ++ x408 + x409 + x426 + x457 + x468 + x475 + x483 + x484 <= 1 + +x3 + x4 + x6 + x7 + x14 + x33 + x34 + x40 + x47 + x50 ++ x53 + x55 + x56 + x57 + x58 + x59 + x60 + x90 + x93 + x95 ++ x97 + x98 + x101 + x108 + x111 + x114 + x141 + x142 + x151 + x153 ++ x154 + x167 + x184 + x203 + x205 + x206 + x232 + x234 + x235 + x241 ++ x244 + x251 + x278 + x286 + x290 + x291 + x293 + x296 + x298 + x301 ++ x302 + x304 + x305 + x306 + x308 + x325 + x327 + x329 + x345 + x347 ++ x348 + x362 + x366 + x378 + x380 + x401 + x403 + x404 + x406 + x408 ++ x409 + x410 + x419 + x425 + x426 + x443 + x456 + x457 + x459 + x462 ++ x473 + x477 + x482 + x483 + x484 + x485 + x486 <= 1 + +x3 + x4 + x7 + x34 + x38 + x50 + x53 + x55 + x56 + x57 ++ x58 + x60 + x71 + x72 + x73 + x82 + x90 + x93 + x94 + x95 ++ x96 + x97 + x98 + x102 + x104 + x106 + x108 + x111 + x114 + x123 ++ x134 + x138 + x141 + x142 + x154 + x167 + x203 + x205 + x206 + x234 ++ x235 + x244 + x248 + x251 + x253 + x256 + x261 + x285 + x287 + x291 ++ x296 + x297 + x300 + x301 + x304 + x305 + x306 + x309 + x326 + x345 ++ x347 + x348 + x349 + x357 + x364 + x380 + x384 + x403 + x404 + x406 ++ x419 + x443 + x456 + x457 + x459 + x472 + x473 + x477 + x482 + x483 ++ x484 + x485 + x486 <= 1 + +x4 + x34 + x36 + x55 + x56 + x60 + x71 + x72 + x82 + x90 ++ x93 + x95 + x96 + x97 + x98 + x104 + x106 + x107 + x111 + x123 ++ x138 + x142 + x154 + x203 + x205 + x253 + x280 + x285 + x287 + x291 ++ x296 + x300 + x301 + x304 + x306 + x326 + x363 + x364 + x367 + x377 ++ x379 + x380 + x419 + x429 + x455 + x456 + x457 + x459 + x465 + x482 ++ x483 + x484 + x486 <= 1 + +x4 + x20 + x36 + x55 + x56 + x60 + x85 + x92 + x96 + x111 ++ x112 + x160 + x172 + x233 + x235 + x248 + x253 + x283 + x286 + x287 ++ x288 + x292 + x301 + x304 + x305 + x306 + x332 + x346 + x347 + x350 ++ x367 + x377 + x382 + x457 + x465 <= 1 + +x5 + x14 + x15 + x16 + x17 + x19 + x27 + x29 + x30 + x31 ++ x32 + x40 + x45 + x49 + x51 + x52 + x54 + x58 + x59 + x60 ++ x65 + x66 + x103 + x105 + x106 + x125 + x127 + x129 + x130 + x139 ++ x140 + x150 + x153 + x186 + x188 + x190 + x228 + x230 + x232 + x233 ++ x234 + x235 + x258 + x263 + x271 + x272 + x295 + x298 + x302 + x310 ++ x357 + x360 + x361 + x386 + x395 + x396 + x397 + x399 + x411 + x413 ++ x414 + x415 + x416 + x421 + x444 + x447 + x448 + x454 <= 1 + +x15 + x16 + x17 + x18 + x19 + x27 + x29 + x31 + x32 + x40 ++ x45 + x49 + x51 + x52 + x54 + x55 + x58 + x59 + x60 + x88 ++ x89 + x103 + x105 + x106 + x125 + x129 + x130 + x138 + x140 + x148 ++ x149 + x150 + x152 + x153 + x187 + x188 + x199 + x201 + x208 + x210 ++ x212 + x213 + x215 + x226 + x228 + x234 + x258 + x263 + x288 + x292 ++ x295 + x298 + x302 + x310 + x357 + x358 + x360 + x361 + x373 + x395 ++ x396 + x397 + x398 + x399 + x413 + x415 + x421 + x422 + x446 + x447 ++ x448 + x454 <= 1 + +x17 + x18 + x19 + x40 + x42 + x44 + x45 + x54 + x55 + x56 ++ x57 + x58 + x59 + x60 + x77 + x87 + x88 + x89 + x106 + x118 ++ x122 + x125 + x126 + x131 + x132 + x137 + x149 + x152 + x154 + x185 ++ x204 + x210 + x218 + x221 + x232 + x233 + x235 + x250 + x258 + x259 ++ x275 + x276 + x278 + x290 + x294 + x295 + x296 + x301 + x312 + x320 ++ x338 + x350 + x360 + x368 + x369 + x370 + x398 + x405 + x411 + x412 ++ x415 + x416 + x495 + x496 + x499 <= 1 + +x6 + x19 + x21 + x22 + x23 + x26 + x40 + x41 + x42 + x44 ++ x49 + x52 + x54 + x55 + x56 + x57 + x58 + x59 + x69 + x91 ++ x103 + x106 + x118 + x124 + x126 + x131 + x132 + x136 + x137 + x154 ++ x202 + x204 + x210 + x218 + x221 + x222 + x230 + x232 + x233 + x235 ++ x240 + x275 + x276 + x278 + x290 + x294 + x295 + x296 + x297 + x299 ++ x301 + x302 + x306 + x320 + x354 + x368 + x369 + x370 + x373 + x394 ++ x402 + x405 + x407 + x412 + x499 <= 1 + +x3 + x10 + x11 + x21 + x22 + x23 + x42 + x43 + x49 + x50 ++ x52 + x53 + x54 + x55 + x56 + x57 + x58 + x59 + x60 + x69 ++ x73 + x106 + x109 + x111 + x118 + x122 + x126 + x131 + x132 + x133 ++ x136 + x137 + x153 + x154 + x202 + x203 + x204 + x220 + x221 + x222 ++ x230 + x232 + x233 + x235 + x259 + x275 + x276 + x290 + x294 + x295 ++ x296 + x297 + x299 + x301 + x302 + x305 + x306 + x308 + x320 + x321 ++ x323 + x327 + x345 + x369 + x370 + x376 + x393 + x394 + x402 + x404 ++ x405 + x406 + x407 + x459 + x468 + x499 <= 1 + +x3 + x6 + x16 + x22 + x23 + x24 + x34 + x40 + x41 + x43 ++ x49 + x50 + x52 + x53 + x54 + x55 + x56 + x57 + x58 + x59 ++ x60 + x69 + x71 + x73 + x95 + x98 + x106 + x109 + x111 + x118 ++ x126 + x131 + x133 + x134 + x136 + x137 + x142 + x153 + x202 + x203 ++ x204 + x205 + x231 + x236 + x239 + x241 + x249 + x259 + x275 + x276 ++ x278 + x290 + x296 + x297 + x298 + x299 + x301 + x302 + x304 + x305 ++ x320 + x321 + x322 + x323 + x327 + x329 + x362 + x390 + x391 + x393 ++ x394 + x402 + x403 + x404 + x405 + x406 + x457 + x459 + x475 + x476 ++ x477 <= 1 + +x3 + x6 + x14 + x34 + x40 + x49 + x50 + x52 + x53 + x54 ++ x55 + x56 + x57 + x58 + x60 + x70 + x71 + x72 + x73 + x90 ++ x97 + x98 + x106 + x107 + x109 + x111 + x115 + x126 + x136 + x137 ++ x139 + x141 + x142 + x151 + x153 + x154 + x202 + x203 + x204 + x205 ++ x206 + x207 + x234 + x235 + x236 + x238 + x239 + x241 + x259 + x276 ++ x278 + x279 + x290 + x291 + x293 + x296 + x297 + x298 + x301 + x304 ++ x306 + x321 + x325 + x329 + x345 + x347 + x350 + x362 + x366 + x391 ++ x402 + x403 + x404 + x405 + x407 + x410 + x425 + x457 + x459 + x472 ++ x474 + x475 + x477 + x483 + x485 <= 1 + +x3 + x4 + x6 + x7 + x34 + x50 + x53 + x55 + x56 + x57 ++ x58 + x59 + x60 + x70 + x71 + x72 + x90 + x93 + x94 + x95 ++ x97 + x98 + x107 + x108 + x109 + x111 + x134 + x141 + x142 + x151 ++ x154 + x167 + x202 + x205 + x206 + x207 + x234 + x241 + x248 + x249 ++ x251 + x261 + x276 + x278 + x279 + x286 + x288 + x291 + x293 + x296 ++ x297 + x298 + x301 + x304 + x305 + x345 + x347 + x348 + x350 + x362 ++ x366 + x380 + x384 + x401 + x402 + x403 + x404 + x406 + x407 + x427 ++ x429 + x430 + x457 + x459 + x472 + x473 + x477 + x482 + x483 + x484 ++ x486 + x487 <= 1 + +x4 + x20 + x34 + x52 + x53 + x55 + x57 + x60 + x81 + x82 ++ x85 + x86 + x95 + x96 + x97 + x98 + x104 + x107 + x111 + x112 ++ x123 + x138 + x154 + x209 + x224 + x248 + x253 + x285 + x286 + x288 ++ x296 + x300 + x301 + x302 + x304 + x306 + x338 + x350 + x358 + x363 ++ x364 + x365 + x367 + x377 + x380 + x381 + x387 + x429 + x457 + x465 ++ x482 + x483 + x486 <= 1 + +x4 + x20 + x36 + x43 + x50 + x53 + x55 + x60 + x81 + x82 ++ x83 + x85 + x86 + x96 + x98 + x104 + x107 + x109 + x111 + x112 ++ x138 + x171 + x172 + x202 + x209 + x248 + x249 + x253 + x283 + x285 ++ x286 + x287 + x288 + x292 + x304 + x306 + x332 + x338 + x350 + x358 ++ x363 + x364 + x365 + x367 + x377 + x381 + x429 + x465 + x486 <= 1 + +x16 + x19 + x27 + x29 + x30 + x31 + x32 + x45 + x48 + x49 ++ x50 + x51 + x52 + x54 + x58 + x59 + x60 + x65 + x66 + x88 ++ x97 + x102 + x103 + x105 + x106 + x117 + x137 + x138 + x139 + x140 ++ x150 + x153 + x200 + x213 + x217 + x228 + x229 + x234 + x235 + x258 ++ x261 + x263 + x271 + x272 + x277 + x280 + x290 + x294 + x295 + x297 ++ x298 + x302 + x310 + x311 + x357 + x360 + x361 + x386 + x393 + x395 ++ x397 + x399 + x400 + x411 + x414 + x415 + x417 + x421 + x432 + x447 + <= 1 + +x15 + x16 + x18 + x19 + x27 + x28 + x29 + x30 + x31 + x32 ++ x41 + x45 + x49 + x50 + x51 + x52 + x54 + x55 + x56 + x58 ++ x59 + x60 + x64 + x65 + x74 + x88 + x102 + x103 + x105 + x106 ++ x137 + x138 + x139 + x140 + x143 + x150 + x153 + x183 + x188 + x199 ++ x200 + x208 + x211 + x212 + x213 + x214 + x215 + x216 + x226 + x227 ++ x229 + x231 + x234 + x235 + x258 + x263 + x267 + x270 + x272 + x288 ++ x292 + x294 + x295 + x297 + x299 + x302 + x303 + x310 + x319 + x324 ++ x352 + x357 + x358 + x359 + x360 + x361 + x392 + x393 + x395 + x396 ++ x397 + x400 + x404 + x413 + x414 + x417 + x421 + x422 <= 1 + +x15 + x19 + x27 + x28 + x29 + x30 + x31 + x41 + x49 + x50 ++ x51 + x54 + x55 + x56 + x58 + x59 + x64 + x74 + x88 + x103 ++ x105 + x137 + x139 + x140 + x150 + x192 + x204 + x208 + x211 + x212 ++ x220 + x227 + x235 + x258 + x275 + x276 + x277 + x294 + x295 + x297 ++ x299 + x302 + x303 + x319 + x321 + x322 + x324 + x352 + x357 + x360 ++ x361 + x392 + x393 + x395 + x396 + x397 + x404 + x422 + x492 + x493 + <= 1 + +x15 + x19 + x24 + x25 + x31 + x41 + x42 + x43 + x49 + x51 ++ x54 + x55 + x56 + x57 + x58 + x59 + x60 + x69 + x74 + x113 ++ x118 + x122 + x132 + x137 + x139 + x140 + x192 + x204 + x205 + x211 ++ x220 + x227 + x235 + x245 + x252 + x258 + x275 + x276 + x277 + x278 ++ x294 + x295 + x297 + x299 + x302 + x303 + x308 + x319 + x320 + x321 ++ x322 + x323 + x324 + x357 + x359 + x361 + x370 + x393 + x394 + x395 ++ x396 + x397 + x400 + x404 + x405 + x422 + x492 <= 1 + +x8 + x19 + x21 + x23 + x24 + x25 + x31 + x41 + x42 + x43 ++ x44 + x49 + x54 + x55 + x56 + x57 + x58 + x59 + x60 + x69 ++ x70 + x73 + x74 + x103 + x106 + x109 + x118 + x122 + x131 + x132 ++ x133 + x134 + x136 + x137 + x191 + x202 + x204 + x218 + x220 + x230 ++ x232 + x233 + x235 + x240 + x245 + x252 + x258 + x275 + x276 + x277 ++ x278 + x290 + x294 + x295 + x296 + x297 + x299 + x301 + x302 + x308 ++ x319 + x320 + x321 + x322 + x323 + x324 + x345 + x359 + x369 + x370 ++ x391 + x393 + x394 + x396 + x402 + x404 + x405 + x407 + x422 + x453 ++ x459 + x468 <= 1 + +x3 + x6 + x8 + x24 + x25 + x40 + x41 + x42 + x43 + x49 ++ x50 + x51 + x52 + x53 + x54 + x55 + x56 + x57 + x58 + x59 ++ x60 + x69 + x70 + x71 + x73 + x86 + x104 + x108 + x109 + x122 ++ x131 + x132 + x133 + x134 + x135 + x136 + x137 + x139 + x184 + x194 ++ x230 + x231 + x232 + x233 + x235 + x236 + x237 + x238 + x239 + x240 ++ x249 + x259 + x260 + x275 + x276 + x278 + x291 + x295 + x296 + x297 ++ x299 + x300 + x302 + x320 + x321 + x322 + x323 + x327 + x329 + x347 ++ x350 + x362 + x370 + x381 + x389 + x390 + x391 + x394 + x398 + x402 ++ x403 + x404 + x405 + x407 + x427 + x474 + x475 + x476 <= 1 + +x3 + x6 + x8 + x25 + x41 + x42 + x43 + x49 + x50 + x52 ++ x53 + x54 + x55 + x56 + x57 + x58 + x59 + x60 + x69 + x70 ++ x71 + x72 + x73 + x84 + x86 + x93 + x97 + x98 + x105 + x107 ++ x108 + x109 + x110 + x111 + x115 + x131 + x133 + x134 + x136 + x139 ++ x141 + x142 + x184 + x194 + x202 + x203 + x207 + x230 + x231 + x232 ++ x233 + x234 + x236 + x238 + x248 + x249 + x259 + x276 + x279 + x290 ++ x291 + x292 + x296 + x297 + x298 + x300 + x301 + x304 + x321 + x333 ++ x336 + x347 + x350 + x357 + x362 + x363 + x370 + x381 + x391 + x403 ++ x406 + x407 + x425 + x427 + x459 + x472 + x474 + x476 + x477 <= 1 + +x3 + x6 + x7 + x49 + x50 + x52 + x53 + x55 + x56 + x57 ++ x58 + x59 + x60 + x81 + x83 + x84 + x85 + x86 + x93 + x98 ++ x104 + x105 + x107 + x109 + x111 + x115 + x134 + x139 + x154 + x167 ++ x177 + x202 + x203 + x205 + x206 + x207 + x233 + x234 + x248 + x249 ++ x261 + x280 + x283 + x284 + x286 + x288 + x289 + x291 + x293 + x298 ++ x299 + x300 + x301 + x302 + x304 + x332 + x333 + x334 + x336 + x345 ++ x347 + x348 + x350 + x356 + x358 + x362 + x363 + x366 + x367 + x380 ++ x381 + x391 + x399 + x403 + x406 + x407 + x425 + x427 + x429 + x430 ++ x457 + x459 + x472 + x473 + x474 + x476 + x482 + x484 + x487 <= 1 + +x3 + x6 + x7 + x12 + x20 + x36 + x50 + x52 + x53 + x55 ++ x57 + x60 + x81 + x82 + x83 + x85 + x86 + x93 + x98 + x104 ++ x105 + x107 + x109 + x111 + x112 + x138 + x139 + x154 + x171 + x177 ++ x178 + x224 + x225 + x248 + x249 + x253 + x261 + x283 + x284 + x286 ++ x287 + x288 + x291 + x292 + x293 + x300 + x302 + x304 + x306 + x332 ++ x334 + x347 + x348 + x350 + x358 + x363 + x367 + x377 + x380 + x381 ++ x391 + x399 + x403 + x429 + x482 + x487 <= 1 + +x9 + x12 + x13 + x20 + x53 + x55 + x60 + x81 + x85 + x86 ++ x104 + x107 + x109 + x111 + x112 + x119 + x124 + x138 + x171 + x178 ++ x189 + x202 + x225 + x248 + x249 + x261 + x283 + x284 + x285 + x286 ++ x287 + x289 + x292 + x293 + x295 + x296 + x297 + x300 + x302 + x304 ++ x305 + x306 + x332 + x334 + x381 + x399 + x465 + x487 <= 1 + +x15 + x19 + x27 + x28 + x29 + x30 + x31 + x45 + x49 + x50 ++ x51 + x52 + x54 + x58 + x59 + x60 + x63 + x65 + x66 + x78 ++ x102 + x103 + x105 + x138 + x140 + x150 + x153 + x208 + x211 + x212 ++ x213 + x216 + x217 + x221 + x258 + x261 + x274 + x276 + x277 + x280 ++ x310 + x350 + x357 + x360 + x361 + x393 + x395 + x397 + x399 + x414 ++ x417 + x432 + x435 + x447 <= 1 + +x10 + x15 + x18 + x28 + x29 + x30 + x31 + x32 + x41 + x45 ++ x49 + x50 + x51 + x52 + x54 + x58 + x59 + x60 + x63 + x64 ++ x65 + x66 + x88 + x103 + x105 + x113 + x117 + x121 + x137 + x138 ++ x139 + x140 + x141 + x146 + x150 + x153 + x208 + x211 + x212 + x213 ++ x214 + x216 + x217 + x228 + x258 + x263 + x270 + x271 + x272 + x274 ++ x276 + x277 + x280 + x294 + x295 + x298 + x302 + x303 + x310 + x311 ++ x357 + x358 + x359 + x360 + x361 + x393 + x395 + x396 + x397 + x399 ++ x413 + x414 + x415 + x431 + x432 + x435 + x436 + x447 <= 1 + +x15 + x19 + x28 + x29 + x30 + x41 + x42 + x45 + x49 + x50 ++ x51 + x52 + x54 + x55 + x56 + x57 + x58 + x59 + x64 + x74 ++ x88 + x102 + x103 + x105 + x106 + x113 + x138 + x139 + x140 + x150 ++ x204 + x205 + x214 + x215 + x226 + x227 + x229 + x258 + x267 + x276 ++ x277 + x294 + x295 + x297 + x303 + x319 + x322 + x324 + x352 + x357 ++ x359 + x360 + x361 + x392 + x393 + x395 + x396 + x397 + x400 + x422 ++ x466 + x493 <= 1 + +x15 + x24 + x25 + x41 + x42 + x49 + x50 + x51 + x54 + x55 ++ x56 + x57 + x58 + x88 + x102 + x103 + x105 + x113 + x115 + x118 ++ x119 + x122 + x132 + x145 + x150 + x192 + x204 + x205 + x226 + x229 ++ x252 + x258 + x275 + x276 + x277 + x279 + x294 + x295 + x297 + x299 ++ x301 + x303 + x311 + x319 + x324 + x357 + x359 + x361 + x389 + x392 ++ x395 + x396 + x397 + x398 + x400 + x405 + x420 + x451 + x453 <= 1 + +x8 + x15 + x19 + x21 + x25 + x42 + x43 + x49 + x52 + x53 ++ x54 + x55 + x57 + x58 + x74 + x103 + x105 + x106 + x118 + x119 ++ x121 + x122 + x123 + x131 + x132 + x137 + x204 + x218 + x219 + x220 ++ x252 + x276 + x277 + x278 + x294 + x295 + x297 + x301 + x323 + x359 ++ x361 + x369 + x370 + x392 + x394 + x395 + x397 + x404 + x405 + x451 ++ x453 <= 1 + +x3 + x8 + x41 + x42 + x43 + x44 + x49 + x50 + x51 + x52 ++ x53 + x54 + x55 + x56 + x57 + x58 + x59 + x60 + x69 + x70 ++ x74 + x98 + x104 + x115 + x118 + x121 + x122 + x131 + x132 + x133 ++ x134 + x135 + x136 + x137 + x163 + x176 + x191 + x193 + x194 + x205 ++ x206 + x207 + x230 + x231 + x232 + x233 + x234 + x235 + x237 + x240 ++ x245 + x247 + x259 + x260 + x275 + x276 + x277 + x279 + x280 + x290 ++ x291 + x295 + x296 + x297 + x299 + x300 + x308 + x319 + x320 + x321 ++ x322 + x323 + x324 + x329 + x358 + x362 + x369 + x370 + x389 + x390 ++ x391 + x394 + x396 + x398 + x403 + x404 + x405 + x407 + x427 + x475 + <= 1 + +x3 + x8 + x13 + x42 + x43 + x49 + x51 + x52 + x53 + x54 ++ x55 + x56 + x57 + x58 + x60 + x70 + x71 + x72 + x89 + x98 ++ x101 + x104 + x105 + x107 + x108 + x109 + x110 + x111 + x120 + x121 ++ x131 + x133 + x135 + x153 + x163 + x176 + x193 + x194 + x202 + x205 ++ x207 + x230 + x232 + x233 + x234 + x236 + x237 + x238 + x240 + x260 ++ x275 + x276 + x277 + x279 + x280 + x289 + x290 + x291 + x292 + x295 ++ x297 + x298 + x300 + x308 + x309 + x319 + x320 + x321 + x336 + x350 ++ x356 + x357 + x358 + x362 + x390 + x391 + x394 + x396 + x398 + x399 ++ x403 + x404 + x405 + x407 + x427 + x428 + x474 + x487 <= 1 + +x12 + x13 + x43 + x51 + x52 + x53 + x55 + x58 + x60 + x61 ++ x71 + x83 + x101 + x104 + x105 + x107 + x108 + x112 + x119 + x123 ++ x138 + x163 + x176 + x177 + x189 + x190 + x191 + x193 + x194 + x202 ++ x206 + x207 + x234 + x237 + x261 + x279 + x280 + x289 + x291 + x292 ++ x295 + x297 + x298 + x299 + x300 + x302 + x304 + x320 + x331 + x336 ++ x351 + x354 + x355 + x356 + x358 + x362 + x390 + x391 + x394 + x396 ++ x399 + x403 + x425 + x428 + x430 + x447 + x474 + x487 <= 1 + +x7 + x13 + x37 + x43 + x52 + x53 + x55 + x57 + x58 + x59 ++ x60 + x81 + x83 + x84 + x98 + x101 + x104 + x105 + x107 + x108 ++ x109 + x110 + x112 + x119 + x123 + x134 + x138 + x139 + x153 + x154 ++ x159 + x173 + x176 + x177 + x178 + x189 + x191 + x192 + x193 + x194 ++ x202 + x203 + x205 + x206 + x207 + x234 + x249 + x261 + x279 + x280 ++ x284 + x289 + x291 + x292 + x293 + x295 + x297 + x298 + x300 + x302 ++ x304 + x331 + x332 + x333 + x334 + x336 + x355 + x356 + x358 + x362 ++ x390 + x391 + x399 + x425 + x427 + x428 + x429 + x430 + x476 + x482 ++ x487 <= 1 + +x9 + x12 + x13 + x14 + x20 + x37 + x43 + x52 + x53 + x55 ++ x58 + x60 + x101 + x104 + x105 + x107 + x110 + x112 + x119 + x120 ++ x122 + x123 + x138 + x154 + x158 + x176 + x178 + x189 + x191 + x192 ++ x194 + x202 + x203 + x206 + x248 + x249 + x261 + x278 + x279 + x280 ++ x283 + x284 + x289 + x292 + x293 + x295 + x296 + x297 + x300 + x304 ++ x305 + x306 + x331 + x332 + x334 + x358 + x372 + x399 + x430 + x465 ++ x476 + x487 <= 1 + +x0 + x10 + x35 + x49 + x50 + x51 + x64 + x68 + x96 + x103 ++ x105 + x113 + x114 + x115 + x116 + x117 + x120 + x121 + x140 + x141 ++ x144 + x146 + x147 + x179 + x180 + x205 + x207 + x268 + x274 + x276 ++ x277 + x303 + x358 + x359 + x360 + x366 + x393 + x395 + x400 + x414 ++ x431 + x432 + x433 + x436 <= 1 + +x0 + x2 + x10 + x15 + x31 + x32 + x35 + x49 + x50 + x51 ++ x57 + x59 + x60 + x63 + x64 + x65 + x66 + x68 + x96 + x101 ++ x103 + x105 + x113 + x114 + x115 + x116 + x117 + x121 + x140 + x141 ++ x146 + x147 + x150 + x179 + x205 + x207 + x211 + x212 + x213 + x270 ++ x273 + x274 + x275 + x276 + x277 + x278 + x279 + x280 + x303 + x310 ++ x311 + x357 + x358 + x359 + x360 + x361 + x372 + x389 + x393 + x395 ++ x400 + x414 + x431 + x432 + x433 + x435 + x436 + x447 <= 1 + +x10 + x35 + x49 + x50 + x51 + x52 + x56 + x57 + x58 + x59 ++ x60 + x64 + x96 + x101 + x102 + x103 + x105 + x113 + x114 + x115 ++ x117 + x121 + x145 + x150 + x198 + x203 + x205 + x207 + x235 + x239 ++ x250 + x252 + x264 + x267 + x270 + x273 + x275 + x276 + x277 + x278 ++ x279 + x295 + x303 + x311 + x319 + x323 + x324 + x357 + x359 + x361 ++ x372 + x389 + x393 + x395 + x396 + x400 + x431 + x432 + x433 + x434 ++ x441 <= 1 + +x8 + x35 + x49 + x50 + x51 + x52 + x56 + x57 + x58 + x59 ++ x88 + x96 + x101 + x102 + x103 + x105 + x113 + x114 + x115 + x119 ++ x122 + x145 + x150 + x187 + x203 + x205 + x250 + x252 + x264 + x265 ++ x266 + x267 + x275 + x276 + x277 + x279 + x295 + x303 + x311 + x319 ++ x323 + x324 + x357 + x359 + x361 + x389 + x395 + x398 + x400 + x420 ++ x432 + x479 <= 1 + +x12 + x41 + x42 + x51 + x52 + x53 + x54 + x55 + x57 + x74 ++ x105 + x118 + x119 + x121 + x122 + x123 + x131 + x134 + x204 + x219 ++ x231 + x233 + x245 + x276 + x277 + x280 + x294 + x295 + x297 + x300 ++ x357 + x370 + x389 + x390 + x394 + x405 + x443 + x451 + x453 <= 1 + +x8 + x12 + x41 + x42 + x49 + x50 + x51 + x52 + x53 + x54 ++ x57 + x74 + x98 + x102 + x103 + x105 + x108 + x110 + x112 + x119 ++ x120 + x121 + x122 + x123 + x131 + x132 + x133 + x134 + x135 + x136 ++ x145 + x166 + x193 + x194 + x203 + x205 + x206 + x207 + x219 + x231 ++ x232 + x233 + x234 + x235 + x237 + x242 + x245 + x247 + x260 + x275 ++ x276 + x277 + x279 + x280 + x289 + x294 + x295 + x300 + x323 + x353 ++ x355 + x356 + x357 + x358 + x370 + x388 + x389 + x390 + x394 + x398 ++ x400 + x405 + x428 + x449 + x451 + x453 + x481 <= 1 + +x3 + x8 + x12 + x13 + x42 + x49 + x51 + x52 + x53 + x54 ++ x55 + x57 + x58 + x60 + x62 + x70 + x98 + x102 + x104 + x105 ++ x108 + x110 + x117 + x119 + x120 + x121 + x122 + x123 + x131 + x133 ++ x134 + x135 + x163 + x166 + x190 + x193 + x194 + x203 + x205 + x206 ++ x207 + x230 + x231 + x232 + x233 + x234 + x235 + x238 + x247 + x251 ++ x260 + x263 + x275 + x276 + x277 + x278 + x279 + x280 + x289 + x290 ++ x291 + x292 + x300 + x309 + x331 + x334 + x353 + x354 + x355 + x356 ++ x357 + x358 + x362 + x388 + x389 + x390 + x391 + x392 + x394 + x398 ++ x399 + x400 + x403 + x405 + x428 + x449 + x451 + x453 + x481 <= 1 + +x4 + x8 + x9 + x12 + x13 + x43 + x51 + x52 + x53 + x55 ++ x58 + x60 + x61 + x62 + x104 + x105 + x107 + x108 + x110 + x112 ++ x119 + x120 + x121 + x122 + x123 + x135 + x138 + x159 + x177 + x189 ++ x190 + x191 + x193 + x194 + x202 + x206 + x207 + x209 + x234 + x251 ++ x263 + x275 + x279 + x280 + x289 + x290 + x291 + x292 + x293 + x298 ++ x299 + x300 + x331 + x333 + x334 + x336 + x351 + x353 + x354 + x355 ++ x356 + x358 + x362 + x390 + x391 + x394 + x399 + x428 + x445 + x447 ++ x449 + x451 <= 1 + +x4 + x9 + x12 + x13 + x37 + x43 + x55 + x58 + x59 + x60 ++ x81 + x83 + x84 + x104 + x105 + x107 + x108 + x110 + x112 + x119 ++ x120 + x122 + x123 + x124 + x134 + x157 + x159 + x173 + x174 + x176 ++ x177 + x178 + x189 + x190 + x191 + x192 + x193 + x194 + x202 + x206 ++ x207 + x234 + x277 + x278 + x279 + x280 + x283 + x284 + x289 + x291 ++ x292 + x293 + x298 + x300 + x302 + x331 + x333 + x334 + x336 + x351 ++ x352 + x355 + x356 + x358 + x362 + x390 + x399 + x428 + x444 + x449 ++ x487 <= 1 + +x4 + x9 + x12 + x13 + x14 + x37 + x53 + x55 + x57 + x58 ++ x60 + x84 + x101 + x104 + x107 + x109 + x110 + x112 + x119 + x120 ++ x122 + x123 + x124 + x135 + x138 + x139 + x157 + x158 + x159 + x173 ++ x174 + x175 + x178 + x189 + x190 + x191 + x192 + x194 + x202 + x206 ++ x207 + x249 + x261 + x278 + x279 + x280 + x283 + x284 + x289 + x291 ++ x292 + x293 + x300 + x302 + x304 + x305 + x306 + x331 + x332 + x333 ++ x336 + x351 + x352 + x356 + x358 + x369 + x372 + x392 + x396 + x399 + <= 1 + +x38 + x49 + x50 + x51 + x63 + x67 + x68 + x94 + x103 + x105 ++ x113 + x114 + x116 + x117 + x120 + x121 + x137 + x140 + x144 + x146 ++ x147 + x148 + x180 + x207 + x277 + x279 + x303 + x307 + x311 + x358 ++ x359 + x393 + x395 + x400 + x403 + x414 + x433 + x434 + x436 <= 1 + +x0 + x1 + x2 + x10 + x15 + x35 + x49 + x50 + x51 + x57 ++ x59 + x63 + x67 + x68 + x94 + x101 + x103 + x105 + x113 + x114 ++ x115 + x116 + x117 + x120 + x121 + x140 + x144 + x146 + x147 + x148 ++ x197 + x205 + x207 + x250 + x252 + x277 + x279 + x280 + x293 + x303 ++ x311 + x329 + x358 + x359 + x372 + x393 + x395 + x400 + x431 + x433 ++ x434 + x436 <= 1 + +x35 + x49 + x50 + x51 + x52 + x57 + x58 + x59 + x67 + x68 ++ x96 + x113 + x114 + x115 + x116 + x144 + x145 + x146 + x147 + x193 ++ x197 + x198 + x205 + x207 + x239 + x248 + x250 + x252 + x276 + x277 ++ x278 + x279 + x280 + x303 + x311 + x324 + x357 + x359 + x361 + x389 ++ x395 + x398 + x400 + x434 <= 1 + +x8 + x14 + x35 + x49 + x50 + x51 + x52 + x56 + x57 + x58 ++ x59 + x67 + x96 + x101 + x102 + x103 + x104 + x105 + x113 + x114 ++ x115 + x116 + x119 + x121 + x144 + x145 + x193 + x203 + x205 + x207 ++ x231 + x250 + x252 + x264 + x265 + x266 + x267 + x268 + x273 + x275 ++ x276 + x277 + x278 + x279 + x295 + x303 + x311 + x319 + x324 + x330 ++ x335 + x357 + x359 + x361 + x389 + x392 + x395 + x398 + x400 + x431 ++ x434 + x478 + x479 + x480 <= 1 + +x8 + x14 + x49 + x50 + x51 + x52 + x53 + x54 + x56 + x57 ++ x58 + x70 + x96 + x102 + x103 + x104 + x105 + x108 + x110 + x116 ++ x119 + x120 + x121 + x123 + x124 + x135 + x163 + x166 + x181 + x182 ++ x191 + x193 + x202 + x203 + x204 + x205 + x206 + x231 + x234 + x243 ++ x247 + x251 + x252 + x260 + x264 + x265 + x266 + x268 + x269 + x273 ++ x277 + x278 + x279 + x280 + x290 + x303 + x311 + x335 + x346 + x353 ++ x359 + x361 + x388 + x389 + x390 + x392 + x395 + x397 + x398 + x399 ++ x400 + x466 + x478 + x479 + x480 <= 1 + +x8 + x30 + x41 + x42 + x43 + x49 + x50 + x51 + x52 + x53 ++ x54 + x55 + x57 + x60 + x70 + x74 + x102 + x103 + x104 + x105 ++ x108 + x116 + x117 + x119 + x120 + x121 + x122 + x123 + x132 + x133 ++ x135 + x161 + x163 + x166 + x182 + x192 + x193 + x194 + x202 + x203 ++ x204 + x205 + x206 + x219 + x231 + x233 + x234 + x242 + x245 + x246 ++ x247 + x251 + x252 + x260 + x262 + x269 + x277 + x278 + x279 + x280 ++ x289 + x290 + x294 + x323 + x331 + x335 + x343 + x344 + x346 + x353 ++ x356 + x358 + x362 + x372 + x388 + x389 + x390 + x392 + x394 + x395 ++ x396 + x397 + x398 + x399 + x400 + x405 + x451 + x453 + x478 + x481 + <= 1 + +x8 + x37 + x41 + x50 + x51 + x52 + x53 + x58 + x102 + x104 ++ x105 + x116 + x117 + x119 + x120 + x121 + x124 + x133 + x135 + x161 ++ x175 + x191 + x192 + x193 + x202 + x203 + x204 + x205 + x206 + x219 ++ x231 + x242 + x243 + x246 + x251 + x262 + x277 + x278 + x279 + x280 ++ x289 + x290 + x293 + x298 + x303 + x344 + x346 + x353 + x372 + x390 ++ x392 + x396 + x397 + x398 + x399 + x405 + x413 <= 1 + +x9 + x12 + x13 + x37 + x43 + x50 + x51 + x58 + x60 + x104 ++ x105 + x108 + x110 + x120 + x121 + x122 + x124 + x135 + x153 + x157 ++ x161 + x173 + x175 + x189 + x190 + x191 + x192 + x202 + x204 + x205 ++ x206 + x231 + x251 + x262 + x279 + x280 + x284 + x289 + x293 + x298 ++ x300 + x346 + x351 + x353 + x355 + x372 + x392 + x396 + x399 + x405 ++ x413 <= 1 + +x9 + x12 + x13 + x14 + x37 + x43 + x50 + x51 + x52 + x53 ++ x55 + x58 + x60 + x83 + x84 + x101 + x104 + x105 + x107 + x108 ++ x110 + x112 + x120 + x121 + x122 + x123 + x124 + x135 + x139 + x151 ++ x157 + x158 + x159 + x160 + x173 + x174 + x175 + x189 + x190 + x191 ++ x192 + x194 + x202 + x204 + x205 + x206 + x207 + x249 + x277 + x279 ++ x280 + x284 + x289 + x291 + x292 + x293 + x298 + x300 + x302 + x304 ++ x305 + x306 + x333 + x351 + x352 + x353 + x355 + x356 + x358 + x362 ++ x372 + x392 + x396 + x399 + x444 <= 1 + +x4 + x9 + x12 + x13 + x14 + x37 + x55 + x57 + x58 + x59 ++ x60 + x84 + x101 + x104 + x105 + x109 + x110 + x112 + x120 + x122 ++ x123 + x124 + x136 + x139 + x151 + x158 + x160 + x173 + x174 + x175 ++ x189 + x190 + x191 + x192 + x194 + x202 + x206 + x233 + x249 + x261 ++ x277 + x278 + x279 + x289 + x292 + x293 + x298 + x300 + x302 + x304 ++ x305 + x333 + x351 + x352 + x358 + x361 + x362 + x368 + x372 + x392 ++ x399 <= 1 + +x1 + x35 + x49 + x50 + x59 + x63 + x68 + x94 + x103 + x105 ++ x113 + x114 + x117 + x120 + x144 + x148 + x207 + x252 + x303 + x307 ++ x311 + x358 + x359 + x393 + x395 + x400 + x403 <= 1 + +x1 + x35 + x50 + x59 + x63 + x67 + x68 + x94 + x101 + x103 ++ x113 + x114 + x115 + x116 + x117 + x120 + x121 + x140 + x148 + x207 ++ x250 + x252 + x277 + x279 + x293 + x303 + x311 + x359 + x395 + x400 ++ x431 + x433 + x434 + x436 <= 1 + +x35 + x49 + x59 + x67 + x94 + x113 + x115 + x116 + x117 + x147 ++ x148 + x205 + x207 + x248 + x250 + x252 + x277 + x279 + x303 + x311 ++ x357 + x359 + x366 + x393 + x395 + x400 + x433 + x436 + x459 <= 1 + +x4 + x34 + x35 + x49 + x67 + x97 + x116 + x117 + x204 + x207 ++ x303 + x311 + x359 + x395 + x400 + x430 + x459 <= 1 + +x8 + x14 + x37 + x38 + x41 + x58 + x102 + x103 + x105 + x110 ++ x116 + x119 + x120 + x121 + x123 + x124 + x181 + x193 + x202 + x203 ++ x205 + x206 + x231 + x243 + x251 + x266 + x268 + x269 + x277 + x278 ++ x279 + x280 + x301 + x303 + x335 + x346 + x388 + x389 + x390 + x392 ++ x395 + x397 + x398 + x399 + x400 <= 1 + +x8 + x14 + x30 + x37 + x38 + x41 + x50 + x51 + x52 + x53 ++ x54 + x102 + x103 + x104 + x105 + x116 + x117 + x119 + x120 + x121 ++ x123 + x124 + x133 + x135 + x161 + x166 + x191 + x193 + x202 + x203 ++ x205 + x231 + x242 + x243 + x246 + x247 + x264 + x265 + x266 + x268 ++ x269 + x277 + x278 + x279 + x280 + x289 + x290 + x300 + x303 + x311 ++ x335 + x343 + x346 + x351 + x353 + x359 + x372 + x388 + x389 + x390 ++ x392 + x395 + x397 + x398 + x399 + x400 + x405 <= 1 + +x14 + x37 + x38 + x41 + x50 + x51 + x52 + x53 + x58 + x102 ++ x105 + x113 + x117 + x119 + x120 + x121 + x123 + x124 + x161 + x190 ++ x191 + x192 + x193 + x202 + x203 + x205 + x206 + x230 + x242 + x243 ++ x246 + x251 + x269 + x277 + x278 + x279 + x280 + x289 + x298 + x300 ++ x303 + x322 + x335 + x346 + x351 + x352 + x353 + x372 + x389 + x390 ++ x392 + x395 + x399 + x400 + x430 <= 1 + +x12 + x13 + x14 + x37 + x41 + x50 + x51 + x56 + x60 + x102 ++ x105 + x119 + x120 + x121 + x124 + x151 + x153 + x157 + x189 + x190 ++ x191 + x192 + x202 + x205 + x206 + x243 + x262 + x279 + x289 + x293 ++ x298 + x300 + x303 + x335 + x351 + x352 + x353 + x355 + x362 + x368 ++ x372 + x389 + x396 + x399 + x413 <= 1 + +x12 + x13 + x14 + x37 + x43 + x50 + x58 + x59 + x60 + x102 ++ x104 + x105 + x107 + x110 + x112 + x114 + x119 + x120 + x122 + x124 ++ x139 + x141 + x151 + x160 + x174 + x175 + x189 + x190 + x192 + x194 ++ x202 + x205 + x206 + x246 + x262 + x277 + x279 + x280 + x289 + x293 ++ x298 + x300 + x335 + x351 + x352 + x355 + x362 + x368 + x372 + x396 ++ x399 + x413 <= 1 + +x9 + x13 + x37 + x58 + x59 + x60 + x85 + x104 + x112 + x114 ++ x120 + x122 + x124 + x136 + x139 + x141 + x151 + x158 + x160 + x174 ++ x189 + x190 + x192 + x202 + x206 + x233 + x246 + x249 + x261 + x289 ++ x300 + x302 + x304 + x314 + x352 + x358 + x361 + x368 + x372 + x399 ++ x413 <= 1 + +x0 + x1 + x2 <= 1 + +x3 + x4 + x5 + x6 + x7 + x8 <= 1 + +x9 + x10 + x11 + x12 + x13 + x14 <= 1 + +x15 + x16 + x17 + x18 + x19 + x20 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 <= 1 + +x27 + x28 + x29 + x30 + x31 + x32 <= 1 + +x33 + x34 + x35 + x36 + x37 + x38 <= 1 + +x40 + x41 + x42 + x43 + x44 + x45 <= 1 + +x46 + x47 <= 1 + +x49 + x50 + x51 + x52 + x53 + x54 <= 1 + +x55 + x56 + x57 + x58 + x59 + x60 <= 1 + +x61 + x62 <= 1 + +x63 + x64 + x65 + x66 + x67 + x68 <= 1 + +x69 + x70 + x71 + x72 + x73 + x74 <= 1 + +x75 + x76 + x77 + x78 + x79 + x80 <= 1 + +x81 + x82 + x83 + x84 + x85 + x86 <= 1 + +x87 + x88 + x89 + x90 + x91 + x92 <= 1 + +x93 + x94 + x95 + x96 + x97 + x98 <= 1 + +x99 + x100 <= 1 + +x101 + x102 + x103 + x104 + x105 + x106 <= 1 + +x107 + x108 + x109 + x110 + x111 + x112 <= 1 + +x113 + x114 + x115 + x116 + x117 + x118 <= 1 + +x119 + x120 + x121 + x122 + x123 + x124 <= 1 + +x125 + x126 + x127 + x128 + x129 + x130 <= 1 + +x131 + x132 + x133 + x134 + x135 + x136 <= 1 + +x137 + x138 + x139 + x140 + x141 + x142 <= 1 + +x144 + x145 + x146 + x147 + x148 <= 1 + +x149 + x150 + x151 + x152 + x153 + x154 <= 1 + +x155 + x156 <= 1 + +x157 + x158 + x159 + x160 + x161 <= 1 + +x162 + x163 + x164 + x165 + x166 + x167 <= 1 + +x168 + x169 + x170 + x171 + x172 <= 1 + +x173 + x174 + x175 + x176 + x177 + x178 <= 1 + +x179 + x180 <= 1 + +x181 + x182 <= 1 + +x183 + x184 + x185 + x186 + x187 + x188 <= 1 + +x189 + x190 + x191 + x192 + x193 + x194 <= 1 + +x195 + x196 <= 1 + +x197 + x198 <= 1 + +x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x208 + x209 + x210 + x211 + x212 + x213 <= 1 + +x214 + x215 + x216 + x217 <= 1 + +x218 + x219 + x220 + x221 + x222 + x223 <= 1 + +x224 + x225 <= 1 + +x226 + x227 + x228 + x229 <= 1 + +x230 + x231 + x232 + x233 + x234 + x235 <= 1 + +x236 + x237 + x238 + x239 + x240 + x241 <= 1 + +x242 + x243 + x244 + x245 + x246 + x247 <= 1 + +x248 + x249 + x250 + x251 + x252 + x253 <= 1 + +x254 + x255 + x256 + x257 <= 1 + +x258 + x259 + x260 + x261 + x262 + x263 <= 1 + +x264 + x265 + x266 + x267 + x268 + x269 <= 1 + +x270 + x271 + x272 + x273 + x274 <= 1 + +x275 + x276 + x277 + x278 + x279 + x280 <= 1 + +x281 + x282 <= 1 + +x283 + x284 + x285 + x286 + x287 + x288 <= 1 + +x289 + x290 + x291 + x292 + x293 + x294 <= 1 + +x295 + x296 + x297 + x298 + x299 + x300 <= 1 + +x301 + x302 + x303 + x304 + x305 + x306 <= 1 + +x307 + x308 + x309 + x310 + x311 + x312 <= 1 + +x313 + x314 + x315 + x316 + x317 + x318 <= 1 + +x319 + x320 + x321 + x322 + x323 + x324 <= 1 + +x325 + x326 + x327 + x328 + x329 + x330 <= 1 + +x331 + x332 + x333 + x334 + x335 + x336 <= 1 + +x337 + x338 + x339 + x340 + x341 + x342 <= 1 + +x343 + x344 <= 1 + +x345 + x346 + x347 + x348 + x349 + x350 <= 1 + +x351 + x352 + x353 + x354 + x355 + x356 <= 1 + +x357 + x358 + x359 + x360 + x361 + x362 <= 1 + +x363 + x364 + x365 + x366 + x367 <= 1 + +x368 + x369 + x370 + x371 + x372 + x373 <= 1 + +x374 + x375 + x376 <= 1 + +x377 + x378 + x379 + x380 + x381 + x382 <= 1 + +x383 + x384 + x385 + x386 + x387 + x388 <= 1 + +x389 + x390 + x391 + x392 + x393 + x394 <= 1 + +x395 + x396 + x397 + x398 + x399 + x400 <= 1 + +x402 + x403 + x404 + x405 + x406 + x407 <= 1 + +x408 + x409 + x410 <= 1 + +x411 + x412 + x413 + x414 + x415 + x416 <= 1 + +x417 + x418 + x419 + x420 + x421 + x422 <= 1 + +x423 + x424 <= 1 + +x425 + x426 + x427 + x428 + x429 + x430 <= 1 + +x431 + x432 + x433 + x434 + x435 + x436 <= 1 + +x437 + x438 + x439 + x440 + x441 + x442 <= 1 + +x443 + x444 + x445 + x446 + x447 + x448 <= 1 + +x449 + x450 + x451 + x452 + x453 <= 1 + +x454 + x455 + x456 + x457 + x458 + x459 <= 1 + +x460 + x461 + x462 <= 1 + +x463 + x464 + x465 + x466 + x467 + x468 <= 1 + +x469 + x470 + x471 <= 1 + +x472 + x473 + x474 + x475 + x476 + x477 <= 1 + +x478 + x479 + x480 + x481 <= 1 + +x482 + x483 + x484 + x485 + x486 + x487 <= 1 + +x488 + x489 + x490 + x491 <= 1 + +x492 + x493 <= 1 + +x494 + x495 + x496 + x497 + x498 + x499 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 + + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0009.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0009.lp new file mode 100644 index 000000000..d61ccbf65 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0009.lp @@ -0,0 +1,1104 @@ +max + +352.712x0 + 504.549x1 + 498.977x2 + 442.242x3 + 430.055x4 + 423.839x5 + 113.79x6 + 89.6998x7 + 361.116x8 + 479.989x9 + +454.276x10 + 446.303x11 + 421.694x12 + 91.8234x13 + 230.112x14 + 287.203x15 + 214.108x16 + 137.072x17 + 87.2357x18 + 113.476x19 + +98.3395x20 + 460.649x21 + 653.977x22 + 566.674x23 + 503.674x24 + 471.206x25 + 460.637x26 + 1017.66x27 + 1133.39x28 + 1113.18x29 + +1065.64x30 + 1049.2x31 + 1039.35x32 + 456.05x33 + 456.158x34 + 434.556x35 + 421.913x36 + 388.66x37 + 360.211x38 + 651.697x39 + +694.004x40 + 627.231x41 + 599.541x42 + 545.936x43 + 502.347x44 + 1463.29x45 + 1826.4x46 + 1774.46x47 + 1754.14x48 + 1708.68x49 + +1679.73x50 + 2922.27x51 + 3065.54x52 + 3032.56x53 + 2983x54 + 2980.51x55 + 2967.39x56 + 156.769x57 + 100.355x58 + 124.634x59 + +605.382x60 + 553.463x61 + 548.651x62 + 524.858x63 + 492.89x64 + 449.166x65 + 694.966x66 + 948.576x67 + 755.153x68 + 714.308x69 + +703.603x70 + 667.449x71 + 223.746x72 + 321.053x73 + 260.999x74 + 187.363x75 + 72.2648x76 + 107.555x77 + 425.928x78 + 382.288x79 + +357.851x80 + 357.038x81 + 395.847x82 + 557.438x83 + 461.182x84 + 413.397x85 + 308.324x86 + 255.772x87 + 101.573x88 + 1195.54x89 + +1786.62x90 + 1640.81x91 + 1630.37x92 + 1621.05x93 + 1617.61x94 + 1337.51x95 + 1465.94x96 + 1295.2x97 + 1269.24x98 + 1267.61x99 + +1256.73x100 + 871.402x101 + 1157.66x102 + 1063.29x103 + 1063.18x104 + 1054.27x105 + 1050.04x106 + 530.165x107 + 628.668x108 + 598.421x109 + +579.75x110 + 578.074x111 + 485.593x112 + 46.0455x113 + 93.8792x114 + 137.764x115 + 127.422x116 + 99.1527x117 + 263.806x118 + 332.548x119 + +317.05x120 + 313.612x121 + 261.696x122 + 242.522x123 + 742.734x124 + 631.453x125 + 622.726x126 + 607.797x127 + 606.107x128 + 581.829x129 + +153.247x130 + 204.002x131 + 190.88x132 + 206.978x133 + 235.932x134 + 231.132x135 + 202.224x136 + 230.92x137 + 311.098x138 + 256.108x139 + +226.605x140 + 214.792x141 + 26.8181x142 + 938.051x143 + 1032.29x144 + 1009.65x145 + 1006.73x146 + 991.151x147 + 965.842x148 + 1530.55x149 + +1694.6x150 + 1671.31x151 + 1666.51x152 + 1634.82x153 + 1628.14x154 + 827.985x155 + 1067.84x156 + 897.63x157 + 881.024x158 + 873.791x159 + +856.08x160 + 811.239x161 + 912.349x162 + 905.247x163 + 901.07x164 + 875.558x165 + 779.757x166 + 1028.91x167 + 1325.94x168 + 1310.4x169 + +1268.22x170 + 1247.48x171 + 1235.96x172 + 855.391x173 + 1115.54x174 + 1086.04x175 + 1083.05x176 + 1079.31x177 + 1012.8x178 + 587.059x179 + +854.518x180 + 832.97x181 + 778.853x182 + 750.284x183 + 586.278x184 + 357.991x185 + 454.76x186 + 332.222x187 + 299.744x188 + 252.256x189 + +850.533x190 + 969.08x191 + 901.189x192 + 892.013x193 + 854.394x194 + 845.187x195 + 730.033x196 + 963.868x197 + 829.554x198 + 811.315x199 + +784.941x200 + 780.861x201 + 1247.04x202 + 1350.68x203 + 1308.61x204 + 1296.84x205 + 1249.3x206 + 1247.1x207 + 919.068x208 + 997.482x209 + +975.858x210 + 949.754x211 + 936.253x212 + 903.975x213 + 593.151x214 + 675.383x215 + 653.623x216 + 643.034x217 + 637.719x218 + 558.881x219 + +893.631x220 + 902.201x221 + 886.164x222 + 846.404x223 + 812.976x224 + 756.969x225 + 450.381x226 + 602.313x227 + 548.434x228 + 508.433x229 + +484.468x230 + 466.341x231 + 877.846x232 + 1161.05x233 + 1042.79x234 + 1018.98x235 + 974.17x236 + 963.758x237 + 2335.75x238 + 2813.29x239 + +2779.18x240 + 2759.45x241 + 2736.74x242 + 2714.7x243 + 116.359x244 + 59.6227x245 + 27.0194x246 + 930.964x247 + 944.644x248 + 906.878x249 + +906.08x250 + 894.491x251 + 860.571x252 + 1049.91x253 + 1007.19x254 + 1000.55x255 + 997.327x256 + 951.299x257 + 937.154x258 + 2042.99x259 + +2274.4x260 + 2255.04x261 + 2245.05x262 + 2223.84x263 + 2213.63x264 + 1078.71x265 + 1391.87x266 + 1277.42x267 + 1246.4x268 + 1244.9x269 + +1224.6x270 + 225.691x271 + 226.331x272 + 224.158x273 + 111.909x274 + 1162.5x275 + 1343.04x276 + 1327.76x277 + 1289.42x278 + 1273.71x279 + +1258.03x280 + 541.001x281 + 470.617x282 + 470.297x283 + 439.232x284 + 2032.51x285 + 2207.54x286 + 2204.57x287 + 2195.08x288 + 2179.64x289 + +2171.61x290 + 1805.93x291 + 2450.04x292 + 2350.19x293 + 2265.65x294 + 2234.02x295 + 2169.13x296 + 910.538x297 + 1207.83x298 + 1141.1x299 + +1128.39x300 + 1066.3x301 + 1061.4x302 + 187.88x303 + 165.886x304 + 152.816x305 + 156.757x306 + 171.858x307 + 194.609x308 + 215.301x309 + +257.276x310 + 175.759x311 + 148.609x312 + 1218.4x313 + 1373.23x314 + 1349.84x315 + 1337.55x316 + 1330.79x317 + 1317.49x318 + 28.9601x319 + +994.738x320 + 1082.1x321 + 1078.15x322 + 1053.63x323 + 1044.9x324 + 1034.19x325 + 221.965x326 + 253.092x327 + 227.439x328 + 1089.25x329 + +1311.54x330 + 1303.24x331 + 1286.85x332 + 1276.56x333 + 1250.14x334 + 654.037x335 + 756.358x336 + 721.005x337 + 695.491x338 + 670.151x339 + +655.077x340 + 113.003x341 + 113.996x342 + 110.764x343 + 188.789x344 + 239.138x345 + 106.793x346 + 914.58x347 + 1053.6x348 + 999.01x349 + +986.88x350 + 962.036x351 + 959.772x352 + 231.319x353 + 273.092x354 + 229.503x355 + 195.642x356 + 1251.56x357 + 1607x358 + 1570.79x359 + +1442.49x360 + 1381.09x361 + 1377.49x362 + 1218.97x363 + 1370.7x364 + 1353.72x365 + 1307.79x366 + 1295.83x367 + 1294.48x368 + 106.91x369 + +1678.9x370 + 1876.02x371 + 1832.56x372 + 1770.51x373 + 1768.66x374 + 1759.49x375 + 1145.64x376 + 1582.47x377 + 1562.46x378 + 1556.3x379 + +1491.59x380 + 1442.48x381 + 1349.99x382 + 1948.34x383 + 1737.09x384 + 1730.89x385 + 1708.39x386 + 1617.38x387 + 265.825x388 + 332.746x389 + +199.419x390 + 260.675x391 + 200.094x392 + 196.41x393 + 175.656x394 + 187.571x395 + 265.571x396 + 210.832x397 + 170.761x398 + 217.786x399 + +980.959x400 + 942.556x401 + 895.266x402 + 866.976x403 + 855.352x404 + 853.592x405 + 110.942x406 + 1215.49x407 + 1458.29x408 + 1364.06x409 + +1318.64x410 + 1205.19x411 + 1151.91x412 + 548.012x413 + 743.446x414 + 725.098x415 + 689.285x416 + 673.752x417 + 628.612x418 + 570.046x419 + +590.806x420 + 572.152x421 + 567.223x422 + 564.433x423 + 524.362x424 + 174.43x425 + 119.284x426 + 90.7625x427 + 1149.59x428 + 1486.55x429 + +1365.54x430 + 1343.27x431 + 1331.37x432 + 1321.6x433 + 141.002x434 + 201.742x435 + 104.128x436 + 828.114x437 + 907.9x438 + 877.777x439 + +872.868x440 + 865.035x441 + 841.191x442 + 514.869x443 + 740.963x444 + 731.326x445 + 655.101x446 + 646.252x447 + 646.248x448 + 126.098x449 + +171.064x450 + 62.2518x451 + 8.68677x452 + 168.425x453 + 120.817x454 + 249.061x455 + 339.101x456 + 313.539x457 + 206.652x458 + 235.286x459 + +224.611x460 + 185.031x461 + 138.051x462 + 198.098x463 + 188.907x464 + 92.3129x465 + 1309.62x466 + 1404.55x467 + 1333.52x468 + 1305.82x469 + +1286.04x470 + 1285.9x471 + 194.336x472 + 154.11x473 + 976.269x474 + 1178.14x475 + 1129.99x476 + 1123.08x477 + 1082.06x478 + 1049.25x479 + +512.495x480 + 545.564x481 + 459.542x482 + 369.203x483 + 368.187x484 + 258.248x485 + 210.89x486 + 222.109x487 + 212.645x488 + 1141.67x489 + +1123.35x490 + 1075.3x491 + 1032.5x492 + 1010.34x493 + 995.476x494 + 1102.1x495 + 1491.82x496 + 1490.93x497 + 1473.35x498 + 1413.2x499 + +1390.46x500 + +st + +x52 + x55 + x98 + x151 + x153 + x200 + x241 + x243 + x259 + x264 ++ x285 + x288 + x289 + x292 + x294 + x295 + x298 + x309 + x310 + x311 ++ x312 + x347 + x349 + x352 <= 1 + +x50 + x52 + x55 + x98 + x151 + x154 + x155 + x157 + x158 + x161 ++ x164 + x165 + x174 + x178 + x200 + x202 + x214 + x219 + x239 + x243 ++ x259 + x264 + x285 + x286 + x288 + x289 + x290 + x293 + x294 + x295 ++ x309 + x310 + x311 + x312 + x347 + x348 + x349 + x350 + x351 + x358 ++ x360 + x364 + x368 + x426 + x490 + x497 <= 1 + +x44 + x50 + x52 + x55 + x94 + x95 + x96 + x97 + x98 + x109 ++ x149 + x154 + x155 + x156 + x157 + x158 + x161 + x164 + x165 + x178 ++ x199 + x202 + x203 + x214 + x216 + x218 + x219 + x251 + x253 + x256 ++ x259 + x260 + x261 + x262 + x263 + x264 + x277 + x285 + x286 + x287 ++ x288 + x289 + x290 + x292 + x293 + x294 + x295 + x296 + x298 + x299 ++ x300 + x302 + x309 + x310 + x313 + x315 + x347 + x348 + x349 + x350 ++ x351 + x352 + x358 + x360 + x364 + x368 + x408 + x410 + x418 + x425 ++ x426 + x470 + x489 + x490 + x492 + x493 + x494 <= 1 + +x2 + x46 + x48 + x50 + x95 + x96 + x98 + x151 + x154 + x155 ++ x156 + x157 + x158 + x162 + x164 + x165 + x166 + x178 + x197 + x202 ++ x203 + x204 + x206 + x214 + x215 + x216 + x218 + x219 + x239 + x240 ++ x241 + x242 + x247 + x248 + x249 + x250 + x251 + x253 + x256 + x259 ++ x260 + x261 + x262 + x263 + x264 + x266 + x275 + x277 + x285 + x286 ++ x287 + x288 + x289 + x290 + x292 + x293 + x294 + x295 + x296 + x297 ++ x298 + x299 + x300 + x309 + x313 + x314 + x315 + x347 + x350 + x351 ++ x352 + x358 + x364 + x365 + x368 + x372 + x385 + x408 + x418 + x442 ++ x469 + x471 + x472 + x489 + x490 + x492 + x493 + x494 + x497 <= 1 + +x2 + x15 + x46 + x48 + x50 + x51 + x52 + x53 + x55 + x69 ++ x93 + x95 + x96 + x98 + x155 + x156 + x157 + x158 + x162 + x171 ++ x197 + x200 + x202 + x203 + x204 + x205 + x206 + x207 + x228 + x229 ++ x233 + x236 + x239 + x240 + x241 + x242 + x247 + x248 + x249 + x250 ++ x251 + x252 + x253 + x254 + x255 + x256 + x258 + x259 + x260 + x261 ++ x262 + x263 + x264 + x266 + x277 + x280 + x285 + x286 + x287 + x288 ++ x289 + x290 + x291 + x292 + x293 + x294 + x295 + x296 + x299 + x313 ++ x314 + x315 + x347 + x350 + x351 + x352 + x358 + x359 + x366 + x371 ++ x372 + x385 + x400 + x401 + x402 + x403 + x405 + x418 + x442 + x468 ++ x469 + x471 + x489 + x490 + x492 + x493 + x494 + x497 <= 1 + +x2 + x48 + x51 + x52 + x55 + x93 + x95 + x96 + x156 + x157 ++ x158 + x171 + x177 + x200 + x204 + x222 + x224 + x242 + x251 + x253 ++ x254 + x255 + x258 + x259 + x260 + x261 + x262 + x263 + x277 + x280 ++ x285 + x287 + x288 + x290 + x293 + x296 + x299 + x305 + x331 + x358 ++ x359 + x366 + x371 + x372 + x401 + x405 + x407 + x410 + x411 + x469 ++ x489 + x492 + x494 <= 1 + +x2 + x29 + x30 + x48 + x52 + x54 + x55 + x94 + x96 + x98 ++ x119 + x171 + x174 + x177 + x189 + x196 + x197 + x200 + x202 + x204 ++ x205 + x206 + x220 + x222 + x223 + x224 + x233 + x234 + x235 + x236 ++ x237 + x249 + x254 + x255 + x258 + x259 + x260 + x261 + x262 + x263 ++ x264 + x277 + x280 + x285 + x288 + x290 + x293 + x299 + x303 + x305 ++ x371 + x401 + x404 + x405 + x407 + x410 + x411 + x439 + x442 <= 1 + +x0 + x2 + x29 + x55 + x94 + x96 + x98 + x185 + x189 + x200 ++ x202 + x203 + x205 + x206 + x220 + x222 + x224 + x232 + x233 + x234 ++ x235 + x236 + x237 + x242 + x247 + x249 + x251 + x252 + x254 + x259 ++ x260 + x261 + x263 + x264 + x277 + x280 + x285 + x286 + x287 + x288 ++ x289 + x290 + x303 + x304 + x313 + x314 + x316 + x358 + x366 + x371 ++ x381 + x383 + x400 + x401 + x404 + x405 + x407 + x409 + x411 + x439 ++ x471 + x477 + x493 <= 1 + +x55 + x189 + x200 + x202 + x203 + x205 + x206 + x252 + x254 + x259 ++ x260 + x261 + x263 + x264 + x280 + x285 + x286 + x290 + x300 + x304 ++ x314 + x316 + x358 + x376 + x407 + x409 + x411 + x471 <= 1 + +x176 + x202 + x205 + x206 + x217 + x232 + x235 + x252 + x259 + x260 ++ x261 + x263 + x264 + x285 + x286 + x314 + x316 + x376 + x385 + x400 ++ x403 + x407 + x409 + x411 + x412 + x433 + x482 + x484 <= 1 + +x42 + x52 + x55 + x98 + x178 + x200 + x239 + x240 + x241 + x243 ++ x262 + x285 + x288 + x292 + x293 + x294 + x295 + x296 + x298 + x311 ++ x312 + x347 + x349 + x352 + x360 + x368 <= 1 + +x28 + x42 + x47 + x48 + x52 + x55 + x81 + x98 + x111 + x150 ++ x151 + x154 + x157 + x158 + x161 + x163 + x164 + x165 + x178 + x200 ++ x204 + x206 + x214 + x219 + x239 + x240 + x241 + x242 + x243 + x259 ++ x285 + x288 + x289 + x290 + x292 + x293 + x294 + x295 + x296 + x298 ++ x300 + x301 + x302 + x309 + x310 + x311 + x312 + x331 + x347 + x348 ++ x349 + x350 + x351 + x352 + x358 + x359 + x360 + x364 + x367 + x368 ++ x386 + x408 + x410 + x413 + x427 + x467 + x479 + x490 + x491 + x497 + <= 1 + +x44 + x45 + x46 + x47 + x48 + x50 + x52 + x55 + x56 + x81 ++ x96 + x98 + x100 + x149 + x151 + x154 + x155 + x157 + x158 + x161 ++ x162 + x163 + x164 + x165 + x168 + x178 + x199 + x202 + x204 + x206 ++ x214 + x216 + x217 + x218 + x219 + x239 + x240 + x241 + x242 + x243 ++ x251 + x258 + x259 + x260 + x261 + x262 + x263 + x268 + x275 + x277 ++ x288 + x289 + x290 + x292 + x293 + x294 + x295 + x296 + x298 + x299 ++ x300 + x301 + x302 + x309 + x310 + x311 + x314 + x347 + x348 + x349 ++ x350 + x351 + x352 + x358 + x359 + x360 + x364 + x365 + x367 + x368 ++ x372 + x373 + x386 + x408 + x410 + x413 + x418 + x425 + x427 + x473 ++ x479 + x489 + x490 + x492 + x493 + x497 <= 1 + +x30 + x41 + x45 + x46 + x47 + x48 + x50 + x51 + x52 + x55 ++ x90 + x96 + x98 + x105 + x151 + x154 + x156 + x157 + x162 + x163 ++ x164 + x165 + x166 + x178 + x197 + x202 + x203 + x204 + x205 + x214 ++ x215 + x216 + x218 + x219 + x221 + x230 + x239 + x240 + x241 + x247 ++ x248 + x249 + x250 + x251 + x253 + x254 + x255 + x256 + x258 + x259 ++ x260 + x261 + x262 + x263 + x264 + x266 + x268 + x275 + x277 + x280 ++ x285 + x286 + x287 + x288 + x289 + x290 + x291 + x292 + x293 + x294 ++ x295 + x296 + x297 + x298 + x299 + x300 + x301 + x302 + x313 + x314 ++ x315 + x317 + x330 + x347 + x349 + x350 + x351 + x352 + x358 + x359 ++ x360 + x364 + x365 + x367 + x368 + x370 + x372 + x384 + x386 + x387 ++ x407 + x408 + x411 + x431 + x468 + x469 + x471 + x472 + x473 + x489 ++ x490 + x491 + x492 + x493 + x494 + x497 <= 1 + +x30 + x51 + x52 + x53 + x54 + x55 + x69 + x93 + x121 + x151 ++ x157 + x162 + x165 + x171 + x174 + x178 + x197 + x202 + x203 + x204 ++ x205 + x206 + x207 + x215 + x216 + x218 + x221 + x222 + x223 + x228 ++ x229 + x233 + x236 + x237 + x240 + x247 + x248 + x249 + x250 + x251 ++ x252 + x253 + x254 + x255 + x256 + x258 + x259 + x260 + x261 + x262 ++ x263 + x264 + x266 + x277 + x280 + x285 + x286 + x287 + x288 + x289 ++ x290 + x291 + x292 + x293 + x294 + x295 + x296 + x307 + x308 + x329 ++ x347 + x350 + x351 + x372 + x385 + x387 + x401 + x402 + x403 + x404 ++ x405 + x407 + x408 + x411 + x418 + x434 + x435 + x442 + x468 + x469 ++ x471 + x489 + x490 + x492 + x493 + x494 + x497 <= 1 + +x29 + x30 + x46 + x50 + x52 + x54 + x55 + x69 + x96 + x98 ++ x150 + x156 + x157 + x168 + x171 + x174 + x186 + x197 + x200 + x202 ++ x203 + x204 + x205 + x206 + x207 + x215 + x220 + x221 + x222 + x223 ++ x224 + x228 + x233 + x235 + x236 + x237 + x242 + x247 + x248 + x249 ++ x250 + x251 + x252 + x253 + x254 + x255 + x256 + x257 + x258 + x259 ++ x260 + x261 + x262 + x263 + x264 + x275 + x277 + x280 + x285 + x286 ++ x287 + x288 + x289 + x290 + x291 + x292 + x293 + x294 + x295 + x296 ++ x299 + x308 + x313 + x314 + x315 + x317 + x336 + x350 + x352 + x359 ++ x366 + x371 + x400 + x401 + x402 + x403 + x404 + x407 + x408 + x410 ++ x411 + x418 + x435 + x442 + x446 + x466 + x468 + x469 + x471 + x477 ++ x489 + x492 + x493 + x494 <= 1 + +x2 + x14 + x15 + x29 + x30 + x49 + x52 + x54 + x55 + x94 ++ x96 + x98 + x156 + x157 + x171 + x174 + x177 + x185 + x186 + x187 ++ x189 + x197 + x198 + x200 + x202 + x203 + x204 + x205 + x206 + x207 ++ x220 + x221 + x222 + x223 + x224 + x232 + x233 + x234 + x235 + x236 ++ x237 + x242 + x244 + x247 + x249 + x250 + x251 + x252 + x253 + x254 ++ x256 + x258 + x259 + x260 + x261 + x262 + x263 + x264 + x275 + x277 ++ x280 + x285 + x286 + x287 + x288 + x289 + x290 + x293 + x299 + x313 ++ x314 + x358 + x366 + x371 + x381 + x383 + x400 + x401 + x402 + x403 ++ x404 + x405 + x407 + x409 + x410 + x411 + x439 + x442 + x446 + x469 ++ x471 + x477 + x489 + x492 + x493 <= 1 + +x0 + x2 + x5 + x29 + x47 + x49 + x52 + x55 + x88 + x96 ++ x153 + x171 + x173 + x174 + x185 + x186 + x187 + x188 + x203 + x205 ++ x206 + x207 + x232 + x233 + x234 + x235 + x237 + x242 + x247 + x249 ++ x250 + x252 + x259 + x260 + x261 + x262 + x263 + x264 + x280 + x285 ++ x286 + x287 + x289 + x290 + x313 + x314 + x366 + x371 + x383 + x385 ++ x400 + x401 + x402 + x403 + x404 + x405 + x411 + x433 + x446 + x477 + <= 1 + +x5 + x27 + x47 + x49 + x52 + x55 + x153 + x185 + x186 + x187 ++ x188 + x205 + x206 + x217 + x232 + x233 + x234 + x235 + x237 + x259 ++ x260 + x261 + x262 + x263 + x280 + x285 + x286 + x287 + x289 + x290 ++ x314 + x376 + x383 + x385 + x400 + x401 + x402 + x403 + x404 + x405 ++ x407 + x409 + x411 + x412 + x433 <= 1 + +x49 + x55 + x175 + x176 + x178 + x188 + x202 + x206 + x217 + x232 ++ x234 + x235 + x237 + x252 + x259 + x260 + x263 + x280 + x285 + x286 ++ x383 + x385 + x400 + x403 + x407 + x409 + x411 + x412 + x433 + x482 ++ x484 <= 1 + +x39 + x40 + x41 + x42 + x44 + x46 + x47 + x52 + x55 + x56 ++ x78 + x79 + x80 + x100 + x104 + x105 + x149 + x150 + x151 + x152 ++ x154 + x161 + x162 + x163 + x164 + x165 + x170 + x176 + x196 + x198 ++ x199 + x203 + x207 + x217 + x230 + x239 + x240 + x241 + x242 + x243 ++ x266 + x281 + x282 + x284 + x285 + x288 + x292 + x293 + x294 + x295 ++ x296 + x298 + x300 + x301 + x302 + x317 + x326 + x327 + x330 + x331 ++ x332 + x333 + x347 + x348 + x349 + x350 + x351 + x352 + x358 + x359 ++ x360 + x363 + x364 + x365 + x367 + x368 + x372 + x373 + x374 + x375 ++ x383 + x384 + x387 + x408 + x410 + x423 + x467 + x468 + x469 + x476 ++ x480 + x484 + x485 + x489 + x490 + x491 <= 1 + +x39 + x40 + x42 + x44 + x46 + x48 + x50 + x52 + x55 + x56 ++ x78 + x79 + x81 + x96 + x100 + x104 + x105 + x149 + x150 + x151 ++ x154 + x155 + x158 + x161 + x162 + x163 + x164 + x165 + x168 + x170 ++ x199 + x203 + x204 + x214 + x217 + x218 + x231 + x239 + x240 + x241 ++ x242 + x243 + x248 + x250 + x268 + x285 + x288 + x289 + x290 + x292 ++ x293 + x294 + x295 + x296 + x298 + x299 + x300 + x301 + x302 + x310 ++ x311 + x317 + x326 + x328 + x330 + x331 + x347 + x348 + x349 + x350 ++ x351 + x352 + x358 + x359 + x360 + x363 + x364 + x365 + x367 + x368 ++ x372 + x373 + x375 + x386 + x387 + x408 + x410 + x431 + x454 + x467 ++ x469 + x471 + x479 + x484 + x489 + x490 + x491 + x497 <= 1 + +x41 + x45 + x46 + x47 + x48 + x50 + x52 + x55 + x81 + x90 ++ x98 + x105 + x145 + x149 + x151 + x154 + x156 + x158 + x161 + x162 ++ x164 + x165 + x168 + x170 + x199 + x202 + x203 + x204 + x205 + x214 ++ x215 + x216 + x217 + x218 + x219 + x231 + x239 + x240 + x241 + x242 ++ x243 + x247 + x248 + x249 + x250 + x251 + x256 + x260 + x261 + x262 ++ x263 + x264 + x266 + x268 + x277 + x278 + x284 + x285 + x288 + x289 ++ x290 + x292 + x293 + x294 + x295 + x296 + x297 + x299 + x302 + x314 ++ x315 + x317 + x330 + x331 + x334 + x347 + x350 + x351 + x352 + x357 ++ x358 + x359 + x360 + x363 + x364 + x365 + x367 + x368 + x372 + x373 ++ x375 + x383 + x384 + x386 + x387 + x408 + x410 + x411 + x415 + x418 ++ x431 + x468 + x469 + x471 + x476 + x479 + x489 + x491 + x492 + x493 ++ x494 + x496 + x497 <= 1 + +x41 + x45 + x46 + x47 + x48 + x50 + x52 + x96 + x105 + x147 ++ x149 + x151 + x153 + x161 + x162 + x163 + x164 + x165 + x166 + x170 ++ x178 + x192 + x202 + x203 + x204 + x205 + x216 + x218 + x221 + x230 ++ x239 + x241 + x243 + x247 + x248 + x250 + x251 + x253 + x254 + x255 ++ x256 + x260 + x261 + x262 + x263 + x264 + x266 + x268 + x275 + x276 ++ x277 + x278 + x280 + x285 + x288 + x289 + x291 + x292 + x293 + x294 ++ x295 + x296 + x297 + x298 + x300 + x301 + x315 + x317 + x330 + x331 ++ x340 + x350 + x351 + x352 + x357 + x358 + x359 + x360 + x364 + x365 ++ x367 + x370 + x375 + x383 + x386 + x387 + x408 + x411 + x468 + x471 ++ x479 + x483 + x485 + x490 + x492 + x493 + x494 + x497 <= 1 + +x24 + x51 + x52 + x53 + x55 + x93 + x96 + x134 + x150 + x154 ++ x157 + x168 + x169 + x171 + x174 + x202 + x203 + x204 + x205 + x206 ++ x215 + x226 + x228 + x229 + x236 + x238 + x239 + x240 + x241 + x242 ++ x250 + x253 + x255 + x256 + x257 + x258 + x259 + x260 + x261 + x262 ++ x263 + x264 + x266 + x268 + x275 + x276 + x277 + x285 + x286 + x290 ++ x291 + x292 + x293 + x294 + x295 + x296 + x297 + x307 + x313 + x317 ++ x334 + x347 + x350 + x387 + x401 + x402 + x404 + x407 + x408 + x434 ++ x436 + x443 + x448 + x466 + x468 + x469 + x471 + x489 + x492 + x493 ++ x494 <= 1 + +x52 + x53 + x54 + x55 + x69 + x96 + x98 + x150 + x168 + x169 ++ x171 + x174 + x220 + x221 + x222 + x224 + x226 + x228 + x236 + x238 ++ x242 + x249 + x253 + x255 + x256 + x257 + x258 + x259 + x260 + x261 ++ x262 + x263 + x264 + x266 + x275 + x276 + x277 + x278 + x280 + x285 ++ x287 + x290 + x291 + x292 + x293 + x294 + x295 + x296 + x299 + x313 ++ x314 + x315 + x317 + x334 + x336 + x381 + x387 + x400 + x401 + x402 ++ x403 + x404 + x442 + x446 + x466 + x468 + x469 + x471 + x477 <= 1 + +x2 + x5 + x14 + x15 + x30 + x52 + x53 + x54 + x55 + x69 ++ x94 + x98 + x121 + x122 + x171 + x174 + x197 + x200 + x202 + x203 ++ x204 + x205 + x206 + x207 + x220 + x221 + x222 + x223 + x224 + x225 ++ x232 + x235 + x236 + x237 + x242 + x247 + x249 + x250 + x252 + x254 ++ x255 + x259 + x260 + x261 + x262 + x263 + x264 + x285 + x286 + x287 ++ x290 + x291 + x296 + x313 + x358 + x366 + x371 + x373 + x381 + x400 ++ x402 + x403 + x404 + x405 + x407 + x409 + x410 + x411 + x439 + x446 ++ x448 + x487 <= 1 + +x5 + x15 + x17 + x47 + x49 + x52 + x53 + x55 + x66 + x69 ++ x88 + x94 + x118 + x120 + x123 + x173 + x178 + x187 + x197 + x203 ++ x204 + x205 + x206 + x207 + x220 + x221 + x222 + x223 + x224 + x225 ++ x232 + x242 + x252 + x259 + x260 + x261 + x263 + x264 + x285 + x286 ++ x287 + x289 + x290 + x313 + x314 + x371 + x373 + x381 + x400 + x401 ++ x402 + x403 + x404 + x405 + x407 + x411 + x446 + x487 + x488 <= 1 + +x5 + x55 + x66 + x69 + x120 + x123 + x136 + x149 + x173 + x174 ++ x176 + x178 + x203 + x220 + x221 + x222 + x223 + x225 + x232 + x235 ++ x236 + x242 + x252 + x257 + x259 + x260 + x263 + x287 + x289 + x314 ++ x381 + x400 + x405 + x407 + x446 + x486 + x487 + x488 <= 1 + +x27 + x47 + x49 + x104 + x112 + x120 + x133 + x136 + x173 + x175 ++ x176 + x178 + x188 + x202 + x205 + x206 + x232 + x234 + x235 + x237 ++ x259 + x260 + x261 + x263 + x280 + x287 + x296 + x314 + x385 + x403 ++ x407 + x409 + x411 + x412 + x451 + x453 + x454 + x486 <= 1 + +x39 + x40 + x42 + x43 + x44 + x47 + x48 + x50 + x52 + x55 ++ x79 + x90 + x99 + x104 + x105 + x150 + x151 + x152 + x154 + x161 ++ x168 + x170 + x196 + x198 + x207 + x239 + x240 + x242 + x243 + x248 ++ x261 + x262 + x266 + x268 + x276 + x278 + x281 + x282 + x283 + x284 ++ x288 + x290 + x293 + x297 + x298 + x300 + x301 + x302 + x330 + x331 ++ x332 + x333 + x334 + x338 + x348 + x349 + x351 + x358 + x359 + x363 ++ x364 + x365 + x366 + x367 + x368 + x369 + x372 + x373 + x374 + x375 ++ x376 + x378 + x384 + x386 + x387 + x408 + x410 + x423 + x467 + x474 ++ x476 + x480 + x482 + x490 + x491 <= 1 + +x40 + x41 + x42 + x43 + x44 + x46 + x47 + x48 + x50 + x52 ++ x55 + x56 + x65 + x78 + x79 + x80 + x90 + x93 + x96 + x99 ++ x100 + x104 + x105 + x109 + x149 + x150 + x151 + x152 + x153 + x154 ++ x156 + x158 + x161 + x162 + x163 + x164 + x166 + x168 + x170 + x196 ++ x199 + x207 + x217 + x230 + x239 + x240 + x241 + x242 + x243 + x248 ++ x261 + x262 + x266 + x268 + x276 + x278 + x281 + x282 + x283 + x284 ++ x288 + x290 + x291 + x292 + x293 + x294 + x295 + x296 + x297 + x298 ++ x300 + x301 + x302 + x327 + x328 + x330 + x331 + x332 + x338 + x348 ++ x349 + x351 + x352 + x358 + x359 + x360 + x363 + x364 + x365 + x366 ++ x367 + x368 + x370 + x372 + x373 + x374 + x375 + x378 + x383 + x384 ++ x386 + x387 + x408 + x410 + x414 + x423 + x467 + x468 + x470 + x479 ++ x480 + x481 + x482 + x484 + x485 + x490 + x491 + x497 <= 1 + +x39 + x40 + x41 + x43 + x45 + x46 + x47 + x48 + x50 + x52 ++ x63 + x90 + x96 + x105 + x147 + x149 + x150 + x151 + x152 + x154 ++ x156 + x158 + x162 + x163 + x166 + x167 + x168 + x170 + x196 + x199 ++ x204 + x205 + x215 + x219 + x226 + x230 + x239 + x240 + x241 + x242 ++ x243 + x248 + x260 + x261 + x262 + x264 + x266 + x268 + x276 + x278 ++ x283 + x284 + x288 + x291 + x293 + x294 + x295 + x297 + x299 + x300 ++ x301 + x302 + x317 + x330 + x331 + x332 + x334 + x358 + x359 + x360 ++ x363 + x364 + x365 + x367 + x375 + x376 + x383 + x384 + x386 + x387 ++ x410 + x411 + x414 + x418 + x467 + x468 + x476 + x478 + x485 + x491 ++ x494 + x496 + x500 <= 1 + +x47 + x48 + x50 + x93 + x105 + x110 + x147 + x149 + x153 + x163 ++ x166 + x168 + x170 + x192 + x198 + x199 + x204 + x205 + x211 + x213 ++ x215 + x216 + x226 + x228 + x230 + x237 + x239 + x240 + x241 + x242 ++ x248 + x261 + x262 + x266 + x268 + x275 + x276 + x278 + x291 + x293 ++ x294 + x295 + x297 + x299 + x300 + x301 + x315 + x317 + x330 + x331 ++ x332 + x357 + x358 + x359 + x360 + x364 + x365 + x367 + x370 + x372 ++ x373 + x375 + x386 + x387 + x410 + x415 + x416 + x485 + x494 <= 1 + +x47 + x51 + x52 + x53 + x55 + x58 + x88 + x93 + x105 + x107 ++ x109 + x121 + x134 + x149 + x150 + x154 + x166 + x168 + x170 + x171 ++ x210 + x211 + x226 + x228 + x229 + x237 + x238 + x239 + x240 + x241 ++ x242 + x253 + x255 + x256 + x257 + x258 + x259 + x260 + x261 + x262 ++ x263 + x266 + x268 + x275 + x276 + x278 + x279 + x286 + x287 + x290 ++ x291 + x292 + x293 + x295 + x296 + x297 + x300 + x313 + x317 + x332 ++ x334 + x373 + x375 + x386 + x387 + x436 + x443 + x448 + x466 + x469 ++ x471 + x477 + x492 + x494 <= 1 + +x14 + x17 + x69 + x93 + x105 + x118 + x121 + x122 + x149 + x154 ++ x168 + x171 + x207 + x220 + x221 + x222 + x228 + x229 + x236 + x237 ++ x239 + x240 + x242 + x253 + x254 + x255 + x256 + x257 + x259 + x260 ++ x261 + x262 + x263 + x264 + x266 + x268 + x275 + x277 + x278 + x285 ++ x286 + x287 + x290 + x291 + x292 + x293 + x295 + x296 + x313 + x314 ++ x315 + x317 + x334 + x373 + x375 + x381 + x401 + x402 + x403 + x404 ++ x443 + x446 + x448 + x468 + x469 + x471 + x477 <= 1 + +x14 + x16 + x17 + x52 + x53 + x54 + x55 + x69 + x87 + x118 ++ x119 + x121 + x122 + x171 + x174 + x206 + x207 + x220 + x221 + x222 ++ x223 + x224 + x225 + x231 + x232 + x235 + x236 + x237 + x242 + x254 ++ x255 + x257 + x275 + x279 + x285 + x286 + x287 + x290 + x291 + x292 ++ x296 + x373 + x381 + x402 + x404 + x439 + x440 + x443 + x446 + x447 ++ x448 <= 1 + +x5 + x16 + x17 + x46 + x52 + x53 + x54 + x55 + x66 + x69 ++ x87 + x94 + x118 + x120 + x122 + x123 + x133 + x134 + x135 + x136 ++ x173 + x176 + x178 + x207 + x220 + x221 + x222 + x223 + x224 + x225 ++ x232 + x236 + x242 + x257 + x259 + x285 + x286 + x287 + x289 + x290 ++ x291 + x292 + x296 + x313 + x314 + x373 + x381 + x387 + x440 + x450 + <= 1 + +x5 + x16 + x46 + x49 + x53 + x54 + x55 + x66 + x69 + x108 ++ x120 + x123 + x133 + x136 + x173 + x174 + x175 + x176 + x178 + x204 ++ x221 + x225 + x232 + x235 + x236 + x242 + x257 + x259 + x260 + x263 ++ x296 + x314 + x373 + x381 + x387 + x400 + x405 + x407 + x440 + x449 ++ x450 + x486 + x487 + x488 <= 1 + +x5 + x27 + x49 + x55 + x120 + x133 + x136 + x138 + x173 + x174 ++ x175 + x176 + x178 + x225 + x232 + x235 + x259 + x263 + x296 + x314 ++ x381 + x385 + x387 + x405 + x407 + x409 + x412 + x440 + x449 + x451 ++ x453 + x486 + x488 + x496 <= 1 + +x39 + x40 + x42 + x43 + x47 + x50 + x54 + x55 + x65 + x93 ++ x95 + x99 + x104 + x105 + x150 + x151 + x152 + x154 + x170 + x171 ++ x196 + x198 + x199 + x207 + x213 + x239 + x240 + x241 + x242 + x243 ++ x262 + x268 + x276 + x278 + x281 + x282 + x283 + x288 + x290 + x293 ++ x294 + x298 + x302 + x329 + x330 + x331 + x332 + x333 + x334 + x338 ++ x348 + x349 + x358 + x359 + x360 + x364 + x365 + x366 + x367 + x368 ++ x370 + x372 + x374 + x375 + x376 + x378 + x384 + x386 + x387 + x410 ++ x414 + x423 + x448 + x467 + x474 + x475 + x476 + x480 + x483 + x491 ++ x499 <= 1 + +x39 + x40 + x41 + x43 + x46 + x47 + x48 + x50 + x52 + x54 ++ x55 + x56 + x60 + x65 + x78 + x80 + x90 + x93 + x101 + x105 ++ x149 + x150 + x151 + x152 + x153 + x154 + x156 + x158 + x163 + x196 ++ x198 + x199 + x207 + x229 + x239 + x240 + x241 + x242 + x261 + x262 ++ x266 + x267 + x268 + x276 + x281 + x283 + x288 + x290 + x294 + x295 ++ x298 + x301 + x302 + x330 + x331 + x332 + x333 + x334 + x338 + x349 ++ x358 + x359 + x360 + x363 + x364 + x365 + x366 + x367 + x368 + x370 ++ x372 + x373 + x374 + x375 + x378 + x384 + x386 + x387 + x408 + x410 ++ x414 + x415 + x416 + x470 + x475 + x476 + x480 + x481 + x482 + x483 ++ x491 <= 1 + +x23 + x39 + x43 + x47 + x48 + x51 + x52 + x53 + x54 + x55 ++ x56 + x60 + x61 + x62 + x63 + x65 + x68 + x90 + x93 + x105 ++ x107 + x108 + x109 + x111 + x112 + x149 + x150 + x151 + x153 + x154 ++ x167 + x168 + x170 + x192 + x196 + x198 + x207 + x209 + x230 + x238 ++ x239 + x240 + x241 + x242 + x261 + x265 + x266 + x267 + x268 + x276 ++ x278 + x291 + x293 + x294 + x295 + x297 + x301 + x302 + x315 + x316 ++ x317 + x329 + x330 + x331 + x332 + x334 + x348 + x349 + x360 + x363 ++ x364 + x365 + x366 + x367 + x370 + x372 + x373 + x374 + x375 + x376 ++ x378 + x382 + x386 + x387 + x395 + x397 + x413 + x414 + x415 + x416 ++ x430 + x447 + x467 + x470 + x475 + x476 + x478 + x491 + x496 + x500 + <= 1 + +x23 + x36 + x47 + x48 + x50 + x51 + x52 + x53 + x54 + x55 ++ x56 + x100 + x107 + x108 + x110 + x111 + x112 + x147 + x149 + x150 ++ x151 + x153 + x154 + x160 + x166 + x168 + x170 + x183 + x192 + x198 ++ x199 + x208 + x209 + x210 + x211 + x213 + x226 + x227 + x230 + x231 ++ x239 + x240 + x241 + x242 + x262 + x275 + x276 + x278 + x288 + x291 ++ x295 + x297 + x315 + x317 + x359 + x360 + x361 + x362 + x363 + x364 ++ x365 + x367 + x370 + x372 + x373 + x374 + x375 + x376 + x386 + x387 ++ x397 + x415 + x416 + x432 + x440 + x447 + x467 + x470 + x491 <= 1 + +x3 + x20 + x33 + x38 + x47 + x51 + x52 + x53 + x54 + x55 ++ x56 + x57 + x58 + x93 + x107 + x108 + x109 + x110 + x147 + x149 ++ x150 + x151 + x153 + x154 + x166 + x168 + x170 + x208 + x209 + x210 ++ x211 + x212 + x213 + x226 + x227 + x229 + x231 + x234 + x238 + x239 ++ x240 + x241 + x242 + x261 + x262 + x275 + x276 + x278 + x279 + x291 ++ x292 + x297 + x334 + x359 + x360 + x361 + x362 + x363 + x364 + x365 ++ x366 + x367 + x373 + x375 + x376 + x387 + x415 + x417 + x443 + x447 ++ x498 <= 1 + +x18 + x20 + x35 + x37 + x38 + x47 + x50 + x55 + x85 + x89 ++ x91 + x93 + x106 + x134 + x149 + x150 + x154 + x170 + x176 + x183 ++ x226 + x227 + x228 + x229 + x231 + x238 + x239 + x240 + x241 + x242 ++ x257 + x258 + x260 + x278 + x279 + x285 + x286 + x287 + x290 + x291 ++ x313 + x317 + x334 + x387 + x443 + x446 + x447 + x448 <= 1 + +x16 + x18 + x19 + x46 + x47 + x53 + x55 + x64 + x85 + x118 ++ x119 + x121 + x122 + x133 + x135 + x149 + x176 + x183 + x207 + x224 ++ x225 + x231 + x240 + x242 + x257 + x260 + x275 + x279 + x285 + x286 ++ x287 + x290 + x291 + x296 + x376 + x381 + x402 + x439 + x443 + x444 ++ x446 + x447 + x448 + x478 <= 1 + +x19 + x46 + x52 + x64 + x69 + x82 + x85 + x87 + x118 + x119 ++ x122 + x123 + x129 + x133 + x134 + x135 + x136 + x149 + x173 + x176 ++ x207 + x220 + x223 + x225 + x231 + x259 + x286 + x287 + x296 + x357 ++ x362 + x373 + x376 + x379 + x381 + x412 + x429 + x430 + x432 + x437 ++ x439 + x440 + x443 + x444 + x446 + x448 + x478 <= 1 + +x45 + x46 + x49 + x54 + x64 + x82 + x87 + x124 + x127 + x129 ++ x134 + x135 + x136 + x176 + x238 + x259 + x286 + x287 + x291 + x292 ++ x296 + x340 + x362 + x376 + x377 + x379 + x381 + x428 + x429 + x432 ++ x437 + x439 + x440 + x443 + x444 + x448 <= 1 + +x45 + x46 + x54 + x87 + x127 + x129 + x134 + x242 + x362 + x376 ++ x377 + x378 + x380 + x381 + x385 + x432 + x437 + x439 + x440 + x444 ++ x448 <= 1 + +x29 + x45 + x48 + x51 + x56 + x62 + x65 + x95 + x99 + x100 ++ x135 + x150 + x151 + x152 + x154 + x160 + x171 + x196 + x197 + x198 ++ x212 + x240 + x243 + x268 + x282 + x288 + x293 + x294 + x302 + x329 ++ x330 + x331 + x332 + x333 + x338 + x340 + x359 + x366 + x372 + x384 ++ x387 + x410 + x413 + x414 + x423 + x430 + x448 + x474 + x475 + x483 ++ x491 + x499 <= 1 + +x32 + x45 + x48 + x51 + x54 + x56 + x62 + x63 + x90 + x95 ++ x99 + x100 + x112 + x160 + x167 + x170 + x171 + x197 + x198 + x212 ++ x238 + x243 + x265 + x267 + x268 + x288 + x291 + x293 + x294 + x329 ++ x330 + x331 + x332 + x333 + x340 + x366 + x372 + x384 + x413 + x414 ++ x419 + x423 + x430 + x458 + x483 + x499 + x500 <= 1 + +x29 + x32 + x47 + x48 + x51 + x53 + x54 + x55 + x56 + x60 ++ x61 + x62 + x63 + x64 + x90 + x93 + x107 + x108 + x112 + x149 ++ x150 + x151 + x153 + x154 + x155 + x160 + x167 + x168 + x170 + x208 ++ x209 + x210 + x211 + x212 + x213 + x238 + x240 + x261 + x262 + x265 ++ x266 + x267 + x268 + x276 + x279 + x288 + x291 + x294 + x295 + x301 ++ x315 + x316 + x317 + x318 + x322 + x323 + x325 + x329 + x331 + x348 ++ x360 + x363 + x365 + x366 + x370 + x372 + x373 + x374 + x375 + x377 ++ x382 + x386 + x396 + x397 + x412 + x413 + x414 + x415 + x416 + x429 ++ x430 + x441 + x458 + x467 + x475 + x476 + x478 + x496 + x498 + x500 + <= 1 + +x23 + x33 + x36 + x38 + x43 + x47 + x48 + x50 + x51 + x52 ++ x53 + x54 + x55 + x56 + x59 + x60 + x61 + x62 + x63 + x90 ++ x93 + x94 + x99 + x100 + x107 + x108 + x109 + x110 + x112 + x149 ++ x151 + x152 + x153 + x154 + x160 + x170 + x174 + x192 + x198 + x201 ++ x207 + x209 + x210 + x211 + x212 + x213 + x240 + x262 + x263 + x266 ++ x268 + x276 + x278 + x279 + x288 + x291 + x292 + x293 + x294 + x295 ++ x297 + x315 + x316 + x317 + x320 + x322 + x324 + x325 + x329 + x332 ++ x334 + x336 + x348 + x359 + x360 + x361 + x363 + x364 + x365 + x366 ++ x367 + x370 + x372 + x373 + x374 + x375 + x376 + x382 + x386 + x387 ++ x395 + x396 + x413 + x414 + x415 + x416 + x429 + x432 + x438 + x440 ++ x441 + x447 + x467 + x470 + x475 + x476 + x477 + x479 + x496 + x499 ++ x500 <= 1 + +x33 + x38 + x47 + x48 + x50 + x51 + x53 + x54 + x56 + x57 ++ x59 + x60 + x61 + x62 + x63 + x85 + x91 + x93 + x100 + x102 ++ x107 + x108 + x109 + x110 + x125 + x131 + x166 + x170 + x174 + x191 ++ x195 + x201 + x208 + x209 + x210 + x211 + x212 + x213 + x226 + x227 ++ x229 + x231 + x238 + x239 + x241 + x242 + x243 + x262 + x263 + x266 ++ x270 + x275 + x276 + x278 + x279 + x286 + x287 + x288 + x315 + x334 ++ x336 + x348 + x359 + x361 + x362 + x363 + x365 + x366 + x370 + x372 ++ x373 + x380 + x382 + x386 + x387 + x395 + x408 + x413 + x415 + x416 ++ x417 + x438 + x440 + x441 + x443 + x455 + x458 + x460 + x499 + x500 + <= 1 + +x33 + x35 + x37 + x50 + x82 + x85 + x89 + x91 + x93 + x102 ++ x103 + x104 + x106 + x145 + x148 + x149 + x150 + x208 + x209 + x210 ++ x211 + x213 + x227 + x238 + x239 + x241 + x242 + x243 + x257 + x258 ++ x263 + x269 + x274 + x275 + x279 + x286 + x287 + x334 + x370 + x390 ++ x417 + x438 + x440 + x441 + x443 + x445 + x447 + x455 + x456 + x458 ++ x498 + x499 + x500 <= 1 + +x7 + x11 + x22 + x33 + x34 + x35 + x36 + x37 + x45 + x46 ++ x51 + x53 + x54 + x67 + x68 + x82 + x83 + x84 + x85 + x93 ++ x101 + x102 + x104 + x106 + x119 + x144 + x145 + x148 + x150 + x151 ++ x180 + x184 + x192 + x201 + x208 + x209 + x211 + x225 + x227 + x238 ++ x239 + x241 + x242 + x243 + x269 + x274 + x279 + x286 + x287 + x295 ++ x357 + x379 + x380 + x381 + x383 + x385 + x412 + x428 + x429 + x430 ++ x437 + x439 + x440 + x441 + x444 + x445 + x456 + x475 + x481 + x495 ++ x499 + x500 <= 1 + +x6 + x7 + x34 + x36 + x37 + x45 + x46 + x49 + x51 + x54 ++ x64 + x82 + x84 + x119 + x123 + x133 + x144 + x150 + x173 + x175 ++ x176 + x192 + x223 + x225 + x227 + x238 + x269 + x279 + x286 + x287 ++ x291 + x292 + x295 + x296 + x357 + x362 + x376 + x379 + x380 + x381 ++ x393 + x412 + x428 + x429 + x430 + x431 + x432 + x439 + x444 + x445 ++ x456 + x495 + x499 <= 1 + +x34 + x45 + x46 + x49 + x51 + x53 + x124 + x126 + x127 + x129 ++ x143 + x238 + x269 + x286 + x287 + x291 + x292 + x296 + x362 + x376 ++ x377 + x378 + x380 + x428 + x429 + x430 + x431 + x432 + x437 + x439 ++ x440 <= 1 + +x32 + x34 + x45 + x46 + x49 + x53 + x54 + x87 + x127 + x129 ++ x269 + x362 + x376 + x377 + x378 + x379 + x380 + x381 + x385 + x428 ++ x432 + x444 <= 1 + +x29 + x45 + x48 + x56 + x71 + x90 + x95 + x99 + x100 + x151 ++ x152 + x167 + x171 + x197 + x198 + x265 + x267 + x270 + x291 + x329 ++ x332 + x333 + x345 + x348 + x367 + x413 + x414 + x466 + x474 + x475 ++ x476 + x478 <= 1 + +x51 + x56 + x70 + x71 + x95 + x97 + x99 + x100 + x153 + x155 ++ x159 + x160 + x167 + x208 + x224 + x238 + x240 + x264 + x265 + x267 ++ x268 + x288 + x294 + x316 + x318 + x322 + x323 + x330 + x332 + x333 ++ x335 + x340 + x363 + x366 + x382 + x419 + x423 + x429 + x430 + x432 ++ x457 + x466 + x474 + x475 + x476 + x477 + x478 + x499 + x500 <= 1 + +x27 + x29 + x32 + x63 + x64 + x70 + x71 + x77 + x90 + x91 ++ x95 + x97 + x99 + x100 + x112 + x152 + x153 + x155 + x159 + x160 ++ x167 + x208 + x212 + x224 + x238 + x240 + x243 + x264 + x265 + x267 ++ x269 + x276 + x278 + x288 + x294 + x301 + x315 + x316 + x318 + x320 ++ x322 + x323 + x329 + x330 + x331 + x332 + x333 + x335 + x339 + x340 ++ x363 + x365 + x370 + x372 + x374 + x375 + x377 + x382 + x384 + x415 ++ x416 + x429 + x430 + x432 + x466 + x470 + x474 + x475 + x476 + x477 ++ x478 + x498 + x500 <= 1 + +x21 + x23 + x24 + x27 + x30 + x31 + x32 + x48 + x51 + x52 ++ x53 + x54 + x56 + x60 + x61 + x62 + x92 + x93 + x94 + x95 ++ x96 + x99 + x100 + x103 + x108 + x109 + x110 + x144 + x148 + x152 ++ x153 + x167 + x169 + x174 + x209 + x212 + x213 + x240 + x243 + x264 ++ x269 + x276 + x279 + x291 + x292 + x293 + x294 + x295 + x315 + x316 ++ x317 + x318 + x320 + x321 + x322 + x323 + x324 + x325 + x336 + x338 ++ x339 + x340 + x359 + x360 + x361 + x370 + x371 + x372 + x373 + x374 ++ x375 + x386 + x387 + x396 + x413 + x416 + x429 + x432 + x438 + x466 ++ x467 + x470 + x477 + x479 + x496 + x498 + x499 + x500 <= 1 + +x35 + x38 + x47 + x51 + x52 + x53 + x54 + x89 + x91 + x92 ++ x94 + x102 + x103 + x107 + x110 + x125 + x143 + x144 + x146 + x150 ++ x159 + x166 + x172 + x191 + x195 + x201 + x208 + x209 + x212 + x213 ++ x238 + x239 + x241 + x242 + x243 + x262 + x270 + x272 + x278 + x279 ++ x312 + x315 + x320 + x321 + x324 + x334 + x335 + x336 + x337 + x338 ++ x361 + x362 + x363 + x370 + x371 + x373 + x374 + x375 + x377 + x378 ++ x379 + x380 + x382 + x386 + x388 + x389 + x390 + x408 + x409 + x417 ++ x445 + x447 + x455 + x459 + x460 + x496 + x499 + x500 <= 1 + +x22 + x33 + x35 + x37 + x38 + x51 + x52 + x53 + x54 + x56 ++ x68 + x85 + x89 + x91 + x92 + x93 + x94 + x101 + x102 + x103 ++ x104 + x106 + x143 + x144 + x145 + x146 + x148 + x150 + x181 + x196 ++ x199 + x201 + x209 + x210 + x211 + x213 + x233 + x238 + x239 + x241 ++ x242 + x243 + x257 + x263 + x270 + x271 + x272 + x279 + x286 + x287 ++ x289 + x312 + x318 + x324 + x335 + x336 + x337 + x357 + x361 + x362 ++ x367 + x370 + x371 + x377 + x379 + x380 + x381 + x383 + x385 + x386 ++ x388 + x390 + x409 + x417 + x421 + x424 + x438 + x443 + x444 + x445 ++ x447 + x455 + x456 + x457 + x459 + x460 + x461 + x481 + x495 + x498 ++ x499 + x500 <= 1 + +x11 + x22 + x34 + x36 + x45 + x51 + x54 + x67 + x68 + x83 ++ x84 + x89 + x93 + x94 + x101 + x102 + x104 + x106 + x128 + x143 ++ x144 + x145 + x146 + x147 + x148 + x150 + x177 + x180 + x184 + x196 ++ x201 + x209 + x210 + x211 + x213 + x227 + x238 + x239 + x241 + x242 ++ x243 + x269 + x270 + x271 + x274 + x279 + x289 + x325 + x357 + x361 ++ x367 + x379 + x380 + x381 + x383 + x384 + x385 + x430 + x433 + x441 ++ x445 + x447 + x459 + x461 + x475 + x481 + x495 + x499 <= 1 + +x4 + x6 + x28 + x36 + x37 + x45 + x46 + x49 + x51 + x53 ++ x54 + x56 + x64 + x68 + x82 + x83 + x84 + x86 + x102 + x124 ++ x125 + x126 + x127 + x128 + x129 + x143 + x144 + x145 + x147 + x175 ++ x177 + x180 + x182 + x183 + x184 + x190 + x192 + x201 + x209 + x211 ++ x223 + x225 + x227 + x238 + x241 + x269 + x279 + x286 + x287 + x291 ++ x292 + x295 + x296 + x357 + x362 + x378 + x379 + x380 + x383 + x385 ++ x391 + x393 + x412 + x428 + x429 + x430 + x431 + x432 + x433 + x437 ++ x439 + x440 + x441 + x442 + x444 + x445 + x475 + x495 + x499 <= 1 + +x45 + x46 + x49 + x51 + x53 + x54 + x56 + x67 + x68 + x86 ++ x89 + x124 + x126 + x127 + x128 + x129 + x143 + x238 + x291 + x296 ++ x306 + x356 + x357 + x361 + x362 + x366 + x376 + x377 + x378 + x379 ++ x380 + x383 + x385 + x412 + x428 + x429 + x430 + x431 + x433 + x437 ++ x439 + x440 + x441 + x442 + x445 + x495 + x499 <= 1 + +x1 + x23 + x32 + x45 + x46 + x49 + x51 + x53 + x54 + x56 ++ x67 + x87 + x124 + x129 + x147 + x163 + x191 + x233 + x243 + x306 ++ x356 + x362 + x376 + x377 + x378 + x379 + x380 + x385 + x412 + x428 ++ x430 + x437 + x439 + x440 + x441 + x499 <= 1 + +x29 + x31 + x45 + x51 + x55 + x56 + x68 + x71 + x76 + x90 ++ x91 + x95 + x99 + x111 + x113 + x114 + x116 + x117 + x155 + x159 ++ x160 + x167 + x208 + x238 + x265 + x267 + x270 + x316 + x318 + x329 ++ x332 + x333 + x345 + x363 + x368 + x370 + x372 + x374 + x382 + x432 ++ x466 + x474 + x475 + x476 + x477 + x478 + x479 + x493 <= 1 + +x26 + x29 + x31 + x32 + x51 + x56 + x66 + x68 + x70 + x71 ++ x76 + x77 + x90 + x91 + x92 + x95 + x97 + x98 + x99 + x100 ++ x111 + x116 + x117 + x152 + x155 + x159 + x160 + x161 + x167 + x169 ++ x172 + x208 + x238 + x240 + x243 + x264 + x265 + x267 + x269 + x270 ++ x294 + x313 + x316 + x318 + x320 + x322 + x323 + x325 + x329 + x330 ++ x332 + x333 + x370 + x372 + x374 + x375 + x377 + x382 + x384 + x416 ++ x429 + x430 + x432 + x465 + x466 + x470 + x474 + x475 + x476 + x477 ++ x478 + x479 <= 1 + +x26 + x27 + x29 + x31 + x32 + x48 + x66 + x71 + x89 + x90 ++ x91 + x92 + x95 + x97 + x99 + x100 + x111 + x146 + x152 + x153 ++ x159 + x160 + x167 + x195 + x208 + x212 + x238 + x240 + x243 + x264 ++ x265 + x267 + x269 + x270 + x313 + x316 + x317 + x318 + x320 + x321 ++ x322 + x323 + x324 + x325 + x329 + x333 + x335 + x337 + x339 + x340 ++ x363 + x368 + x377 + x382 + x384 + x430 + x432 + x464 + x466 + x470 ++ x474 + x475 + x476 + x477 + x478 + x479 + x496 + x498 + x500 <= 1 + +x21 + x23 + x24 + x26 + x27 + x30 + x31 + x32 + x44 + x48 ++ x51 + x53 + x54 + x56 + x60 + x61 + x71 + x73 + x89 + x90 ++ x91 + x92 + x94 + x95 + x96 + x97 + x99 + x100 + x102 + x103 ++ x106 + x146 + x148 + x152 + x153 + x159 + x167 + x169 + x172 + x195 ++ x208 + x212 + x213 + x238 + x239 + x240 + x243 + x265 + x267 + x269 ++ x270 + x289 + x291 + x293 + x294 + x315 + x316 + x317 + x318 + x320 ++ x321 + x322 + x323 + x324 + x325 + x335 + x336 + x337 + x338 + x339 ++ x340 + x360 + x361 + x362 + x370 + x371 + x373 + x374 + x375 + x377 ++ x378 + x432 + x438 + x466 + x467 + x470 + x474 + x479 + x496 + x498 ++ x499 + x500 <= 1 + +x10 + x21 + x27 + x35 + x47 + x51 + x52 + x53 + x54 + x56 ++ x73 + x89 + x90 + x91 + x92 + x94 + x96 + x97 + x99 + x102 ++ x103 + x106 + x110 + x125 + x138 + x146 + x148 + x153 + x159 + x172 ++ x191 + x193 + x194 + x195 + x210 + x212 + x260 + x265 + x267 + x269 ++ x270 + x279 + x291 + x315 + x316 + x318 + x320 + x321 + x322 + x323 ++ x324 + x325 + x334 + x335 + x336 + x337 + x338 + x339 + x340 + x361 ++ x362 + x370 + x371 + x373 + x374 + x375 + x377 + x378 + x379 + x380 ++ x382 + x383 + x384 + x386 + x388 + x389 + x408 + x409 + x417 + x420 ++ x421 + x422 + x438 + x447 + x466 + x467 + x470 + x495 + x496 + x498 ++ x499 + x500 <= 1 + +x9 + x10 + x30 + x50 + x51 + x53 + x54 + x56 + x67 + x72 ++ x74 + x75 + x83 + x89 + x91 + x92 + x93 + x94 + x102 + x103 ++ x106 + x125 + x139 + x140 + x143 + x144 + x145 + x146 + x148 + x152 ++ x180 + x181 + x183 + x194 + x195 + x196 + x201 + x210 + x233 + x234 ++ x239 + x241 + x242 + x243 + x265 + x270 + x272 + x279 + x287 + x289 ++ x318 + x320 + x321 + x322 + x323 + x324 + x325 + x335 + x336 + x337 ++ x361 + x371 + x377 + x378 + x379 + x380 + x381 + x409 + x421 + x422 ++ x424 + x438 + x444 + x457 + x461 + x495 + x498 + x500 <= 1 + +x0 + x3 + x4 + x11 + x12 + x28 + x34 + x49 + x50 + x51 ++ x53 + x54 + x56 + x67 + x74 + x83 + x84 + x86 + x89 + x91 ++ x92 + x93 + x94 + x101 + x102 + x103 + x106 + x124 + x125 + x126 ++ x128 + x143 + x144 + x145 + x146 + x147 + x148 + x177 + x179 + x180 ++ x181 + x182 + x183 + x193 + x194 + x201 + x203 + x238 + x239 + x241 ++ x243 + x270 + x271 + x273 + x289 + x292 + x318 + x321 + x324 + x325 ++ x357 + x361 + x362 + x371 + x377 + x378 + x379 + x380 + x381 + x382 ++ x383 + x384 + x385 + x398 + x399 + x409 + x419 + x422 + x424 + x430 ++ x431 + x433 + x445 + x457 + x495 + x496 + x498 <= 1 + +x1 + x3 + x4 + x28 + x45 + x46 + x49 + x51 + x53 + x54 ++ x67 + x82 + x83 + x84 + x86 + x89 + x101 + x102 + x106 + x124 ++ x126 + x127 + x128 + x129 + x143 + x144 + x145 + x147 + x175 + x177 ++ x179 + x180 + x181 + x182 + x183 + x184 + x190 + x191 + x192 + x193 ++ x194 + x201 + x223 + x225 + x230 + x238 + x239 + x241 + x243 + x292 ++ x321 + x356 + x357 + x361 + x362 + x371 + x376 + x377 + x378 + x379 ++ x380 + x391 + x392 + x393 + x412 + x428 + x429 + x430 + x431 + x433 ++ x441 + x445 + x495 + x498 + x499 <= 1 + +x1 + x4 + x13 + x28 + x45 + x46 + x49 + x51 + x53 + x54 ++ x56 + x67 + x86 + x89 + x124 + x126 + x127 + x128 + x129 + x132 ++ x143 + x144 + x145 + x147 + x175 + x179 + x181 + x184 + x190 + x191 ++ x192 + x193 + x194 + x342 + x353 + x356 + x357 + x362 + x376 + x377 ++ x378 + x379 + x380 + x383 + x385 + x412 + x428 + x429 + x430 + x433 ++ x437 + x438 + x439 + x441 + x442 <= 1 + +x1 + x23 + x32 + x45 + x49 + x51 + x53 + x54 + x56 + x143 ++ x144 + x145 + x147 + x191 + x192 + x194 + x233 + x357 + x362 + x376 ++ x377 + x378 + x379 + x380 + x412 + x428 + x430 + x433 + x437 + x438 ++ x441 <= 1 + +x26 + x55 + x56 + x68 + x71 + x90 + x91 + x95 + x97 + x99 ++ x114 + x115 + x116 + x153 + x167 + x169 + x172 + x238 + x240 + x243 ++ x247 + x265 + x267 + x270 + x313 + x316 + x318 + x333 + x344 + x345 ++ x370 + x372 + x374 + x382 + x429 + x442 + x474 + x477 + x478 <= 1 + +x26 + x29 + x31 + x32 + x55 + x56 + x66 + x68 + x70 + x71 ++ x90 + x95 + x97 + x98 + x99 + x100 + x114 + x115 + x116 + x117 ++ x152 + x153 + x155 + x159 + x160 + x167 + x169 + x172 + x238 + x240 ++ x243 + x264 + x265 + x267 + x269 + x270 + x313 + x316 + x318 + x320 ++ x329 + x333 + x335 + x339 + x363 + x368 + x370 + x374 + x375 + x377 ++ x382 + x384 + x429 + x432 + x462 + x465 + x474 + x475 + x476 + x477 ++ x478 + x479 + x496 <= 1 + +x24 + x25 + x26 + x29 + x31 + x32 + x56 + x66 + x70 + x71 ++ x90 + x91 + x92 + x95 + x97 + x98 + x99 + x100 + x115 + x117 ++ x152 + x153 + x159 + x160 + x167 + x169 + x172 + x212 + x238 + x240 ++ x243 + x264 + x265 + x267 + x269 + x270 + x318 + x320 + x325 + x329 ++ x335 + x337 + x339 + x346 + x363 + x368 + x370 + x374 + x382 + x431 ++ x432 + x462 + x463 + x464 + x466 + x468 + x470 + x474 + x479 + x496 ++ x498 <= 1 + +x21 + x22 + x23 + x24 + x25 + x27 + x30 + x31 + x32 + x48 ++ x51 + x52 + x53 + x54 + x56 + x61 + x91 + x92 + x94 + x97 ++ x146 + x148 + x152 + x169 + x172 + x190 + x195 + x238 + x239 + x240 ++ x243 + x265 + x267 + x269 + x270 + x289 + x316 + x319 + x320 + x321 ++ x322 + x323 + x324 + x325 + x338 + x361 + x362 + x371 + x374 + x375 ++ x382 + x384 + x431 + x432 + x496 + x497 + x498 + x500 <= 1 + +x3 + x9 + x21 + x22 + x25 + x27 + x28 + x30 + x31 + x32 ++ x51 + x52 + x53 + x56 + x72 + x73 + x89 + x91 + x92 + x94 ++ x97 + x103 + x137 + x138 + x140 + x141 + x146 + x148 + x152 + x153 ++ x159 + x172 + x190 + x191 + x193 + x195 + x238 + x239 + x240 + x241 ++ x243 + x260 + x267 + x289 + x320 + x321 + x322 + x323 + x324 + x325 ++ x339 + x361 + x362 + x371 + x374 + x375 + x379 + x382 + x383 + x384 ++ x385 + x386 + x389 + x409 + x420 + x422 + x424 + x431 + x438 + x466 ++ x467 + x470 + x495 + x496 + x497 + x498 + x499 + x500 <= 1 + +x3 + x8 + x9 + x10 + x12 + x22 + x25 + x28 + x30 + x31 ++ x32 + x49 + x50 + x51 + x53 + x54 + x56 + x65 + x70 + x72 ++ x74 + x75 + x89 + x91 + x92 + x94 + x97 + x101 + x103 + x106 ++ x112 + x125 + x128 + x137 + x138 + x139 + x140 + x143 + x144 + x146 ++ x148 + x152 + x169 + x172 + x175 + x179 + x180 + x181 + x182 + x183 ++ x190 + x191 + x193 + x194 + x195 + x210 + x234 + x238 + x239 + x241 ++ x243 + x270 + x289 + x318 + x321 + x322 + x323 + x324 + x337 + x361 ++ x371 + x378 + x382 + x383 + x384 + x385 + x386 + x409 + x418 + x419 ++ x420 + x421 + x422 + x424 + x428 + x431 + x433 + x444 + x495 + x496 ++ x497 + x498 + x500 <= 1 + +x0 + x3 + x8 + x12 + x22 + x27 + x28 + x49 + x50 + x51 ++ x53 + x56 + x67 + x89 + x91 + x92 + x94 + x97 + x101 + x103 ++ x106 + x124 + x125 + x126 + x128 + x143 + x144 + x145 + x146 + x148 ++ x152 + x169 + x172 + x173 + x175 + x176 + x177 + x179 + x180 + x181 ++ x182 + x183 + x190 + x193 + x194 + x195 + x201 + x234 + x238 + x239 ++ x241 + x243 + x273 + x280 + x323 + x354 + x357 + x361 + x371 + x377 ++ x379 + x380 + x382 + x383 + x384 + x385 + x386 + x399 + x409 + x418 ++ x419 + x420 + x421 + x422 + x424 + x428 + x431 + x433 + x444 + x445 ++ x495 + x496 + x497 + x498 <= 1 + +x0 + x1 + x3 + x4 + x8 + x11 + x13 + x28 + x45 + x49 ++ x50 + x51 + x53 + x54 + x56 + x89 + x92 + x94 + x101 + x104 ++ x126 + x135 + x143 + x144 + x145 + x148 + x173 + x175 + x177 + x179 ++ x180 + x181 + x182 + x184 + x190 + x191 + x193 + x194 + x201 + x233 ++ x234 + x238 + x241 + x246 + x270 + x273 + x289 + x321 + x343 + x354 ++ x355 + x357 + x361 + x371 + x379 + x380 + x382 + x383 + x384 + x385 ++ x392 + x398 + x412 + x422 + x424 + x428 + x429 + x430 + x431 + x433 ++ x437 + x438 + x441 + x442 + x445 + x495 + x496 + x497 + x498 <= 1 + +x0 + x1 + x3 + x4 + x13 + x28 + x45 + x49 + x51 + x53 ++ x54 + x56 + x67 + x83 + x84 + x86 + x89 + x92 + x101 + x102 ++ x104 + x106 + x126 + x127 + x130 + x131 + x132 + x143 + x144 + x145 ++ x147 + x173 + x175 + x176 + x177 + x179 + x180 + x181 + x182 + x184 ++ x190 + x191 + x192 + x193 + x194 + x220 + x238 + x241 + x277 + x292 ++ x321 + x341 + x342 + x343 + x353 + x354 + x355 + x357 + x371 + x383 ++ x385 + x392 + x412 + x428 + x429 + x430 + x431 + x433 + x437 + x438 ++ x441 + x442 + x495 <= 1 + +x1 + x4 + x45 + x49 + x53 + x54 + x67 + x89 + x101 + x102 ++ x104 + x106 + x126 + x147 + x156 + x176 + x177 + x179 + x180 + x181 ++ x182 + x184 + x190 + x191 + x238 + x241 + x277 + x341 + x342 + x353 ++ x354 + x355 + x357 + x371 + x428 + x429 + x433 + x437 + x438 + x441 ++ x442 <= 1 + +x56 + x90 + x114 + x115 + x167 + x169 + x172 + x173 + x240 + x265 ++ x267 + x269 + x270 + x316 + x318 + x329 + x333 + x344 + x346 + x368 ++ x374 + x378 + x382 + x429 + x432 + x463 + x474 + x478 <= 1 + +x24 + x25 + x26 + x29 + x56 + x66 + x68 + x70 + x71 + x95 ++ x97 + x98 + x99 + x100 + x111 + x153 + x159 + x167 + x169 + x172 ++ x240 + x264 + x265 + x267 + x269 + x316 + x318 + x329 + x333 + x337 ++ x339 + x344 + x346 + x368 + x370 + x374 + x382 + x429 + x432 + x462 ++ x463 + x464 + x465 + x468 + x474 + x478 + x479 <= 1 + +x21 + x24 + x25 + x26 + x28 + x30 + x31 + x50 + x66 + x68 ++ x70 + x71 + x90 + x91 + x92 + x95 + x97 + x99 + x100 + x111 ++ x153 + x167 + x169 + x171 + x172 + x243 + x264 + x265 + x267 + x269 ++ x270 + x295 + x316 + x318 + x329 + x333 + x339 + x370 + x374 + x382 ++ x429 + x431 + x432 + x468 + x474 + x478 + x479 <= 1 + +x21 + x24 + x25 + x27 + x28 + x30 + x31 + x51 + x52 + x53 ++ x56 + x66 + x70 + x80 + x91 + x92 + x94 + x97 + x141 + x146 ++ x148 + x152 + x168 + x169 + x172 + x195 + x238 + x239 + x240 + x243 ++ x264 + x265 + x269 + x318 + x361 + x370 + x374 + x382 + x384 + x417 ++ x428 + x431 + x432 + x433 + x469 <= 1 + +x8 + x9 + x10 + x12 + x21 + x27 + x28 + x31 + x51 + x52 ++ x53 + x56 + x70 + x89 + x91 + x92 + x97 + x103 + x137 + x141 ++ x146 + x168 + x169 + x172 + x211 + x239 + x243 + x275 + x289 + x374 ++ x384 + x394 + x409 + x417 + x420 + x428 + x433 + x470 <= 1 + +x8 + x9 + x10 + x11 + x12 + x25 + x27 + x28 + x30 + x31 ++ x51 + x52 + x53 + x54 + x56 + x65 + x70 + x75 + x91 + x92 ++ x97 + x103 + x125 + x128 + x137 + x139 + x140 + x141 + x146 + x149 ++ x152 + x169 + x172 + x175 + x177 + x183 + x190 + x193 + x194 + x195 ++ x210 + x234 + x239 + x243 + x280 + x289 + x324 + x337 + x357 + x361 ++ x371 + x378 + x379 + x380 + x382 + x383 + x384 + x385 + x391 + x394 ++ x417 + x419 + x420 + x421 + x428 + x431 + x433 + x495 + x496 + x497 ++ x498 <= 1 + +x8 + x9 + x10 + x11 + x12 + x22 + x27 + x28 + x31 + x51 ++ x52 + x53 + x56 + x70 + x92 + x94 + x97 + x103 + x124 + x125 ++ x128 + x139 + x143 + x146 + x149 + x152 + x169 + x172 + x173 + x175 ++ x177 + x181 + x182 + x183 + x193 + x194 + x233 + x234 + x280 + x289 ++ x357 + x361 + x371 + x377 + x379 + x380 + x382 + x383 + x384 + x385 ++ x386 + x394 + x406 + x417 + x419 + x420 + x421 + x428 + x431 + x433 ++ x495 + x497 + x498 <= 1 + +x0 + x4 + x13 + x45 + x49 + x51 + x53 + x54 + x56 + x89 ++ x90 + x92 + x101 + x130 + x135 + x145 + x147 + x148 + x173 + x175 ++ x177 + x179 + x184 + x190 + x193 + x238 + x241 + x245 + x246 + x343 ++ x357 + x383 + x428 + x430 + x431 + x433 + x437 + x442 + x452 + x495 ++ x497 <= 1 + +x0 + x1 + x13 + x45 + x49 + x54 + x56 + x86 + x89 + x92 ++ x101 + x104 + x127 + x130 + x131 + x132 + x142 + x145 + x147 + x173 ++ x175 + x177 + x179 + x182 + x184 + x238 + x241 + x245 + x292 + x341 ++ x343 + x357 + x412 + x428 + x431 + x433 + x437 + x438 + x442 + x495 ++ x497 <= 1 + +x13 + x49 + x66 + x67 + x89 + x101 + x142 + x177 + x179 + x182 ++ x184 + x238 + x241 + x341 + x342 + x353 + x355 + x428 + x431 + x433 ++ x437 + x438 + x441 + x495 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 <= 1 + +x8 + x9 + x10 + x11 + x12 + x13 <= 1 + +x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 <= 1 + +x27 + x28 + x29 + x30 + x31 + x32 <= 1 + +x33 + x34 + x35 + x36 + x37 + x38 <= 1 + +x39 + x40 + x41 + x42 + x43 + x44 <= 1 + +x45 + x46 + x47 + x48 + x49 + x50 <= 1 + +x51 + x52 + x53 + x54 + x55 + x56 <= 1 + +x57 + x58 <= 1 + +x60 + x61 + x62 + x63 + x64 + x65 <= 1 + +x66 + x67 + x68 + x69 + x70 + x71 <= 1 + +x72 + x73 + x74 + x75 <= 1 + +x76 + x77 <= 1 + +x78 + x79 + x80 + x81 <= 1 + +x82 + x83 + x84 + x85 + x86 + x87 <= 1 + +x89 + x90 + x91 + x92 + x93 + x94 <= 1 + +x95 + x96 + x97 + x98 + x99 + x100 <= 1 + +x101 + x102 + x103 + x104 + x105 + x106 <= 1 + +x107 + x108 + x109 + x110 + x111 + x112 <= 1 + +x114 + x115 + x116 + x117 <= 1 + +x118 + x119 + x120 + x121 + x122 + x123 <= 1 + +x124 + x125 + x126 + x127 + x128 + x129 <= 1 + +x130 + x131 + x132 <= 1 + +x133 + x134 + x135 + x136 <= 1 + +x137 + x138 + x139 + x140 + x141 <= 1 + +x143 + x144 + x145 + x146 + x147 + x148 <= 1 + +x149 + x150 + x151 + x152 + x153 + x154 <= 1 + +x155 + x156 + x157 + x158 + x159 + x160 <= 1 + +x161 + x162 + x163 + x164 + x165 + x166 <= 1 + +x167 + x168 + x169 + x170 + x171 + x172 <= 1 + +x173 + x174 + x175 + x176 + x177 + x178 <= 1 + +x179 + x180 + x181 + x182 + x183 + x184 <= 1 + +x185 + x186 + x187 + x188 + x189 <= 1 + +x190 + x191 + x192 + x193 + x194 + x195 <= 1 + +x196 + x197 + x198 + x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x208 + x209 + x210 + x211 + x212 + x213 <= 1 + +x214 + x215 + x216 + x217 + x218 + x219 <= 1 + +x220 + x221 + x222 + x223 + x224 + x225 <= 1 + +x226 + x227 + x228 + x229 + x230 + x231 <= 1 + +x232 + x233 + x234 + x235 + x236 + x237 <= 1 + +x238 + x239 + x240 + x241 + x242 + x243 <= 1 + +x245 + x246 <= 1 + +x247 + x248 + x249 + x250 + x251 + x252 <= 1 + +x253 + x254 + x255 + x256 + x257 + x258 <= 1 + +x259 + x260 + x261 + x262 + x263 + x264 <= 1 + +x265 + x266 + x267 + x268 + x269 + x270 <= 1 + +x271 + x272 + x273 + x274 <= 1 + +x275 + x276 + x277 + x278 + x279 + x280 <= 1 + +x281 + x282 + x283 + x284 <= 1 + +x285 + x286 + x287 + x288 + x289 + x290 <= 1 + +x291 + x292 + x293 + x294 + x295 + x296 <= 1 + +x297 + x298 + x299 + x300 + x301 + x302 <= 1 + +x303 + x304 + x305 <= 1 + +x307 + x308 <= 1 + +x309 + x310 + x311 + x312 <= 1 + +x313 + x314 + x315 + x316 + x317 + x318 <= 1 + +x320 + x321 + x322 + x323 + x324 + x325 <= 1 + +x326 + x327 + x328 <= 1 + +x329 + x330 + x331 + x332 + x333 + x334 <= 1 + +x335 + x336 + x337 + x338 + x339 + x340 <= 1 + +x341 + x342 + x343 <= 1 + +x344 + x345 + x346 <= 1 + +x347 + x348 + x349 + x350 + x351 + x352 <= 1 + +x353 + x354 + x355 + x356 <= 1 + +x357 + x358 + x359 + x360 + x361 + x362 <= 1 + +x363 + x364 + x365 + x366 + x367 + x368 <= 1 + +x370 + x371 + x372 + x373 + x374 + x375 <= 1 + +x376 + x377 + x378 + x379 + x380 + x381 <= 1 + +x382 + x383 + x384 + x385 + x386 + x387 <= 1 + +x388 + x389 + x390 <= 1 + +x391 + x392 + x393 + x394 <= 1 + +x395 + x396 + x397 <= 1 + +x398 + x399 <= 1 + +x400 + x401 + x402 + x403 + x404 + x405 <= 1 + +x407 + x408 + x409 + x410 + x411 + x412 <= 1 + +x413 + x414 + x415 + x416 + x417 + x418 <= 1 + +x419 + x420 + x421 + x422 + x423 + x424 <= 1 + +x425 + x426 + x427 <= 1 + +x428 + x429 + x430 + x431 + x432 + x433 <= 1 + +x434 + x435 + x436 <= 1 + +x437 + x438 + x439 + x440 + x441 + x442 <= 1 + +x443 + x444 + x445 + x446 + x447 + x448 <= 1 + +x449 + x450 + x451 <= 1 + +x453 + x454 <= 1 + +x455 + x456 + x457 + x458 <= 1 + +x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 <= 1 + +x466 + x467 + x468 + x469 + x470 + x471 <= 1 + +x472 + x473 <= 1 + +x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 + x488 <= 1 + +x489 + x490 + x491 + x492 + x493 + x494 <= 1 + +x495 + x496 + x497 + x498 + x499 + x500 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0010.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0010.lp new file mode 100644 index 000000000..791e1658e --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0010.lp @@ -0,0 +1,1085 @@ +max + +1514.61x0 + 1552.4x1 + 1528.59x2 + 1521.56x3 + 1494.42x4 + 1494.01x5 + 828.052x6 + 890.094x7 + 872.654x8 + 864.048x9 + +802.331x10 + 776.752x11 + 799.7x12 + 948.49x13 + 872.301x14 + 828.108x15 + 758.147x16 + 721.376x17 + 389.248x18 + 526.021x19 + +512.064x20 + 500.038x21 + 485.084x22 + 426.372x23 + 738.086x24 + 837.465x25 + 764.159x26 + 762.708x27 + 757.375x28 + 726.99x29 + +3377.96x30 + 3784.36x31 + 3760.04x32 + 3690.57x33 + 3640.04x34 + 3619.66x35 + 358.185x36 + 444.636x37 + 441.409x38 + 370.786x39 + +873.913x40 + 779.659x41 + 700.933x42 + 683.783x43 + 634.966x44 + 633.684x45 + 134.196x46 + 173.943x47 + 111.296x48 + 326.203x49 + +331.638x50 + 310.715x51 + 303.665x52 + 188.518x53 + 1242.63x54 + 1797.87x55 + 1743.54x56 + 1737.14x57 + 1725.16x58 + 1695.37x59 + +141.955x60 + 211.794x61 + 126.228x62 + 498.639x63 + 659.63x64 + 648.526x65 + 643.335x66 + 604.194x67 + 574.013x68 + 994.395x69 + +990.725x70 + 960.859x71 + 934.86x72 + 910.347x73 + 907.675x74 + 341.244x75 + 471.456x76 + 426.483x77 + 395.766x78 + 340.208x79 + +325.5x80 + 980.58x81 + 1082.56x82 + 1073.4x83 + 1046.69x84 + 1029.96x85 + 1001.03x86 + 510.983x87 + 762.161x88 + 744.489x89 + +683.324x90 + 652.604x91 + 616.385x92 + 763.075x93 + 890.245x94 + 884.103x95 + 870.943x96 + 867.309x97 + 845.191x98 + 445.77x99 + +444.975x100 + 390.524x101 + 353.201x102 + 341.121x103 + 326.934x104 + 598.908x105 + 839.213x106 + 693.736x107 + 679.969x108 + 629.149x109 + +621.785x110 + 97.369x111 + 220.786x112 + 151.403x113 + 744.023x114 + 716.675x115 + 714.931x116 + 713.699x117 + 701.385x118 + 663.922x119 + +713.625x120 + 733.891x121 + 709.916x122 + 690.302x123 + 672.094x124 + 670.922x125 + 130.544x126 + 139.548x127 + 115.055x128 + 894.74x129 + +1167.01x130 + 1132.48x131 + 1116.96x132 + 1115.08x133 + 1102.58x134 + 468.644x135 + 516.758x136 + 513.758x137 + 483.143x138 + 477.641x139 + +428.313x140 + 138.998x141 + 206.748x142 + 131.366x143 + 1279.15x144 + 1547.18x145 + 1518.24x146 + 1469.62x147 + 1432.99x148 + 1419.28x149 + +95.6885x150 + 604.367x151 + 785.936x152 + 702.747x153 + 700.866x154 + 663.878x155 + 656.836x156 + 3322.45x157 + 3795.95x158 + 3766.15x159 + +3694.18x160 + 3620.53x161 + 3617.11x162 + 610.844x163 + 883.421x164 + 872.239x165 + 864.245x166 + 825.571x167 + 811.919x168 + 908.342x169 + +1081.25x170 + 1030.6x171 + 986.342x172 + 951.645x173 + 917.859x174 + 217.473x175 + 212.934x176 + 112.232x177 + 1202.27x178 + 1520.41x179 + +1474.75x180 + 1390.53x181 + 1385.99x182 + 1378.27x183 + 1636.82x184 + 1714.33x185 + 1692x186 + 1661.85x187 + 1647.61x188 + 1645.62x189 + +1400.83x190 + 1665.26x191 + 1638.08x192 + 1563.39x193 + 1555.67x194 + 1484x195 + 1037.86x196 + 1357.17x197 + 1277.73x198 + 1263.36x199 + +1257.68x200 + 1224.43x201 + 923.852x202 + 1150.35x203 + 1069.66x204 + 1021.55x205 + 1010.97x206 + 977.29x207 + 260.989x208 + 272.831x209 + +253.319x210 + 210.389x211 + 140.676x212 + 404.906x213 + 467.851x214 + 436.121x215 + 391.8x216 + 351.975x217 + 340.034x218 + 447.941x219 + +650.331x220 + 624.979x221 + 534.777x222 + 483.283x223 + 459.876x224 + 326.334x225 + 273.65x226 + 230.288x227 + 218.644x228 + 124.022x229 + +130.142x230 + 182.45x231 + 178.583x232 + 99.2723x233 + 390.595x234 + 523.013x235 + 410.461x236 + 406.017x237 + 402.254x238 + 397.609x239 + +331.238x240 + 422.837x241 + 358.256x242 + 316.329x243 + 277.197x244 + 257.855x245 + 456.766x246 + 580.742x247 + 578.102x248 + 572.679x249 + +571.185x250 + 570.401x251 + 171.806x252 + 255.086x253 + 191.326x254 + 148.725x255 + 790.004x256 + 986.935x257 + 981.511x258 + 959.381x259 + +925.685x260 + 838.584x261 + 191.924x262 + 248.778x263 + 205.604x264 + 249.71x265 + 134.404x266 + 1131.96x267 + 1244.08x268 + 1238.4x269 + +1224.94x270 + 1199.7x271 + 1181.43x272 + 112.618x273 + 1204.01x274 + 1349.03x275 + 1302.05x276 + 1268.84x277 + 1266.59x278 + 1241.73x279 + +294.183x280 + 331.668x281 + 295.873x282 + 274.129x283 + 273.851x284 + 1635.65x285 + 2000.25x286 + 1918.32x287 + 1859.5x288 + 1825.34x289 + +1755.4x290 + 1342.65x291 + 1447.37x292 + 1409.75x293 + 1400.97x294 + 1393.3x295 + 1383.77x296 + 220.469x297 + 318.415x298 + 258.705x299 + +15.4822x300 + 300.501x301 + 279.732x302 + 239.306x303 + 203.27x304 + 348.498x305 + 495.055x306 + 373.262x307 + 369.161x308 + 362.698x309 + +319.314x310 + 102.46x311 + 110.631x312 + 696.952x313 + 971.839x314 + 935.666x315 + 891.15x316 + 861.411x317 + 858.217x318 + 184.57x319 + +238.716x320 + 232.349x321 + 224.517x322 + 197.168x323 + 788.656x324 + 975.244x325 + 926.088x326 + 906.541x327 + 861.262x328 + 831.366x329 + +309.528x330 + 350.95x331 + 314.424x332 + 278.367x333 + 263.882x334 + 106.669x335 + 675.461x336 + 803.002x337 + 786.232x338 + 715.478x339 + +710.249x340 + 638.51x341 + 602.222x342 + 667.053x343 + 637.863x344 + 589.558x345 + 575.417x346 + 562.949x347 + 702.999x348 + 774.058x349 + +759.265x350 + 723.815x351 + 695.946x352 + 686.288x353 + 552.653x354 + 578.362x355 + 563.308x356 + 529.808x357 + 499.541x358 + 470.368x359 + +961.578x360 + 1357.2x361 + 1347.24x362 + 1338.24x363 + 1318.6x364 + 1308.32x365 + 355.936x366 + 358.093x367 + 294.823x368 + 276.19x369 + +710.362x370 + 857.844x371 + 803.337x372 + 792.839x373 + 779.747x374 + 767.648x375 + 698.43x376 + 915.094x377 + 892.321x378 + 885.557x379 + +879.747x380 + 865.92x381 + 568.171x382 + 580.278x383 + 570.364x384 + 551.617x385 + 514.822x386 + 507.966x387 + 754.115x388 + 831.871x389 + +819.799x390 + 781.407x391 + 739.593x392 + 720.835x393 + 2429.21x394 + 2763.65x395 + 2696.32x396 + 2671.51x397 + 2642.94x398 + 2638.05x399 + +905.104x400 + 952.424x401 + 945.51x402 + 934.139x403 + 904.757x404 + 903.279x405 + 284.116x406 + 417.821x407 + 371.543x408 + 235.617x409 + +180.359x410 + 120.266x411 + 372.504x412 + 437.279x413 + 422.691x414 + 348.61x415 + 314.702x416 + 252.71x417 + 775.676x418 + 1096.25x419 + +965.499x420 + 946.532x421 + 909.181x422 + 861.5x423 + 197.495x424 + 196.762x425 + 146.096x426 + 834.888x427 + 800.426x428 + 790.125x429 + +756.967x430 + 753.626x431 + 701.585x432 + 186.957x433 + 206.09x434 + 1671.03x435 + 2180.55x436 + 2139.41x437 + 2112.25x438 + 2052.43x439 + +2051.35x440 + 61.4368x441 + 521.808x442 + 765.521x443 + 760.372x444 + 581.927x445 + 538.483x446 + 505.136x447 + 921.686x448 + 1229.26x449 + +1200.7x450 + 1164.71x451 + 1159.17x452 + 1155.58x453 + 240.473x454 + 251.211x455 + 162.601x456 + 173.863x457 + 215.57x458 + 212.664x459 + +343.758x460 + 481.184x461 + 477.846x462 + 451.326x463 + 446.982x464 + 371.423x465 + 34.0948x466 + 764.087x467 + 1127.32x468 + 964.062x469 + +872.28x470 + 835.517x471 + 833.93x472 + 82.2332x473 + 65.3965x474 + 1845.34x475 + 2369.42x476 + 2331.78x477 + 2302.64x478 + 2220.71x479 + +2198.32x480 + 851.486x481 + 1022.09x482 + 942.89x483 + 939.08x484 + 901.381x485 + 877.891x486 + 335.695x487 + 416.548x488 + 382.348x489 + +379.339x490 + 344.173x491 + 289.699x492 + 865.84x493 + 1287.15x494 + 1143.55x495 + 1117.09x496 + 1071.5x497 + 1055.7x498 + 344.279x499 + +496.871x500 + 484.238x501 + 481.554x502 + 335.509x503 + 332.436x504 + +st + +x17 + x54 + x55 + x219 + x221 + x223 + x224 + x254 + x313 + x394 ++ x436 + x448 + x452 + x476 + x499 + x503 + x504 <= 1 + +x16 + x17 + x31 + x54 + x55 + x77 + x113 + x129 + x211 + x219 ++ x221 + x222 + x223 + x224 + x313 + x317 + x394 + x448 + x452 + x499 ++ x500 + x501 + x503 + x504 <= 1 + +x0 + x4 + x16 + x17 + x31 + x55 + x129 + x130 + x157 + x161 ++ x177 + x210 + x219 + x222 + x223 + x224 + x291 + x313 + x397 + x399 ++ x438 + x448 + x456 + x475 + x476 + x499 + x500 + x501 + x502 + x503 ++ x504 <= 1 + +x0 + x1 + x4 + x31 + x34 + x119 + x129 + x130 + x131 + x144 ++ x145 + x147 + x157 + x243 + x274 + x277 + x286 + x291 + x397 + x399 ++ x425 + x435 + x438 + x440 + x448 + x449 + x453 + x456 + x475 + x476 ++ x499 + x500 + x501 + x502 + x504 <= 1 + +x0 + x1 + x3 + x4 + x30 + x31 + x34 + x54 + x57 + x119 ++ x129 + x130 + x131 + x132 + x133 + x134 + x140 + x144 + x145 + x147 ++ x157 + x162 + x179 + x182 + x243 + x277 + x285 + x291 + x311 + x314 ++ x365 + x390 + x393 + x399 + x419 + x435 + x438 + x448 + x449 + x453 ++ x460 + x475 + x476 + x499 + x500 + x501 + x502 + x504 <= 1 + +x0 + x1 + x3 + x4 + x30 + x34 + x96 + x114 + x119 + x129 ++ x130 + x131 + x132 + x133 + x134 + x144 + x147 + x153 + x157 + x162 ++ x243 + x285 + x291 + x292 + x296 + x311 + x363 + x365 + x394 + x397 ++ x399 + x435 + x438 + x440 + x448 + x449 + x453 + x499 + x502 + x504 + <= 1 + +x1 + x4 + x30 + x31 + x32 + x34 + x35 + x114 + x116 + x119 ++ x129 + x130 + x131 + x132 + x145 + x147 + x149 + x168 + x184 + x185 ++ x186 + x189 + x198 + x199 + x203 + x207 + x271 + x274 + x292 + x363 ++ x365 + x370 + x372 + x373 + x374 + x386 + x397 + x399 + x448 + x449 ++ x451 + x453 + x499 + x502 <= 1 + +x1 + x4 + x30 + x31 + x32 + x33 + x34 + x35 + x100 + x101 ++ x102 + x104 + x114 + x115 + x116 + x117 + x118 + x145 + x158 + x168 ++ x184 + x185 + x186 + x187 + x197 + x198 + x199 + x203 + x205 + x207 ++ x268 + x271 + x285 + x286 + x292 + x345 + x370 + x372 + x373 + x374 ++ x375 + x386 + x431 + x432 + x439 + x440 + x451 + x477 + x479 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 + x99 + x100 + x101 + x102 ++ x104 + x114 + x115 + x117 + x118 + x145 + x168 + x184 + x186 + x197 ++ x198 + x199 + x202 + x205 + x207 + x271 + x279 + x285 + x370 + x372 ++ x373 + x374 + x375 + x386 + x392 + x395 + x427 + x428 + x429 + x431 ++ x432 + x436 + x439 + x440 + x476 + x477 + x478 + x479 + x482 + x483 ++ x496 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 + x99 + x101 + x102 + x103 ++ x114 + x115 + x116 + x117 + x118 + x160 + x162 + x168 + x184 + x185 ++ x186 + x197 + x198 + x199 + x202 + x205 + x207 + x267 + x268 + x269 ++ x270 + x271 + x279 + x285 + x286 + x287 + x288 + x290 + x359 + x370 ++ x372 + x373 + x374 + x375 + x386 + x395 + x427 + x428 + x429 + x430 ++ x431 + x432 + x439 + x476 + x477 + x483 <= 1 + +x9 + x16 + x17 + x54 + x55 + x59 + x208 + x209 + x211 + x219 ++ x221 + x223 + x224 + x252 + x253 + x254 + x255 + x266 + x313 + x317 ++ x372 + x394 + x448 + x449 + x450 + x452 + x476 + x499 + x503 <= 1 + +x0 + x1 + x2 + x12 + x16 + x54 + x55 + x77 + x112 + x113 ++ x130 + x208 + x209 + x210 + x211 + x219 + x223 + x224 + x252 + x255 ++ x313 + x372 + x394 + x448 + x452 + x475 + x476 + x500 + x501 + x502 ++ x503 + x504 <= 1 + +x0 + x1 + x2 + x12 + x14 + x16 + x17 + x31 + x55 + x112 ++ x113 + x130 + x158 + x161 + x165 + x175 + x177 + x188 + x208 + x209 ++ x210 + x219 + x222 + x224 + x255 + x265 + x347 + x357 + x363 + x372 ++ x399 + x419 + x440 + x448 + x452 + x455 + x475 + x476 + x499 + x500 ++ x501 + x502 + x503 + x504 <= 1 + +x0 + x1 + x4 + x10 + x11 + x54 + x57 + x119 + x129 + x130 ++ x131 + x132 + x133 + x134 + x144 + x145 + x147 + x182 + x274 + x285 ++ x291 + x314 + x356 + x390 + x397 + x399 + x419 + x425 + x435 + x438 ++ x440 + x449 + x452 + x453 + x454 + x456 + x475 + x476 + x500 + x501 ++ x502 <= 1 + +x0 + x1 + x3 + x4 + x30 + x35 + x54 + x57 + x59 + x82 ++ x84 + x111 + x129 + x130 + x131 + x132 + x133 + x134 + x135 + x138 ++ x140 + x144 + x145 + x146 + x147 + x148 + x149 + x157 + x179 + x182 ++ x292 + x314 + x363 + x390 + x393 + x397 + x399 + x419 + x435 + x437 ++ x438 + x440 + x448 + x449 + x453 + x460 + x476 + x502 <= 1 + +x0 + x1 + x3 + x4 + x30 + x32 + x34 + x35 + x57 + x59 ++ x82 + x84 + x85 + x96 + x111 + x119 + x129 + x130 + x131 + x132 ++ x133 + x134 + x135 + x138 + x139 + x140 + x141 + x143 + x144 + x145 ++ x146 + x147 + x148 + x149 + x160 + x171 + x189 + x190 + x193 + x243 ++ x285 + x291 + x292 + x293 + x295 + x296 + x311 + x342 + x346 + x356 ++ x361 + x363 + x383 + x394 + x397 + x399 + x435 + x440 + x446 + x449 ++ x453 + x476 + x504 <= 1 + +x1 + x4 + x5 + x30 + x31 + x32 + x34 + x35 + x104 + x116 ++ x119 + x145 + x149 + x158 + x159 + x162 + x168 + x184 + x185 + x186 ++ x187 + x198 + x199 + x270 + x285 + x287 + x290 + x344 + x347 + x356 ++ x359 + x365 + x373 + x375 + x383 + x386 + x391 + x397 + x399 + x430 ++ x435 + x437 + x438 + x439 + x440 + x448 + x451 + x453 + x476 <= 1 + +x26 + x30 + x99 + x100 + x102 + x103 + x104 + x116 + x117 + x145 ++ x158 + x159 + x162 + x168 + x184 + x185 + x186 + x187 + x197 + x198 ++ x199 + x216 + x268 + x270 + x271 + x275 + x279 + x285 + x344 + x347 ++ x365 + x370 + x374 + x375 + x386 + x392 + x397 + x439 + x440 + x476 ++ x477 + x479 + x482 <= 1 + +x26 + x30 + x31 + x32 + x33 + x34 + x35 + x68 + x99 + x100 ++ x101 + x102 + x103 + x114 + x115 + x116 + x117 + x118 + x145 + x158 ++ x159 + x160 + x162 + x163 + x168 + x184 + x185 + x186 + x187 + x191 ++ x196 + x197 + x198 + x199 + x202 + x204 + x205 + x206 + x207 + x268 ++ x271 + x279 + x285 + x286 + x287 + x288 + x290 + x337 + x338 + x339 ++ x340 + x359 + x370 + x371 + x372 + x373 + x374 + x375 + x392 + x395 ++ x427 + x428 + x429 + x430 + x431 + x432 + x436 + x439 + x440 + x476 ++ x477 + x478 + x479 + x480 + x482 + x483 + x484 + x496 <= 1 + +x26 + x30 + x31 + x32 + x33 + x34 + x35 + x51 + x68 + x77 ++ x99 + x100 + x101 + x103 + x114 + x115 + x116 + x117 + x118 + x145 ++ x159 + x160 + x162 + x163 + x168 + x170 + x184 + x185 + x186 + x191 ++ x196 + x197 + x198 + x199 + x201 + x202 + x203 + x204 + x205 + x206 ++ x207 + x267 + x268 + x269 + x270 + x271 + x275 + x279 + x285 + x286 ++ x287 + x288 + x289 + x290 + x337 + x338 + x340 + x357 + x370 + x371 ++ x375 + x382 + x385 + x386 + x395 + x427 + x428 + x429 + x430 + x431 ++ x432 + x436 + x439 + x440 + x476 + x477 + x478 + x482 + x483 <= 1 + +x0 + x9 + x12 + x13 + x14 + x15 + x16 + x17 + x31 + x54 ++ x55 + x59 + x95 + x130 + x158 + x161 + x162 + x211 + x219 + x221 ++ x223 + x224 + x252 + x253 + x254 + x264 + x266 + x276 + x277 + x278 ++ x279 + x313 + x314 + x315 + x316 + x317 + x360 + x361 + x372 + x383 ++ x394 + x396 + x448 + x449 + x450 + x452 + x458 + x468 + x476 + x478 + <= 1 + +x0 + x1 + x2 + x6 + x9 + x12 + x13 + x14 + x15 + x16 ++ x17 + x31 + x54 + x55 + x59 + x130 + x144 + x145 + x147 + x158 ++ x161 + x162 + x165 + x175 + x176 + x188 + x194 + x195 + x209 + x210 ++ x219 + x222 + x223 + x224 + x253 + x264 + x265 + x277 + x279 + x361 ++ x363 + x372 + x435 + x448 + x449 + x450 + x452 + x475 + x476 + x478 + <= 1 + +x0 + x1 + x2 + x6 + x11 + x12 + x13 + x14 + x16 + x17 ++ x31 + x54 + x55 + x88 + x112 + x144 + x147 + x158 + x188 + x192 ++ x194 + x219 + x222 + x265 + x357 + x372 + x397 + x399 + x419 + x448 ++ x449 + x450 + x452 + x453 + x454 + x455 + x495 + x501 + x503 <= 1 + +x0 + x1 + x2 + x4 + x5 + x6 + x8 + x10 + x11 + x12 ++ x14 + x17 + x31 + x57 + x58 + x76 + x82 + x84 + x85 + x86 ++ x87 + x88 + x129 + x132 + x134 + x144 + x145 + x147 + x152 + x155 ++ x158 + x184 + x188 + x190 + x192 + x194 + x291 + x293 + x296 + x314 ++ x343 + x367 + x397 + x403 + x419 + x435 + x438 + x449 + x450 + x452 ++ x453 + x454 + x455 + x494 + x495 + x500 + x503 <= 1 + +x0 + x1 + x3 + x4 + x11 + x30 + x32 + x34 + x35 + x57 ++ x58 + x59 + x60 + x62 + x82 + x84 + x85 + x96 + x129 + x130 ++ x131 + x132 + x133 + x134 + x135 + x136 + x137 + x138 + x139 + x140 ++ x141 + x142 + x144 + x147 + x148 + x149 + x170 + x171 + x173 + x179 ++ x180 + x182 + x184 + x185 + x188 + x189 + x190 + x193 + x195 + x285 ++ x291 + x292 + x293 + x295 + x296 + x342 + x343 + x345 + x346 + x347 ++ x361 + x363 + x388 + x390 + x393 + x395 + x397 + x398 + x399 + x435 ++ x436 + x437 + x438 + x440 + x446 + x449 + x453 + x477 <= 1 + +x1 + x3 + x4 + x7 + x8 + x9 + x30 + x31 + x32 + x33 ++ x34 + x35 + x57 + x60 + x61 + x82 + x84 + x85 + x96 + x119 ++ x121 + x125 + x129 + x130 + x131 + x133 + x134 + x135 + x136 + x137 ++ x138 + x139 + x140 + x143 + x144 + x145 + x146 + x147 + x148 + x149 ++ x152 + x158 + x160 + x162 + x168 + x170 + x171 + x188 + x190 + x192 ++ x195 + x199 + x203 + x272 + x275 + x291 + x292 + x294 + x295 + x296 ++ x342 + x343 + x344 + x345 + x346 + x347 + x356 + x361 + x363 + x368 ++ x375 + x383 + x384 + x388 + x389 + x390 + x391 + x392 + x393 + x435 ++ x437 + x438 + x440 + x446 + x476 + x477 + x479 + x495 <= 1 + +x1 + x4 + x5 + x30 + x31 + x32 + x34 + x57 + x58 + x61 ++ x121 + x125 + x133 + x136 + x138 + x139 + x145 + x146 + x147 + x148 ++ x149 + x162 + x168 + x179 + x184 + x185 + x186 + x187 + x188 + x190 ++ x198 + x199 + x204 + x223 + x270 + x272 + x275 + x276 + x290 + x292 ++ x294 + x295 + x296 + x308 + x325 + x342 + x344 + x345 + x347 + x354 ++ x355 + x356 + x359 + x363 + x368 + x375 + x382 + x383 + x384 + x385 ++ x389 + x391 + x397 + x430 + x435 + x437 + x438 + x440 + x451 + x453 ++ x474 + x476 + x477 <= 1 + +x1 + x4 + x5 + x34 + x57 + x104 + x133 + x159 + x162 + x168 ++ x184 + x186 + x187 + x196 + x198 + x199 + x204 + x206 + x223 + x267 ++ x275 + x279 + x347 + x354 + x355 + x356 + x357 + x359 + x370 + x374 ++ x375 + x382 + x383 + x384 + x385 + x387 + x397 + x404 + x428 + x430 ++ x432 + x435 + x437 + x440 + x461 + x476 + x477 <= 1 + +x1 + x4 + x30 + x31 + x32 + x33 + x34 + x35 + x39 + x114 ++ x115 + x116 + x117 + x118 + x145 + x158 + x160 + x162 + x184 + x185 ++ x186 + x191 + x196 + x198 + x199 + x202 + x204 + x205 + x206 + x207 ++ x226 + x267 + x268 + x269 + x270 + x271 + x272 + x275 + x279 + x285 ++ x286 + x287 + x288 + x289 + x290 + x336 + x337 + x338 + x339 + x340 ++ x354 + x355 + x356 + x357 + x358 + x359 + x370 + x373 + x374 + x382 ++ x384 + x385 + x387 + x395 + x397 + x427 + x428 + x430 + x431 + x432 ++ x435 + x436 + x439 + x461 + x476 + x477 + x478 + x479 + x480 + x481 ++ x482 + x483 + x484 + x485 <= 1 + +x4 + x27 + x30 + x31 + x32 + x34 + x35 + x39 + x103 + x114 ++ x115 + x116 + x117 + x118 + x158 + x159 + x160 + x162 + x168 + x184 ++ x185 + x186 + x191 + x198 + x199 + x201 + x202 + x203 + x204 + x205 ++ x206 + x207 + x226 + x267 + x268 + x269 + x270 + x271 + x275 + x279 ++ x285 + x286 + x287 + x288 + x289 + x290 + x337 + x339 + x354 + x355 ++ x357 + x358 + x370 + x371 + x382 + x384 + x385 + x387 + x395 + x427 ++ x428 + x429 + x430 + x431 + x432 + x435 + x436 + x439 + x440 + x461 ++ x470 + x481 + x482 + x483 <= 1 + +x15 + x16 + x17 + x54 + x55 + x59 + x72 + x79 + x86 + x95 ++ x161 + x162 + x223 + x264 + x266 + x276 + x278 + x279 + x307 + x313 ++ x314 + x315 + x316 + x317 + x394 + x396 + x408 + x440 + x448 + x449 ++ x450 + x452 + x459 + x463 + x466 + x468 + x470 + x476 + x478 <= 1 + +x0 + x12 + x13 + x14 + x15 + x16 + x17 + x54 + x55 + x59 ++ x72 + x93 + x95 + x97 + x130 + x144 + x158 + x161 + x162 + x163 ++ x165 + x173 + x176 + x192 + x193 + x194 + x219 + x221 + x222 + x223 ++ x224 + x276 + x277 + x278 + x279 + x314 + x317 + x350 + x360 + x361 ++ x383 + x388 + x394 + x396 + x408 + x418 + x419 + x420 + x448 + x449 ++ x450 + x452 + x457 + x458 + x459 + x463 + x476 + x478 <= 1 + +x0 + x1 + x2 + x3 + x5 + x10 + x15 + x26 + x54 + x57 ++ x58 + x59 + x84 + x85 + x86 + x87 + x109 + x129 + x157 + x158 ++ x159 + x160 + x161 + x165 + x171 + x172 + x188 + x189 + x194 + x220 ++ x237 + x239 + x274 + x276 + x278 + x293 + x313 + x315 + x318 + x350 ++ x361 + x363 + x388 + x392 + x396 + x398 + x418 + x419 + x422 + x435 ++ x436 + x438 + x440 + x494 + x495 <= 1 + +x0 + x1 + x2 + x3 + x5 + x6 + x7 + x8 + x9 + x10 ++ x11 + x12 + x14 + x30 + x33 + x34 + x35 + x42 + x54 + x55 ++ x57 + x58 + x59 + x76 + x78 + x79 + x82 + x84 + x85 + x86 ++ x87 + x88 + x97 + x98 + x129 + x132 + x134 + x144 + x148 + x152 ++ x157 + x158 + x159 + x160 + x161 + x162 + x170 + x171 + x172 + x173 ++ x184 + x185 + x188 + x189 + x190 + x192 + x193 + x194 + x203 + x274 ++ x276 + x277 + x278 + x291 + x292 + x293 + x296 + x315 + x318 + x343 ++ x346 + x361 + x363 + x367 + x388 + x389 + x391 + x392 + x393 + x394 ++ x398 + x403 + x418 + x419 + x420 + x422 + x435 + x436 + x437 + x438 ++ x440 + x449 + x450 + x452 + x453 + x471 + x494 + x495 + x500 <= 1 + +x0 + x2 + x3 + x6 + x7 + x8 + x9 + x10 + x11 + x30 ++ x32 + x34 + x35 + x54 + x57 + x58 + x59 + x62 + x81 + x82 ++ x84 + x85 + x87 + x88 + x90 + x92 + x96 + x119 + x130 + x131 ++ x134 + x135 + x136 + x137 + x139 + x140 + x142 + x144 + x145 + x146 ++ x147 + x148 + x149 + x152 + x155 + x157 + x158 + x159 + x160 + x161 ++ x162 + x166 + x170 + x171 + x173 + x179 + x184 + x185 + x187 + x188 ++ x189 + x190 + x191 + x192 + x193 + x194 + x195 + x203 + x229 + x272 ++ x275 + x291 + x292 + x293 + x295 + x296 + x342 + x343 + x345 + x346 ++ x361 + x363 + x366 + x367 + x388 + x389 + x390 + x391 + x392 + x393 ++ x394 + x395 + x397 + x398 + x399 + x401 + x419 + x420 + x422 + x423 ++ x435 + x436 + x437 + x438 + x440 + x446 + x449 + x450 + x453 + x471 ++ x472 + x494 + x495 <= 1 + +x3 + x4 + x5 + x6 + x7 + x8 + x10 + x30 + x32 + x34 ++ x35 + x59 + x84 + x88 + x90 + x92 + x96 + x131 + x135 + x136 ++ x138 + x157 + x158 + x160 + x162 + x170 + x171 + x179 + x184 + x185 ++ x186 + x187 + x189 + x195 + x203 + x270 + x272 + x274 + x275 + x291 ++ x292 + x294 + x295 + x296 + x342 + x343 + x344 + x345 + x346 + x366 ++ x367 + x368 + x369 + x375 + x388 + x389 + x390 + x391 + x393 + x422 ++ x435 + x436 + x437 + x438 + x440 + x446 + x451 + x453 + x473 + x476 + <= 1 + +x4 + x5 + x11 + x30 + x57 + x58 + x59 + x74 + x81 + x82 ++ x88 + x89 + x90 + x96 + x121 + x133 + x157 + x158 + x159 + x162 ++ x165 + x179 + x184 + x185 + x186 + x187 + x190 + x267 + x270 + x272 ++ x275 + x276 + x290 + x291 + x292 + x294 + x295 + x296 + x344 + x355 ++ x359 + x366 + x368 + x382 + x384 + x388 + x389 + x390 + x391 + x393 ++ x395 + x435 + x437 + x438 + x440 + x451 + x453 + x473 + x474 + x476 ++ x477 + x480 <= 1 + +x4 + x30 + x32 + x33 + x34 + x57 + x58 + x81 + x82 + x89 ++ x90 + x121 + x148 + x157 + x158 + x162 + x184 + x185 + x186 + x187 ++ x188 + x204 + x207 + x267 + x268 + x269 + x270 + x272 + x275 + x285 ++ x286 + x287 + x288 + x290 + x292 + x294 + x295 + x296 + x339 + x344 ++ x366 + x374 + x379 + x387 + x389 + x390 + x395 + x435 + x438 + x440 ++ x451 + x476 + x477 + x478 + x479 + x480 + x482 <= 1 + +x4 + x30 + x31 + x32 + x33 + x34 + x35 + x36 + x39 + x57 ++ x118 + x121 + x148 + x157 + x158 + x160 + x162 + x184 + x185 + x186 ++ x188 + x191 + x196 + x198 + x199 + x202 + x204 + x206 + x207 + x227 ++ x228 + x267 + x268 + x269 + x270 + x271 + x272 + x275 + x285 + x286 ++ x287 + x288 + x290 + x292 + x293 + x295 + x296 + x317 + x336 + x337 ++ x338 + x339 + x340 + x341 + x354 + x358 + x370 + x374 + x379 + x385 ++ x387 + x395 + x429 + x436 + x438 + x439 + x476 + x477 + x478 + x479 ++ x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x27 + x34 + x37 + x158 + x159 + x162 + x184 + x186 + x198 + x199 ++ x201 + x202 + x203 + x204 + x206 + x207 + x225 + x226 + x267 + x268 ++ x271 + x275 + x285 + x286 + x287 + x288 + x289 + x290 + x292 + x293 ++ x337 + x338 + x341 + x354 + x355 + x357 + x358 + x371 + x385 + x427 ++ x428 + x429 + x430 + x431 + x432 + x436 + x437 + x439 + x461 + x477 ++ x478 + x479 + x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x5 + x13 + x30 + x54 + x75 + x79 + x80 + x93 + x94 + x95 ++ x97 + x146 + x163 + x189 + x192 + x274 + x276 + x278 + x279 + x305 ++ x307 + x313 + x314 + x315 + x316 + x317 + x318 + x360 + x361 + x394 ++ x408 + x435 + x448 + x450 + x452 + x466 + x476 + x478 <= 1 + +x0 + x1 + x5 + x12 + x13 + x14 + x15 + x16 + x30 + x54 ++ x55 + x59 + x75 + x76 + x78 + x79 + x93 + x94 + x95 + x97 ++ x132 + x146 + x157 + x160 + x161 + x162 + x163 + x165 + x166 + x187 ++ x189 + x192 + x193 + x194 + x219 + x220 + x221 + x222 + x224 + x234 ++ x237 + x238 + x239 + x274 + x276 + x277 + x278 + x279 + x293 + x305 ++ x307 + x313 + x314 + x315 + x316 + x318 + x350 + x360 + x361 + x394 ++ x396 + x398 + x418 + x419 + x420 + x421 + x423 + x435 + x437 + x450 ++ x452 + x457 + x458 + x459 + x471 + x478 <= 1 + +x0 + x1 + x2 + x3 + x5 + x6 + x7 + x10 + x11 + x12 ++ x13 + x15 + x22 + x24 + x26 + x29 + x34 + x35 + x42 + x54 ++ x55 + x56 + x57 + x58 + x59 + x75 + x76 + x78 + x79 + x85 ++ x86 + x87 + x91 + x93 + x97 + x109 + x129 + x132 + x157 + x158 ++ x159 + x160 + x161 + x162 + x165 + x166 + x167 + x169 + x170 + x171 ++ x172 + x173 + x185 + x189 + x190 + x192 + x193 + x194 + x203 + x220 ++ x221 + x222 + x234 + x237 + x238 + x239 + x274 + x276 + x277 + x278 ++ x291 + x293 + x296 + x313 + x314 + x315 + x316 + x318 + x350 + x360 ++ x361 + x363 + x392 + x394 + x395 + x396 + x398 + x402 + x403 + x418 ++ x419 + x420 + x421 + x422 + x423 + x435 + x438 + x450 + x453 + x467 ++ x471 + x472 + x494 + x495 + x496 <= 1 + +x2 + x5 + x6 + x7 + x8 + x9 + x10 + x11 + x22 + x26 ++ x33 + x42 + x54 + x55 + x57 + x58 + x59 + x76 + x78 + x81 ++ x82 + x84 + x85 + x86 + x87 + x91 + x92 + x97 + x98 + x109 ++ x129 + x137 + x144 + x145 + x148 + x149 + x152 + x155 + x157 + x158 ++ x159 + x160 + x161 + x162 + x166 + x167 + x169 + x171 + x173 + x179 ++ x190 + x192 + x193 + x194 + x203 + x234 + x235 + x237 + x238 + x239 ++ x272 + x277 + x278 + x291 + x293 + x315 + x350 + x361 + x363 + x388 ++ x389 + x391 + x392 + x394 + x395 + x398 + x400 + x402 + x403 + x418 ++ x423 + x435 + x442 + x450 + x452 + x453 + x467 + x471 + x472 + x479 ++ x494 + x495 + x496 <= 1 + +x2 + x5 + x6 + x7 + x8 + x9 + x10 + x30 + x32 + x33 ++ x35 + x54 + x55 + x57 + x58 + x59 + x78 + x81 + x82 + x84 ++ x85 + x86 + x87 + x90 + x92 + x96 + x97 + x98 + x137 + x139 ++ x144 + x145 + x146 + x148 + x149 + x152 + x155 + x157 + x158 + x159 ++ x160 + x161 + x162 + x166 + x167 + x169 + x171 + x173 + x179 + x188 ++ x189 + x190 + x191 + x193 + x194 + x203 + x272 + x275 + x284 + x291 ++ x292 + x293 + x294 + x295 + x296 + x315 + x342 + x343 + x345 + x346 ++ x361 + x389 + x391 + x392 + x394 + x395 + x398 + x399 + x400 + x401 ++ x402 + x418 + x419 + x422 + x423 + x447 + x471 + x472 + x476 + x496 + <= 1 + +x7 + x8 + x10 + x30 + x32 + x33 + x34 + x35 + x48 + x57 ++ x59 + x81 + x82 + x84 + x85 + x86 + x88 + x89 + x90 + x92 ++ x131 + x133 + x136 + x137 + x144 + x145 + x146 + x148 + x149 + x157 ++ x158 + x159 + x160 + x161 + x162 + x169 + x171 + x173 + x179 + x184 ++ x190 + x191 + x193 + x194 + x195 + x203 + x272 + x275 + x295 + x296 ++ x361 + x369 + x389 + x390 + x392 + x393 + x395 + x398 + x401 + x410 ++ x422 + x435 + x436 + x437 + x438 + x440 + x471 + x472 + x476 <= 1 + +x4 + x5 + x8 + x30 + x46 + x48 + x57 + x58 + x59 + x74 ++ x81 + x82 + x84 + x85 + x88 + x89 + x90 + x91 + x122 + x133 ++ x144 + x148 + x149 + x158 + x160 + x161 + x162 + x165 + x173 + x179 ++ x184 + x185 + x187 + x190 + x194 + x195 + x275 + x290 + x294 + x295 ++ x296 + x299 + x369 + x388 + x389 + x390 + x410 + x411 + x435 + x437 ++ x438 + x440 + x451 + x472 <= 1 + +x30 + x32 + x33 + x34 + x88 + x89 + x91 + x98 + x146 + x148 ++ x149 + x157 + x158 + x159 + x160 + x164 + x186 + x188 + x190 + x208 ++ x212 + x269 + x283 + x285 + x290 + x336 + x341 + x348 + x353 + x396 ++ x439 + x440 + x449 + x451 + x478 <= 1 + +x5 + x26 + x30 + x31 + x32 + x33 + x34 + x35 + x36 + x37 ++ x38 + x39 + x131 + x147 + x148 + x150 + x157 + x158 + x159 + x160 ++ x161 + x162 + x184 + x185 + x186 + x188 + x191 + x202 + x204 + x206 ++ x207 + x225 + x228 + x267 + x268 + x269 + x270 + x271 + x285 + x287 ++ x288 + x289 + x290 + x292 + x293 + x295 + x296 + x336 + x337 + x338 ++ x339 + x340 + x341 + x348 + x350 + x352 + x353 + x358 + x374 + x379 ++ x387 + x395 + x405 + x427 + x429 + x436 + x438 + x439 + x465 + x478 ++ x479 + x480 + x481 + x483 + x484 + x485 + x497 <= 1 + +x4 + x5 + x30 + x31 + x32 + x33 + x34 + x35 + x36 + x37 ++ x38 + x39 + x118 + x131 + x147 + x157 + x158 + x159 + x160 + x162 ++ x185 + x186 + x188 + x191 + x196 + x198 + x199 + x201 + x202 + x203 ++ x204 + x206 + x207 + x225 + x227 + x228 + x267 + x268 + x269 + x270 ++ x271 + x275 + x285 + x286 + x287 + x288 + x289 + x290 + x292 + x293 ++ x317 + x336 + x337 + x338 + x339 + x340 + x341 + x348 + x350 + x352 ++ x353 + x354 + x355 + x358 + x379 + x387 + x395 + x427 + x428 + x429 ++ x431 + x436 + x437 + x438 + x439 + x477 + x478 + x479 + x480 + x481 ++ x482 + x483 + x484 + x485 + x497 <= 1 + +x12 + x14 + x15 + x16 + x51 + x54 + x55 + x56 + x57 + x58 ++ x75 + x78 + x79 + x93 + x94 + x95 + x97 + x132 + x157 + x162 ++ x163 + x165 + x187 + x192 + x222 + x224 + x234 + x237 + x238 + x239 ++ x274 + x276 + x277 + x278 + x279 + x288 + x300 + x305 + x306 + x307 ++ x313 + x314 + x315 + x316 + x318 + x322 + x360 + x361 + x363 + x394 ++ x396 + x398 + x408 + x409 + x418 + x420 + x421 + x450 + x452 + x476 ++ x478 + x493 + x494 + x495 <= 1 + +x0 + x1 + x5 + x30 + x54 + x55 + x59 + x75 + x93 + x94 ++ x106 + x132 + x157 + x161 + x163 + x165 + x187 + x189 + x192 + x194 ++ x274 + x278 + x279 + x290 + x305 + x306 + x307 + x313 + x314 + x315 ++ x316 + x318 + x360 + x361 + x369 + x394 + x396 + x398 + x408 + x409 ++ x418 + x421 + x435 + x440 + x450 + x452 + x457 + x478 + x493 <= 1 + +x3 + x13 + x15 + x22 + x24 + x27 + x28 + x29 + x31 + x32 ++ x35 + x42 + x54 + x56 + x57 + x58 + x59 + x76 + x77 + x80 ++ x85 + x86 + x91 + x92 + x93 + x97 + x98 + x105 + x109 + x110 ++ x132 + x151 + x152 + x155 + x156 + x157 + x158 + x159 + x160 + x161 ++ x162 + x164 + x167 + x169 + x170 + x172 + x174 + x185 + x187 + x189 ++ x194 + x220 + x221 + x256 + x261 + x274 + x276 + x277 + x278 + x291 ++ x293 + x295 + x309 + x310 + x313 + x314 + x315 + x316 + x318 + x320 ++ x321 + x323 + x361 + x418 + x420 + x421 + x422 + x423 + x450 + x467 ++ x469 + x472 + x495 + x496 <= 1 + +x2 + x5 + x7 + x24 + x26 + x27 + x28 + x32 + x35 + x54 ++ x56 + x57 + x58 + x59 + x81 + x85 + x86 + x87 + x91 + x92 ++ x93 + x97 + x98 + x155 + x157 + x158 + x159 + x160 + x161 + x162 ++ x166 + x167 + x169 + x170 + x173 + x190 + x191 + x193 + x194 + x220 ++ x221 + x239 + x272 + x277 + x323 + x361 + x395 + x398 + x420 + x422 ++ x423 + x435 + x467 + x469 + x470 + x471 + x472 + x495 + x496 + x503 + <= 1 + +x2 + x5 + x7 + x8 + x9 + x32 + x33 + x35 + x54 + x55 ++ x57 + x58 + x59 + x76 + x81 + x82 + x84 + x86 + x87 + x91 ++ x92 + x97 + x98 + x144 + x146 + x148 + x149 + x155 + x157 + x162 ++ x163 + x166 + x167 + x169 + x171 + x173 + x174 + x190 + x191 + x193 ++ x203 + x234 + x235 + x237 + x238 + x239 + x241 + x251 + x269 + x272 ++ x284 + x291 + x292 + x293 + x294 + x296 + x361 + x363 + x394 + x395 ++ x398 + x400 + x401 + x402 + x403 + x418 + x419 + x422 + x423 + x435 ++ x442 + x447 + x467 + x469 + x470 + x471 + x472 + x476 <= 1 + +x2 + x9 + x30 + x31 + x32 + x33 + x34 + x35 + x47 + x55 ++ x57 + x58 + x59 + x69 + x70 + x86 + x87 + x89 + x90 + x91 ++ x92 + x122 + x146 + x148 + x149 + x157 + x158 + x159 + x160 + x163 ++ x164 + x166 + x167 + x171 + x173 + x174 + x178 + x187 + x189 + x190 ++ x191 + x193 + x195 + x196 + x197 + x215 + x231 + x235 + x238 + x241 ++ x251 + x257 + x269 + x272 + x280 + x282 + x283 + x284 + x286 + x287 ++ x291 + x293 + x294 + x296 + x327 + x353 + x363 + x377 + x396 + x397 ++ x398 + x399 + x400 + x401 + x402 + x403 + x404 + x419 + x422 + x423 ++ x442 + x443 + x446 + x447 + x463 + x467 + x468 + x469 + x470 + x471 ++ x472 + x476 + x478 <= 1 + +x2 + x4 + x5 + x35 + x46 + x47 + x57 + x58 + x59 + x69 ++ x70 + x71 + x74 + x87 + x88 + x89 + x90 + x91 + x92 + x122 ++ x124 + x144 + x146 + x148 + x149 + x157 + x158 + x160 + x173 + x178 ++ x190 + x191 + x192 + x193 + x195 + x212 + x233 + x241 + x251 + x257 ++ x269 + x275 + x280 + x281 + x283 + x286 + x287 + x291 + x293 + x294 ++ x295 + x296 + x299 + x326 + x336 + x341 + x353 + x377 + x396 + x398 ++ x411 + x437 + x447 + x451 + x469 + x470 + x471 + x475 + x476 + x478 ++ x480 + x498 <= 1 + +x5 + x30 + x32 + x33 + x34 + x35 + x88 + x89 + x90 + x91 ++ x92 + x98 + x144 + x146 + x148 + x149 + x157 + x158 + x159 + x160 ++ x178 + x188 + x190 + x201 + x212 + x251 + x267 + x269 + x283 + x285 ++ x286 + x287 + x290 + x297 + x299 + x336 + x341 + x348 + x352 + x353 ++ x396 + x437 + x439 + x451 + x475 + x478 + x480 <= 1 + +x5 + x30 + x32 + x33 + x34 + x36 + x38 + x90 + x146 + x148 ++ x149 + x188 + x201 + x202 + x204 + x206 + x207 + x212 + x267 + x269 ++ x270 + x271 + x285 + x286 + x287 + x289 + x290 + x292 + x293 + x297 ++ x298 + x336 + x337 + x338 + x339 + x340 + x341 + x348 + x352 + x353 ++ x362 + x436 + x439 + x451 + x461 + x475 + x477 + x478 + x480 + x481 ++ x485 <= 1 + +x17 + x25 + x26 + x30 + x31 + x32 + x33 + x34 + x35 + x36 ++ x37 + x38 + x131 + x133 + x147 + x148 + x149 + x157 + x158 + x161 ++ x162 + x184 + x185 + x186 + x188 + x191 + x198 + x200 + x201 + x202 ++ x204 + x206 + x207 + x227 + x267 + x268 + x269 + x270 + x271 + x275 ++ x285 + x286 + x287 + x289 + x290 + x292 + x293 + x297 + x298 + x312 ++ x317 + x336 + x338 + x339 + x340 + x341 + x348 + x349 + x350 + x352 ++ x353 + x358 + x362 + x379 + x395 + x405 + x421 + x436 + x461 + x475 ++ x477 + x478 + x479 + x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x3 + x14 + x24 + x27 + x28 + x29 + x54 + x55 + x56 + x57 ++ x58 + x67 + x75 + x77 + x78 + x79 + x80 + x91 + x93 + x94 ++ x95 + x97 + x105 + x106 + x109 + x110 + x117 + x152 + x155 + x156 ++ x157 + x160 + x161 + x162 + x163 + x187 + x222 + x234 + x236 + x237 ++ x238 + x243 + x244 + x245 + x260 + x261 + x274 + x276 + x277 + x278 ++ x288 + x300 + x305 + x306 + x308 + x309 + x314 + x316 + x319 + x320 ++ x322 + x323 + x333 + x360 + x363 + x394 + x396 + x398 + x406 + x408 ++ x409 + x418 + x421 + x450 + x467 + x478 + x493 + x494 + x495 <= 1 + +x3 + x14 + x15 + x24 + x25 + x27 + x28 + x29 + x31 + x40 ++ x42 + x54 + x56 + x57 + x58 + x59 + x75 + x77 + x80 + x93 ++ x94 + x95 + x97 + x98 + x105 + x106 + x109 + x110 + x132 + x151 ++ x152 + x155 + x156 + x157 + x159 + x160 + x161 + x162 + x169 + x170 ++ x172 + x174 + x187 + x189 + x194 + x220 + x221 + x222 + x236 + x240 ++ x244 + x245 + x256 + x260 + x261 + x274 + x276 + x277 + x278 + x307 ++ x309 + x316 + x318 + x319 + x320 + x321 + x322 + x323 + x360 + x361 ++ x363 + x364 + x396 + x399 + x418 + x420 + x421 + x422 + x450 + x467 ++ x469 + x472 + x493 + x494 + x495 + x496 <= 1 + +x3 + x13 + x24 + x25 + x27 + x28 + x31 + x33 + x34 + x35 ++ x40 + x42 + x45 + x54 + x56 + x57 + x58 + x59 + x72 + x80 ++ x94 + x98 + x105 + x106 + x109 + x110 + x131 + x152 + x155 + x156 ++ x157 + x159 + x160 + x161 + x162 + x164 + x167 + x169 + x170 + x172 ++ x174 + x185 + x187 + x189 + x194 + x220 + x244 + x256 + x260 + x261 ++ x274 + x276 + x277 + x278 + x307 + x310 + x315 + x316 + x320 + x321 ++ x323 + x360 + x362 + x363 + x364 + x395 + x396 + x398 + x399 + x418 ++ x420 + x422 + x423 + x467 + x493 + x495 + x496 <= 1 + +x13 + x31 + x32 + x33 + x34 + x40 + x45 + x55 + x56 + x57 ++ x58 + x59 + x69 + x70 + x71 + x72 + x81 + x98 + x105 + x106 ++ x107 + x109 + x110 + x152 + x156 + x157 + x159 + x160 + x161 + x164 ++ x166 + x169 + x174 + x185 + x187 + x189 + x194 + x220 + x256 + x257 ++ x258 + x259 + x260 + x261 + x278 + x294 + x316 + x360 + x362 + x364 ++ x394 + x396 + x397 + x398 + x399 + x408 + x418 + x420 + x422 + x489 ++ x493 + x495 + x496 <= 1 + +x2 + x6 + x13 + x30 + x32 + x33 + x34 + x40 + x41 + x42 ++ x45 + x55 + x56 + x57 + x58 + x59 + x69 + x70 + x71 + x72 ++ x81 + x83 + x98 + x105 + x106 + x107 + x108 + x109 + x110 + x126 ++ x127 + x146 + x156 + x157 + x158 + x159 + x160 + x161 + x163 + x164 ++ x166 + x167 + x169 + x174 + x187 + x189 + x190 + x191 + x192 + x193 ++ x194 + x249 + x257 + x260 + x261 + x277 + x282 + x286 + x287 + x288 ++ x294 + x316 + x362 + x364 + x365 + x377 + x378 + x394 + x396 + x397 ++ x398 + x399 + x400 + x420 + x436 + x439 + x444 + x470 + x479 + x480 + <= 1 + +x2 + x13 + x21 + x30 + x31 + x32 + x33 + x34 + x67 + x69 ++ x70 + x73 + x74 + x81 + x83 + x89 + x106 + x107 + x110 + x122 ++ x127 + x146 + x149 + x157 + x158 + x159 + x160 + x161 + x163 + x164 ++ x166 + x167 + x174 + x178 + x187 + x189 + x190 + x191 + x192 + x193 ++ x194 + x195 + x196 + x197 + x206 + x217 + x231 + x249 + x257 + x280 ++ x282 + x284 + x286 + x287 + x288 + x294 + x296 + x327 + x362 + x364 ++ x365 + x377 + x378 + x394 + x396 + x397 + x398 + x399 + x400 + x401 ++ x402 + x403 + x404 + x423 + x436 + x438 + x439 + x465 + x468 + x469 ++ x470 + x471 + x472 + x491 + x497 + x498 <= 1 + +x2 + x5 + x21 + x30 + x31 + x32 + x33 + x34 + x35 + x67 ++ x69 + x70 + x71 + x73 + x74 + x83 + x106 + x122 + x124 + x149 ++ x157 + x158 + x159 + x160 + x161 + x174 + x178 + x187 + x190 + x191 ++ x192 + x193 + x195 + x196 + x197 + x206 + x214 + x215 + x230 + x231 ++ x233 + x235 + x241 + x249 + x251 + x257 + x280 + x281 + x291 + x293 ++ x294 + x296 + x299 + x326 + x362 + x376 + x377 + x400 + x401 + x402 ++ x403 + x404 + x422 + x423 + x437 + x439 + x442 + x443 + x445 + x446 ++ x447 + x451 + x463 + x467 + x468 + x469 + x470 + x471 + x472 + x475 ++ x479 + x488 + x491 + x498 <= 1 + +x2 + x5 + x20 + x21 + x25 + x35 + x50 + x69 + x73 + x83 ++ x86 + x157 + x158 + x159 + x160 + x161 + x162 + x165 + x178 + x179 ++ x180 + x181 + x183 + x186 + x187 + x188 + x191 + x192 + x195 + x197 ++ x201 + x205 + x206 + x215 + x249 + x262 + x263 + x281 + x286 + x289 ++ x291 + x293 + x294 + x295 + x324 + x325 + x326 + x327 + x329 + x348 ++ x349 + x351 + x371 + x377 + x380 + x381 + x394 + x395 + x396 + x397 ++ x398 + x400 + x401 + x402 + x403 + x404 + x405 + x423 + x436 + x442 ++ x446 + x447 + x470 + x475 + x477 + x479 + x480 + x485 + x486 + x491 ++ x498 <= 1 + +x2 + x20 + x21 + x23 + x25 + x30 + x31 + x33 + x35 + x56 ++ x73 + x86 + x133 + x157 + x158 + x159 + x160 + x161 + x162 + x178 ++ x179 + x180 + x181 + x182 + x183 + x186 + x188 + x191 + x200 + x201 ++ x204 + x205 + x220 + x247 + x262 + x278 + x286 + x289 + x290 + x295 ++ x298 + x348 + x349 + x350 + x351 + x352 + x353 + x371 + x380 + x394 ++ x395 + x396 + x397 + x398 + x399 + x401 + x402 + x404 + x405 + x447 ++ x470 + x475 + x477 + x479 + x480 + x481 + x485 + x494 <= 1 + +x20 + x25 + x26 + x30 + x33 + x35 + x37 + x38 + x56 + x73 ++ x133 + x157 + x158 + x159 + x160 + x161 + x186 + x188 + x191 + x192 ++ x200 + x201 + x202 + x220 + x247 + x285 + x287 + x289 + x290 + x292 ++ x297 + x298 + x317 + x340 + x348 + x349 + x350 + x352 + x353 + x376 ++ x379 + x380 + x402 + x405 + x421 + x436 + x477 + x478 + x479 + x480 ++ x481 + x485 + x486 <= 1 + +x3 + x25 + x27 + x28 + x29 + x31 + x33 + x34 + x54 + x56 ++ x57 + x58 + x93 + x94 + x95 + x96 + x97 + x105 + x151 + x156 ++ x160 + x161 + x162 + x187 + x234 + x236 + x240 + x243 + x244 + x245 ++ x249 + x256 + x261 + x274 + x277 + x288 + x305 + x306 + x308 + x309 ++ x310 + x318 + x319 + x321 + x322 + x360 + x394 + x396 + x406 + x409 ++ x421 + x479 + x493 + x494 <= 1 + +x3 + x14 + x24 + x25 + x27 + x28 + x29 + x31 + x33 + x35 ++ x54 + x56 + x58 + x59 + x71 + x77 + x80 + x93 + x94 + x95 ++ x96 + x98 + x105 + x151 + x155 + x156 + x161 + x162 + x169 + x170 ++ x172 + x236 + x240 + x243 + x244 + x245 + x246 + x256 + x260 + x261 ++ x274 + x276 + x277 + x278 + x306 + x308 + x309 + x310 + x318 + x319 ++ x321 + x322 + x352 + x360 + x406 + x407 + x409 + x436 + x467 + x493 ++ x494 + x495 + x496 <= 1 + +x15 + x24 + x25 + x27 + x28 + x29 + x31 + x33 + x42 + x54 ++ x56 + x58 + x59 + x80 + x93 + x97 + x98 + x105 + x132 + x151 ++ x156 + x157 + x160 + x161 + x162 + x164 + x169 + x170 + x172 + x174 ++ x220 + x221 + x236 + x244 + x245 + x246 + x256 + x260 + x261 + x274 ++ x276 + x277 + x278 + x307 + x308 + x310 + x315 + x316 + x319 + x320 ++ x352 + x360 + x363 + x364 + x395 + x398 + x409 + x420 + x467 + x469 ++ x493 <= 1 + +x2 + x32 + x33 + x34 + x40 + x41 + x45 + x55 + x56 + x58 ++ x59 + x69 + x70 + x71 + x72 + x81 + x98 + x107 + x108 + x110 ++ x157 + x159 + x160 + x161 + x164 + x179 + x180 + x181 + x183 + x189 ++ x215 + x216 + x242 + x256 + x257 + x258 + x259 + x260 + x294 + x360 ++ x362 + x364 + x475 + x479 + x493 + x496 + x498 <= 1 + +x2 + x30 + x32 + x33 + x34 + x40 + x41 + x42 + x44 + x45 ++ x55 + x56 + x58 + x63 + x69 + x70 + x71 + x72 + x73 + x74 ++ x89 + x105 + x106 + x107 + x108 + x109 + x110 + x115 + x126 + x128 ++ x146 + x154 + x156 + x164 + x166 + x180 + x181 + x183 + x189 + x190 ++ x192 + x193 + x196 + x213 + x214 + x216 + x242 + x256 + x257 + x258 ++ x259 + x260 + x261 + x282 + x294 + x295 + x318 + x324 + x360 + x362 ++ x364 + x365 + x378 + x396 + x397 + x398 + x399 + x400 + x420 + x423 ++ x436 + x437 + x444 + x445 + x451 + x470 + x475 + x479 + x480 + x493 ++ x496 + x497 + x498 <= 1 + +x34 + x40 + x41 + x44 + x45 + x55 + x56 + x58 + x64 + x69 ++ x70 + x71 + x72 + x73 + x74 + x81 + x83 + x89 + x107 + x110 ++ x120 + x121 + x122 + x123 + x124 + x128 + x146 + x153 + x154 + x161 ++ x164 + x167 + x178 + x179 + x180 + x181 + x183 + x189 + x192 + x193 ++ x196 + x197 + x200 + x213 + x214 + x215 + x216 + x217 + x232 + x256 ++ x257 + x258 + x259 + x260 + x272 + x273 + x286 + x287 + x288 + x289 ++ x294 + x301 + x302 + x303 + x318 + x324 + x327 + x328 + x333 + x349 ++ x351 + x362 + x373 + x378 + x381 + x394 + x395 + x396 + x397 + x398 ++ x399 + x423 + x436 + x437 + x438 + x439 + x442 + x443 + x444 + x445 ++ x451 + x465 + x468 + x469 + x470 + x475 + x478 + x479 + x480 + x488 ++ x489 + x490 + x491 + x496 + x497 + x498 <= 1 + +x2 + x30 + x31 + x32 + x33 + x34 + x35 + x41 + x44 + x45 ++ x50 + x66 + x67 + x69 + x70 + x71 + x72 + x73 + x74 + x83 ++ x120 + x121 + x122 + x123 + x124 + x157 + x158 + x159 + x160 + x161 ++ x164 + x174 + x178 + x180 + x181 + x182 + x183 + x195 + x196 + x197 ++ x200 + x213 + x214 + x215 + x230 + x233 + x235 + x257 + x258 + x259 ++ x260 + x281 + x289 + x294 + x299 + x302 + x303 + x325 + x327 + x328 ++ x333 + x349 + x362 + x364 + x365 + x373 + x376 + x377 + x378 + x381 ++ x394 + x395 + x396 + x397 + x398 + x399 + x400 + x401 + x402 + x403 ++ x404 + x405 + x413 + x437 + x438 + x439 + x442 + x443 + x444 + x445 ++ x447 + x468 + x469 + x475 + x477 + x478 + x479 + x480 + x487 + x488 ++ x489 + x491 + x501 <= 1 + +x22 + x30 + x31 + x32 + x33 + x34 + x35 + x49 + x50 + x52 ++ x55 + x56 + x64 + x65 + x66 + x69 + x70 + x71 + x72 + x73 ++ x74 + x83 + x94 + x153 + x157 + x158 + x159 + x160 + x161 + x162 ++ x165 + x178 + x179 + x180 + x181 + x182 + x183 + x186 + x192 + x195 ++ x201 + x205 + x206 + x218 + x232 + x258 + x259 + x263 + x286 + x289 ++ x290 + x294 + x295 + x303 + x324 + x325 + x326 + x327 + x329 + x349 ++ x351 + x362 + x364 + x371 + x376 + x377 + x378 + x379 + x380 + x381 ++ x394 + x395 + x396 + x397 + x398 + x399 + x400 + x402 + x403 + x404 ++ x405 + x434 + x436 + x437 + x438 + x439 + x442 + x443 + x444 + x468 ++ x469 + x475 + x477 + x486 + x487 + x488 + x489 + x490 + x492 + x494 ++ x497 + x498 <= 1 + +x18 + x20 + x21 + x23 + x26 + x30 + x31 + x32 + x33 + x35 ++ x52 + x56 + x66 + x69 + x70 + x71 + x72 + x73 + x94 + x123 ++ x133 + x153 + x157 + x158 + x159 + x160 + x161 + x162 + x178 + x179 ++ x180 + x181 + x182 + x183 + x192 + x193 + x195 + x200 + x202 + x204 ++ x205 + x286 + x287 + x289 + x290 + x295 + x331 + x335 + x348 + x349 ++ x351 + x371 + x377 + x379 + x380 + x381 + x394 + x395 + x396 + x397 ++ x398 + x399 + x404 + x405 + x415 + x433 + x434 + x435 + x436 + x437 ++ x439 + x440 + x443 + x444 + x468 + x475 + x477 + x480 + x485 + x486 ++ x490 + x494 + x497 + x498 <= 1 + +x18 + x21 + x23 + x26 + x30 + x31 + x32 + x33 + x35 + x44 ++ x56 + x108 + x153 + x157 + x158 + x159 + x160 + x161 + x162 + x178 ++ x180 + x181 + x182 + x183 + x188 + x191 + x195 + x200 + x201 + x202 ++ x287 + x289 + x290 + x295 + x297 + x298 + x317 + x324 + x325 + x328 ++ x329 + x351 + x376 + x379 + x380 + x394 + x395 + x396 + x397 + x398 ++ x399 + x405 + x421 + x433 + x435 + x437 + x439 + x475 + x477 + x478 ++ x479 + x480 + x481 + x486 + x497 <= 1 + +x3 + x25 + x27 + x28 + x29 + x31 + x32 + x33 + x34 + x35 ++ x54 + x56 + x58 + x96 + x151 + x156 + x160 + x161 + x162 + x236 ++ x240 + x245 + x246 + x248 + x249 + x250 + x256 + x261 + x268 + x274 ++ x288 + x305 + x306 + x308 + x309 + x310 + x360 + x364 + x365 + x391 ++ x394 + x406 + x407 + x409 + x462 + x493 + x494 <= 1 + +x3 + x12 + x24 + x25 + x27 + x28 + x29 + x31 + x32 + x33 ++ x35 + x56 + x58 + x71 + x93 + x95 + x96 + x151 + x154 + x159 ++ x161 + x162 + x172 + x240 + x242 + x243 + x244 + x245 + x246 + x247 ++ x248 + x249 + x250 + x256 + x305 + x308 + x309 + x310 + x352 + x360 ++ x364 + x365 + x393 + x396 + x399 + x406 + x407 + x438 + x462 + x467 ++ x495 <= 1 + +x0 + x3 + x24 + x25 + x28 + x29 + x31 + x32 + x33 + x34 ++ x35 + x56 + x96 + x108 + x125 + x154 + x159 + x161 + x172 + x195 ++ x240 + x241 + x242 + x244 + x246 + x247 + x248 + x250 + x288 + x360 ++ x362 + x364 + x365 + x393 + x396 + x399 + x460 + x461 + x462 + x464 ++ x475 + x497 <= 1 + +x0 + x3 + x19 + x24 + x25 + x28 + x29 + x30 + x31 + x32 ++ x33 + x34 + x35 + x56 + x63 + x64 + x65 + x67 + x68 + x95 ++ x107 + x108 + x120 + x125 + x134 + x154 + x159 + x161 + x172 + x189 ++ x195 + x240 + x241 + x242 + x246 + x247 + x248 + x250 + x251 + x257 ++ x258 + x259 + x261 + x276 + x288 + x306 + x362 + x364 + x365 + x395 ++ x396 + x397 + x398 + x399 + x417 + x426 + x451 + x460 + x462 + x464 ++ x475 + x477 + x479 + x480 + x493 + x497 + x498 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 + x41 + x43 + x45 + x56 ++ x63 + x64 + x70 + x95 + x106 + x107 + x108 + x115 + x120 + x124 ++ x125 + x134 + x147 + x154 + x159 + x161 + x178 + x180 + x182 + x183 ++ x189 + x197 + x213 + x217 + x240 + x241 + x242 + x248 + x257 + x258 ++ x259 + x260 + x261 + x288 + x306 + x329 + x331 + x360 + x362 + x364 ++ x365 + x400 + x416 + x417 + x420 + x436 + x451 + x475 + x479 + x480 ++ x493 + x496 + x497 + x498 <= 1 + +x11 + x30 + x31 + x32 + x33 + x34 + x35 + x40 + x41 + x43 ++ x51 + x55 + x56 + x63 + x64 + x65 + x66 + x74 + x83 + x120 ++ x123 + x124 + x125 + x134 + x146 + x154 + x159 + x160 + x178 + x180 ++ x181 + x182 + x183 + x189 + x193 + x194 + x196 + x197 + x200 + x213 ++ x214 + x216 + x217 + x218 + x248 + x257 + x258 + x259 + x260 + x279 ++ x287 + x289 + x301 + x304 + x318 + x325 + x326 + x328 + x329 + x330 ++ x331 + x332 + x333 + x362 + x364 + x365 + x378 + x381 + x394 + x395 ++ x396 + x397 + x398 + x399 + x412 + x414 + x416 + x436 + x437 + x438 ++ x439 + x443 + x445 + x464 + x465 + x468 + x475 + x477 + x479 + x480 ++ x484 + x487 + x490 + x496 + x497 + x498 <= 1 + +x2 + x18 + x22 + x30 + x31 + x32 + x33 + x34 + x35 + x40 ++ x41 + x43 + x44 + x49 + x51 + x55 + x56 + x64 + x65 + x66 ++ x67 + x72 + x73 + x74 + x83 + x107 + x120 + x121 + x122 + x123 ++ x124 + x153 + x157 + x158 + x159 + x160 + x161 + x178 + x179 + x180 ++ x181 + x182 + x183 + x192 + x195 + x196 + x197 + x200 + x205 + x230 ++ x232 + x235 + x257 + x258 + x259 + x286 + x289 + x294 + x301 + x302 ++ x304 + x324 + x326 + x327 + x328 + x329 + x332 + x351 + x364 + x365 ++ x371 + x373 + x376 + x377 + x378 + x380 + x381 + x394 + x395 + x396 ++ x397 + x398 + x399 + x401 + x403 + x413 + x414 + x436 + x437 + x438 ++ x439 + x443 + x444 + x445 + x468 + x469 + x475 + x477 + x478 + x479 ++ x480 + x484 + x486 + x487 + x488 + x489 + x490 + x492 + x496 + x497 ++ x498 <= 1 + +x18 + x19 + x21 + x22 + x23 + x24 + x30 + x31 + x32 + x33 ++ x34 + x35 + x41 + x43 + x44 + x49 + x50 + x52 + x53 + x55 ++ x56 + x64 + x65 + x66 + x71 + x73 + x74 + x94 + x122 + x123 ++ x124 + x151 + x153 + x157 + x158 + x159 + x160 + x161 + x181 + x182 ++ x183 + x196 + x200 + x218 + x235 + x258 + x289 + x294 + x324 + x325 ++ x326 + x327 + x328 + x329 + x331 + x349 + x351 + x376 + x377 + x378 ++ x380 + x394 + x395 + x396 + x397 + x398 + x399 + x404 + x405 + x412 ++ x413 + x414 + x415 + x421 + x435 + x436 + x437 + x438 + x439 + x440 ++ x444 + x445 + x468 + x475 + x477 + x478 + x479 + x480 + x486 + x498 + <= 1 + +x18 + x20 + x21 + x23 + x26 + x30 + x31 + x32 + x33 + x35 ++ x44 + x56 + x66 + x94 + x153 + x157 + x158 + x159 + x160 + x161 ++ x162 + x178 + x180 + x181 + x182 + x183 + x191 + x195 + x200 + x201 ++ x218 + x287 + x289 + x295 + x317 + x324 + x325 + x328 + x329 + x333 ++ x349 + x351 + x376 + x379 + x380 + x381 + x394 + x395 + x396 + x397 ++ x398 + x399 + x405 + x407 + x415 + x421 + x435 + x436 + x437 + x438 ++ x439 + x440 + x468 + x475 + x477 + x478 + x479 + x480 + x486 + x494 + <= 1 + +x15 + x20 + x23 + x30 + x31 + x32 + x33 + x35 + x53 + x108 ++ x153 + x157 + x158 + x159 + x160 + x174 + x188 + x200 + x201 + x289 ++ x317 + x329 + x351 + x376 + x379 + x380 + x381 + x384 + x394 + x395 ++ x396 + x397 + x398 + x399 + x437 + x439 + x440 + x477 + x478 + x480 ++ x486 <= 1 + +x3 + x27 + x28 + x29 + x31 + x33 + x34 + x35 + x58 + x96 ++ x159 + x161 + x162 + x188 + x236 + x245 + x250 + x256 + x261 + x267 ++ x288 + x309 + x364 + x382 + x391 + x394 + x401 + x406 + x407 + x493 ++ x494 <= 1 + +x3 + x24 + x31 + x32 + x33 + x34 + x35 + x93 + x96 + x151 ++ x161 + x162 + x246 + x247 + x248 + x249 + x250 + x256 + x268 + x288 ++ x308 + x310 + x334 + x362 + x365 + x406 + x407 + x462 + x475 <= 1 + +x0 + x3 + x19 + x31 + x32 + x33 + x34 + x35 + x63 + x95 ++ x147 + x151 + x154 + x159 + x162 + x172 + x195 + x246 + x247 + x248 ++ x249 + x250 + x251 + x288 + x334 + x362 + x365 + x462 + x464 + x475 ++ x479 + x480 <= 1 + +x19 + x29 + x31 + x32 + x33 + x35 + x63 + x65 + x67 + x68 ++ x95 + x108 + x134 + x147 + x154 + x159 + x167 + x172 + x195 + x241 ++ x242 + x247 + x250 + x251 + x259 + x288 + x330 + x334 + x362 + x364 ++ x365 + x396 + x397 + x398 + x399 + x417 + x424 + x426 + x463 + x464 ++ x475 + x479 + x480 + x493 + x497 + x498 <= 1 + +x19 + x30 + x31 + x33 + x34 + x35 + x43 + x45 + x63 + x65 ++ x67 + x68 + x107 + x108 + x120 + x125 + x134 + x147 + x154 + x159 ++ x161 + x178 + x181 + x182 + x193 + x195 + x205 + x217 + x242 + x246 ++ x247 + x248 + x250 + x251 + x258 + x259 + x260 + x276 + x330 + x332 ++ x334 + x360 + x362 + x364 + x365 + x376 + x395 + x396 + x397 + x398 ++ x399 + x412 + x416 + x417 + x424 + x426 + x451 + x460 + x462 + x463 ++ x464 + x465 + x475 + x477 + x479 + x480 + x493 + x497 <= 1 + +x19 + x30 + x31 + x32 + x33 + x34 + x35 + x43 + x63 + x64 ++ x65 + x66 + x67 + x68 + x83 + x125 + x134 + x146 + x154 + x157 ++ x158 + x159 + x160 + x161 + x178 + x180 + x181 + x182 + x183 + x193 ++ x194 + x205 + x213 + x214 + x216 + x217 + x218 + x259 + x325 + x326 ++ x327 + x328 + x330 + x332 + x334 + x362 + x364 + x365 + x371 + x378 ++ x395 + x396 + x397 + x398 + x399 + x412 + x413 + x416 + x417 + x424 ++ x425 + x436 + x437 + x439 + x460 + x463 + x464 + x465 + x475 + x477 ++ x479 + x480 + x484 <= 1 + +x18 + x19 + x22 + x30 + x31 + x32 + x33 + x34 + x35 + x43 ++ x44 + x55 + x56 + x63 + x64 + x65 + x66 + x68 + x72 + x74 ++ x83 + x120 + x121 + x123 + x124 + x125 + x153 + x157 + x158 + x159 ++ x160 + x161 + x178 + x179 + x180 + x181 + x182 + x183 + x196 + x197 ++ x200 + x205 + x218 + x258 + x259 + x279 + x289 + x304 + x324 + x325 ++ x326 + x327 + x328 + x330 + x331 + x332 + x371 + x373 + x376 + x378 ++ x381 + x394 + x395 + x396 + x397 + x398 + x399 + x404 + x412 + x413 ++ x414 + x415 + x416 + x417 + x436 + x437 + x438 + x439 + x445 + x460 ++ x465 + x475 + x484 + x487 + x492 + x497 + x498 <= 1 + +x18 + x19 + x22 + x23 + x43 + x44 + x55 + x56 + x68 + x73 ++ x83 + x94 + x120 + x123 + x157 + x158 + x159 + x160 + x161 + x180 ++ x181 + x182 + x183 + x200 + x258 + x279 + x289 + x394 + x395 + x396 ++ x397 + x398 + x404 + x412 + x413 + x414 + x415 + x416 + x437 + x438 ++ x439 + x441 + x475 + x477 + x478 + x479 + x480 + x492 + x497 + x498 + <= 1 + +x18 + x20 + x23 + x32 + x33 + x43 + x49 + x52 + x53 + x56 ++ x68 + x83 + x94 + x123 + x151 + x153 + x157 + x158 + x159 + x160 ++ x161 + x162 + x180 + x181 + x182 + x183 + x200 + x201 + x289 + x324 ++ x326 + x328 + x329 + x395 + x397 + x398 + x399 + x405 + x407 + x414 ++ x415 + x421 + x437 + x439 + x440 + x478 + x480 + x486 + x492 <= 1 + +x20 + x32 + x33 + x53 + x83 + x157 + x158 + x159 + x160 + x174 ++ x180 + x181 + x183 + x200 + x201 + x317 + x380 + x381 + x388 + x394 ++ x395 + x396 + x397 + x399 + x421 + x437 + x439 + x440 + x477 + x478 ++ x480 + x486 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 + x22 + x23 <= 1 + +x24 + x25 + x26 + x27 + x28 + x29 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 <= 1 + +x36 + x37 + x38 + x39 <= 1 + +x40 + x41 + x42 + x43 + x44 + x45 <= 1 + +x46 + x47 + x48 <= 1 + +x49 + x50 + x51 + x52 + x53 <= 1 + +x54 + x55 + x56 + x57 + x58 + x59 <= 1 + +x60 + x61 + x62 <= 1 + +x63 + x64 + x65 + x66 + x67 + x68 <= 1 + +x69 + x70 + x71 + x72 + x73 + x74 <= 1 + +x75 + x76 + x77 + x78 + x79 + x80 <= 1 + +x81 + x82 + x83 + x84 + x85 + x86 <= 1 + +x87 + x88 + x89 + x90 + x91 + x92 <= 1 + +x93 + x94 + x95 + x96 + x97 + x98 <= 1 + +x99 + x100 + x101 + x102 + x103 + x104 <= 1 + +x105 + x106 + x107 + x108 + x109 + x110 <= 1 + +x112 + x113 <= 1 + +x114 + x115 + x116 + x117 + x118 + x119 <= 1 + +x120 + x121 + x122 + x123 + x124 + x125 <= 1 + +x126 + x127 + x128 <= 1 + +x129 + x130 + x131 + x132 + x133 + x134 <= 1 + +x135 + x136 + x137 + x138 + x139 + x140 <= 1 + +x141 + x142 + x143 <= 1 + +x144 + x145 + x146 + x147 + x148 + x149 <= 1 + +x151 + x152 + x153 + x154 + x155 + x156 <= 1 + +x157 + x158 + x159 + x160 + x161 + x162 <= 1 + +x163 + x164 + x165 + x166 + x167 + x168 <= 1 + +x169 + x170 + x171 + x172 + x173 + x174 <= 1 + +x175 + x176 + x177 <= 1 + +x178 + x179 + x180 + x181 + x182 + x183 <= 1 + +x184 + x185 + x186 + x187 + x188 + x189 <= 1 + +x190 + x191 + x192 + x193 + x194 + x195 <= 1 + +x196 + x197 + x198 + x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x208 + x209 + x210 + x211 + x212 <= 1 + +x213 + x214 + x215 + x216 + x217 + x218 <= 1 + +x219 + x220 + x221 + x222 + x223 + x224 <= 1 + +x225 + x226 + x227 + x228 <= 1 + +x230 + x231 + x232 + x233 <= 1 + +x234 + x235 + x236 + x237 + x238 + x239 <= 1 + +x240 + x241 + x242 + x243 + x244 + x245 <= 1 + +x246 + x247 + x248 + x249 + x250 + x251 <= 1 + +x252 + x253 + x254 + x255 <= 1 + +x256 + x257 + x258 + x259 + x260 + x261 <= 1 + +x262 + x263 <= 1 + +x264 + x265 + x266 <= 1 + +x267 + x268 + x269 + x270 + x271 + x272 <= 1 + +x274 + x275 + x276 + x277 + x278 + x279 <= 1 + +x280 + x281 + x282 + x283 + x284 <= 1 + +x285 + x286 + x287 + x288 + x289 + x290 <= 1 + +x291 + x292 + x293 + x294 + x295 + x296 <= 1 + +x297 + x298 + x299 <= 1 + +x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 + x310 <= 1 + +x313 + x314 + x315 + x316 + x317 + x318 <= 1 + +x319 + x320 + x321 + x322 + x323 <= 1 + +x324 + x325 + x326 + x327 + x328 + x329 <= 1 + +x330 + x331 + x332 + x333 + x334 <= 1 + +x336 + x337 + x338 + x339 + x340 + x341 <= 1 + +x342 + x343 + x344 + x345 + x346 + x347 <= 1 + +x348 + x349 + x350 + x351 + x352 + x353 <= 1 + +x354 + x355 + x356 + x357 + x358 + x359 <= 1 + +x360 + x361 + x362 + x363 + x364 + x365 <= 1 + +x366 + x367 + x368 + x369 <= 1 + +x370 + x371 + x372 + x373 + x374 + x375 <= 1 + +x376 + x377 + x378 + x379 + x380 + x381 <= 1 + +x382 + x383 + x384 + x385 + x386 + x387 <= 1 + +x388 + x389 + x390 + x391 + x392 + x393 <= 1 + +x394 + x395 + x396 + x397 + x398 + x399 <= 1 + +x400 + x401 + x402 + x403 + x404 + x405 <= 1 + +x406 + x407 + x408 + x409 <= 1 + +x410 + x411 <= 1 + +x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 + x422 + x423 <= 1 + +x424 + x425 + x426 <= 1 + +x427 + x428 + x429 + x430 + x431 + x432 <= 1 + +x433 + x434 <= 1 + +x435 + x436 + x437 + x438 + x439 + x440 <= 1 + +x442 + x443 + x444 + x445 + x446 + x447 <= 1 + +x448 + x449 + x450 + x451 + x452 + x453 <= 1 + +x454 + x455 + x456 <= 1 + +x457 + x458 + x459 <= 1 + +x460 + x461 + x462 + x463 + x464 + x465 <= 1 + +x467 + x468 + x469 + x470 + x471 + x472 <= 1 + +x473 + x474 <= 1 + +x475 + x476 + x477 + x478 + x479 + x480 <= 1 + +x481 + x482 + x483 + x484 + x485 + x486 <= 1 + +x487 + x488 + x489 + x490 + x491 + x492 <= 1 + +x493 + x494 + x495 + x496 + x497 + x498 <= 1 + +x499 + x500 + x501 + x502 + x503 + x504 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 x503 x504 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0011.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0011.lp new file mode 100644 index 000000000..c5732b618 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0011.lp @@ -0,0 +1,987 @@ +max + +1144.46x0 + 1398.55x1 + 1381.69x2 + 1369.31x3 + 1353.11x4 + 1343.75x5 + 612.783x6 + 702.966x7 + 649.58x8 + 646.237x9 + +617.735x10 + 611.873x11 + 233.305x12 + 256.713x13 + 155.038x14 + 899.619x15 + 1024.94x16 + 1001.28x17 + 990.339x18 + 972.009x19 + +963.009x20 + 678.065x21 + 893.202x22 + 736.474x23 + 583.94x24 + 583.024x25 + 566.91x26 + 816.442x27 + 1087.07x28 + 1023.96x29 + +951.548x30 + 949.542x31 + 899.419x32 + 456.613x33 + 614.529x34 + 582.775x35 + 566.11x36 + 521.564x37 + 501.653x38 + 112.44x39 + +116.314x40 + 1982.82x41 + 2039.91x42 + 1971.25x43 + 1960.18x44 + 1937.37x45 + 1935.3x46 + 671.398x47 + 851.244x48 + 774.649x49 + +736.26x50 + 695.599x51 + 682.474x52 + 337.262x53 + 474.003x54 + 399.021x55 + 395.368x56 + 366.875x57 + 364.326x58 + 915.994x59 + +1309.79x60 + 1203.36x61 + 1095.33x62 + 1080.12x63 + 1060.23x64 + 822.414x65 + 924.328x66 + 797.321x67 + 794.778x68 + 771.87x69 + +743.604x70 + 737.907x71 + 924.01x72 + 846.837x73 + 836.43x74 + 811.188x75 + 780.347x76 + 1459.43x77 + 1657.36x78 + 1585.9x79 + +1566.89x80 + 1533.12x81 + 1518.56x82 + 258.623x83 + 241.632x84 + 172.261x85 + 146.657x86 + 106.476x87 + 152.398x88 + 288.639x89 + +424.285x90 + 408.656x91 + 364.349x92 + 332.965x93 + 311.263x94 + 237.059x95 + 344.999x96 + 191.286x97 + 179.751x98 + 142.783x99 + +1750.58x100 + 1991.55x101 + 1819.94x102 + 1797.02x103 + 1758.79x104 + 1741.78x105 + 971.911x106 + 1069.62x107 + 1050.02x108 + 977.993x109 + +946.041x110 + 917.734x111 + 127.025x112 + 73.7711x113 + 308.108x114 + 359.869x115 + 317.179x116 + 246.254x117 + 237.992x118 + 180.567x119 + +360.749x120 + 533.238x121 + 483.877x122 + 440.963x123 + 424.038x124 + 416.089x125 + 1728.15x126 + 1929.35x127 + 1879.64x128 + 1835.03x129 + +1697.5x130 + 1687.89x131 + 614.453x132 + 871.656x133 + 820.173x134 + 807.559x135 + 758.07x136 + 673.172x137 + 669.89x138 + 926.255x139 + +915.242x140 + 894.873x141 + 876.453x142 + 763.616x143 + 1594.03x144 + 1865.37x145 + 1765.06x146 + 1755.63x147 + 1729.62x148 + 1696.21x149 + +356.158x150 + 416.255x151 + 394.812x152 + 344.439x153 + 299.888x154 + 278.669x155 + 189.473x156 + 279.941x157 + 181.511x158 + 85.0603x159 + +489.537x160 + 726.773x161 + 639.421x162 + 613.933x163 + 574.609x164 + 564.639x165 + 296.605x166 + 1200.6x167 + 1504.4x168 + 1388.39x169 + +1348.34x170 + 1309.51x171 + 1295.15x172 + 357.763x173 + 477.457x174 + 432.902x175 + 424.824x176 + 402.054x177 + 245.813x178 + 211.67x179 + +294.282x180 + 249.423x181 + 180.583x182 + 2.14486x183 + 139.977x184 + 120.228x185 + 68.6955x186 + 489.429x187 + 708.016x188 + 701.953x189 + +698.343x190 + 642.205x191 + 608.639x192 + 1941.06x193 + 2144.32x194 + 2102.58x195 + 2056.61x196 + 2054.98x197 + 2019.32x198 + 197.195x199 + +224.869x200 + 96.2321x201 + 492.043x202 + 618.898x203 + 618.348x204 + 563.11x205 + 560.523x206 + 537.874x207 + 781.332x208 + 942.923x209 + +877.734x210 + 872.484x211 + 856.893x212 + 813.662x213 + 674.359x214 + 811.958x215 + 797.28x216 + 762.447x217 + 760.689x218 + 747.179x219 + +763.564x220 + 790.899x221 + 788.555x222 + 782.786x223 + 781.763x224 + 781.688x225 + 132.636x226 + 79.629x227 + 279.339x228 + 323.891x229 + +293.045x230 + 217.29x231 + 164.032x232 + 407.365x233 + 536.554x234 + 495.36x235 + 454.952x236 + 378.042x237 + 337.85x238 + 308.493x239 + +316.653x240 + 306.788x241 + 208.926x242 + 196.648x243 + 168.377x244 + 459.776x245 + 522.697x246 + 503.85x247 + 493.188x248 + 469.05x249 + +464.053x250 + 252.116x251 + 377.921x252 + 291.55x253 + 289.367x254 + 174.359x255 + 200.33x256 + 156.006x257 + 142.107x258 + 245.131x259 + +247.152x260 + 72.0462x261 + 397.602x262 + 581.106x263 + 471.987x264 + 423.38x265 + 338.809x266 + 273.779x267 + 1966.97x268 + 2414.24x269 + +2361.64x270 + 2341.34x271 + 2302.64x272 + 2269.31x273 + 334.707x274 + 380.724x275 + 371.016x276 + 174.805x277 + 22.0949x278 + 224.421x279 + +299.203x280 + 281.467x281 + 271.542x282 + 253.271x283 + 185.174x284 + 249.621x285 + 121.056x286 + 151.557x287 + 413.455x288 + 585.724x289 + +517.221x290 + 511.012x291 + 474.709x292 + 471.913x293 + 404.598x294 + 428.15x295 + 398.6x296 + 385.227x297 + 377.005x298 + 335.223x299 + +649.84x300 + 715.272x301 + 667.103x302 + 611.111x303 + 570.003x304 + 533.958x305 + 442.156x306 + 558.224x307 + 524.563x308 + 488.425x309 + +474.301x310 + 463.264x311 + 488.192x312 + 689.019x313 + 598.268x314 + 579.577x315 + 569.46x316 + 545.28x317 + 162.462x318 + 214.946x319 + +119.437x320 + 141.89x321 + 74.9947x322 + 100.076x323 + 393.124x324 + 556.409x325 + 542.696x326 + 470.312x327 + 444.186x328 + 401.189x329 + +72.3174x330 + 241.834x331 + 304.539x332 + 185.502x333 + 181.972x334 + 414.692x335 + 550.19x336 + 503.134x337 + 484.947x338 + 425.49x339 + +404.089x340 + 23.1871x341 + 761.763x342 + 747.373x343 + 746.343x344 + 735.32x345 + 728.068x346 + 726.859x347 + 818.843x348 + 853.378x349 + +818.602x350 + 732.589x351 + 711.432x352 + 702.112x353 + 129.312x354 + 315.614x355 + 50.171x356 + 96.6923x357 + 83.6081x358 + 66.1347x359 + +64.2999x360 + 74.4696x361 + 103.473x362 + 79.7159x363 + 51.3056x364 + 131.83x365 + 175.115x366 + 110.437x367 + 23.6956x368 + 83.5494x369 + +41.9867x370 + 595.394x371 + 749.874x372 + 688.345x373 + 679.892x374 + 667.22x375 + 653.333x376 + 532.296x377 + 760.554x378 + 753.22x379 + +723.816x380 + 707.188x381 + 677.341x382 + 124.742x383 + 28.444x384 + 90.9479x385 + 120.86x386 + 105.221x387 + 98.8582x388 + 302.12x389 + +313.662x390 + 311.795x391 + 281.402x392 + 256.074x393 + 655.758x394 + 694.417x395 + 670.881x396 + 583.986x397 + 578.921x398 + 558.734x399 + +225.199x400 + 80.3532x401 + 1156.15x402 + 1475.14x403 + 1295.21x404 + 1286.2x405 + 1274.39x406 + 1265.78x407 + 1064.65x408 + 1545.65x409 + +1477.66x410 + 1463.98x411 + 1443.33x412 + 1432.96x413 + 215.2x414 + 282.864x415 + 211.759x416 + 78.0387x417 + 227.432x418 + 245.454x419 + +181.027x420 + 155.841x421 + 813.173x422 + 1081.06x423 + 1077.48x424 + 1033.8x425 + 952.672x426 + 908.922x427 + 312.771x428 + 447.371x429 + +416.039x430 + 399.852x431 + 390.103x432 + 389.785x433 + 480.165x434 + 546.475x435 + 522.859x436 + 517.284x437 + 445.892x438 + 424.021x439 + +463.841x440 + 535.307x441 + 504.811x442 + 472.049x443 + 443.744x444 + 382.259x445 + 152.65x446 + 132.789x447 + 119.671x448 + 233.33x449 + +257.955x450 + 249.958x451 + 189.86x452 + 543.199x453 + 724.143x454 + 627.53x455 + 558.837x456 + 548.258x457 + 524.224x458 + 181.519x459 + +151.195x460 + 117.062x461 + 213.061x462 + 255.474x463 + 237.251x464 + 228.129x465 + 181.917x466 + 447.709x467 + 515.401x468 + 483.977x469 + +480.112x470 + 451.208x471 + 424.834x472 + 600.781x473 + 725.652x474 + 658.378x475 + 641.615x476 + 577.543x477 + 552.729x478 + 432.937x479 + +448.024x480 + 445.039x481 + 419.458x482 + 383.06x483 + 350.024x484 + 1428.52x485 + 1465.89x486 + 1438.46x487 + 1427.68x488 + 1378.6x489 + +1376.01x490 + 649.258x491 + 923.05x492 + 911.169x493 + 731.567x494 + 698.764x495 + 674.91x496 + 478.442x497 + 579.426x498 + 548.597x499 + +482.727x500 + 472.536x501 + 463.251x502 + +st + +x10 + x42 + x49 + x50 + x103 + x105 + x130 + x148 + x197 + x199 ++ x200 + x293 + x301 + x303 + x309 + x345 + x404 + x413 + x439 + x440 ++ x441 + x442 + x443 + x444 + x460 + x470 <= 1 + +x10 + x42 + x43 + x50 + x66 + x77 + x82 + x103 + x148 + x199 ++ x200 + x201 + x267 + x300 + x301 + x303 + x345 + x346 + x404 + x411 ++ x435 + x439 + x440 + x441 + x442 + x443 + x470 <= 1 + +x0 + x47 + x50 + x66 + x77 + x82 + x86 + x126 + x148 + x199 ++ x201 + x228 + x231 + x232 + x267 + x301 + x317 + x322 + x323 + x344 ++ x346 + x441 + x442 + x467 + x470 <= 1 + +x0 + x77 + x79 + x81 + x82 + x85 + x86 + x126 + x148 + x201 ++ x231 + x232 + x266 + x267 + x272 + x278 + x317 + x323 + x442 + x470 ++ x486 <= 1 + +x0 + x29 + x47 + x60 + x68 + x77 + x78 + x79 + x81 + x82 ++ x83 + x85 + x86 + x100 + x105 + x126 + x130 + x144 + x224 + x264 ++ x266 + x302 + x343 + x346 + x350 + x353 + x371 + x375 + x409 + x468 + <= 1 + +x0 + x27 + x31 + x52 + x68 + x77 + x78 + x79 + x80 + x82 ++ x100 + x126 + x130 + x144 + x145 + x148 + x164 + x168 + x224 + x242 ++ x266 + x302 + x348 + x350 + x371 + x372 + x375 + x406 + x428 + x468 + <= 1 + +x0 + x27 + x31 + x34 + x45 + x52 + x68 + x77 + x78 + x79 ++ x81 + x82 + x100 + x105 + x108 + x144 + x168 + x223 + x224 + x272 ++ x284 + x285 + x287 + x289 + x348 + x349 + x375 + x376 + x406 + x418 ++ x421 + x455 <= 1 + +x0 + x4 + x16 + x27 + x29 + x31 + x45 + x52 + x78 + x144 ++ x168 + x215 + x220 + x223 + x271 + x284 + x285 + x286 + x289 + x348 ++ x418 + x419 + x421 + x455 <= 1 + +x0 + x4 + x16 + x27 + x31 + x45 + x70 + x78 + x132 + x136 ++ x138 + x140 + x146 + x165 + x168 + x215 + x224 + x240 + x289 + x418 ++ x419 + x420 + x455 + x488 + x496 <= 1 + +x4 + x45 + x70 + x136 + x146 + x215 + x288 + x289 + x419 + x420 ++ x448 <= 1 + +x9 + x10 + x17 + x43 + x103 + x105 + x148 + x200 + x223 + x258 ++ x288 + x293 + x301 + x309 + x342 + x345 + x404 + x411 + x412 + x422 ++ x439 + x440 + x441 + x442 + x443 + x444 + x445 + x460 <= 1 + +x9 + x10 + x11 + x17 + x41 + x42 + x43 + x50 + x66 + x69 ++ x82 + x103 + x105 + x118 + x123 + x148 + x230 + x273 + x288 + x293 ++ x301 + x309 + x322 + x342 + x345 + x404 + x411 + x412 + x434 + x435 ++ x436 + x439 + x440 + x441 + x442 + x444 + x445 + x467 + x470 <= 1 + +x9 + x10 + x18 + x41 + x43 + x44 + x47 + x50 + x66 + x69 ++ x77 + x80 + x82 + x105 + x123 + x126 + x147 + x148 + x228 + x229 ++ x231 + x232 + x273 + x309 + x322 + x342 + x343 + x344 + x345 + x346 ++ x347 + x386 + x404 + x434 + x435 + x438 + x439 + x441 + x442 + x467 ++ x472 <= 1 + +x9 + x18 + x41 + x42 + x43 + x44 + x47 + x49 + x60 + x77 ++ x79 + x80 + x81 + x82 + x84 + x100 + x123 + x126 + x148 + x170 ++ x232 + x262 + x266 + x267 + x273 + x317 + x324 + x342 + x343 + x344 ++ x345 + x346 + x347 + x351 + x409 + x412 + x435 + x438 + x467 + x470 ++ x472 + x486 <= 1 + +x0 + x9 + x27 + x31 + x41 + x43 + x44 + x47 + x49 + x51 ++ x52 + x60 + x68 + x77 + x78 + x79 + x80 + x81 + x82 + x83 ++ x84 + x85 + x86 + x100 + x102 + x105 + x126 + x140 + x144 + x147 ++ x148 + x158 + x170 + x211 + x262 + x264 + x266 + x272 + x273 + x323 ++ x343 + x346 + x349 + x350 + x353 + x371 + x409 + x435 + x468 <= 1 + +x0 + x12 + x13 + x27 + x29 + x30 + x31 + x49 + x60 + x77 ++ x78 + x79 + x80 + x81 + x82 + x85 + x100 + x102 + x105 + x106 ++ x109 + x126 + x130 + x144 + x145 + x148 + x198 + x224 + x262 + x263 ++ x264 + x266 + x271 + x272 + x313 + x346 + x348 + x349 + x350 + x353 ++ x371 + x372 + x375 + x487 <= 1 + +x0 + x4 + x13 + x27 + x28 + x29 + x30 + x31 + x34 + x43 ++ x44 + x45 + x49 + x52 + x77 + x78 + x79 + x80 + x81 + x82 ++ x100 + x102 + x105 + x106 + x108 + x109 + x111 + x126 + x127 + x130 ++ x136 + x137 + x140 + x141 + x144 + x145 + x148 + x155 + x168 + x198 ++ x220 + x223 + x224 + x225 + x256 + x264 + x269 + x271 + x272 + x285 ++ x289 + x313 + x348 + x349 + x353 + x371 + x372 + x373 + x375 + x376 ++ x403 + x413 + x421 + x455 + x469 + x487 <= 1 + +x0 + x4 + x27 + x29 + x31 + x34 + x43 + x45 + x52 + x81 ++ x100 + x106 + x132 + x136 + x140 + x145 + x146 + x168 + x220 + x222 ++ x223 + x224 + x225 + x271 + x272 + x284 + x286 + x289 + x348 + x371 ++ x375 + x376 + x421 + x455 <= 1 + +x4 + x30 + x41 + x45 + x65 + x70 + x78 + x106 + x130 + x132 ++ x136 + x137 + x138 + x140 + x141 + x143 + x145 + x146 + x168 + x210 ++ x220 + x221 + x222 + x223 + x224 + x225 + x239 + x240 + x269 + x270 ++ x271 + x272 + x289 + x318 + x319 + x348 + x376 + x418 + x419 + x453 ++ x455 + x488 <= 1 + +x3 + x54 + x65 + x70 + x101 + x102 + x106 + x118 + x128 + x130 ++ x136 + x137 + x138 + x140 + x142 + x143 + x146 + x168 + x220 + x221 ++ x223 + x225 + x239 + x241 + x315 + x316 + x317 + x318 + x320 + x334 ++ x336 + x348 + x423 + x455 + x483 + x486 <= 1 + +x6 + x9 + x10 + x41 + x43 + x103 + x105 + x148 + x223 + x227 ++ x256 + x258 + x288 + x290 + x291 + x292 + x293 + x301 + x342 + x344 ++ x345 + x404 + x411 + x439 + x440 + x441 + x443 + x444 + x445 + x459 ++ x460 <= 1 + +x4 + x6 + x8 + x9 + x10 + x11 + x17 + x41 + x43 + x44 ++ x66 + x69 + x82 + x103 + x105 + x122 + x147 + x148 + x170 + x195 ++ x228 + x230 + x272 + x288 + x291 + x292 + x301 + x309 + x342 + x344 ++ x345 + x398 + x411 + x412 + x434 + x435 + x436 + x437 + x438 + x439 ++ x440 + x444 + x445 + x470 + x471 <= 1 + +x10 + x19 + x41 + x43 + x44 + x47 + x50 + x66 + x68 + x69 ++ x77 + x79 + x80 + x82 + x100 + x102 + x103 + x105 + x123 + x145 ++ x147 + x148 + x170 + x228 + x229 + x231 + x246 + x265 + x272 + x288 ++ x291 + x292 + x301 + x309 + x326 + x327 + x342 + x343 + x344 + x345 ++ x346 + x386 + x434 + x437 + x438 + x444 + x467 + x471 + x486 + x498 ++ x499 + x502 <= 1 + +x1 + x3 + x10 + x19 + x30 + x32 + x43 + x44 + x47 + x48 ++ x50 + x60 + x66 + x69 + x77 + x79 + x80 + x81 + x82 + x83 ++ x84 + x100 + x102 + x126 + x127 + x145 + x147 + x148 + x163 + x170 ++ x246 + x262 + x265 + x268 + x273 + x291 + x295 + x317 + x324 + x342 ++ x343 + x346 + x347 + x351 + x409 + x411 + x412 + x434 + x437 + x438 ++ x467 + x468 + x469 + x470 + x471 + x472 + x486 + x487 + x492 + x498 + <= 1 + +x3 + x14 + x17 + x27 + x28 + x30 + x32 + x43 + x44 + x47 ++ x48 + x49 + x50 + x51 + x52 + x60 + x77 + x78 + x79 + x80 ++ x81 + x82 + x83 + x84 + x100 + x102 + x105 + x111 + x126 + x130 ++ x140 + x145 + x147 + x148 + x163 + x170 + x262 + x263 + x264 + x265 ++ x268 + x272 + x280 + x295 + x317 + x324 + x342 + x343 + x349 + x350 ++ x351 + x353 + x372 + x376 + x401 + x409 + x412 + x437 + x467 + x468 ++ x486 + x487 <= 1 + +x0 + x12 + x13 + x27 + x28 + x29 + x30 + x31 + x32 + x34 ++ x43 + x44 + x47 + x48 + x49 + x52 + x60 + x77 + x78 + x79 ++ x80 + x81 + x82 + x100 + x102 + x105 + x106 + x107 + x108 + x109 ++ x111 + x126 + x129 + x130 + x136 + x140 + x141 + x144 + x145 + x147 ++ x148 + x163 + x168 + x224 + x263 + x264 + x268 + x269 + x271 + x272 ++ x273 + x289 + x313 + x317 + x343 + x346 + x348 + x349 + x350 + x351 ++ x353 + x371 + x372 + x373 + x375 + x376 + x382 + x400 + x401 + x403 ++ x413 + x424 + x455 + x468 + x486 + x487 <= 1 + +x1 + x27 + x28 + x29 + x30 + x31 + x32 + x34 + x43 + x44 ++ x48 + x60 + x77 + x78 + x79 + x80 + x81 + x82 + x100 + x102 ++ x103 + x105 + x106 + x107 + x108 + x109 + x111 + x126 + x129 + x130 ++ x132 + x133 + x136 + x137 + x139 + x140 + x141 + x143 + x144 + x145 ++ x146 + x148 + x155 + x168 + x189 + x196 + x197 + x198 + x220 + x221 ++ x223 + x224 + x225 + x263 + x269 + x271 + x272 + x289 + x313 + x314 ++ x337 + x340 + x343 + x348 + x349 + x350 + x351 + x352 + x353 + x371 ++ x373 + x375 + x376 + x403 + x409 + x410 + x412 + x423 + x424 + x469 ++ x487 + x489 <= 1 + +x17 + x53 + x57 + x70 + x78 + x79 + x80 + x100 + x102 + x109 ++ x110 + x111 + x123 + x130 + x132 + x134 + x135 + x137 + x138 + x139 ++ x141 + x143 + x146 + x150 + x151 + x153 + x187 + x189 + x191 + x220 ++ x221 + x222 + x223 + x225 + x270 + x271 + x312 + x315 + x316 + x335 ++ x337 + x340 + x373 + x374 + x403 + x423 + x453 + x455 + x488 + x489 + <= 1 + +x25 + x53 + x56 + x57 + x70 + x74 + x78 + x79 + x102 + x126 ++ x128 + x130 + x132 + x134 + x135 + x136 + x137 + x138 + x140 + x141 ++ x142 + x143 + x146 + x153 + x191 + x197 + x210 + x220 + x221 + x222 ++ x223 + x225 + x241 + x259 + x269 + x270 + x271 + x272 + x312 + x315 ++ x316 + x319 + x335 + x340 + x373 + x381 + x403 + x453 + x455 + x488 + <= 1 + +x25 + x53 + x54 + x56 + x57 + x58 + x65 + x70 + x101 + x102 ++ x103 + x118 + x128 + x130 + x132 + x136 + x137 + x138 + x142 + x143 ++ x146 + x220 + x221 + x222 + x223 + x225 + x241 + x315 + x316 + x317 ++ x320 + x331 + x333 + x334 + x381 + x455 + x466 + x477 + x486 + x489 + <= 1 + +x6 + x7 + x8 + x101 + x105 + x148 + x160 + x198 + x217 + x222 ++ x226 + x227 + x255 + x256 + x258 + x268 + x288 + x290 + x291 + x292 ++ x293 + x342 + x344 + x354 + x443 + x444 + x445 + x459 + x461 <= 1 + +x4 + x6 + x7 + x8 + x9 + x11 + x16 + x18 + x19 + x36 ++ x41 + x43 + x44 + x50 + x51 + x66 + x82 + x102 + x103 + x105 ++ x122 + x147 + x148 + x149 + x170 + x195 + x210 + x229 + x230 + x291 ++ x292 + x327 + x345 + x388 + x398 + x406 + x409 + x412 + x434 + x435 ++ x436 + x440 + x492 + x499 + x501 <= 1 + +x3 + x4 + x11 + x18 + x19 + x30 + x32 + x36 + x41 + x43 ++ x45 + x48 + x50 + x51 + x65 + x66 + x68 + x69 + x77 + x79 ++ x82 + x102 + x103 + x120 + x122 + x129 + x145 + x147 + x148 + x170 ++ x217 + x219 + x229 + x230 + x265 + x291 + x292 + x301 + x326 + x327 ++ x329 + x351 + x385 + x386 + x398 + x406 + x408 + x412 + x434 + x437 ++ x438 + x471 + x497 + x498 + x499 + x501 + x502 <= 1 + +x1 + x3 + x4 + x10 + x17 + x23 + x32 + x41 + x43 + x44 ++ x46 + x48 + x49 + x51 + x60 + x65 + x66 + x67 + x69 + x77 ++ x81 + x82 + x102 + x105 + x122 + x128 + x129 + x144 + x145 + x165 ++ x170 + x219 + x262 + x265 + x268 + x273 + x295 + x324 + x325 + x326 ++ x329 + x351 + x353 + x406 + x408 + x409 + x411 + x412 + x467 + x471 ++ x472 + x486 + x487 + x497 + x498 + x499 + x500 + x501 + x502 <= 1 + +x1 + x3 + x4 + x14 + x17 + x30 + x32 + x34 + x43 + x44 ++ x47 + x48 + x49 + x51 + x52 + x60 + x66 + x67 + x77 + x78 ++ x79 + x81 + x91 + x100 + x105 + x111 + x122 + x126 + x128 + x129 ++ x144 + x145 + x146 + x147 + x148 + x149 + x163 + x171 + x184 + x216 ++ x219 + x263 + x265 + x268 + x269 + x270 + x271 + x272 + x273 + x280 ++ x299 + x326 + x349 + x350 + x353 + x372 + x376 + x409 + x411 + x412 ++ x413 + x437 + x472 + x497 + x498 + x500 + x502 <= 1 + +x1 + x12 + x14 + x26 + x27 + x28 + x29 + x30 + x31 + x32 ++ x34 + x43 + x44 + x48 + x49 + x52 + x60 + x77 + x78 + x79 ++ x80 + x81 + x82 + x100 + x105 + x106 + x108 + x109 + x111 + x126 ++ x129 + x136 + x141 + x144 + x145 + x146 + x147 + x148 + x149 + x163 ++ x168 + x175 + x198 + x224 + x263 + x268 + x269 + x270 + x271 + x272 ++ x273 + x299 + x313 + x337 + x343 + x349 + x350 + x351 + x352 + x353 ++ x372 + x373 + x375 + x400 + x403 + x409 + x410 + x411 + x412 + x413 ++ x468 + x498 <= 1 + +x1 + x18 + x28 + x29 + x31 + x32 + x60 + x78 + x79 + x80 ++ x100 + x104 + x105 + x106 + x107 + x108 + x109 + x110 + x128 + x129 ++ x130 + x133 + x140 + x141 + x144 + x145 + x148 + x150 + x155 + x189 ++ x196 + x198 + x224 + x238 + x268 + x270 + x271 + x272 + x314 + x348 ++ x349 + x350 + x351 + x352 + x373 + x375 + x376 + x409 + x424 + x458 ++ x487 <= 1 + +x1 + x28 + x30 + x34 + x43 + x54 + x57 + x58 + x60 + x62 ++ x70 + x73 + x74 + x78 + x80 + x81 + x102 + x103 + x105 + x106 ++ x107 + x108 + x109 + x110 + x111 + x126 + x128 + x130 + x132 + x134 ++ x135 + x136 + x137 + x138 + x139 + x141 + x142 + x143 + x144 + x145 ++ x146 + x150 + x151 + x152 + x153 + x187 + x189 + x196 + x197 + x220 ++ x221 + x222 + x225 + x234 + x270 + x271 + x272 + x312 + x313 + x314 ++ x316 + x335 + x337 + x340 + x352 + x360 + x373 + x403 + x423 + x424 ++ x489 <= 1 + +x28 + x53 + x54 + x56 + x57 + x58 + x70 + x72 + x73 + x74 ++ x78 + x80 + x102 + x110 + x111 + x126 + x127 + x128 + x130 + x132 ++ x134 + x135 + x137 + x138 + x139 + x141 + x142 + x143 + x144 + x145 ++ x146 + x152 + x153 + x187 + x188 + x191 + x192 + x197 + x220 + x221 ++ x222 + x225 + x236 + x241 + x259 + x269 + x270 + x271 + x272 + x312 ++ x315 + x316 + x335 + x337 + x339 + x340 + x352 + x373 + x374 + x403 ++ x424 + x476 + x486 + x488 + x489 <= 1 + +x23 + x53 + x54 + x56 + x57 + x58 + x70 + x74 + x101 + x102 ++ x103 + x107 + x128 + x130 + x132 + x135 + x137 + x138 + x142 + x143 ++ x146 + x220 + x221 + x222 + x223 + x225 + x237 + x269 + x312 + x315 ++ x316 + x317 + x321 + x331 + x332 + x333 + x334 + x340 + x371 + x373 ++ x403 + x424 + x425 + x486 + x489 <= 1 + +x6 + x7 + x8 + x101 + x139 + x148 + x160 + x198 + x217 + x226 ++ x255 + x256 + x258 + x268 + x288 + x290 + x292 + x344 + x354 + x424 ++ x443 + x445 + x459 + x461 <= 1 + +x3 + x4 + x6 + x7 + x8 + x9 + x11 + x15 + x16 + x18 ++ x19 + x41 + x42 + x43 + x44 + x45 + x46 + x82 + x165 + x170 ++ x195 + x217 + x290 + x292 + x327 + x379 + x388 + x398 + x408 + x409 ++ x411 + x412 + x436 + x457 + x471 + x499 + x501 <= 1 + +x3 + x4 + x6 + x7 + x8 + x11 + x16 + x17 + x18 + x19 ++ x23 + x36 + x38 + x41 + x42 + x43 + x44 + x45 + x46 + x48 ++ x51 + x65 + x68 + x69 + x77 + x122 + x129 + x145 + x157 + x165 ++ x170 + x185 + x216 + x217 + x271 + x290 + x291 + x293 + x294 + x295 ++ x296 + x297 + x301 + x324 + x325 + x326 + x327 + x329 + x358 + x385 ++ x388 + x398 + x406 + x408 + x409 + x411 + x412 + x413 + x436 + x437 ++ x438 + x457 + x471 + x497 + x499 + x501 <= 1 + +x3 + x4 + x6 + x10 + x16 + x17 + x18 + x19 + x23 + x41 ++ x43 + x44 + x45 + x46 + x51 + x65 + x67 + x68 + x69 + x77 ++ x81 + x91 + x99 + x122 + x128 + x129 + x144 + x145 + x157 + x165 ++ x170 + x172 + x182 + x184 + x185 + x216 + x217 + x219 + x235 + x240 ++ x268 + x271 + x272 + x273 + x294 + x295 + x296 + x297 + x298 + x311 ++ x324 + x325 + x326 + x327 + x329 + x359 + x385 + x387 + x408 + x409 ++ x411 + x412 + x413 + x436 + x457 + x471 + x497 + x499 + x500 + x501 ++ x502 <= 1 + +x16 + x17 + x19 + x20 + x26 + x32 + x43 + x44 + x51 + x66 ++ x67 + x77 + x79 + x87 + x91 + x93 + x100 + x101 + x102 + x105 ++ x108 + x128 + x129 + x144 + x146 + x169 + x170 + x171 + x184 + x185 ++ x216 + x240 + x268 + x269 + x271 + x272 + x273 + x294 + x297 + x299 ++ x326 + x349 + x353 + x367 + x376 + x409 + x410 + x411 + x412 + x413 ++ x431 + x436 + x485 + x487 + x497 + x498 + x500 + x501 + x502 <= 1 + +x1 + x5 + x16 + x17 + x20 + x26 + x29 + x30 + x32 + x33 ++ x34 + x37 + x38 + x48 + x51 + x66 + x67 + x78 + x79 + x80 ++ x87 + x88 + x93 + x101 + x104 + x105 + x108 + x109 + x111 + x126 ++ x127 + x128 + x129 + x141 + x145 + x146 + x147 + x149 + x154 + x163 ++ x168 + x169 + x170 + x171 + x196 + x238 + x268 + x269 + x270 + x271 ++ x272 + x273 + x326 + x337 + x350 + x352 + x372 + x405 + x409 + x410 ++ x411 + x412 + x413 + x432 + x433 + x485 + x486 + x487 + x498 + x500 ++ x502 <= 1 + +x1 + x5 + x16 + x18 + x20 + x22 + x33 + x37 + x74 + x78 ++ x80 + x81 + x88 + x93 + x94 + x100 + x101 + x103 + x104 + x105 ++ x106 + x107 + x108 + x109 + x110 + x111 + x127 + x128 + x130 + x133 ++ x140 + x149 + x150 + x151 + x154 + x155 + x191 + x192 + x196 + x197 ++ x233 + x238 + x268 + x269 + x270 + x271 + x272 + x276 + x312 + x314 ++ x315 + x339 + x352 + x372 + x403 + x409 + x423 + x428 + x431 + x432 ++ x433 + x458 + x486 + x487 <= 1 + +x0 + x1 + x18 + x22 + x28 + x54 + x55 + x62 + x63 + x70 ++ x72 + x73 + x74 + x78 + x80 + x81 + x101 + x103 + x104 + x105 ++ x106 + x107 + x108 + x109 + x110 + x111 + x127 + x128 + x130 + x132 ++ x133 + x134 + x135 + x139 + x142 + x143 + x144 + x146 + x150 + x151 ++ x152 + x188 + x189 + x190 + x191 + x192 + x196 + x197 + x209 + x220 ++ x221 + x222 + x224 + x234 + x235 + x236 + x269 + x270 + x271 + x276 ++ x302 + x312 + x314 + x315 + x335 + x336 + x337 + x339 + x369 + x374 ++ x403 + x409 + x423 + x424 + x432 + x446 + x447 + x450 + x458 + x473 ++ x476 + x485 + x486 + x487 + x488 + x489 + x490 + x492 + x496 <= 1 + +x22 + x55 + x56 + x61 + x70 + x72 + x73 + x81 + x100 + x101 ++ x102 + x103 + x104 + x106 + x107 + x108 + x110 + x127 + x128 + x130 ++ x132 + x133 + x134 + x135 + x137 + x138 + x139 + x141 + x142 + x144 ++ x146 + x151 + x153 + x176 + x186 + x187 + x188 + x190 + x191 + x192 ++ x196 + x221 + x222 + x225 + x236 + x241 + x259 + x267 + x269 + x270 ++ x271 + x272 + x302 + x312 + x314 + x315 + x316 + x332 + x335 + x339 ++ x374 + x403 + x409 + x422 + x423 + x424 + x432 + x446 + x448 + x476 ++ x485 + x486 + x487 + x488 + x489 + x495 + x496 <= 1 + +x2 + x22 + x23 + x53 + x55 + x56 + x61 + x70 + x72 + x100 ++ x101 + x102 + x103 + x104 + x107 + x108 + x127 + x128 + x130 + x134 ++ x135 + x137 + x138 + x139 + x142 + x143 + x144 + x146 + x166 + x174 ++ x188 + x190 + x222 + x237 + x260 + x267 + x269 + x271 + x312 + x314 ++ x316 + x321 + x331 + x332 + x340 + x371 + x374 + x403 + x423 + x424 ++ x425 + x474 + x475 + x476 + x485 + x486 + x488 + x489 <= 1 + +x6 + x7 + x8 + x11 + x18 + x19 + x24 + x29 + x133 + x139 ++ x156 + x160 + x165 + x195 + x198 + x217 + x255 + x257 + x288 + x290 ++ x292 + x298 + x379 + x398 + x408 + x409 + x443 + x445 + x461 <= 1 + +x3 + x4 + x6 + x7 + x8 + x11 + x15 + x18 + x19 + x24 ++ x29 + x41 + x42 + x43 + x44 + x45 + x46 + x67 + x69 + x82 ++ x97 + x139 + x143 + x156 + x157 + x165 + x195 + x198 + x214 + x216 ++ x217 + x251 + x255 + x257 + x290 + x298 + x327 + x352 + x379 + x381 ++ x387 + x398 + x404 + x408 + x409 + x411 + x413 + x469 <= 1 + +x3 + x4 + x6 + x7 + x8 + x11 + x15 + x16 + x17 + x18 ++ x19 + x20 + x23 + x38 + x41 + x44 + x45 + x46 + x65 + x67 ++ x68 + x69 + x91 + x95 + x97 + x99 + x122 + x144 + x145 + x157 ++ x162 + x165 + x167 + x170 + x172 + x182 + x195 + x214 + x216 + x217 ++ x218 + x219 + x271 + x272 + x290 + x293 + x294 + x296 + x297 + x298 ++ x311 + x324 + x325 + x326 + x327 + x328 + x329 + x352 + x357 + x358 ++ x387 + x406 + x408 + x409 + x411 + x412 + x413 + x453 + x457 + x469 ++ x497 + x499 + x500 <= 1 + +x3 + x4 + x17 + x19 + x38 + x41 + x43 + x44 + x46 + x65 ++ x67 + x68 + x69 + x77 + x91 + x96 + x101 + x122 + x128 + x129 ++ x145 + x157 + x165 + x167 + x170 + x172 + x195 + x216 + x217 + x219 ++ x268 + x271 + x272 + x273 + x294 + x295 + x296 + x297 + x298 + x299 ++ x324 + x325 + x328 + x329 + x333 + x357 + x359 + x364 + x366 + x408 ++ x409 + x411 + x412 + x413 + x457 + x469 + x485 <= 1 + +x1 + x3 + x17 + x19 + x38 + x41 + x44 + x46 + x60 + x64 ++ x65 + x67 + x68 + x89 + x91 + x93 + x96 + x101 + x128 + x129 ++ x131 + x149 + x171 + x194 + x195 + x268 + x269 + x271 + x272 + x273 ++ x294 + x296 + x299 + x328 + x329 + x365 + x366 + x367 + x379 + x410 ++ x411 + x413 + x457 + x477 + x485 + x500 + x501 <= 1 + +x1 + x3 + x5 + x16 + x17 + x32 + x33 + x34 + x37 + x38 ++ x64 + x79 + x89 + x91 + x93 + x98 + x101 + x102 + x104 + x105 ++ x127 + x128 + x129 + x133 + x146 + x147 + x149 + x154 + x163 + x169 ++ x171 + x194 + x196 + x268 + x269 + x270 + x271 + x272 + x273 + x296 ++ x299 + x326 + x328 + x329 + x352 + x402 + x405 + x410 + x411 + x412 ++ x413 + x428 + x430 + x431 + x432 + x433 + x457 + x477 + x485 + x487 ++ x500 + x502 <= 1 + +x0 + x1 + x5 + x20 + x22 + x33 + x37 + x38 + x46 + x60 ++ x64 + x74 + x79 + x80 + x89 + x90 + x94 + x100 + x101 + x103 ++ x104 + x107 + x109 + x110 + x127 + x128 + x129 + x130 + x133 + x149 ++ x154 + x168 + x171 + x192 + x196 + x197 + x213 + x233 + x234 + x238 ++ x268 + x269 + x270 + x271 + x272 + x300 + x314 + x339 + x395 + x402 ++ x403 + x405 + x410 + x413 + x428 + x429 + x430 + x431 + x432 + x433 ++ x477 + x485 + x487 + x496 <= 1 + +x0 + x2 + x22 + x46 + x60 + x61 + x62 + x63 + x64 + x74 ++ x76 + x78 + x80 + x81 + x94 + x100 + x101 + x102 + x103 + x104 ++ x109 + x126 + x127 + x128 + x129 + x130 + x133 + x139 + x142 + x146 ++ x149 + x177 + x188 + x189 + x190 + x191 + x192 + x194 + x196 + x197 ++ x209 + x212 + x213 + x221 + x233 + x234 + x235 + x269 + x270 + x271 ++ x276 + x300 + x302 + x314 + x336 + x338 + x339 + x395 + x403 + x413 ++ x423 + x424 + x427 + x428 + x429 + x430 + x431 + x447 + x473 + x474 ++ x476 + x477 + x485 + x487 + x488 + x489 + x490 + x491 + x492 + x493 ++ x495 + x496 <= 1 + +x22 + x28 + x55 + x61 + x62 + x63 + x64 + x71 + x72 + x73 ++ x74 + x75 + x78 + x80 + x81 + x100 + x101 + x102 + x103 + x104 ++ x107 + x110 + x111 + x127 + x128 + x129 + x130 + x133 + x134 + x135 ++ x138 + x139 + x142 + x146 + x170 + x174 + x176 + x177 + x187 + x188 ++ x189 + x190 + x191 + x192 + x194 + x196 + x197 + x212 + x221 + x233 ++ x234 + x235 + x236 + x237 + x260 + x269 + x270 + x271 + x302 + x312 ++ x314 + x315 + x335 + x336 + x338 + x339 + x355 + x374 + x395 + x396 ++ x403 + x422 + x423 + x424 + x427 + x429 + x430 + x431 + x432 + x474 ++ x475 + x476 + x477 + x478 + x485 + x486 + x487 + x488 + x489 + x490 ++ x493 + x494 + x495 + x496 <= 1 + +x2 + x21 + x22 + x23 + x28 + x55 + x61 + x72 + x81 + x100 ++ x101 + x102 + x103 + x104 + x107 + x110 + x127 + x128 + x129 + x134 ++ x135 + x166 + x174 + x187 + x188 + x190 + x194 + x196 + x197 + x213 ++ x233 + x236 + x237 + x260 + x269 + x271 + x291 + x302 + x316 + x336 ++ x355 + x395 + x403 + x423 + x424 + x468 + x474 + x475 + x476 + x485 ++ x486 + x487 + x488 + x489 + x492 + x493 <= 1 + +x20 + x21 + x24 + x25 + x26 + x42 + x44 + x45 + x104 + x117 ++ x167 + x172 + x193 + x195 + x198 + x204 + x214 + x218 + x251 + x257 ++ x307 + x327 + x377 + x379 + x381 + x404 + x407 + x408 + x466 <= 1 + +x4 + x8 + x15 + x18 + x19 + x20 + x21 + x24 + x26 + x41 ++ x42 + x44 + x45 + x46 + x69 + x104 + x117 + x167 + x172 + x193 ++ x195 + x198 + x202 + x206 + x207 + x214 + x216 + x217 + x219 + x248 ++ x251 + x253 + x257 + x306 + x327 + x352 + x377 + x379 + x380 + x381 ++ x382 + x394 + x397 + x398 + x404 + x408 + x413 <= 1 + +x4 + x7 + x8 + x11 + x15 + x16 + x17 + x20 + x26 + x41 ++ x42 + x44 + x45 + x46 + x65 + x68 + x95 + x97 + x99 + x117 ++ x144 + x162 + x164 + x165 + x167 + x172 + x182 + x195 + x198 + x214 ++ x216 + x217 + x218 + x219 + x272 + x293 + x305 + x311 + x324 + x325 ++ x328 + x329 + x361 + x364 + x378 + x379 + x381 + x382 + x397 + x398 ++ x399 + x404 + x408 + x409 + x411 + x412 + x413 + x453 + x457 + x497 + <= 1 + +x7 + x11 + x15 + x16 + x38 + x41 + x43 + x44 + x46 + x65 ++ x67 + x95 + x97 + x98 + x129 + x165 + x167 + x172 + x183 + x195 ++ x216 + x217 + x268 + x272 + x273 + x290 + x293 + x297 + x298 + x324 ++ x325 + x326 + x328 + x329 + x364 + x368 + x379 + x408 + x409 + x410 ++ x411 + x412 + x413 + x457 + x469 + x491 <= 1 + +x0 + x1 + x3 + x16 + x38 + x41 + x42 + x43 + x44 + x46 ++ x67 + x95 + x96 + x98 + x103 + x129 + x131 + x159 + x171 + x194 ++ x219 + x268 + x269 + x270 + x272 + x273 + x304 + x325 + x328 + x329 ++ x365 + x366 + x367 + x368 + x379 + x408 + x410 + x411 + x412 + x413 ++ x457 + x469 + x491 <= 1 + +x1 + x3 + x5 + x16 + x33 + x38 + x42 + x46 + x59 + x64 ++ x67 + x75 + x76 + x89 + x92 + x93 + x94 + x96 + x98 + x101 ++ x102 + x103 + x104 + x121 + x126 + x127 + x128 + x129 + x131 + x149 ++ x169 + x171 + x193 + x194 + x219 + x268 + x269 + x270 + x272 + x273 ++ x317 + x325 + x328 + x365 + x368 + x369 + x370 + x378 + x379 + x405 ++ x410 + x411 + x412 + x413 + x414 + x415 + x425 + x430 + x431 + x433 ++ x457 + x485 + x494 <= 1 + +x0 + x2 + x3 + x5 + x16 + x22 + x33 + x46 + x59 + x60 ++ x61 + x62 + x64 + x67 + x75 + x76 + x80 + x89 + x90 + x92 ++ x94 + x100 + x102 + x103 + x104 + x121 + x126 + x127 + x128 + x129 ++ x130 + x131 + x149 + x154 + x156 + x159 + x161 + x168 + x169 + x187 ++ x197 + x213 + x238 + x268 + x269 + x270 + x272 + x273 + x302 + x303 ++ x328 + x395 + x396 + x402 + x415 + x417 + x427 + x428 + x429 + x430 ++ x431 + x433 + x479 + x481 + x485 + x489 + x490 + x491 + x492 + x495 ++ x496 <= 1 + +x0 + x2 + x3 + x5 + x22 + x23 + x46 + x60 + x61 + x62 ++ x73 + x75 + x76 + x81 + x90 + x100 + x101 + x102 + x103 + x104 ++ x126 + x127 + x128 + x129 + x130 + x131 + x133 + x142 + x147 + x149 ++ x173 + x175 + x178 + x189 + x193 + x194 + x196 + x197 + x209 + x210 ++ x211 + x212 + x213 + x235 + x268 + x269 + x270 + x271 + x273 + x274 ++ x275 + x276 + x286 + x300 + x302 + x303 + x374 + x394 + x395 + x396 ++ x402 + x403 + x413 + x415 + x423 + x426 + x427 + x428 + x429 + x430 ++ x433 + x454 + x473 + x474 + x476 + x485 + x488 + x489 + x490 + x491 ++ x492 + x493 + x494 + x495 + x496 <= 1 + +x2 + x3 + x5 + x23 + x28 + x39 + x60 + x61 + x62 + x63 ++ x71 + x72 + x73 + x74 + x75 + x76 + x100 + x101 + x102 + x103 ++ x104 + x110 + x131 + x133 + x134 + x135 + x147 + x173 + x174 + x175 ++ x176 + x177 + x187 + x188 + x190 + x192 + x194 + x196 + x197 + x209 ++ x211 + x212 + x213 + x268 + x269 + x271 + x281 + x307 + x336 + x338 ++ x347 + x355 + x374 + x395 + x396 + x403 + x422 + x423 + x428 + x429 ++ x431 + x433 + x473 + x474 + x475 + x477 + x478 + x485 + x488 + x489 ++ x490 + x491 + x492 + x493 + x494 + x495 <= 1 + +x2 + x21 + x22 + x23 + x55 + x61 + x63 + x71 + x72 + x73 ++ x74 + x75 + x76 + x100 + x101 + x102 + x103 + x104 + x107 + x110 ++ x127 + x135 + x147 + x173 + x174 + x190 + x194 + x196 + x197 + x212 ++ x213 + x225 + x237 + x268 + x269 + x271 + x336 + x338 + x355 + x403 ++ x474 + x475 + x477 + x478 + x485 + x486 + x488 + x489 + x490 + x492 ++ x494 <= 1 + +x15 + x20 + x21 + x24 + x25 + x26 + x42 + x45 + x46 + x58 ++ x104 + x115 + x125 + x167 + x168 + x172 + x193 + x195 + x198 + x204 ++ x214 + x215 + x216 + x217 + x218 + x247 + x248 + x249 + x250 + x251 ++ x252 + x253 + x254 + x269 + x272 + x273 + x300 + x304 + x307 + x377 ++ x379 + x380 + x381 + x382 + x394 + x399 + x402 + x407 + x408 + x465 ++ x466 <= 1 + +x15 + x18 + x20 + x21 + x24 + x25 + x26 + x41 + x42 + x44 ++ x45 + x46 + x58 + x104 + x113 + x119 + x162 + x163 + x165 + x167 ++ x168 + x171 + x172 + x183 + x193 + x195 + x198 + x202 + x204 + x205 ++ x206 + x207 + x214 + x216 + x217 + x218 + x247 + x248 + x249 + x250 ++ x251 + x253 + x254 + x270 + x300 + x304 + x305 + x306 + x308 + x310 ++ x327 + x377 + x379 + x380 + x381 + x382 + x391 + x394 + x397 + x399 ++ x402 + x406 + x407 + x408 + x462 + x466 + x472 <= 1 + +x9 + x15 + x20 + x25 + x26 + x41 + x42 + x45 + x46 + x64 ++ x65 + x68 + x99 + x104 + x112 + x113 + x114 + x117 + x119 + x120 ++ x124 + x125 + x131 + x149 + x160 + x161 + x162 + x163 + x164 + x165 ++ x167 + x171 + x172 + x179 + x182 + x183 + x193 + x195 + x196 + x198 ++ x202 + x206 + x213 + x214 + x216 + x218 + x219 + x249 + x251 + x253 ++ x273 + x305 + x310 + x311 + x324 + x325 + x328 + x361 + x362 + x363 ++ x377 + x378 + x380 + x381 + x382 + x394 + x397 + x398 + x399 + x402 ++ x404 + x406 + x408 + x413 + x425 + x463 <= 1 + +x5 + x9 + x35 + x41 + x42 + x45 + x46 + x59 + x64 + x105 ++ x112 + x113 + x117 + x120 + x121 + x124 + x125 + x131 + x149 + x161 ++ x162 + x164 + x167 + x171 + x172 + x193 + x194 + x195 + x196 + x198 ++ x203 + x206 + x214 + x215 + x218 + x219 + x252 + x253 + x254 + x270 ++ x273 + x310 + x313 + x325 + x328 + x351 + x372 + x378 + x380 + x382 ++ x394 + x397 + x399 + x402 + x404 + x405 + x406 + x407 + x408 + x410 ++ x416 + x425 + x451 <= 1 + +x2 + x5 + x35 + x37 + x41 + x42 + x45 + x59 + x64 + x112 ++ x124 + x126 + x131 + x149 + x159 + x161 + x162 + x164 + x169 + x171 ++ x172 + x193 + x194 + x195 + x197 + x198 + x208 + x215 + x218 + x219 ++ x253 + x268 + x273 + x378 + x380 + x394 + x402 + x404 + x405 + x407 ++ x410 + x414 + x416 + x425 + x449 + x450 + x451 + x490 <= 1 + +x2 + x5 + x23 + x33 + x35 + x37 + x42 + x45 + x46 + x59 ++ x64 + x89 + x92 + x121 + x126 + x127 + x129 + x131 + x144 + x149 ++ x159 + x167 + x169 + x171 + x172 + x193 + x194 + x195 + x197 + x198 ++ x208 + x219 + x250 + x253 + x268 + x269 + x270 + x273 + x370 + x378 ++ x379 + x382 + x395 + x402 + x404 + x405 + x407 + x410 + x412 + x414 ++ x416 + x417 + x420 + x425 + x427 + x449 + x450 + x451 + x452 + x456 ++ x490 + x494 <= 1 + +x2 + x5 + x33 + x35 + x37 + x42 + x59 + x62 + x64 + x72 ++ x75 + x76 + x89 + x90 + x92 + x94 + x101 + x103 + x104 + x127 ++ x129 + x131 + x147 + x156 + x158 + x159 + x161 + x169 + x197 + x210 ++ x242 + x253 + x268 + x269 + x270 + x273 + x302 + x303 + x395 + x402 ++ x404 + x405 + x407 + x410 + x417 + x427 + x428 + x429 + x430 + x433 ++ x454 + x456 + x473 + x478 + x479 + x481 + x482 + x483 + x488 + x489 ++ x490 + x491 + x494 + x495 + x496 <= 1 + +x0 + x2 + x5 + x40 + x59 + x61 + x62 + x63 + x64 + x71 ++ x72 + x73 + x75 + x76 + x90 + x101 + x103 + x127 + x129 + x131 ++ x145 + x147 + x149 + x161 + x173 + x175 + x176 + x177 + x178 + x193 ++ x194 + x196 + x197 + x208 + x209 + x210 + x211 + x212 + x213 + x242 ++ x268 + x269 + x270 + x271 + x274 + x275 + x281 + x282 + x303 + x394 ++ x395 + x396 + x403 + x404 + x407 + x410 + x426 + x427 + x429 + x454 ++ x473 + x478 + x479 + x483 + x485 + x488 + x489 + x490 + x491 + x492 ++ x493 + x494 + x495 + x496 <= 1 + +x1 + x5 + x39 + x40 + x61 + x62 + x63 + x71 + x72 + x73 ++ x74 + x75 + x76 + x100 + x110 + x134 + x147 + x173 + x175 + x176 ++ x177 + x193 + x194 + x196 + x197 + x208 + x209 + x211 + x212 + x213 ++ x242 + x243 + x268 + x269 + x270 + x271 + x275 + x279 + x280 + x281 ++ x283 + x307 + x374 + x396 + x403 + x410 + x422 + x426 + x473 + x475 ++ x478 + x483 + x484 + x485 + x488 + x489 + x490 + x491 + x493 + x494 ++ x495 <= 1 + +x1 + x61 + x62 + x72 + x75 + x76 + x134 + x193 + x194 + x196 ++ x197 + x212 + x213 + x269 + x271 + x275 + x279 + x280 + x281 + x283 ++ x374 + x403 + x410 + x474 + x475 + x483 + x488 + x491 + x494 <= 1 + +x15 + x20 + x21 + x24 + x25 + x42 + x45 + x104 + x115 + x119 ++ x120 + x123 + x125 + x160 + x162 + x164 + x167 + x168 + x171 + x193 ++ x195 + x196 + x198 + x202 + x204 + x205 + x206 + x207 + x214 + x218 ++ x246 + x248 + x249 + x251 + x252 + x253 + x254 + x269 + x272 + x273 ++ x300 + x304 + x305 + x306 + x307 + x308 + x310 + x311 + x347 + x377 ++ x382 + x392 + x394 + x397 + x399 + x406 + x407 + x408 + x432 + x458 ++ x465 <= 1 + +x15 + x18 + x20 + x21 + x24 + x25 + x41 + x42 + x44 + x45 ++ x46 + x104 + x115 + x119 + x120 + x123 + x125 + x131 + x160 + x162 ++ x163 + x164 + x167 + x168 + x171 + x172 + x179 + x181 + x183 + x193 ++ x195 + x196 + x198 + x202 + x203 + x204 + x205 + x206 + x207 + x214 ++ x215 + x218 + x245 + x246 + x247 + x248 + x249 + x250 + x251 + x252 ++ x254 + x270 + x273 + x304 + x305 + x306 + x308 + x310 + x347 + x377 ++ x390 + x391 + x392 + x394 + x397 + x399 + x402 + x405 + x406 + x407 ++ x408 + x432 + x454 + x458 + x462 + x465 + x472 + x480 <= 1 + +x5 + x15 + x20 + x21 + x24 + x25 + x26 + x41 + x42 + x45 ++ x46 + x104 + x105 + x114 + x119 + x120 + x123 + x124 + x125 + x131 ++ x152 + x160 + x161 + x162 + x163 + x164 + x167 + x168 + x169 + x171 ++ x172 + x179 + x180 + x181 + x193 + x195 + x196 + x198 + x202 + x203 ++ x204 + x205 + x206 + x207 + x214 + x215 + x216 + x218 + x219 + x222 ++ x245 + x246 + x247 + x248 + x249 + x250 + x252 + x254 + x273 + x304 ++ x305 + x306 + x308 + x309 + x310 + x311 + x347 + x361 + x362 + x363 ++ x377 + x380 + x381 + x382 + x389 + x390 + x391 + x397 + x399 + x402 ++ x404 + x405 + x406 + x407 + x408 + x410 + x454 + x458 + x462 + x463 ++ x464 + x480 <= 1 + +x41 + x42 + x45 + x59 + x104 + x105 + x120 + x121 + x123 + x124 ++ x125 + x131 + x149 + x160 + x161 + x164 + x167 + x168 + x169 + x171 ++ x172 + x179 + x181 + x193 + x194 + x195 + x196 + x198 + x203 + x214 ++ x215 + x218 + x245 + x247 + x249 + x250 + x252 + x254 + x270 + x273 ++ x304 + x305 + x308 + x344 + x347 + x351 + x363 + x377 + x378 + x380 ++ x382 + x393 + x397 + x399 + x402 + x404 + x405 + x406 + x407 + x408 ++ x410 + x425 + x427 + x453 + x480 + x490 <= 1 + +x7 + x36 + x37 + x42 + x59 + x63 + x101 + x116 + x121 + x124 ++ x127 + x131 + x149 + x161 + x167 + x169 + x171 + x172 + x181 + x193 ++ x194 + x195 + x196 + x198 + x203 + x210 + x215 + x245 + x249 + x250 ++ x269 + x270 + x273 + x308 + x313 + x330 + x344 + x378 + x380 + x382 ++ x402 + x404 + x405 + x406 + x407 + x408 + x410 + x413 + x425 + x426 ++ x427 + x452 + x456 + x480 + x481 + x490 <= 1 + +x2 + x5 + x33 + x35 + x36 + x37 + x42 + x59 + x63 + x64 ++ x76 + x92 + x101 + x103 + x121 + x126 + x131 + x146 + x149 + x158 ++ x169 + x171 + x193 + x194 + x195 + x197 + x198 + x208 + x209 + x210 ++ x215 + x245 + x269 + x270 + x273 + x277 + x378 + x402 + x404 + x405 ++ x406 + x407 + x410 + x413 + x420 + x422 + x425 + x426 + x449 + x452 ++ x456 + x479 + x480 + x481 + x482 + x490 <= 1 + +x2 + x33 + x35 + x36 + x37 + x59 + x62 + x63 + x64 + x75 ++ x76 + x90 + x92 + x94 + x101 + x131 + x146 + x147 + x149 + x156 ++ x158 + x169 + x178 + x193 + x194 + x195 + x197 + x198 + x208 + x209 ++ x210 + x211 + x253 + x268 + x269 + x270 + x273 + x277 + x282 + x356 ++ x402 + x404 + x405 + x407 + x410 + x422 + x425 + x426 + x454 + x456 ++ x479 + x480 + x481 + x482 + x488 <= 1 + +x2 + x5 + x15 + x35 + x36 + x46 + x59 + x61 + x62 + x63 ++ x71 + x73 + x75 + x79 + x90 + x92 + x101 + x131 + x144 + x145 ++ x146 + x147 + x149 + x155 + x158 + x169 + x170 + x178 + x193 + x194 ++ x195 + x197 + x208 + x209 + x210 + x211 + x212 + x213 + x268 + x271 ++ x274 + x277 + x279 + x282 + x303 + x307 + x356 + x396 + x405 + x407 ++ x422 + x425 + x426 + x427 + x429 + x473 + x478 + x479 + x480 + x481 ++ x482 + x483 + x484 + x490 + x495 <= 1 + +x1 + x2 + x5 + x35 + x46 + x59 + x61 + x62 + x63 + x71 ++ x73 + x101 + x147 + x170 + x193 + x194 + x197 + x208 + x209 + x211 ++ x212 + x213 + x239 + x240 + x242 + x243 + x244 + x268 + x269 + x270 ++ x271 + x274 + x277 + x279 + x283 + x303 + x307 + x338 + x384 + x396 ++ x406 + x422 + x426 + x475 + x478 + x479 + x483 + x484 + x490 + x493 + <= 1 + +x46 + x61 + x62 + x63 + x71 + x124 + x127 + x194 + x197 + x212 ++ x243 + x244 + x268 + x271 + x303 + x383 + x384 + x396 + x422 + x426 ++ x430 + x484 <= 1 + +x25 + x42 + x45 + x80 + x104 + x114 + x115 + x118 + x120 + x125 ++ x160 + x162 + x163 + x164 + x167 + x168 + x169 + x172 + x180 + x193 ++ x195 + x196 + x198 + x205 + x214 + x246 + x251 + x252 + x254 + x273 ++ x300 + x304 + x305 + x306 + x308 + x310 + x311 + x377 + x382 + x392 ++ x399 + x405 + x406 + x407 + x456 + x458 + x465 <= 1 + +x20 + x21 + x24 + x25 + x26 + x42 + x45 + x104 + x114 + x115 ++ x116 + x118 + x120 + x125 + x131 + x152 + x160 + x161 + x162 + x163 ++ x164 + x167 + x168 + x169 + x170 + x172 + x180 + x193 + x195 + x196 ++ x198 + x202 + x203 + x204 + x205 + x207 + x214 + x215 + x218 + x246 ++ x247 + x248 + x251 + x252 + x254 + x273 + x300 + x304 + x305 + x306 ++ x308 + x309 + x311 + x341 + x347 + x362 + x377 + x380 + x381 + x389 ++ x391 + x392 + x402 + x405 + x406 + x408 + x411 + x453 + x454 + x456 ++ x458 + x462 + x463 + x472 <= 1 + +x5 + x20 + x21 + x24 + x42 + x45 + x104 + x114 + x116 + x124 ++ x131 + x149 + x160 + x161 + x162 + x164 + x167 + x169 + x170 + x171 ++ x172 + x180 + x193 + x194 + x195 + x196 + x198 + x202 + x203 + x204 ++ x205 + x206 + x207 + x215 + x216 + x218 + x245 + x246 + x247 + x252 ++ x270 + x300 + x304 + x305 + x306 + x308 + x309 + x310 + x311 + x347 ++ x377 + x378 + x380 + x381 + x389 + x390 + x393 + x397 + x402 + x404 ++ x405 + x406 + x407 + x408 + x410 + x411 + x453 + x454 + x456 + x458 ++ x463 + x464 + x490 <= 1 + +x59 + x104 + x116 + x121 + x131 + x149 + x160 + x161 + x162 + x164 ++ x167 + x169 + x170 + x171 + x172 + x193 + x194 + x195 + x196 + x198 ++ x203 + x205 + x215 + x218 + x245 + x247 + x250 + x252 + x254 + x270 ++ x272 + x273 + x310 + x377 + x378 + x380 + x381 + x389 + x390 + x393 ++ x402 + x405 + x406 + x407 + x427 + x453 + x456 + x458 + x464 <= 1 + +x42 + x59 + x63 + x64 + x116 + x121 + x127 + x131 + x149 + x160 ++ x161 + x167 + x169 + x171 + x172 + x193 + x194 + x196 + x198 + x210 ++ x211 + x215 + x245 + x268 + x269 + x270 + x272 + x273 + x313 + x378 ++ x380 + x393 + x402 + x405 + x406 + x407 + x410 + x426 + x427 + x453 ++ x456 + x458 + x464 <= 1 + +x1 + x2 + x15 + x59 + x63 + x64 + x101 + x131 + x147 + x149 ++ x167 + x169 + x193 + x194 + x196 + x197 + x198 + x208 + x210 + x211 ++ x248 + x268 + x270 + x272 + x273 + x313 + x378 + x402 + x405 + x406 ++ x407 + x410 + x453 + x454 + x456 + x480 + x482 <= 1 + +x2 + x15 + x35 + x59 + x61 + x62 + x63 + x64 + x71 + x131 ++ x145 + x147 + x169 + x193 + x194 + x197 + x208 + x210 + x211 + x268 ++ x270 + x272 + x273 + x282 + x402 + x404 + x405 + x407 + x425 + x454 ++ x481 + x482 + x484 <= 1 + +x2 + x15 + x36 + x46 + x59 + x61 + x62 + x63 + x64 + x71 ++ x127 + x131 + x144 + x145 + x146 + x147 + x169 + x178 + x193 + x194 ++ x195 + x197 + x208 + x209 + x211 + x212 + x244 + x268 + x270 + x307 ++ x396 + x405 + x407 + x422 + x426 + x427 + x454 + x479 + x481 + x482 ++ x484 + x490 <= 1 + +x2 + x19 + x35 + x36 + x46 + x59 + x61 + x62 + x63 + x71 ++ x127 + x144 + x147 + x193 + x194 + x197 + x207 + x208 + x209 + x211 ++ x212 + x239 + x243 + x244 + x261 + x268 + x270 + x283 + x306 + x307 ++ x338 + x422 + x426 + x482 + x483 + x484 + x487 + x493 <= 1 + +x19 + x36 + x61 + x62 + x63 + x71 + x93 + x124 + x127 + x194 ++ x197 + x208 + x209 + x239 + x243 + x244 + x268 + x303 + x338 + x383 ++ x422 + x426 + x484 + x493 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 <= 1 + +x15 + x16 + x17 + x18 + x19 + x20 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 <= 1 + +x27 + x28 + x29 + x30 + x31 + x32 <= 1 + +x33 + x34 + x35 + x36 + x37 + x38 <= 1 + +x39 + x40 <= 1 + +x41 + x42 + x43 + x44 + x45 + x46 <= 1 + +x47 + x48 + x49 + x50 + x51 + x52 <= 1 + +x53 + x54 + x55 + x56 + x57 + x58 <= 1 + +x59 + x60 + x61 + x62 + x63 + x64 <= 1 + +x65 + x66 + x67 + x68 + x69 + x70 <= 1 + +x71 + x72 + x73 + x74 + x75 + x76 <= 1 + +x77 + x78 + x79 + x80 + x81 + x82 <= 1 + +x83 + x84 + x85 + x86 <= 1 + +x87 + x88 <= 1 + +x89 + x90 + x91 + x92 + x93 + x94 <= 1 + +x95 + x96 + x97 + x98 + x99 <= 1 + +x100 + x101 + x102 + x103 + x104 + x105 <= 1 + +x106 + x107 + x108 + x109 + x110 + x111 <= 1 + +x112 + x113 <= 1 + +x114 + x115 + x116 + x117 + x118 + x119 <= 1 + +x120 + x121 + x122 + x123 + x124 + x125 <= 1 + +x126 + x127 + x128 + x129 + x130 + x131 <= 1 + +x132 + x133 + x134 + x135 + x136 + x137 <= 1 + +x138 + x139 + x140 + x141 + x142 + x143 <= 1 + +x144 + x145 + x146 + x147 + x148 + x149 <= 1 + +x150 + x151 + x152 + x153 + x154 + x155 <= 1 + +x156 + x157 + x158 + x159 <= 1 + +x160 + x161 + x162 + x163 + x164 + x165 <= 1 + +x167 + x168 + x169 + x170 + x171 + x172 <= 1 + +x173 + x174 + x175 + x176 + x177 + x178 <= 1 + +x179 + x180 + x181 + x182 + x183 <= 1 + +x184 + x185 <= 1 + +x187 + x188 + x189 + x190 + x191 + x192 <= 1 + +x193 + x194 + x195 + x196 + x197 + x198 <= 1 + +x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x208 + x209 + x210 + x211 + x212 + x213 <= 1 + +x214 + x215 + x216 + x217 + x218 + x219 <= 1 + +x220 + x221 + x222 + x223 + x224 + x225 <= 1 + +x226 + x227 <= 1 + +x228 + x229 + x230 + x231 + x232 <= 1 + +x233 + x234 + x235 + x236 + x237 + x238 <= 1 + +x239 + x240 + x241 + x242 + x243 + x244 <= 1 + +x245 + x246 + x247 + x248 + x249 + x250 <= 1 + +x251 + x252 + x253 + x254 <= 1 + +x255 + x256 + x257 + x258 <= 1 + +x259 + x260 <= 1 + +x262 + x263 + x264 + x265 + x266 + x267 <= 1 + +x268 + x269 + x270 + x271 + x272 + x273 <= 1 + +x274 + x275 + x276 + x277 <= 1 + +x279 + x280 + x281 + x282 + x283 <= 1 + +x284 + x285 + x286 <= 1 + +x288 + x289 + x290 + x291 + x292 + x293 <= 1 + +x294 + x295 + x296 + x297 + x298 + x299 <= 1 + +x300 + x301 + x302 + x303 + x304 + x305 <= 1 + +x306 + x307 + x308 + x309 + x310 + x311 <= 1 + +x312 + x313 + x314 + x315 + x316 + x317 <= 1 + +x318 + x319 + x320 <= 1 + +x322 + x323 <= 1 + +x324 + x325 + x326 + x327 + x328 + x329 <= 1 + +x331 + x332 + x333 + x334 <= 1 + +x335 + x336 + x337 + x338 + x339 + x340 <= 1 + +x342 + x343 + x344 + x345 + x346 + x347 <= 1 + +x348 + x349 + x350 + x351 + x352 + x353 <= 1 + + <= 1 + +x357 + x358 + x359 <= 1 + +x361 + x362 + x363 + x364 <= 1 + +x365 + x366 + x367 + x368 <= 1 + +x369 + x370 <= 1 + +x371 + x372 + x373 + x374 + x375 + x376 <= 1 + +x377 + x378 + x379 + x380 + x381 + x382 <= 1 + +x383 + x384 <= 1 + +x385 + x386 + x387 + x388 <= 1 + +x389 + x390 + x391 + x392 + x393 <= 1 + +x394 + x395 + x396 + x397 + x398 + x399 <= 1 + +x400 + x401 <= 1 + +x402 + x403 + x404 + x405 + x406 + x407 <= 1 + +x408 + x409 + x410 + x411 + x412 + x413 <= 1 + +x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 <= 1 + +x422 + x423 + x424 + x425 + x426 + x427 <= 1 + +x428 + x429 + x430 + x431 + x432 + x433 <= 1 + +x434 + x435 + x436 + x437 + x438 + x439 <= 1 + +x440 + x441 + x442 + x443 + x444 + x445 <= 1 + +x446 + x447 + x448 <= 1 + +x449 + x450 + x451 + x452 <= 1 + +x453 + x454 + x455 + x456 + x457 + x458 <= 1 + +x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 <= 1 + +x467 + x468 + x469 + x470 + x471 + x472 <= 1 + +x473 + x474 + x475 + x476 + x477 + x478 <= 1 + +x479 + x480 + x481 + x482 + x483 + x484 <= 1 + +x485 + x486 + x487 + x488 + x489 + x490 <= 1 + +x491 + x492 + x493 + x494 + x495 + x496 <= 1 + +x497 + x498 + x499 + x500 + x501 + x502 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0012.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0012.lp new file mode 100644 index 000000000..9bf405342 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0012.lp @@ -0,0 +1,1069 @@ +max + +730.644x0 + 559.923x1 + 537.922x2 + 508.169x3 + 489.609x4 + 485.722x5 + 111.487x6 + 153.007x7 + 161.662x8 + 123.969x9 + +148.067x10 + 180.929x11 + 166.212x12 + 187.345x13 + 189.647x14 + 183.885x15 + 155.522x16 + 622.307x17 + 812.501x18 + 795.471x19 + +792.975x20 + 689.488x21 + 687.369x22 + 237.207x23 + 290.417x24 + 273.703x25 + 271.432x26 + 261.883x27 + 216.379x28 + 299.86x29 + +332.389x30 + 292.062x31 + 249.523x32 + 244.222x33 + 250.526x34 + 292.694x35 + 258.633x36 + 251.049x37 + 504.006x38 + 574.542x39 + +499.802x40 + 496.907x41 + 494.736x42 + 424.273x43 + 2457.71x44 + 2782.75x45 + 2763.5x46 + 2731.9x47 + 2719.4x48 + 2685.2x49 + +327.622x50 + 397.223x51 + 346.976x52 + 282.629x53 + 193.119x54 + 401.057x55 + 419.798x56 + 405.271x57 + 402.136x58 + 394.687x59 + +381.978x60 + 153.965x61 + 181.535x62 + 158.828x63 + 564.352x64 + 723.31x65 + 677.872x66 + 651.745x67 + 642.337x68 + 640.071x69 + +298.624x70 + 310.462x71 + 266.564x72 + 254.96x73 + 241.242x74 + 317.331x75 + 448.523x76 + 424.002x77 + 380.591x78 + 324.099x79 + +306.365x80 + 1260.36x81 + 1378.15x82 + 1327.93x83 + 1260.3x84 + 1241.85x85 + 1201.35x86 + 696.714x87 + 849.564x88 + 747.867x89 + +735.24x90 + 704.675x91 + 632.43x92 + 1013.78x93 + 1377.91x94 + 1334.47x95 + 1324.87x96 + 1307.48x97 + 1242.16x98 + 132.549x99 + +556.49x100 + 802.237x101 + 746.797x102 + 692.659x103 + 645.552x104 + 577.292x105 + 1040.37x106 + 1113.93x107 + 1086.78x108 + 1084.35x109 + +1075.03x110 + 1042.51x111 + 1009.28x112 + 1142.24x113 + 1111.34x114 + 1058.33x115 + 1053.52x116 + 985.171x117 + 244.429x118 + 312.407x119 + +286.854x120 + 208.418x121 + 104.271x122 + 453.079x123 + 590.79x124 + 546.921x125 + 509.749x126 + 497.402x127 + 457.58x128 + 848.209x129 + +916.097x130 + 846.35x131 + 834.461x132 + 831.857x133 + 803.437x134 + 555.801x135 + 591.139x136 + 556.101x137 + 531.598x138 + 511.431x139 + +502.61x140 + 140.333x141 + 46.6898x142 + 610.494x143 + 766.955x144 + 760.536x145 + 750.351x146 + 744.878x147 + 740.457x148 + 86.5767x149 + +95.3959x150 + 2556.02x151 + 2872.71x152 + 2784.01x153 + 2720.96x154 + 2706.48x155 + 2705.43x156 + 775.438x157 + 860.767x158 + 836.359x159 + +801.489x160 + 795.269x161 + 742.466x162 + 593.348x163 + 812.758x164 + 805.9x165 + 766.828x166 + 695.205x167 + 694.662x168 + 1359.44x169 + +1364.08x170 + 1344.52x171 + 1334.72x172 + 1324.94x173 + 1312.09x174 + 172.084x175 + 189.792x176 + 67.5084x177 + 598.785x178 + 543.201x179 + +540.929x180 + 527.607x181 + 522.89x182 + 467.563x183 + 1436.35x184 + 1471.04x185 + 1446.52x186 + 1432.86x187 + 1417.38x188 + 1411.28x189 + +3969.58x190 + 4473.13x191 + 4412.94x192 + 4352.59x193 + 4345.2x194 + 4324.51x195 + 598.976x196 + 646.088x197 + 627.306x198 + 602.1x199 + +583.104x200 + 570.235x201 + 934.246x202 + 1388.1x203 + 1210.74x204 + 1173.36x205 + 1158.76x206 + 1155.96x207 + 656.774x208 + 957.282x209 + +907.229x210 + 896.09x211 + 856.635x212 + 843.704x213 + 108.678x214 + 333.24x215 + 439.151x216 + 428.172x217 + 221.791x218 + 100.629x219 + +322.359x220 + 378.499x221 + 356.606x222 + 318.828x223 + 318.019x224 + 287.051x225 + 430.727x226 + 602.011x227 + 597.963x228 + 548.926x229 + +544.517x230 + 391.093x231 + 606.951x232 + 609.467x233 + 593.67x234 + 586.865x235 + 585.723x236 + 552.951x237 + 836.002x238 + 887.644x239 + +886.701x240 + 834.986x241 + 818.544x242 + 817.415x243 + 1073.22x244 + 1605.13x245 + 1484.35x246 + 1416.92x247 + 1413.84x248 + 1381.62x249 + +304.942x250 + 432.529x251 + 401.925x252 + 400.825x253 + 289.652x254 + 260.287x255 + 1209.14x256 + 1412.57x257 + 1240.08x258 + 1189.1x259 + +1152.86x260 + 1104.85x261 + 474.253x262 + 475.871x263 + 451.236x264 + 398.587x265 + 360.354x266 + 318.033x267 + 906.952x268 + 1312.21x269 + +1250.91x270 + 1189.91x271 + 1165.72x272 + 1134.12x273 + 2128.62x274 + 2537.41x275 + 2512.85x276 + 2502.46x277 + 2471.61x278 + 2455.35x279 + +352.465x280 + 387.056x281 + 363.564x282 + 321.567x283 + 112.318x284 + 150.953x285 + 303.211x286 + 374.112x287 + 306.009x288 + 203.109x289 + +250.484x290 + 288.131x291 + 282.715x292 + 215.162x293 + 186.69x294 + 998.261x295 + 1123.34x296 + 1087.44x297 + 1023.32x298 + 1022.28x299 + +998.413x300 + 803.36x301 + 847.083x302 + 802.689x303 + 799.842x304 + 794.583x305 + 789.554x306 + 1584.23x307 + 1830.98x308 + 1770.72x309 + +1767.56x310 + 1752.44x311 + 1744.27x312 + 199.427x313 + 221.806x314 + 206.821x315 + 195.485x316 + 287.889x317 + 255.4x318 + 255.354x319 + +214.004x320 + 223.219x321 + 110.37x322 + 156.146x323 + 95.3322x324 + 896.969x325 + 948.268x326 + 877.074x327 + 862.48x328 + 852.934x329 + +849.003x330 + 667.4x331 + 756.394x332 + 731.591x333 + 704.075x334 + 686.638x335 + 651.175x336 + 272.884x337 + 352.465x338 + 312.761x339 + +287.076x340 + 224.315x341 + 152.708x342 + 619.084x343 + 831.673x344 + 803.674x345 + 783.495x346 + 768.18x347 + 764.688x348 + 38.5031x349 + +775.811x350 + 899.256x351 + 829.373x352 + 818.962x353 + 817.711x354 + 706.667x355 + 265.803x356 + 379.312x357 + 343.855x358 + 319.284x359 + +294.906x360 + 293.82x361 + 310.546x362 + 415.176x363 + 358.561x364 + 314.712x365 + 307.856x366 + 290.324x367 + 557.94x368 + 797.322x369 + +693.556x370 + 610.203x371 + 599.559x372 + 597.143x373 + 1212.08x374 + 1361.24x375 + 1340.89x376 + 1246.12x377 + 1239.67x378 + 1221.09x379 + +139.619x380 + 219.597x381 + 187.987x382 + 125.95x383 + 99.0442x384 + 193.481x385 + 73.8331x386 + 952.807x387 + 1054.36x388 + 1009.69x389 + +1003.23x390 + 989.842x391 + 975.473x392 + 1140.7x393 + 1299.77x394 + 1266.98x395 + 1184.78x396 + 1176.59x397 + 1146.85x398 + 1516.77x399 + +1850.23x400 + 1786.87x401 + 1687.76x402 + 1658.65x403 + 1654.44x404 + 112.759x405 + 708.237x406 + 879.062x407 + 762.054x408 + 701.512x409 + +691.756x410 + 675.484x411 + 234.69x412 + 344.112x413 + 288.271x414 + 286.808x415 + 241.798x416 + 236.017x417 + 702.424x418 + 932.634x419 + +904.939x420 + 886.396x421 + 874.073x422 + 849.888x423 + 2127.41x424 + 2482.66x425 + 2460.76x426 + 2453.06x427 + 2437.81x428 + 2427.24x429 + +486.639x430 + 599.725x431 + 515.884x432 + 492.833x433 + 471.85x434 + 443.069x435 + 764.886x436 + 1033.45x437 + 1002.32x438 + 989.572x439 + +961.93x440 + 936.672x441 + 325.149x442 + 304.249x443 + 271.275x444 + 166.835x445 + 82.3062x446 + 171.039x447 + 208.901x448 + 117.051x449 + +96.5347x450 + 1195.07x451 + 1357.5x452 + 1324.62x453 + 1239.73x454 + 1236x455 + 1217.97x456 + 2210.45x457 + 2489.74x458 + 2393.83x459 + +2392.8x460 + 2387.19x461 + 2336.37x462 + 724.323x463 + 981.562x464 + 933.456x465 + 923.796x466 + 892.9x467 + 847.008x468 + 106.798x469 + +10.708x470 + 936.368x471 + 1389.94x472 + 1314.45x473 + 1299.87x474 + 1299.04x475 + 1286.13x476 + 308.508x477 + 253.899x478 + 157.538x479 + +551.769x480 + 787.431x481 + 641.327x482 + 568.35x483 + 547.964x484 + 507.626x485 + 387.644x486 + 561.922x487 + 525.999x488 + 477.673x489 + +477.414x490 + 463.576x491 + 640.801x492 + 739.936x493 + 700.777x494 + 698.793x495 + 665.029x496 + 651.408x497 + 1663.18x498 + 2004.03x499 + +1962.08x500 + 1947.73x501 + 1943.21x502 + 1936.25x503 + +st + +x45 + x64 + x65 + x143 + x144 + x145 + x169 + x170 + x171 + x173 ++ x174 + x184 + x188 + x193 + x194 + x195 + x205 + x215 + x216 + x219 ++ x248 + x275 + x276 + x277 + x279 + x280 + x284 + x285 + x311 + x312 ++ x400 <= 1 + +x4 + x45 + x47 + x49 + x64 + x65 + x66 + x68 + x143 + x145 ++ x146 + x147 + x148 + x151 + x153 + x158 + x159 + x169 + x170 + x171 ++ x172 + x173 + x174 + x191 + x192 + x193 + x195 + x200 + x215 + x216 ++ x217 + x221 + x222 + x256 + x259 + x260 + x274 + x275 + x276 + x277 ++ x279 + x285 + x311 + x312 + x407 + x458 + x459 + x499 <= 1 + +x45 + x46 + x49 + x64 + x65 + x66 + x68 + x69 + x81 + x83 ++ x85 + x143 + x145 + x146 + x148 + x151 + x153 + x155 + x158 + x159 ++ x169 + x170 + x171 + x172 + x173 + x191 + x192 + x193 + x194 + x195 ++ x216 + x217 + x220 + x221 + x223 + x225 + x256 + x259 + x260 + x274 ++ x275 + x276 + x277 + x279 + x289 + x312 + x407 + x424 + x428 + x441 ++ x459 + x460 + x499 <= 1 + +x45 + x49 + x65 + x66 + x68 + x96 + x98 + x117 + x143 + x145 ++ x146 + x148 + x153 + x154 + x155 + x156 + x157 + x158 + x159 + x160 ++ x169 + x170 + x171 + x172 + x173 + x185 + x186 + x190 + x191 + x193 ++ x195 + x217 + x223 + x246 + x259 + x274 + x275 + x276 + x277 + x279 ++ x286 + x289 + x316 + x323 + x424 + x428 + x430 + x432 + x441 + x454 ++ x466 + x491 + x499 <= 1 + +x24 + x45 + x46 + x49 + x65 + x66 + x96 + x98 + x117 + x119 ++ x146 + x148 + x154 + x155 + x156 + x157 + x158 + x159 + x160 + x162 ++ x169 + x170 + x171 + x172 + x173 + x178 + x185 + x186 + x190 + x191 ++ x192 + x193 + x194 + x195 + x209 + x223 + x227 + x246 + x257 + x258 ++ x259 + x274 + x275 + x276 + x277 + x279 + x286 + x287 + x313 + x316 ++ x357 + x379 + x400 + x425 + x426 + x427 + x428 + x430 + x431 + x432 ++ x433 + x454 + x457 + x458 + x460 + x461 + x464 + x465 + x466 + x488 ++ x491 + x499 <= 1 + +x46 + x49 + x66 + x84 + x95 + x96 + x112 + x114 + x116 + x117 ++ x119 + x132 + x148 + x152 + x153 + x154 + x155 + x156 + x157 + x158 ++ x159 + x160 + x162 + x167 + x186 + x190 + x191 + x192 + x193 + x194 ++ x195 + x214 + x226 + x227 + x228 + x229 + x246 + x257 + x258 + x259 ++ x274 + x286 + x287 + x316 + x356 + x357 + x359 + x368 + x372 + x373 ++ x379 + x380 + x398 + x400 + x425 + x426 + x427 + x428 + x440 + x451 ++ x453 + x454 + x457 + x460 + x461 + x463 + x464 + x465 + x466 + x468 ++ x483 + x486 + x487 + x489 + x491 <= 1 + +x31 + x44 + x46 + x49 + x76 + x84 + x87 + x93 + x95 + x96 ++ x97 + x112 + x113 + x114 + x116 + x117 + x152 + x153 + x154 + x155 ++ x156 + x157 + x158 + x160 + x161 + x167 + x186 + x190 + x191 + x192 ++ x193 + x194 + x195 + x227 + x228 + x229 + x245 + x246 + x257 + x258 ++ x259 + x279 + x339 + x368 + x373 + x379 + x407 + x420 + x426 + x427 ++ x428 + x451 + x454 + x458 + x461 + x462 + x463 + x465 + x466 + x483 ++ x487 + x490 + x491 + x499 + x500 + x501 + x502 <= 1 + +x22 + x31 + x44 + x46 + x49 + x84 + x93 + x95 + x96 + x112 ++ x113 + x114 + x115 + x116 + x117 + x122 + x151 + x152 + x153 + x154 ++ x155 + x156 + x167 + x171 + x190 + x191 + x192 + x193 + x195 + x227 ++ x276 + x278 + x310 + x373 + x426 + x427 + x428 + x437 + x451 + x452 ++ x453 + x454 + x458 + x462 + x463 + x465 + x466 + x483 + x499 <= 1 + +x22 + x44 + x46 + x48 + x49 + x50 + x51 + x52 + x53 + x84 ++ x93 + x95 + x112 + x113 + x114 + x115 + x117 + x151 + x152 + x153 ++ x154 + x155 + x156 + x161 + x185 + x190 + x191 + x193 + x194 + x195 ++ x230 + x231 + x266 + x276 + x310 + x377 + x378 + x407 + x428 + x437 ++ x451 + x452 + x453 + x454 + x455 + x457 + x458 + x461 + x462 + x463 ++ x465 + x468 + x481 + x499 + x500 <= 1 + +x46 + x48 + x49 + x50 + x51 + x52 + x84 + x93 + x95 + x112 ++ x113 + x115 + x151 + x152 + x153 + x154 + x155 + x156 + x165 + x190 ++ x191 + x192 + x193 + x194 + x195 + x231 + x276 + x310 + x377 + x378 ++ x428 + x437 + x453 + x454 + x455 + x457 + x458 + x461 + x462 + x463 ++ x468 + x481 <= 1 + +x64 + x65 + x143 + x144 + x145 + x156 + x169 + x170 + x174 + x184 ++ x188 + x193 + x194 + x195 + x203 + x205 + x215 + x216 + x217 + x222 ++ x256 + x259 + x260 + x276 + x277 + x279 + x284 + x311 + x312 + x400 ++ x411 + x424 + x425 + x459 + x499 <= 1 + +x4 + x45 + x47 + x48 + x49 + x64 + x66 + x85 + x143 + x144 ++ x145 + x146 + x147 + x148 + x151 + x153 + x156 + x158 + x159 + x169 ++ x170 + x171 + x174 + x186 + x188 + x189 + x193 + x194 + x195 + x199 ++ x200 + x215 + x217 + x218 + x221 + x222 + x225 + x256 + x259 + x260 ++ x275 + x276 + x277 + x279 + x284 + x311 + x424 + x425 + x456 + x458 ++ x459 + x461 + x499 + x503 <= 1 + +x4 + x19 + x44 + x45 + x46 + x47 + x49 + x64 + x66 + x68 ++ x69 + x81 + x83 + x85 + x143 + x148 + x151 + x152 + x153 + x154 ++ x155 + x156 + x158 + x159 + x162 + x169 + x170 + x171 + x172 + x186 ++ x193 + x194 + x195 + x220 + x221 + x222 + x225 + x256 + x259 + x260 ++ x272 + x274 + x275 + x276 + x277 + x279 + x288 + x289 + x312 + x375 ++ x400 + x407 + x424 + x425 + x426 + x428 + x431 + x441 + x456 + x459 ++ x484 + x499 + x503 <= 1 + +x44 + x45 + x46 + x49 + x65 + x66 + x67 + x68 + x81 + x83 ++ x85 + x88 + x91 + x94 + x96 + x116 + x118 + x119 + x148 + x152 ++ x153 + x154 + x155 + x156 + x160 + x162 + x169 + x170 + x171 + x172 ++ x173 + x185 + x186 + x187 + x190 + x191 + x192 + x193 + x194 + x195 ++ x220 + x221 + x222 + x223 + x256 + x257 + x259 + x260 + x274 + x276 ++ x279 + x288 + x289 + x308 + x312 + x323 + x400 + x407 + x424 + x428 ++ x430 + x431 + x432 + x441 + x454 + x459 + x460 + x484 + x491 + x499 ++ x500 + x503 <= 1 + +x44 + x45 + x46 + x49 + x81 + x83 + x84 + x85 + x88 + x94 ++ x96 + x98 + x116 + x119 + x136 + x148 + x153 + x154 + x155 + x157 ++ x158 + x159 + x160 + x162 + x166 + x169 + x170 + x171 + x172 + x173 ++ x178 + x184 + x185 + x186 + x187 + x190 + x191 + x192 + x193 + x194 ++ x195 + x204 + x209 + x246 + x256 + x257 + x259 + x260 + x274 + x275 ++ x276 + x277 + x278 + x279 + x286 + x287 + x288 + x372 + x400 + x424 ++ x425 + x428 + x429 + x430 + x431 + x432 + x433 + x434 + x454 + x457 ++ x458 + x459 + x460 + x461 + x462 + x464 + x465 + x467 + x484 + x488 ++ x491 + x500 <= 1 + +x45 + x49 + x72 + x81 + x84 + x105 + x112 + x113 + x114 + x115 ++ x116 + x117 + x147 + x152 + x153 + x154 + x155 + x156 + x157 + x159 ++ x162 + x166 + x173 + x184 + x185 + x186 + x187 + x190 + x191 + x192 ++ x193 + x194 + x195 + x209 + x214 + x226 + x227 + x228 + x229 + x230 ++ x245 + x246 + x257 + x259 + x274 + x275 + x276 + x277 + x278 + x279 ++ x316 + x356 + x357 + x358 + x359 + x361 + x368 + x372 + x379 + x395 ++ x407 + x409 + x420 + x425 + x427 + x428 + x429 + x433 + x434 + x435 ++ x438 + x440 + x451 + x453 + x454 + x457 + x458 + x461 + x464 + x466 ++ x468 + x486 + x487 + x488 + x489 + x490 + x499 + x500 + x501 + x502 + <= 1 + +x22 + x44 + x45 + x46 + x47 + x48 + x49 + x51 + x76 + x81 ++ x84 + x93 + x95 + x96 + x97 + x105 + x109 + x112 + x113 + x114 ++ x115 + x116 + x117 + x152 + x153 + x154 + x155 + x156 + x157 + x161 ++ x163 + x164 + x165 + x167 + x168 + x172 + x190 + x191 + x192 + x193 ++ x194 + x195 + x226 + x227 + x228 + x229 + x230 + x245 + x246 + x257 ++ x258 + x259 + x274 + x276 + x277 + x278 + x279 + x339 + x357 + x358 ++ x359 + x368 + x372 + x373 + x374 + x379 + x395 + x401 + x403 + x407 ++ x409 + x420 + x426 + x427 + x428 + x429 + x435 + x451 + x453 + x454 ++ x457 + x458 + x461 + x462 + x463 + x464 + x465 + x466 + x468 + x486 ++ x487 + x488 + x490 + x499 + x500 + x501 + x502 <= 1 + +x21 + x22 + x44 + x45 + x46 + x47 + x48 + x49 + x51 + x52 ++ x76 + x93 + x96 + x105 + x109 + x112 + x113 + x115 + x116 + x117 ++ x151 + x152 + x153 + x154 + x155 + x156 + x161 + x163 + x164 + x165 ++ x168 + x185 + x190 + x191 + x192 + x193 + x194 + x195 + x226 + x230 ++ x231 + x258 + x274 + x339 + x373 + x374 + x378 + x406 + x407 + x409 ++ x451 + x453 + x455 + x457 + x458 + x461 + x462 + x463 + x465 + x467 ++ x468 + x483 + x499 + x500 + x501 + x502 <= 1 + +x17 + x22 + x44 + x46 + x48 + x49 + x50 + x51 + x52 + x53 ++ x54 + x86 + x93 + x95 + x105 + x109 + x112 + x113 + x114 + x115 ++ x117 + x151 + x152 + x153 + x154 + x155 + x156 + x161 + x165 + x185 ++ x190 + x193 + x226 + x230 + x231 + x266 + x274 + x294 + x310 + x334 ++ x374 + x377 + x378 + x406 + x407 + x409 + x428 + x433 + x437 + x451 ++ x453 + x454 + x455 + x457 + x458 + x461 + x462 + x463 + x465 + x467 ++ x468 + x483 + x499 + x500 + x501 <= 1 + +x22 + x44 + x46 + x48 + x49 + x52 + x84 + x93 + x95 + x105 ++ x109 + x112 + x113 + x114 + x115 + x151 + x152 + x153 + x154 + x155 ++ x156 + x161 + x165 + x190 + x191 + x192 + x193 + x195 + x230 + x231 ++ x266 + x310 + x312 + x378 + x407 + x409 + x428 + x453 + x454 + x455 ++ x457 + x458 + x461 + x462 + x463 + x481 + x483 + x499 + x500 <= 1 + +x64 + x65 + x69 + x82 + x83 + x85 + x143 + x144 + x145 + x146 ++ x169 + x170 + x174 + x184 + x188 + x189 + x191 + x193 + x194 + x195 ++ x200 + x201 + x203 + x205 + x206 + x216 + x256 + x260 + x274 + x275 ++ x277 + x279 + x308 + x310 + x311 + x312 + x317 + x320 + x375 + x411 ++ x424 + x425 + x458 + x460 + x499 <= 1 + +x16 + x48 + x49 + x64 + x82 + x83 + x85 + x110 + x143 + x144 ++ x146 + x153 + x154 + x156 + x189 + x193 + x194 + x195 + x196 + x197 ++ x198 + x199 + x200 + x201 + x205 + x215 + x216 + x217 + x218 + x248 ++ x256 + x260 + x274 + x277 + x279 + x311 + x312 + x320 + x375 + x424 ++ x425 + x427 + x428 + x429 + x456 + x458 + x459 + x460 + x461 + x462 ++ x503 <= 1 + +x12 + x44 + x45 + x46 + x49 + x68 + x69 + x83 + x85 + x90 ++ x93 + x114 + x146 + x151 + x152 + x153 + x154 + x155 + x156 + x166 ++ x172 + x186 + x188 + x189 + x190 + x191 + x192 + x193 + x194 + x195 ++ x196 + x197 + x198 + x200 + x201 + x205 + x220 + x225 + x246 + x248 ++ x254 + x260 + x274 + x277 + x278 + x279 + x296 + x297 + x300 + x311 ++ x312 + x375 + x424 + x425 + x426 + x429 + x431 + x456 + x458 + x459 ++ x460 + x461 + x462 + x484 + x499 + x503 <= 1 + +x44 + x45 + x46 + x49 + x65 + x66 + x67 + x68 + x81 + x83 ++ x84 + x85 + x88 + x91 + x114 + x116 + x153 + x154 + x155 + x156 ++ x162 + x163 + x166 + x169 + x170 + x171 + x172 + x173 + x186 + x187 ++ x189 + x190 + x191 + x193 + x195 + x197 + x198 + x245 + x256 + x259 ++ x274 + x275 + x276 + x277 + x278 + x279 + x288 + x297 + x308 + x400 ++ x407 + x425 + x426 + x427 + x428 + x429 + x430 + x433 + x434 + x435 ++ x440 + x441 + x458 + x459 + x460 + x461 + x464 + x479 + x484 + x486 ++ x499 + x503 <= 1 + +x44 + x45 + x46 + x49 + x72 + x81 + x83 + x84 + x85 + x91 ++ x96 + x98 + x116 + x131 + x147 + x148 + x152 + x153 + x154 + x155 ++ x156 + x157 + x158 + x160 + x162 + x163 + x166 + x168 + x169 + x170 ++ x171 + x172 + x173 + x184 + x185 + x186 + x187 + x189 + x190 + x191 ++ x192 + x193 + x194 + x195 + x196 + x209 + x214 + x226 + x241 + x245 ++ x246 + x257 + x259 + x260 + x273 + x274 + x275 + x276 + x277 + x278 ++ x279 + x308 + x341 + x347 + x356 + x358 + x361 + x372 + x375 + x403 ++ x420 + x425 + x427 + x428 + x429 + x430 + x432 + x433 + x434 + x435 ++ x438 + x440 + x451 + x457 + x458 + x460 + x461 + x462 + x464 + x466 ++ x467 + x468 + x484 + x486 + x488 + x489 + x490 + x499 + x500 <= 1 + +x45 + x46 + x47 + x49 + x72 + x81 + x84 + x91 + x96 + x98 ++ x131 + x147 + x152 + x153 + x154 + x155 + x156 + x157 + x159 + x160 ++ x162 + x163 + x167 + x168 + x172 + x184 + x185 + x186 + x187 + x190 ++ x192 + x193 + x195 + x209 + x214 + x229 + x241 + x245 + x257 + x258 ++ x259 + x272 + x274 + x275 + x276 + x277 + x278 + x279 + x318 + x337 ++ x340 + x341 + x356 + x357 + x358 + x359 + x361 + x372 + x373 + x376 ++ x395 + x425 + x427 + x428 + x429 + x432 + x434 + x435 + x440 + x451 ++ x453 + x454 + x457 + x458 + x460 + x461 + x462 + x464 + x466 + x467 ++ x468 + x486 + x489 + x490 + x493 + x499 + x500 + x501 + x503 <= 1 + +x22 + x31 + x44 + x45 + x46 + x47 + x48 + x49 + x81 + x84 ++ x95 + x97 + x114 + x147 + x154 + x155 + x157 + x160 + x161 + x163 ++ x164 + x165 + x167 + x168 + x172 + x184 + x185 + x186 + x187 + x190 ++ x191 + x192 + x193 + x194 + x195 + x212 + x228 + x229 + x236 + x241 ++ x257 + x258 + x272 + x273 + x274 + x275 + x276 + x277 + x278 + x279 ++ x337 + x339 + x341 + x359 + x361 + x373 + x374 + x376 + x379 + x401 ++ x403 + x409 + x425 + x428 + x440 + x453 + x457 + x458 + x460 + x461 ++ x462 + x464 + x465 + x466 + x468 + x487 + x493 + x499 + x500 + x501 ++ x503 <= 1 + +x21 + x44 + x45 + x46 + x47 + x48 + x49 + x75 + x76 + x84 ++ x96 + x97 + x151 + x153 + x154 + x155 + x156 + x161 + x184 + x185 ++ x187 + x190 + x193 + x194 + x195 + x223 + x228 + x236 + x238 + x257 ++ x258 + x274 + x275 + x276 + x277 + x278 + x279 + x373 + x374 + x378 ++ x401 + x403 + x409 + x425 + x428 + x440 + x451 + x453 + x455 + x457 ++ x458 + x461 + x462 + x465 + x466 + x493 + x499 + x501 + x502 <= 1 + +x4 + x17 + x22 + x44 + x46 + x47 + x49 + x50 + x53 + x54 ++ x58 + x86 + x93 + x94 + x95 + x97 + x100 + x105 + x109 + x112 ++ x113 + x114 + x115 + x151 + x152 + x153 + x154 + x155 + x156 + x161 ++ x184 + x185 + x231 + x274 + x291 + x292 + x294 + x310 + x332 + x334 ++ x335 + x374 + x377 + x378 + x379 + x402 + x407 + x409 + x428 + x437 ++ x453 + x455 + x457 + x458 + x459 + x461 + x462 + x463 + x480 + x483 ++ x498 + x499 + x500 <= 1 + +x4 + x17 + x22 + x44 + x47 + x50 + x53 + x54 + x58 + x93 ++ x97 + x105 + x109 + x112 + x113 + x115 + x145 + x184 + x274 + x332 ++ x334 + x335 + x377 + x379 + x399 + x402 + x403 + x457 + x458 + x461 ++ x462 + x463 <= 1 + +x13 + x15 + x64 + x65 + x67 + x69 + x82 + x83 + x85 + x108 ++ x110 + x144 + x146 + x154 + x169 + x188 + x189 + x191 + x194 + x195 ++ x196 + x197 + x200 + x201 + x203 + x205 + x206 + x256 + x260 + x277 ++ x279 + x307 + x308 + x310 + x311 + x312 + x317 + x318 + x319 + x320 ++ x370 + x420 + x424 + x425 + x428 + x429 + x458 + x460 + x469 + x499 + <= 1 + +x13 + x14 + x15 + x16 + x67 + x69 + x85 + x110 + x128 + x143 ++ x144 + x146 + x149 + x154 + x156 + x187 + x188 + x189 + x191 + x193 ++ x194 + x195 + x196 + x197 + x198 + x199 + x200 + x201 + x203 + x205 ++ x218 + x256 + x260 + x277 + x279 + x306 + x307 + x308 + x311 + x312 ++ x370 + x375 + x396 + x424 + x425 + x427 + x428 + x429 + x438 + x441 ++ x458 + x459 + x460 + x462 + x498 + x502 + x503 <= 1 + +x10 + x12 + x15 + x44 + x46 + x67 + x68 + x69 + x85 + x88 ++ x114 + x116 + x128 + x131 + x152 + x153 + x154 + x156 + x170 + x186 ++ x188 + x189 + x190 + x191 + x194 + x195 + x196 + x197 + x198 + x199 ++ x201 + x203 + x205 + x220 + x224 + x225 + x246 + x254 + x261 + x274 ++ x275 + x277 + x278 + x279 + x296 + x297 + x311 + x312 + x324 + x375 ++ x403 + x424 + x425 + x426 + x429 + x452 + x456 + x457 + x458 + x459 ++ x460 + x461 + x462 + x472 + x484 <= 1 + +x44 + x45 + x46 + x49 + x67 + x68 + x78 + x81 + x83 + x84 ++ x85 + x88 + x90 + x91 + x96 + x98 + x114 + x116 + x131 + x151 ++ x152 + x153 + x154 + x155 + x156 + x165 + x166 + x169 + x170 + x171 ++ x172 + x173 + x190 + x191 + x192 + x193 + x194 + x195 + x196 + x197 ++ x198 + x199 + x246 + x274 + x275 + x276 + x277 + x278 + x279 + x296 ++ x297 + x300 + x309 + x347 + x375 + x400 + x401 + x403 + x424 + x425 ++ x426 + x428 + x429 + x431 + x438 + x444 + x456 + x458 + x459 + x460 ++ x461 + x472 + x477 + x478 + x479 + x480 + x484 + x503 <= 1 + +x20 + x45 + x46 + x67 + x81 + x83 + x84 + x87 + x88 + x89 ++ x90 + x91 + x92 + x96 + x98 + x101 + x116 + x131 + x151 + x152 ++ x153 + x154 + x155 + x156 + x160 + x162 + x163 + x164 + x165 + x166 ++ x168 + x170 + x171 + x172 + x173 + x184 + x185 + x186 + x187 + x189 ++ x190 + x191 + x192 + x193 + x194 + x195 + x196 + x197 + x198 + x199 ++ x203 + x204 + x212 + x232 + x233 + x236 + x245 + x259 + x261 + x273 ++ x275 + x276 + x277 + x278 + x279 + x296 + x297 + x300 + x341 + x347 ++ x351 + x360 + x372 + x375 + x376 + x401 + x403 + x425 + x426 + x427 ++ x428 + x429 + x438 + x440 + x456 + x458 + x460 + x464 + x467 + x468 ++ x478 + x479 + x499 + x500 + x503 <= 1 + +x46 + x48 + x49 + x70 + x71 + x72 + x81 + x83 + x84 + x87 ++ x88 + x89 + x90 + x91 + x98 + x101 + x127 + x147 + x153 + x154 ++ x155 + x156 + x163 + x164 + x165 + x167 + x168 + x170 + x171 + x172 ++ x173 + x184 + x185 + x186 + x187 + x190 + x193 + x203 + x204 + x212 ++ x232 + x233 + x236 + x247 + x269 + x270 + x272 + x273 + x274 + x275 ++ x276 + x277 + x278 + x279 + x312 + x326 + x337 + x338 + x340 + x341 ++ x347 + x356 + x358 + x360 + x361 + x372 + x374 + x375 + x376 + x401 ++ x425 + x426 + x427 + x428 + x429 + x435 + x464 + x467 + x489 + x490 ++ x493 + x499 + x500 + x501 + x503 <= 1 + +x45 + x49 + x84 + x93 + x98 + x101 + x147 + x163 + x164 + x165 ++ x167 + x168 + x170 + x171 + x172 + x185 + x186 + x187 + x190 + x192 ++ x193 + x194 + x195 + x212 + x233 + x236 + x257 + x260 + x273 + x274 ++ x275 + x276 + x278 + x279 + x309 + x360 + x374 + x376 + x378 + x379 ++ x401 + x403 + x425 + x428 + x429 + x453 + x457 + x467 + x487 + x489 ++ x493 + x500 + x501 <= 1 + +x0 + x4 + x17 + x19 + x21 + x30 + x44 + x45 + x46 + x47 ++ x48 + x49 + x76 + x94 + x96 + x97 + x151 + x153 + x154 + x155 ++ x156 + x184 + x185 + x194 + x195 + x238 + x242 + x256 + x257 + x258 ++ x272 + x277 + x290 + x291 + x292 + x293 + x325 + x333 + x374 + x376 ++ x377 + x378 + x379 + x385 + x399 + x400 + x401 + x402 + x403 + x404 ++ x409 + x455 + x457 + x458 + x459 + x461 + x462 + x493 + x502 <= 1 + +x2 + x4 + x6 + x17 + x18 + x19 + x20 + x21 + x22 + x44 ++ x45 + x46 + x47 + x48 + x49 + x54 + x76 + x86 + x93 + x94 ++ x95 + x96 + x97 + x100 + x105 + x112 + x113 + x151 + x153 + x154 ++ x155 + x156 + x161 + x184 + x185 + x195 + x213 + x238 + x239 + x242 ++ x272 + x290 + x291 + x292 + x294 + x310 + x332 + x333 + x334 + x335 ++ x374 + x377 + x378 + x379 + x385 + x399 + x400 + x401 + x402 + x403 ++ x404 + x409 + x455 + x457 + x458 + x459 + x461 + x462 + x480 + x481 ++ x482 + x502 <= 1 + +x17 + x22 + x47 + x48 + x53 + x54 + x93 + x94 + x96 + x97 ++ x105 + x109 + x112 + x115 + x151 + x155 + x156 + x242 + x274 + x290 ++ x292 + x335 + x345 + x374 + x377 + x378 + x379 + x399 + x401 + x403 ++ x409 + x457 + x461 + x462 <= 1 + +x13 + x14 + x64 + x67 + x69 + x82 + x85 + x108 + x110 + x188 ++ x189 + x191 + x192 + x193 + x194 + x195 + x203 + x205 + x260 + x277 ++ x279 + x307 + x308 + x310 + x311 + x312 + x317 + x318 + x319 + x424 ++ x425 + x428 + x429 + x438 + x458 + x460 + x502 <= 1 + +x14 + x16 + x67 + x69 + x79 + x82 + x110 + x125 + x126 + x144 ++ x145 + x149 + x150 + x151 + x152 + x156 + x187 + x188 + x189 + x200 ++ x201 + x203 + x224 + x245 + x248 + x250 + x254 + x261 + x278 + x279 ++ x296 + x297 + x298 + x299 + x303 + x306 + x307 + x308 + x309 + x311 ++ x312 + x339 + x345 + x351 + x369 + x370 + x375 + x396 + x399 + x424 ++ x425 + x426 + x427 + x428 + x429 + x438 + x452 + x458 + x459 + x460 ++ x462 + x472 + x476 + x498 + x500 + x501 + x502 + x503 <= 1 + +x10 + x11 + x45 + x67 + x69 + x79 + x101 + x106 + x110 + x116 ++ x125 + x133 + x151 + x152 + x154 + x186 + x187 + x188 + x189 + x190 ++ x191 + x192 + x198 + x199 + x202 + x203 + x205 + x224 + x236 + x245 ++ x246 + x247 + x248 + x254 + x261 + x269 + x275 + x277 + x278 + x279 ++ x296 + x297 + x300 + x307 + x308 + x309 + x311 + x312 + x353 + x375 ++ x376 + x389 + x399 + x403 + x424 + x425 + x426 + x427 + x429 + x438 ++ x444 + x452 + x456 + x458 + x459 + x460 + x462 + x470 + x471 + x472 ++ x476 + x498 + x501 + x502 + x503 <= 1 + +x11 + x45 + x46 + x49 + x81 + x83 + x85 + x86 + x101 + x110 ++ x131 + x133 + x151 + x152 + x154 + x166 + x173 + x187 + x188 + x189 ++ x190 + x191 + x192 + x193 + x194 + x195 + x203 + x205 + x247 + x249 ++ x261 + x269 + x275 + x277 + x278 + x279 + x296 + x297 + x300 + x309 ++ x311 + x353 + x375 + x376 + x389 + x401 + x403 + x424 + x425 + x426 ++ x427 + x429 + x438 + x442 + x444 + x452 + x454 + x456 + x458 + x459 ++ x460 + x476 + x477 + x478 + x502 + x503 <= 1 + +x20 + x46 + x81 + x83 + x85 + x87 + x89 + x90 + x91 + x92 ++ x98 + x101 + x110 + x125 + x131 + x151 + x153 + x164 + x166 + x168 ++ x171 + x173 + x184 + x187 + x189 + x190 + x191 + x192 + x193 + x194 ++ x195 + x203 + x204 + x212 + x261 + x269 + x270 + x272 + x273 + x275 ++ x276 + x278 + x279 + x296 + x297 + x300 + x308 + x309 + x343 + x344 ++ x347 + x375 + x376 + x401 + x410 + x419 + x424 + x425 + x426 + x427 ++ x428 + x429 + x438 + x442 + x443 + x451 + x452 + x453 + x456 + x467 ++ x472 + x476 + x477 + x485 + x503 <= 1 + +x2 + x20 + x21 + x44 + x46 + x48 + x70 + x71 + x74 + x80 ++ x83 + x87 + x88 + x89 + x90 + x91 + x92 + x98 + x113 + x127 ++ x147 + x153 + x155 + x156 + x163 + x164 + x166 + x167 + x168 + x173 ++ x184 + x187 + x190 + x191 + x192 + x193 + x194 + x195 + x203 + x212 ++ x232 + x233 + x234 + x236 + x237 + x247 + x257 + x261 + x269 + x270 ++ x272 + x273 + x275 + x296 + x300 + x308 + x309 + x312 + x326 + x337 ++ x338 + x340 + x400 + x401 + x404 + x410 + x425 + x426 + x427 + x442 ++ x443 + x445 + x453 + x456 + x461 + x467 + x472 + x474 + x476 + x485 ++ x501 + x503 <= 1 + +x1 + x2 + x17 + x18 + x20 + x21 + x44 + x46 + x47 + x48 ++ x49 + x71 + x83 + x88 + x92 + x98 + x101 + x110 + x113 + x147 ++ x151 + x155 + x156 + x164 + x167 + x172 + x173 + x185 + x187 + x190 ++ x191 + x192 + x193 + x194 + x195 + x212 + x233 + x234 + x247 + x257 ++ x258 + x260 + x261 + x269 + x270 + x272 + x273 + x277 + x278 + x308 ++ x309 + x325 + x326 + x327 + x360 + x374 + x376 + x377 + x378 + x379 ++ x399 + x400 + x401 + x402 + x403 + x404 + x425 + x429 + x443 + x445 ++ x453 + x455 + x456 + x457 + x462 + x482 + x485 + x501 + x502 <= 1 + +x0 + x1 + x2 + x17 + x18 + x19 + x20 + x21 + x44 + x46 ++ x47 + x48 + x49 + x76 + x86 + x94 + x97 + x151 + x153 + x155 ++ x156 + x164 + x184 + x190 + x191 + x192 + x193 + x194 + x195 + x233 ++ x237 + x242 + x258 + x269 + x272 + x278 + x290 + x293 + x325 + x326 ++ x327 + x329 + x333 + x334 + x335 + x360 + x374 + x376 + x377 + x378 ++ x379 + x399 + x400 + x401 + x402 + x403 + x404 + x409 + x425 + x429 ++ x434 + x436 + x437 + x439 + x441 + x455 + x457 + x462 + x480 + x481 ++ x482 + x485 + x502 <= 1 + +x2 + x17 + x18 + x19 + x20 + x21 + x44 + x45 + x46 + x47 ++ x48 + x49 + x86 + x93 + x94 + x97 + x151 + x154 + x155 + x156 ++ x184 + x195 + x209 + x213 + x238 + x239 + x240 + x242 + x272 + x291 ++ x293 + x294 + x310 + x325 + x326 + x327 + x329 + x330 + x331 + x332 ++ x333 + x334 + x335 + x374 + x375 + x377 + x378 + x379 + x399 + x400 ++ x401 + x402 + x403 + x404 + x409 + x436 + x437 + x439 + x451 + x455 ++ x457 + x459 + x461 + x480 + x481 + x482 + x485 <= 1 + +x17 + x18 + x19 + x20 + x21 + x44 + x45 + x46 + x47 + x48 ++ x49 + x94 + x97 + x111 + x115 + x130 + x156 + x191 + x193 + x195 ++ x209 + x213 + x238 + x239 + x240 + x241 + x242 + x243 + x264 + x272 ++ x293 + x325 + x326 + x327 + x328 + x330 + x331 + x332 + x333 + x334 ++ x374 + x375 + x377 + x378 + x379 + x399 + x400 + x401 + x402 + x403 ++ x404 + x437 + x439 + x457 + x461 + x475 + x481 + x482 <= 1 + +x39 + x47 + x82 + x97 + x126 + x152 + x181 + x206 + x248 + x256 ++ x258 + x261 + x297 + x298 + x351 + x353 + x369 + x397 + x408 + x421 ++ x426 + x455 + x460 + x472 + x476 + x502 <= 1 + +x0 + x3 + x5 + x39 + x47 + x82 + x125 + x126 + x144 + x145 ++ x152 + x182 + x206 + x207 + x244 + x248 + x253 + x254 + x256 + x258 ++ x260 + x261 + x263 + x276 + x278 + x297 + x298 + x299 + x302 + x306 ++ x307 + x308 + x309 + x312 + x351 + x352 + x353 + x354 + x369 + x370 ++ x371 + x376 + x394 + x396 + x397 + x398 + x408 + x421 + x424 + x426 ++ x427 + x429 + x452 + x455 + x460 + x462 + x472 + x476 + x498 + x500 ++ x502 + x503 <= 1 + +x42 + x43 + x61 + x75 + x77 + x78 + x79 + x82 + x110 + x123 ++ x126 + x144 + x150 + x151 + x152 + x154 + x182 + x183 + x188 + x189 ++ x190 + x191 + x192 + x193 + x194 + x201 + x203 + x205 + x206 + x207 ++ x224 + x232 + x235 + x237 + x245 + x246 + x247 + x261 + x300 + x302 ++ x303 + x304 + x306 + x307 + x308 + x309 + x311 + x312 + x343 + x344 ++ x345 + x346 + x347 + x348 + x376 + x394 + x395 + x396 + x397 + x399 ++ x421 + x423 + x424 + x426 + x427 + x428 + x429 + x438 + x446 + x458 ++ x462 + x472 + x476 + x496 + x497 + x498 + x500 + x501 + x502 + x503 + <= 1 + +x38 + x43 + x48 + x61 + x62 + x63 + x75 + x77 + x78 + x79 ++ x98 + x101 + x106 + x110 + x126 + x129 + x130 + x131 + x132 + x133 ++ x134 + x151 + x152 + x154 + x183 + x187 + x188 + x189 + x190 + x191 ++ x192 + x193 + x194 + x202 + x205 + x206 + x210 + x232 + x234 + x235 ++ x237 + x245 + x246 + x247 + x249 + x261 + x275 + x277 + x278 + x300 ++ x302 + x303 + x304 + x307 + x308 + x309 + x311 + x312 + x343 + x345 ++ x347 + x348 + x376 + x393 + x394 + x395 + x396 + x397 + x398 + x399 ++ x411 + x421 + x424 + x426 + x427 + x429 + x438 + x456 + x458 + x462 ++ x471 + x472 + x476 + x496 + x498 + x500 + x501 + x502 + x503 <= 1 + +x9 + x74 + x75 + x77 + x79 + x80 + x81 + x83 + x85 + x89 ++ x90 + x92 + x98 + x100 + x101 + x129 + x130 + x131 + x134 + x151 ++ x171 + x173 + x190 + x206 + x212 + x232 + x233 + x234 + x235 + x237 ++ x240 + x261 + x268 + x269 + x270 + x272 + x273 + x275 + x278 + x296 ++ x297 + x300 + x307 + x308 + x309 + x311 + x312 + x342 + x343 + x344 ++ x346 + x347 + x348 + x376 + x395 + x396 + x398 + x410 + x411 + x413 ++ x419 + x424 + x425 + x427 + x429 + x436 + x438 + x471 + x472 + x474 ++ x476 + x485 + x496 + x497 + x498 + x500 + x503 <= 1 + +x7 + x8 + x9 + x70 + x71 + x74 + x80 + x87 + x89 + x90 ++ x92 + x98 + x100 + x127 + x151 + x153 + x190 + x191 + x192 + x193 ++ x194 + x195 + x208 + x212 + x232 + x233 + x234 + x235 + x237 + x247 ++ x257 + x261 + x268 + x269 + x270 + x272 + x275 + x284 + x300 + x308 ++ x312 + x337 + x340 + x342 + x343 + x347 + x348 + x384 + x408 + x410 ++ x412 + x413 + x426 + x429 + x436 + x445 + x471 + x474 + x476 + x485 ++ x496 <= 1 + +x7 + x8 + x9 + x47 + x48 + x57 + x86 + x89 + x90 + x92 ++ x100 + x103 + x104 + x142 + x153 + x190 + x191 + x192 + x193 + x194 ++ x195 + x202 + x208 + x212 + x218 + x232 + x234 + x235 + x237 + x247 ++ x248 + x257 + x268 + x269 + x270 + x272 + x273 + x284 + x308 + x347 ++ x348 + x404 + x413 + x436 + x437 + x439 + x441 + x459 + x460 + x474 + <= 1 + +x0 + x1 + x2 + x7 + x44 + x47 + x48 + x57 + x66 + x89 ++ x97 + x104 + x190 + x191 + x192 + x193 + x194 + x195 + x212 + x237 ++ x247 + x248 + x268 + x272 + x278 + x327 + x334 + x335 + x348 + x390 ++ x399 + x400 + x401 + x402 + x404 + x436 + x437 + x439 + x441 + x480 ++ x482 + x485 + x502 <= 1 + +x18 + x19 + x20 + x21 + x44 + x45 + x46 + x47 + x48 + x49 ++ x94 + x97 + x107 + x111 + x115 + x154 + x156 + x191 + x192 + x195 ++ x211 + x213 + x238 + x239 + x240 + x241 + x242 + x243 + x248 + x249 ++ x305 + x325 + x326 + x327 + x328 + x329 + x330 + x331 + x332 + x333 ++ x334 + x335 + x374 + x375 + x377 + x378 + x379 + x380 + x399 + x400 ++ x401 + x402 + x403 + x404 + x437 + x439 + x455 + x457 + x459 + x461 ++ x475 + x480 + x481 + x482 <= 1 + +x17 + x18 + x19 + x20 + x45 + x46 + x47 + x48 + x49 + x94 ++ x97 + x111 + x115 + x130 + x191 + x192 + x195 + x208 + x211 + x213 ++ x238 + x239 + x240 + x241 + x242 + x249 + x264 + x311 + x325 + x326 ++ x327 + x329 + x330 + x332 + x334 + x335 + x349 + x374 + x375 + x377 ++ x378 + x379 + x399 + x400 + x401 + x402 + x403 + x404 + x439 + x455 ++ x482 + x494 <= 1 + +x39 + x42 + x47 + x82 + x123 + x124 + x125 + x127 + x136 + x151 ++ x152 + x155 + x169 + x174 + x178 + x180 + x181 + x190 + x194 + x210 ++ x245 + x250 + x251 + x252 + x253 + x256 + x262 + x263 + x265 + x271 ++ x274 + x275 + x276 + x277 + x278 + x281 + x295 + x297 + x298 + x299 ++ x301 + x302 + x303 + x304 + x305 + x306 + x309 + x310 + x321 + x350 ++ x351 + x352 + x353 + x354 + x355 + x369 + x370 + x371 + x394 + x395 ++ x396 + x397 + x398 + x406 + x408 + x418 + x419 + x421 + x422 + x423 ++ x426 + x429 + x462 + x476 + x483 + x498 + x501 <= 1 + +x0 + x3 + x5 + x38 + x39 + x40 + x41 + x42 + x47 + x63 ++ x70 + x73 + x78 + x81 + x82 + x86 + x123 + x125 + x130 + x133 ++ x134 + x151 + x152 + x155 + x169 + x174 + x181 + x182 + x188 + x202 ++ x206 + x207 + x210 + x235 + x245 + x246 + x247 + x250 + x253 + x256 ++ x258 + x261 + x263 + x265 + x271 + x274 + x275 + x276 + x278 + x283 ++ x295 + x297 + x298 + x299 + x301 + x302 + x303 + x304 + x305 + x306 ++ x307 + x309 + x310 + x338 + x344 + x350 + x351 + x352 + x353 + x354 ++ x355 + x368 + x369 + x370 + x371 + x376 + x393 + x394 + x396 + x397 ++ x398 + x408 + x417 + x418 + x419 + x421 + x422 + x424 + x426 + x427 ++ x429 + x452 + x455 + x456 + x461 + x462 + x467 + x472 + x476 + x498 ++ x502 <= 1 + +x25 + x29 + x31 + x38 + x41 + x42 + x43 + x61 + x62 + x63 ++ x73 + x75 + x77 + x78 + x80 + x81 + x82 + x86 + x110 + x123 ++ x125 + x126 + x129 + x130 + x131 + x132 + x133 + x134 + x151 + x152 ++ x154 + x155 + x181 + x182 + x188 + x189 + x190 + x191 + x192 + x193 ++ x194 + x202 + x203 + x205 + x206 + x207 + x210 + x235 + x244 + x245 ++ x246 + x247 + x249 + x250 + x255 + x265 + x271 + x274 + x275 + x276 ++ x278 + x287 + x297 + x301 + x302 + x303 + x304 + x306 + x307 + x308 ++ x309 + x310 + x311 + x342 + x343 + x344 + x345 + x346 + x348 + x355 ++ x368 + x376 + x393 + x394 + x395 + x396 + x397 + x398 + x399 + x406 ++ x408 + x410 + x411 + x417 + x418 + x419 + x420 + x421 + x422 + x423 ++ x424 + x426 + x427 + x429 + x456 + x462 + x471 + x472 + x476 + x494 ++ x496 + x497 + x498 + x500 + x501 + x502 + x503 <= 1 + +x45 + x48 + x75 + x77 + x78 + x79 + x80 + x82 + x121 + x129 ++ x130 + x131 + x132 + x133 + x134 + x151 + x152 + x183 + x190 + x193 ++ x202 + x205 + x206 + x210 + x212 + x245 + x247 + x255 + x261 + x273 ++ x275 + x278 + x298 + x300 + x301 + x302 + x303 + x304 + x306 + x307 ++ x308 + x309 + x311 + x312 + x342 + x343 + x344 + x345 + x346 + x347 ++ x376 + x398 + x399 + x406 + x408 + x410 + x411 + x417 + x418 + x424 ++ x426 + x427 + x429 + x462 + x471 + x472 + x476 + x496 + x497 + x498 ++ x500 + x501 + x502 + x503 <= 1 + +x33 + x48 + x74 + x75 + x77 + x79 + x80 + x136 + x190 + x191 ++ x192 + x195 + x202 + x204 + x205 + x210 + x212 + x232 + x233 + x237 ++ x261 + x269 + x272 + x273 + x278 + x295 + x296 + x298 + x300 + x302 ++ x303 + x304 + x307 + x308 + x309 + x311 + x312 + x342 + x343 + x344 ++ x345 + x346 + x347 + x348 + x376 + x384 + x397 + x404 + x408 + x410 ++ x412 + x413 + x414 + x415 + x416 + x417 + x419 + x424 + x427 + x429 ++ x436 + x438 + x440 + x472 + x474 + x496 + x497 + x500 + x501 + x503 + <= 1 + +x8 + x44 + x48 + x60 + x80 + x87 + x89 + x92 + x127 + x136 ++ x155 + x190 + x191 + x192 + x193 + x194 + x195 + x204 + x208 + x211 ++ x212 + x247 + x248 + x268 + x269 + x270 + x271 + x272 + x308 + x340 ++ x343 + x344 + x384 + x388 + x390 + x391 + x392 + x402 + x404 + x408 ++ x410 + x412 + x413 + x414 + x415 + x416 + x436 + x437 + x439 + x440 ++ x441 + x471 + x472 + x474 + x496 <= 1 + +x1 + x7 + x8 + x9 + x44 + x55 + x57 + x86 + x87 + x92 ++ x100 + x103 + x104 + x136 + x141 + x153 + x190 + x191 + x192 + x193 ++ x194 + x195 + x202 + x204 + x208 + x211 + x212 + x213 + x218 + x234 ++ x244 + x247 + x248 + x264 + x267 + x268 + x269 + x270 + x272 + x273 ++ x355 + x364 + x365 + x366 + x387 + x388 + x390 + x391 + x392 + x402 ++ x404 + x410 + x436 + x437 + x439 + x440 + x441 + x459 + x460 + x473 ++ x474 + x492 <= 1 + +x0 + x1 + x2 + x44 + x57 + x97 + x100 + x103 + x104 + x141 ++ x153 + x190 + x191 + x192 + x193 + x194 + x195 + x208 + x213 + x247 ++ x248 + x264 + x268 + x387 + x388 + x390 + x391 + x399 + x400 + x402 ++ x404 + x436 + x437 + x439 + x441 + x460 + x480 <= 1 + +x18 + x19 + x21 + x44 + x46 + x47 + x48 + x102 + x107 + x111 ++ x191 + x192 + x195 + x208 + x209 + x211 + x213 + x238 + x239 + x240 ++ x241 + x242 + x243 + x248 + x249 + x305 + x325 + x326 + x327 + x328 ++ x329 + x330 + x331 + x332 + x333 + x335 + x374 + x375 + x377 + x378 ++ x380 + x388 + x389 + x391 + x392 + x399 + x400 + x401 + x402 + x403 ++ x404 + x411 + x425 + x450 + x457 + x459 + x473 + x475 + x496 <= 1 + +x18 + x19 + x20 + x47 + x48 + x191 + x192 + x208 + x209 + x211 ++ x213 + x239 + x240 + x241 + x243 + x248 + x249 + x305 + x325 + x326 ++ x327 + x328 + x329 + x330 + x332 + x333 + x374 + x377 + x378 + x379 ++ x391 + x399 + x400 + x401 + x402 + x403 + x404 + x425 + x439 + x459 ++ x473 + x494 + x503 <= 1 + +x0 + x3 + x5 + x38 + x39 + x41 + x42 + x45 + x47 + x68 ++ x117 + x123 + x124 + x127 + x129 + x132 + x133 + x134 + x136 + x151 ++ x152 + x169 + x174 + x178 + x179 + x180 + x181 + x182 + x190 + x191 ++ x206 + x207 + x210 + x235 + x244 + x245 + x246 + x251 + x252 + x253 ++ x258 + x262 + x263 + x265 + x271 + x276 + x277 + x278 + x280 + x281 ++ x283 + x295 + x298 + x299 + x301 + x302 + x303 + x304 + x305 + x306 ++ x307 + x309 + x310 + x321 + x322 + x350 + x351 + x352 + x354 + x355 ++ x368 + x369 + x370 + x371 + x393 + x394 + x395 + x396 + x397 + x398 ++ x406 + x418 + x419 + x421 + x422 + x423 + x426 + x427 + x429 + x452 ++ x456 + x461 + x462 + x472 + x476 + x498 + x501 + x502 <= 1 + +x3 + x5 + x26 + x38 + x39 + x40 + x41 + x42 + x45 + x47 ++ x73 + x82 + x117 + x129 + x130 + x132 + x133 + x134 + x151 + x152 ++ x174 + x181 + x190 + x191 + x192 + x194 + x202 + x206 + x207 + x210 ++ x244 + x245 + x246 + x250 + x251 + x252 + x253 + x258 + x271 + x274 ++ x275 + x276 + x277 + x278 + x280 + x281 + x282 + x283 + x298 + x299 ++ x301 + x302 + x303 + x304 + x305 + x306 + x307 + x309 + x310 + x338 ++ x344 + x345 + x350 + x351 + x352 + x354 + x355 + x370 + x371 + x393 ++ x394 + x395 + x396 + x398 + x406 + x408 + x411 + x418 + x419 + x420 ++ x421 + x422 + x423 + x426 + x449 + x452 + x456 + x461 + x462 + x471 ++ x475 + x476 + x498 + x501 + x502 <= 1 + +x3 + x5 + x24 + x26 + x33 + x40 + x41 + x43 + x45 + x47 ++ x48 + x73 + x77 + x82 + x110 + x124 + x129 + x130 + x131 + x132 ++ x133 + x134 + x138 + x152 + x174 + x182 + x188 + x190 + x191 + x192 ++ x193 + x194 + x206 + x207 + x210 + x235 + x244 + x246 + x247 + x249 ++ x251 + x258 + x271 + x274 + x275 + x276 + x282 + x295 + x297 + x298 ++ x299 + x301 + x302 + x303 + x304 + x306 + x307 + x308 + x309 + x310 ++ x311 + x319 + x338 + x345 + x348 + x350 + x352 + x354 + x355 + x371 ++ x393 + x394 + x395 + x396 + x398 + x406 + x408 + x410 + x411 + x418 ++ x419 + x420 + x421 + x422 + x423 + x426 + x427 + x461 + x462 + x471 ++ x475 + x476 + x494 + x495 + x497 + x498 + x501 + x502 + x503 <= 1 + +x24 + x25 + x27 + x29 + x33 + x43 + x45 + x48 + x62 + x78 ++ x98 + x107 + x110 + x118 + x121 + x123 + x126 + x129 + x130 + x132 ++ x133 + x134 + x138 + x151 + x188 + x190 + x191 + x192 + x193 + x194 ++ x195 + x202 + x203 + x205 + x206 + x207 + x210 + x244 + x246 + x247 ++ x249 + x255 + x271 + x278 + x295 + x298 + x299 + x300 + x301 + x302 ++ x303 + x304 + x306 + x307 + x309 + x310 + x344 + x345 + x346 + x348 ++ x350 + x352 + x354 + x355 + x393 + x394 + x395 + x396 + x397 + x398 ++ x406 + x408 + x410 + x414 + x417 + x418 + x420 + x422 + x423 + x424 ++ x426 + x427 + x471 + x472 + x473 + x494 + x497 + x498 + x500 + x501 ++ x502 + x503 <= 1 + +x25 + x27 + x45 + x48 + x98 + x99 + x107 + x110 + x121 + x151 ++ x190 + x191 + x192 + x194 + x195 + x202 + x204 + x207 + x210 + x244 ++ x247 + x249 + x271 + x273 + x295 + x300 + x343 + x344 + x346 + x348 ++ x350 + x352 + x353 + x365 + x384 + x386 + x394 + x395 + x396 + x397 ++ x398 + x410 + x412 + x413 + x414 + x415 + x416 + x419 + x420 + x423 ++ x424 + x426 + x427 + x471 + x472 + x473 + x474 + x475 + x494 + x495 ++ x497 + x498 + x500 <= 1 + +x27 + x55 + x57 + x60 + x87 + x99 + x102 + x104 + x107 + x108 ++ x111 + x127 + x136 + x137 + x151 + x190 + x191 + x192 + x193 + x194 ++ x195 + x202 + x204 + x205 + x207 + x208 + x211 + x212 + x213 + x244 ++ x247 + x248 + x267 + x271 + x273 + x300 + x313 + x314 + x343 + x346 ++ x363 + x365 + x366 + x388 + x389 + x391 + x392 + x404 + x412 + x414 ++ x416 + x423 + x436 + x439 + x440 + x460 + x473 + x474 + x475 + x492 ++ x494 + x495 + x496 + x497 <= 1 + +x44 + x55 + x56 + x57 + x59 + x60 + x86 + x94 + x100 + x102 ++ x103 + x104 + x106 + x107 + x108 + x111 + x136 + x137 + x190 + x191 ++ x192 + x193 + x195 + x202 + x204 + x208 + x211 + x212 + x213 + x234 ++ x236 + x243 + x244 + x248 + x249 + x262 + x264 + x267 + x268 + x269 ++ x270 + x271 + x273 + x311 + x313 + x314 + x315 + x331 + x336 + x343 ++ x346 + x355 + x362 + x363 + x364 + x365 + x366 + x367 + x387 + x388 ++ x389 + x390 + x391 + x392 + x402 + x404 + x436 + x439 + x440 + x441 ++ x457 + x459 + x460 + x473 + x474 + x475 + x492 + x494 + x495 + x496 + <= 1 + +x18 + x34 + x35 + x36 + x44 + x57 + x59 + x60 + x93 + x94 ++ x95 + x100 + x102 + x103 + x104 + x106 + x107 + x108 + x111 + x135 ++ x136 + x137 + x191 + x208 + x209 + x211 + x213 + x224 + x236 + x238 ++ x239 + x240 + x241 + x242 + x243 + x244 + x248 + x249 + x262 + x264 ++ x266 + x267 + x315 + x328 + x329 + x330 + x331 + x333 + x355 + x362 ++ x364 + x365 + x366 + x367 + x377 + x387 + x388 + x389 + x391 + x392 ++ x402 + x404 + x457 + x459 + x460 + x473 + x474 + x475 + x492 + x494 ++ x495 + x496 <= 1 + +x18 + x19 + x36 + x47 + x48 + x93 + x94 + x95 + x102 + x103 ++ x106 + x107 + x108 + x111 + x191 + x192 + x195 + x208 + x209 + x211 ++ x213 + x238 + x239 + x240 + x241 + x242 + x243 + x244 + x248 + x249 ++ x262 + x266 + x305 + x315 + x325 + x326 + x327 + x328 + x329 + x330 ++ x331 + x332 + x333 + x362 + x364 + x365 + x366 + x367 + x377 + x387 ++ x388 + x389 + x391 + x392 + x454 + x457 + x459 + x460 + x473 + x474 ++ x492 + x495 + x496 <= 1 + +x102 + x106 + x111 + x199 + x208 + x209 + x213 + x238 + x239 + x240 ++ x241 + x243 + x266 + x305 + x325 + x327 + x328 + x329 + x330 + x362 ++ x366 + x367 + x377 + x387 + x388 + x389 + x391 + x454 + x457 + x459 ++ x473 <= 1 + +x3 + x26 + x28 + x32 + x47 + x123 + x124 + x128 + x129 + x132 ++ x134 + x174 + x178 + x179 + x180 + x183 + x206 + x207 + x208 + x210 ++ x218 + x245 + x251 + x252 + x263 + x265 + x271 + x276 + x280 + x281 ++ x282 + x283 + x295 + x298 + x299 + x301 + x303 + x305 + x306 + x307 ++ x310 + x322 + x351 + x354 + x368 + x371 + x406 + x411 + x418 + x419 ++ x421 + x422 + x423 + x447 + x449 + x452 + x461 + x471 + x472 + x475 ++ x476 + x498 + x501 + x502 <= 1 + +x3 + x23 + x26 + x38 + x40 + x47 + x82 + x117 + x120 + x124 ++ x128 + x129 + x130 + x132 + x133 + x134 + x152 + x174 + x179 + x180 ++ x181 + x183 + x206 + x207 + x210 + x245 + x246 + x249 + x252 + x271 ++ x280 + x281 + x282 + x283 + x295 + x298 + x299 + x301 + x302 + x303 ++ x304 + x305 + x306 + x307 + x308 + x309 + x310 + x311 + x344 + x346 ++ x350 + x351 + x352 + x354 + x355 + x388 + x393 + x394 + x395 + x396 ++ x398 + x399 + x406 + x408 + x411 + x418 + x419 + x421 + x422 + x449 ++ x452 + x471 + x475 + x476 + x498 + x501 <= 1 + +x23 + x24 + x26 + x28 + x40 + x43 + x45 + x47 + x48 + x58 ++ x82 + x110 + x118 + x120 + x124 + x128 + x129 + x130 + x132 + x133 ++ x134 + x152 + x174 + x179 + x182 + x188 + x190 + x191 + x192 + x206 ++ x207 + x210 + x244 + x249 + x271 + x275 + x276 + x295 + x299 + x304 ++ x307 + x308 + x309 + x310 + x311 + x345 + x346 + x350 + x352 + x354 ++ x371 + x393 + x395 + x399 + x411 + x415 + x427 + x452 + x471 + x472 ++ x473 + x475 + x476 + x495 + x498 <= 1 + +x23 + x24 + x25 + x27 + x28 + x33 + x40 + x45 + x47 + x48 ++ x56 + x58 + x82 + x110 + x118 + x120 + x121 + x124 + x128 + x138 ++ x174 + x190 + x191 + x192 + x194 + x202 + x206 + x207 + x210 + x219 ++ x244 + x246 + x249 + x255 + x268 + x271 + x295 + x299 + x301 + x302 ++ x304 + x307 + x309 + x310 + x345 + x346 + x348 + x350 + x352 + x393 ++ x394 + x397 + x414 + x415 + x416 + x417 + x418 + x420 + x423 + x426 ++ x471 + x472 + x473 + x474 + x475 + x495 + x497 + x498 <= 1 + +x23 + x24 + x27 + x44 + x48 + x56 + x58 + x82 + x86 + x106 ++ x111 + x120 + x128 + x138 + x190 + x191 + x192 + x193 + x194 + x195 ++ x202 + x204 + x207 + x210 + x219 + x244 + x255 + x268 + x271 + x299 ++ x307 + x309 + x310 + x353 + x393 + x394 + x397 + x398 + x410 + x412 ++ x415 + x416 + x424 + x471 + x473 + x474 + x475 + x495 + x497 + x498 ++ x500 <= 1 + +x27 + x44 + x55 + x56 + x58 + x59 + x86 + x106 + x107 + x109 ++ x111 + x138 + x139 + x175 + x177 + x190 + x191 + x192 + x193 + x194 ++ x195 + x204 + x244 + x248 + x249 + x268 + x269 + x270 + x271 + x299 ++ x336 + x353 + x389 + x390 + x393 + x394 + x424 + x436 + x459 + x471 ++ x473 + x474 + x475 + x492 + x494 + x495 <= 1 + +x34 + x36 + x55 + x56 + x58 + x60 + x86 + x106 + x107 + x108 ++ x111 + x155 + x177 + x190 + x192 + x202 + x204 + x208 + x209 + x213 ++ x244 + x248 + x249 + x262 + x267 + x268 + x269 + x270 + x313 + x314 ++ x328 + x331 + x336 + x353 + x367 + x393 + x402 + x404 + x436 + x439 ++ x440 + x441 + x457 + x459 + x460 + x471 + x473 + x474 + x475 + x492 ++ x493 + x494 + x495 <= 1 + +x34 + x35 + x36 + x37 + x55 + x56 + x57 + x59 + x60 + x86 ++ x94 + x95 + x102 + x103 + x104 + x106 + x107 + x108 + x111 + x135 ++ x137 + x140 + x190 + x191 + x192 + x193 + x194 + x195 + x202 + x204 ++ x208 + x209 + x211 + x213 + x234 + x239 + x240 + x243 + x244 + x248 ++ x249 + x267 + x268 + x269 + x270 + x314 + x315 + x328 + x329 + x330 ++ x331 + x336 + x362 + x363 + x364 + x367 + x381 + x387 + x388 + x389 ++ x390 + x391 + x392 + x402 + x404 + x457 + x459 + x460 + x473 + x474 ++ x475 + x492 + x493 <= 1 + +x34 + x35 + x37 + x59 + x60 + x86 + x94 + x95 + x102 + x103 ++ x104 + x106 + x107 + x108 + x109 + x111 + x139 + x140 + x152 + x194 ++ x204 + x208 + x209 + x211 + x213 + x268 + x269 + x270 + x296 + x298 ++ x331 + x336 + x363 + x364 + x369 + x381 + x382 + x387 + x388 + x389 ++ x390 + x391 + x392 + x402 + x418 + x457 + x459 + x460 + x473 + x474 ++ x475 + x488 + x492 + x493 <= 1 + +x35 + x37 + x60 + x106 + x107 + x108 + x109 + x111 + x135 + x137 ++ x139 + x140 + x152 + x192 + x194 + x204 + x247 + x296 + x336 + x369 ++ x387 + x388 + x389 + x390 + x392 + x457 + x459 + x460 + x473 + x474 ++ x493 <= 1 + +x26 + x30 + x32 + x47 + x129 + x132 + x174 + x178 + x179 + x180 ++ x183 + x203 + x207 + x210 + x245 + x263 + x265 + x279 + x282 + x295 ++ x298 + x299 + x301 + x305 + x307 + x310 + x351 + x354 + x406 + x411 ++ x422 + x447 + x448 + x451 + x452 + x461 + x471 + x472 + x476 + x498 ++ x501 <= 1 + +x5 + x29 + x30 + x32 + x174 + x178 + x179 + x180 + x183 + x203 ++ x245 + x270 + x273 + x295 + x298 + x301 + x305 + x307 + x405 + x406 ++ x422 + x424 + x447 + x448 + x451 + x452 + x471 + x476 + x498 <= 1 + +x5 + x29 + x30 + x32 + x117 + x174 + x179 + x180 + x245 + x270 ++ x295 + x301 + x305 + x307 + x405 + x422 + x424 + x428 + x448 + x451 ++ x452 + x471 + x476 <= 1 + +x23 + x25 + x28 + x45 + x47 + x48 + x108 + x109 + x138 + x190 ++ x191 + x192 + x193 + x194 + x202 + x207 + x215 + x219 + x244 + x249 ++ x295 + x299 + x310 + x350 + x387 + x390 + x393 + x397 + x420 + x423 ++ x426 + x471 + x472 + x473 + x474 + x475 + x492 + x495 + x497 + x498 + <= 1 + +x23 + x25 + x28 + x44 + x47 + x108 + x109 + x135 + x138 + x139 ++ x140 + x153 + x189 + x190 + x192 + x194 + x207 + x211 + x219 + x249 ++ x268 + x270 + x271 + x273 + x387 + x390 + x392 + x393 + x397 + x471 ++ x473 + x475 + x492 + x494 + x497 + x498 <= 1 + +x28 + x41 + x44 + x55 + x56 + x58 + x59 + x86 + x106 + x108 ++ x109 + x135 + x138 + x139 + x140 + x174 + x175 + x176 + x190 + x192 ++ x193 + x194 + x195 + x211 + x219 + x244 + x249 + x268 + x269 + x270 ++ x271 + x273 + x353 + x387 + x389 + x390 + x391 + x392 + x471 + x473 ++ x474 + x475 + x492 + x494 + x495 + x498 <= 1 + +x55 + x56 + x59 + x106 + x107 + x108 + x109 + x135 + x137 + x138 ++ x139 + x140 + x176 + x190 + x192 + x193 + x194 + x211 + x244 + x270 ++ x274 + x328 + x336 + x387 + x389 + x390 + x391 + x392 + x427 + x475 + <= 1 + +x1 + x37 + x48 + x59 + x86 + x95 + x103 + x106 + x107 + x108 ++ x109 + x111 + x135 + x137 + x139 + x140 + x190 + x192 + x193 + x194 ++ x209 + x211 + x243 + x244 + x268 + x274 + x296 + x328 + x329 + x330 ++ x336 + x362 + x363 + x383 + x387 + x388 + x389 + x390 + x391 + x392 ++ x427 + x459 + x460 + x473 + x474 + x475 + x492 + x493 <= 1 + +x1 + x46 + x94 + x95 + x102 + x106 + x107 + x108 + x109 + x111 ++ x135 + x137 + x139 + x140 + x152 + x192 + x193 + x194 + x204 + x209 ++ x211 + x243 + x268 + x296 + x336 + x363 + x381 + x382 + x383 + x387 ++ x388 + x389 + x390 + x391 + x392 + x402 + x451 + x457 + x459 + x460 ++ x473 + x474 + x475 + x493 <= 1 + +x106 + x107 + x108 + x109 + x135 + x137 + x139 + x140 + x192 + x194 ++ x204 + x247 + x268 + x278 + x295 + x296 + x336 + x382 + x383 + x387 ++ x388 + x390 + x392 + x473 + x474 + x493 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x7 + x8 + x9 <= 1 + +x10 + x11 + x12 <= 1 + +x13 + x14 + x15 + x16 <= 1 + +x17 + x18 + x19 + x20 + x21 + x22 <= 1 + +x23 + x24 + x25 + x26 + x27 + x28 <= 1 + +x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 <= 1 + +x38 + x39 + x40 + x41 + x42 + x43 <= 1 + +x44 + x45 + x46 + x47 + x48 + x49 <= 1 + +x50 + x51 + x52 + x53 + x54 <= 1 + +x55 + x56 + x57 + x58 + x59 + x60 <= 1 + +x61 + x62 + x63 <= 1 + +x64 + x65 + x66 + x67 + x68 + x69 <= 1 + +x70 + x71 + x72 + x73 + x74 <= 1 + +x75 + x76 + x77 + x78 + x79 + x80 <= 1 + +x81 + x82 + x83 + x84 + x85 + x86 <= 1 + +x87 + x88 + x89 + x90 + x91 + x92 <= 1 + +x93 + x94 + x95 + x96 + x97 + x98 <= 1 + +x100 + x101 + x102 + x103 + x104 + x105 <= 1 + +x106 + x107 + x108 + x109 + x110 + x111 <= 1 + +x112 + x113 + x114 + x115 + x116 + x117 <= 1 + +x118 + x119 + x120 + x121 <= 1 + +x123 + x124 + x125 + x126 + x127 + x128 <= 1 + +x129 + x130 + x131 + x132 + x133 + x134 <= 1 + +x135 + x136 + x137 + x138 + x139 + x140 <= 1 + + <= 1 + +x143 + x144 + x145 + x146 + x147 + x148 <= 1 + +x149 + x150 <= 1 + +x151 + x152 + x153 + x154 + x155 + x156 <= 1 + +x157 + x158 + x159 + x160 + x161 + x162 <= 1 + +x163 + x164 + x165 + x166 + x167 + x168 <= 1 + +x169 + x170 + x171 + x172 + x173 + x174 <= 1 + +x175 + x176 + x177 <= 1 + +x178 + x179 + x180 + x181 + x182 + x183 <= 1 + +x184 + x185 + x186 + x187 + x188 + x189 <= 1 + +x190 + x191 + x192 + x193 + x194 + x195 <= 1 + +x196 + x197 + x198 + x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x208 + x209 + x210 + x211 + x212 + x213 <= 1 + +x215 + x216 + x217 + x218 + x219 <= 1 + +x220 + x221 + x222 + x223 + x224 + x225 <= 1 + +x226 + x227 + x228 + x229 + x230 + x231 <= 1 + +x232 + x233 + x234 + x235 + x236 + x237 <= 1 + +x238 + x239 + x240 + x241 + x242 + x243 <= 1 + +x244 + x245 + x246 + x247 + x248 + x249 <= 1 + +x250 + x251 + x252 + x253 + x254 + x255 <= 1 + +x256 + x257 + x258 + x259 + x260 + x261 <= 1 + +x262 + x263 + x264 + x265 + x266 + x267 <= 1 + +x268 + x269 + x270 + x271 + x272 + x273 <= 1 + +x274 + x275 + x276 + x277 + x278 + x279 <= 1 + +x280 + x281 + x282 + x283 + x284 <= 1 + +x286 + x287 + x288 + x289 <= 1 + +x290 + x291 + x292 + x293 + x294 <= 1 + +x295 + x296 + x297 + x298 + x299 + x300 <= 1 + +x301 + x302 + x303 + x304 + x305 + x306 <= 1 + +x307 + x308 + x309 + x310 + x311 + x312 <= 1 + +x313 + x314 + x315 + x316 <= 1 + +x317 + x318 + x319 + x320 <= 1 + +x321 + x322 <= 1 + +x325 + x326 + x327 + x328 + x329 + x330 <= 1 + +x331 + x332 + x333 + x334 + x335 + x336 <= 1 + +x337 + x338 + x339 + x340 + x341 + x342 <= 1 + +x343 + x344 + x345 + x346 + x347 + x348 <= 1 + +x350 + x351 + x352 + x353 + x354 + x355 <= 1 + +x356 + x357 + x358 + x359 + x360 + x361 <= 1 + +x362 + x363 + x364 + x365 + x366 + x367 <= 1 + +x368 + x369 + x370 + x371 + x372 + x373 <= 1 + +x374 + x375 + x376 + x377 + x378 + x379 <= 1 + +x381 + x382 + x383 <= 1 + + <= 1 + +x387 + x388 + x389 + x390 + x391 + x392 <= 1 + +x393 + x394 + x395 + x396 + x397 + x398 <= 1 + +x399 + x400 + x401 + x402 + x403 + x404 <= 1 + +x406 + x407 + x408 + x409 + x410 + x411 <= 1 + +x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 + x422 + x423 <= 1 + +x424 + x425 + x426 + x427 + x428 + x429 <= 1 + +x430 + x431 + x432 + x433 + x434 + x435 <= 1 + +x436 + x437 + x438 + x439 + x440 + x441 <= 1 + +x442 + x443 + x444 + x445 <= 1 + +x447 + x448 + x449 <= 1 + +x451 + x452 + x453 + x454 + x455 + x456 <= 1 + +x457 + x458 + x459 + x460 + x461 + x462 <= 1 + +x463 + x464 + x465 + x466 + x467 + x468 <= 1 + +x471 + x472 + x473 + x474 + x475 + x476 <= 1 + +x477 + x478 + x479 <= 1 + +x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x492 + x493 + x494 + x495 + x496 + x497 <= 1 + +x498 + x499 + x500 + x501 + x502 + x503 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 x503 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0013.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0013.lp new file mode 100644 index 000000000..b1c66505e --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0013.lp @@ -0,0 +1,1096 @@ +max + +719.895x0 + 923.047x1 + 869.499x2 + 863.733x3 + 847.622x4 + 847.466x5 + 1790.51x6 + 2075.04x7 + 1978.58x8 + 1877.97x9 + +1877.77x10 + 1820.54x11 + 850.36x12 + 932.075x13 + 863.092x14 + 814.873x15 + 789.22x16 + 788.598x17 + 663.62x18 + 664.31x19 + +621.786x20 + 598.787x21 + 568.438x22 + 547.063x23 + 1902.15x24 + 2212.74x25 + 2141.97x26 + 2116.21x27 + 2100.75x28 + 2099.17x29 + +1542.73x30 + 1634.68x31 + 1586.79x32 + 1530.87x33 + 1500.04x34 + 1482.76x35 + 767.008x36 + 905.632x37 + 889.217x38 + 783.232x39 + +762.646x40 + 754.307x41 + 696.899x42 + 738.706x43 + 652.906x44 + 649.984x45 + 637.595x46 + 609.768x47 + 143.033x48 + 155.995x49 + +874.213x50 + 1157.45x51 + 1108.13x52 + 1094.58x53 + 1069.64x54 + 1060.01x55 + 326.272x56 + 464.028x57 + 445.725x58 + 349.586x59 + +348.803x60 + 321.822x61 + 793.898x62 + 838.075x63 + 827.414x64 + 812.124x65 + 775.022x66 + 724.081x67 + 963.528x68 + 1300.09x69 + +1217.7x70 + 1147.44x71 + 1138.03x72 + 1084.28x73 + 1349.45x74 + 1445.18x75 + 1434.01x76 + 1416.69x77 + 1403.6x78 + 1358.56x79 + +102.488x80 + 350.385x81 + 383.814x82 + 355.136x83 + 346.791x84 + 319.794x85 + 591.293x86 + 601.949x87 + 548.806x88 + 454x89 + +451.95x90 + 450.862x91 + 784.482x92 + 830.017x93 + 801.513x94 + 744.062x95 + 716.153x96 + 708.773x97 + 89.2013x98 + 581.342x99 + +721.814x100 + 688.939x101 + 679.984x102 + 656.161x103 + 652.632x104 + 436.581x105 + 496.763x106 + 479.531x107 + 469.269x108 + 382.07x109 + +372.727x110 + 421.303x111 + 470.101x112 + 447.21x113 + 445.313x114 + 421.341x115 + 314.625x116 + 108.459x117 + 1068.98x118 + 1133.52x119 + +1131.17x120 + 1105.6x121 + 1092.93x122 + 1087.93x123 + 823.821x124 + 921.055x125 + 883.626x126 + 854.649x127 + 843.349x128 + 832.354x129 + +364.155x130 + 520.163x131 + 508.352x132 + 487.572x133 + 435.655x134 + 334.638x135 + 401.215x136 + 443.301x137 + 388.215x138 + 373.117x139 + +287.786x140 + 259.212x141 + 1134.27x142 + 1521.59x143 + 1243.44x144 + 1214.68x145 + 1199.87x146 + 1195.72x147 + 50.0749x148 + 139.264x149 + +472.991x150 + 621.46x151 + 604.157x152 + 583.153x153 + 567.621x154 + 530.613x155 + 191.792x156 + 284.496x157 + 242.534x158 + 1827.51x159 + +2059.58x160 + 2037.33x161 + 2018.26x162 + 2011.55x163 + 1976.71x164 + 292.295x165 + 300.121x166 + 274.428x167 + 259.199x168 + 245.437x169 + +620.527x170 + 714.848x171 + 706.029x172 + 651.337x173 + 639.438x174 + 606.237x175 + 1307.1x176 + 1447.88x177 + 1422.72x178 + 1406.15x179 + +1395.86x180 + 1388.23x181 + 21.6758x182 + 729.776x183 + 795.794x184 + 768.77x185 + 768.209x186 + 765.912x187 + 699.615x188 + 177.854x189 + +253.202x190 + 118.061x191 + 416.564x192 + 546.945x193 + 527.252x194 + 520.318x195 + 490.78x196 + 485.484x197 + 892.855x198 + 1192.36x199 + +1144.4x200 + 1093.08x201 + 1053.28x202 + 1035.9x203 + 140.996x204 + 230.149x205 + 227.815x206 + 221.555x207 + 218.96x208 + 188.912x209 + +371.923x210 + 448.159x211 + 431.904x212 + 429.223x213 + 426.969x214 + 364.313x215 + 867.922x216 + 1187.25x217 + 1174.18x218 + 1025.17x219 + +1005.6x220 + 1002.83x221 + 266.708x222 + 304.328x223 + 274.941x224 + 271.864x225 + 80.985x226 + 1190.29x227 + 1129.38x228 + 1098.91x229 + +1088.57x230 + 1036.96x231 + 1031.68x232 + 335.365x233 + 489.595x234 + 458.044x235 + 65.2368x236 + 50.3127x237 + 1170.03x238 + 1353.71x239 + +1243.25x240 + 1194.32x241 + 1186.23x242 + 1156.56x243 + 948.974x244 + 1247.04x245 + 1195.34x246 + 1171.23x247 + 1165.4x248 + 1137.16x249 + +513.94x250 + 678.984x251 + 665.018x252 + 629.684x253 + 625.937x254 + 609.277x255 + 493.543x256 + 551.328x257 + 509.443x258 + 509.08x259 + +433.441x260 + 414.861x261 + 129.367x262 + 154.215x263 + 74.7966x264 + 369.459x265 + 537.436x266 + 532.093x267 + 473.376x268 + 435.215x269 + +420.242x270 + 396.194x271 + 553.472x272 + 509.382x273 + 449.32x274 + 411.573x275 + 360.056x276 + 1460.56x277 + 1686.75x278 + 1680.4x279 + +1634.14x280 + 1583.19x281 + 1547.33x282 + 129.369x283 + 338.356x284 + 397.506x285 + 333.415x286 + 322.805x287 + 231.718x288 + 214.16x289 + +620.678x290 + 672.799x291 + 665.358x292 + 656.988x293 + 647.345x294 + 622.087x295 + 195.726x296 + 149.741x297 + 131.52x298 + 442.58x299 + +484.554x300 + 475.35x301 + 474.782x302 + 432.064x303 + 416.223x304 + 866.521x305 + 826.47x306 + 760.964x307 + 741.923x308 + 717.654x309 + +715.27x310 + 325.693x311 + 382.507x312 + 327.651x313 + 251.619x314 + 903.62x315 + 871.592x316 + 866.891x317 + 815.061x318 + 801.604x319 + +786.549x320 + 2243.46x321 + 2655.21x322 + 2500.86x323 + 2417.89x324 + 2396.49x325 + 2369.02x326 + 271.254x327 + 257.508x328 + 196.644x329 + +1001.5x330 + 1191.98x331 + 1129.72x332 + 1062.76x333 + 1053.88x334 + 1016.7x335 + 109.015x336 + 183.475x337 + 230.463x338 + 102.258x339 + +51.7399x340 + 57.1718x341 + 707.177x342 + 855.634x343 + 769.383x344 + 761.181x345 + 757.834x346 + 745.501x347 + 992.646x348 + 1156.36x349 + +1114.92x350 + 1082.73x351 + 1051.95x352 + 1035.74x353 + 388.057x354 + 514.838x355 + 463.843x356 + 444.802x357 + 340.728x358 + 302.208x359 + +229.721x360 + 226.555x361 + 200.905x362 + 180.961x363 + 74.1535x364 + 102.487x365 + 136.085x366 + 1353.26x367 + 1661.25x368 + 1605x369 + +1597.66x370 + 1585.63x371 + 1558.95x372 + 2750.54x373 + 2938.96x374 + 2924.36x375 + 2912.65x376 + 2838.15x377 + 2829.53x378 + 38.7741x379 + +81.2701x380 + 64.3393x381 + 122.447x382 + 138.851x383 + 101.633x384 + 2350.21x385 + 2502.6x386 + 2486.13x387 + 2449.67x388 + 2400.2x389 + +2394.98x390 + 347.158x391 + 438.399x392 + 428.285x393 + 340.22x394 + 313.202x395 + 118.838x396 + 89.4878x397 + 1378.3x398 + 1666.1x399 + +1501.17x400 + 1500.28x401 + 1489.53x402 + 1484.75x403 + 2077.39x404 + 2301.2x405 + 2298.32x406 + 2101.18x407 + 2080.03x408 + 2052.98x409 + +665.243x410 + 738.222x411 + 713.646x412 + 706.135x413 + 626.615x414 + 625.483x415 + 2149.07x416 + 2580.91x417 + 2548.03x418 + 2515.71x419 + +2502.41x420 + 2489.38x421 + 428.794x422 + 522.064x423 + 498.791x424 + 496.444x425 + 493.546x426 + 449.124x427 + 976.439x428 + 1308.27x429 + +1281.81x430 + 1253.98x431 + 1207.25x432 + 1183.41x433 + 1400.75x434 + 1573.89x435 + 1535.79x436 + 1517.42x437 + 1500.25x438 + 1471.9x439 + +596.92x440 + 586.08x441 + 542.223x442 + 537.222x443 + 527.955x444 + 511.856x445 + 387.603x446 + 497.516x447 + 447.822x448 + 419.298x449 + +382.846x450 + 377.231x451 + 69.3472x452 + 947.403x453 + 1064.69x454 + 1044.55x455 + 993.857x456 + 986.322x457 + 977.348x458 + 809.5x459 + +1066.75x460 + 932.895x461 + 929.293x462 + 925.021x463 + 903.552x464 + 1670.08x465 + 2080.79x466 + 2017.56x467 + 1980.46x468 + 1897.17x469 + +1892.41x470 + 63.6513x471 + 112.074x472 + 1000.61x473 + 1336.94x474 + 1313.55x475 + 1281.47x476 + 1194.24x477 + 1097.4x478 + 853.596x479 + +1021.18x480 + 993.268x481 + 945.893x482 + 919.156x483 + 918.848x484 + 69.0083x485 + 263.955x486 + 328.341x487 + 298.94x488 + 154.497x489 + +372.334x490 + 357.357x491 + 348.005x492 + 311.908x493 + 295.566x494 + 240.858x495 + 1846.04x496 + 2498.99x497 + 2406.54x498 + 2344.56x499 + +2323x500 + 2299.68x501 + +st + +x50 + x53 + x123 + x218 + x219 + x220 + x271 + x272 + x273 + x293 ++ x348 + x373 <= 1 + +x37 + x53 + x62 + x123 + x142 + x147 + x220 + x267 + x274 + x293 ++ x322 + x373 + x376 + x458 + x460 + x497 <= 1 + +x24 + x30 + x37 + x38 + x39 + x40 + x41 + x62 + x63 + x65 ++ x67 + x82 + x123 + x131 + x132 + x134 + x143 + x144 + x145 + x146 ++ x147 + x214 + x218 + x219 + x257 + x266 + x272 + x278 + x282 + x319 ++ x326 + x331 + x333 + x344 + x373 + x374 + x378 + x388 + x390 + x400 ++ x409 + x417 + x418 + x421 + x458 + x475 + x497 + x501 <= 1 + +x8 + x24 + x36 + x39 + x40 + x41 + x62 + x63 + x65 + x67 ++ x82 + x123 + x132 + x142 + x144 + x146 + x147 + x214 + x229 + x292 ++ x356 + x373 + x374 + x378 + x388 + x390 + x400 + x418 + x421 + x453 ++ x458 + x497 + x500 <= 1 + +x8 + x24 + x33 + x34 + x37 + x39 + x40 + x63 + x65 + x76 ++ x99 + x100 + x101 + x104 + x132 + x144 + x146 + x147 + x164 + x178 ++ x193 + x207 + x278 + x322 + x326 + x333 + x372 + x374 + x378 + x388 ++ x389 + x390 + x418 + x419 + x420 + x453 + x458 + x500 + x501 <= 1 + +x6 + x24 + x33 + x34 + x39 + x99 + x100 + x101 + x104 + x133 ++ x142 + x144 + x145 + x146 + x161 + x170 + x193 + x206 + x207 + x322 ++ x326 + x333 + x372 + x374 + x378 + x389 + x390 + x417 + x418 + x419 ++ x420 + x421 + x453 + x457 + x458 + x478 + x487 + x500 + x501 <= 1 + +x6 + x13 + x33 + x34 + x99 + x100 + x101 + x104 + x144 + x154 ++ x161 + x163 + x170 + x193 + x195 + x197 + x326 + x351 + x371 + x372 ++ x389 + x409 + x417 + x418 + x419 + x420 + x421 + x487 + x500 <= 1 + +x13 + x33 + x34 + x85 + x103 + x152 + x153 + x154 + x160 + x161 ++ x163 + x170 + x175 + x192 + x193 + x194 + x195 + x197 + x209 + x211 ++ x213 + x224 + x225 + x263 + x317 + x320 + x324 + x325 + x326 + x351 ++ x369 + x370 + x371 + x372 + x389 + x409 + x418 + x420 + x421 + x486 ++ x487 + x488 <= 1 + +x6 + x31 + x34 + x35 + x83 + x84 + x85 + x103 + x150 + x152 ++ x153 + x154 + x160 + x163 + x170 + x175 + x192 + x194 + x197 + x209 ++ x213 + x222 + x223 + x224 + x225 + x320 + x324 + x325 + x339 + x351 ++ x372 + x389 + x488 + x495 + x498 + x499 <= 1 + +x81 + x82 + x85 + x150 + x152 + x153 + x154 + x163 + x170 + x175 ++ x192 + x194 + x197 + x222 + x223 + x321 + x324 + x325 + x326 + x337 ++ x339 + x495 + x498 + x499 <= 1 + +x37 + x38 + x50 + x51 + x53 + x62 + x118 + x123 + x218 + x219 ++ x220 + x265 + x268 + x270 + x271 + x272 + x273 + x274 + x275 + x276 ++ x293 + x333 + x348 + x358 + x373 + x375 + x376 + x377 + x458 + x461 ++ x474 + x475 + x476 + x497 + x501 <= 1 + +x8 + x37 + x38 + x53 + x62 + x73 + x118 + x123 + x142 + x147 ++ x218 + x219 + x220 + x227 + x243 + x265 + x266 + x267 + x268 + x270 ++ x271 + x272 + x273 + x274 + x275 + x276 + x290 + x293 + x319 + x333 ++ x373 + x376 + x400 + x436 + x458 + x460 + x461 + x462 + x463 + x475 ++ x497 + x501 <= 1 + +x8 + x29 + x36 + x37 + x38 + x40 + x41 + x62 + x63 + x65 ++ x100 + x104 + x123 + x131 + x132 + x134 + x142 + x145 + x146 + x147 ++ x178 + x218 + x219 + x227 + x266 + x272 + x290 + x292 + x293 + x319 ++ x331 + x333 + x344 + x373 + x388 + x390 + x400 + x418 + x436 + x451 ++ x458 + x475 + x497 + x500 + x501 <= 1 + +x8 + x15 + x30 + x36 + x37 + x38 + x39 + x40 + x41 + x62 ++ x63 + x65 + x67 + x69 + x82 + x100 + x101 + x104 + x122 + x130 ++ x131 + x132 + x133 + x134 + x142 + x143 + x144 + x146 + x147 + x164 ++ x178 + x214 + x218 + x257 + x266 + x278 + x282 + x290 + x292 + x293 ++ x319 + x322 + x326 + x356 + x373 + x374 + x378 + x388 + x390 + x417 ++ x418 + x419 + x420 + x421 + x436 + x438 + x458 + x497 + x500 + x501 + <= 1 + +x8 + x16 + x30 + x33 + x37 + x38 + x39 + x40 + x63 + x65 ++ x69 + x101 + x104 + x130 + x133 + x142 + x144 + x145 + x146 + x147 ++ x164 + x178 + x205 + x207 + x218 + x282 + x292 + x322 + x326 + x329 ++ x330 + x333 + x356 + x374 + x378 + x388 + x390 + x417 + x418 + x419 ++ x420 + x421 + x438 + x453 + x470 + x471 + x500 + x501 <= 1 + +x6 + x16 + x30 + x31 + x33 + x34 + x55 + x99 + x100 + x101 ++ x104 + x133 + x142 + x144 + x145 + x146 + x147 + x161 + x162 + x164 ++ x179 + x193 + x205 + x206 + x208 + x218 + x264 + x282 + x321 + x322 ++ x323 + x326 + x327 + x329 + x333 + x351 + x374 + x389 + x390 + x416 ++ x417 + x418 + x419 + x420 + x421 + x438 + x457 + x470 + x497 + x500 + <= 1 + +x6 + x13 + x30 + x31 + x33 + x34 + x35 + x54 + x91 + x99 ++ x100 + x101 + x103 + x120 + x144 + x145 + x146 + x154 + x161 + x162 ++ x177 + x179 + x183 + x193 + x196 + x197 + x205 + x208 + x210 + x211 ++ x213 + x262 + x264 + x286 + x295 + x307 + x315 + x317 + x320 + x321 ++ x326 + x327 + x328 + x329 + x351 + x372 + x378 + x389 + x407 + x409 ++ x417 + x418 + x419 + x420 + x421 + x500 <= 1 + +x6 + x32 + x33 + x34 + x45 + x99 + x100 + x101 + x103 + x120 ++ x144 + x145 + x146 + x152 + x154 + x160 + x161 + x163 + x170 + x173 ++ x175 + x177 + x179 + x193 + x194 + x195 + x196 + x197 + x205 + x208 ++ x209 + x211 + x213 + x215 + x224 + x262 + x263 + x315 + x317 + x320 ++ x321 + x323 + x324 + x325 + x326 + x327 + x328 + x351 + x369 + x370 ++ x371 + x372 + x373 + x389 + x404 + x407 + x418 + x420 + x421 + x468 ++ x486 + x487 + x488 + x500 <= 1 + +x6 + x29 + x31 + x34 + x81 + x83 + x84 + x85 + x144 + x145 ++ x150 + x151 + x152 + x153 + x154 + x160 + x163 + x175 + x192 + x194 ++ x209 + x222 + x223 + x224 + x225 + x240 + x320 + x321 + x324 + x325 ++ x326 + x338 + x339 + x373 + x385 + x389 + x470 + x494 + x495 <= 1 + +x6 + x81 + x84 + x85 + x138 + x150 + x152 + x153 + x163 + x192 ++ x194 + x197 + x222 + x223 + x224 + x225 + x240 + x321 + x324 + x325 ++ x326 + x337 + x338 + x498 + x499 <= 1 + +x29 + x37 + x40 + x50 + x118 + x123 + x134 + x216 + x218 + x219 ++ x220 + x265 + x266 + x267 + x268 + x270 + x271 + x275 + x276 + x293 ++ x319 + x358 + x373 + x375 + x376 + x377 + x460 + x461 + x462 + x463 ++ x464 + x474 <= 1 + +x21 + x29 + x30 + x36 + x37 + x40 + x49 + x53 + x118 + x123 ++ x134 + x142 + x146 + x147 + x218 + x219 + x220 + x255 + x265 + x266 ++ x267 + x268 + x270 + x271 + x272 + x273 + x274 + x275 + x276 + x293 ++ x308 + x319 + x330 + x331 + x354 + x356 + x358 + x373 + x374 + x375 ++ x376 + x377 + x378 + x390 + x401 + x419 + x421 + x436 + x449 + x460 ++ x461 + x463 + x464 + x497 + x499 <= 1 + +x8 + x15 + x29 + x40 + x41 + x53 + x100 + x123 + x130 + x131 ++ x132 + x134 + x142 + x145 + x146 + x147 + x218 + x219 + x266 + x267 ++ x268 + x273 + x274 + x275 + x290 + x293 + x330 + x331 + x333 + x344 ++ x354 + x356 + x358 + x367 + x373 + x375 + x376 + x378 + x390 + x418 ++ x419 + x436 + x451 + x452 + x460 + x461 + x463 + x500 <= 1 + +x8 + x15 + x29 + x30 + x36 + x37 + x39 + x40 + x41 + x82 ++ x110 + x122 + x123 + x130 + x131 + x142 + x145 + x146 + x147 + x159 ++ x178 + x251 + x253 + x267 + x273 + x278 + x281 + x282 + x292 + x318 ++ x330 + x331 + x332 + x333 + x335 + x354 + x356 + x357 + x367 + x373 ++ x374 + x375 + x376 + x378 + x388 + x390 + x403 + x418 + x419 + x436 ++ x438 + x452 + x457 + x458 + x461 + x500 + x501 <= 1 + +x8 + x20 + x21 + x34 + x37 + x39 + x40 + x63 + x64 + x65 ++ x89 + x101 + x131 + x133 + x142 + x145 + x146 + x147 + x159 + x164 ++ x178 + x179 + x206 + x207 + x218 + x236 + x242 + x250 + x251 + x253 ++ x278 + x281 + x282 + x292 + x318 + x322 + x330 + x333 + x334 + x355 ++ x356 + x373 + x374 + x378 + x387 + x388 + x390 + x401 + x417 + x418 ++ x419 + x421 + x426 + x436 + x438 + x453 + x457 + x458 + x500 + x501 + <= 1 + +x6 + x9 + x14 + x16 + x17 + x19 + x20 + x22 + x30 + x31 ++ x32 + x33 + x34 + x35 + x63 + x64 + x65 + x73 + x77 + x99 ++ x101 + x104 + x120 + x142 + x144 + x145 + x146 + x160 + x161 + x162 ++ x163 + x172 + x175 + x179 + x193 + x196 + x206 + x215 + x241 + x282 ++ x292 + x323 + x333 + x373 + x374 + x375 + x378 + x386 + x387 + x388 ++ x389 + x390 + x416 + x417 + x418 + x419 + x420 + x421 + x438 + x457 ++ x458 + x497 + x500 <= 1 + +x6 + x8 + x18 + x31 + x33 + x34 + x45 + x54 + x63 + x73 ++ x77 + x91 + x99 + x100 + x103 + x120 + x144 + x145 + x146 + x160 ++ x161 + x162 + x163 + x171 + x172 + x174 + x175 + x177 + x195 + x196 ++ x210 + x211 + x213 + x215 + x232 + x241 + x307 + x310 + x315 + x317 ++ x320 + x321 + x323 + x324 + x325 + x326 + x351 + x371 + x372 + x373 ++ x374 + x378 + x388 + x402 + x404 + x407 + x409 + x416 + x417 + x418 ++ x419 + x420 + x421 <= 1 + +x5 + x6 + x31 + x32 + x33 + x34 + x45 + x91 + x99 + x103 ++ x115 + x120 + x144 + x145 + x146 + x160 + x161 + x162 + x163 + x171 ++ x173 + x174 + x175 + x179 + x192 + x195 + x196 + x208 + x210 + x211 ++ x215 + x219 + x230 + x232 + x247 + x305 + x310 + x317 + x320 + x321 ++ x323 + x324 + x325 + x326 + x369 + x370 + x371 + x372 + x373 + x374 ++ x378 + x389 + x404 + x407 + x409 + x417 + x418 + x419 + x420 + x421 ++ x465 + x468 + x476 + x490 + x491 + x492 + x493 + x494 <= 1 + +x6 + x29 + x31 + x32 + x34 + x35 + x66 + x81 + x83 + x84 ++ x120 + x144 + x145 + x146 + x150 + x151 + x152 + x153 + x154 + x192 ++ x195 + x196 + x210 + x211 + x215 + x240 + x245 + x247 + x317 + x320 ++ x321 + x323 + x324 + x325 + x326 + x369 + x370 + x372 + x373 + x374 ++ x377 + x378 + x385 + x387 + x388 + x389 + x404 + x407 + x408 + x409 ++ x465 + x468 + x472 + x490 + x491 + x492 + x493 + x494 + x495 <= 1 + +x8 + x81 + x84 + x150 + x152 + x153 + x192 + x194 + x222 + x225 ++ x321 + x324 + x325 + x326 + x337 + x338 + x419 + x451 + x498 + x499 + <= 1 + +x8 + x29 + x36 + x177 + x182 + x216 + x218 + x219 + x220 + x238 ++ x265 + x270 + x271 + x275 + x276 + x321 + x355 + x358 + x359 + x374 ++ x375 + x376 + x377 + x417 + x421 + x460 + x461 + x462 + x463 + x464 + <= 1 + +x8 + x12 + x15 + x21 + x29 + x30 + x36 + x41 + x48 + x49 ++ x60 + x107 + x108 + x109 + x142 + x159 + x193 + x216 + x217 + x218 ++ x219 + x220 + x235 + x255 + x268 + x269 + x319 + x321 + x331 + x354 ++ x355 + x357 + x358 + x359 + x373 + x374 + x375 + x376 + x377 + x378 ++ x401 + x402 + x403 + x417 + x419 + x421 + x449 + x459 + x460 + x461 ++ x462 + x463 + x497 + x499 <= 1 + +x8 + x12 + x13 + x15 + x21 + x29 + x36 + x38 + x48 + x70 ++ x73 + x105 + x107 + x108 + x109 + x110 + x122 + x123 + x142 + x145 ++ x159 + x160 + x162 + x176 + x178 + x181 + x216 + x220 + x235 + x238 ++ x241 + x242 + x250 + x255 + x256 + x257 + x258 + x260 + x261 + x269 ++ x330 + x331 + x332 + x333 + x334 + x335 + x354 + x355 + x357 + x358 ++ x359 + x364 + x365 + x373 + x375 + x376 + x377 + x378 + x388 + x401 ++ x402 + x403 + x407 + x417 + x418 + x420 + x421 + x436 + x437 + x438 ++ x449 + x459 + x460 + x461 + x462 + x463 + x496 + x497 + x499 <= 1 + +x8 + x12 + x15 + x21 + x29 + x31 + x33 + x36 + x40 + x69 ++ x71 + x73 + x89 + x109 + x110 + x119 + x122 + x123 + x125 + x133 ++ x142 + x145 + x147 + x159 + x160 + x162 + x163 + x178 + x179 + x181 ++ x199 + x218 + x238 + x242 + x250 + x251 + x253 + x254 + x255 + x261 ++ x267 + x269 + x278 + x281 + x292 + x313 + x318 + x322 + x323 + x330 ++ x331 + x332 + x333 + x334 + x335 + x355 + x357 + x373 + x374 + x375 ++ x376 + x377 + x378 + x388 + x390 + x398 + x401 + x402 + x403 + x416 ++ x417 + x418 + x419 + x420 + x421 + x426 + x436 + x437 + x438 + x460 ++ x461 + x462 + x463 + x497 + x499 + x500 <= 1 + +x8 + x9 + x14 + x17 + x18 + x19 + x20 + x21 + x31 + x32 ++ x33 + x34 + x71 + x72 + x73 + x89 + x125 + x142 + x143 + x147 ++ x159 + x160 + x161 + x162 + x163 + x164 + x177 + x199 + x232 + x250 ++ x251 + x253 + x254 + x258 + x278 + x307 + x308 + x313 + x315 + x316 ++ x318 + x322 + x323 + x324 + x330 + x331 + x332 + x333 + x334 + x373 ++ x375 + x377 + x378 + x386 + x387 + x388 + x389 + x390 + x398 + x401 ++ x402 + x403 + x416 + x417 + x418 + x419 + x420 + x421 + x434 + x457 ++ x460 + x497 + x499 <= 1 + +x6 + x8 + x9 + x13 + x14 + x16 + x17 + x18 + x19 + x20 ++ x25 + x30 + x31 + x32 + x33 + x34 + x35 + x64 + x65 + x72 ++ x73 + x104 + x118 + x120 + x121 + x128 + x159 + x160 + x161 + x162 ++ x163 + x164 + x171 + x172 + x174 + x177 + x178 + x179 + x232 + x239 ++ x240 + x241 + x251 + x253 + x278 + x282 + x305 + x307 + x308 + x310 ++ x315 + x316 + x318 + x323 + x324 + x326 + x347 + x351 + x373 + x375 ++ x377 + x378 + x385 + x386 + x387 + x388 + x389 + x390 + x401 + x402 ++ x403 + x404 + x407 + x409 + x416 + x417 + x418 + x419 + x420 + x421 ++ x438 + x454 + x457 + x458 + x467 + x468 + x497 + x498 + x499 + x500 + <= 1 + +x6 + x8 + x9 + x16 + x18 + x19 + x20 + x22 + x26 + x30 ++ x31 + x32 + x33 + x34 + x45 + x63 + x64 + x65 + x73 + x77 ++ x86 + x87 + x91 + x120 + x144 + x145 + x146 + x159 + x160 + x161 ++ x162 + x171 + x172 + x174 + x175 + x177 + x179 + x213 + x215 + x232 ++ x241 + x251 + x280 + x282 + x292 + x305 + x307 + x308 + x310 + x315 ++ x323 + x324 + x325 + x326 + x351 + x372 + x375 + x387 + x388 + x389 ++ x390 + x401 + x402 + x403 + x404 + x407 + x409 + x416 + x417 + x418 ++ x419 + x420 + x421 + x435 + x436 + x438 + x467 + x499 <= 1 + +x2 + x5 + x6 + x7 + x8 + x11 + x26 + x28 + x42 + x45 ++ x47 + x54 + x72 + x115 + x116 + x120 + x151 + x160 + x161 + x173 ++ x174 + x179 + x195 + x210 + x212 + x214 + x219 + x230 + x232 + x241 ++ x288 + x305 + x310 + x317 + x320 + x321 + x323 + x324 + x325 + x326 ++ x369 + x370 + x371 + x372 + x373 + x378 + x386 + x389 + x404 + x407 ++ x409 + x465 + x468 + x490 + x491 + x492 + x493 + x494 + x497 <= 1 + +x2 + x5 + x11 + x22 + x26 + x28 + x29 + x31 + x32 + x35 ++ x66 + x72 + x83 + x112 + x114 + x115 + x116 + x151 + x153 + x173 ++ x179 + x192 + x195 + x196 + x201 + x212 + x230 + x238 + x239 + x240 ++ x241 + x243 + x245 + x246 + x247 + x248 + x287 + x317 + x320 + x321 ++ x323 + x324 + x325 + x326 + x342 + x347 + x369 + x370 + x371 + x372 ++ x373 + x377 + x378 + x385 + x386 + x387 + x388 + x389 + x401 + x404 ++ x406 + x407 + x408 + x409 + x417 + x429 + x465 + x468 + x490 + x492 ++ x493 + x495 + x497 + x498 <= 1 + +x7 + x11 + x26 + x27 + x28 + x29 + x31 + x35 + x43 + x72 ++ x111 + x112 + x114 + x115 + x116 + x137 + x139 + x164 + x196 + x200 ++ x201 + x202 + x239 + x242 + x247 + x253 + x287 + x317 + x323 + x324 ++ x325 + x326 + x342 + x344 + x347 + x353 + x369 + x370 + x372 + x373 ++ x374 + x377 + x378 + x385 + x387 + x407 + x422 + x428 + x465 + x468 ++ x492 + x496 + x497 + x498 <= 1 + +x12 + x29 + x36 + x38 + x41 + x60 + x105 + x107 + x108 + x110 ++ x176 + x216 + x217 + x218 + x219 + x220 + x238 + x255 + x260 + x265 ++ x268 + x269 + x270 + x276 + x319 + x321 + x336 + x355 + x359 + x402 ++ x416 + x436 + x459 + x460 + x461 + x462 + x463 + x464 + x484 <= 1 + +x15 + x29 + x36 + x38 + x41 + x105 + x107 + x108 + x109 + x110 ++ x176 + x216 + x217 + x219 + x220 + x233 + x235 + x238 + x255 + x256 ++ x257 + x260 + x265 + x269 + x354 + x355 + x357 + x359 + x364 + x373 ++ x375 + x376 + x377 + x378 + x402 + x403 + x416 + x421 + x436 + x449 ++ x459 + x460 + x461 + x462 + x463 + x464 + x496 + x499 <= 1 + +x10 + x11 + x12 + x13 + x14 + x15 + x56 + x57 + x61 + x68 ++ x69 + x70 + x71 + x72 + x73 + x106 + x108 + x109 + x110 + x119 ++ x121 + x122 + x125 + x142 + x159 + x176 + x178 + x181 + x235 + x238 ++ x242 + x250 + x256 + x257 + x258 + x259 + x260 + x261 + x269 + x322 ++ x325 + x330 + x332 + x335 + x357 + x365 + x375 + x377 + x386 + x388 ++ x398 + x401 + x402 + x403 + x407 + x416 + x417 + x418 + x419 + x421 ++ x434 + x436 + x438 + x446 + x448 + x449 + x451 + x462 + x463 <= 1 + +x8 + x10 + x12 + x13 + x14 + x17 + x19 + x21 + x23 + x28 ++ x33 + x57 + x68 + x69 + x70 + x71 + x72 + x73 + x89 + x119 ++ x120 + x121 + x122 + x123 + x125 + x142 + x147 + x159 + x176 + x177 ++ x178 + x179 + x180 + x181 + x199 + x203 + x238 + x250 + x254 + x256 ++ x257 + x258 + x259 + x260 + x261 + x278 + x281 + x300 + x309 + x318 ++ x322 + x323 + x330 + x331 + x332 + x334 + x335 + x357 + x368 + x373 ++ x375 + x376 + x377 + x378 + x385 + x386 + x387 + x388 + x390 + x398 ++ x401 + x402 + x403 + x404 + x407 + x416 + x417 + x418 + x419 + x420 ++ x421 + x434 + x436 + x438 + x446 + x447 + x448 + x449 + x461 + x462 ++ x499 <= 1 + +x12 + x13 + x14 + x16 + x17 + x19 + x21 + x23 + x57 + x58 ++ x68 + x70 + x71 + x73 + x78 + x86 + x88 + x89 + x90 + x102 ++ x103 + x106 + x118 + x119 + x120 + x121 + x122 + x123 + x125 + x142 ++ x143 + x147 + x159 + x162 + x163 + x171 + x172 + x176 + x177 + x178 ++ x179 + x180 + x181 + x199 + x203 + x251 + x253 + x254 + x256 + x258 ++ x259 + x261 + x307 + x308 + x309 + x311 + x313 + x316 + x318 + x321 ++ x322 + x323 + x324 + x330 + x331 + x332 + x334 + x335 + x368 + x371 ++ x375 + x376 + x378 + x385 + x386 + x387 + x388 + x389 + x390 + x398 ++ x401 + x402 + x403 + x416 + x417 + x419 + x420 + x421 + x434 + x436 ++ x438 + x457 + x468 + x497 + x498 + x499 + x500 + x501 <= 1 + +x6 + x7 + x8 + x9 + x13 + x14 + x16 + x17 + x18 + x19 ++ x23 + x26 + x30 + x31 + x32 + x33 + x34 + x35 + x64 + x75 ++ x86 + x87 + x88 + x89 + x90 + x102 + x104 + x106 + x118 + x119 ++ x120 + x121 + x122 + x125 + x143 + x144 + x159 + x160 + x162 + x163 ++ x164 + x170 + x171 + x172 + x174 + x176 + x177 + x178 + x179 + x180 ++ x181 + x199 + x217 + x241 + x243 + x258 + x259 + x285 + x308 + x310 ++ x311 + x312 + x316 + x322 + x323 + x324 + x325 + x326 + x331 + x332 ++ x334 + x368 + x371 + x375 + x376 + x378 + x385 + x386 + x387 + x389 ++ x390 + x401 + x403 + x404 + x407 + x409 + x416 + x417 + x418 + x419 ++ x420 + x421 + x436 + x438 + x457 + x464 + x466 + x467 + x468 + x469 ++ x470 + x497 + x498 + x499 + x500 + x501 <= 1 + +x2 + x6 + x7 + x8 + x9 + x11 + x16 + x17 + x20 + x22 ++ x25 + x26 + x30 + x31 + x32 + x33 + x34 + x35 + x42 + x45 ++ x46 + x63 + x64 + x72 + x77 + x86 + x87 + x88 + x118 + x120 ++ x121 + x122 + x143 + x144 + x145 + x146 + x159 + x160 + x161 + x162 ++ x163 + x164 + x170 + x171 + x172 + x174 + x179 + x212 + x214 + x217 ++ x232 + x239 + x240 + x241 + x243 + x251 + x253 + x280 + x305 + x307 ++ x308 + x310 + x314 + x315 + x322 + x323 + x324 + x325 + x326 + x332 ++ x334 + x371 + x375 + x378 + x385 + x386 + x387 + x388 + x389 + x390 ++ x401 + x402 + x403 + x404 + x407 + x409 + x417 + x419 + x420 + x421 ++ x436 + x438 + x439 + x454 + x457 + x491 <= 1 + +x2 + x5 + x6 + x7 + x8 + x9 + x11 + x20 + x28 + x30 ++ x31 + x32 + x33 + x34 + x35 + x42 + x45 + x46 + x47 + x72 ++ x83 + x96 + x116 + x120 + x121 + x151 + x160 + x161 + x163 + x173 ++ x179 + x195 + x196 + x201 + x210 + x212 + x214 + x217 + x227 + x230 ++ x232 + x239 + x240 + x241 + x243 + x245 + x248 + x280 + x281 + x288 ++ x305 + x306 + x308 + x310 + x321 + x323 + x324 + x325 + x326 + x332 ++ x369 + x370 + x371 + x378 + x385 + x386 + x387 + x388 + x389 + x401 ++ x404 + x407 + x409 + x457 + x464 + x465 + x467 + x468 + x490 + x491 ++ x494 + x496 + x497 + x499 <= 1 + +x6 + x7 + x8 + x11 + x22 + x26 + x27 + x28 + x29 + x47 ++ x61 + x70 + x72 + x95 + x111 + x112 + x113 + x114 + x115 + x116 ++ x136 + x139 + x151 + x162 + x164 + x173 + x200 + x201 + x202 + x229 ++ x238 + x239 + x240 + x241 + x243 + x244 + x245 + x246 + x247 + x248 ++ x253 + x284 + x287 + x288 + x317 + x320 + x323 + x324 + x325 + x326 ++ x342 + x344 + x346 + x347 + x353 + x373 + x374 + x375 + x376 + x377 ++ x378 + x385 + x386 + x387 + x389 + x404 + x405 + x406 + x407 + x408 ++ x409 + x417 + x428 + x429 + x432 + x435 + x465 + x468 + x497 + x498 + <= 1 + +x26 + x28 + x29 + x35 + x43 + x72 + x77 + x111 + x114 + x116 ++ x137 + x139 + x151 + x164 + x239 + x240 + x241 + x242 + x243 + x245 ++ x247 + x248 + x287 + x317 + x323 + x324 + x325 + x326 + x342 + x344 ++ x346 + x347 + x369 + x370 + x371 + x373 + x374 + x375 + x376 + x378 ++ x385 + x386 + x387 + x389 + x399 + x422 + x428 + x435 + x465 + x468 ++ x496 + x498 <= 1 + +x23 + x25 + x29 + x30 + x38 + x41 + x60 + x92 + x93 + x94 ++ x105 + x107 + x108 + x110 + x126 + x127 + x176 + x216 + x235 + x238 ++ x269 + x270 + x301 + x315 + x319 + x321 + x322 + x359 + x416 + x459 ++ x462 + x463 + x468 + x483 + x484 + x488 + x501 <= 1 + +x23 + x29 + x41 + x105 + x107 + x108 + x109 + x110 + x176 + x216 ++ x217 + x220 + x221 + x233 + x235 + x252 + x260 + x319 + x321 + x334 ++ x354 + x359 + x416 + x459 + x460 + x462 + x463 + x483 + x484 + x501 + <= 1 + +x10 + x11 + x12 + x13 + x14 + x56 + x57 + x61 + x68 + x106 ++ x118 + x119 + x121 + x122 + x124 + x125 + x135 + x159 + x176 + x178 ++ x180 + x181 + x216 + x235 + x242 + x250 + x252 + x254 + x256 + x257 ++ x258 + x259 + x260 + x261 + x322 + x323 + x325 + x330 + x335 + x368 ++ x375 + x377 + x379 + x386 + x388 + x390 + x398 + x401 + x402 + x416 ++ x417 + x421 + x446 + x447 + x448 + x449 + x451 + x466 + x469 + x499 ++ x501 <= 1 + +x10 + x11 + x12 + x17 + x28 + x56 + x57 + x59 + x61 + x68 ++ x69 + x70 + x71 + x72 + x73 + x78 + x79 + x103 + x106 + x118 ++ x119 + x120 + x121 + x122 + x124 + x125 + x135 + x159 + x162 + x169 ++ x176 + x177 + x178 + x180 + x181 + x221 + x228 + x252 + x254 + x256 ++ x257 + x258 + x259 + x260 + x300 + x307 + x309 + x318 + x321 + x322 ++ x323 + x324 + x334 + x368 + x375 + x376 + x377 + x385 + x386 + x387 ++ x388 + x389 + x390 + x398 + x401 + x402 + x403 + x416 + x418 + x419 ++ x434 + x436 + x438 + x446 + x447 + x448 + x469 + x470 + x498 + x499 ++ x501 <= 1 + +x12 + x14 + x16 + x17 + x23 + x26 + x31 + x32 + x34 + x35 ++ x51 + x58 + x59 + x68 + x70 + x71 + x73 + x75 + x76 + x78 ++ x79 + x87 + x88 + x90 + x96 + x102 + x103 + x106 + x118 + x119 ++ x120 + x121 + x122 + x123 + x125 + x143 + x159 + x160 + x161 + x162 ++ x163 + x164 + x176 + x177 + x178 + x179 + x180 + x181 + x188 + x199 ++ x203 + x252 + x254 + x259 + x261 + x285 + x307 + x308 + x309 + x311 ++ x312 + x313 + x314 + x318 + x321 + x322 + x323 + x324 + x326 + x330 ++ x331 + x332 + x334 + x335 + x351 + x367 + x368 + x375 + x376 + x377 ++ x378 + x382 + x383 + x385 + x386 + x387 + x388 + x389 + x390 + x398 ++ x401 + x402 + x403 + x404 + x407 + x409 + x416 + x418 + x419 + x420 ++ x421 + x425 + x434 + x436 + x438 + x457 + x464 + x466 + x467 + x468 ++ x469 + x470 + x497 + x498 + x499 + x500 + x501 <= 1 + +x5 + x6 + x7 + x8 + x9 + x14 + x16 + x18 + x19 + x23 ++ x25 + x26 + x50 + x58 + x66 + x68 + x70 + x71 + x73 + x86 ++ x87 + x88 + x90 + x102 + x106 + x117 + x119 + x143 + x159 + x160 ++ x161 + x162 + x163 + x164 + x171 + x172 + x177 + x178 + x180 + x203 ++ x223 + x243 + x285 + x308 + x309 + x311 + x312 + x314 + x322 + x323 ++ x324 + x326 + x331 + x346 + x351 + x375 + x377 + x378 + x383 + x403 ++ x404 + x407 + x416 + x417 + x418 + x419 + x420 + x421 + x425 + x438 ++ x439 + x457 + x459 + x464 + x466 + x467 + x468 + x469 + x497 + x499 ++ x500 <= 1 + +x2 + x5 + x6 + x7 + x8 + x9 + x11 + x17 + x18 + x22 ++ x25 + x26 + x32 + x33 + x35 + x46 + x47 + x50 + x70 + x73 ++ x75 + x86 + x87 + x88 + x90 + x121 + x143 + x144 + x145 + x159 ++ x160 + x161 + x162 + x163 + x164 + x170 + x171 + x172 + x174 + x202 ++ x203 + x212 + x217 + x241 + x243 + x251 + x305 + x307 + x309 + x310 ++ x314 + x322 + x323 + x324 + x325 + x326 + x331 + x332 + x346 + x370 ++ x371 + x375 + x378 + x389 + x401 + x402 + x404 + x416 + x417 + x419 ++ x420 + x421 + x425 + x430 + x439 + x459 + x464 + x467 + x496 + x497 ++ x499 <= 1 + +x0 + x2 + x5 + x6 + x7 + x8 + x9 + x10 + x11 + x20 ++ x25 + x26 + x27 + x31 + x32 + x33 + x34 + x35 + x42 + x43 ++ x45 + x46 + x47 + x50 + x51 + x52 + x53 + x69 + x74 + x75 ++ x77 + x78 + x79 + x96 + x113 + x137 + x143 + x144 + x159 + x160 ++ x161 + x162 + x163 + x164 + x174 + x200 + x201 + x202 + x203 + x212 ++ x217 + x227 + x230 + x231 + x232 + x238 + x240 + x243 + x248 + x279 ++ x280 + x281 + x305 + x306 + x310 + x322 + x324 + x325 + x326 + x332 ++ x346 + x366 + x369 + x370 + x371 + x373 + x374 + x375 + x376 + x377 ++ x378 + x385 + x386 + x387 + x388 + x389 + x399 + x402 + x404 + x406 ++ x407 + x409 + x417 + x421 + x425 + x428 + x429 + x430 + x435 + x437 ++ x439 + x459 + x464 + x465 + x467 + x468 + x470 + x496 + x497 + x499 + <= 1 + +x2 + x5 + x6 + x7 + x8 + x11 + x18 + x22 + x25 + x26 ++ x27 + x29 + x33 + x42 + x43 + x44 + x46 + x47 + x51 + x52 ++ x54 + x70 + x72 + x74 + x75 + x76 + x77 + x79 + x91 + x95 ++ x96 + x111 + x112 + x113 + x114 + x115 + x136 + x137 + x139 + x151 ++ x161 + x162 + x163 + x173 + x200 + x201 + x202 + x217 + x229 + x232 ++ x238 + x239 + x240 + x241 + x242 + x243 + x244 + x245 + x246 + x247 ++ x248 + x249 + x279 + x280 + x281 + x284 + x287 + x288 + x305 + x306 ++ x317 + x320 + x322 + x324 + x325 + x326 + x332 + x342 + x344 + x345 ++ x346 + x347 + x353 + x369 + x371 + x373 + x374 + x375 + x376 + x377 ++ x378 + x385 + x386 + x387 + x389 + x399 + x400 + x402 + x404 + x405 ++ x406 + x407 + x408 + x409 + x417 + x421 + x428 + x429 + x430 + x431 ++ x432 + x435 + x437 + x439 + x459 + x465 + x470 + x497 <= 1 + +x11 + x27 + x35 + x42 + x43 + x44 + x47 + x74 + x77 + x91 ++ x95 + x96 + x111 + x112 + x137 + x140 + x173 + x200 + x229 + x238 ++ x239 + x240 + x241 + x242 + x243 + x277 + x280 + x281 + x295 + x342 ++ x344 + x345 + x346 + x353 + x369 + x370 + x371 + x373 + x385 + x386 ++ x387 + x389 + x399 + x400 + x402 + x409 + x430 + x431 + x434 + x435 ++ x437 + x439 + x465 + x468 + x473 + x482 + x496 + x497 + x498 <= 1 + +x25 + x29 + x30 + x41 + x60 + x92 + x93 + x94 + x105 + x107 ++ x108 + x118 + x124 + x126 + x127 + x176 + x181 + x197 + x216 + x220 ++ x221 + x235 + x252 + x301 + x304 + x315 + x319 + x321 + x322 + x335 ++ x344 + x390 + x394 + x396 + x397 + x398 + x399 + x406 + x416 + x459 ++ x468 + x473 + x479 + x483 + x484 + x501 <= 1 + +x27 + x30 + x56 + x59 + x60 + x69 + x93 + x94 + x98 + x105 ++ x109 + x124 + x125 + x126 + x127 + x128 + x130 + x135 + x159 + x176 ++ x181 + x198 + x203 + x216 + x221 + x226 + x233 + x250 + x252 + x254 ++ x261 + x299 + x300 + x301 + x304 + x315 + x319 + x321 + x344 + x390 ++ x396 + x398 + x399 + x403 + x416 + x451 + x459 + x462 + x469 + x473 ++ x476 + x483 + x484 <= 1 + +x27 + x28 + x30 + x56 + x59 + x60 + x61 + x69 + x71 + x93 ++ x94 + x98 + x105 + x106 + x109 + x118 + x121 + x122 + x124 + x125 ++ x127 + x130 + x135 + x159 + x166 + x176 + x178 + x180 + x181 + x184 ++ x203 + x216 + x228 + x250 + x252 + x254 + x256 + x259 + x279 + x299 ++ x300 + x304 + x316 + x321 + x322 + x323 + x325 + x330 + x334 + x335 ++ x344 + x368 + x375 + x376 + x377 + x385 + x386 + x387 + x388 + x390 ++ x398 + x399 + x401 + x403 + x416 + x417 + x434 + x438 + x446 + x447 ++ x448 + x451 + x466 + x469 + x473 + x498 + x499 + x500 + x501 <= 1 + +x9 + x11 + x12 + x17 + x28 + x30 + x56 + x57 + x58 + x59 ++ x61 + x68 + x69 + x70 + x71 + x72 + x73 + x76 + x78 + x79 ++ x102 + x118 + x119 + x121 + x122 + x125 + x135 + x165 + x166 + x169 ++ x176 + x177 + x178 + x180 + x181 + x184 + x188 + x203 + x216 + x228 ++ x244 + x279 + x286 + x299 + x300 + x309 + x316 + x321 + x322 + x323 ++ x325 + x334 + x335 + x368 + x375 + x376 + x377 + x384 + x385 + x387 ++ x390 + x398 + x401 + x402 + x403 + x405 + x416 + x424 + x425 + x434 ++ x436 + x438 + x447 + x448 + x466 + x467 + x469 + x470 + x473 + x496 ++ x498 + x499 + x500 + x501 <= 1 + +x9 + x10 + x11 + x14 + x16 + x23 + x26 + x28 + x30 + x32 ++ x35 + x51 + x52 + x54 + x58 + x59 + x68 + x71 + x72 + x75 ++ x76 + x78 + x79 + x90 + x96 + x102 + x103 + x118 + x119 + x121 ++ x122 + x159 + x160 + x161 + x162 + x164 + x165 + x166 + x167 + x169 ++ x176 + x177 + x178 + x179 + x180 + x181 + x188 + x199 + x203 + x217 ++ x244 + x249 + x284 + x285 + x286 + x300 + x309 + x318 + x330 + x332 ++ x334 + x340 + x351 + x367 + x375 + x376 + x377 + x382 + x384 + x385 ++ x387 + x388 + x390 + x398 + x403 + x404 + x405 + x408 + x416 + x418 ++ x421 + x424 + x425 + x428 + x447 + x464 + x466 + x467 + x468 + x469 ++ x470 + x496 + x498 + x499 + x500 + x501 <= 1 + +x0 + x1 + x2 + x3 + x4 + x9 + x11 + x24 + x25 + x26 ++ x28 + x32 + x35 + x50 + x51 + x52 + x53 + x54 + x68 + x71 ++ x75 + x76 + x78 + x79 + x96 + x119 + x121 + x156 + x160 + x161 ++ x162 + x164 + x165 + x167 + x168 + x169 + x176 + x180 + x188 + x189 ++ x191 + x217 + x244 + x246 + x247 + x248 + x249 + x277 + x279 + x280 ++ x281 + x284 + x285 + x286 + x306 + x309 + x340 + x341 + x371 + x374 ++ x375 + x376 + x377 + x385 + x388 + x398 + x404 + x406 + x408 + x422 ++ x424 + x425 + x428 + x429 + x430 + x431 + x433 + x435 + x437 + x439 ++ x447 + x465 + x466 + x467 + x468 + x469 + x470 + x477 + x496 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 + x10 + x24 + x25 + x26 ++ x27 + x31 + x32 + x35 + x50 + x51 + x52 + x53 + x68 + x71 ++ x74 + x75 + x78 + x79 + x96 + x156 + x157 + x158 + x160 + x161 ++ x162 + x163 + x164 + x188 + x190 + x191 + x217 + x227 + x229 + x230 ++ x231 + x232 + x244 + x246 + x248 + x249 + x278 + x279 + x280 + x281 ++ x294 + x298 + x324 + x340 + x341 + x345 + x367 + x371 + x373 + x374 ++ x375 + x376 + x377 + x378 + x385 + x386 + x387 + x388 + x389 + x408 ++ x409 + x417 + x422 + x424 + x427 + x431 + x432 + x433 + x434 + x435 ++ x437 + x439 + x454 + x455 + x456 + x465 + x466 + x467 + x473 + x474 ++ x477 + x496 + x498 + x499 <= 1 + +x0 + x1 + x2 + x3 + x5 + x6 + x7 + x9 + x10 + x11 ++ x24 + x25 + x26 + x27 + x31 + x32 + x35 + x43 + x44 + x45 ++ x46 + x47 + x50 + x51 + x52 + x53 + x74 + x75 + x77 + x78 ++ x79 + x92 + x95 + x96 + x113 + x143 + x157 + x158 + x161 + x162 ++ x163 + x164 + x200 + x201 + x202 + x217 + x227 + x228 + x229 + x230 ++ x231 + x232 + x240 + x242 + x243 + x244 + x246 + x247 + x248 + x249 ++ x279 + x280 + x281 + x294 + x296 + x298 + x305 + x306 + x322 + x324 ++ x325 + x326 + x343 + x345 + x346 + x347 + x353 + x367 + x371 + x373 ++ x374 + x375 + x376 + x377 + x378 + x385 + x386 + x387 + x388 + x389 ++ x390 + x400 + x404 + x405 + x406 + x407 + x408 + x409 + x417 + x428 ++ x429 + x430 + x431 + x432 + x433 + x434 + x435 + x437 + x439 + x441 ++ x450 + x453 + x455 + x456 + x465 + x466 + x467 + x470 + x496 + x497 ++ x498 + x499 <= 1 + +x0 + x7 + x11 + x22 + x42 + x43 + x44 + x46 + x51 + x52 ++ x54 + x55 + x74 + x75 + x76 + x77 + x78 + x79 + x92 + x95 ++ x96 + x111 + x112 + x113 + x114 + x136 + x139 + x140 + x141 + x155 ++ x161 + x163 + x173 + x200 + x201 + x202 + x204 + x229 + x231 + x232 ++ x238 + x239 + x240 + x241 + x242 + x243 + x244 + x245 + x246 + x247 ++ x248 + x249 + x255 + x279 + x280 + x281 + x296 + x297 + x306 + x312 ++ x324 + x325 + x326 + x342 + x343 + x345 + x346 + x347 + x362 + x369 ++ x373 + x374 + x375 + x376 + x377 + x385 + x386 + x387 + x388 + x389 ++ x390 + x399 + x400 + x404 + x405 + x406 + x407 + x408 + x409 + x417 ++ x427 + x428 + x429 + x430 + x431 + x432 + x433 + x434 + x435 + x437 ++ x439 + x441 + x450 + x453 + x455 + x456 + x465 + x466 + x467 + x470 ++ x477 + x496 + x497 <= 1 + +x0 + x11 + x42 + x43 + x44 + x46 + x47 + x55 + x65 + x74 ++ x95 + x140 + x141 + x155 + x163 + x204 + x231 + x238 + x239 + x240 ++ x242 + x243 + x255 + x277 + x280 + x281 + x306 + x325 + x342 + x367 ++ x369 + x370 + x371 + x373 + x374 + x376 + x377 + x385 + x386 + x387 ++ x390 + x400 + x404 + x406 + x408 + x409 + x417 + x428 + x429 + x430 ++ x431 + x432 + x433 + x434 + x435 + x437 + x439 + x450 + x465 + x467 ++ x472 + x496 <= 1 + +x24 + x25 + x27 + x28 + x29 + x30 + x54 + x92 + x93 + x94 ++ x97 + x107 + x124 + x126 + x127 + x128 + x129 + x159 + x197 + x216 ++ x220 + x226 + x235 + x252 + x301 + x303 + x304 + x321 + x335 + x352 ++ x394 + x395 + x397 + x398 + x399 + x406 + x410 + x414 + x415 + x416 ++ x420 + x459 + x470 + x473 + x476 + x479 + x483 + x484 + x496 + x498 ++ x499 + x501 <= 1 + +x7 + x25 + x27 + x28 + x29 + x30 + x54 + x124 + x126 + x128 ++ x129 + x143 + x159 + x184 + x186 + x187 + x198 + x203 + x216 + x220 ++ x221 + x226 + x249 + x299 + x301 + x302 + x303 + x304 + x315 + x316 ++ x321 + x335 + x349 + x350 + x352 + x373 + x394 + x398 + x399 + x401 ++ x405 + x406 + x408 + x410 + x411 + x412 + x415 + x416 + x420 + x467 ++ x469 + x470 + x476 + x479 + x483 + x484 + x496 + x498 + x499 + x501 + <= 1 + +x7 + x10 + x25 + x27 + x28 + x29 + x102 + x143 + x177 + x203 ++ x221 + x299 + x302 + x303 + x304 + x316 + x321 + x322 + x323 + x398 ++ x405 + x408 + x409 + x410 + x411 + x412 + x415 + x467 + x468 + x469 ++ x470 + x473 + x496 + x499 + x501 <= 1 + +x9 + x10 + x58 + x69 + x70 + x99 + x102 + x118 + x119 + x121 ++ x125 + x129 + x135 + x166 + x177 + x180 + x181 + x183 + x184 + x185 ++ x188 + x236 + x237 + x244 + x279 + x289 + x303 + x316 + x321 + x322 ++ x323 + x334 + x335 + x348 + x352 + x367 + x368 + x375 + x376 + x377 ++ x385 + x390 + x405 + x406 + x408 + x411 + x415 + x416 + x421 + x448 ++ x466 + x467 + x468 + x469 + x470 + x473 + x475 + x478 + x479 + x481 ++ x496 + x498 + x499 + x500 + x501 <= 1 + +x9 + x10 + x11 + x26 + x27 + x28 + x51 + x68 + x69 + x70 ++ x71 + x72 + x76 + x102 + x122 + x127 + x160 + x162 + x164 + x167 ++ x177 + x180 + x183 + x184 + x188 + x199 + x203 + x244 + x249 + x277 ++ x278 + x279 + x284 + x289 + x291 + x300 + x309 + x316 + x318 + x322 ++ x323 + x351 + x367 + x368 + x372 + x377 + x398 + x403 + x405 + x408 ++ x416 + x418 + x420 + x421 + x424 + x464 + x466 + x467 + x468 + x469 ++ x470 + x475 + x477 + x478 + x496 + x498 + x499 + x500 + x501 <= 1 + +x3 + x9 + x25 + x35 + x68 + x148 + x160 + x164 + x165 + x167 ++ x168 + x169 + x189 + x191 + x217 + x279 + x341 + x371 + x375 + x376 ++ x377 + x408 + x422 + x424 + x425 + x428 + x431 + x433 + x466 + x467 ++ x468 + x469 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 + x6 + x7 + x9 + x10 ++ x11 + x24 + x25 + x26 + x27 + x28 + x31 + x32 + x35 + x39 ++ x50 + x51 + x52 + x53 + x54 + x55 + x68 + x71 + x74 + x75 ++ x76 + x78 + x79 + x156 + x157 + x160 + x161 + x164 + x165 + x167 ++ x168 + x176 + x180 + x185 + x188 + x189 + x190 + x198 + x200 + x240 ++ x244 + x247 + x248 + x249 + x277 + x278 + x279 + x280 + x281 + x286 ++ x306 + x353 + x367 + x371 + x373 + x374 + x375 + x376 + x377 + x385 ++ x386 + x387 + x388 + x389 + x404 + x405 + x406 + x408 + x409 + x417 ++ x422 + x424 + x426 + x427 + x428 + x429 + x430 + x431 + x432 + x433 ++ x434 + x435 + x437 + x439 + x445 + x454 + x455 + x456 + x465 + x466 ++ x467 + x468 + x474 + x477 + x482 <= 1 + +x0 + x1 + x3 + x4 + x6 + x7 + x9 + x10 + x11 + x24 ++ x25 + x26 + x27 + x43 + x44 + x50 + x51 + x52 + x53 + x54 ++ x55 + x64 + x68 + x74 + x75 + x76 + x78 + x79 + x95 + x113 ++ x140 + x143 + x158 + x168 + x176 + x180 + x198 + x200 + x201 + x202 ++ x204 + x227 + x228 + x229 + x230 + x231 + x232 + x243 + x244 + x245 ++ x246 + x247 + x248 + x249 + x277 + x280 + x281 + x294 + x306 + x324 ++ x345 + x347 + x353 + x361 + x371 + x373 + x374 + x375 + x376 + x377 ++ x378 + x385 + x386 + x387 + x388 + x389 + x402 + x404 + x405 + x406 ++ x407 + x408 + x409 + x427 + x428 + x429 + x430 + x431 + x432 + x433 ++ x434 + x435 + x437 + x439 + x440 + x442 + x443 + x444 + x453 + x454 ++ x455 + x456 + x465 + x474 + x477 + x478 + x482 + x485 <= 1 + +x0 + x10 + x24 + x44 + x74 + x76 + x77 + x78 + x136 + x138 ++ x141 + x198 + x200 + x201 + x202 + x228 + x238 + x239 + x242 + x244 ++ x245 + x246 + x248 + x249 + x280 + x297 + x306 + x324 + x325 + x342 ++ x343 + x345 + x346 + x347 + x360 + x367 + x369 + x373 + x376 + x377 ++ x385 + x386 + x387 + x389 + x390 + x399 + x400 + x404 + x405 + x406 ++ x407 + x408 + x409 + x428 + x432 + x433 + x434 + x435 + x437 + x439 ++ x442 + x450 + x454 + x456 + x480 + x496 + x497 <= 1 + +x0 + x7 + x11 + x24 + x44 + x46 + x74 + x77 + x136 + x138 ++ x141 + x155 + x238 + x239 + x240 + x241 + x242 + x243 + x244 + x245 ++ x246 + x247 + x248 + x249 + x255 + x277 + x279 + x280 + x281 + x325 ++ x342 + x345 + x346 + x347 + x362 + x363 + x367 + x369 + x370 + x373 ++ x374 + x376 + x377 + x385 + x386 + x387 + x388 + x390 + x399 + x400 ++ x417 + x423 + x427 + x428 + x429 + x431 + x432 + x434 + x435 + x437 ++ x439 + x450 + x453 + x454 + x455 + x456 + x465 + x466 + x472 + x493 ++ x496 + x497 <= 1 + +x7 + x24 + x25 + x27 + x28 + x29 + x38 + x92 + x93 + x94 ++ x97 + x124 + x126 + x127 + x128 + x129 + x159 + x183 + x186 + x187 ++ x199 + x203 + x252 + x277 + x282 + x303 + x335 + x349 + x391 + x393 ++ x394 + x395 + x398 + x399 + x405 + x406 + x410 + x412 + x414 + x415 ++ x416 + x466 + x467 + x469 + x473 + x476 + x479 + x483 + x496 + x498 ++ x499 <= 1 + +x7 + x24 + x25 + x27 + x28 + x29 + x92 + x94 + x97 + x124 ++ x126 + x127 + x128 + x129 + x143 + x159 + x180 + x181 + x184 + x186 ++ x187 + x199 + x203 + x216 + x217 + x220 + x221 + x299 + x301 + x302 ++ x303 + x304 + x349 + x350 + x352 + x368 + x372 + x373 + x391 + x392 ++ x393 + x394 + x405 + x406 + x410 + x411 + x412 + x414 + x415 + x416 ++ x420 + x466 + x467 + x469 + x470 + x476 + x479 + x483 + x484 + x496 ++ x498 + x501 <= 1 + +x7 + x10 + x11 + x24 + x25 + x27 + x28 + x29 + x36 + x69 ++ x80 + x93 + x94 + x97 + x119 + x124 + x126 + x128 + x129 + x143 ++ x177 + x180 + x181 + x183 + x184 + x186 + x187 + x203 + x221 + x301 ++ x302 + x315 + x318 + x321 + x322 + x323 + x348 + x349 + x350 + x352 ++ x368 + x372 + x374 + x391 + x392 + x393 + x405 + x406 + x411 + x412 ++ x413 + x414 + x416 + x420 + x466 + x469 + x470 + x474 + x475 + x476 ++ x477 + x479 + x480 + x481 + x483 + x484 + x496 + x498 + x500 + x501 + <= 1 + +x7 + x9 + x10 + x24 + x25 + x27 + x28 + x29 + x66 + x69 ++ x70 + x102 + x128 + x129 + x143 + x164 + x166 + x177 + x180 + x181 ++ x183 + x184 + x185 + x186 + x187 + x198 + x199 + x221 + x229 + x237 ++ x282 + x321 + x322 + x323 + x348 + x349 + x350 + x352 + x367 + x368 ++ x372 + x386 + x392 + x405 + x406 + x408 + x410 + x411 + x412 + x413 ++ x414 + x415 + x416 + x420 + x466 + x467 + x468 + x469 + x470 + x473 ++ x475 + x477 + x478 + x479 + x480 + x481 + x482 + x483 + x484 + x496 ++ x497 + x498 + x499 + x500 + x501 <= 1 + +x9 + x10 + x15 + x27 + x28 + x67 + x69 + x70 + x71 + x76 ++ x127 + x128 + x129 + x162 + x164 + x180 + x183 + x198 + x199 + x221 ++ x230 + x234 + x244 + x277 + x278 + x279 + x282 + x289 + x291 + x348 ++ x351 + x352 + x367 + x368 + x372 + x376 + x386 + x403 + x405 + x406 ++ x408 + x416 + x418 + x420 + x421 + x424 + x426 + x430 + x433 + x444 ++ x445 + x466 + x467 + x468 + x469 + x473 + x475 + x477 + x478 + x479 ++ x480 + x481 + x482 + x496 + x498 + x499 + x500 + x501 <= 1 + +x7 + x9 + x10 + x11 + x15 + x24 + x25 + x26 + x27 + x28 ++ x52 + x55 + x62 + x66 + x67 + x70 + x74 + x75 + x76 + x79 ++ x128 + x129 + x147 + x183 + x185 + x198 + x221 + x227 + x228 + x230 ++ x231 + x234 + x277 + x278 + x279 + x282 + x289 + x290 + x291 + x294 ++ x295 + x343 + x348 + x349 + x350 + x352 + x353 + x367 + x368 + x369 ++ x370 + x372 + x374 + x375 + x376 + x381 + x385 + x386 + x387 + x388 ++ x399 + x400 + x405 + x406 + x408 + x413 + x418 + x419 + x426 + x427 ++ x429 + x430 + x431 + x432 + x433 + x440 + x441 + x443 + x444 + x445 ++ x466 + x469 + x473 + x474 + x476 + x477 + x478 + x480 + x481 + x482 ++ x498 + x500 + x501 <= 1 + +x6 + x7 + x9 + x10 + x11 + x15 + x24 + x25 + x26 + x27 ++ x28 + x32 + x35 + x39 + x50 + x51 + x52 + x53 + x54 + x55 ++ x62 + x64 + x67 + x68 + x74 + x75 + x76 + x79 + x95 + x164 ++ x185 + x186 + x188 + x190 + x198 + x200 + x227 + x228 + x229 + x230 ++ x231 + x233 + x234 + x239 + x245 + x246 + x247 + x277 + x278 + x279 ++ x280 + x281 + x290 + x291 + x294 + x295 + x348 + x349 + x350 + x353 ++ x367 + x374 + x375 + x376 + x377 + x385 + x386 + x387 + x388 + x399 ++ x400 + x404 + x405 + x406 + x413 + x418 + x419 + x422 + x423 + x426 ++ x427 + x428 + x429 + x430 + x431 + x432 + x433 + x440 + x441 + x442 ++ x443 + x444 + x445 + x454 + x465 + x467 + x474 + x476 + x477 + x478 ++ x480 + x481 + x482 + x498 <= 1 + +x1 + x3 + x4 + x6 + x7 + x9 + x10 + x11 + x24 + x25 ++ x26 + x27 + x28 + x32 + x39 + x50 + x51 + x52 + x53 + x54 ++ x55 + x64 + x67 + x74 + x75 + x76 + x77 + x78 + x79 + x95 ++ x138 + x140 + x168 + x198 + x200 + x201 + x202 + x204 + x227 + x228 ++ x229 + x230 + x231 + x233 + x234 + x239 + x242 + x245 + x246 + x247 ++ x290 + x294 + x295 + x316 + x343 + x345 + x350 + x353 + x361 + x374 ++ x375 + x376 + x377 + x385 + x386 + x387 + x388 + x390 + x398 + x399 ++ x400 + x404 + x405 + x406 + x407 + x408 + x409 + x418 + x419 + x422 ++ x423 + x426 + x427 + x428 + x429 + x430 + x431 + x432 + x433 + x434 ++ x435 + x437 + x439 + x440 + x441 + x442 + x443 + x444 + x445 + x453 ++ x454 + x455 + x456 + x465 + x474 + x476 + x477 + x478 + x480 + x482 ++ x496 + x498 <= 1 + +x1 + x3 + x4 + x7 + x10 + x11 + x24 + x26 + x39 + x51 ++ x54 + x55 + x74 + x75 + x76 + x77 + x78 + x79 + x138 + x149 ++ x155 + x179 + x194 + x198 + x200 + x201 + x202 + x227 + x228 + x231 ++ x234 + x239 + x242 + x245 + x246 + x248 + x249 + x277 + x279 + x280 ++ x281 + x291 + x316 + x324 + x325 + x328 + x342 + x343 + x345 + x360 ++ x361 + x370 + x374 + x375 + x376 + x377 + x378 + x385 + x386 + x387 ++ x389 + x390 + x398 + x399 + x400 + x404 + x405 + x406 + x407 + x408 ++ x409 + x418 + x419 + x428 + x429 + x430 + x431 + x432 + x433 + x434 ++ x435 + x437 + x439 + x440 + x442 + x453 + x454 + x455 + x456 + x465 ++ x480 + x489 + x496 <= 1 + +x0 + x1 + x4 + x10 + x24 + x26 + x44 + x74 + x77 + x78 ++ x141 + x155 + x194 + x198 + x201 + x202 + x231 + x234 + x239 + x242 ++ x244 + x246 + x248 + x249 + x277 + x280 + x281 + x360 + x362 + x363 ++ x367 + x370 + x374 + x377 + x385 + x386 + x387 + x389 + x390 + x399 ++ x400 + x404 + x405 + x406 + x407 + x408 + x409 + x417 + x418 + x419 ++ x423 + x432 + x437 + x439 + x442 + x446 + x450 + x454 + x455 + x456 ++ x465 + x472 + x486 + x489 <= 1 + +x24 + x25 + x27 + x28 + x29 + x38 + x92 + x93 + x97 + x124 ++ x126 + x127 + x128 + x129 + x186 + x187 + x274 + x282 + x391 + x395 ++ x414 + x415 + x416 + x469 + x483 + x496 + x498 <= 1 + +x7 + x24 + x25 + x27 + x28 + x29 + x55 + x66 + x92 + x93 ++ x94 + x97 + x124 + x126 + x127 + x128 + x129 + x143 + x181 + x186 ++ x187 + x199 + x219 + x221 + x277 + x282 + x299 + x302 + x303 + x321 ++ x349 + x350 + x352 + x374 + x391 + x393 + x395 + x399 + x410 + x412 ++ x414 + x416 + x420 + x466 + x469 + x470 + x479 + x483 + x484 + x496 ++ x500 <= 1 + +x7 + x24 + x25 + x27 + x28 + x29 + x55 + x66 + x92 + x93 ++ x94 + x97 + x124 + x126 + x127 + x129 + x143 + x181 + x183 + x186 ++ x187 + x199 + x219 + x221 + x277 + x278 + x282 + x302 + x321 + x322 ++ x348 + x349 + x350 + x352 + x368 + x369 + x372 + x374 + x392 + x393 ++ x395 + x405 + x406 + x408 + x410 + x411 + x412 + x413 + x414 + x416 ++ x420 + x466 + x469 + x470 + x474 + x475 + x476 + x478 + x479 + x481 ++ x483 + x496 + x498 + x500 + x501 <= 1 + +x7 + x10 + x13 + x24 + x25 + x27 + x55 + x66 + x69 + x97 ++ x119 + x126 + x127 + x128 + x129 + x143 + x180 + x184 + x185 + x187 ++ x199 + x221 + x232 + x277 + x278 + x282 + x302 + x321 + x322 + x323 ++ x348 + x349 + x350 + x352 + x367 + x368 + x369 + x374 + x376 + x392 ++ x405 + x406 + x408 + x410 + x411 + x412 + x413 + x414 + x415 + x416 ++ x420 + x465 + x466 + x469 + x470 + x473 + x474 + x475 + x476 + x478 ++ x480 + x481 + x482 + x484 + x497 + x498 + x500 + x501 <= 1 + +x7 + x9 + x10 + x24 + x25 + x26 + x27 + x28 + x55 + x66 ++ x67 + x97 + x119 + x126 + x185 + x199 + x221 + x227 + x228 + x277 ++ x278 + x279 + x282 + x322 + x343 + x348 + x349 + x350 + x352 + x353 ++ x368 + x369 + x370 + x374 + x376 + x386 + x400 + x405 + x408 + x411 ++ x413 + x420 + x465 + x466 + x469 + x470 + x474 + x475 + x476 + x478 ++ x479 + x480 + x481 + x482 + x484 + x497 + x498 + x500 + x501 <= 1 + +x9 + x10 + x24 + x25 + x26 + x27 + x28 + x50 + x55 + x62 ++ x66 + x67 + x79 + x97 + x147 + x185 + x221 + x227 + x228 + x229 ++ x230 + x231 + x233 + x234 + x277 + x278 + x279 + x282 + x288 + x343 ++ x348 + x349 + x350 + x352 + x353 + x367 + x368 + x369 + x370 + x372 ++ x374 + x376 + x380 + x381 + x385 + x386 + x400 + x405 + x406 + x408 ++ x413 + x418 + x419 + x420 + x429 + x433 + x443 + x444 + x445 + x455 ++ x465 + x466 + x469 + x470 + x473 + x474 + x475 + x477 + x478 + x479 ++ x480 + x481 + x482 + x500 + x501 <= 1 + +x1 + x3 + x4 + x6 + x8 + x9 + x10 + x11 + x24 + x25 ++ x26 + x27 + x28 + x50 + x52 + x53 + x54 + x55 + x62 + x64 ++ x66 + x67 + x147 + x185 + x198 + x202 + x228 + x229 + x231 + x233 ++ x234 + x245 + x277 + x278 + x279 + x280 + x282 + x289 + x290 + x291 ++ x294 + x295 + x343 + x348 + x349 + x350 + x352 + x353 + x367 + x368 ++ x369 + x370 + x372 + x374 + x375 + x376 + x377 + x378 + x380 + x385 ++ x386 + x387 + x399 + x400 + x405 + x406 + x408 + x413 + x419 + x420 ++ x423 + x426 + x429 + x430 + x431 + x432 + x433 + x440 + x441 + x443 ++ x445 + x455 + x465 + x467 + x470 + x473 + x474 + x475 + x476 + x477 ++ x478 + x481 + x482 <= 1 + +x1 + x3 + x4 + x9 + x10 + x24 + x26 + x27 + x32 + x52 ++ x64 + x67 + x74 + x75 + x76 + x77 + x78 + x95 + x155 + x198 ++ x200 + x201 + x202 + x227 + x228 + x229 + x230 + x231 + x233 + x234 ++ x245 + x246 + x247 + x249 + x277 + x278 + x279 + x280 + x281 + x282 ++ x283 + x290 + x291 + x294 + x295 + x323 + x343 + x345 + x348 + x349 ++ x350 + x353 + x361 + x367 + x368 + x369 + x370 + x378 + x398 + x399 ++ x400 + x404 + x405 + x406 + x407 + x408 + x409 + x419 + x420 + x423 ++ x429 + x430 + x431 + x432 + x433 + x434 + x435 + x437 + x439 + x440 ++ x441 + x442 + x443 + x444 + x445 + x453 + x454 + x455 + x456 + x474 ++ x475 + x476 + x477 + x478 + x480 + x481 + x482 + x496 <= 1 + +x1 + x3 + x4 + x9 + x10 + x24 + x26 + x52 + x150 + x155 ++ x179 + x198 + x200 + x201 + x202 + x227 + x228 + x229 + x230 + x231 ++ x233 + x245 + x246 + x249 + x277 + x278 + x279 + x280 + x281 + x282 ++ x291 + x294 + x295 + x325 + x343 + x363 + x367 + x368 + x370 + x374 ++ x377 + x378 + x385 + x389 + x399 + x400 + x405 + x407 + x419 + x423 ++ x430 + x431 + x432 + x433 + x435 + x437 + x440 + x441 + x442 + x443 ++ x444 + x453 + x454 + x455 + x456 + x474 + x475 + x477 + x478 + x480 ++ x481 + x489 + x496 <= 1 + +x4 + x10 + x24 + x26 + x42 + x77 + x150 + x155 + x198 + x200 ++ x201 + x202 + x277 + x280 + x281 + x291 + x295 + x325 + x360 + x362 ++ x363 + x367 + x368 + x370 + x374 + x377 + x378 + x387 + x400 + x405 ++ x406 + x407 + x408 + x423 + x435 + x437 + x439 + x446 + x450 + x456 ++ x486 + x489 + x496 + x500 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 + x22 + x23 <= 1 + +x24 + x25 + x26 + x27 + x28 + x29 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 <= 1 + +x36 + x37 + x38 + x39 + x40 + x41 <= 1 + +x42 + x43 + x44 + x45 + x46 + x47 <= 1 + +x48 + x49 <= 1 + +x50 + x51 + x52 + x53 + x54 + x55 <= 1 + +x56 + x57 + x58 + x59 + x60 + x61 <= 1 + +x62 + x63 + x64 + x65 + x66 + x67 <= 1 + +x68 + x69 + x70 + x71 + x72 + x73 <= 1 + +x74 + x75 + x76 + x77 + x78 + x79 <= 1 + +x81 + x82 + x83 + x84 + x85 <= 1 + +x86 + x87 + x88 + x89 + x90 + x91 <= 1 + +x92 + x93 + x94 + x95 + x96 + x97 <= 1 + +x99 + x100 + x101 + x102 + x103 + x104 <= 1 + +x105 + x106 + x107 + x108 + x109 + x110 <= 1 + +x111 + x112 + x113 + x114 + x115 + x116 <= 1 + +x118 + x119 + x120 + x121 + x122 + x123 <= 1 + +x124 + x125 + x126 + x127 + x128 + x129 <= 1 + +x130 + x131 + x132 + x133 + x134 + x135 <= 1 + +x136 + x137 + x138 + x139 + x140 + x141 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x150 + x151 + x152 + x153 + x154 + x155 <= 1 + +x156 + x157 + x158 <= 1 + +x159 + x160 + x161 + x162 + x163 + x164 <= 1 + +x165 + x166 + x167 + x168 + x169 <= 1 + +x170 + x171 + x172 + x173 + x174 + x175 <= 1 + +x176 + x177 + x178 + x179 + x180 + x181 <= 1 + +x183 + x184 + x185 + x186 + x187 + x188 <= 1 + +x189 + x190 + x191 <= 1 + +x192 + x193 + x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 + x221 <= 1 + +x222 + x223 + x224 + x225 <= 1 + + <= 1 + +x227 + x228 + x229 + x230 + x231 + x232 <= 1 + +x233 + x234 + x235 <= 1 + +x236 + x237 <= 1 + +x238 + x239 + x240 + x241 + x242 + x243 <= 1 + +x244 + x245 + x246 + x247 + x248 + x249 <= 1 + +x250 + x251 + x252 + x253 + x254 + x255 <= 1 + +x256 + x257 + x258 + x259 + x260 + x261 <= 1 + +x262 + x263 + x264 <= 1 + +x265 + x266 + x267 + x268 + x269 + x270 <= 1 + +x271 + x272 + x273 + x274 + x275 + x276 <= 1 + +x277 + x278 + x279 + x280 + x281 + x282 <= 1 + +x284 + x285 + x286 + x287 + x288 + x289 <= 1 + +x290 + x291 + x292 + x293 + x294 + x295 <= 1 + +x296 + x297 + x298 <= 1 + +x299 + x300 + x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 + x310 <= 1 + +x311 + x312 + x313 + x314 <= 1 + +x315 + x316 + x317 + x318 + x319 + x320 <= 1 + +x321 + x322 + x323 + x324 + x325 + x326 <= 1 + +x327 + x328 + x329 <= 1 + +x330 + x331 + x332 + x333 + x334 + x335 <= 1 + +x337 + x338 + x339 <= 1 + +x340 + x341 <= 1 + +x342 + x343 + x344 + x345 + x346 + x347 <= 1 + +x348 + x349 + x350 + x351 + x352 + x353 <= 1 + +x354 + x355 + x356 + x357 + x358 + x359 <= 1 + +x360 + x361 + x362 + x363 <= 1 + +x364 + x365 <= 1 + +x367 + x368 + x369 + x370 + x371 + x372 <= 1 + +x373 + x374 + x375 + x376 + x377 + x378 <= 1 + +x380 + x381 <= 1 + +x382 + x383 + x384 <= 1 + +x385 + x386 + x387 + x388 + x389 + x390 <= 1 + +x391 + x392 + x393 + x394 + x395 <= 1 + +x396 + x397 <= 1 + +x398 + x399 + x400 + x401 + x402 + x403 <= 1 + +x404 + x405 + x406 + x407 + x408 + x409 <= 1 + +x410 + x411 + x412 + x413 + x414 + x415 <= 1 + +x416 + x417 + x418 + x419 + x420 + x421 <= 1 + +x422 + x423 + x424 + x425 + x426 + x427 <= 1 + +x428 + x429 + x430 + x431 + x432 + x433 <= 1 + +x434 + x435 + x436 + x437 + x438 + x439 <= 1 + +x440 + x441 + x442 + x443 + x444 + x445 <= 1 + +x446 + x447 + x448 + x449 + x450 + x451 <= 1 + +x453 + x454 + x455 + x456 + x457 + x458 <= 1 + +x459 + x460 + x461 + x462 + x463 + x464 <= 1 + +x465 + x466 + x467 + x468 + x469 + x470 <= 1 + +x473 + x474 + x475 + x476 + x477 + x478 <= 1 + +x479 + x480 + x481 + x482 + x483 + x484 <= 1 + +x486 + x487 + x488 + x489 <= 1 + +x490 + x491 + x492 + x493 + x494 + x495 <= 1 + +x496 + x497 + x498 + x499 + x500 + x501 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0014.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0014.lp new file mode 100644 index 000000000..48ab003b5 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0014.lp @@ -0,0 +1,1075 @@ +max + +731.062x0 + 1095.73x1 + 1095.56x2 + 1008.96x3 + 868.115x4 + 826.533x5 + 350.337x6 + 518.933x7 + 490.88x8 + 485.707x9 + +464.248x10 + 451.668x11 + 256.348x12 + 308.079x13 + 306.442x14 + 305.929x15 + 295.383x16 + 249.464x17 + 526.923x18 + 638.166x19 + +570.616x20 + 535.704x21 + 508.521x22 + 490.799x23 + 582.27x24 + 566.159x25 + 529.236x26 + 527.143x27 + 485.367x28 + 469.262x29 + +497.995x30 + 674.695x31 + 660.583x32 + 653.254x33 + 644.856x34 + 633.509x35 + 582.258x36 + 718.335x37 + 620.466x38 + 593.242x39 + +566.118x40 + 564.744x41 + 133.013x42 + 109.339x43 + 2308.36x44 + 2666.37x45 + 2611.59x46 + 2573.07x47 + 2502.96x48 + 2466.69x49 + +618.474x50 + 847.517x51 + 746.469x52 + 745.445x53 + 744.125x54 + 637.923x55 + 44.4866x56 + 1097.3x57 + 1383.97x58 + 1273.82x59 + +1262.5x60 + 1258.55x61 + 1209.97x62 + 585.249x63 + 808.804x64 + 798.095x65 + 781.761x66 + 752.513x67 + 707.344x68 + 446.605x69 + +613.7x70 + 569.722x71 + 559.664x72 + 552.028x73 + 529.735x74 + 407.726x75 + 583.99x76 + 552.965x77 + 460.281x78 + 456.211x79 + +421.753x80 + 126.514x81 + 174.745x82 + 133.286x83 + 43.3261x84 + 421.459x85 + 575.922x86 + 564.911x87 + 531.64x88 + 531.312x89 + +504.581x90 + 118.223x91 + 228.308x92 + 235.632x93 + 200.786x94 + 162.814x95 + 131.556x96 + 346.868x97 + 426.574x98 + 387.105x99 + +344.006x100 + 313.296x101 + 303.547x102 + 153.116x103 + 168.183x104 + 147.352x105 + 81.9921x106 + 62.5957x107 + 42.3168x108 + 255.534x109 + +314.267x110 + 277.563x111 + 235.3x112 + 78.8314x113 + 18.5706x114 + 732.738x115 + 992.381x116 + 894.302x117 + 880.621x118 + 873.062x119 + +832.888x120 + 331.537x121 + 386.93x122 + 377.739x123 + 351.226x124 + 319.23x125 + 273.85x126 + 1185.56x127 + 1704.59x128 + 1675.03x129 + +1592.25x130 + 1572.55x131 + 1519.58x132 + 843.091x133 + 1244.31x134 + 1198.44x135 + 1194.35x136 + 1176.53x137 + 1170.66x138 + 289.696x139 + +339.761x140 + 308.366x141 + 274.722x142 + 250.425x143 + 250.267x144 + 322.858x145 + 249.935x146 + 241.533x147 + 238.778x148 + 231.346x149 + +1068.02x150 + 1121.4x151 + 1116.4x152 + 1095.39x153 + 1024.9x154 + 1005.62x155 + 1070.61x156 + 1579.32x157 + 1544.42x158 + 1490.66x159 + +1442.48x160 + 1262.61x161 + 377.916x162 + 430.859x163 + 383.571x164 + 342.048x165 + 318.766x166 + 222.028x167 + 146.953x168 + 89.376x169 + +589.273x170 + 871.364x171 + 836.103x172 + 808.78x173 + 808.211x174 + 755.225x175 + 832.934x176 + 1104.77x177 + 960.268x178 + 953.98x179 + +940.533x180 + 922.419x181 + 803.91x182 + 984.102x183 + 873.471x184 + 863.235x185 + 862.743x186 + 857.235x187 + 3066.64x188 + 3417.82x189 + +3398.28x190 + 3382.71x191 + 3306.89x192 + 3294.33x193 + 202.233x194 + 287.406x195 + 242.382x196 + 231.907x197 + 1887.82x198 + 2014.91x199 + +1985.76x200 + 1969.29x201 + 1959.27x202 + 1936.36x203 + 1794.52x204 + 2158.41x205 + 2106x206 + 2093.33x207 + 2087.69x208 + 1988.67x209 + +215.484x210 + 271.487x211 + 253.705x212 + 210.008x213 + 166.77x214 + 76.3515x215 + 58.365x216 + 97.8783x217 + 488.665x218 + 670.439x219 + +629.055x220 + 596.837x221 + 563.923x222 + 485.906x223 + 1130.31x224 + 1195.06x225 + 1152.47x226 + 1117x227 + 1111.1x228 + 1102.86x229 + +240.293x230 + 332.422x231 + 222.15x232 + 216.572x233 + 167.409x234 + 715.898x235 + 959.176x236 + 933.546x237 + 890.981x238 + 857.035x239 + +817.229x240 + 579.36x241 + 754.375x242 + 723.395x243 + 645.313x244 + 634.848x245 + 632.374x246 + 142.019x247 + 184.692x248 + 110.946x249 + +391.587x250 + 517.721x251 + 449.686x252 + 398.145x253 + 396.18x254 + 388.44x255 + 118.685x256 + 136.989x257 + 1442.66x258 + 1719.28x259 + +1652.49x260 + 1611.31x261 + 1575.99x262 + 1571.28x263 + 2047.75x264 + 2762.8x265 + 2656.38x266 + 2615.86x267 + 2607.12x268 + 2600.73x269 + +395.763x270 + 503.393x271 + 405.318x272 + 253.355x273 + 219.305x274 + 191.625x275 + 135.51x276 + 594.349x277 + 731.099x278 + 686.343x279 + +677.091x280 + 630.31x281 + 521.095x282 + 77.1424x283 + 105.755x284 + 23.0075x285 + 741.644x286 + 962.042x287 + 945.464x288 + 877.261x289 + +843.852x290 + 817.661x291 + 2818.69x292 + 3398.97x293 + 3375.41x294 + 3276.06x295 + 3243.04x296 + 3239.39x297 + 1373.43x298 + 2049.69x299 + +1959.53x300 + 1783.99x301 + 1779.95x302 + 1759.6x303 + 286.465x304 + 369.846x305 + 231.775x306 + 225.934x307 + 1010.72x308 + 1407.32x309 + +1236.79x310 + 1160.94x311 + 1136.75x312 + 1070.04x313 + 144.083x314 + 184.803x315 + 103.5x316 + 594.144x317 + 680.939x318 + 644.595x319 + +642.029x320 + 610.416x321 + 588.013x322 + 254.494x323 + 235.852x324 + 178.818x325 + 159.455x326 + 435.235x327 + 555.36x328 + 534.523x329 + +521.554x330 + 479.986x331 + 434.68x332 + 1045.26x333 + 1194.07x334 + 1183.53x335 + 1169.57x336 + 1151.28x337 + 1146.25x338 + 777.952x339 + +1015.62x340 + 977.499x341 + 914.381x342 + 913.929x343 + 860.83x344 + 432.073x345 + 590.35x346 + 544.654x347 + 511.254x348 + 443.966x349 + +437.639x350 + 485.984x351 + 670.208x352 + 640.728x353 + 619.195x354 + 611.665x355 + 573.444x356 + 238.415x357 + 137.108x358 + 41.1156x359 + +381.74x360 + 510.204x361 + 500.984x362 + 473.13x363 + 462.167x364 + 377.354x365 + 474.26x366 + 458.957x367 + 447.206x368 + 437.393x369 + +412.389x370 + 402.1x371 + 27.3978x372 + 725.023x373 + 765.64x374 + 741.211x375 + 718.677x376 + 702.765x377 + 660.886x378 + 1670.97x379 + +2257.65x380 + 1979.4x381 + 1976.58x382 + 1974.58x383 + 1885.63x384 + 778.789x385 + 961.009x386 + 847.742x387 + 810.212x388 + 772.06x389 + +765.266x390 + 885.074x391 + 1039.51x392 + 949.724x393 + 917.505x394 + 897.223x395 + 893.713x396 + 715.946x397 + 891.006x398 + 861.901x399 + +836.477x400 + 836.125x401 + 702.283x402 + 209.008x403 + 299.276x404 + 209.132x405 + 1942.9x406 + 1959.78x407 + 1936.55x408 + 1912.38x409 + +1864.34x410 + 1851.06x411 + 692.862x412 + 928.605x413 + 878.905x414 + 807.528x415 + 788.227x416 + 787.751x417 + 500.26x418 + 682.954x419 + +675.14x420 + 538.226x421 + 507.731x422 + 466.114x423 + 127.526x424 + 649.164x425 + 963.038x426 + 859.2x427 + 839.1x428 + 787.267x429 + +765.438x430 + 267.398x431 + 330.031x432 + 318.961x433 + 223.515x434 + 75.1178x435 + 984.736x436 + 1061.79x437 + 1053.95x438 + 1029.87x439 + +1022.64x440 + 1019.63x441 + 303.735x442 + 258.99x443 + 245.057x444 + 215.625x445 + 165.198x446 + 594.457x447 + 606.912x448 + 605.409x449 + +546.123x450 + 489.914x451 + 463.396x452 + 855.764x453 + 969.889x454 + 908.449x455 + 893.924x456 + 860.055x457 + 814.534x458 + 1421.37x459 + +1694.17x460 + 1680.82x461 + 1634.95x462 + 1632.31x463 + 1598.87x464 + 309.81x465 + 456.861x466 + 448.59x467 + 437.183x468 + 414.938x469 + +375.829x470 + 30.9159x471 + 459.615x472 + 400.508x473 + 319.056x474 + 302.595x475 + 261.505x476 + 184.068x477 + 267.941x478 + 212.173x479 + +200.768x480 + 279.801x481 + 360.273x482 + 341.496x483 + 265.597x484 + 191.186x485 + 607.072x486 + 714.586x487 + 612.51x488 + 607.72x489 + +563.119x490 + 558.113x491 + 164.519x492 + 240.854x493 + 112.188x494 + 103.784x495 + 587.862x496 + 569.156x497 + 554.194x498 + 437.948x499 + +408.447x500 + 384.526x501 + +st + +x168 + x169 + x192 + x204 + x207 + x209 + x228 + x229 + x264 + x336 ++ x339 + x341 + x397 + x402 + x410 + x429 + x444 + x463 <= 1 + +x5 + x66 + x132 + x139 + x140 + x142 + x143 + x168 + x189 + x190 ++ x192 + x204 + x207 + x208 + x209 + x219 + x220 + x221 + x224 + x227 ++ x228 + x229 + x264 + x294 + x316 + x336 + x339 + x340 + x341 + x380 ++ x383 + x397 + x402 + x410 + x428 + x429 + x442 + x444 + x463 <= 1 + +x5 + x65 + x66 + x132 + x198 + x200 + x204 + x206 + x207 + x208 ++ x209 + x219 + x220 + x221 + x222 + x227 + x228 + x229 + x264 + x294 ++ x320 + x336 + x340 + x341 + x380 + x383 + x397 + x402 + x410 + x428 ++ x429 + x442 + x443 <= 1 + +x2 + x66 + x71 + x132 + x198 + x200 + x204 + x206 + x207 + x209 ++ x218 + x219 + x220 + x222 + x223 + x227 + x228 + x229 + x264 + x293 ++ x294 + x320 + x380 + x383 + x397 + x410 + x425 + x428 + x429 <= 1 + +x49 + x63 + x64 + x67 + x114 + x156 + x184 + x223 + x292 + x297 ++ x317 + x318 + x321 + x322 + x422 + x439 + x459 <= 1 + +x45 + x63 + x64 + x67 + x70 + x86 + x127 + x156 + x176 + x184 ++ x223 + x253 + x264 + x286 + x292 + x294 + x298 + x299 + x317 + x318 ++ x320 + x321 + x322 + x383 + x390 + x417 + x422 + x428 + x436 + x437 ++ x439 + x459 + x476 + x492 + x493 + x494 + x495 <= 1 + +x10 + x26 + x63 + x64 + x67 + x86 + x104 + x156 + x176 + x184 ++ x188 + x206 + x223 + x292 + x294 + x298 + x299 + x317 + x318 + x320 ++ x321 + x322 + x380 + x383 + x390 + x436 + x437 + x439 + x440 + x452 ++ x459 + x462 + x472 + x473 + x476 + x483 + x492 + x493 + x494 <= 1 + +x3 + x8 + x10 + x26 + x29 + x45 + x64 + x86 + x103 + x104 ++ x156 + x184 + x188 + x202 + x206 + x232 + x287 + x294 + x296 + x299 ++ x300 + x305 + x317 + x321 + x322 + x380 + x383 + x387 + x390 + x426 ++ x436 + x439 + x440 + x447 + x450 + x451 + x452 + x462 + x472 + x473 ++ x475 + x476 + x481 + x482 + x483 + x493 + x498 <= 1 + +x3 + x6 + x8 + x10 + x24 + x25 + x26 + x28 + x29 + x35 ++ x45 + x46 + x64 + x103 + x104 + x105 + x182 + x183 + x184 + x185 ++ x186 + x187 + x206 + x236 + x288 + x289 + x293 + x294 + x296 + x299 ++ x300 + x306 + x321 + x322 + x383 + x385 + x387 + x390 + x426 + x439 ++ x440 + x447 + x451 + x452 + x462 + x475 + x481 + x482 + x483 + x484 ++ x485 + x496 + x497 + x498 <= 1 + +x10 + x28 + x29 + x103 + x105 + x183 + x185 + x186 + x187 + x288 ++ x290 + x292 + x294 + x296 + x299 + x300 + x322 + x390 + x402 + x436 ++ x439 + x440 + x447 + x450 + x451 + x452 + x462 + x475 <= 1 + +x14 + x48 + x50 + x143 + x188 + x198 + x199 + x207 + x208 + x209 ++ x221 + x228 + x229 + x264 + x268 + x341 + x358 + x402 + x415 <= 1 + +x5 + x14 + x46 + x48 + x55 + x65 + x110 + x132 + x136 + x138 ++ x139 + x140 + x142 + x143 + x180 + x188 + x189 + x190 + x198 + x199 ++ x204 + x207 + x208 + x209 + x219 + x220 + x221 + x224 + x228 + x229 ++ x264 + x268 + x269 + x294 + x309 + x313 + x339 + x340 + x341 + x358 ++ x380 + x383 + x402 + x415 + x429 + x442 + x443 + x444 + x445 + x478 + <= 1 + +x5 + x52 + x55 + x65 + x110 + x132 + x137 + x158 + x180 + x188 ++ x189 + x204 + x206 + x207 + x208 + x209 + x211 + x218 + x219 + x220 ++ x221 + x222 + x224 + x227 + x228 + x229 + x264 + x286 + x294 + x313 ++ x339 + x340 + x341 + x383 + x397 + x402 + x428 + x429 + x430 + x442 ++ x443 + x445 + x446 <= 1 + +x2 + x48 + x53 + x54 + x63 + x66 + x67 + x71 + x165 + x198 ++ x200 + x204 + x206 + x207 + x209 + x218 + x222 + x223 + x227 + x228 ++ x229 + x264 + x293 + x294 + x301 + x318 + x320 + x383 + x397 + x401 ++ x402 + x410 + x425 + x428 + x429 + x459 + x466 + x488 <= 1 + +x33 + x48 + x53 + x54 + x63 + x64 + x66 + x67 + x69 + x71 ++ x85 + x133 + x156 + x181 + x200 + x204 + x206 + x209 + x218 + x223 ++ x255 + x264 + x273 + x274 + x318 + x320 + x350 + x383 + x397 + x401 ++ x425 + x428 + x429 + x430 + x459 + x466 + x469 <= 1 + +x10 + x11 + x62 + x63 + x64 + x67 + x69 + x70 + x71 + x85 ++ x86 + x88 + x106 + x107 + x114 + x133 + x156 + x206 + x223 + x244 ++ x253 + x264 + x292 + x294 + x317 + x318 + x320 + x321 + x383 + x390 ++ x401 + x428 + x429 + x436 + x437 + x439 + x440 + x459 + x476 <= 1 + +x10 + x26 + x29 + x45 + x63 + x64 + x67 + x70 + x71 + x86 ++ x88 + x106 + x107 + x114 + x156 + x161 + x182 + x184 + x186 + x206 ++ x223 + x264 + x291 + x292 + x293 + x294 + x298 + x303 + x317 + x318 ++ x320 + x321 + x322 + x350 + x383 + x390 + x418 + x422 + x436 + x437 ++ x439 + x440 + x459 + x472 + x476 + x492 + x495 <= 1 + +x10 + x24 + x25 + x26 + x29 + x45 + x54 + x63 + x64 + x67 ++ x86 + x156 + x161 + x184 + x186 + x202 + x206 + x275 + x288 + x291 ++ x293 + x294 + x296 + x298 + x299 + x300 + x304 + x305 + x350 + x383 ++ x390 + x422 + x426 + x439 + x440 + x450 + x451 + x452 + x459 + x472 ++ x473 + x482 + x483 + x484 + x497 + x498 <= 1 + +x6 + x8 + x10 + x24 + x25 + x26 + x28 + x29 + x45 + x46 ++ x64 + x67 + x105 + x182 + x183 + x184 + x185 + x186 + x187 + x206 ++ x237 + x254 + x269 + x275 + x276 + x288 + x289 + x290 + x293 + x294 ++ x296 + x298 + x299 + x300 + x304 + x305 + x306 + x307 + x385 + x387 ++ x389 + x390 + x422 + x423 + x439 + x440 + x447 + x450 + x451 + x452 ++ x462 + x472 + x473 + x474 + x481 + x482 + x484 + x485 + x496 + x497 ++ x498 + x501 <= 1 + +x6 + x8 + x10 + x24 + x28 + x45 + x67 + x183 + x184 + x185 ++ x186 + x187 + x188 + x254 + x276 + x288 + x290 + x292 + x293 + x294 ++ x296 + x298 + x299 + x304 + x307 + x354 + x385 + x386 + x389 + x394 ++ x450 + x451 + x452 + x462 + x473 + x475 + x481 + x484 + x485 + x496 ++ x498 <= 1 + +x12 + x14 + x17 + x44 + x65 + x132 + x133 + x139 + x141 + x142 ++ x143 + x144 + x180 + x188 + x189 + x199 + x204 + x207 + x208 + x209 ++ x219 + x226 + x228 + x229 + x264 + x268 + x297 + x309 + x313 + x339 ++ x340 + x341 + x343 + x344 + x349 + x357 + x383 + x398 + x413 + x487 + <= 1 + +x0 + x2 + x5 + x14 + x15 + x16 + x44 + x46 + x48 + x52 ++ x53 + x55 + x65 + x68 + x110 + x132 + x133 + x135 + x136 + x138 ++ x139 + x140 + x141 + x142 + x143 + x180 + x188 + x189 + x199 + x204 ++ x207 + x208 + x209 + x219 + x221 + x222 + x224 + x226 + x227 + x228 ++ x229 + x264 + x267 + x268 + x269 + x300 + x301 + x302 + x308 + x309 ++ x313 + x318 + x325 + x339 + x340 + x341 + x343 + x344 + x357 + x358 ++ x359 + x383 + x402 + x415 + x429 + x444 + x445 + x446 + x487 <= 1 + +x16 + x44 + x48 + x50 + x52 + x53 + x54 + x55 + x63 + x65 ++ x68 + x88 + x110 + x132 + x133 + x136 + x137 + x138 + x158 + x176 ++ x180 + x188 + x189 + x199 + x204 + x207 + x208 + x209 + x218 + x220 ++ x221 + x222 + x224 + x227 + x228 + x229 + x235 + x252 + x264 + x300 ++ x308 + x313 + x318 + x339 + x340 + x359 + x365 + x372 + x383 + x402 ++ x415 + x430 + x443 + x446 + x470 + x474 <= 1 + +x9 + x33 + x50 + x52 + x53 + x54 + x56 + x62 + x63 + x65 ++ x68 + x71 + x88 + x132 + x133 + x136 + x158 + x180 + x204 + x207 ++ x209 + x218 + x220 + x222 + x224 + x227 + x228 + x229 + x252 + x253 ++ x264 + x293 + x300 + x301 + x318 + x320 + x383 + x397 + x401 + x402 ++ x425 + x428 + x429 + x430 + x465 + x466 + x470 + x474 <= 1 + +x9 + x30 + x33 + x44 + x48 + x50 + x51 + x52 + x53 + x54 ++ x62 + x63 + x64 + x66 + x69 + x71 + x85 + x86 + x87 + x88 ++ x89 + x90 + x119 + x133 + x156 + x158 + x161 + x171 + x176 + x179 ++ x181 + x200 + x204 + x206 + x209 + x218 + x228 + x229 + x250 + x253 ++ x255 + x261 + x264 + x269 + x273 + x274 + x289 + x291 + x298 + x300 ++ x301 + x317 + x318 + x320 + x379 + x382 + x383 + x397 + x401 + x425 ++ x428 + x430 + x465 + x466 + x467 + x469 + x470 + x474 <= 1 + +x10 + x27 + x30 + x31 + x33 + x50 + x52 + x62 + x63 + x70 ++ x85 + x86 + x87 + x88 + x106 + x108 + x156 + x161 + x176 + x178 ++ x179 + x181 + x185 + x204 + x206 + x218 + x220 + x244 + x249 + x250 ++ x253 + x259 + x264 + x274 + x286 + x288 + x291 + x292 + x298 + x301 ++ x317 + x318 + x320 + x321 + x345 + x350 + x383 + x401 + x425 + x437 ++ x439 + x465 + x466 + x467 + x469 <= 1 + +x30 + x33 + x45 + x50 + x64 + x66 + x67 + x71 + x85 + x86 ++ x87 + x88 + x95 + x107 + x108 + x156 + x160 + x161 + x176 + x182 ++ x187 + x206 + x247 + x249 + x264 + x273 + x286 + x287 + x289 + x291 ++ x292 + x298 + x317 + x319 + x321 + x322 + x345 + x349 + x350 + x356 ++ x389 + x390 + x418 + x420 + x422 + x423 + x425 + x437 + x439 + x448 ++ x495 + x501 <= 1 + +x8 + x9 + x11 + x25 + x30 + x33 + x35 + x57 + x61 + x88 ++ x92 + x94 + x95 + x161 + x176 + x179 + x182 + x185 + x186 + x187 ++ x190 + x206 + x248 + x254 + x264 + x265 + x269 + x274 + x286 + x287 ++ x289 + x290 + x291 + x293 + x294 + x298 + x317 + x321 + x345 + x347 ++ x349 + x350 + x351 + x354 + x356 + x384 + x385 + x387 + x389 + x418 ++ x423 + x425 + x427 + x439 + x496 + x497 + x500 + x501 <= 1 + +x6 + x8 + x11 + x25 + x28 + x29 + x35 + x64 + x92 + x95 ++ x182 + x183 + x184 + x185 + x186 + x187 + x206 + x243 + x269 + x278 ++ x286 + x287 + x288 + x289 + x290 + x291 + x293 + x294 + x296 + x298 ++ x299 + x306 + x307 + x349 + x354 + x356 + x385 + x387 + x389 + x390 ++ x418 + x423 + x427 + x439 + x440 + x450 + x451 + x462 + x496 + x497 ++ x500 + x501 <= 1 + +x6 + x8 + x11 + x25 + x28 + x59 + x160 + x183 + x185 + x186 ++ x222 + x238 + x269 + x278 + x287 + x288 + x289 + x290 + x293 + x294 ++ x296 + x298 + x299 + x349 + x354 + x385 + x389 + x427 + x450 + x451 ++ x452 + x462 + x475 + x485 + x500 <= 1 + +x5 + x12 + x13 + x15 + x16 + x17 + x46 + x49 + x53 + x65 ++ x68 + x110 + x127 + x132 + x133 + x135 + x136 + x138 + x140 + x141 ++ x142 + x144 + x175 + x177 + x180 + x188 + x189 + x192 + x199 + x204 ++ x207 + x209 + x224 + x226 + x227 + x228 + x229 + x264 + x266 + x268 ++ x297 + x300 + x302 + x308 + x309 + x313 + x325 + x339 + x340 + x341 ++ x343 + x344 + x357 + x383 + x413 + x429 + x436 <= 1 + +x1 + x5 + x16 + x17 + x44 + x45 + x46 + x47 + x48 + x49 ++ x55 + x59 + x65 + x74 + x110 + x112 + x128 + x132 + x133 + x135 ++ x138 + x139 + x140 + x141 + x144 + x170 + x171 + x175 + x177 + x179 ++ x180 + x188 + x189 + x192 + x199 + x204 + x207 + x208 + x209 + x219 ++ x221 + x224 + x226 + x227 + x229 + x232 + x252 + x264 + x266 + x267 ++ x268 + x269 + x293 + x298 + x301 + x309 + x313 + x326 + x339 + x340 ++ x341 + x342 + x343 + x344 + x383 + x402 + x412 + x413 + x415 + x416 ++ x429 + x487 <= 1 + +x0 + x1 + x2 + x5 + x14 + x27 + x34 + x44 + x45 + x48 ++ x50 + x52 + x53 + x55 + x59 + x63 + x65 + x68 + x74 + x89 ++ x132 + x133 + x134 + x135 + x136 + x138 + x141 + x158 + x170 + x171 ++ x175 + x177 + x179 + x180 + x188 + x189 + x192 + x199 + x204 + x205 ++ x207 + x208 + x209 + x219 + x220 + x224 + x226 + x227 + x228 + x229 ++ x244 + x250 + x252 + x264 + x268 + x269 + x292 + x297 + x300 + x301 ++ x308 + x309 + x310 + x313 + x339 + x340 + x341 + x343 + x344 + x383 ++ x402 + x409 + x413 + x414 + x415 + x416 + x430 + x438 + x445 + x446 ++ x474 <= 1 + +x1 + x2 + x4 + x5 + x24 + x26 + x27 + x34 + x36 + x39 ++ x44 + x45 + x46 + x47 + x48 + x49 + x53 + x55 + x59 + x65 ++ x66 + x68 + x69 + x74 + x85 + x87 + x89 + x90 + x132 + x133 ++ x135 + x136 + x138 + x157 + x160 + x161 + x171 + x176 + x179 + x188 ++ x189 + x192 + x199 + x204 + x205 + x207 + x208 + x209 + x224 + x226 ++ x227 + x228 + x244 + x250 + x252 + x255 + x264 + x268 + x292 + x293 ++ x295 + x297 + x300 + x301 + x302 + x308 + x310 + x313 + x340 + x344 ++ x383 + x401 + x409 + x416 + x438 + x447 + x463 + x464 + x489 <= 1 + +x1 + x2 + x4 + x24 + x27 + x30 + x34 + x39 + x44 + x45 ++ x46 + x47 + x49 + x50 + x51 + x52 + x53 + x54 + x55 + x62 ++ x66 + x69 + x71 + x72 + x85 + x87 + x88 + x89 + x90 + x94 ++ x119 + x132 + x136 + x138 + x156 + x158 + x160 + x161 + x171 + x176 ++ x179 + x181 + x189 + x192 + x193 + x205 + x209 + x224 + x225 + x227 ++ x244 + x250 + x251 + x253 + x254 + x259 + x260 + x261 + x264 + x267 ++ x269 + x273 + x274 + x292 + x300 + x301 + x302 + x308 + x332 + x353 ++ x355 + x383 + x384 + x401 + x425 + x426 + x430 + x467 + x469 + x470 + <= 1 + +x9 + x27 + x31 + x32 + x44 + x52 + x62 + x66 + x69 + x85 ++ x87 + x88 + x89 + x90 + x94 + x96 + x108 + x116 + x156 + x158 ++ x171 + x176 + x178 + x179 + x181 + x182 + x185 + x190 + x192 + x202 ++ x204 + x205 + x206 + x244 + x250 + x253 + x254 + x259 + x261 + x264 ++ x269 + x270 + x271 + x272 + x273 + x274 + x286 + x289 + x291 + x292 ++ x301 + x312 + x319 + x320 + x332 + x353 + x379 + x383 + x401 + x425 ++ x426 + x428 + x430 + x436 + x465 + x466 + x467 + x469 + x470 + x494 + <= 1 + +x9 + x11 + x31 + x33 + x35 + x57 + x66 + x85 + x86 + x87 ++ x89 + x90 + x92 + x94 + x95 + x96 + x116 + x156 + x161 + x176 ++ x179 + x182 + x185 + x187 + x190 + x206 + x216 + x225 + x247 + x249 ++ x254 + x264 + x265 + x269 + x270 + x272 + x273 + x274 + x286 + x287 ++ x289 + x291 + x292 + x298 + x301 + x317 + x319 + x321 + x350 + x351 ++ x354 + x356 + x379 + x384 + x387 + x388 + x409 + x418 + x419 + x423 ++ x425 + x426 + x439 + x465 + x467 + x468 + x470 + x501 <= 1 + +x9 + x11 + x35 + x57 + x59 + x61 + x92 + x94 + x96 + x116 ++ x161 + x182 + x183 + x186 + x187 + x206 + x225 + x247 + x248 + x269 ++ x286 + x287 + x289 + x290 + x291 + x294 + x298 + x321 + x345 + x347 ++ x349 + x351 + x354 + x356 + x379 + x384 + x385 + x387 + x388 + x423 ++ x426 + x427 + x460 <= 1 + +x6 + x8 + x9 + x25 + x35 + x57 + x84 + x179 + x182 + x183 ++ x186 + x187 + x193 + x213 + x248 + x269 + x286 + x287 + x288 + x289 ++ x290 + x291 + x293 + x294 + x296 + x345 + x349 + x351 + x352 + x354 ++ x355 + x356 + x385 + x387 + x388 + x389 + x390 + x399 + x427 + x460 ++ x462 + x497 + x500 + x501 <= 1 + +x6 + x8 + x25 + x28 + x35 + x59 + x61 + x93 + x182 + x183 ++ x185 + x187 + x202 + x212 + x213 + x238 + x286 + x287 + x288 + x289 ++ x290 + x294 + x299 + x349 + x351 + x354 + x356 + x385 + x387 + x388 ++ x399 + x427 + x460 + x500 <= 1 + +x0 + x5 + x12 + x13 + x15 + x16 + x17 + x46 + x47 + x48 ++ x49 + x68 + x109 + x110 + x111 + x127 + x132 + x133 + x135 + x175 ++ x177 + x180 + x188 + x189 + x192 + x204 + x207 + x209 + x226 + x228 ++ x229 + x230 + x233 + x234 + x264 + x266 + x267 + x268 + x297 + x298 ++ x300 + x302 + x323 + x325 + x326 + x339 + x342 + x343 + x344 + x379 ++ x383 + x413 + x416 + x436 + x438 + x441 <= 1 + +x0 + x5 + x12 + x15 + x29 + x46 + x47 + x48 + x49 + x111 ++ x112 + x132 + x134 + x135 + x138 + x144 + x172 + x175 + x176 + x177 ++ x180 + x188 + x189 + x192 + x193 + x205 + x208 + x209 + x224 + x230 ++ x232 + x243 + x266 + x267 + x268 + x297 + x298 + x302 + x313 + x323 ++ x324 + x326 + x339 + x342 + x344 + x409 + x412 + x413 + x416 + x438 + <= 1 + +x0 + x1 + x2 + x4 + x5 + x13 + x27 + x34 + x44 + x45 ++ x46 + x47 + x48 + x49 + x50 + x55 + x59 + x65 + x68 + x74 ++ x111 + x128 + x132 + x133 + x134 + x135 + x136 + x138 + x157 + x160 ++ x170 + x171 + x172 + x175 + x177 + x179 + x180 + x188 + x189 + x190 ++ x192 + x199 + x203 + x204 + x205 + x207 + x208 + x209 + x226 + x227 ++ x231 + x232 + x234 + x244 + x245 + x250 + x252 + x255 + x266 + x267 ++ x268 + x269 + x293 + x297 + x298 + x300 + x301 + x303 + x309 + x310 ++ x313 + x324 + x340 + x342 + x343 + x344 + x380 + x383 + x409 + x413 ++ x414 + x415 + x416 + x438 + x447 + x463 + x464 + x487 + x489 <= 1 + +x0 + x1 + x2 + x4 + x24 + x26 + x27 + x41 + x44 + x45 ++ x46 + x47 + x49 + x55 + x68 + x74 + x90 + x133 + x134 + x135 ++ x136 + x138 + x157 + x158 + x160 + x171 + x172 + x174 + x177 + x179 ++ x180 + x188 + x192 + x199 + x204 + x205 + x206 + x207 + x208 + x209 ++ x224 + x226 + x231 + x244 + x252 + x255 + x265 + x268 + x293 + x295 ++ x297 + x298 + x300 + x301 + x302 + x308 + x310 + x311 + x313 + x335 ++ x340 + x342 + x343 + x344 + x380 + x381 + x409 + x413 + x414 + x416 ++ x438 + x449 + x463 + x464 + x487 + x489 <= 1 + +x27 + x30 + x31 + x32 + x34 + x44 + x46 + x47 + x49 + x51 ++ x60 + x62 + x73 + x85 + x89 + x90 + x119 + x131 + x156 + x157 ++ x158 + x160 + x176 + x181 + x193 + x202 + x205 + x224 + x225 + x239 ++ x240 + x241 + x244 + x250 + x251 + x254 + x256 + x257 + x259 + x260 ++ x261 + x264 + x265 + x266 + x267 + x268 + x269 + x292 + x301 + x384 ++ x401 + x414 + x416 + x422 + x436 <= 1 + +x4 + x30 + x31 + x32 + x34 + x45 + x46 + x47 + x50 + x51 ++ x52 + x54 + x60 + x62 + x66 + x69 + x72 + x87 + x89 + x90 ++ x119 + x130 + x156 + x157 + x158 + x159 + x160 + x161 + x176 + x178 ++ x181 + x182 + x190 + x202 + x205 + x206 + x215 + x224 + x225 + x239 ++ x244 + x250 + x251 + x253 + x254 + x256 + x259 + x260 + x261 + x264 ++ x266 + x267 + x269 + x270 + x271 + x272 + x289 + x301 + x308 + x312 ++ x353 + x388 + x401 + x411 + x425 + x426 + x430 + x436 + x466 + x467 ++ x468 + x470 + x486 <= 1 + +x9 + x11 + x31 + x40 + x54 + x57 + x61 + x62 + x72 + x87 ++ x89 + x90 + x95 + x96 + x116 + x127 + x159 + x160 + x161 + x176 ++ x178 + x181 + x182 + x187 + x190 + x191 + x206 + x215 + x216 + x222 ++ x225 + x240 + x251 + x254 + x264 + x267 + x269 + x270 + x271 + x272 ++ x273 + x286 + x289 + x291 + x293 + x294 + x295 + x296 + x301 + x312 ++ x317 + x319 + x350 + x351 + x353 + x377 + x379 + x380 + x384 + x386 ++ x387 + x388 + x406 + x407 + x409 + x411 + x418 + x419 + x421 + x423 ++ x425 + x426 + x430 + x437 + x465 + x467 + x468 <= 1 + +x3 + x9 + x11 + x21 + x31 + x57 + x62 + x96 + x116 + x127 ++ x160 + x161 + x206 + x215 + x216 + x218 + x225 + x269 + x286 + x287 ++ x289 + x291 + x298 + x319 + x347 + x351 + x353 + x354 + x356 + x384 ++ x387 + x388 + x406 + x411 + x421 + x468 <= 1 + +x6 + x7 + x8 + x9 + x11 + x35 + x57 + x59 + x61 + x92 ++ x93 + x186 + x187 + x188 + x192 + x193 + x201 + x213 + x286 + x287 ++ x288 + x290 + x291 + x295 + x299 + x345 + x351 + x352 + x354 + x355 ++ x370 + x378 + x384 + x385 + x386 + x388 + x389 + x399 + x411 + x427 ++ x460 <= 1 + +x6 + x7 + x28 + x30 + x35 + x57 + x59 + x60 + x61 + x91 ++ x93 + x130 + x155 + x183 + x202 + x210 + x212 + x213 + x237 + x238 ++ x286 + x287 + x288 + x290 + x295 + x296 + x351 + x352 + x354 + x355 ++ x367 + x370 + x375 + x378 + x385 + x388 + x406 + x411 + x427 + x459 ++ x460 + x499 <= 1 + +x0 + x13 + x17 + x68 + x109 + x111 + x112 + x117 + x127 + x132 ++ x134 + x171 + x175 + x180 + x188 + x189 + x190 + x192 + x201 + x204 ++ x234 + x241 + x243 + x245 + x255 + x265 + x266 + x292 + x297 + x298 ++ x300 + x302 + x339 + x342 + x343 + x344 + x379 + x412 + x415 + x438 ++ x441 <= 1 + +x0 + x2 + x4 + x12 + x13 + x15 + x44 + x46 + x47 + x48 ++ x49 + x65 + x74 + x109 + x111 + x112 + x115 + x117 + x127 + x132 ++ x133 + x134 + x135 + x144 + x157 + x170 + x171 + x172 + x175 + x177 ++ x179 + x180 + x188 + x189 + x190 + x192 + x193 + x203 + x204 + x205 ++ x207 + x208 + x209 + x226 + x227 + x230 + x231 + x233 + x234 + x243 ++ x245 + x255 + x258 + x264 + x265 + x266 + x267 + x268 + x293 + x297 ++ x298 + x300 + x302 + x303 + x309 + x310 + x311 + x313 + x323 + x324 ++ x339 + x342 + x343 + x344 + x379 + x380 + x409 + x412 + x413 + x414 ++ x415 + x416 + x417 + x438 + x441 + x464 <= 1 + +x0 + x1 + x2 + x4 + x41 + x46 + x47 + x48 + x49 + x74 ++ x117 + x127 + x129 + x133 + x134 + x135 + x136 + x138 + x157 + x170 ++ x171 + x172 + x177 + x179 + x180 + x188 + x189 + x191 + x192 + x193 ++ x204 + x205 + x207 + x208 + x209 + x226 + x227 + x230 + x231 + x243 ++ x252 + x258 + x262 + x266 + x267 + x268 + x269 + x297 + x298 + x301 ++ x302 + x303 + x309 + x310 + x313 + x340 + x342 + x343 + x344 + x379 ++ x382 + x412 + x413 + x414 + x415 + x416 + x438 + x441 + x448 + x464 ++ x487 + x488 <= 1 + +x0 + x1 + x2 + x4 + x24 + x41 + x44 + x45 + x46 + x47 ++ x48 + x49 + x68 + x74 + x119 + x128 + x129 + x131 + x133 + x134 ++ x135 + x136 + x137 + x138 + x157 + x160 + x161 + x170 + x172 + x174 ++ x177 + x179 + x188 + x189 + x191 + x192 + x193 + x198 + x199 + x204 ++ x205 + x206 + x207 + x208 + x209 + x224 + x226 + x243 + x252 + x255 ++ x258 + x260 + x265 + x267 + x268 + x269 + x293 + x295 + x296 + x297 ++ x298 + x299 + x300 + x301 + x302 + x303 + x308 + x310 + x311 + x313 ++ x335 + x342 + x343 + x344 + x380 + x381 + x382 + x384 + x395 + x407 ++ x408 + x410 + x412 + x413 + x414 + x415 + x416 + x417 + x437 + x448 ++ x449 + x463 + x486 + x487 + x488 + x489 <= 1 + +x1 + x31 + x32 + x44 + x45 + x46 + x47 + x48 + x49 + x58 ++ x60 + x61 + x62 + x73 + x89 + x90 + x115 + x117 + x119 + x130 ++ x131 + x134 + x135 + x137 + x156 + x157 + x158 + x159 + x160 + x161 ++ x176 + x181 + x183 + x189 + x190 + x191 + x192 + x193 + x198 + x199 ++ x200 + x201 + x202 + x204 + x205 + x207 + x209 + x225 + x235 + x239 ++ x240 + x244 + x251 + x257 + x259 + x260 + x261 + x263 + x265 + x266 ++ x267 + x268 + x269 + x293 + x294 + x295 + x301 + x302 + x310 + x311 ++ x312 + x314 + x374 + x376 + x380 + x382 + x384 + x388 + x406 + x407 ++ x408 + x409 + x410 + x414 + x416 + x417 + x419 + x422 + x436 + x437 ++ x449 + x450 <= 1 + +x1 + x31 + x32 + x34 + x40 + x44 + x45 + x46 + x49 + x54 ++ x58 + x60 + x61 + x62 + x69 + x72 + x73 + x117 + x119 + x130 ++ x131 + x158 + x159 + x160 + x161 + x163 + x169 + x177 + x178 + x181 ++ x183 + x189 + x190 + x191 + x193 + x199 + x201 + x202 + x205 + x209 ++ x225 + x240 + x244 + x251 + x253 + x259 + x260 + x261 + x265 + x266 ++ x267 + x269 + x271 + x280 + x293 + x294 + x295 + x296 + x301 + x303 ++ x310 + x312 + x328 + x348 + x353 + x373 + x374 + x375 + x376 + x377 ++ x379 + x380 + x384 + x386 + x388 + x398 + x399 + x401 + x406 + x409 ++ x411 + x417 + x419 + x428 + x430 + x437 + x449 + x455 + x460 + x468 ++ x486 + x488 <= 1 + +x20 + x34 + x40 + x45 + x46 + x48 + x57 + x60 + x61 + x62 ++ x69 + x72 + x73 + x87 + x116 + x117 + x127 + x128 + x130 + x131 ++ x158 + x160 + x161 + x167 + x178 + x181 + x189 + x190 + x191 + x192 ++ x193 + x196 + x199 + x201 + x202 + x209 + x225 + x235 + x237 + x240 ++ x251 + x264 + x266 + x267 + x269 + x270 + x271 + x272 + x280 + x282 ++ x291 + x292 + x293 + x294 + x295 + x296 + x297 + x301 + x312 + x319 ++ x328 + x334 + x338 + x348 + x352 + x353 + x355 + x360 + x373 + x374 ++ x376 + x377 + x378 + x379 + x380 + x382 + x384 + x386 + x387 + x388 ++ x397 + x398 + x399 + x400 + x406 + x407 + x408 + x409 + x411 + x418 ++ x419 + x420 + x421 + x423 + x426 + x427 + x428 + x430 + x437 + x439 ++ x459 + x465 + x468 <= 1 + +x20 + x33 + x34 + x45 + x47 + x57 + x61 + x77 + x127 + x128 ++ x130 + x131 + x164 + x167 + x178 + x190 + x191 + x192 + x193 + x201 ++ x209 + x225 + x235 + x236 + x237 + x251 + x266 + x267 + x269 + x270 ++ x282 + x292 + x295 + x296 + x309 + x312 + x319 + x348 + x352 + x355 ++ x373 + x376 + x377 + x378 + x380 + x384 + x385 + x386 + x397 + x399 ++ x406 + x408 + x409 + x411 + x420 + x421 + x427 + x430 + x437 + x459 ++ x461 + x468 <= 1 + +x7 + x11 + x20 + x45 + x46 + x57 + x59 + x61 + x93 + x127 ++ x178 + x186 + x188 + x189 + x190 + x191 + x192 + x193 + x201 + x208 ++ x214 + x225 + x235 + x238 + x279 + x287 + x288 + x295 + x296 + x297 ++ x309 + x312 + x348 + x351 + x352 + x355 + x366 + x370 + x373 + x375 ++ x378 + x384 + x385 + x386 + x389 + x399 + x406 + x411 + x413 + x420 ++ x427 + x437 <= 1 + +x6 + x7 + x30 + x57 + x59 + x60 + x61 + x62 + x80 + x93 ++ x117 + x130 + x150 + x154 + x155 + x178 + x188 + x190 + x191 + x192 ++ x193 + x198 + x201 + x208 + x210 + x212 + x214 + x235 + x236 + x237 ++ x238 + x269 + x287 + x288 + x290 + x295 + x296 + x312 + x348 + x352 ++ x355 + x366 + x367 + x370 + x373 + x375 + x378 + x384 + x386 + x405 ++ x406 + x407 + x411 + x421 + x427 + x499 <= 1 + +x0 + x48 + x67 + x68 + x112 + x132 + x135 + x137 + x171 + x173 ++ x175 + x188 + x189 + x192 + x193 + x204 + x233 + x239 + x241 + x245 ++ x262 + x263 + x265 + x266 + x267 + x292 + x297 + x298 + x302 + x311 ++ x312 + x347 + x379 + x381 + x391 + x410 + x415 + x416 + x436 + x438 ++ x441 + x463 <= 1 + +x4 + x19 + x46 + x47 + x48 + x74 + x111 + x112 + x115 + x120 ++ x132 + x134 + x135 + x171 + x173 + x175 + x177 + x188 + x189 + x190 ++ x192 + x193 + x203 + x204 + x226 + x233 + x239 + x241 + x243 + x245 ++ x258 + x262 + x263 + x264 + x265 + x266 + x267 + x268 + x292 + x295 ++ x297 + x298 + x302 + x303 + x309 + x311 + x313 + x335 + x343 + x347 ++ x379 + x380 + x381 + x382 + x391 + x396 + x408 + x409 + x410 + x412 ++ x414 + x415 + x416 + x436 + x438 + x441 + x463 <= 1 + +x4 + x44 + x47 + x48 + x49 + x109 + x111 + x112 + x115 + x117 ++ x131 + x134 + x135 + x137 + x159 + x170 + x175 + x177 + x188 + x189 ++ x190 + x191 + x192 + x193 + x204 + x205 + x208 + x226 + x239 + x241 ++ x243 + x245 + x246 + x258 + x262 + x263 + x264 + x265 + x266 + x267 ++ x268 + x290 + x292 + x293 + x296 + x297 + x298 + x300 + x302 + x303 ++ x308 + x310 + x311 + x322 + x335 + x342 + x343 + x379 + x380 + x381 ++ x382 + x384 + x396 + x407 + x408 + x409 + x410 + x412 + x414 + x417 ++ x440 + x449 + x486 + x489 <= 1 + +x41 + x44 + x45 + x46 + x47 + x48 + x49 + x58 + x73 + x83 ++ x115 + x117 + x119 + x126 + x128 + x129 + x131 + x133 + x137 + x138 ++ x156 + x157 + x159 + x170 + x172 + x179 + x189 + x190 + x191 + x192 ++ x193 + x198 + x199 + x203 + x204 + x205 + x207 + x208 + x224 + x226 ++ x239 + x240 + x243 + x245 + x258 + x259 + x260 + x262 + x263 + x265 ++ x266 + x267 + x268 + x290 + x293 + x295 + x296 + x297 + x299 + x300 ++ x303 + x308 + x310 + x311 + x313 + x335 + x342 + x379 + x380 + x381 ++ x382 + x384 + x389 + x393 + x396 + x407 + x408 + x409 + x410 + x412 ++ x413 + x414 + x415 + x417 + x437 + x440 + x441 + x447 + x448 + x449 ++ x486 + x487 + x489 + x491 <= 1 + +x1 + x2 + x32 + x44 + x45 + x46 + x47 + x48 + x49 + x68 ++ x73 + x115 + x117 + x119 + x126 + x129 + x131 + x134 + x135 + x137 ++ x156 + x157 + x159 + x160 + x161 + x163 + x170 + x172 + x174 + x181 ++ x189 + x190 + x191 + x192 + x193 + x198 + x199 + x202 + x204 + x205 ++ x206 + x207 + x208 + x209 + x225 + x226 + x235 + x239 + x240 + x243 ++ x245 + x258 + x259 + x260 + x261 + x263 + x265 + x266 + x267 + x268 ++ x269 + x293 + x295 + x296 + x297 + x299 + x300 + x301 + x302 + x303 ++ x308 + x310 + x311 + x314 + x315 + x335 + x374 + x375 + x379 + x380 ++ x382 + x384 + x389 + x393 + x394 + x395 + x407 + x408 + x409 + x410 ++ x413 + x414 + x415 + x417 + x437 + x447 + x448 + x449 + x455 + x460 ++ x461 + x463 + x486 + x487 + x488 + x489 <= 1 + +x1 + x32 + x37 + x38 + x44 + x45 + x46 + x48 + x49 + x58 ++ x60 + x61 + x62 + x73 + x100 + x116 + x117 + x119 + x128 + x129 ++ x131 + x134 + x135 + x152 + x156 + x157 + x158 + x160 + x161 + x162 ++ x163 + x172 + x177 + x181 + x189 + x190 + x191 + x193 + x199 + x201 ++ x202 + x203 + x204 + x205 + x207 + x209 + x225 + x226 + x239 + x240 ++ x242 + x259 + x260 + x261 + x263 + x265 + x266 + x267 + x269 + x294 ++ x295 + x296 + x297 + x302 + x303 + x310 + x312 + x315 + x335 + x337 ++ x353 + x364 + x375 + x377 + x379 + x386 + x398 + x401 + x406 + x407 ++ x408 + x409 + x411 + x413 + x424 + x437 + x448 + x449 + x455 + x456 ++ x460 + x462 + x463 + x464 + x486 + x488 <= 1 + +x7 + x39 + x40 + x44 + x45 + x46 + x48 + x57 + x58 + x59 ++ x60 + x62 + x72 + x97 + x102 + x127 + x128 + x130 + x131 + x152 ++ x158 + x161 + x167 + x178 + x181 + x188 + x189 + x190 + x191 + x192 ++ x193 + x196 + x199 + x200 + x201 + x202 + x203 + x238 + x265 + x266 ++ x267 + x269 + x270 + x271 + x282 + x292 + x293 + x294 + x295 + x296 ++ x297 + x301 + x319 + x338 + x342 + x353 + x360 + x361 + x362 + x363 ++ x371 + x373 + x376 + x377 + x378 + x379 + x380 + x382 + x384 + x386 ++ x388 + x397 + x399 + x400 + x406 + x407 + x408 + x409 + x411 + x418 ++ x419 + x420 + x421 + x426 + x459 + x460 + x461 + x463 <= 1 + +x7 + x33 + x36 + x39 + x40 + x44 + x45 + x47 + x48 + x57 ++ x58 + x60 + x61 + x62 + x70 + x72 + x77 + x117 + x127 + x128 ++ x130 + x131 + x153 + x155 + x160 + x161 + x162 + x164 + x167 + x178 ++ x188 + x190 + x191 + x192 + x193 + x194 + x195 + x196 + x199 + x201 ++ x202 + x203 + x211 + x225 + x235 + x236 + x237 + x238 + x251 + x265 ++ x266 + x267 + x269 + x272 + x279 + x280 + x282 + x292 + x293 + x294 ++ x295 + x296 + x297 + x301 + x303 + x312 + x319 + x328 + x334 + x338 ++ x348 + x352 + x353 + x355 + x361 + x362 + x363 + x371 + x373 + x374 ++ x375 + x376 + x377 + x378 + x379 + x382 + x384 + x386 + x397 + x398 ++ x399 + x400 + x405 + x406 + x407 + x408 + x409 + x411 + x419 + x420 ++ x421 + x426 + x427 + x437 + x439 + x454 + x459 + x461 + x463 + x499 + <= 1 + +x7 + x36 + x39 + x41 + x42 + x43 + x57 + x58 + x59 + x60 ++ x61 + x62 + x70 + x80 + x117 + x127 + x128 + x130 + x131 + x154 ++ x155 + x178 + x188 + x189 + x190 + x191 + x192 + x193 + x194 + x195 ++ x201 + x205 + x208 + x210 + x211 + x212 + x214 + x225 + x235 + x236 ++ x237 + x238 + x266 + x269 + x279 + x282 + x287 + x288 + x292 + x294 ++ x295 + x296 + x297 + x309 + x312 + x319 + x334 + x348 + x351 + x352 ++ x355 + x361 + x362 + x366 + x370 + x373 + x375 + x378 + x384 + x386 ++ x398 + x399 + x405 + x406 + x407 + x408 + x409 + x411 + x420 + x421 ++ x437 + x499 <= 1 + +x7 + x42 + x57 + x59 + x60 + x61 + x70 + x76 + x80 + x127 ++ x130 + x150 + x154 + x178 + x190 + x191 + x192 + x193 + x194 + x197 ++ x210 + x214 + x235 + x236 + x237 + x238 + x279 + x281 + x294 + x295 ++ x296 + x309 + x312 + x333 + x345 + x348 + x352 + x355 + x366 + x369 ++ x371 + x373 + x375 + x378 + x384 + x398 + x403 + x405 + x406 + x407 ++ x408 + x409 + x411 + x462 <= 1 + +x0 + x3 + x19 + x21 + x22 + x48 + x49 + x67 + x118 + x122 ++ x124 + x132 + x137 + x157 + x173 + x185 + x188 + x189 + x191 + x192 ++ x193 + x199 + x204 + x205 + x207 + x245 + x246 + x259 + x262 + x263 ++ x265 + x266 + x267 + x268 + x302 + x309 + x310 + x322 + x347 + x380 ++ x381 + x412 + x438 + x441 + x463 <= 1 + +x3 + x4 + x18 + x19 + x21 + x22 + x47 + x48 + x49 + x109 ++ x118 + x120 + x132 + x134 + x137 + x157 + x159 + x173 + x175 + x188 ++ x189 + x190 + x191 + x192 + x193 + x198 + x200 + x205 + x221 + x239 ++ x241 + x243 + x245 + x246 + x258 + x259 + x262 + x263 + x264 + x265 ++ x266 + x267 + x268 + x293 + x295 + x297 + x302 + x309 + x310 + x311 ++ x322 + x347 + x380 + x381 + x391 + x392 + x393 + x394 + x407 + x408 ++ x412 + x414 + x416 + x417 + x436 + x441 + x463 + x490 <= 1 + +x3 + x4 + x21 + x22 + x38 + x41 + x44 + x46 + x47 + x49 ++ x109 + x115 + x118 + x120 + x121 + x126 + x134 + x137 + x157 + x159 ++ x170 + x173 + x174 + x177 + x188 + x189 + x190 + x191 + x192 + x193 ++ x198 + x200 + x205 + x207 + x241 + x242 + x245 + x246 + x258 + x262 ++ x263 + x265 + x266 + x267 + x268 + x292 + x293 + x295 + x297 + x300 ++ x303 + x310 + x311 + x322 + x379 + x380 + x381 + x382 + x384 + x391 ++ x393 + x394 + x395 + x407 + x408 + x412 + x414 + x416 + x417 + x435 ++ x436 + x440 + x441 + x457 + x464 + x489 + x490 + x491 <= 1 + +x18 + x38 + x41 + x44 + x45 + x46 + x47 + x49 + x58 + x66 ++ x73 + x81 + x83 + x109 + x115 + x118 + x120 + x126 + x128 + x129 ++ x137 + x138 + x147 + x156 + x157 + x159 + x160 + x170 + x172 + x173 ++ x174 + x190 + x191 + x192 + x193 + x200 + x202 + x203 + x206 + x207 ++ x208 + x209 + x241 + x242 + x258 + x259 + x260 + x262 + x263 + x265 ++ x266 + x267 + x268 + x269 + x290 + x292 + x293 + x295 + x297 + x300 ++ x302 + x303 + x308 + x310 + x311 + x379 + x380 + x381 + x382 + x384 ++ x389 + x394 + x395 + x396 + x408 + x409 + x414 + x417 + x431 + x435 ++ x440 + x441 + x448 + x457 + x461 + x464 + x486 + x490 + x491 <= 1 + +x32 + x38 + x41 + x44 + x45 + x46 + x47 + x49 + x58 + x73 ++ x115 + x118 + x119 + x120 + x129 + x134 + x137 + x138 + x147 + x151 ++ x152 + x153 + x157 + x158 + x159 + x160 + x163 + x164 + x172 + x173 ++ x174 + x181 + x188 + x190 + x191 + x192 + x193 + x198 + x200 + x201 ++ x202 + x203 + x205 + x207 + x209 + x235 + x239 + x240 + x242 + x243 ++ x246 + x258 + x259 + x260 + x261 + x263 + x265 + x266 + x267 + x268 ++ x269 + x292 + x295 + x296 + x299 + x301 + x302 + x303 + x308 + x311 ++ x312 + x335 + x336 + x338 + x375 + x379 + x380 + x381 + x382 + x384 ++ x389 + x393 + x394 + x395 + x396 + x400 + x407 + x408 + x409 + x410 ++ x415 + x431 + x432 + x435 + x441 + x448 + x457 + x461 + x463 + x464 ++ x488 + x490 + x491 <= 1 + +x32 + x36 + x37 + x38 + x44 + x45 + x46 + x48 + x49 + x58 ++ x60 + x61 + x62 + x97 + x99 + x100 + x115 + x116 + x118 + x119 ++ x127 + x128 + x129 + x131 + x134 + x137 + x151 + x152 + x155 + x157 ++ x158 + x160 + x162 + x163 + x164 + x166 + x174 + x181 + x188 + x189 ++ x190 + x191 + x193 + x198 + x200 + x201 + x202 + x203 + x205 + x225 ++ x239 + x240 + x242 + x246 + x258 + x259 + x260 + x261 + x262 + x265 ++ x266 + x267 + x268 + x292 + x293 + x294 + x295 + x296 + x297 + x299 ++ x301 + x302 + x303 + x311 + x312 + x333 + x336 + x337 + x338 + x346 ++ x364 + x365 + x377 + x379 + x380 + x381 + x382 + x384 + x395 + x398 ++ x400 + x406 + x407 + x408 + x409 + x411 + x413 + x433 + x434 + x454 ++ x455 + x456 + x457 + x460 + x461 + x462 + x463 + x464 + x486 + x488 ++ x491 <= 1 + +x7 + x36 + x37 + x38 + x40 + x44 + x48 + x49 + x51 + x58 ++ x59 + x60 + x61 + x72 + x97 + x100 + x101 + x102 + x119 + x120 ++ x127 + x128 + x130 + x131 + x151 + x152 + x155 + x158 + x159 + x160 ++ x162 + x164 + x165 + x166 + x174 + x188 + x189 + x190 + x191 + x193 ++ x198 + x199 + x200 + x201 + x202 + x203 + x205 + x236 + x238 + x240 ++ x242 + x260 + x261 + x262 + x265 + x268 + x269 + x278 + x282 + x292 ++ x293 + x294 + x295 + x296 + x297 + x301 + x302 + x303 + x319 + x333 ++ x336 + x337 + x338 + x342 + x346 + x353 + x360 + x361 + x362 + x363 ++ x364 + x365 + x368 + x371 + x377 + x379 + x380 + x381 + x382 + x384 ++ x386 + x395 + x398 + x399 + x400 + x406 + x407 + x408 + x411 + x454 ++ x456 + x459 + x460 + x461 + x462 + x463 + x464 + x488 + x491 <= 1 + +x36 + x37 + x40 + x44 + x47 + x51 + x57 + x58 + x59 + x60 ++ x61 + x76 + x77 + x102 + x127 + x128 + x129 + x130 + x131 + x149 ++ x150 + x151 + x152 + x153 + x154 + x155 + x162 + x165 + x166 + x167 ++ x178 + x188 + x189 + x190 + x191 + x192 + x193 + x199 + x200 + x201 ++ x205 + x208 + x223 + x236 + x237 + x261 + x262 + x265 + x268 + x269 ++ x277 + x278 + x279 + x280 + x282 + x292 + x293 + x294 + x295 + x296 ++ x297 + x303 + x319 + x328 + x330 + x332 + x334 + x336 + x337 + x338 ++ x341 + x360 + x361 + x362 + x363 + x364 + x370 + x371 + x374 + x376 ++ x379 + x381 + x382 + x398 + x399 + x400 + x406 + x407 + x410 + x411 ++ x419 + x420 + x426 + x439 + x453 + x454 + x456 + x458 + x459 + x460 ++ x461 + x462 + x499 <= 1 + +x7 + x36 + x39 + x40 + x41 + x43 + x57 + x59 + x60 + x62 ++ x70 + x76 + x78 + x127 + x128 + x130 + x131 + x150 + x154 + x178 ++ x188 + x189 + x190 + x191 + x192 + x193 + x195 + x197 + x201 + x205 ++ x208 + x211 + x235 + x236 + x237 + x238 + x269 + x277 + x279 + x281 ++ x282 + x292 + x294 + x295 + x296 + x309 + x333 + x346 + x352 + x360 ++ x361 + x363 + x364 + x367 + x369 + x370 + x371 + x373 + x374 + x376 ++ x382 + x384 + x398 + x399 + x406 + x407 + x408 + x410 + x411 + x459 ++ x461 + x462 <= 1 + +x36 + x48 + x57 + x59 + x60 + x61 + x70 + x75 + x76 + x78 ++ x80 + x127 + x130 + x131 + x150 + x154 + x178 + x188 + x189 + x190 ++ x191 + x193 + x197 + x201 + x205 + x207 + x208 + x236 + x237 + x238 ++ x269 + x277 + x279 + x280 + x281 + x292 + x295 + x296 + x331 + x333 ++ x334 + x345 + x346 + x366 + x367 + x369 + x371 + x374 + x382 + x384 ++ x393 + x398 + x403 + x406 + x411 + x453 + x459 + x460 + x461 + x462 + <= 1 + +x3 + x18 + x19 + x20 + x39 + x47 + x59 + x113 + x118 + x122 ++ x124 + x129 + x173 + x177 + x185 + x188 + x191 + x192 + x193 + x199 ++ x203 + x206 + x207 + x258 + x259 + x263 + x264 + x265 + x266 + x267 ++ x268 + x295 + x347 + x391 + x392 + x393 + x394 + x412 + x438 + x441 ++ x463 + x498 <= 1 + +x3 + x18 + x19 + x20 + x21 + x22 + x47 + x49 + x118 + x121 ++ x122 + x124 + x129 + x159 + x173 + x175 + x188 + x189 + x191 + x192 ++ x193 + x198 + x200 + x205 + x206 + x246 + x258 + x259 + x263 + x264 ++ x265 + x266 + x267 + x268 + x284 + x293 + x295 + x297 + x303 + x379 ++ x381 + x382 + x391 + x392 + x393 + x394 + x417 + x436 + x438 + x441 ++ x463 <= 1 + +x3 + x18 + x19 + x20 + x21 + x22 + x44 + x45 + x46 + x47 ++ x49 + x82 + x117 + x118 + x120 + x121 + x122 + x123 + x124 + x125 ++ x129 + x137 + x157 + x159 + x170 + x173 + x188 + x191 + x193 + x198 ++ x200 + x202 + x203 + x206 + x258 + x260 + x262 + x263 + x264 + x265 ++ x266 + x267 + x268 + x285 + x292 + x293 + x295 + x296 + x297 + x303 ++ x308 + x335 + x338 + x379 + x381 + x391 + x393 + x394 + x396 + x412 ++ x417 + x436 + x438 + x440 + x441 + x457 + x464 <= 1 + +x18 + x21 + x44 + x46 + x47 + x49 + x81 + x82 + x115 + x118 ++ x120 + x121 + x123 + x124 + x126 + x128 + x129 + x134 + x137 + x138 ++ x147 + x152 + x157 + x159 + x170 + x172 + x173 + x174 + x183 + x188 ++ x190 + x191 + x192 + x193 + x198 + x200 + x203 + x206 + x241 + x242 ++ x245 + x246 + x258 + x260 + x261 + x262 + x263 + x265 + x266 + x267 ++ x268 + x292 + x293 + x295 + x296 + x297 + x300 + x302 + x303 + x308 ++ x311 + x337 + x338 + x379 + x380 + x381 + x382 + x391 + x393 + x394 ++ x395 + x396 + x412 + x414 + x417 + x435 + x440 + x441 + x457 + x464 ++ x489 + x490 <= 1 + +x37 + x44 + x45 + x46 + x49 + x51 + x72 + x97 + x98 + x99 ++ x115 + x116 + x118 + x120 + x128 + x129 + x130 + x137 + x138 + x151 ++ x152 + x153 + x159 + x172 + x174 + x188 + x189 + x190 + x191 + x192 ++ x193 + x198 + x200 + x201 + x202 + x203 + x206 + x241 + x242 + x246 ++ x259 + x260 + x261 + x263 + x265 + x266 + x267 + x268 + x292 + x293 ++ x294 + x295 + x296 + x297 + x299 + x302 + x303 + x308 + x311 + x333 ++ x335 + x336 + x337 + x338 + x368 + x380 + x381 + x382 + x391 + x393 ++ x395 + x396 + x408 + x410 + x431 + x432 + x433 + x440 + x457 + x458 ++ x460 + x461 + x464 + x478 + x490 + x491 <= 1 + +x23 + x37 + x38 + x44 + x45 + x49 + x51 + x58 + x97 + x98 ++ x99 + x100 + x115 + x116 + x118 + x119 + x128 + x129 + x130 + x131 ++ x137 + x151 + x152 + x153 + x154 + x155 + x158 + x159 + x166 + x174 ++ x188 + x189 + x190 + x191 + x193 + x198 + x201 + x202 + x203 + x240 ++ x241 + x242 + x258 + x259 + x260 + x261 + x262 + x265 + x266 + x267 ++ x268 + x269 + x292 + x293 + x294 + x295 + x296 + x297 + x299 + x302 ++ x303 + x311 + x312 + x329 + x330 + x333 + x334 + x335 + x336 + x337 ++ x338 + x365 + x368 + x380 + x381 + x382 + x392 + x395 + x408 + x410 ++ x431 + x433 + x434 + x440 + x453 + x454 + x455 + x457 + x458 + x460 ++ x461 + x462 + x463 + x464 + x490 <= 1 + +x23 + x36 + x37 + x38 + x45 + x49 + x51 + x58 + x79 + x98 ++ x100 + x101 + x102 + x120 + x127 + x128 + x129 + x130 + x131 + x146 ++ x150 + x151 + x152 + x153 + x154 + x155 + x158 + x159 + x165 + x166 ++ x174 + x184 + x189 + x190 + x191 + x193 + x198 + x199 + x200 + x201 ++ x202 + x203 + x259 + x260 + x261 + x262 + x265 + x266 + x268 + x269 ++ x278 + x292 + x293 + x294 + x295 + x296 + x297 + x299 + x302 + x303 ++ x327 + x329 + x330 + x332 + x333 + x334 + x336 + x337 + x338 + x342 ++ x346 + x364 + x365 + x368 + x369 + x377 + x380 + x381 + x382 + x400 ++ x404 + x408 + x410 + x434 + x453 + x454 + x455 + x456 + x457 + x458 ++ x459 + x460 + x461 + x462 + x463 + x464 + x469 + x471 + x477 + x479 ++ x480 <= 1 + +x23 + x37 + x40 + x47 + x48 + x51 + x60 + x77 + x79 + x101 ++ x127 + x128 + x129 + x130 + x131 + x136 + x146 + x149 + x150 + x151 ++ x152 + x153 + x154 + x155 + x158 + x165 + x184 + x189 + x190 + x191 ++ x192 + x193 + x198 + x199 + x200 + x201 + x202 + x203 + x205 + x208 ++ x261 + x262 + x269 + x278 + x280 + x281 + x292 + x293 + x294 + x295 ++ x296 + x297 + x299 + x327 + x328 + x329 + x330 + x332 + x333 + x334 ++ x336 + x337 + x341 + x346 + x356 + x360 + x362 + x363 + x365 + x366 ++ x368 + x370 + x374 + x376 + x379 + x381 + x382 + x398 + x400 + x404 ++ x406 + x407 + x410 + x411 + x453 + x454 + x455 + x456 + x458 + x459 ++ x460 + x461 + x462 + x463 + x464 + x469 + x477 + x479 + x496 + x499 + <= 1 + +x47 + x48 + x58 + x60 + x75 + x76 + x77 + x78 + x79 + x127 ++ x129 + x130 + x136 + x148 + x149 + x150 + x153 + x154 + x190 + x191 ++ x192 + x200 + x201 + x203 + x205 + x208 + x265 + x269 + x277 + x278 ++ x280 + x281 + x292 + x293 + x294 + x295 + x296 + x297 + x299 + x300 ++ x327 + x328 + x329 + x330 + x331 + x332 + x333 + x334 + x336 + x337 ++ x346 + x356 + x366 + x367 + x369 + x374 + x381 + x382 + x383 + x384 ++ x400 + x403 + x404 + x406 + x407 + x410 + x411 + x453 + x454 + x456 ++ x458 + x459 + x460 + x461 + x462 + x464 <= 1 + +x48 + x57 + x60 + x75 + x76 + x77 + x78 + x80 + x127 + x129 ++ x130 + x148 + x150 + x151 + x153 + x154 + x190 + x191 + x192 + x201 ++ x207 + x208 + x236 + x237 + x277 + x279 + x280 + x281 + x292 + x294 ++ x295 + x296 + x297 + x300 + x331 + x333 + x334 + x336 + x346 + x356 ++ x366 + x367 + x369 + x371 + x381 + x382 + x383 + x384 + x403 + x411 ++ x453 + x458 + x460 + x461 + x462 + x464 <= 1 + +x3 + x18 + x19 + x22 + x39 + x47 + x59 + x122 + x123 + x188 ++ x189 + x191 + x192 + x193 + x200 + x203 + x207 + x246 + x258 + x259 ++ x263 + x264 + x265 + x266 + x267 + x268 + x296 + x381 + x391 + x392 ++ x394 + x396 + x412 + x417 + x438 + x441 <= 1 + +x3 + x19 + x20 + x21 + x22 + x23 + x39 + x47 + x123 + x125 ++ x132 + x189 + x191 + x193 + x200 + x202 + x203 + x205 + x206 + x246 ++ x258 + x263 + x264 + x265 + x266 + x267 + x268 + x283 + x284 + x293 ++ x295 + x296 + x297 + x379 + x381 + x391 + x392 + x393 + x394 + x396 ++ x417 + x438 + x441 + x500 <= 1 + +x3 + x18 + x20 + x22 + x23 + x47 + x120 + x121 + x123 + x125 ++ x129 + x157 + x173 + x188 + x189 + x191 + x193 + x198 + x200 + x202 ++ x203 + x206 + x258 + x260 + x262 + x263 + x264 + x265 + x266 + x267 ++ x268 + x283 + x285 + x292 + x293 + x295 + x296 + x297 + x335 + x337 ++ x376 + x379 + x381 + x391 + x392 + x393 + x394 + x395 + x396 + x438 ++ x461 <= 1 + +x44 + x47 + x99 + x116 + x118 + x125 + x128 + x129 + x159 + x173 ++ x190 + x191 + x193 + x198 + x200 + x202 + x203 + x242 + x255 + x258 ++ x260 + x262 + x263 + x265 + x266 + x267 + x268 + x292 + x293 + x294 ++ x295 + x296 + x297 + x335 + x337 + x338 + x379 + x381 + x391 + x392 ++ x395 + x396 + x440 + x457 + x461 + x491 <= 1 + +x44 + x46 + x99 + x116 + x118 + x120 + x125 + x128 + x129 + x130 ++ x150 + x151 + x152 + x153 + x159 + x190 + x191 + x193 + x198 + x200 ++ x202 + x203 + x242 + x246 + x258 + x260 + x261 + x262 + x263 + x265 ++ x266 + x267 + x268 + x271 + x292 + x293 + x294 + x295 + x296 + x297 ++ x334 + x335 + x337 + x338 + x368 + x380 + x381 + x382 + x392 + x396 ++ x408 + x432 + x455 + x457 + x460 + x461 + x464 + x478 + x491 <= 1 + +x23 + x37 + x58 + x98 + x115 + x116 + x120 + x128 + x129 + x130 ++ x131 + x136 + x150 + x151 + x152 + x153 + x155 + x159 + x174 + x190 ++ x191 + x198 + x200 + x201 + x202 + x203 + x241 + x242 + x258 + x259 ++ x260 + x261 + x262 + x263 + x265 + x266 + x267 + x292 + x293 + x294 ++ x295 + x296 + x297 + x299 + x303 + x333 + x334 + x335 + x337 + x338 ++ x368 + x381 + x392 + x395 + x400 + x406 + x410 + x432 + x433 + x434 ++ x455 + x458 + x459 + x460 + x461 + x463 + x464 + x477 + x478 <= 1 + +x23 + x38 + x45 + x49 + x58 + x79 + x98 + x101 + x102 + x116 ++ x120 + x128 + x129 + x130 + x131 + x136 + x145 + x146 + x150 + x151 ++ x152 + x153 + x154 + x155 + x184 + x189 + x190 + x191 + x198 + x199 ++ x200 + x203 + x205 + x208 + x259 + x260 + x261 + x262 + x265 + x268 ++ x272 + x292 + x293 + x294 + x295 + x296 + x297 + x299 + x303 + x327 ++ x329 + x330 + x331 + x333 + x334 + x335 + x336 + x337 + x338 + x368 ++ x381 + x382 + x392 + x400 + x406 + x410 + x453 + x454 + x455 + x456 ++ x458 + x459 + x460 + x461 + x462 + x463 + x464 + x477 + x479 + x480 + <= 1 + +x23 + x49 + x58 + x75 + x79 + x101 + x131 + x136 + x145 + x146 ++ x148 + x149 + x150 + x151 + x152 + x153 + x154 + x155 + x191 + x198 ++ x199 + x201 + x203 + x205 + x208 + x261 + x262 + x265 + x277 + x292 ++ x293 + x294 + x295 + x296 + x297 + x299 + x303 + x327 + x328 + x329 ++ x330 + x331 + x333 + x334 + x336 + x337 + x341 + x381 + x382 + x392 ++ x400 + x404 + x406 + x407 + x410 + x411 + x453 + x454 + x455 + x456 ++ x458 + x459 + x460 + x461 + x462 + x463 + x464 + x479 + x480 <= 1 + +x58 + x75 + x78 + x79 + x136 + x145 + x147 + x150 + x151 + x153 ++ x154 + x155 + x190 + x191 + x201 + x203 + x208 + x261 + x265 + x269 ++ x277 + x278 + x281 + x292 + x294 + x295 + x296 + x297 + x299 + x327 ++ x329 + x331 + x332 + x333 + x334 + x336 + x367 + x369 + x381 + x382 ++ x383 + x392 + x407 + x410 + x453 + x454 + x456 + x458 + x459 + x460 ++ x461 + x462 + x464 + x480 + x490 <= 1 + +x58 + x75 + x78 + x80 + x145 + x148 + x150 + x151 + x153 + x154 ++ x155 + x190 + x191 + x192 + x201 + x208 + x217 + x227 + x236 + x277 ++ x281 + x292 + x294 + x295 + x297 + x299 + x327 + x331 + x333 + x334 ++ x367 + x369 + x382 + x383 + x384 + x387 + x390 + x453 + x456 + x459 ++ x460 + x461 + x462 + x464 + x490 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 + x22 + x23 <= 1 + +x24 + x25 + x26 + x27 + x28 + x29 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 <= 1 + +x36 + x37 + x38 + x39 + x40 + x41 <= 1 + +x42 + x43 <= 1 + +x44 + x45 + x46 + x47 + x48 + x49 <= 1 + +x50 + x51 + x52 + x53 + x54 + x55 <= 1 + +x57 + x58 + x59 + x60 + x61 + x62 <= 1 + +x63 + x64 + x65 + x66 + x67 + x68 <= 1 + +x69 + x70 + x71 + x72 + x73 + x74 <= 1 + +x75 + x76 + x77 + x78 + x79 + x80 <= 1 + +x81 + x82 + x83 <= 1 + +x85 + x86 + x87 + x88 + x89 + x90 <= 1 + +x92 + x93 + x94 + x95 + x96 <= 1 + +x97 + x98 + x99 + x100 + x101 + x102 <= 1 + +x103 + x104 + x105 <= 1 + +x106 + x107 + x108 <= 1 + +x109 + x110 + x111 + x112 <= 1 + +x115 + x116 + x117 + x118 + x119 + x120 <= 1 + +x121 + x122 + x123 + x124 + x125 + x126 <= 1 + +x127 + x128 + x129 + x130 + x131 + x132 <= 1 + +x133 + x134 + x135 + x136 + x137 + x138 <= 1 + +x139 + x140 + x141 + x142 + x143 + x144 <= 1 + +x145 + x146 + x147 + x148 + x149 <= 1 + +x150 + x151 + x152 + x153 + x154 + x155 <= 1 + +x156 + x157 + x158 + x159 + x160 + x161 <= 1 + +x162 + x163 + x164 + x165 + x166 + x167 <= 1 + +x168 + x169 <= 1 + +x170 + x171 + x172 + x173 + x174 + x175 <= 1 + +x176 + x177 + x178 + x179 + x180 + x181 <= 1 + +x182 + x183 + x184 + x185 + x186 + x187 <= 1 + +x188 + x189 + x190 + x191 + x192 + x193 <= 1 + +x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 <= 1 + +x215 + x216 <= 1 + +x218 + x219 + x220 + x221 + x222 + x223 <= 1 + +x224 + x225 + x226 + x227 + x228 + x229 <= 1 + +x230 + x231 + x232 + x233 + x234 <= 1 + +x235 + x236 + x237 + x238 + x239 + x240 <= 1 + +x241 + x242 + x243 + x244 + x245 + x246 <= 1 + +x247 + x248 + x249 <= 1 + +x250 + x251 + x252 + x253 + x254 + x255 <= 1 + +x256 + x257 <= 1 + +x258 + x259 + x260 + x261 + x262 + x263 <= 1 + +x264 + x265 + x266 + x267 + x268 + x269 <= 1 + +x270 + x271 + x272 + x273 + x274 <= 1 + +x275 + x276 <= 1 + +x277 + x278 + x279 + x280 + x281 + x282 <= 1 + +x283 + x284 + x285 <= 1 + +x286 + x287 + x288 + x289 + x290 + x291 <= 1 + +x292 + x293 + x294 + x295 + x296 + x297 <= 1 + +x298 + x299 + x300 + x301 + x302 + x303 <= 1 + +x304 + x305 + x306 + x307 <= 1 + +x308 + x309 + x310 + x311 + x312 + x313 <= 1 + +x314 + x315 <= 1 + +x317 + x318 + x319 + x320 + x321 + x322 <= 1 + +x323 + x324 + x325 + x326 <= 1 + +x327 + x328 + x329 + x330 + x331 + x332 <= 1 + +x333 + x334 + x335 + x336 + x337 + x338 <= 1 + +x339 + x340 + x341 + x342 + x343 + x344 <= 1 + +x345 + x346 + x347 + x348 + x349 + x350 <= 1 + +x351 + x352 + x353 + x354 + x355 + x356 <= 1 + +x357 + x358 <= 1 + + <= 1 + +x360 + x361 + x362 + x363 + x364 + x365 <= 1 + +x366 + x367 + x368 + x369 + x370 + x371 <= 1 + +x373 + x374 + x375 + x376 + x377 + x378 <= 1 + +x379 + x380 + x381 + x382 + x383 + x384 <= 1 + +x385 + x386 + x387 + x388 + x389 + x390 <= 1 + +x391 + x392 + x393 + x394 + x395 + x396 <= 1 + +x397 + x398 + x399 + x400 + x401 + x402 <= 1 + +x403 + x404 + x405 <= 1 + +x406 + x407 + x408 + x409 + x410 + x411 <= 1 + +x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 + x422 + x423 <= 1 + +x425 + x426 + x427 + x428 + x429 + x430 <= 1 + +x431 + x432 + x433 + x434 + x435 <= 1 + +x436 + x437 + x438 + x439 + x440 + x441 <= 1 + +x442 + x443 + x444 + x445 + x446 <= 1 + +x447 + x448 + x449 + x450 + x451 + x452 <= 1 + +x453 + x454 + x455 + x456 + x457 + x458 <= 1 + +x459 + x460 + x461 + x462 + x463 + x464 <= 1 + +x465 + x466 + x467 + x468 + x469 + x470 <= 1 + +x472 + x473 + x474 + x475 + x476 <= 1 + +x477 + x478 + x479 + x480 <= 1 + +x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x492 + x493 + x494 + x495 <= 1 + +x496 + x497 + x498 + x499 + x500 + x501 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0015.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0015.lp new file mode 100644 index 000000000..40306f17c --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0015.lp @@ -0,0 +1,1049 @@ +max + +78.5424x0 + 491.182x1 + 438.962x2 + 341.335x3 + 325.517x4 + 161.452x5 + 215.406x6 + 160.207x7 + 121.741x8 + 383.052x9 + +540.39x10 + 457.766x11 + 440x12 + 436.308x13 + 392.641x14 + 255.534x15 + 350.945x16 + 324.868x17 + 296.235x18 + 269.208x19 + +240.159x20 + 1704.37x21 + 2207.46x22 + 2143.7x23 + 2142.12x24 + 2131.24x25 + 2103.21x26 + 90.1545x27 + 860.306x28 + 1249.36x29 + +1097.1x30 + 1079.39x31 + 1009.36x32 + 939.755x33 + 880.141x34 + 921.906x35 + 897.375x36 + 852.085x37 + 847.823x38 + 839.699x39 + +275.316x40 + 387.833x41 + 344.031x42 + 341.878x43 + 262.818x44 + 132.123x45 + 735.873x46 + 791.852x47 + 776.626x48 + 771.83x49 + +745.534x50 + 733.279x51 + 1189.94x52 + 1657.52x53 + 1570.51x54 + 1554.96x55 + 1552.44x56 + 1527.25x57 + 119.764x58 + 295.87x59 + +419.567x60 + 281.74x61 + 269.854x62 + 243.069x63 + 229.023x64 + 624.822x65 + 682.163x66 + 615.671x67 + 580.212x68 + 549.726x69 + +536.624x70 + 117.324x71 + 127.078x72 + 1013.73x73 + 1123.37x74 + 996.363x75 + 989.267x76 + 934.402x77 + 931.005x78 + 368.032x79 + +475.327x80 + 426.648x81 + 403.699x82 + 400.732x83 + 391.423x84 + 408.783x85 + 528.855x86 + 521.346x87 + 510.799x88 + 452.296x89 + +431.119x90 + 401.996x91 + 587.517x92 + 472.496x93 + 452.113x94 + 427.512x95 + 400.06x96 + 507.148x97 + 687.89x98 + 644.018x99 + +625.401x100 + 621.597x101 + 600.262x102 + 1071.66x103 + 1049.81x104 + 1024.28x105 + 1020.12x106 + 999.629x107 + 901.311x108 + 164.843x109 + +211.725x110 + 101.307x111 + 90.5037x112 + 236.561x113 + 274.409x114 + 243.682x115 + 169.656x116 + 169.307x117 + 156.296x118 + 780.916x119 + +989.012x120 + 964.247x121 + 950.309x122 + 944.816x123 + 932.387x124 + 157.221x125 + 180.671x126 + 133.146x127 + 79.63x128 + 77.7877x129 + +581.511x130 + 610.464x131 + 603.538x132 + 597.498x133 + 489.429x134 + 489.207x135 + 356.294x136 + 494.254x137 + 478.543x138 + 391.382x139 + +388.265x140 + 330.706x141 + 424.415x142 + 619.258x143 + 569.338x144 + 543.015x145 + 496.414x146 + 482.648x147 + 1092.39x148 + 1530.02x149 + +1477.2x150 + 1455.75x151 + 1352.4x152 + 1327.53x153 + 516.983x154 + 689.765x155 + 551.283x156 + 551.169x157 + 547.237x158 + 542.31x159 + +767.573x160 + 913.396x161 + 902.178x162 + 853.067x163 + 852.897x164 + 830.062x165 + 334.136x166 + 417.749x167 + 414.659x168 + 382.749x169 + +298.891x170 + 293.631x171 + 229.605x172 + 297.733x173 + 283.715x174 + 260.447x175 + 228.259x176 + 272.082x177 + 319.229x178 + 237.638x179 + +227.822x180 + 84.7515x181 + 1008.89x182 + 1242.14x183 + 1171.93x184 + 1112.16x185 + 1109.17x186 + 1072.91x187 + 1136.19x188 + 1207.14x189 + +1206.13x190 + 1174.44x191 + 1147.86x192 + 1131.27x193 + 154.257x194 + 122.361x195 + 113.273x196 + 71.463x197 + 1991.71x198 + 2395.88x199 + +2345.91x200 + 2230.87x201 + 2223.39x202 + 2173.78x203 + 128.727x204 + 191.668x205 + 121.854x206 + 247.685x207 + 325.338x208 + 306.563x209 + +275.507x210 + 248.843x211 + 203.321x212 + 174.283x213 + 241.733x214 + 605.225x215 + 825.138x216 + 822.01x217 + 810.455x218 + 794.677x219 + +753.876x220 + 7.63654x221 + 687.4x222 + 958.501x223 + 954.948x224 + 894.678x225 + 884.006x226 + 852.841x227 + 1068.99x228 + 1543.63x229 + +1468.83x230 + 1320.45x231 + 1317.28x232 + 1294.2x233 + 1237.22x234 + 1677.56x235 + 1572.52x236 + 1568.88x237 + 1524.71x238 + 1506.1x239 + +794.38x240 + 958.475x241 + 902.585x242 + 896.302x243 + 881.55x244 + 872.764x245 + 764.342x246 + 907.255x247 + 839.398x248 + 832.788x249 + +817.629x250 + 801.039x251 + 294.658x252 + 424.751x253 + 392.522x254 + 342.087x255 + 338.321x256 + 292.108x257 + 406.252x258 + 516.269x259 + +454.472x260 + 443.379x261 + 396.433x262 + 360.295x263 + 202.479x264 + 291.381x265 + 220.514x266 + 216.159x267 + 241.022x268 + 289.316x269 + +236.542x270 + 224.501x271 + 147.271x272 + 353.661x273 + 429.358x274 + 367.414x275 + 307.645x276 + 306.635x277 + 294.037x278 + 558.838x279 + +620.651x280 + 575.535x281 + 559.788x282 + 540.465x283 + 521.599x284 + 55.1983x285 + 287.665x286 + 349.535x287 + 339.583x288 + 305.301x289 + +280.379x290 + 987.764x291 + 1155.3x292 + 1133.8x293 + 1129.97x294 + 1116.53x295 + 1080.9x296 + 959.448x297 + 1095.72x298 + 1068.4x299 + +1028.79x300 + 961.339x301 + 935.495x302 + 421.955x303 + 541.48x304 + 499.067x305 + 486.929x306 + 475.76x307 + 408.365x308 + 316.817x309 + +469.696x310 + 365.523x311 + 270.245x312 + 226.576x313 + 232.105x314 + 339.927x315 + 288.13x316 + 257.251x317 + 198.376x318 + 170.609x319 + +478.326x320 + 587.877x321 + 582.035x322 + 526.674x323 + 523.808x324 + 394.644x325 + 485.886x326 + 664.964x327 + 642.01x328 + 614.201x329 + +598.484x330 + 598.355x331 + 952.007x332 + 1021.32x333 + 989.335x334 + 953.917x335 + 906.291x336 + 888.217x337 + 621.8x338 + 882.998x339 + +856.278x340 + 848.727x341 + 798.83x342 + 796.81x343 + 582.825x344 + 670.598x345 + 652.273x346 + 627.907x347 + 618.239x348 + 593.817x349 + +102.082x350 + 143.367x351 + 355.344x352 + 529.738x353 + 500.959x354 + 497.485x355 + 438.436x356 + 351.473x357 + 375.861x358 + 506.443x359 + +492.614x360 + 476.278x361 + 465.967x362 + 447.35x363 + 666.057x364 + 709.369x365 + 675.261x366 + 620.484x367 + 618.582x368 + 581.114x369 + +168.148x370 + 239.085x371 + 202.354x372 + 120.565x373 + 853.727x374 + 814.696x375 + 807.174x376 + 775.381x377 + 774.837x378 + 766.185x379 + +97.7717x380 + 188.317x381 + 267.156x382 + 260.871x383 + 189.334x384 + 136.619x385 + 595.433x386 + 877.968x387 + 782.113x388 + 694.123x389 + +687.357x390 + 664.703x391 + 1379.52x392 + 1639.82x393 + 1619.55x394 + 1614.73x395 + 1579.5x396 + 1541.97x397 + 980.688x398 + 966.995x399 + +947.728x400 + 924.433x401 + 887.81x402 + 884.523x403 + 2121.81x404 + 2376.77x405 + 2358.27x406 + 2335.67x407 + 2310.91x408 + 2308.36x409 + +237.632x410 + 197.612x411 + 142.928x412 + 222.119x413 + 241.432x414 + 240.742x415 + 148.827x416 + 618.574x417 + 927.173x418 + 900.188x419 + +882.801x420 + 854.538x421 + 802.315x422 + 73.3312x423 + 34.2356x424 + 173.187x425 + 140.221x426 + 414.874x427 + 401.684x428 + 397.692x429 + +295.66x430 + 278.951x431 + 238.641x432 + 322.265x433 + 402.526x434 + 357.495x435 + 324.108x436 + 283.69x437 + 200.677x438 + 195.969x439 + +163.593x440 + 106.963x441 + 1350.38x442 + 1348.3x443 + 1332.55x444 + 1317.86x445 + 1291.03x446 + 1277.33x447 + 197.637x448 + 181.643x449 + +174.533x450 + 72.6764x451 + 76.1273x452 + 206.761x453 + 307.488x454 + 284.402x455 + 268.275x456 + 264.102x457 + 206.074x458 + 183.954x459 + +175.239x460 + 149.642x461 + 672.444x462 + 976.707x463 + 924.851x464 + 912.68x465 + 906.711x466 + 902.282x467 + 699.28x468 + 685.793x469 + +678.753x470 + 674.002x471 + 661.311x472 + 629.478x473 + 179.658x474 + 234.354x475 + 204.489x476 + 172.989x477 + 170.901x478 + 4080.47x479 + +4769.47x480 + 4602.51x481 + 4586.63x482 + 4556.74x483 + 4549.36x484 + 1018.78x485 + 1365.57x486 + 1226.86x487 + 1216.5x488 + 1180.53x489 + +1156.5x490 + 134.681x491 + 134.417x492 + 174.595x493 + 220.244x494 + 69.2125x495 + 656.301x496 + 806.537x497 + 681.76x498 + 675.36x499 + +603.726x500 + 598.682x501 + +st + +x25 + x78 + x137 + x162 + x199 + x200 + x203 + x226 + x238 + x255 ++ x260 + x291 + x292 + x339 + x342 + x369 + x370 + x371 + x375 + x380 ++ x392 + x401 + x406 + x407 + x436 + x479 + x480 + x481 + x482 + x483 ++ x484 + x485 + x486 + x487 + x488 + x490 <= 1 + +x73 + x75 + x78 + x162 + x200 + x203 + x291 + x292 + x293 + x339 ++ x355 + x369 + x370 + x373 + x392 + x401 + x402 + x471 + x479 + x480 ++ x481 + x482 + x483 + x484 + x485 + x486 + x488 + x490 <= 1 + +x73 + x75 + x78 + x98 + x100 + x165 + x191 + x200 + x203 + x252 ++ x255 + x293 + x339 + x355 + x364 + x365 + x366 + x369 + x373 + x398 ++ x401 + x407 + x419 + x471 + x479 + x480 + x482 + x483 + x484 + x485 ++ x488 + x490 + x494 <= 1 + +x24 + x75 + x78 + x98 + x102 + x114 + x143 + x146 + x160 + x162 ++ x164 + x171 + x181 + x203 + x225 + x232 + x234 + x255 + x293 + x325 ++ x339 + x352 + x353 + x355 + x364 + x365 + x366 + x369 + x373 + x398 ++ x401 + x405 + x407 + x434 + x438 + x471 + x480 + x481 + x482 + x483 ++ x484 + x485 + x488 + x490 <= 1 + +x23 + x38 + x48 + x75 + x78 + x98 + x114 + x144 + x160 + x161 ++ x162 + x164 + x165 + x185 + x216 + x217 + x225 + x231 + x232 + x234 ++ x293 + x325 + x352 + x353 + x355 + x356 + x357 + x364 + x365 + x366 ++ x367 + x369 + x387 + x392 + x395 + x402 + x405 + x407 + x433 + x434 ++ x435 + x464 + x466 + x467 + x471 + x480 + x482 + x483 + x484 + x488 ++ x490 <= 1 + +x21 + x23 + x30 + x34 + x38 + x75 + x109 + x112 + x160 + x161 ++ x163 + x164 + x165 + x185 + x200 + x216 + x217 + x218 + x228 + x231 ++ x233 + x249 + x293 + x325 + x338 + x340 + x352 + x354 + x357 + x361 ++ x365 + x387 + x402 + x405 + x434 + x442 + x447 + x462 + x464 + x465 ++ x466 + x467 + x480 + x481 + x482 + x483 + x484 <= 1 + +x21 + x23 + x25 + x30 + x34 + x38 + x46 + x50 + x109 + x110 ++ x112 + x116 + x148 + x160 + x161 + x163 + x164 + x185 + x200 + x215 ++ x218 + x221 + x231 + x249 + x352 + x357 + x361 + x387 + x405 + x409 ++ x447 + x462 + x464 + x465 + x466 + x480 + x481 + x482 + x483 + x484 + <= 1 + +x21 + x23 + x33 + x38 + x50 + x51 + x110 + x116 + x117 + x148 ++ x161 + x163 + x182 + x185 + x231 + x233 + x245 + x246 + x250 + x357 ++ x360 + x361 + x362 + x387 + x395 + x422 + x462 + x463 + x464 + x465 ++ x466 + x479 + x480 + x481 + x482 + x483 + x484 + x486 <= 1 + +x21 + x25 + x27 + x33 + x38 + x46 + x48 + x51 + x54 + x81 ++ x82 + x83 + x119 + x148 + x182 + x185 + x231 + x245 + x246 + x248 ++ x250 + x251 + x261 + x262 + x293 + x329 + x357 + x360 + x361 + x387 ++ x395 + x404 + x413 + x414 + x415 + x462 + x463 + x464 + x465 + x466 ++ x479 + x480 + x481 + x482 + x483 + x484 + x486 <= 1 + +x33 + x46 + x48 + x51 + x79 + x81 + x82 + x83 + x119 + x148 ++ x182 + x185 + x231 + x250 + x251 + x257 + x280 + x293 + x404 + x462 ++ x465 + x479 + x480 <= 1 + +x21 + x25 + x78 + x199 + x200 + x203 + x226 + x238 + x255 + x260 ++ x291 + x292 + x339 + x342 + x343 + x392 + x406 + x479 + x480 + x481 ++ x482 + x483 + x484 + x485 + x486 + x487 + x488 + x490 <= 1 + +x25 + x78 + x162 + x165 + x199 + x202 + x203 + x226 + x252 + x255 ++ x291 + x292 + x339 + x369 + x370 + x371 + x372 + x392 + x401 + x402 ++ x406 + x407 + x436 + x479 + x480 + x481 + x482 + x483 + x484 + x485 ++ x487 + x488 + x490 + x493 + x494 + x495 <= 1 + +x21 + x28 + x38 + x48 + x75 + x78 + x97 + x98 + x99 + x100 ++ x102 + x162 + x164 + x165 + x185 + x203 + x216 + x226 + x252 + x255 ++ x291 + x292 + x293 + x339 + x355 + x364 + x365 + x366 + x367 + x369 ++ x372 + x392 + x398 + x401 + x402 + x407 + x436 + x467 + x480 + x481 ++ x482 + x483 + x484 + x488 + x490 + x493 + x494 + x495 <= 1 + +x21 + x23 + x24 + x28 + x35 + x37 + x38 + x48 + x75 + x78 ++ x97 + x98 + x100 + x101 + x102 + x114 + x143 + x146 + x160 + x161 ++ x162 + x164 + x165 + x181 + x185 + x216 + x228 + x231 + x232 + x234 ++ x255 + x293 + x325 + x338 + x339 + x352 + x353 + x355 + x356 + x358 ++ x363 + x364 + x365 + x366 + x367 + x369 + x398 + x401 + x402 + x405 ++ x407 + x433 + x434 + x435 + x436 + x438 + x465 + x467 + x471 + x480 ++ x481 + x482 + x483 + x484 + x485 + x488 + x490 <= 1 + +x12 + x21 + x23 + x24 + x34 + x38 + x48 + x52 + x75 + x78 ++ x98 + x100 + x102 + x114 + x115 + x133 + x142 + x143 + x144 + x145 ++ x160 + x161 + x162 + x164 + x165 + x181 + x185 + x216 + x217 + x228 ++ x229 + x231 + x233 + x234 + x320 + x325 + x338 + x352 + x353 + x354 ++ x355 + x363 + x364 + x365 + x366 + x387 + x395 + x402 + x405 + x406 ++ x407 + x433 + x434 + x465 + x466 + x467 + x471 + x480 + x481 + x482 ++ x483 + x484 + x485 + x488 + x490 <= 1 + +x12 + x21 + x23 + x111 + x112 + x113 + x114 + x115 + x142 + x145 ++ x146 + x160 + x161 + x162 + x163 + x198 + x200 + x215 + x216 + x217 ++ x218 + x220 + x228 + x229 + x231 + x233 + x293 + x325 + x338 + x340 ++ x353 + x354 + x355 + x356 + x357 + x360 + x361 + x362 + x364 + x387 ++ x395 + x402 + x405 + x406 + x409 + x462 + x463 + x465 + x466 + x467 ++ x479 + x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x12 + x21 + x23 + x25 + x28 + x33 + x34 + x36 + x50 + x55 ++ x57 + x109 + x110 + x111 + x113 + x115 + x116 + x117 + x118 + x119 ++ x124 + x142 + x152 + x161 + x163 + x164 + x185 + x198 + x200 + x215 ++ x218 + x219 + x220 + x221 + x231 + x233 + x244 + x250 + x338 + x353 ++ x357 + x360 + x361 + x362 + x387 + x395 + x402 + x409 + x447 + x462 ++ x463 + x464 + x465 + x466 + x479 + x480 + x481 + x482 + x483 + x484 + <= 1 + +x21 + x25 + x33 + x34 + x46 + x50 + x51 + x80 + x81 + x82 ++ x113 + x117 + x119 + x147 + x148 + x161 + x163 + x182 + x185 + x199 ++ x215 + x231 + x235 + x246 + x249 + x250 + x287 + x307 + x322 + x357 ++ x358 + x360 + x362 + x387 + x395 + x397 + x422 + x462 + x463 + x464 ++ x465 + x480 + x481 + x482 + x483 + x484 <= 1 + +x18 + x21 + x25 + x33 + x46 + x48 + x51 + x54 + x57 + x79 ++ x80 + x81 + x82 + x83 + x119 + x148 + x161 + x163 + x180 + x182 ++ x185 + x189 + x199 + x201 + x231 + x237 + x246 + x248 + x249 + x250 ++ x251 + x258 + x261 + x262 + x263 + x287 + x289 + x293 + x301 + x360 ++ x395 + x397 + x414 + x415 + x422 + x462 + x463 + x464 + x465 + x480 ++ x481 + x482 + x483 + x484 <= 1 + +x25 + x33 + x46 + x48 + x51 + x54 + x79 + x81 + x82 + x83 ++ x119 + x148 + x180 + x182 + x185 + x199 + x237 + x246 + x248 + x249 ++ x250 + x251 + x261 + x280 + x293 + x413 + x414 + x416 + x462 + x464 ++ x465 + x466 + x480 + x481 + x483 <= 1 + +x21 + x24 + x66 + x96 + x97 + x198 + x226 + x254 + x255 + x291 ++ x343 + x389 + x392 + x437 + x471 + x479 + x480 + x481 + x482 + x483 ++ x484 + x487 + x488 + x490 <= 1 + +x21 + x24 + x37 + x66 + x78 + x86 + x96 + x97 + x198 + x199 ++ x226 + x230 + x253 + x254 + x291 + x292 + x302 + x339 + x343 + x365 ++ x392 + x401 + x402 + x406 + x471 + x479 + x480 + x481 + x482 + x483 ++ x484 + x485 + x487 + x488 + x490 <= 1 + +x21 + x24 + x35 + x37 + x45 + x75 + x78 + x86 + x97 + x98 ++ x99 + x100 + x101 + x102 + x143 + x145 + x160 + x162 + x164 + x203 ++ x216 + x231 + x291 + x292 + x293 + x325 + x339 + x363 + x364 + x365 ++ x366 + x369 + x372 + x392 + x398 + x401 + x402 + x406 + x407 + x433 ++ x434 + x435 + x436 + x438 + x465 + x467 + x468 + x471 + x479 + x480 ++ x481 + x482 + x483 + x484 + x485 + x488 + x490 + x493 <= 1 + +x21 + x24 + x28 + x34 + x35 + x37 + x52 + x62 + x75 + x78 ++ x97 + x98 + x100 + x101 + x102 + x144 + x145 + x146 + x160 + x162 ++ x164 + x165 + x198 + x216 + x217 + x228 + x231 + x234 + x293 + x352 ++ x353 + x356 + x358 + x359 + x363 + x366 + x367 + x405 + x406 + x407 ++ x433 + x436 + x438 + x467 + x479 + x481 + x482 + x483 + x484 + x485 ++ x488 + x489 + x490 <= 1 + +x5 + x6 + x21 + x24 + x28 + x34 + x35 + x37 + x38 + x52 ++ x75 + x78 + x98 + x100 + x102 + x118 + x133 + x142 + x143 + x144 ++ x145 + x160 + x164 + x165 + x177 + x181 + x190 + x198 + x215 + x228 ++ x229 + x233 + x234 + x320 + x332 + x336 + x338 + x343 + x352 + x354 ++ x356 + x358 + x359 + x360 + x363 + x367 + x402 + x405 + x406 + x407 ++ x438 + x466 + x467 + x479 + x480 + x482 + x483 + x484 + x485 + x488 ++ x490 <= 1 + +x5 + x6 + x12 + x21 + x23 + x25 + x26 + x28 + x34 + x46 ++ x49 + x50 + x56 + x100 + x111 + x113 + x115 + x116 + x118 + x124 ++ x142 + x145 + x146 + x160 + x161 + x165 + x191 + x198 + x200 + x215 ++ x216 + x218 + x219 + x220 + x229 + x232 + x233 + x247 + x334 + x340 ++ x353 + x354 + x356 + x358 + x360 + x361 + x362 + x363 + x367 + x387 ++ x395 + x405 + x406 + x407 + x409 + x438 + x462 + x466 + x479 + x480 ++ x481 + x482 + x483 + x484 <= 1 + +x21 + x23 + x25 + x28 + x31 + x32 + x33 + x46 + x47 + x49 ++ x50 + x54 + x55 + x57 + x92 + x113 + x115 + x116 + x118 + x119 ++ x120 + x121 + x122 + x124 + x142 + x147 + x148 + x163 + x185 + x189 ++ x191 + x198 + x201 + x215 + x218 + x219 + x220 + x233 + x244 + x247 ++ x250 + x261 + x286 + x287 + x288 + x289 + x334 + x354 + x356 + x362 ++ x363 + x367 + x387 + x395 + x397 + x405 + x409 + x461 + x462 + x463 ++ x464 + x466 + x479 + x480 + x482 + x483 + x484 <= 1 + +x25 + x33 + x46 + x47 + x48 + x49 + x51 + x53 + x54 + x55 ++ x57 + x73 + x82 + x108 + x117 + x119 + x120 + x121 + x124 + x147 ++ x148 + x161 + x163 + x185 + x189 + x192 + x199 + x201 + x236 + x237 ++ x244 + x246 + x249 + x250 + x251 + x258 + x260 + x261 + x262 + x263 ++ x286 + x287 + x289 + x307 + x354 + x387 + x395 + x397 + x405 + x409 ++ x415 + x422 + x462 + x463 + x464 + x465 + x479 + x480 + x481 + x482 ++ x483 + x484 <= 1 + +x18 + x23 + x25 + x33 + x47 + x48 + x51 + x54 + x57 + x79 ++ x80 + x81 + x83 + x84 + x117 + x119 + x121 + x147 + x148 + x163 ++ x180 + x189 + x199 + x201 + x231 + x246 + x248 + x249 + x250 + x251 ++ x258 + x261 + x262 + x263 + x287 + x289 + x293 + x307 + x318 + x395 ++ x396 + x397 + x440 + x462 + x463 + x464 + x479 + x480 + x482 + x483 ++ x484 <= 1 + +x23 + x25 + x46 + x48 + x51 + x52 + x54 + x57 + x79 + x80 ++ x81 + x82 + x83 + x84 + x119 + x121 + x153 + x177 + x180 + x182 ++ x188 + x199 + x201 + x246 + x248 + x249 + x250 + x251 + x287 + x293 ++ x395 + x397 + x413 + x416 + x441 + x462 + x464 + x465 + x479 + x481 ++ x484 <= 1 + +x10 + x21 + x24 + x30 + x58 + x60 + x96 + x101 + x199 + x226 ++ x282 + x291 + x302 + x332 + x335 + x343 + x407 + x437 + x446 + x471 ++ x479 + x480 + x481 + x482 + x483 + x484 + x485 + x487 + x488 <= 1 + +x5 + x24 + x30 + x52 + x63 + x86 + x101 + x102 + x103 + x120 ++ x198 + x199 + x224 + x253 + x254 + x257 + x302 + x319 + x332 + x336 ++ x359 + x375 + x407 + x437 + x442 + x446 + x447 + x456 + x471 + x479 ++ x480 + x481 + x482 + x483 + x484 + x485 + x486 + x487 + x488 + x489 ++ x490 <= 1 + +x5 + x21 + x24 + x35 + x37 + x59 + x62 + x63 + x97 + x99 ++ x100 + x101 + x102 + x144 + x145 + x160 + x179 + x198 + x199 + x228 ++ x233 + x253 + x254 + x257 + x292 + x302 + x332 + x333 + x335 + x363 ++ x382 + x401 + x406 + x407 + x433 + x435 + x437 + x467 + x468 + x479 ++ x480 + x481 + x482 + x483 + x484 + x485 + x486 + x487 + x488 + x490 + <= 1 + +x5 + x21 + x24 + x34 + x35 + x37 + x38 + x62 + x98 + x100 ++ x102 + x142 + x143 + x144 + x145 + x146 + x160 + x164 + x165 + x177 ++ x178 + x179 + x198 + x199 + x215 + x217 + x228 + x233 + x293 + x320 ++ x330 + x332 + x333 + x336 + x338 + x339 + x356 + x358 + x359 + x360 ++ x363 + x367 + x375 + x382 + x406 + x407 + x435 + x453 + x457 + x467 ++ x479 + x480 + x482 + x483 + x484 + x485 + x486 + x487 + x488 + x489 ++ x490 <= 1 + +x6 + x21 + x22 + x24 + x25 + x26 + x28 + x29 + x30 + x32 ++ x34 + x35 + x37 + x38 + x47 + x50 + x52 + x55 + x73 + x75 ++ x123 + x124 + x142 + x143 + x144 + x146 + x150 + x152 + x153 + x160 ++ x161 + x164 + x165 + x177 + x178 + x179 + x190 + x198 + x205 + x215 ++ x217 + x218 + x219 + x220 + x228 + x229 + x231 + x232 + x233 + x247 ++ x308 + x332 + x333 + x334 + x336 + x339 + x343 + x358 + x359 + x361 ++ x375 + x386 + x395 + x404 + x407 + x408 + x435 + x457 + x466 + x467 ++ x479 + x480 + x481 + x482 + x483 + x484 + x487 + x488 + x489 + x490 + <= 1 + +x6 + x21 + x23 + x26 + x28 + x31 + x33 + x51 + x55 + x56 ++ x57 + x67 + x68 + x73 + x107 + x120 + x123 + x124 + x143 + x145 ++ x152 + x164 + x178 + x186 + x190 + x198 + x215 + x217 + x218 + x219 ++ x220 + x223 + x233 + x247 + x261 + x286 + x288 + x305 + x308 + x334 ++ x339 + x343 + x354 + x358 + x362 + x386 + x387 + x392 + x397 + x398 ++ x404 + x408 + x462 + x479 + x480 + x481 + x482 + x483 + x484 + x488 ++ x490 <= 1 + +x18 + x21 + x23 + x25 + x28 + x29 + x31 + x32 + x33 + x46 ++ x47 + x49 + x50 + x51 + x53 + x54 + x55 + x57 + x68 + x73 ++ x107 + x118 + x120 + x121 + x122 + x123 + x124 + x138 + x142 + x147 ++ x152 + x163 + x187 + x190 + x191 + x192 + x201 + x215 + x218 + x219 ++ x220 + x225 + x231 + x244 + x247 + x260 + x261 + x267 + x286 + x288 ++ x289 + x290 + x301 + x303 + x304 + x306 + x308 + x362 + x367 + x392 ++ x394 + x395 + x397 + x408 + x461 + x462 + x464 + x466 + x477 + x479 ++ x482 + x483 <= 1 + +x21 + x23 + x25 + x33 + x46 + x47 + x48 + x49 + x50 + x51 ++ x53 + x54 + x55 + x57 + x68 + x73 + x80 + x119 + x120 + x121 ++ x122 + x123 + x124 + x147 + x148 + x153 + x163 + x187 + x189 + x190 ++ x192 + x199 + x201 + x202 + x203 + x218 + x231 + x244 + x246 + x247 ++ x248 + x249 + x258 + x260 + x263 + x290 + x301 + x307 + x378 + x392 ++ x395 + x396 + x397 + x408 + x421 + x440 + x459 + x460 + x462 + x464 ++ x479 + x480 + x482 + x487 <= 1 + +x23 + x25 + x47 + x54 + x55 + x57 + x73 + x84 + x107 + x119 ++ x121 + x122 + x123 + x124 + x147 + x148 + x183 + x187 + x189 + x190 ++ x199 + x201 + x246 + x248 + x249 + x250 + x251 + x258 + x262 + x263 ++ x306 + x386 + x392 + x394 + x395 + x396 + x397 + x406 + x439 + x440 ++ x464 + x479 + x480 + x484 <= 1 + +x23 + x25 + x47 + x48 + x52 + x54 + x55 + x57 + x79 + x84 ++ x119 + x121 + x122 + x147 + x153 + x188 + x190 + x199 + x246 + x248 ++ x249 + x250 + x262 + x293 + x297 + x371 + x378 + x395 + x396 + x397 ++ x406 + x416 + x439 + x441 + x464 + x465 + x479 + x481 + x484 <= 1 + +x24 + x60 + x96 + x101 + x199 + x224 + x226 + x279 + x282 + x283 ++ x302 + x332 + x333 + x334 + x335 + x343 + x403 + x407 + x419 + x437 ++ x442 + x443 + x445 + x447 + x467 + x479 + x480 + x481 + x482 + x483 ++ x484 + x486 + x487 <= 1 + +x23 + x24 + x30 + x31 + x59 + x60 + x63 + x96 + x97 + x101 ++ x103 + x197 + x198 + x199 + x224 + x226 + x252 + x254 + x257 + x298 ++ x299 + x302 + x314 + x332 + x333 + x334 + x335 + x336 + x337 + x385 ++ x403 + x407 + x422 + x442 + x443 + x446 + x447 + x456 + x467 + x474 ++ x475 + x479 + x480 + x481 + x482 + x483 + x484 + x485 + x486 + x487 ++ x489 <= 1 + +x21 + x23 + x24 + x30 + x37 + x52 + x59 + x60 + x62 + x63 ++ x64 + x97 + x101 + x103 + x104 + x152 + x198 + x199 + x226 + x232 ++ x234 + x238 + x252 + x253 + x254 + x257 + x298 + x299 + x314 + x315 ++ x316 + x318 + x319 + x332 + x333 + x334 + x335 + x336 + x337 + x359 ++ x375 + x381 + x385 + x388 + x390 + x407 + x437 + x442 + x443 + x446 ++ x447 + x453 + x454 + x455 + x456 + x467 + x474 + x476 + x479 + x480 ++ x481 + x482 + x483 + x484 + x485 + x486 + x487 + x489 + x490 <= 1 + +x6 + x21 + x22 + x24 + x26 + x28 + x29 + x30 + x37 + x38 ++ x49 + x52 + x55 + x59 + x61 + x62 + x63 + x101 + x126 + x143 ++ x144 + x146 + x152 + x161 + x165 + x179 + x198 + x199 + x201 + x202 ++ x204 + x217 + x220 + x223 + x226 + x228 + x229 + x232 + x234 + x247 ++ x254 + x276 + x294 + x315 + x332 + x334 + x335 + x336 + x359 + x375 ++ x378 + x381 + x382 + x385 + x388 + x407 + x447 + x453 + x454 + x455 ++ x457 + x467 + x479 + x480 + x481 + x482 + x483 + x484 + x485 + x487 ++ x488 + x489 + x490 <= 1 + +x21 + x22 + x26 + x28 + x29 + x30 + x32 + x37 + x38 + x47 ++ x49 + x52 + x55 + x57 + x62 + x63 + x65 + x67 + x75 + x122 ++ x123 + x124 + x133 + x144 + x146 + x150 + x152 + x153 + x165 + x178 ++ x190 + x198 + x202 + x204 + x205 + x215 + x217 + x218 + x219 + x220 ++ x228 + x229 + x231 + x232 + x233 + x247 + x256 + x290 + x302 + x305 ++ x315 + x330 + x332 + x333 + x334 + x336 + x350 + x359 + x375 + x382 ++ x386 + x388 + x397 + x447 + x453 + x455 + x458 + x460 + x466 + x467 ++ x479 + x480 + x481 + x482 + x483 + x484 + x487 <= 1 + +x18 + x21 + x23 + x28 + x32 + x37 + x47 + x49 + x50 + x52 ++ x55 + x56 + x57 + x65 + x67 + x68 + x122 + x123 + x148 + x149 ++ x152 + x153 + x186 + x190 + x198 + x200 + x215 + x217 + x218 + x219 ++ x220 + x228 + x229 + x233 + x256 + x267 + x286 + x288 + x290 + x303 ++ x305 + x308 + x358 + x362 + x386 + x393 + x397 + x404 + x408 + x453 ++ x458 + x459 + x460 + x466 + x479 + x480 + x481 + x482 + x483 + x484 ++ x487 <= 1 + +x18 + x23 + x25 + x26 + x28 + x31 + x32 + x33 + x47 + x49 ++ x50 + x52 + x53 + x54 + x55 + x56 + x57 + x65 + x66 + x67 ++ x68 + x76 + x77 + x107 + x120 + x121 + x122 + x123 + x124 + x138 ++ x153 + x187 + x188 + x189 + x190 + x192 + x202 + x203 + x231 + x233 ++ x267 + x286 + x288 + x289 + x290 + x294 + x303 + x305 + x306 + x307 ++ x308 + x313 + x326 + x330 + x386 + x393 + x394 + x397 + x404 + x408 ++ x444 + x445 + x459 + x461 + x466 + x479 + x483 <= 1 + +x21 + x23 + x25 + x29 + x31 + x32 + x33 + x46 + x47 + x49 ++ x50 + x51 + x53 + x54 + x55 + x57 + x65 + x67 + x68 + x71 ++ x73 + x76 + x77 + x80 + x107 + x119 + x120 + x121 + x122 + x123 ++ x124 + x138 + x147 + x153 + x159 + x163 + x182 + x183 + x187 + x188 ++ x189 + x190 + x191 + x192 + x199 + x201 + x202 + x203 + x218 + x225 ++ x231 + x244 + x246 + x247 + x248 + x258 + x259 + x260 + x263 + x303 ++ x304 + x305 + x306 + x307 + x312 + x313 + x330 + x345 + x378 + x386 ++ x392 + x393 + x394 + x395 + x396 + x397 + x404 + x406 + x408 + x421 ++ x444 + x459 + x464 + x466 + x479 + x480 + x481 + x482 + x483 + x487 + <= 1 + +x23 + x25 + x47 + x49 + x54 + x55 + x57 + x68 + x84 + x107 ++ x119 + x120 + x121 + x122 + x123 + x124 + x182 + x183 + x186 + x187 ++ x201 + x246 + x247 + x248 + x250 + x258 + x259 + x262 + x263 + x306 ++ x309 + x312 + x378 + x386 + x391 + x392 + x393 + x394 + x395 + x396 ++ x397 + x406 + x439 + x479 + x481 + x482 <= 1 + +x23 + x25 + x54 + x55 + x57 + x79 + x84 + x119 + x121 + x122 ++ x123 + x153 + x182 + x184 + x188 + x199 + x201 + x203 + x225 + x246 ++ x247 + x248 + x262 + x263 + x292 + x297 + x312 + x378 + x391 + x392 ++ x393 + x396 + x397 + x404 + x406 + x441 + x465 + x479 + x481 + x482 + <= 1 + +x24 + x95 + x222 + x224 + x229 + x239 + x279 + x281 + x282 + x283 ++ x292 + x299 + x319 + x333 + x335 + x338 + x343 + x390 + x403 + x407 ++ x419 + x422 + x443 + x445 + x475 + x477 + x479 + x480 + x481 + x482 ++ x483 + x484 + x486 + x487 + x489 <= 1 + +x21 + x24 + x26 + x30 + x60 + x95 + x96 + x97 + x103 + x104 ++ x199 + x202 + x223 + x224 + x229 + x234 + x238 + x257 + x282 + x283 ++ x292 + x298 + x299 + x300 + x316 + x319 + x328 + x332 + x333 + x334 ++ x335 + x336 + x337 + x375 + x388 + x390 + x403 + x407 + x409 + x417 ++ x422 + x442 + x443 + x446 + x447 + x456 + x474 + x475 + x477 + x479 ++ x480 + x481 + x482 + x483 + x484 + x485 + x486 + x489 <= 1 + +x21 + x23 + x24 + x26 + x29 + x30 + x52 + x53 + x56 + x59 ++ x61 + x64 + x70 + x89 + x91 + x96 + x103 + x130 + x152 + x158 ++ x199 + x203 + x223 + x224 + x228 + x229 + x230 + x232 + x234 + x252 ++ x299 + x300 + x314 + x315 + x316 + x317 + x318 + x319 + x328 + x332 ++ x333 + x335 + x337 + x381 + x383 + x384 + x405 + x407 + x417 + x421 ++ x426 + x442 + x443 + x444 + x445 + x446 + x447 + x475 + x476 + x479 ++ x481 + x482 + x483 + x484 + x486 + x489 <= 1 + +x21 + x22 + x23 + x24 + x26 + x28 + x29 + x30 + x32 + x37 ++ x38 + x52 + x53 + x56 + x60 + x61 + x70 + x89 + x94 + x104 ++ x125 + x126 + x133 + x152 + x193 + x198 + x199 + x201 + x202 + x203 ++ x223 + x226 + x228 + x229 + x232 + x234 + x238 + x252 + x253 + x254 ++ x285 + x294 + x300 + x314 + x315 + x318 + x334 + x336 + x337 + x359 ++ x384 + x385 + x388 + x390 + x393 + x405 + x418 + x420 + x442 + x443 ++ x444 + x445 + x446 + x447 + x454 + x455 + x456 + x467 + x476 + x479 ++ x480 + x481 + x482 + x483 + x484 + x487 + x489 + x497 <= 1 + +x22 + x24 + x26 + x29 + x31 + x32 + x36 + x49 + x52 + x53 ++ x56 + x61 + x65 + x69 + x70 + x133 + x149 + x150 + x152 + x153 ++ x171 + x173 + x192 + x193 + x198 + x201 + x202 + x203 + x204 + x205 ++ x206 + x219 + x220 + x222 + x223 + x226 + x227 + x228 + x229 + x232 ++ x233 + x236 + x237 + x239 + x251 + x252 + x256 + x267 + x294 + x302 ++ x317 + x330 + x334 + x336 + x342 + x388 + x393 + x394 + x404 + x406 ++ x409 + x418 + x420 + x421 + x444 + x446 + x455 + x458 + x460 + x479 ++ x480 + x481 + x482 + x483 + x487 + x489 + x496 <= 1 + +x11 + x21 + x22 + x23 + x24 + x25 + x26 + x31 + x32 + x34 ++ x36 + x39 + x49 + x52 + x55 + x56 + x61 + x65 + x66 + x67 ++ x69 + x70 + x123 + x124 + x138 + x148 + x149 + x150 + x152 + x153 ++ x157 + x166 + x170 + x173 + x188 + x189 + x192 + x193 + x198 + x201 ++ x202 + x206 + x217 + x219 + x220 + x222 + x227 + x232 + x233 + x236 ++ x237 + x245 + x251 + x256 + x264 + x267 + x294 + x302 + x305 + x308 ++ x317 + x330 + x379 + x393 + x396 + x397 + x404 + x406 + x409 + x420 ++ x444 + x446 + x458 + x479 + x482 + x483 + x496 <= 1 + +x15 + x18 + x23 + x25 + x26 + x31 + x32 + x35 + x36 + x53 ++ x54 + x55 + x56 + x57 + x61 + x65 + x66 + x69 + x70 + x76 ++ x120 + x123 + x124 + x136 + x138 + x139 + x150 + x152 + x153 + x157 ++ x168 + x182 + x187 + x188 + x189 + x192 + x193 + x198 + x202 + x203 ++ x217 + x219 + x236 + x251 + x288 + x290 + x294 + x302 + x303 + x326 ++ x330 + x386 + x393 + x394 + x396 + x397 + x404 + x408 + x444 + x461 ++ x479 + x480 <= 1 + +x22 + x31 + x50 + x53 + x54 + x55 + x57 + x69 + x71 + x72 ++ x73 + x76 + x77 + x107 + x119 + x120 + x121 + x122 + x123 + x124 ++ x157 + x159 + x162 + x183 + x184 + x186 + x187 + x188 + x189 + x190 ++ x191 + x192 + x199 + x200 + x201 + x202 + x203 + x208 + x231 + x240 ++ x243 + x247 + x248 + x259 + x260 + x291 + x294 + x297 + x303 + x304 ++ x307 + x309 + x313 + x345 + x374 + x378 + x389 + x392 + x393 + x394 ++ x395 + x396 + x397 + x404 + x406 + x444 + x479 + x481 + x484 <= 1 + +x22 + x25 + x29 + x53 + x54 + x55 + x56 + x57 + x67 + x68 ++ x73 + x76 + x77 + x80 + x84 + x120 + x121 + x122 + x123 + x124 ++ x156 + x159 + x163 + x182 + x183 + x184 + x186 + x187 + x188 + x189 ++ x190 + x191 + x192 + x203 + x225 + x235 + x243 + x247 + x258 + x259 ++ x260 + x266 + x291 + x297 + x303 + x306 + x309 + x310 + x312 + x313 ++ x345 + x347 + x374 + x375 + x378 + x386 + x391 + x392 + x393 + x394 ++ x395 + x396 + x397 + x404 + x406 + x479 + x482 + x484 + x487 <= 1 + +x54 + x57 + x119 + x121 + x122 + x123 + x153 + x156 + x159 + x182 ++ x183 + x184 + x186 + x187 + x188 + x189 + x203 + x207 + x209 + x210 ++ x225 + x243 + x292 + x297 + x306 + x374 + x375 + x378 + x389 + x390 ++ x391 + x392 + x395 + x396 + x404 + x406 + x479 + x480 + x481 <= 1 + +x23 + x24 + x86 + x87 + x92 + x94 + x95 + x104 + x106 + x120 ++ x199 + x200 + x201 + x224 + x229 + x230 + x234 + x238 + x239 + x279 ++ x280 + x281 + x282 + x283 + x292 + x298 + x300 + x333 + x335 + x337 ++ x338 + x341 + x342 + x343 + x383 + x405 + x417 + x419 + x420 + x422 ++ x425 + x426 + x442 + x443 + x445 + x446 + x480 + x481 + x482 + x483 ++ x484 + x486 + x489 + x498 <= 1 + +x23 + x24 + x30 + x52 + x89 + x91 + x93 + x95 + x99 + x104 ++ x120 + x158 + x199 + x201 + x202 + x229 + x230 + x234 + x237 + x238 ++ x239 + x279 + x282 + x292 + x298 + x299 + x300 + x314 + x316 + x318 ++ x319 + x328 + x333 + x334 + x335 + x337 + x338 + x341 + x342 + x343 ++ x383 + x384 + x403 + x405 + x409 + x417 + x419 + x420 + x421 + x422 ++ x425 + x426 + x442 + x443 + x445 + x446 + x447 + x474 + x477 + x478 ++ x479 + x481 + x482 + x483 + x484 + x485 + x486 + x489 <= 1 + +x22 + x23 + x24 + x26 + x52 + x53 + x56 + x59 + x64 + x70 ++ x88 + x96 + x106 + x127 + x130 + x134 + x152 + x193 + x198 + x199 ++ x200 + x201 + x202 + x223 + x228 + x229 + x232 + x234 + x237 + x238 ++ x239 + x247 + x249 + x284 + x298 + x300 + x314 + x317 + x318 + x322 ++ x328 + x337 + x342 + x381 + x383 + x388 + x405 + x407 + x408 + x409 ++ x417 + x419 + x420 + x421 + x442 + x445 + x446 + x479 + x481 + x482 ++ x483 + x484 + x486 + x489 + x496 + x497 + x498 + x499 + x501 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 + x29 + x31 + x36 + x37 ++ x52 + x53 + x56 + x66 + x70 + x85 + x99 + x106 + x125 + x127 ++ x130 + x132 + x133 + x134 + x149 + x152 + x171 + x193 + x198 + x199 ++ x200 + x201 + x202 + x203 + x214 + x223 + x224 + x228 + x232 + x234 ++ x236 + x237 + x238 + x239 + x249 + x253 + x270 + x294 + x300 + x302 ++ x315 + x317 + x336 + x337 + x342 + x348 + x368 + x388 + x393 + x404 ++ x405 + x408 + x409 + x410 + x411 + x418 + x419 + x420 + x421 + x442 ++ x443 + x444 + x447 + x452 + x454 + x458 + x463 + x476 + x479 + x480 ++ x481 + x482 + x483 + x484 + x486 + x489 + x496 + x497 + x498 + x499 ++ x500 <= 1 + +x14 + x21 + x22 + x23 + x24 + x25 + x26 + x29 + x31 + x32 ++ x34 + x36 + x39 + x52 + x53 + x56 + x66 + x69 + x70 + x77 ++ x149 + x150 + x152 + x153 + x166 + x171 + x173 + x174 + x184 + x189 ++ x193 + x198 + x200 + x201 + x202 + x206 + x219 + x220 + x227 + x228 ++ x232 + x233 + x234 + x236 + x237 + x238 + x239 + x251 + x253 + x256 ++ x265 + x294 + x296 + x297 + x300 + x301 + x302 + x305 + x308 + x330 ++ x336 + x388 + x401 + x404 + x406 + x408 + x409 + x410 + x412 + x418 ++ x420 + x421 + x479 + x480 + x481 + x482 + x483 + x489 + x492 + x496 ++ x500 <= 1 + +x9 + x10 + x17 + x22 + x24 + x25 + x26 + x32 + x34 + x35 ++ x36 + x39 + x52 + x55 + x56 + x57 + x69 + x77 + x107 + x149 ++ x150 + x151 + x152 + x153 + x166 + x170 + x171 + x174 + x184 + x188 ++ x193 + x198 + x201 + x202 + x222 + x227 + x230 + x233 + x234 + x236 ++ x237 + x245 + x256 + x264 + x265 + x266 + x294 + x301 + x330 + x331 ++ x341 + x366 + x393 + x394 + x404 + x406 + x408 + x409 + x412 + x420 ++ x444 + x469 + x472 + x479 + x481 + x482 + x483 <= 1 + +x10 + x11 + x14 + x17 + x22 + x25 + x26 + x31 + x32 + x35 ++ x36 + x39 + x55 + x56 + x57 + x65 + x66 + x69 + x76 + x77 ++ x107 + x108 + x123 + x124 + x138 + x139 + x150 + x151 + x152 + x153 ++ x157 + x166 + x168 + x169 + x184 + x188 + x192 + x193 + x198 + x200 ++ x201 + x202 + x203 + x222 + x227 + x230 + x232 + x235 + x236 + x237 ++ x240 + x251 + x256 + x259 + x264 + x265 + x266 + x291 + x294 + x296 ++ x301 + x302 + x329 + x330 + x348 + x379 + x391 + x392 + x393 + x394 ++ x396 + x397 + x404 + x405 + x406 + x407 + x408 + x409 + x428 + x444 ++ x469 + x470 + x472 + x479 + x480 + x482 + x483 + x489 <= 1 + +x22 + x25 + x26 + x31 + x35 + x36 + x41 + x43 + x53 + x54 ++ x55 + x56 + x57 + x69 + x72 + x73 + x76 + x77 + x120 + x122 ++ x138 + x150 + x151 + x152 + x154 + x157 + x158 + x159 + x162 + x183 ++ x184 + x186 + x187 + x188 + x189 + x190 + x191 + x192 + x193 + x198 ++ x199 + x200 + x201 + x202 + x203 + x208 + x212 + x222 + x227 + x235 ++ x236 + x240 + x242 + x243 + x244 + x251 + x259 + x264 + x265 + x266 ++ x291 + x294 + x296 + x297 + x304 + x311 + x330 + x345 + x347 + x374 ++ x379 + x389 + x390 + x391 + x392 + x393 + x394 + x395 + x396 + x397 ++ x404 + x406 + x408 + x409 + x428 + x469 + x479 + x480 + x481 + x483 ++ x484 <= 1 + +x22 + x25 + x26 + x35 + x42 + x43 + x53 + x54 + x55 + x56 ++ x57 + x67 + x74 + x77 + x120 + x121 + x122 + x150 + x151 + x154 ++ x156 + x157 + x159 + x182 + x183 + x184 + x186 + x187 + x188 + x189 ++ x190 + x192 + x193 + x200 + x201 + x202 + x203 + x210 + x211 + x222 ++ x223 + x227 + x235 + x236 + x240 + x243 + x244 + x259 + x266 + x291 ++ x296 + x297 + x304 + x310 + x311 + x347 + x374 + x375 + x379 + x386 ++ x389 + x390 + x391 + x392 + x393 + x394 + x395 + x396 + x404 + x406 ++ x409 + x429 + x468 + x479 + x480 + x481 + x484 <= 1 + +x26 + x40 + x42 + x43 + x54 + x55 + x121 + x122 + x137 + x150 ++ x151 + x156 + x157 + x158 + x159 + x182 + x183 + x184 + x186 + x187 ++ x188 + x189 + x190 + x192 + x193 + x198 + x201 + x203 + x207 + x208 ++ x209 + x210 + x222 + x223 + x225 + x227 + x235 + x236 + x240 + x241 ++ x243 + x244 + x296 + x297 + x310 + x311 + x347 + x374 + x375 + x378 ++ x386 + x389 + x390 + x391 + x394 + x395 + x396 + x404 + x406 + x409 ++ x422 + x429 + x457 + x479 + x480 + x481 + x484 <= 1 + +x1 + x3 + x22 + x23 + x24 + x26 + x88 + x91 + x92 + x93 ++ x94 + x95 + x103 + x104 + x105 + x106 + x120 + x131 + x157 + x199 ++ x200 + x224 + x229 + x230 + x239 + x241 + x279 + x280 + x281 + x282 ++ x298 + x299 + x335 + x338 + x340 + x341 + x342 + x343 + x368 + x398 ++ x399 + x400 + x403 + x405 + x408 + x419 + x422 + x442 + x443 + x444 ++ x445 + x446 + x447 + x465 + x480 + x481 + x482 + x483 + x484 + x486 ++ x489 <= 1 + +x3 + x4 + x22 + x23 + x24 + x26 + x30 + x52 + x53 + x85 ++ x86 + x87 + x88 + x89 + x91 + x92 + x93 + x94 + x95 + x99 ++ x103 + x104 + x105 + x106 + x131 + x199 + x200 + x202 + x224 + x229 ++ x230 + x233 + x239 + x241 + x257 + x279 + x280 + x281 + x282 + x283 ++ x292 + x297 + x298 + x299 + x316 + x333 + x335 + x337 + x338 + x340 ++ x341 + x342 + x343 + x398 + x399 + x400 + x403 + x405 + x406 + x408 ++ x409 + x417 + x418 + x419 + x420 + x421 + x422 + x425 + x442 + x443 ++ x445 + x446 + x463 + x478 + x481 + x482 + x486 + x489 + x497 + x498 + <= 1 + +x22 + x23 + x24 + x26 + x52 + x53 + x56 + x64 + x85 + x86 ++ x87 + x88 + x92 + x99 + x103 + x106 + x130 + x131 + x132 + x133 ++ x134 + x135 + x149 + x152 + x155 + x189 + x199 + x200 + x202 + x213 ++ x214 + x229 + x230 + x234 + x238 + x239 + x248 + x249 + x270 + x279 ++ x283 + x284 + x295 + x297 + x298 + x299 + x300 + x316 + x320 + x321 ++ x322 + x323 + x326 + x327 + x328 + x337 + x338 + x378 + x388 + x393 ++ x398 + x399 + x404 + x405 + x407 + x408 + x409 + x417 + x418 + x419 ++ x421 + x442 + x443 + x445 + x446 + x447 + x463 + x480 + x483 + x486 ++ x496 + x497 + x498 + x500 + x501 <= 1 + +x9 + x19 + x20 + x22 + x26 + x29 + x52 + x53 + x56 + x64 ++ x85 + x86 + x87 + x88 + x90 + x99 + x105 + x106 + x130 + x131 ++ x132 + x133 + x134 + x135 + x149 + x150 + x151 + x153 + x172 + x173 ++ x174 + x176 + x198 + x200 + x201 + x202 + x203 + x213 + x214 + x224 ++ x232 + x234 + x238 + x239 + x248 + x270 + x272 + x294 + x295 + x297 ++ x300 + x302 + x317 + x321 + x322 + x326 + x328 + x337 + x349 + x368 ++ x388 + x393 + x399 + x404 + x405 + x408 + x409 + x411 + x417 + x418 ++ x424 + x442 + x443 + x445 + x446 + x451 + x454 + x463 + x473 + x480 ++ x482 + x483 + x484 + x495 + x496 + x497 + x498 + x499 + x500 + x501 + <= 1 + +x9 + x14 + x20 + x22 + x24 + x25 + x26 + x29 + x31 + x32 ++ x52 + x53 + x56 + x85 + x88 + x105 + x106 + x141 + x149 + x150 ++ x152 + x153 + x169 + x171 + x172 + x173 + x174 + x175 + x176 + x193 ++ x198 + x200 + x201 + x202 + x224 + x234 + x235 + x236 + x238 + x239 ++ x242 + x253 + x265 + x297 + x300 + x301 + x302 + x321 + x323 + x377 ++ x388 + x394 + x401 + x404 + x405 + x408 + x409 + x420 + x421 + x472 ++ x473 + x481 + x482 + x483 + x491 + x492 + x496 + x497 + x498 + x499 ++ x500 + x501 <= 1 + +x9 + x10 + x11 + x13 + x14 + x17 + x20 + x22 + x24 + x25 ++ x26 + x36 + x39 + x74 + x77 + x104 + x107 + x141 + x148 + x149 ++ x150 + x151 + x152 + x155 + x158 + x167 + x168 + x169 + x170 + x174 ++ x176 + x183 + x193 + x194 + x196 + x198 + x202 + x203 + x212 + x227 ++ x230 + x233 + x234 + x235 + x236 + x237 + x238 + x239 + x242 + x243 ++ x245 + x277 + x278 + x295 + x296 + x300 + x301 + x323 + x331 + x341 ++ x348 + x376 + x377 + x393 + x394 + x396 + x397 + x404 + x405 + x407 ++ x408 + x409 + x432 + x468 + x469 + x470 + x472 + x473 + x479 + x480 ++ x482 + x483 + x484 + x491 + x497 + x501 <= 1 + +x9 + x10 + x11 + x12 + x14 + x17 + x22 + x25 + x36 + x39 ++ x53 + x54 + x55 + x56 + x57 + x74 + x104 + x107 + x108 + x123 ++ x129 + x139 + x141 + x148 + x149 + x150 + x151 + x152 + x153 + x154 ++ x155 + x156 + x158 + x166 + x167 + x168 + x169 + x170 + x183 + x184 ++ x192 + x193 + x195 + x200 + x201 + x202 + x203 + x212 + x227 + x230 ++ x232 + x234 + x235 + x236 + x237 + x240 + x241 + x242 + x243 + x245 ++ x278 + x294 + x295 + x296 + x301 + x302 + x329 + x330 + x346 + x348 ++ x349 + x361 + x374 + x376 + x378 + x379 + x389 + x393 + x394 + x396 ++ x397 + x404 + x405 + x407 + x408 + x409 + x428 + x432 + x444 + x468 ++ x469 + x470 + x472 + x473 + x479 + x480 + x501 <= 1 + +x9 + x12 + x22 + x26 + x42 + x54 + x55 + x56 + x73 + x74 ++ x76 + x120 + x122 + x136 + x139 + x148 + x149 + x151 + x154 + x155 ++ x156 + x158 + x184 + x190 + x192 + x193 + x199 + x200 + x201 + x202 ++ x203 + x207 + x211 + x212 + x222 + x223 + x225 + x227 + x234 + x235 ++ x237 + x240 + x242 + x243 + x244 + x245 + x264 + x291 + x294 + x296 ++ x329 + x345 + x347 + x348 + x374 + x376 + x389 + x392 + x393 + x394 ++ x404 + x405 + x406 + x407 + x408 + x409 + x427 + x428 + x429 + x430 ++ x432 + x468 + x469 + x470 + x472 + x473 + x479 + x480 + x483 <= 1 + +x26 + x40 + x41 + x42 + x43 + x53 + x54 + x55 + x57 + x73 ++ x74 + x76 + x77 + x121 + x139 + x140 + x151 + x154 + x156 + x157 ++ x158 + x159 + x182 + x183 + x184 + x186 + x187 + x188 + x189 + x190 ++ x191 + x192 + x193 + x198 + x200 + x201 + x202 + x203 + x207 + x208 ++ x209 + x210 + x211 + x222 + x223 + x225 + x227 + x235 + x236 + x240 ++ x242 + x243 + x244 + x245 + x259 + x291 + x296 + x297 + x304 + x309 ++ x310 + x311 + x345 + x347 + x374 + x389 + x390 + x391 + x392 + x393 ++ x394 + x395 + x396 + x404 + x406 + x408 + x409 + x429 + x457 + x468 ++ x479 + x480 + x481 + x484 <= 1 + +x26 + x40 + x41 + x43 + x54 + x77 + x137 + x151 + x157 + x158 ++ x159 + x182 + x186 + x187 + x188 + x190 + x191 + x192 + x193 + x198 ++ x200 + x201 + x202 + x203 + x207 + x208 + x209 + x211 + x222 + x223 ++ x225 + x232 + x235 + x236 + x240 + x241 + x242 + x243 + x244 + x296 ++ x304 + x344 + x347 + x386 + x389 + x391 + x394 + x396 + x404 + x406 ++ x408 + x427 + x429 + x479 + x480 + x481 + x484 <= 1 + +x1 + x2 + x3 + x23 + x24 + x87 + x88 + x90 + x91 + x92 ++ x93 + x94 + x95 + x103 + x104 + x105 + x106 + x131 + x199 + x200 ++ x202 + x224 + x229 + x230 + x233 + x241 + x257 + x279 + x280 + x281 ++ x282 + x284 + x292 + x298 + x299 + x322 + x341 + x342 + x348 + x351 ++ x398 + x399 + x400 + x403 + x406 + x408 + x409 + x417 + x419 + x442 ++ x443 + x444 + x445 + x446 + x447 + x463 + x478 + x480 + x482 + x483 ++ x486 + x489 + x497 <= 1 + +x1 + x2 + x4 + x22 + x23 + x24 + x26 + x30 + x53 + x85 ++ x87 + x89 + x91 + x92 + x93 + x94 + x105 + x106 + x130 + x131 ++ x132 + x135 + x149 + x151 + x188 + x191 + x199 + x200 + x202 + x229 ++ x230 + x239 + x279 + x281 + x283 + x284 + x292 + x298 + x299 + x300 ++ x321 + x322 + x327 + x340 + x341 + x342 + x348 + x368 + x398 + x399 ++ x400 + x403 + x405 + x408 + x409 + x417 + x419 + x423 + x442 + x443 ++ x444 + x445 + x446 + x447 + x478 + x480 + x481 + x482 + x483 + x497 ++ x499 <= 1 + +x15 + x22 + x26 + x29 + x52 + x53 + x64 + x85 + x90 + x94 ++ x99 + x105 + x106 + x130 + x131 + x132 + x134 + x135 + x149 + x151 ++ x153 + x155 + x162 + x176 + x191 + x198 + x199 + x200 + x202 + x213 ++ x230 + x234 + x238 + x239 + x256 + x268 + x270 + x271 + x275 + x281 ++ x283 + x284 + x295 + x297 + x298 + x299 + x300 + x320 + x321 + x322 ++ x324 + x326 + x327 + x328 + x331 + x337 + x340 + x341 + x342 + x368 ++ x377 + x393 + x399 + x400 + x405 + x407 + x408 + x409 + x417 + x418 ++ x421 + x423 + x424 + x442 + x444 + x445 + x446 + x447 + x449 + x480 ++ x482 + x483 + x484 + x496 + x498 + x499 + x500 + x501 <= 1 + +x15 + x16 + x19 + x22 + x29 + x52 + x53 + x56 + x90 + x103 ++ x105 + x106 + x108 + x130 + x132 + x134 + x135 + x149 + x150 + x151 ++ x153 + x155 + x172 + x173 + x174 + x175 + x176 + x191 + x198 + x199 ++ x200 + x202 + x234 + x235 + x238 + x239 + x268 + x269 + x272 + x273 ++ x274 + x275 + x276 + x280 + x295 + x297 + x298 + x299 + x300 + x301 ++ x320 + x321 + x324 + x326 + x327 + x328 + x329 + x331 + x340 + x349 ++ x364 + x368 + x377 + x388 + x399 + x400 + x404 + x405 + x407 + x408 ++ x409 + x418 + x443 + x444 + x445 + x448 + x451 + x480 + x481 + x482 ++ x484 + x496 + x499 + x500 <= 1 + +x14 + x15 + x16 + x19 + x22 + x24 + x25 + x39 + x53 + x56 ++ x103 + x105 + x108 + x149 + x150 + x151 + x152 + x153 + x172 + x173 ++ x174 + x175 + x176 + x193 + x198 + x200 + x202 + x236 + x238 + x239 ++ x272 + x278 + x295 + x301 + x323 + x324 + x326 + x327 + x328 + x329 ++ x331 + x340 + x346 + x377 + x379 + x396 + x400 + x404 + x405 + x408 ++ x409 + x420 + x443 + x470 + x480 + x481 + x482 + x484 + x498 + x500 ++ x501 <= 1 + +x10 + x11 + x14 + x15 + x16 + x17 + x22 + x24 + x25 + x26 ++ x36 + x39 + x56 + x103 + x104 + x105 + x108 + x128 + x134 + x148 ++ x149 + x150 + x151 + x169 + x170 + x172 + x175 + x183 + x194 + x196 ++ x197 + x202 + x203 + x227 + x228 + x230 + x235 + x236 + x237 + x238 ++ x239 + x276 + x277 + x278 + x295 + x296 + x301 + x323 + x326 + x329 ++ x331 + x340 + x341 + x344 + x346 + x349 + x377 + x379 + x393 + x394 ++ x396 + x397 + x400 + x404 + x405 + x407 + x408 + x409 + x443 + x445 ++ x468 + x469 + x470 + x473 + x484 + x500 <= 1 + +x0 + x9 + x10 + x11 + x12 + x13 + x17 + x20 + x22 + x25 ++ x26 + x35 + x36 + x39 + x56 + x74 + x76 + x104 + x105 + x107 ++ x108 + x128 + x129 + x141 + x148 + x149 + x150 + x151 + x154 + x155 ++ x156 + x166 + x167 + x168 + x169 + x170 + x183 + x194 + x195 + x198 ++ x200 + x201 + x202 + x203 + x216 + x228 + x230 + x232 + x235 + x236 ++ x237 + x239 + x240 + x242 + x243 + x245 + x273 + x277 + x278 + x295 ++ x296 + x301 + x331 + x341 + x344 + x345 + x346 + x348 + x349 + x374 ++ x376 + x377 + x379 + x393 + x394 + x396 + x404 + x405 + x406 + x407 ++ x408 + x409 + x430 + x468 + x469 + x470 + x472 + x473 + x479 + x483 ++ x484 + x501 <= 1 + +x13 + x22 + x26 + x34 + x44 + x54 + x74 + x76 + x89 + x108 ++ x136 + x137 + x139 + x140 + x141 + x148 + x150 + x151 + x154 + x155 ++ x156 + x167 + x168 + x183 + x184 + x186 + x200 + x201 + x203 + x212 ++ x216 + x235 + x236 + x237 + x239 + x240 + x241 + x242 + x243 + x245 ++ x294 + x295 + x296 + x344 + x345 + x346 + x347 + x349 + x374 + x376 ++ x377 + x379 + x389 + x392 + x393 + x394 + x396 + x406 + x408 + x409 ++ x427 + x428 + x430 + x432 + x468 + x469 + x470 + x472 + x473 + x479 ++ x483 <= 1 + +x13 + x26 + x41 + x42 + x44 + x54 + x74 + x76 + x77 + x89 ++ x136 + x137 + x139 + x140 + x154 + x159 + x167 + x183 + x184 + x186 ++ x187 + x192 + x198 + x200 + x201 + x202 + x203 + x209 + x210 + x211 ++ x216 + x222 + x225 + x235 + x236 + x237 + x238 + x241 + x242 + x244 ++ x245 + x291 + x295 + x296 + x344 + x345 + x346 + x347 + x349 + x376 ++ x377 + x389 + x390 + x392 + x393 + x394 + x396 + x404 + x406 + x408 ++ x427 + x429 + x431 + x463 + x469 + x473 + x479 + x481 + x483 <= 1 + +x40 + x41 + x44 + x74 + x75 + x132 + x137 + x140 + x153 + x158 ++ x186 + x198 + x201 + x203 + x222 + x225 + x232 + x235 + x236 + x240 ++ x241 + x242 + x295 + x296 + x344 + x347 + x349 + x376 + x390 + x391 ++ x394 + x396 + x406 + x408 + x427 + x431 + x463 + x473 + x479 + x480 ++ x481 + x484 <= 1 + +x2 + x3 + x4 + x87 + x90 + x92 + x93 + x94 + x95 + x104 ++ x106 + x108 + x151 + x185 + x191 + x200 + x202 + x229 + x230 + x241 ++ x274 + x280 + x281 + x298 + x299 + x327 + x342 + x350 + x351 + x398 ++ x399 + x403 + x405 + x442 + x443 + x444 + x445 + x446 + x447 + x450 ++ x482 + x483 + x489 <= 1 + +x1 + x2 + x4 + x22 + x57 + x90 + x91 + x93 + x105 + x108 ++ x131 + x151 + x155 + x184 + x185 + x188 + x191 + x200 + x202 + x230 ++ x238 + x239 + x269 + x274 + x280 + x281 + x283 + x284 + x292 + x298 ++ x299 + x321 + x324 + x326 + x327 + x329 + x348 + x399 + x400 + x403 ++ x405 + x407 + x409 + x417 + x418 + x442 + x443 + x444 + x445 + x446 ++ x447 + x448 + x449 + x450 + x481 + x482 + x483 + x499 <= 1 + +x19 + x22 + x52 + x90 + x93 + x99 + x103 + x105 + x106 + x108 ++ x135 + x149 + x151 + x155 + x172 + x175 + x176 + x184 + x191 + x230 ++ x238 + x268 + x269 + x271 + x274 + x275 + x276 + x284 + x298 + x299 ++ x300 + x320 + x324 + x326 + x327 + x328 + x329 + x331 + x340 + x368 ++ x399 + x400 + x403 + x404 + x405 + x407 + x409 + x418 + x444 + x448 ++ x449 + x450 + x480 + x481 + x482 + x483 + x499 + x500 <= 1 + +x16 + x19 + x22 + x39 + x53 + x105 + x106 + x108 + x132 + x135 ++ x149 + x150 + x172 + x175 + x191 + x200 + x235 + x237 + x238 + x239 ++ x268 + x269 + x271 + x273 + x274 + x275 + x284 + x324 + x326 + x327 ++ x328 + x329 + x331 + x340 + x368 + x399 + x400 + x404 + x405 + x407 ++ x408 + x409 + x418 + x444 + x445 + x480 + x481 + x482 + x484 + x499 + <= 1 + +x15 + x19 + x20 + x22 + x39 + x53 + x105 + x108 + x134 + x135 ++ x149 + x151 + x175 + x191 + x196 + x197 + x200 + x228 + x235 + x237 ++ x238 + x239 + x271 + x272 + x273 + x274 + x275 + x276 + x278 + x284 ++ x295 + x301 + x323 + x326 + x327 + x328 + x329 + x331 + x340 + x346 ++ x349 + x368 + x391 + x397 + x400 + x404 + x405 + x407 + x408 + x409 ++ x445 + x451 + x469 + x470 + x481 + x484 + x498 <= 1 + +x7 + x11 + x16 + x20 + x21 + x22 + x26 + x39 + x74 + x103 ++ x104 + x107 + x148 + x149 + x150 + x151 + x191 + x200 + x203 + x228 ++ x230 + x235 + x236 + x237 + x238 + x239 + x273 + x275 + x276 + x277 ++ x295 + x301 + x323 + x324 + x327 + x329 + x331 + x341 + x344 + x346 ++ x376 + x377 + x379 + x391 + x404 + x405 + x407 + x408 + x409 + x472 ++ x473 + x481 + x484 <= 1 + +x7 + x8 + x13 + x16 + x22 + x26 + x39 + x56 + x74 + x83 ++ x104 + x107 + x108 + x136 + x141 + x148 + x149 + x150 + x156 + x167 ++ x183 + x186 + x195 + x201 + x203 + x216 + x230 + x235 + x237 + x238 ++ x245 + x273 + x277 + x291 + x295 + x301 + x327 + x331 + x341 + x344 ++ x345 + x346 + x348 + x374 + x376 + x404 + x407 + x408 + x430 + x431 ++ x432 + x470 + x472 + x479 + x484 + x501 <= 1 + +x8 + x13 + x22 + x26 + x35 + x36 + x39 + x56 + x74 + x76 ++ x103 + x107 + x108 + x136 + x140 + x141 + x148 + x149 + x150 + x151 ++ x154 + x186 + x201 + x203 + x230 + x235 + x236 + x237 + x241 + x242 ++ x245 + x277 + x294 + x295 + x296 + x344 + x345 + x346 + x348 + x349 ++ x376 + x377 + x379 + x384 + x404 + x405 + x406 + x408 + x409 + x430 ++ x431 + x432 + x468 + x470 + x472 + x479 + x481 + x484 <= 1 + +x13 + x22 + x44 + x74 + x76 + x77 + x136 + x140 + x148 + x154 ++ x186 + x201 + x202 + x203 + x235 + x236 + x237 + x239 + x240 + x241 ++ x242 + x294 + x295 + x296 + x344 + x346 + x349 + x376 + x377 + x389 ++ x390 + x392 + x394 + x396 + x406 + x408 + x427 + x428 + x430 + x431 ++ x463 + x479 + x481 <= 1 + +x40 + x44 + x74 + x91 + x137 + x140 + x153 + x187 + x201 + x203 ++ x219 + x232 + x235 + x237 + x241 + x295 + x296 + x344 + x347 + x376 ++ x379 + x390 + x394 + x406 + x431 + x463 + x479 + x484 <= 1 + +x1 + x2 + x3 + x4 <= 1 + +x5 + x6 <= 1 + +x7 + x8 <= 1 + +x9 + x10 + x11 + x12 + x13 + x14 <= 1 + +x15 + x16 + x17 + x18 + x19 + x20 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 + x38 + x39 <= 1 + +x40 + x41 + x42 + x43 + x44 <= 1 + +x46 + x47 + x48 + x49 + x50 + x51 <= 1 + +x52 + x53 + x54 + x55 + x56 + x57 <= 1 + +x59 + x60 + x61 + x62 + x63 + x64 <= 1 + +x65 + x66 + x67 + x68 + x69 + x70 <= 1 + +x71 + x72 <= 1 + +x73 + x74 + x75 + x76 + x77 + x78 <= 1 + +x79 + x80 + x81 + x82 + x83 + x84 <= 1 + +x85 + x86 + x87 + x88 + x89 + x90 <= 1 + +x91 + x92 + x93 + x94 + x95 + x96 <= 1 + +x97 + x98 + x99 + x100 + x101 + x102 <= 1 + +x103 + x104 + x105 + x106 + x107 + x108 <= 1 + +x109 + x110 + x111 + x112 <= 1 + +x113 + x114 + x115 + x116 + x117 + x118 <= 1 + +x119 + x120 + x121 + x122 + x123 + x124 <= 1 + +x125 + x126 + x127 <= 1 + +x128 + x129 <= 1 + +x130 + x131 + x132 + x133 + x134 + x135 <= 1 + +x136 + x137 + x138 + x139 + x140 + x141 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x148 + x149 + x150 + x151 + x152 + x153 <= 1 + +x154 + x155 + x156 + x157 + x158 + x159 <= 1 + +x160 + x161 + x162 + x163 + x164 + x165 <= 1 + +x166 + x167 + x168 + x169 + x170 + x171 <= 1 + +x172 + x173 + x174 + x175 + x176 <= 1 + +x177 + x178 + x179 + x180 + x181 <= 1 + +x182 + x183 + x184 + x185 + x186 + x187 <= 1 + +x188 + x189 + x190 + x191 + x192 + x193 <= 1 + +x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 <= 1 + +x207 + x208 + x209 + x210 + x211 + x212 <= 1 + +x213 + x214 <= 1 + +x215 + x216 + x217 + x218 + x219 + x220 <= 1 + +x222 + x223 + x224 + x225 + x226 + x227 <= 1 + +x228 + x229 + x230 + x231 + x232 + x233 <= 1 + +x234 + x235 + x236 + x237 + x238 + x239 <= 1 + +x240 + x241 + x242 + x243 + x244 + x245 <= 1 + +x246 + x247 + x248 + x249 + x250 + x251 <= 1 + +x252 + x253 + x254 + x255 + x256 + x257 <= 1 + +x258 + x259 + x260 + x261 + x262 + x263 <= 1 + +x264 + x265 + x266 + x267 <= 1 + +x268 + x269 + x270 + x271 + x272 <= 1 + +x273 + x274 + x275 + x276 + x277 + x278 <= 1 + +x279 + x280 + x281 + x282 + x283 + x284 <= 1 + +x286 + x287 + x288 + x289 + x290 <= 1 + +x291 + x292 + x293 + x294 + x295 + x296 <= 1 + +x297 + x298 + x299 + x300 + x301 + x302 <= 1 + +x303 + x304 + x305 + x306 + x307 + x308 <= 1 + +x309 + x310 + x311 + x312 + x313 <= 1 + +x314 + x315 + x316 + x317 + x318 + x319 <= 1 + +x320 + x321 + x322 + x323 + x324 + x325 <= 1 + +x326 + x327 + x328 + x329 + x330 + x331 <= 1 + +x332 + x333 + x334 + x335 + x336 + x337 <= 1 + +x338 + x339 + x340 + x341 + x342 + x343 <= 1 + +x344 + x345 + x346 + x347 + x348 + x349 <= 1 + +x350 + x351 <= 1 + +x352 + x353 + x354 + x355 + x356 + x357 <= 1 + +x358 + x359 + x360 + x361 + x362 + x363 <= 1 + +x364 + x365 + x366 + x367 + x368 + x369 <= 1 + +x370 + x371 + x372 + x373 <= 1 + +x374 + x375 + x376 + x377 + x378 + x379 <= 1 + +x381 + x382 + x383 + x384 + x385 <= 1 + +x386 + x387 + x388 + x389 + x390 + x391 <= 1 + +x392 + x393 + x394 + x395 + x396 + x397 <= 1 + +x398 + x399 + x400 + x401 + x402 + x403 <= 1 + +x404 + x405 + x406 + x407 + x408 + x409 <= 1 + +x410 + x411 + x412 <= 1 + +x413 + x414 + x415 + x416 <= 1 + +x417 + x418 + x419 + x420 + x421 + x422 <= 1 + +x423 + x424 <= 1 + +x425 + x426 <= 1 + +x427 + x428 + x429 + x430 + x431 + x432 <= 1 + +x433 + x434 + x435 + x436 + x437 + x438 <= 1 + +x439 + x440 + x441 <= 1 + +x442 + x443 + x444 + x445 + x446 + x447 <= 1 + +x448 + x449 + x450 + x451 <= 1 + +x453 + x454 + x455 + x456 + x457 + x458 <= 1 + +x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 + x478 <= 1 + +x479 + x480 + x481 + x482 + x483 + x484 <= 1 + +x485 + x486 + x487 + x488 + x489 + x490 <= 1 + +x491 + x492 <= 1 + +x493 + x494 + x495 <= 1 + +x496 + x497 + x498 + x499 + x500 + x501 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0016.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0016.lp new file mode 100644 index 000000000..fdaefb637 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0016.lp @@ -0,0 +1,1011 @@ +max + +1314.91x0 + 1339.69x1 + 1315.48x2 + 1295.88x3 + 1294.8x4 + 1290.94x5 + 118.627x6 + 579.041x7 + 635.578x8 + 627.366x9 + +577.993x10 + 547.949x11 + 534.982x12 + 650.051x13 + 844.12x14 + 817.431x15 + 808.521x16 + 807.564x17 + 767.427x18 + 112.798x19 + +109.043x20 + 87.8935x21 + 291.824x22 + 399.553x23 + 354.782x24 + 342.374x25 + 293.954x26 + 258.592x27 + 450.795x28 + 548.99x29 + +498.716x30 + 455.469x31 + 396.324x32 + 320.238x33 + 483.79x34 + 536.601x35 + 532.617x36 + 520.427x37 + 501.446x38 + 487.44x39 + +146.143x40 + 126.918x41 + 365.371x42 + 453.772x43 + 407.06x44 + 374.027x45 + 359.76x46 + 346.313x47 + 52.017x48 + 1552.07x49 + +1664x50 + 1647.51x51 + 1636.58x52 + 1569.96x53 + 1545.77x54 + 62.8208x55 + 315.859x56 + 473.543x57 + 445.156x58 + 440.91x59 + +356.628x60 + 112.791x61 + 130.958x62 + 2098.34x63 + 2352.45x64 + 2252.5x65 + 2249.58x66 + 2204.25x67 + 2193.84x68 + 1335.43x69 + +1370.63x70 + 1293.84x71 + 1286.62x72 + 1283.7x73 + 1260.8x74 + 457.126x75 + 577.522x76 + 364.573x77 + 306.07x78 + 288.148x79 + +220.408x80 + 61.5049x81 + 485.583x82 + 649.897x83 + 633.308x84 + 558.825x85 + 535.506x86 + 416.425x87 + 47.297x88 + 455.116x89 + +648.409x90 + 618.617x91 + 581.489x92 + 512.417x93 + 503.557x94 + 317.198x95 + 295.239x96 + 278.089x97 + 229.745x98 + 77.5315x99 + +248.366x100 + 276.895x101 + 244.089x102 + 187.845x103 + 88.8936x104 + 1449.81x105 + 1519.94x106 + 1496.91x107 + 1491.1x108 + 1486.11x109 + +1440.95x110 + 649.502x111 + 929.298x112 + 792.782x113 + 792.595x114 + 792.078x115 + 770.633x116 + 472.1x117 + 668.443x118 + 498.699x119 + +492.192x120 + 462.999x121 + 403.136x122 + 316.099x123 + 342.61x124 + 329.215x125 + 274.268x126 + 272.28x127 + 1089.81x128 + 1426.96x129 + +1288.1x130 + 1237.75x131 + 1229.86x132 + 1213.33x133 + 225.383x134 + 310.628x135 + 261.458x136 + 126.295x137 + 1928.33x138 + 2329.61x139 + +2318.17x140 + 2311.66x141 + 2300.03x142 + 2264.74x143 + 806.766x144 + 977.418x145 + 963.515x146 + 959.434x147 + 956.346x148 + 949.524x149 + +2340.69x150 + 2541.95x151 + 2496.84x152 + 2435.74x153 + 2425.09x154 + 2408.98x155 + 90.1383x156 + 135.136x157 + 88.5906x158 + 966.505x159 + +1056.06x160 + 1001.49x161 + 1001.49x162 + 953.069x163 + 915.7x164 + 264.759x165 + 342.684x166 + 270.243x167 + 195.18x168 + 283.537x169 + +330.945x170 + 316.434x171 + 316.296x172 + 158.874x173 + 455.967x174 + 546.843x175 + 530.838x176 + 487.879x177 + 483.089x178 + 473.159x179 + +843.977x180 + 1075.54x181 + 940.011x182 + 930.164x183 + 913.573x184 + 841.949x185 + 883.089x186 + 1171.2x187 + 1127.12x188 + 1098.08x189 + +1093.55x190 + 1063.7x191 + 1013.62x192 + 1206.4x193 + 1183.49x194 + 1080.74x195 + 1076.16x196 + 1048.79x197 + 285.394x198 + 288.664x199 + +256.619x200 + 254.41x201 + 233.663x202 + 215.519x203 + 529.132x204 + 557.201x205 + 515.887x206 + 511.767x207 + 483.656x208 + 473.368x209 + +165.123x210 + 124.31x211 + 121.069x212 + 1867.43x213 + 2246.49x214 + 2206.66x215 + 2171.51x216 + 2156.73x217 + 2144.38x218 + 366.802x219 + +529.727x220 + 470.955x221 + 443.375x222 + 442.054x223 + 426.909x224 + 235.894x225 + 322.104x226 + 280.641x227 + 250.427x228 + 233.501x229 + +198.127x230 + 275.249x231 + 352.281x232 + 346.856x233 + 205.745x234 + 1052x235 + 1284.73x236 + 1230.96x237 + 1220.92x238 + 1184.34x239 + +1156.05x240 + 402.713x241 + 523.599x242 + 515.952x243 + 435.039x244 + 413.678x245 + 411.298x246 + 321.336x247 + 345.54x248 + 317.241x249 + +296.971x250 + 295.074x251 + 245.488x252 + 628.812x253 + 715.713x254 + 691.431x255 + 606.193x256 + 568.806x257 + 539.598x258 + 248.792x259 + +279.328x260 + 263.327x261 + 242.246x262 + 232.08x263 + 1017.73x264 + 1264.47x265 + 1156.59x266 + 1115.84x267 + 1091.07x268 + 1077.3x269 + +196.797x270 + 282.013x271 + 176.326x272 + 225.929x273 + 315.418x274 + 307.135x275 + 295.282x276 + 271.044x277 + 79.2452x278 + 697.653x279 + +967.43x280 + 899.834x281 + 894.119x282 + 890.417x283 + 829.964x284 + 462.724x285 + 634.061x286 + 596.15x287 + 590.922x288 + 583.226x289 + +568.029x290 + 529.019x291 + 619.588x292 + 590.793x293 + 528.49x294 + 508.725x295 + 508.607x296 + 172.75x297 + 228.985x298 + 146.667x299 + +340.651x300 + 459.392x301 + 447.022x302 + 411.217x303 + 384.13x304 + 320.808x305 + 445.513x306 + 596.748x307 + 499.688x308 + 469.971x309 + +446.867x310 + 411.695x311 + 195.959x312 + 229.362x313 + 114.596x314 + 62.7305x315 + 940.67x316 + 1193.75x317 + 1067.07x318 + 1011.63x319 + +1009.98x320 + 989.009x321 + 324.742x322 + 357.123x323 + 266.067x324 + 222.767x325 + 191.138x326 + 143.591x327 + 182.068x328 + 258.814x329 + +224.505x330 + 124.161x331 + 1991.1x332 + 2264.5x333 + 2224.84x334 + 2064.29x335 + 2058.83x336 + 2021.42x337 + 570.876x338 + 820.202x339 + +755.742x340 + 726.372x341 + 719.601x342 + 712.435x343 + 1293.67x344 + 1443.88x345 + 1375.8x346 + 1301.53x347 + 1282.31x348 + 1271.36x349 + +538.52x350 + 792.112x351 + 777.252x352 + 720.912x353 + 697.321x354 + 630.488x355 + 287.635x356 + 323.519x357 + 295.333x358 + 294.961x359 + +231.27x360 + 194.766x361 + 335.335x362 + 445.445x363 + 439.932x364 + 435.654x365 + 405.791x366 + 356.958x367 + 983.322x368 + 1066.63x369 + +1022.74x370 + 1017.79x371 + 1005.99x372 + 969.524x373 + 94.0255x374 + 664.93x375 + 818.072x376 + 791.946x377 + 790.239x378 + 781.21x379 + +747.741x380 + 294.887x381 + 345.811x382 + 269.018x383 + 124.896x384 + 122.426x385 + 621.066x386 + 690.686x387 + 664.187x388 + 651.592x389 + +629.94x390 + 620.312x391 + 334.83x392 + 387.454x393 + 357.996x394 + 326.671x395 + 321.66x396 + 312.963x397 + 382.277x398 + 531.576x399 + +498.552x400 + 470.505x401 + 468.355x402 + 425.147x403 + 89.4514x404 + 99.7638x405 + 642.537x406 + 710.075x407 + 665.643x408 + 664.622x409 + +662.575x410 + 636.647x411 + 96.3786x412 + 55.7679x413 + 457.038x414 + 630.991x415 + 588.872x416 + 588.674x417 + 496.226x418 + 474.216x419 + +1393.12x420 + 1645.82x421 + 1554.19x422 + 1514.06x423 + 1505.76x424 + 1484.17x425 + 108.753x426 + 125.16x427 + 66.2618x428 + 444.974x429 + +604.339x430 + 512.929x431 + 498.597x432 + 419.878x433 + 363.822x434 + 201.647x435 + 265.994x436 + 249.203x437 + 218.903x438 + 92.0124x439 + +254.73x440 + 279.182x441 + 256.123x442 + 248.926x443 + 170.433x444 + 371.106x445 + 428.335x446 + 426.052x447 + 390.825x448 + 364.982x449 + +349.071x450 + 340.661x451 + 340.498x452 + 328.691x453 + 265.217x454 + 245.253x455 + 368.194x456 + 384.262x457 + 381.785x458 + 351.456x459 + +339.471x460 + 338.007x461 + 971.756x462 + 1107.06x463 + 966.047x464 + 961.553x465 + 924.32x466 + 846.681x467 + 304.014x468 + 322.016x469 + +285.208x470 + 263.472x471 + 234.144x472 + 196.057x473 + 188.504x474 + 279.942x475 + 162.391x476 + 124.697x477 + 701.241x478 + 757.828x479 + +712.817x480 + 667.907x481 + 658.857x482 + 647.71x483 + 428.716x484 + 617.408x485 + 515.406x486 + 512.729x487 + 503.794x488 + 479.817x489 + +464.754x490 + 600.957x491 + 594.796x492 + 578.034x493 + 534.113x494 + 468.593x495 + 117.307x496 + 94.2007x497 + 292.089x498 + 338.317x499 + +292.958x500 + 174.022x501 + +st + +x7 + x10 + x47 + x57 + x88 + x120 + x142 + x159 + x160 + x161 ++ x162 + x163 + x169 + x170 + x172 + x197 + x203 + x336 + x351 + x353 ++ x442 + x444 <= 1 + +x9 + x57 + x71 + x120 + x121 + x140 + x142 + x144 + x145 + x147 ++ x149 + x159 + x160 + x161 + x162 + x163 + x164 + x169 + x170 + x171 ++ x172 + x182 + x197 + x203 + x237 + x238 + x254 + x283 + x317 + x318 ++ x320 + x351 + x353 + x440 + x442 + x443 + x444 + x463 <= 1 + +x8 + x64 + x71 + x112 + x120 + x121 + x139 + x140 + x141 + x142 ++ x143 + x144 + x159 + x160 + x161 + x164 + x169 + x170 + x171 + x172 ++ x176 + x182 + x184 + x186 + x192 + x236 + x237 + x238 + x253 + x254 ++ x282 + x283 + x316 + x317 + x318 + x320 + x329 + x346 + x351 + x390 ++ x440 + x441 + x442 + x478 + x480 + x483 <= 1 + +x54 + x73 + x107 + x112 + x122 + x139 + x141 + x142 + x143 + x145 ++ x154 + x164 + x174 + x177 + x178 + x182 + x197 + x213 + x217 + x235 ++ x237 + x257 + x301 + x302 + x316 + x318 + x320 + x321 + x326 + x338 ++ x340 + x342 + x346 + x349 + x386 + x389 + x390 + x416 + x441 + x473 ++ x478 + x481 + x482 <= 1 + +x49 + x64 + x73 + x105 + x107 + x112 + x130 + x141 + x142 + x150 ++ x154 + x158 + x177 + x213 + x214 + x217 + x235 + x237 + x256 + x273 ++ x278 + x280 + x283 + x284 + x301 + x302 + x316 + x318 + x320 + x321 ++ x338 + x340 + x342 + x346 + x349 + x353 + x373 + x386 + x389 + x390 ++ x424 + x473 + x478 + x480 + x481 + x482 <= 1 + +x36 + x39 + x49 + x54 + x64 + x68 + x73 + x105 + x107 + x112 ++ x130 + x140 + x141 + x142 + x150 + x154 + x156 + x158 + x177 + x191 ++ x213 + x214 + x216 + x217 + x235 + x237 + x256 + x273 + x276 + x278 ++ x279 + x280 + x284 + x289 + x316 + x320 + x340 + x342 + x344 + x349 ++ x373 + x386 + x387 + x388 + x389 + x390 + x424 + x478 + x479 + x481 ++ x482 <= 1 + +x34 + x36 + x39 + x54 + x64 + x67 + x68 + x69 + x73 + x105 ++ x107 + x112 + x133 + x140 + x141 + x142 + x148 + x150 + x154 + x156 ++ x157 + x177 + x213 + x214 + x216 + x217 + x237 + x256 + x266 + x273 ++ x274 + x275 + x276 + x279 + x280 + x284 + x289 + x312 + x314 + x316 ++ x320 + x335 + x338 + x342 + x349 + x386 + x388 + x389 + x390 + x391 ++ x420 + x424 + x430 + x450 + x451 + x452 + x478 + x479 + x481 + x482 + <= 1 + +x34 + x36 + x39 + x54 + x64 + x67 + x68 + x107 + x140 + x141 ++ x142 + x150 + x153 + x154 + x190 + x193 + x213 + x214 + x216 + x217 ++ x218 + x279 + x280 + x284 + x285 + x286 + x289 + x313 + x314 + x320 ++ x325 + x335 + x348 + x349 + x364 + x386 + x387 + x389 + x391 + x421 ++ x422 + x424 + x451 + x453 + x479 <= 1 + +x34 + x36 + x37 + x54 + x64 + x77 + x107 + x122 + x128 + x140 ++ x150 + x153 + x154 + x193 + x213 + x214 + x216 + x217 + x218 + x223 ++ x265 + x267 + x279 + x282 + x284 + x285 + x286 + x322 + x325 + x327 ++ x364 + x387 + x388 + x391 + x422 + x424 + x436 + x439 + x479 <= 1 + +x4 + x34 + x35 + x36 + x37 + x154 + x213 + x214 + x216 + x217 ++ x265 + x267 + x279 + x282 + x284 + x285 + x327 + x347 + x422 + x435 ++ x439 + x492 <= 1 + +x7 + x10 + x42 + x47 + x52 + x57 + x88 + x117 + x120 + x121 ++ x142 + x144 + x145 + x147 + x149 + x159 + x160 + x161 + x162 + x163 ++ x164 + x169 + x170 + x171 + x172 + x173 + x197 + x198 + x199 + x200 ++ x203 + x319 + x321 + x336 + x351 + x353 + x375 + x400 + x440 + x443 ++ x444 <= 1 + +x7 + x9 + x39 + x42 + x47 + x57 + x71 + x120 + x121 + x139 ++ x141 + x142 + x143 + x144 + x145 + x147 + x149 + x159 + x160 + x161 ++ x162 + x163 + x164 + x169 + x170 + x171 + x192 + x197 + x198 + x200 ++ x203 + x234 + x237 + x238 + x254 + x257 + x283 + x321 + x332 + x333 ++ x334 + x336 + x351 + x353 + x440 + x442 + x443 + x444 + x485 <= 1 + +x8 + x12 + x54 + x65 + x71 + x94 + x112 + x117 + x119 + x120 ++ x122 + x139 + x140 + x141 + x142 + x143 + x144 + x160 + x164 + x170 ++ x172 + x174 + x175 + x176 + x178 + x179 + x182 + x184 + x186 + x190 ++ x192 + x193 + x196 + x214 + x215 + x236 + x237 + x238 + x253 + x254 ++ x255 + x256 + x257 + x268 + x282 + x283 + x302 + x307 + x316 + x317 ++ x318 + x319 + x320 + x321 + x329 + x330 + x340 + x342 + x346 + x349 ++ x353 + x373 + x390 + x402 + x441 + x478 + x480 + x482 + x483 <= 1 + +x9 + x12 + x49 + x54 + x65 + x73 + x94 + x112 + x122 + x139 ++ x140 + x141 + x142 + x143 + x144 + x150 + x154 + x155 + x160 + x163 ++ x164 + x174 + x175 + x176 + x178 + x179 + x182 + x186 + x190 + x191 ++ x193 + x194 + x196 + x197 + x214 + x215 + x216 + x235 + x236 + x237 ++ x238 + x253 + x254 + x255 + x256 + x257 + x273 + x277 + x279 + x282 ++ x283 + x302 + x316 + x317 + x318 + x319 + x320 + x321 + x338 + x340 ++ x344 + x346 + x349 + x353 + x373 + x387 + x389 + x390 + x402 + x420 ++ x441 + x454 + x478 + x479 + x480 + x482 + x486 <= 1 + +x12 + x49 + x54 + x58 + x69 + x73 + x107 + x112 + x122 + x130 ++ x139 + x141 + x142 + x143 + x146 + x150 + x154 + x160 + x163 + x164 ++ x174 + x175 + x179 + x191 + x193 + x214 + x216 + x217 + x235 + x236 ++ x237 + x253 + x256 + x257 + x273 + x274 + x275 + x276 + x277 + x282 ++ x283 + x300 + x302 + x316 + x318 + x319 + x320 + x321 + x323 + x333 ++ x338 + x340 + x346 + x349 + x353 + x373 + x386 + x387 + x389 + x390 ++ x391 + x420 + x421 + x424 + x454 + x478 + x479 + x480 + x481 + x482 ++ x486 <= 1 + +x12 + x39 + x49 + x51 + x54 + x58 + x68 + x69 + x73 + x107 ++ x112 + x138 + x140 + x141 + x142 + x148 + x150 + x154 + x160 + x161 ++ x191 + x213 + x214 + x216 + x217 + x235 + x237 + x255 + x256 + x274 ++ x275 + x276 + x277 + x278 + x279 + x280 + x282 + x284 + x289 + x312 ++ x314 + x316 + x318 + x320 + x333 + x335 + x338 + x342 + x344 + x349 ++ x386 + x387 + x388 + x389 + x390 + x391 + x420 + x421 + x424 + x451 ++ x454 + x455 + x459 + x478 + x479 + x480 + x481 + x482 <= 1 + +x34 + x36 + x37 + x39 + x51 + x54 + x64 + x65 + x67 + x68 ++ x69 + x73 + x107 + x138 + x141 + x148 + x150 + x154 + x157 + x213 ++ x214 + x216 + x217 + x237 + x240 + x256 + x266 + x276 + x277 + x279 ++ x280 + x282 + x289 + x312 + x313 + x335 + x338 + x342 + x347 + x349 ++ x386 + x387 + x388 + x389 + x391 + x420 + x421 + x422 + x424 + x425 ++ x430 + x451 + x452 + x453 + x455 + x479 + x481 <= 1 + +x1 + x34 + x36 + x37 + x38 + x54 + x64 + x66 + x67 + x68 ++ x107 + x138 + x148 + x150 + x154 + x193 + x213 + x214 + x216 + x217 ++ x237 + x239 + x264 + x265 + x266 + x267 + x279 + x285 + x289 + x313 ++ x320 + x325 + x335 + x342 + x347 + x349 + x371 + x386 + x387 + x388 ++ x391 + x420 + x421 + x422 + x424 + x425 + x430 + x453 + x479 + x481 + <= 1 + +x16 + x37 + x54 + x64 + x107 + x148 + x150 + x153 + x154 + x168 ++ x193 + x213 + x216 + x217 + x264 + x265 + x267 + x284 + x285 + x286 ++ x289 + x322 + x325 + x347 + x364 + x387 + x388 + x391 + x422 + x425 ++ x439 + x453 + x491 <= 1 + +x16 + x17 + x34 + x35 + x36 + x37 + x54 + x64 + x65 + x77 ++ x107 + x150 + x154 + x213 + x214 + x216 + x217 + x218 + x265 + x266 ++ x267 + x279 + x282 + x284 + x285 + x286 + x290 + x327 + x347 + x348 ++ x371 + x387 + x388 + x422 + x435 + x436 + x437 + x439 + x491 + x492 + <= 1 + +x4 + x7 + x9 + x10 + x11 + x12 + x47 + x52 + x57 + x67 ++ x108 + x116 + x117 + x119 + x120 + x121 + x139 + x141 + x142 + x143 ++ x144 + x147 + x149 + x159 + x160 + x161 + x162 + x163 + x164 + x169 ++ x172 + x173 + x192 + x196 + x197 + x198 + x199 + x201 + x214 + x234 ++ x235 + x283 + x287 + x319 + x321 + x333 + x336 + x337 + x338 + x344 ++ x349 + x350 + x351 + x352 + x353 + x375 + x379 + x380 + x384 + x400 + <= 1 + +x4 + x7 + x8 + x9 + x11 + x12 + x26 + x39 + x47 + x56 ++ x57 + x71 + x74 + x108 + x117 + x118 + x119 + x120 + x121 + x139 ++ x141 + x142 + x143 + x144 + x147 + x149 + x159 + x160 + x161 + x162 ++ x163 + x164 + x171 + x173 + x174 + x192 + x193 + x194 + x196 + x197 ++ x198 + x199 + x200 + x201 + x203 + x214 + x226 + x231 + x234 + x235 ++ x238 + x240 + x253 + x254 + x267 + x283 + x287 + x317 + x318 + x319 ++ x321 + x328 + x330 + x333 + x334 + x336 + x342 + x344 + x349 + x350 ++ x351 + x352 + x353 + x375 + x379 + x380 + x390 + x402 + x443 + x482 ++ x483 + x485 + x486 <= 1 + +x7 + x8 + x9 + x11 + x12 + x25 + x26 + x47 + x54 + x56 ++ x57 + x65 + x67 + x69 + x71 + x73 + x74 + x79 + x91 + x94 ++ x101 + x107 + x112 + x117 + x118 + x119 + x120 + x138 + x139 + x140 ++ x141 + x142 + x143 + x144 + x147 + x149 + x159 + x160 + x161 + x163 ++ x164 + x174 + x175 + x176 + x178 + x179 + x182 + x184 + x186 + x190 ++ x192 + x193 + x194 + x196 + x197 + x213 + x214 + x220 + x226 + x230 ++ x234 + x235 + x236 + x237 + x238 + x240 + x253 + x254 + x255 + x256 ++ x257 + x258 + x268 + x283 + x307 + x316 + x317 + x318 + x319 + x321 ++ x328 + x329 + x330 + x332 + x333 + x334 + x340 + x342 + x343 + x344 ++ x349 + x351 + x353 + x373 + x374 + x375 + x377 + x380 + x390 + x402 ++ x403 + x446 + x478 + x480 + x482 + x483 + x486 <= 1 + +x4 + x9 + x11 + x12 + x26 + x54 + x58 + x60 + x65 + x67 ++ x69 + x71 + x73 + x74 + x91 + x94 + x100 + x101 + x103 + x107 ++ x112 + x116 + x118 + x119 + x122 + x138 + x139 + x140 + x141 + x142 ++ x143 + x144 + x150 + x154 + x155 + x160 + x161 + x163 + x174 + x175 ++ x176 + x178 + x179 + x186 + x190 + x191 + x192 + x193 + x194 + x196 ++ x197 + x220 + x235 + x236 + x237 + x238 + x253 + x254 + x255 + x257 ++ x268 + x269 + x275 + x277 + x279 + x283 + x302 + x310 + x316 + x317 ++ x318 + x319 + x320 + x321 + x333 + x334 + x336 + x340 + x344 + x351 ++ x371 + x373 + x377 + x389 + x398 + x402 + x403 + x446 + x447 + x463 ++ x480 + x482 + x483 + x486 <= 1 + +x4 + x12 + x18 + x46 + x49 + x51 + x54 + x58 + x60 + x69 ++ x70 + x71 + x73 + x74 + x101 + x107 + x112 + x122 + x130 + x138 ++ x139 + x140 + x141 + x142 + x143 + x144 + x146 + x160 + x161 + x163 ++ x164 + x175 + x176 + x186 + x191 + x193 + x194 + x196 + x197 + x217 ++ x235 + x236 + x237 + x240 + x253 + x254 + x255 + x264 + x269 + x274 ++ x275 + x279 + x308 + x317 + x318 + x320 + x321 + x323 + x333 + x344 ++ x346 + x349 + x351 + x371 + x402 + x403 + x420 + x424 + x478 + x480 ++ x486 + x489 <= 1 + +x13 + x49 + x51 + x54 + x65 + x68 + x111 + x112 + x138 + x139 ++ x140 + x141 + x142 + x143 + x144 + x148 + x150 + x161 + x189 + x191 ++ x196 + x216 + x235 + x240 + x255 + x274 + x278 + x279 + x316 + x317 ++ x318 + x320 + x333 + x334 + x335 + x336 + x338 + x342 + x344 + x346 ++ x349 + x386 + x391 + x408 + x420 + x421 + x424 + x425 + x455 + x481 + <= 1 + +x51 + x54 + x64 + x65 + x66 + x67 + x68 + x73 + x138 + x139 ++ x140 + x141 + x143 + x148 + x150 + x154 + x191 + x213 + x214 + x216 ++ x217 + x218 + x240 + x266 + x284 + x287 + x333 + x335 + x387 + x388 ++ x389 + x391 + x420 + x421 + x422 + x424 + x425 + x452 + x455 + x479 ++ x481 <= 1 + +x13 + x34 + x38 + x54 + x64 + x65 + x66 + x68 + x83 + x107 ++ x138 + x141 + x148 + x154 + x193 + x213 + x214 + x216 + x217 + x218 ++ x237 + x239 + x263 + x264 + x266 + x287 + x325 + x332 + x333 + x335 ++ x347 + x386 + x388 + x391 + x420 + x421 + x422 + x424 + x425 + x430 ++ x432 + x452 + x479 + x481 + x490 <= 1 + +x13 + x17 + x29 + x37 + x64 + x65 + x66 + x138 + x140 + x152 ++ x154 + x187 + x213 + x214 + x216 + x217 + x218 + x235 + x264 + x265 ++ x266 + x267 + x268 + x282 + x284 + x285 + x288 + x347 + x368 + x370 ++ x371 + x420 + x421 + x422 + x437 + x491 + x492 + x493 + x495 <= 1 + +x17 + x35 + x37 + x52 + x64 + x65 + x66 + x70 + x132 + x138 ++ x154 + x187 + x196 + x213 + x214 + x216 + x218 + x235 + x249 + x264 ++ x265 + x266 + x267 + x282 + x284 + x285 + x287 + x290 + x347 + x348 ++ x371 + x421 + x422 + x432 + x435 + x436 + x437 + x490 + x491 + x492 ++ x493 + x501 <= 1 + +x1 + x4 + x7 + x8 + x9 + x10 + x11 + x26 + x49 + x67 ++ x71 + x91 + x108 + x116 + x117 + x118 + x121 + x124 + x139 + x140 ++ x141 + x142 + x143 + x147 + x149 + x154 + x155 + x159 + x160 + x161 ++ x162 + x163 + x164 + x171 + x173 + x174 + x192 + x193 + x194 + x195 ++ x197 + x198 + x199 + x200 + x201 + x202 + x214 + x225 + x226 + x229 ++ x231 + x238 + x267 + x283 + x319 + x321 + x333 + x334 + x337 + x338 ++ x343 + x350 + x351 + x352 + x353 + x375 + x379 + x380 + x381 + x384 ++ x402 + x465 + x485 <= 1 + +x1 + x4 + x7 + x8 + x11 + x22 + x24 + x26 + x49 + x67 ++ x71 + x79 + x91 + x117 + x118 + x138 + x139 + x140 + x141 + x142 ++ x143 + x147 + x154 + x159 + x161 + x162 + x163 + x173 + x192 + x196 ++ x197 + x200 + x202 + x213 + x225 + x226 + x229 + x230 + x238 + x258 ++ x268 + x283 + x311 + x331 + x332 + x333 + x334 + x336 + x339 + x341 ++ x343 + x350 + x351 + x352 + x353 + x355 + x375 + x376 + x378 + x379 ++ x380 + x384 + x465 + x483 <= 1 + +x1 + x4 + x7 + x8 + x11 + x22 + x23 + x24 + x25 + x56 ++ x60 + x67 + x69 + x71 + x74 + x79 + x80 + x89 + x91 + x93 ++ x94 + x104 + x116 + x117 + x118 + x119 + x122 + x138 + x139 + x140 ++ x141 + x142 + x143 + x144 + x162 + x163 + x164 + x176 + x178 + x179 ++ x192 + x193 + x194 + x196 + x197 + x213 + x214 + x226 + x230 + x238 ++ x240 + x253 + x257 + x258 + x268 + x306 + x307 + x310 + x311 + x317 ++ x318 + x321 + x328 + x331 + x332 + x333 + x334 + x336 + x337 + x339 ++ x341 + x342 + x343 + x350 + x354 + x355 + x375 + x376 + x377 + x379 ++ x380 + x446 + x447 + x483 <= 1 + +x1 + x4 + x11 + x22 + x23 + x24 + x27 + x54 + x56 + x58 ++ x60 + x65 + x67 + x69 + x71 + x73 + x74 + x78 + x79 + x80 ++ x91 + x93 + x100 + x102 + x103 + x112 + x113 + x116 + x118 + x119 ++ x122 + x138 + x139 + x140 + x141 + x142 + x143 + x144 + x163 + x178 ++ x179 + x186 + x188 + x190 + x191 + x192 + x193 + x194 + x196 + x197 ++ x215 + x218 + x219 + x220 + x221 + x235 + x237 + x238 + x240 + x255 ++ x257 + x258 + x268 + x269 + x306 + x308 + x310 + x318 + x319 + x331 ++ x332 + x333 + x334 + x335 + x336 + x337 + x339 + x341 + x343 + x350 ++ x351 + x354 + x355 + x373 + x377 + x378 + x398 + x403 + x445 + x446 ++ x447 + x448 + x463 + x480 + x483 + x487 + x489 <= 1 + +x18 + x51 + x54 + x56 + x58 + x60 + x65 + x67 + x69 + x70 ++ x71 + x73 + x74 + x78 + x93 + x103 + x138 + x139 + x140 + x141 ++ x142 + x143 + x146 + x186 + x188 + x189 + x190 + x191 + x193 + x194 ++ x196 + x220 + x222 + x235 + x237 + x238 + x240 + x264 + x269 + x279 ++ x308 + x309 + x310 + x311 + x333 + x334 + x344 + x348 + x355 + x377 ++ x398 + x402 + x403 + x420 + x484 + x486 + x489 <= 1 + +x13 + x14 + x16 + x18 + x51 + x52 + x53 + x54 + x65 + x66 ++ x70 + x71 + x73 + x74 + x85 + x93 + x135 + x138 + x139 + x140 ++ x141 + x143 + x148 + x150 + x152 + x153 + x155 + x161 + x186 + x188 ++ x189 + x191 + x214 + x216 + x218 + x237 + x238 + x240 + x264 + x269 ++ x280 + x281 + x306 + x308 + x309 + x310 + x311 + x316 + x332 + x333 ++ x334 + x335 + x336 + x342 + x344 + x346 + x347 + x348 + x349 + x382 ++ x383 + x403 + x407 + x408 + x410 + x420 + x424 + x425 + x432 + x486 ++ x489 + x494 <= 1 + +x13 + x14 + x16 + x45 + x50 + x51 + x52 + x54 + x64 + x65 ++ x66 + x70 + x71 + x107 + x126 + x130 + x134 + x135 + x138 + x139 ++ x141 + x143 + x148 + x152 + x153 + x188 + x189 + x213 + x216 + x218 ++ x227 + x238 + x240 + x249 + x264 + x266 + x269 + x281 + x316 + x332 ++ x335 + x336 + x340 + x344 + x345 + x346 + x347 + x348 + x349 + x368 ++ x370 + x381 + x383 + x400 + x404 + x405 + x406 + x407 + x408 + x410 ++ x420 + x421 + x422 + x424 + x425 + x429 + x433 + x457 + x461 + x490 ++ x494 + x495 <= 1 + +x13 + x17 + x38 + x50 + x51 + x54 + x64 + x65 + x66 + x70 ++ x71 + x83 + x107 + x138 + x141 + x143 + x153 + x188 + x213 + x214 ++ x216 + x217 + x218 + x225 + x227 + x249 + x263 + x264 + x266 + x282 ++ x287 + x332 + x333 + x335 + x336 + x340 + x344 + x345 + x346 + x347 ++ x348 + x368 + x370 + x371 + x403 + x405 + x408 + x410 + x420 + x421 ++ x422 + x424 + x425 + x429 + x430 + x431 + x432 + x433 + x475 + x490 ++ x495 <= 1 + +x17 + x35 + x38 + x44 + x46 + x64 + x65 + x66 + x70 + x73 ++ x110 + x130 + x132 + x138 + x140 + x152 + x153 + x154 + x187 + x196 ++ x213 + x214 + x216 + x217 + x218 + x227 + x235 + x247 + x249 + x264 ++ x265 + x266 + x267 + x268 + x282 + x284 + x285 + x287 + x288 + x290 ++ x335 + x340 + x344 + x347 + x348 + x368 + x370 + x371 + x407 + x408 ++ x410 + x420 + x421 + x422 + x424 + x431 + x432 + x435 + x436 + x437 ++ x438 + x471 + x490 + x491 + x492 + x493 + x495 + x501 <= 1 + +x17 + x23 + x35 + x38 + x65 + x73 + x154 + x187 + x213 + x214 ++ x216 + x218 + x235 + x249 + x264 + x265 + x266 + x267 + x268 + x284 ++ x287 + x288 + x290 + x347 + x368 + x371 + x421 + x422 + x424 + x490 ++ x491 + x492 + x493 + x498 + x501 <= 1 + +x8 + x9 + x10 + x49 + x67 + x108 + x117 + x121 + x139 + x141 ++ x142 + x143 + x149 + x155 + x159 + x162 + x164 + x190 + x192 + x195 ++ x197 + x201 + x202 + x224 + x225 + x228 + x229 + x283 + x294 + x319 ++ x332 + x334 + x337 + x338 + x339 + x341 + x343 + x350 + x352 + x375 ++ x376 + x379 + x380 + x384 + x402 + x484 + x485 <= 1 + +x0 + x1 + x8 + x49 + x59 + x63 + x67 + x72 + x89 + x116 ++ x138 + x139 + x140 + x141 + x142 + x143 + x151 + x154 + x155 + x159 ++ x181 + x186 + x192 + x195 + x202 + x213 + x219 + x228 + x229 + x230 ++ x238 + x268 + x283 + x293 + x294 + x334 + x335 + x337 + x338 + x339 ++ x341 + x343 + x350 + x352 + x375 + x376 + x377 + x378 + x379 + x380 ++ x399 + x447 + x462 + x483 + x484 + x485 + x487 + x488 + x489 <= 1 + +x1 + x4 + x11 + x22 + x23 + x25 + x27 + x49 + x56 + x59 ++ x60 + x63 + x67 + x69 + x71 + x72 + x75 + x79 + x80 + x89 ++ x91 + x94 + x116 + x118 + x139 + x140 + x142 + x143 + x155 + x162 ++ x176 + x179 + x186 + x194 + x213 + x215 + x219 + x222 + x223 + x238 ++ x240 + x258 + x269 + x306 + x307 + x310 + x311 + x321 + x333 + x334 ++ x336 + x337 + x341 + x343 + x350 + x354 + x375 + x376 + x377 + x378 ++ x379 + x380 + x445 + x446 + x447 + x448 + x462 + x480 + x483 + x484 ++ x485 + x487 + x489 <= 1 + +x1 + x4 + x22 + x23 + x24 + x25 + x27 + x54 + x56 + x59 ++ x60 + x63 + x65 + x67 + x68 + x69 + x70 + x71 + x72 + x74 ++ x75 + x78 + x80 + x90 + x93 + x94 + x100 + x102 + x109 + x113 ++ x118 + x138 + x139 + x142 + x143 + x155 + x162 + x178 + x181 + x186 ++ x188 + x190 + x193 + x194 + x195 + x196 + x197 + x215 + x219 + x220 ++ x221 + x222 + x223 + x235 + x238 + x239 + x240 + x246 + x255 + x258 ++ x269 + x298 + x306 + x307 + x308 + x309 + x310 + x311 + x332 + x333 ++ x334 + x335 + x336 + x337 + x339 + x341 + x343 + x345 + x348 + x350 ++ x352 + x354 + x355 + x375 + x376 + x377 + x378 + x393 + x398 + x403 ++ x445 + x446 + x447 + x448 + x450 + x462 + x463 + x465 + x483 + x484 ++ x485 + x487 + x489 <= 1 + +x14 + x18 + x27 + x59 + x63 + x65 + x67 + x68 + x69 + x70 ++ x73 + x78 + x80 + x138 + x139 + x142 + x143 + x153 + x188 + x189 ++ x190 + x191 + x194 + x220 + x221 + x222 + x223 + x239 + x240 + x269 ++ x306 + x307 + x309 + x311 + x333 + x334 + x339 + x343 + x348 + x355 ++ x398 + x445 + x450 + x484 + x486 + x487 + x489 <= 1 + +x1 + x14 + x18 + x27 + x51 + x52 + x53 + x63 + x64 + x65 ++ x67 + x70 + x71 + x73 + x85 + x130 + x131 + x138 + x139 + x141 ++ x143 + x148 + x150 + x153 + x186 + x188 + x189 + x190 + x191 + x194 ++ x216 + x240 + x280 + x281 + x306 + x308 + x309 + x311 + x324 + x332 ++ x333 + x335 + x336 + x348 + x349 + x398 + x407 + x410 + x425 + x434 ++ x484 + x486 <= 1 + +x13 + x14 + x16 + x17 + x18 + x19 + x50 + x51 + x52 + x53 ++ x63 + x64 + x65 + x66 + x69 + x70 + x73 + x83 + x85 + x93 ++ x107 + x109 + x128 + x130 + x131 + x135 + x138 + x139 + x140 + x141 ++ x143 + x148 + x150 + x152 + x153 + x155 + x188 + x189 + x191 + x194 ++ x213 + x214 + x216 + x217 + x218 + x227 + x238 + x240 + x264 + x266 ++ x269 + x280 + x281 + x308 + x309 + x332 + x333 + x334 + x335 + x336 ++ x340 + x344 + x345 + x346 + x347 + x348 + x349 + x370 + x379 + x381 ++ x382 + x383 + x398 + x400 + x403 + x404 + x406 + x407 + x408 + x409 ++ x410 + x419 + x420 + x421 + x423 + x424 + x425 + x429 + x431 + x432 ++ x433 + x434 + x458 + x459 + x461 + x465 + x484 + x495 <= 1 + +x3 + x13 + x14 + x15 + x16 + x17 + x18 + x38 + x45 + x46 ++ x50 + x51 + x52 + x53 + x54 + x63 + x64 + x65 + x66 + x70 ++ x83 + x85 + x107 + x108 + x110 + x128 + x131 + x132 + x133 + x134 ++ x135 + x138 + x140 + x141 + x148 + x152 + x153 + x155 + x181 + x188 ++ x189 + x191 + x213 + x214 + x216 + x217 + x218 + x263 + x264 + x265 ++ x266 + x267 + x281 + x282 + x288 + x332 + x333 + x335 + x336 + x340 ++ x344 + x345 + x346 + x347 + x348 + x349 + x368 + x370 + x371 + x372 ++ x382 + x400 + x401 + x406 + x407 + x408 + x409 + x410 + x417 + x420 ++ x421 + x422 + x424 + x425 + x429 + x430 + x431 + x432 + x433 + x434 ++ x456 + x457 + x458 + x459 + x461 + x474 + x475 + x490 + x491 + x494 ++ x495 <= 1 + +x13 + x14 + x15 + x16 + x17 + x18 + x42 + x44 + x46 + x53 ++ x54 + x64 + x65 + x66 + x70 + x110 + x128 + x130 + x132 + x138 ++ x148 + x152 + x153 + x154 + x187 + x188 + x191 + x213 + x214 + x217 ++ x218 + x227 + x264 + x265 + x267 + x268 + x282 + x284 + x288 + x345 ++ x346 + x347 + x348 + x368 + x369 + x370 + x371 + x372 + x373 + x401 ++ x407 + x410 + x421 + x422 + x424 + x429 + x430 + x431 + x461 + x471 ++ x491 + x492 + x493 + x494 + x495 + x501 <= 1 + +x5 + x17 + x29 + x35 + x73 + x128 + x132 + x140 + x154 + x187 ++ x196 + x213 + x216 + x218 + x264 + x265 + x266 + x267 + x268 + x288 ++ x290 + x336 + x345 + x347 + x348 + x369 + x421 + x490 + x493 + x498 ++ x499 + x500 <= 1 + +x10 + x39 + x49 + x67 + x68 + x89 + x92 + x116 + x121 + x139 ++ x140 + x141 + x142 + x143 + x155 + x159 + x162 + x181 + x187 + x192 ++ x195 + x197 + x201 + x215 + x219 + x224 + x225 + x228 + x229 + x239 ++ x246 + x293 + x319 + x332 + x334 + x338 + x339 + x341 + x343 + x350 ++ x352 + x354 + x375 + x376 + x378 + x379 + x394 + x484 + x485 + x487 + <= 1 + +x0 + x1 + x10 + x49 + x53 + x59 + x63 + x67 + x68 + x89 ++ x90 + x92 + x106 + x116 + x138 + x139 + x140 + x141 + x142 + x143 ++ x146 + x151 + x154 + x155 + x162 + x181 + x192 + x194 + x195 + x205 ++ x212 + x215 + x219 + x223 + x224 + x228 + x239 + x240 + x246 + x292 ++ x293 + x294 + x295 + x332 + x333 + x334 + x335 + x337 + x339 + x341 ++ x343 + x352 + x354 + x358 + x375 + x378 + x379 + x380 + x393 + x394 ++ x399 + x417 + x484 + x485 + x487 + x488 <= 1 + +x0 + x1 + x49 + x52 + x59 + x63 + x67 + x69 + x70 + x71 ++ x72 + x74 + x89 + x90 + x92 + x93 + x94 + x138 + x139 + x141 ++ x142 + x143 + x151 + x154 + x155 + x181 + x193 + x194 + x195 + x196 ++ x205 + x208 + x215 + x216 + x219 + x220 + x221 + x222 + x223 + x224 ++ x235 + x239 + x240 + x243 + x246 + x258 + x293 + x294 + x307 + x308 ++ x332 + x333 + x334 + x335 + x337 + x339 + x341 + x350 + x352 + x354 ++ x358 + x360 + x376 + x378 + x380 + x393 + x398 + x399 + x417 + x448 ++ x450 + x487 + x488 + x489 <= 1 + +x1 + x24 + x25 + x49 + x52 + x53 + x59 + x63 + x64 + x65 ++ x66 + x67 + x68 + x69 + x70 + x71 + x72 + x74 + x75 + x76 ++ x78 + x86 + x94 + x102 + x106 + x108 + x109 + x110 + x113 + x129 ++ x139 + x143 + x150 + x151 + x155 + x180 + x181 + x185 + x190 + x215 ++ x218 + x220 + x221 + x231 + x233 + x238 + x239 + x258 + x269 + x297 ++ x298 + x306 + x332 + x333 + x334 + x335 + x336 + x337 + x339 + x341 ++ x345 + x348 + x354 + x355 + x376 + x377 + x425 + x445 + x448 + x449 ++ x450 + x462 + x463 + x465 + x466 + x500 <= 1 + +x1 + x50 + x51 + x52 + x53 + x63 + x64 + x65 + x66 + x67 ++ x68 + x70 + x72 + x74 + x75 + x77 + x84 + x86 + x106 + x108 ++ x109 + x110 + x113 + x129 + x130 + x139 + x143 + x147 + x150 + x151 ++ x153 + x155 + x180 + x181 + x183 + x185 + x188 + x190 + x213 + x218 ++ x231 + x232 + x233 + x236 + x269 + x280 + x324 + x332 + x333 + x334 ++ x335 + x336 + x345 + x355 + x357 + x369 + x370 + x372 + x376 + x407 ++ x409 + x423 + x434 + x445 + x448 + x449 + x462 + x463 + x464 + x465 ++ x466 + x467 <= 1 + +x1 + x14 + x46 + x50 + x51 + x52 + x53 + x63 + x64 + x65 ++ x66 + x68 + x70 + x71 + x72 + x74 + x84 + x106 + x107 + x108 ++ x109 + x110 + x128 + x130 + x137 + x138 + x139 + x150 + x152 + x153 ++ x155 + x180 + x184 + x186 + x188 + x189 + x190 + x194 + x218 + x233 ++ x236 + x280 + x281 + x309 + x324 + x326 + x332 + x333 + x335 + x336 ++ x337 + x345 + x346 + x347 + x349 + x355 + x357 + x370 + x372 + x401 ++ x407 + x409 + x415 + x420 + x423 + x429 + x434 + x462 + x465 + x466 + <= 1 + +x3 + x13 + x14 + x16 + x17 + x19 + x20 + x46 + x50 + x51 ++ x52 + x53 + x63 + x64 + x65 + x70 + x72 + x73 + x83 + x84 ++ x107 + x108 + x109 + x110 + x119 + x128 + x130 + x132 + x133 + x134 ++ x137 + x140 + x141 + x150 + x152 + x153 + x155 + x186 + x187 + x188 ++ x189 + x190 + x191 + x213 + x214 + x216 + x217 + x218 + x240 + x266 ++ x267 + x281 + x288 + x332 + x333 + x335 + x336 + x344 + x345 + x346 ++ x347 + x348 + x370 + x371 + x372 + x382 + x383 + x398 + x400 + x401 ++ x406 + x407 + x408 + x409 + x410 + x419 + x420 + x421 + x423 + x425 ++ x429 + x431 + x433 + x434 + x456 + x457 + x458 + x460 + x461 + x462 ++ x464 + x465 + x495 <= 1 + +x3 + x13 + x14 + x15 + x16 + x18 + x20 + x42 + x45 + x50 ++ x51 + x52 + x53 + x63 + x64 + x65 + x66 + x70 + x72 + x107 ++ x109 + x110 + x119 + x128 + x130 + x131 + x132 + x133 + x134 + x135 ++ x136 + x140 + x152 + x153 + x181 + x186 + x187 + x188 + x189 + x195 ++ x214 + x217 + x218 + x265 + x266 + x281 + x288 + x290 + x335 + x344 ++ x345 + x346 + x347 + x368 + x370 + x371 + x372 + x401 + x408 + x409 ++ x410 + x420 + x421 + x423 + x425 + x433 + x438 + x456 + x457 + x458 ++ x459 + x460 + x464 + x475 + x494 <= 1 + +x13 + x14 + x15 + x16 + x30 + x42 + x43 + x44 + x45 + x50 ++ x51 + x63 + x64 + x65 + x66 + x70 + x110 + x126 + x127 + x128 ++ x130 + x131 + x132 + x133 + x134 + x136 + x140 + x151 + x152 + x153 ++ x154 + x187 + x188 + x189 + x195 + x214 + x215 + x216 + x217 + x218 ++ x264 + x265 + x268 + x290 + x303 + x334 + x335 + x336 + x337 + x345 ++ x346 + x347 + x368 + x369 + x371 + x373 + x421 + x425 + x457 + x458 ++ x472 + x492 + x493 + x494 + x499 <= 1 + +x5 + x15 + x29 + x43 + x45 + x50 + x63 + x66 + x128 + x132 ++ x136 + x138 + x140 + x142 + x152 + x153 + x154 + x187 + x196 + x214 ++ x215 + x216 + x217 + x218 + x265 + x267 + x268 + x290 + x303 + x334 ++ x335 + x336 + x337 + x345 + x346 + x369 + x469 + x493 + x498 + x499 ++ x500 <= 1 + +x0 + x4 + x35 + x91 + x99 + x115 + x142 + x146 + x175 + x183 ++ x209 + x262 + x319 + x334 + x388 + x392 + x395 + x417 + x418 + x423 + <= 1 + +x0 + x1 + x10 + x49 + x52 + x53 + x63 + x67 + x68 + x72 ++ x74 + x89 + x90 + x92 + x93 + x105 + x106 + x115 + x116 + x129 ++ x139 + x141 + x142 + x143 + x145 + x146 + x150 + x151 + x154 + x155 ++ x181 + x192 + x195 + x204 + x205 + x206 + x208 + x209 + x210 + x212 ++ x215 + x223 + x224 + x228 + x239 + x246 + x291 + x292 + x293 + x294 ++ x295 + x296 + x299 + x334 + x335 + x337 + x339 + x341 + x352 + x354 ++ x358 + x360 + x378 + x379 + x392 + x393 + x394 + x395 + x399 + x411 ++ x417 + x418 + x423 + x428 + x467 + x485 + x487 + x488 <= 1 + +x0 + x1 + x10 + x49 + x52 + x53 + x63 + x67 + x68 + x72 ++ x74 + x89 + x90 + x92 + x106 + x116 + x129 + x131 + x139 + x141 ++ x142 + x143 + x145 + x146 + x151 + x154 + x181 + x194 + x195 + x205 ++ x208 + x209 + x210 + x211 + x215 + x219 + x223 + x224 + x239 + x241 ++ x243 + x246 + x258 + x292 + x293 + x294 + x295 + x332 + x333 + x334 ++ x336 + x337 + x341 + x343 + x350 + x352 + x354 + x358 + x360 + x376 ++ x378 + x379 + x380 + x393 + x394 + x399 + x400 + x411 + x417 + x427 ++ x467 + x488 + x489 <= 1 + +x6 + x18 + x49 + x52 + x63 + x64 + x65 + x68 + x69 + x72 ++ x74 + x76 + x106 + x109 + x110 + x113 + x115 + x129 + x145 + x147 ++ x150 + x151 + x152 + x153 + x155 + x181 + x183 + x190 + x195 + x215 ++ x221 + x232 + x233 + x236 + x239 + x265 + x269 + x296 + x297 + x298 ++ x332 + x333 + x334 + x335 + x336 + x337 + x355 + x356 + x357 + x366 ++ x376 + x377 + x411 + x420 + x423 + x425 + x449 + x450 + x462 + x463 ++ x464 + x465 + x466 + x500 <= 1 + +x1 + x21 + x35 + x49 + x50 + x51 + x52 + x53 + x63 + x64 ++ x65 + x66 + x67 + x68 + x72 + x75 + x76 + x77 + x83 + x84 ++ x105 + x106 + x108 + x109 + x110 + x113 + x114 + x115 + x129 + x139 ++ x145 + x147 + x150 + x151 + x152 + x153 + x155 + x181 + x183 + x185 ++ x190 + x218 + x232 + x236 + x239 + x269 + x280 + x281 + x324 + x327 ++ x332 + x333 + x334 + x335 + x336 + x337 + x355 + x357 + x366 + x370 ++ x372 + x376 + x377 + x401 + x419 + x423 + x449 + x462 + x463 + x464 ++ x465 + x467 <= 1 + +x2 + x3 + x49 + x50 + x51 + x52 + x53 + x63 + x64 + x65 ++ x66 + x68 + x72 + x76 + x83 + x84 + x105 + x106 + x107 + x108 ++ x109 + x110 + x114 + x115 + x128 + x129 + x130 + x131 + x137 + x139 ++ x145 + x147 + x149 + x150 + x151 + x152 + x153 + x180 + x184 + x185 ++ x186 + x187 + x188 + x189 + x195 + x218 + x236 + x239 + x242 + x269 ++ x280 + x281 + x309 + x322 + x324 + x326 + x332 + x333 + x335 + x336 ++ x337 + x361 + x372 + x400 + x401 + x406 + x409 + x411 + x415 + x416 ++ x422 + x423 + x425 + x449 + x462 + x463 + x464 + x465 + x466 + x467 + <= 1 + +x3 + x14 + x15 + x16 + x17 + x49 + x50 + x51 + x52 + x53 ++ x63 + x64 + x66 + x68 + x72 + x83 + x105 + x106 + x109 + x110 ++ x115 + x128 + x129 + x130 + x131 + x132 + x133 + x140 + x151 + x152 ++ x153 + x185 + x187 + x188 + x189 + x190 + x191 + x216 + x218 + x236 ++ x240 + x281 + x286 + x322 + x326 + x332 + x333 + x336 + x337 + x344 ++ x345 + x346 + x370 + x371 + x372 + x400 + x401 + x406 + x409 + x421 ++ x422 + x423 + x425 + x431 + x434 + x438 + x456 + x460 + x462 + x464 ++ x466 + x494 <= 1 + +x3 + x15 + x32 + x45 + x50 + x51 + x53 + x63 + x64 + x65 ++ x66 + x83 + x87 + x106 + x115 + x128 + x131 + x133 + x138 + x140 ++ x152 + x153 + x187 + x189 + x217 + x218 + x281 + x288 + x290 + x336 ++ x337 + x344 + x345 + x346 + x371 + x372 + x401 + x409 + x423 + x433 ++ x438 + x456 + x459 + x460 + x464 + x494 <= 1 + +x3 + x15 + x30 + x31 + x42 + x43 + x44 + x50 + x70 + x123 ++ x124 + x126 + x127 + x128 + x130 + x132 + x133 + x136 + x140 + x151 ++ x152 + x154 + x187 + x215 + x217 + x218 + x303 + x336 + x337 + x345 ++ x347 + x368 + x369 + x373 + x468 + x469 + x471 + x472 <= 1 + +x5 + x15 + x29 + x30 + x43 + x44 + x66 + x123 + x124 + x127 ++ x128 + x132 + x133 + x136 + x138 + x140 + x151 + x152 + x153 + x154 ++ x187 + x215 + x216 + x217 + x218 + x265 + x268 + x300 + x303 + x336 ++ x337 + x345 + x368 + x369 + x373 + x418 + x454 + x468 + x469 + x471 ++ x472 + x473 + x498 + x499 <= 1 + +x0 + x2 + x4 + x63 + x87 + x90 + x91 + x92 + x111 + x115 ++ x116 + x142 + x143 + x146 + x153 + x154 + x155 + x175 + x183 + x204 ++ x205 + x206 + x207 + x208 + x209 + x239 + x261 + x262 + x293 + x319 ++ x334 + x392 + x395 + x396 + x397 + x399 + x414 + x417 + x418 + x423 ++ x426 + x488 <= 1 + +x0 + x4 + x49 + x52 + x53 + x63 + x68 + x87 + x89 + x90 ++ x92 + x93 + x105 + x109 + x110 + x111 + x115 + x142 + x143 + x144 ++ x145 + x146 + x150 + x151 + x153 + x154 + x155 + x204 + x205 + x206 ++ x208 + x209 + x224 + x239 + x291 + x292 + x293 + x296 + x333 + x334 ++ x335 + x337 + x339 + x354 + x366 + x392 + x393 + x395 + x397 + x399 ++ x417 + x418 + x423 + x426 + x428 + x467 + x477 + x487 + x488 <= 1 + +x0 + x4 + x49 + x51 + x52 + x53 + x63 + x68 + x81 + x90 ++ x105 + x106 + x109 + x111 + x115 + x129 + x131 + x142 + x143 + x145 ++ x146 + x150 + x151 + x153 + x154 + x155 + x177 + x195 + x204 + x205 ++ x208 + x209 + x211 + x215 + x224 + x239 + x241 + x243 + x269 + x291 ++ x292 + x293 + x294 + x296 + x299 + x332 + x333 + x334 + x335 + x336 ++ x337 + x352 + x354 + x356 + x358 + x360 + x366 + x378 + x380 + x385 ++ x394 + x397 + x399 + x411 + x417 + x426 + x427 + x488 <= 1 + +x18 + x49 + x51 + x52 + x53 + x63 + x64 + x68 + x69 + x72 ++ x105 + x106 + x108 + x109 + x110 + x111 + x113 + x115 + x129 + x145 ++ x146 + x150 + x151 + x155 + x177 + x192 + x195 + x232 + x236 + x239 ++ x241 + x242 + x245 + x250 + x252 + x269 + x294 + x296 + x297 + x299 ++ x332 + x333 + x334 + x335 + x337 + x348 + x354 + x355 + x356 + x357 ++ x358 + x359 + x360 + x361 + x366 + x368 + x385 + x399 + x411 + x419 ++ x420 + x423 + x427 + x465 + x466 + x467 <= 1 + +x0 + x1 + x5 + x49 + x50 + x51 + x52 + x53 + x62 + x64 ++ x68 + x69 + x72 + x77 + x82 + x84 + x105 + x106 + x108 + x109 ++ x110 + x111 + x113 + x114 + x115 + x129 + x131 + x137 + x139 + x145 ++ x149 + x150 + x151 + x152 + x153 + x155 + x180 + x184 + x185 + x190 ++ x195 + x236 + x239 + x242 + x245 + x251 + x252 + x280 + x281 + x326 ++ x327 + x332 + x334 + x335 + x336 + x337 + x348 + x355 + x359 + x361 ++ x364 + x366 + x370 + x406 + x411 + x416 + x419 + x423 + x425 + x449 ++ x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x1 + x2 + x3 + x5 + x61 + x63 + x66 + x68 + x72 + x76 ++ x82 + x84 + x85 + x86 + x96 + x105 + x106 + x108 + x109 + x110 ++ x111 + x114 + x115 + x128 + x129 + x131 + x139 + x145 + x149 + x150 ++ x151 + x152 + x155 + x180 + x182 + x184 + x185 + x187 + x188 + x189 ++ x215 + x218 + x236 + x242 + x244 + x245 + x251 + x280 + x286 + x295 ++ x323 + x332 + x337 + x348 + x359 + x361 + x364 + x365 + x370 + x372 ++ x411 + x415 + x416 + x423 + x425 + x462 + x463 + x464 + x466 + x467 + <= 1 + +x1 + x2 + x5 + x32 + x49 + x50 + x51 + x52 + x53 + x63 ++ x65 + x66 + x68 + x72 + x82 + x83 + x86 + x87 + x108 + x109 ++ x110 + x113 + x128 + x129 + x130 + x131 + x132 + x133 + x139 + x149 ++ x150 + x151 + x152 + x153 + x155 + x180 + x185 + x186 + x187 + x189 ++ x191 + x215 + x218 + x236 + x244 + x281 + x286 + x322 + x323 + x332 ++ x336 + x346 + x365 + x370 + x372 + x406 + x409 + x415 + x416 + x421 ++ x423 + x425 + x462 + x463 + x464 + x466 <= 1 + +x3 + x32 + x50 + x51 + x53 + x65 + x66 + x83 + x87 + x110 ++ x128 + x131 + x132 + x133 + x138 + x151 + x152 + x185 + x187 + x189 ++ x215 + x217 + x218 + x244 + x279 + x281 + x286 + x315 + x323 + x344 ++ x345 + x369 + x372 + x416 + x423 + x460 + x464 <= 1 + +x3 + x5 + x15 + x28 + x29 + x30 + x31 + x32 + x43 + x50 ++ x66 + x67 + x70 + x82 + x87 + x123 + x124 + x125 + x126 + x127 ++ x130 + x132 + x133 + x140 + x151 + x152 + x215 + x217 + x268 + x272 ++ x301 + x303 + x304 + x336 + x337 + x345 + x368 + x369 + x373 + x468 ++ x470 + x471 + x472 + x473 <= 1 + +x5 + x15 + x29 + x30 + x31 + x43 + x44 + x50 + x65 + x67 ++ x123 + x125 + x132 + x138 + x140 + x151 + x152 + x155 + x166 + x215 ++ x216 + x217 + x268 + x300 + x301 + x303 + x304 + x305 + x316 + x337 ++ x345 + x368 + x369 + x373 + x418 + x422 + x468 + x469 + x472 + x473 + <= 1 + +x0 + x2 + x4 + x92 + x105 + x116 + x146 + x155 + x173 + x183 ++ x204 + x206 + x207 + x221 + x259 + x261 + x262 + x319 + x335 + x392 ++ x395 + x396 + x397 + x412 + x413 + x414 + x417 + x418 + x474 + x476 ++ x477 + x488 <= 1 + +x0 + x2 + x4 + x90 + x92 + x105 + x110 + x146 + x151 + x153 ++ x155 + x204 + x206 + x207 + x221 + x239 + x259 + x260 + x261 + x263 ++ x291 + x292 + x296 + x337 + x378 + x395 + x396 + x397 + x413 + x414 ++ x418 + x423 + x428 + x474 + x476 + x477 + x488 <= 1 + +x33 + x63 + x68 + x69 + x105 + x109 + x113 + x143 + x151 + x153 ++ x155 + x177 + x184 + x195 + x208 + x209 + x215 + x239 + x241 + x243 ++ x245 + x252 + x287 + x289 + x294 + x296 + x310 + x334 + x337 + x356 ++ x360 + x361 + x381 + x385 + x394 + x425 + x467 <= 1 + +x2 + x18 + x33 + x63 + x64 + x66 + x68 + x69 + x84 + x105 ++ x106 + x109 + x111 + x113 + x143 + x145 + x150 + x151 + x152 + x153 ++ x155 + x177 + x184 + x230 + x241 + x242 + x243 + x245 + x247 + x250 ++ x251 + x252 + x278 + x296 + x332 + x334 + x337 + x348 + x356 + x357 ++ x361 + x385 + x415 + x423 + x466 + x467 <= 1 + +x0 + x2 + x5 + x33 + x50 + x51 + x52 + x53 + x61 + x62 ++ x63 + x64 + x66 + x68 + x72 + x82 + x84 + x85 + x86 + x95 ++ x96 + x97 + x98 + x105 + x106 + x108 + x109 + x111 + x113 + x114 ++ x115 + x129 + x137 + x149 + x150 + x151 + x152 + x153 + x155 + x180 ++ x182 + x183 + x184 + x185 + x195 + x222 + x236 + x242 + x243 + x245 ++ x247 + x248 + x250 + x251 + x252 + x296 + x332 + x334 + x335 + x337 ++ x348 + x356 + x359 + x362 + x363 + x364 + x365 + x366 + x406 + x411 ++ x415 + x416 + x419 + x423 + x463 + x464 + x465 + x466 + x467 <= 1 + +x0 + x2 + x3 + x5 + x33 + x52 + x53 + x63 + x66 + x68 ++ x72 + x74 + x84 + x85 + x86 + x95 + x96 + x98 + x105 + x106 ++ x108 + x109 + x110 + x111 + x113 + x114 + x129 + x131 + x149 + x150 ++ x151 + x152 + x153 + x155 + x180 + x182 + x183 + x184 + x185 + x199 ++ x215 + x222 + x236 + x251 + x286 + x295 + x332 + x337 + x359 + x362 ++ x364 + x365 + x367 + x372 + x406 + x414 + x415 + x416 + x423 + x463 ++ x467 <= 1 + +x2 + x3 + x5 + x33 + x50 + x63 + x66 + x67 + x68 + x74 ++ x82 + x85 + x86 + x87 + x105 + x106 + x108 + x109 + x110 + x111 ++ x113 + x114 + x129 + x131 + x132 + x133 + x149 + x150 + x151 + x152 ++ x153 + x155 + x180 + x185 + x215 + x295 + x332 + x362 + x365 + x367 ++ x369 + x372 + x415 + x416 + x464 + x466 + x467 <= 1 + +x2 + x3 + x5 + x28 + x30 + x32 + x33 + x50 + x66 + x67 ++ x82 + x87 + x108 + x110 + x111 + x128 + x132 + x133 + x138 + x150 ++ x151 + x152 + x153 + x155 + x167 + x185 + x189 + x215 + x217 + x241 ++ x244 + x267 + x332 + x362 + x363 + x367 + x369 + x372 + x373 <= 1 + +x2 + x3 + x5 + x28 + x29 + x30 + x32 + x50 + x66 + x67 ++ x82 + x87 + x110 + x132 + x133 + x138 + x140 + x151 + x152 + x155 ++ x202 + x215 + x270 + x272 + x289 + x300 + x301 + x304 + x317 + x336 ++ x337 + x368 + x369 + x373 + x422 + x470 <= 1 + +x15 + x28 + x29 + x30 + x31 + x48 + x50 + x67 + x86 + x125 ++ x133 + x138 + x152 + x165 + x166 + x192 + x213 + x215 + x270 + x271 ++ x272 + x300 + x301 + x304 + x305 + x317 + x337 + x345 + x368 + x369 ++ x418 + x422 + x468 + x469 + x470 <= 1 + +x0 + x2 + x4 + x116 + x146 + x154 + x162 + x183 + x259 + x261 ++ x262 + x335 + x344 + x392 + x396 + x397 + x412 + x414 + x418 + x422 ++ x476 <= 1 + +x0 + x2 + x4 + x5 + x105 + x106 + x108 + x114 + x146 + x147 ++ x151 + x153 + x204 + x206 + x207 + x248 + x259 + x260 + x291 + x292 ++ x337 + x378 + x396 + x414 <= 1 + +x0 + x2 + x3 + x4 + x5 + x40 + x105 + x106 + x108 + x114 ++ x147 + x151 + x159 + x180 + x182 + x183 + x206 + x207 + x248 + x260 ++ x291 + x292 + x396 + x414 + x419 + x424 + x497 <= 1 + +x0 + x2 + x3 + x5 + x40 + x41 + x63 + x68 + x105 + x106 ++ x108 + x109 + x111 + x114 + x147 + x151 + x159 + x180 + x182 + x183 ++ x207 + x247 + x248 + x250 + x260 + x291 + x292 + x359 + x363 + x414 ++ x419 + x424 + x496 + x497 <= 1 + +x0 + x2 + x3 + x5 + x40 + x41 + x50 + x63 + x64 + x66 ++ x67 + x68 + x69 + x72 + x82 + x84 + x85 + x86 + x95 + x97 ++ x105 + x106 + x108 + x109 + x111 + x114 + x129 + x131 + x151 + x152 ++ x180 + x182 + x183 + x184 + x207 + x222 + x247 + x248 + x250 + x291 ++ x295 + x334 + x363 + x365 + x367 + x408 + x411 + x414 + x415 + x419 ++ x466 + x496 <= 1 + +x0 + x2 + x3 + x5 + x38 + x41 + x63 + x66 + x67 + x68 ++ x74 + x82 + x85 + x86 + x97 + x98 + x105 + x106 + x108 + x114 ++ x129 + x131 + x151 + x152 + x155 + x182 + x183 + x184 + x186 + x215 ++ x236 + x291 + x295 + x332 + x362 + x363 + x365 + x367 + x414 + x415 ++ x416 + x419 <= 1 + +x2 + x3 + x5 + x28 + x31 + x32 + x33 + x53 + x66 + x67 ++ x68 + x74 + x82 + x85 + x86 + x87 + x114 + x129 + x131 + x151 ++ x152 + x153 + x168 + x215 + x295 + x305 + x317 + x332 + x362 + x363 ++ x367 <= 1 + +x2 + x3 + x5 + x16 + x28 + x31 + x32 + x33 + x38 + x53 ++ x58 + x66 + x67 + x74 + x87 + x114 + x133 + x138 + x148 + x150 ++ x151 + x152 + x165 + x167 + x168 + x215 + x244 + x305 + x317 + x362 ++ x363 + x367 <= 1 + +x28 + x31 + x55 + x74 + x133 + x138 + x141 + x152 + x165 + x166 ++ x167 + x168 + x215 + x244 + x271 + x304 + x305 + x307 + x369 + x377 ++ x470 <= 1 + +x28 + x31 + x48 + x50 + x125 + x133 + x138 + x152 + x165 + x166 ++ x167 + x213 + x215 + x270 + x271 + x300 + x304 + x305 + x317 + x369 ++ x377 + x470 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x7 + x8 + x9 + x10 + x11 + x12 <= 1 + +x13 + x14 + x15 + x16 + x17 + x18 <= 1 + +x19 + x20 <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 + x38 + x39 <= 1 + +x40 + x41 <= 1 + +x42 + x43 + x44 + x45 + x46 + x47 <= 1 + +x49 + x50 + x51 + x52 + x53 + x54 <= 1 + +x56 + x57 + x58 + x59 + x60 <= 1 + +x61 + x62 <= 1 + +x63 + x64 + x65 + x66 + x67 + x68 <= 1 + +x69 + x70 + x71 + x72 + x73 + x74 <= 1 + +x75 + x76 + x77 + x78 + x79 + x80 <= 1 + +x82 + x83 + x84 + x85 + x86 + x87 <= 1 + +x89 + x90 + x91 + x92 + x93 + x94 <= 1 + +x95 + x96 + x97 + x98 <= 1 + +x100 + x101 + x102 + x103 <= 1 + +x105 + x106 + x107 + x108 + x109 + x110 <= 1 + +x111 + x112 + x113 + x114 + x115 + x116 <= 1 + +x117 + x118 + x119 + x120 + x121 + x122 <= 1 + +x123 + x124 + x125 + x126 + x127 <= 1 + +x128 + x129 + x130 + x131 + x132 + x133 <= 1 + +x134 + x135 + x136 + x137 <= 1 + +x138 + x139 + x140 + x141 + x142 + x143 <= 1 + +x144 + x145 + x146 + x147 + x148 + x149 <= 1 + +x150 + x151 + x152 + x153 + x154 + x155 <= 1 + +x156 + x157 + x158 <= 1 + +x159 + x160 + x161 + x162 + x163 + x164 <= 1 + +x165 + x166 + x167 + x168 <= 1 + +x169 + x170 + x171 + x172 + x173 <= 1 + +x174 + x175 + x176 + x177 + x178 + x179 <= 1 + +x180 + x181 + x182 + x183 + x184 + x185 <= 1 + +x186 + x187 + x188 + x189 + x190 + x191 <= 1 + +x192 + x193 + x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 <= 1 + +x213 + x214 + x215 + x216 + x217 + x218 <= 1 + +x219 + x220 + x221 + x222 + x223 + x224 <= 1 + +x225 + x226 + x227 + x228 + x229 + x230 <= 1 + +x231 + x232 + x233 + x234 <= 1 + +x235 + x236 + x237 + x238 + x239 + x240 <= 1 + +x241 + x242 + x243 + x244 + x245 + x246 <= 1 + +x247 + x248 + x249 + x250 + x251 + x252 <= 1 + +x253 + x254 + x255 + x256 + x257 + x258 <= 1 + +x259 + x260 + x261 + x262 + x263 <= 1 + +x264 + x265 + x266 + x267 + x268 + x269 <= 1 + +x270 + x271 + x272 <= 1 + +x273 + x274 + x275 + x276 + x277 + x278 <= 1 + +x279 + x280 + x281 + x282 + x283 + x284 <= 1 + +x285 + x286 + x287 + x288 + x289 + x290 <= 1 + +x291 + x292 + x293 + x294 + x295 + x296 <= 1 + +x297 + x298 + x299 <= 1 + +x300 + x301 + x302 + x303 + x304 + x305 <= 1 + +x306 + x307 + x308 + x309 + x310 + x311 <= 1 + +x312 + x313 + x314 <= 1 + +x316 + x317 + x318 + x319 + x320 + x321 <= 1 + +x322 + x323 + x324 + x325 + x326 + x327 <= 1 + +x328 + x329 + x330 + x331 <= 1 + +x332 + x333 + x334 + x335 + x336 + x337 <= 1 + +x338 + x339 + x340 + x341 + x342 + x343 <= 1 + +x344 + x345 + x346 + x347 + x348 + x349 <= 1 + +x350 + x351 + x352 + x353 + x354 + x355 <= 1 + +x356 + x357 + x358 + x359 + x360 + x361 <= 1 + +x362 + x363 + x364 + x365 + x366 + x367 <= 1 + +x368 + x369 + x370 + x371 + x372 + x373 <= 1 + +x375 + x376 + x377 + x378 + x379 + x380 <= 1 + +x381 + x382 + x383 + x384 + x385 <= 1 + +x386 + x387 + x388 + x389 + x390 + x391 <= 1 + +x392 + x393 + x394 + x395 + x396 + x397 <= 1 + +x398 + x399 + x400 + x401 + x402 + x403 <= 1 + +x404 + x405 <= 1 + +x406 + x407 + x408 + x409 + x410 + x411 <= 1 + +x412 + x413 <= 1 + +x414 + x415 + x416 + x417 + x418 + x419 <= 1 + +x420 + x421 + x422 + x423 + x424 + x425 <= 1 + +x426 + x427 + x428 <= 1 + +x429 + x430 + x431 + x432 + x433 + x434 <= 1 + +x435 + x436 + x437 + x438 + x439 <= 1 + +x440 + x441 + x442 + x443 + x444 <= 1 + +x445 + x446 + x447 + x448 + x449 + x450 <= 1 + +x451 + x452 + x453 + x454 + x455 <= 1 + +x456 + x457 + x458 + x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 <= 1 + +x478 + x479 + x480 + x481 + x482 + x483 <= 1 + +x484 + x485 + x486 + x487 + x488 + x489 <= 1 + +x490 + x491 + x492 + x493 + x494 + x495 <= 1 + +x496 + x497 <= 1 + +x498 + x499 + x500 + x501 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0017.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0017.lp new file mode 100644 index 000000000..18a768319 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0017.lp @@ -0,0 +1,996 @@ +max + +265.32x0 + 306.877x1 + 237.848x2 + 209.834x3 + 182.252x4 + 987.41x5 + 1260.26x6 + 1252.61x7 + 1235.4x8 + 1225.1x9 + +1187.26x10 + 55.6167x11 + 1140.26x12 + 1272.47x13 + 1114.6x14 + 1106.01x15 + 1104.75x16 + 1084.07x17 + 142.398x18 + 191.162x19 + +150.6x20 + 947.583x21 + 1376.71x22 + 1285.63x23 + 1268.83x24 + 1254.48x25 + 1134.37x26 + 224.182x27 + 146.351x28 + 265.018x29 + +376.514x30 + 224.174x31 + 216.058x32 + 180.145x33 + 831.017x34 + 981.22x35 + 957.278x36 + 950.427x37 + 938.608x38 + 935.6x39 + +538.999x40 + 634.359x41 + 610.75x42 + 604.278x43 + 602.187x44 + 592.621x45 + 93.4248x46 + 421.922x47 + 35.7434x48 + 710.499x49 + +781.085x50 + 752.837x51 + 722.971x52 + 704.692x53 + 702.919x54 + 540.916x55 + 738.155x56 + 737.85x57 + 671.904x58 + 645.541x59 + +575.381x60 + 1348.17x61 + 1557.58x62 + 1407.59x63 + 1391.89x64 + 1324.27x65 + 1322.48x66 + 304.217x67 + 432.021x68 + 386.154x69 + +374.529x70 + 373.298x71 + 334.784x72 + 32.1045x73 + 756.378x74 + 1076.05x75 + 1055.13x76 + 1012.42x77 + 1007.28x78 + 939.423x79 + +450.903x80 + 502.72x81 + 497.012x82 + 424.184x83 + 418.8x84 + 365.348x85 + 55.4462x86 + 56.2172x87 + 53.4087x88 + 181.682x89 + +206.394x90 + 189.911x91 + 163.888x92 + 611.73x93 + 663.621x94 + 651.238x95 + 597.302x96 + 589.628x97 + 524.904x98 + 278.207x99 + +360.231x100 + 339.712x101 + 328.507x102 + 277.954x103 + 228.464x104 + 249.222x105 + 265.848x106 + 195.83x107 + 155.169x108 + 455.247x109 + +543.813x110 + 534.724x111 + 516.082x112 + 502.951x113 + 466.881x114 + 381.236x115 + 423.818x116 + 368.247x117 + 321.931x118 + 301.067x119 + +258.835x120 + 193.838x121 + 222.132x122 + 191.406x123 + 122.17x124 + 115.183x125 + 57.3967x126 + 414.238x127 + 448.186x128 + 444.129x129 + +433.374x130 + 408.762x131 + 398.812x132 + 671.305x133 + 693.52x134 + 650.624x135 + 626.348x136 + 524.263x137 + 523.354x138 + 122.978x139 + +176.194x140 + 165x141 + 507.083x142 + 705.095x143 + 669.99x144 + 633.061x145 + 602.779x146 + 597.54x147 + 368.854x148 + 402.835x149 + +271.664x150 + 214.146x151 + 148.794x152 + 235.476x153 + 274.525x154 + 249.354x155 + 236.6x156 + 231.626x157 + 1190.63x158 + 1290.8x159 + +1251.02x160 + 1248.02x161 + 1206.52x162 + 1171.65x163 + 26.9367x164 + 67.0508x165 + 261.417x166 + 305.294x167 + 252.85x168 + 251.298x169 + +206.059x170 + 586.405x171 + 558.416x172 + 527.963x173 + 499.867x174 + 446.633x175 + 446.029x176 + 6.51164x177 + 1144.87x178 + 1236.29x179 + +1192.51x180 + 1150.68x181 + 1125.45x182 + 1124.78x183 + 672.252x184 + 943.425x185 + 935.848x186 + 919.832x187 + 895.04x188 + 890.882x189 + +1002.1x190 + 1274.83x191 + 1144.24x192 + 1103.1x193 + 1099.16x194 + 1094.47x195 + 554.906x196 + 645.563x197 + 620.249x198 + 545.973x199 + +511.114x200 + 502.661x201 + 1050.74x202 + 1198.41x203 + 1152.74x204 + 1113.82x205 + 1030.99x206 + 1007.96x207 + 1009.1x208 + 1059.72x209 + +1039.46x210 + 977.461x211 + 953.65x212 + 953.041x213 + 126.935x214 + 170.501x215 + 150.258x216 + 198.918x217 + 192.12x218 + 180.181x219 + +255.775x220 + 345.738x221 + 338.414x222 + 329.416x223 + 321.027x224 + 266.77x225 + 333.803x226 + 334.822x227 + 300.752x228 + 276.958x229 + +207.868x230 + 527.094x231 + 587.736x232 + 528.542x233 + 513.322x234 + 433.327x235 + 46.6359x236 + 925.275x237 + 1021.7x238 + 1020.84x239 + +1003.89x240 + 995.779x241 + 950.428x242 + 2696.5x243 + 3215.89x244 + 3211.58x245 + 3210.02x246 + 3149.65x247 + 3125.91x248 + 266.506x249 + +375.457x250 + 351.501x251 + 342.323x252 + 279.943x253 + 227.605x254 + 48.3147x255 + 334.991x256 + 478.134x257 + 419.93x258 + 405.859x259 + +355.935x260 + 1364.57x261 + 1479.14x262 + 1337.15x263 + 1317.78x264 + 1270.5x265 + 1258.58x266 + 370.647x267 + 459.553x268 + 448.143x269 + +444.177x270 + 388.959x271 + 357.736x272 + 1879.53x273 + 2023.79x274 + 2013.87x275 + 1980x276 + 1979.82x277 + 1965.81x278 + 654.47x279 + +715.216x280 + 648.796x281 + 602.911x282 + 580.354x283 + 561.447x284 + 311.327x285 + 447.437x286 + 425.14x287 + 407.03x288 + 361.482x289 + +349.262x290 + 152.365x291 + 222.291x292 + 148.688x293 + 203.858x294 + 189.712x295 + 94.0571x296 + 1084.64x297 + 1202.71x298 + 1161.2x299 + +1153.72x300 + 1150.4x301 + 1149.48x302 + 207.816x303 + 298.42x304 + 259.863x305 + 259.724x306 + 204.334x307 + 115.433x308 + 57.32x309 + +85.2228x310 + 67.0621x311 + 27.6862x312 + 139.802x313 + 194.519x314 + 193.68x315 + 408.67x316 + 605.234x317 + 576.518x318 + 434.196x319 + +432.825x320 + 376.146x321 + 392.117x322 + 330.632x323 + 313.195x324 + 312.858x325 + 263.89x326 + 237.57x327 + 1242.7x328 + 1684.6x329 + +1587.05x330 + 1574.56x331 + 1500.91x332 + 1433.28x333 + 695.129x334 + 1034.67x335 + 968.592x336 + 967.576x337 + 893.498x338 + 874.955x339 + +833.896x340 + 1174.03x341 + 1132.16x342 + 1096.69x343 + 1091.89x344 + 1060.82x345 + 1104.06x346 + 1403.93x347 + 1399.47x348 + 1398.52x349 + +1374.56x350 + 1364.15x351 + 963.006x352 + 1200.41x353 + 1074.31x354 + 1068.23x355 + 1049.55x356 + 992.571x357 + 734.662x358 + 1034.25x359 + +989.235x360 + 915.576x361 + 860.15x362 + 794.323x363 + 1231.03x364 + 1334.75x365 + 1266.02x366 + 1234.85x367 + 1191.51x368 + 1185.79x369 + +285.226x370 + 330.331x371 + 320.075x372 + 278.893x373 + 216.88x374 + 211.415x375 + 274.575x376 + 156.021x377 + 115.43x378 + 139.136x379 + +177.863x380 + 133.01x381 + 160.495x382 + 134.057x383 + 131.516x384 + 1152.65x385 + 1261.01x386 + 1201.27x387 + 1194.95x388 + 1157.05x389 + +1155.12x390 + 606.64x391 + 859.451x392 + 829.778x393 + 765.558x394 + 720.079x395 + 710.084x396 + 641.253x397 + 671.633x398 + 651.303x399 + +634.917x400 + 592.804x401 + 568.614x402 + 104.723x403 + 74.5648x404 + 69.5958x405 + 207.64x406 + 311.42x407 + 303.263x408 + 295.45x409 + +286.67x410 + 251.441x411 + 327.492x412 + 389.85x413 + 386.907x414 + 353.592x415 + 341.93x416 + 339.768x417 + 254.99x418 + 325.061x419 + +146.552x420 + 128.748x421 + 385.663x422 + 365.341x423 + 353.345x424 + 305.499x425 + 284.152x426 + 263.847x427 + 964.845x428 + 1131.09x429 + +1081.86x430 + 1069.14x431 + 1049.16x432 + 1043.67x433 + 757.98x434 + 1018.73x435 + 995.498x436 + 930.45x437 + 908.748x438 + 902.421x439 + +644.705x440 + 794.434x441 + 734.365x442 + 729.967x443 + 726.244x444 + 701.765x445 + 402.792x446 + 511.005x447 + 400.364x448 + 395.467x449 + +377.169x450 + 358.686x451 + 418.549x452 + 550.71x453 + 533.959x454 + 486.015x455 + 464.489x456 + 434.448x457 + 713.648x458 + 815.417x459 + +802.148x460 + 796.975x461 + 787.461x462 + 715.183x463 + 633.905x464 + 608.773x465 + 590.933x466 + 578.657x467 + 480.315x468 + 479.32x469 + +128.217x470 + 160.873x471 + 156.755x472 + 85.7403x473 + 84.3404x474 + 142.674x475 + 125.727x476 + 37.573x477 + 288.45x478 + 282.044x479 + +263.089x480 + 243.887x481 + 165.504x482 + 733.228x483 + 1004.53x484 + 947.074x485 + 921.878x486 + 918.539x487 + 895.67x488 + 255.53x489 + +257.508x490 + 182.087x491 + 149.678x492 + 184.138x493 + 173.443x494 + 170.348x495 + 146.583x496 + 58.0698x497 + 234.953x498 + 256.858x499 + +196.784x500 + 184.504x501 + 166.617x502 + +st + +x4 + x12 + x13 + x45 + x71 + x74 + x130 + x178 + x179 + x182 ++ x183 + x185 + x203 + x208 + x209 + x213 + x235 + x243 + x245 + x326 ++ x338 + x341 + x410 + x432 + x436 + x488 <= 1 + +x4 + x12 + x13 + x14 + x40 + x45 + x71 + x130 + x178 + x179 ++ x182 + x183 + x203 + x208 + x209 + x212 + x213 + x243 + x312 + x326 ++ x333 + x341 + x342 + x406 + x432 + x436 + x488 + x501 <= 1 + +x0 + x1 + x2 + x4 + x13 + x14 + x40 + x45 + x74 + x78 ++ x130 + x178 + x179 + x182 + x203 + x205 + x209 + x210 + x243 + x247 ++ x311 + x312 + x326 + x327 + x333 + x342 + x345 + x432 + x436 + x470 ++ x474 + x487 + x500 + x501 <= 1 + +x0 + x1 + x2 + x4 + x13 + x14 + x21 + x26 + x45 + x61 ++ x72 + x74 + x78 + x126 + x163 + x184 + x186 + x189 + x193 + x210 ++ x243 + x247 + x266 + x277 + x311 + x312 + x327 + x333 + x342 + x345 ++ x380 + x381 + x407 + x428 + x430 + x432 + x474 + x484 + x487 <= 1 + +x8 + x21 + x31 + x39 + x65 + x70 + x74 + x75 + x77 + x170 ++ x189 + x243 + x282 + x291 + x329 + x345 + x379 + x399 + x428 + x430 ++ x432 + x433 + x444 <= 1 + +x14 + x62 + x63 + x65 + x66 + x67 + x68 + x74 + x76 + x79 ++ x87 + x118 + x122 + x159 + x170 + x184 + x238 + x243 + x247 + x277 ++ x291 + x320 + x328 + x329 + x365 + x428 + x430 + x431 + x432 + x433 ++ x461 + x474 + x484 + x487 <= 1 + +x6 + x9 + x22 + x25 + x34 + x57 + x60 + x62 + x63 + x65 ++ x67 + x68 + x69 + x75 + x86 + x121 + x124 + x150 + x166 + x170 ++ x184 + x243 + x250 + x273 + x274 + x276 + x277 + x279 + x281 + x282 ++ x291 + x292 + x316 + x329 + x348 + x350 + x353 + x355 + x364 + x365 ++ x366 + x368 + x374 + x387 + x390 + x394 + x396 + x429 + x430 + x431 ++ x432 + x461 + x467 + x469 + x484 + x487 <= 1 + +x24 + x25 + x34 + x43 + x62 + x63 + x102 + x124 + x129 + x131 ++ x148 + x150 + x151 + x159 + x166 + x169 + x170 + x179 + x236 + x243 ++ x273 + x274 + x276 + x277 + x279 + x280 + x281 + x282 + x284 + x291 ++ x292 + x329 + x330 + x352 + x353 + x354 + x355 + x356 + x357 + x366 ++ x367 + x368 + x369 + x371 + x372 + x374 + x394 + x396 + x429 + x431 ++ x448 + x449 + x461 + x462 + x464 + x465 + x467 + x468 + x487 <= 1 + +x9 + x22 + x24 + x25 + x43 + x57 + x62 + x63 + x64 + x66 ++ x99 + x101 + x102 + x127 + x129 + x130 + x131 + x132 + x133 + x148 ++ x149 + x150 + x159 + x169 + x173 + x211 + x243 + x244 + x262 + x273 ++ x274 + x276 + x277 + x279 + x280 + x284 + x310 + x329 + x331 + x352 ++ x353 + x354 + x355 + x356 + x357 + x361 + x364 + x366 + x367 + x368 ++ x370 + x371 + x372 + x374 + x390 + x429 + x431 + x449 + x458 + x460 ++ x461 + x462 + x464 + x465 + x467 + x468 + x487 + x490 <= 1 + +x62 + x66 + x101 + x102 + x127 + x128 + x129 + x130 + x131 + x132 ++ x133 + x149 + x159 + x211 + x227 + x262 + x274 + x276 + x277 + x279 ++ x280 + x310 + x348 + x352 + x353 + x354 + x355 + x356 + x357 + x364 ++ x366 + x367 + x370 + x372 + x373 + x374 + x386 + x390 + x429 + x449 ++ x464 + x465 + x466 + x467 + x487 <= 1 + +x4 + x47 + x74 + x144 + x178 + x179 + x182 + x183 + x184 + x185 ++ x208 + x209 + x212 + x213 + x232 + x235 + x243 + x255 + x257 + x333 ++ x334 + x341 + x345 + x346 + x380 + x410 + x460 + x472 <= 1 + +x4 + x12 + x14 + x47 + x74 + x160 + x178 + x179 + x182 + x183 ++ x185 + x203 + x208 + x209 + x210 + x212 + x213 + x232 + x243 + x246 ++ x255 + x273 + x318 + x322 + x323 + x324 + x326 + x342 + x345 + x380 ++ x406 + x407 + x409 + x410 + x432 + x460 + x472 + x488 + x498 + x500 ++ x501 <= 1 + +x0 + x1 + x2 + x12 + x13 + x14 + x45 + x47 + x54 + x74 ++ x77 + x112 + x125 + x160 + x178 + x179 + x182 + x184 + x185 + x186 ++ x193 + x197 + x203 + x205 + x208 + x209 + x210 + x212 + x213 + x232 ++ x243 + x260 + x273 + x296 + x311 + x322 + x325 + x327 + x333 + x339 ++ x342 + x345 + x380 + x407 + x432 + x470 + x472 + x473 + x488 + x498 ++ x500 <= 1 + +x0 + x1 + x2 + x14 + x70 + x74 + x76 + x77 + x78 + x79 ++ x112 + x125 + x126 + x159 + x163 + x164 + x184 + x186 + x188 + x193 ++ x200 + x208 + x209 + x210 + x212 + x213 + x238 + x239 + x243 + x246 ++ x247 + x259 + x260 + x320 + x322 + x325 + x327 + x342 + x345 + x379 ++ x380 + x381 + x407 + x430 + x432 + x470 + x473 + x474 + x484 <= 1 + +x2 + x7 + x8 + x14 + x21 + x26 + x29 + x31 + x32 + x33 ++ x61 + x65 + x67 + x68 + x70 + x72 + x74 + x75 + x76 + x77 ++ x78 + x79 + x159 + x160 + x163 + x184 + x186 + x188 + x189 + x200 ++ x238 + x243 + x246 + x247 + x277 + x282 + x291 + x320 + x325 + x327 ++ x329 + x330 + x345 + x348 + x379 + x381 + x428 + x430 + x432 + x433 ++ x461 + x473 + x474 + x484 + x487 <= 1 + +x2 + x5 + x6 + x7 + x8 + x9 + x14 + x21 + x24 + x25 ++ x26 + x29 + x32 + x33 + x61 + x62 + x63 + x65 + x66 + x67 ++ x68 + x70 + x72 + x75 + x76 + x77 + x78 + x79 + x87 + x97 ++ x118 + x122 + x159 + x160 + x161 + x179 + x186 + x188 + x189 + x204 ++ x238 + x243 + x244 + x246 + x247 + x248 + x250 + x273 + x276 + x277 ++ x278 + x320 + x329 + x330 + x335 + x348 + x355 + x365 + x367 + x368 ++ x379 + x381 + x388 + x390 + x391 + x392 + x393 + x394 + x395 + x396 ++ x428 + x430 + x431 + x432 + x433 + x439 + x461 + x474 + x479 + x483 ++ x484 + x487 <= 1 + +x5 + x6 + x8 + x9 + x22 + x24 + x25 + x29 + x30 + x32 ++ x57 + x61 + x62 + x63 + x65 + x66 + x68 + x69 + x72 + x75 ++ x77 + x78 + x79 + x97 + x100 + x121 + x122 + x128 + x151 + x159 ++ x160 + x162 + x163 + x179 + x186 + x188 + x204 + x239 + x243 + x244 ++ x246 + x248 + x250 + x273 + x276 + x277 + x278 + x279 + x281 + x282 ++ x292 + x316 + x317 + x320 + x321 + x329 + x330 + x348 + x349 + x350 ++ x353 + x354 + x355 + x364 + x365 + x366 + x367 + x368 + x375 + x376 ++ x379 + x384 + x387 + x388 + x390 + x391 + x392 + x393 + x394 + x396 ++ x428 + x429 + x430 + x431 + x432 + x433 + x448 + x461 + x468 + x479 ++ x483 + x484 + x487 <= 1 + +x24 + x32 + x57 + x61 + x62 + x63 + x65 + x66 + x75 + x83 ++ x102 + x121 + x123 + x124 + x127 + x128 + x129 + x150 + x151 + x159 ++ x160 + x169 + x179 + x186 + x229 + x244 + x246 + x248 + x260 + x273 ++ x274 + x276 + x277 + x278 + x279 + x281 + x282 + x284 + x292 + x321 ++ x330 + x352 + x353 + x354 + x355 + x356 + x357 + x364 + x366 + x367 ++ x368 + x369 + x370 + x375 + x378 + x386 + x388 + x389 + x392 + x393 ++ x396 + x428 + x429 + x431 + x448 + x449 + x461 + x466 + x468 + x478 ++ x479 + x484 + x487 <= 1 + +x5 + x8 + x9 + x43 + x61 + x62 + x63 + x64 + x66 + x102 ++ x123 + x127 + x128 + x130 + x131 + x132 + x148 + x151 + x159 + x169 ++ x173 + x180 + x198 + x211 + x227 + x229 + x244 + x246 + x260 + x262 ++ x273 + x274 + x275 + x276 + x277 + x281 + x284 + x292 + x329 + x330 ++ x331 + x352 + x353 + x354 + x355 + x356 + x357 + x361 + x364 + x366 ++ x367 + x368 + x370 + x372 + x373 + x386 + x387 + x390 + x396 + x410 ++ x429 + x431 + x449 + x461 + x462 + x464 + x465 + x466 + x467 + x468 ++ x469 + x484 <= 1 + +x3 + x8 + x43 + x57 + x62 + x64 + x66 + x99 + x101 + x127 ++ x128 + x129 + x130 + x131 + x132 + x133 + x137 + x148 + x149 + x159 ++ x162 + x180 + x211 + x226 + x227 + x228 + x229 + x244 + x262 + x273 ++ x274 + x276 + x277 + x279 + x282 + x283 + x284 + x329 + x331 + x352 ++ x353 + x354 + x355 + x356 + x357 + x361 + x364 + x366 + x367 + x368 ++ x369 + x370 + x371 + x372 + x373 + x374 + x377 + x383 + x386 + x387 ++ x389 + x390 + x448 + x458 + x460 + x462 + x464 + x465 + x466 + x467 ++ x469 <= 1 + +x15 + x47 + x74 + x97 + x110 + x144 + x178 + x179 + x182 + x183 ++ x184 + x185 + x206 + x208 + x209 + x211 + x212 + x213 + x221 + x223 ++ x224 + x232 + x243 + x245 + x246 + x257 + x260 + x263 + x276 + x321 ++ x324 + x326 + x333 + x334 + x346 + x406 + x407 + x410 <= 1 + +x13 + x14 + x38 + x47 + x74 + x76 + x178 + x179 + x182 + x183 ++ x184 + x185 + x205 + x208 + x209 + x211 + x212 + x213 + x221 + x224 ++ x231 + x232 + x243 + x245 + x246 + x259 + x260 + x263 + x276 + x318 ++ x321 + x322 + x323 + x324 + x326 + x333 + x334 + x342 + x345 + x389 ++ x406 + x407 + x409 + x410 + x488 + x501 + x502 <= 1 + +x13 + x14 + x47 + x73 + x76 + x77 + x79 + x138 + x178 + x179 ++ x182 + x184 + x185 + x186 + x188 + x193 + x197 + x203 + x204 + x205 ++ x207 + x208 + x209 + x210 + x212 + x213 + x220 + x224 + x243 + x244 ++ x246 + x256 + x259 + x260 + x263 + x293 + x294 + x296 + x321 + x322 ++ x323 + x325 + x327 + x333 + x339 + x340 + x342 + x389 + x407 + x409 ++ x410 + x411 + x432 + x470 + x471 + x472 + x473 + x488 + x498 + x500 ++ x502 <= 1 + +x0 + x6 + x14 + x21 + x47 + x63 + x74 + x75 + x76 + x79 ++ x94 + x125 + x126 + x138 + x163 + x179 + x182 + x184 + x186 + x188 ++ x189 + x193 + x197 + x203 + x204 + x208 + x209 + x210 + x212 + x213 ++ x224 + x235 + x239 + x243 + x244 + x246 + x247 + x248 + x258 + x259 ++ x260 + x280 + x294 + x319 + x340 + x342 + x345 + x348 + x362 + x407 ++ x409 + x433 + x470 + x471 + x473 + x488 + x498 + x499 + x502 <= 1 + +x6 + x7 + x8 + x14 + x21 + x22 + x25 + x26 + x31 + x33 ++ x55 + x62 + x63 + x65 + x74 + x75 + x76 + x77 + x79 + x94 ++ x158 + x161 + x163 + x166 + x168 + x181 + x182 + x184 + x185 + x186 ++ x188 + x189 + x193 + x197 + x203 + x204 + x205 + x207 + x235 + x238 ++ x239 + x243 + x244 + x245 + x246 + x247 + x248 + x258 + x259 + x265 ++ x274 + x275 + x276 + x277 + x278 + x280 + x317 + x319 + x320 + x325 ++ x342 + x345 + x348 + x349 + x362 + x367 + x381 + x395 + x433 + x454 ++ x473 + x499 <= 1 + +x5 + x6 + x7 + x8 + x9 + x14 + x21 + x22 + x23 + x25 ++ x26 + x33 + x61 + x62 + x63 + x65 + x75 + x76 + x77 + x79 ++ x97 + x158 + x159 + x160 + x161 + x163 + x168 + x180 + x181 + x186 ++ x188 + x189 + x196 + x199 + x207 + x238 + x239 + x243 + x244 + x246 ++ x247 + x248 + x273 + x274 + x275 + x276 + x277 + x278 + x320 + x329 ++ x330 + x332 + x335 + x342 + x348 + x349 + x355 + x365 + x366 + x367 ++ x385 + x388 + x391 + x394 + x395 + x430 + x431 + x433 + x441 + x461 ++ x480 + x484 + x487 <= 1 + +x5 + x6 + x7 + x8 + x9 + x22 + x25 + x30 + x57 + x61 ++ x62 + x63 + x64 + x65 + x66 + x67 + x69 + x70 + x72 + x75 ++ x77 + x78 + x95 + x97 + x113 + x118 + x121 + x145 + x158 + x159 ++ x160 + x162 + x163 + x186 + x188 + x189 + x204 + x207 + x212 + x239 ++ x243 + x244 + x246 + x248 + x262 + x273 + x274 + x275 + x276 + x277 ++ x278 + x316 + x320 + x329 + x330 + x335 + x342 + x348 + x349 + x350 ++ x353 + x355 + x359 + x360 + x364 + x365 + x366 + x367 + x368 + x386 ++ x388 + x390 + x391 + x392 + x393 + x394 + x395 + x396 + x428 + x430 ++ x431 + x432 + x433 + x439 + x441 + x461 + x468 + x480 + x484 + x487 + <= 1 + +x5 + x6 + x7 + x8 + x9 + x25 + x29 + x30 + x55 + x57 ++ x61 + x62 + x63 + x64 + x65 + x66 + x68 + x70 + x77 + x78 ++ x95 + x100 + x122 + x124 + x128 + x129 + x158 + x159 + x160 + x162 ++ x186 + x188 + x189 + x198 + x204 + x207 + x211 + x212 + x244 + x246 ++ x248 + x260 + x262 + x273 + x274 + x275 + x276 + x277 + x278 + x279 ++ x281 + x282 + x283 + x320 + x329 + x330 + x349 + x350 + x352 + x353 ++ x354 + x355 + x357 + x359 + x364 + x366 + x367 + x368 + x369 + x375 ++ x376 + x377 + x378 + x385 + x386 + x387 + x389 + x390 + x391 + x392 ++ x393 + x395 + x396 + x428 + x429 + x430 + x431 + x432 + x433 + x439 ++ x441 + x446 + x448 + x449 + x460 + x461 + x462 + x466 + x468 + x478 ++ x479 + x480 + x481 + x484 + x485 <= 1 + +x5 + x7 + x8 + x9 + x43 + x55 + x57 + x61 + x63 + x64 ++ x66 + x99 + x100 + x101 + x103 + x123 + x127 + x128 + x129 + x131 ++ x132 + x133 + x136 + x138 + x141 + x149 + x162 + x173 + x180 + x188 ++ x194 + x198 + x204 + x209 + x211 + x226 + x228 + x229 + x244 + x246 ++ x262 + x273 + x274 + x275 + x276 + x277 + x282 + x283 + x284 + x329 ++ x330 + x331 + x352 + x353 + x354 + x355 + x357 + x364 + x366 + x367 ++ x369 + x373 + x377 + x382 + x383 + x386 + x387 + x389 + x390 + x392 ++ x396 + x429 + x446 + x448 + x449 + x460 + x462 + x465 + x466 + x478 ++ x481 + x482 + x484 <= 1 + +x3 + x5 + x8 + x45 + x57 + x62 + x64 + x66 + x101 + x127 ++ x131 + x132 + x133 + x134 + x135 + x136 + x137 + x141 + x176 + x194 ++ x211 + x227 + x262 + x263 + x273 + x274 + x276 + x277 + x279 + x283 ++ x284 + x350 + x352 + x354 + x355 + x356 + x357 + x364 + x366 + x367 ++ x369 + x371 + x382 + x385 + x386 + x387 + x389 + x390 + x393 + x448 ++ x460 + x462 + x464 + x465 + x466 + x467 + x469 + x478 + x481 + x482 + <= 1 + +x13 + x15 + x16 + x47 + x89 + x90 + x92 + x144 + x178 + x179 ++ x181 + x182 + x183 + x184 + x202 + x205 + x208 + x209 + x211 + x212 ++ x213 + x220 + x221 + x223 + x224 + x231 + x232 + x234 + x243 + x246 ++ x257 + x263 + x295 + x300 + x309 + x321 + x324 + x334 + x409 + x410 ++ x453 + x472 + x488 <= 1 + +x13 + x14 + x15 + x17 + x38 + x89 + x90 + x91 + x178 + x179 ++ x181 + x182 + x183 + x185 + x186 + x197 + x202 + x205 + x208 + x209 ++ x211 + x212 + x213 + x220 + x221 + x224 + x231 + x232 + x243 + x246 ++ x248 + x258 + x260 + x263 + x293 + x295 + x318 + x319 + x324 + x333 ++ x334 + x391 + x406 + x408 + x409 + x472 + x483 + x484 + x487 + x488 + <= 1 + +x13 + x14 + x15 + x17 + x90 + x107 + x181 + x182 + x183 + x184 ++ x185 + x186 + x197 + x202 + x203 + x205 + x207 + x208 + x210 + x212 ++ x213 + x220 + x221 + x224 + x243 + x244 + x245 + x246 + x256 + x257 ++ x258 + x259 + x260 + x293 + x294 + x296 + x318 + x319 + x322 + x323 ++ x324 + x406 + x409 + x411 + x470 + x471 + x484 + x488 <= 1 + +x6 + x14 + x21 + x25 + x26 + x31 + x61 + x74 + x75 + x76 ++ x77 + x134 + x138 + x158 + x182 + x184 + x185 + x186 + x188 + x189 ++ x197 + x202 + x203 + x204 + x205 + x207 + x209 + x210 + x235 + x238 ++ x243 + x244 + x245 + x246 + x247 + x248 + x256 + x258 + x259 + x260 ++ x319 + x325 + x342 + x409 + x433 + x454 + x471 + x488 + x499 <= 1 + +x6 + x13 + x14 + x21 + x23 + x25 + x26 + x61 + x63 + x74 ++ x75 + x76 + x77 + x79 + x94 + x134 + x158 + x163 + x168 + x188 ++ x189 + x197 + x203 + x204 + x205 + x206 + x207 + x209 + x235 + x237 ++ x238 + x239 + x243 + x244 + x245 + x246 + x247 + x248 + x256 + x258 ++ x259 + x274 + x275 + x276 + x277 + x281 + x317 + x342 + x348 + x430 ++ x433 + x454 + x471 + x499 <= 1 + +x6 + x7 + x8 + x9 + x13 + x17 + x21 + x23 + x25 + x26 ++ x56 + x61 + x62 + x63 + x64 + x75 + x76 + x77 + x79 + x93 ++ x94 + x95 + x96 + x134 + x158 + x159 + x160 + x161 + x163 + x168 ++ x172 + x178 + x180 + x181 + x186 + x188 + x189 + x192 + x196 + x199 ++ x203 + x204 + x206 + x207 + x237 + x238 + x239 + x243 + x244 + x246 ++ x247 + x248 + x262 + x274 + x275 + x276 + x277 + x281 + x301 + x329 ++ x330 + x332 + x335 + x342 + x348 + x349 + x356 + x359 + x364 + x365 ++ x366 + x367 + x369 + x385 + x387 + x390 + x391 + x394 + x395 + x408 ++ x430 + x433 + x435 + x439 + x441 + x442 <= 1 + +x6 + x8 + x9 + x13 + x17 + x21 + x22 + x23 + x25 + x26 ++ x57 + x61 + x62 + x64 + x65 + x69 + x76 + x78 + x93 + x95 ++ x97 + x158 + x159 + x160 + x161 + x163 + x172 + x180 + x181 + x188 ++ x199 + x204 + x207 + x234 + x237 + x238 + x239 + x243 + x246 + x247 ++ x248 + x262 + x273 + x274 + x275 + x276 + x277 + x278 + x329 + x330 ++ x332 + x335 + x342 + x349 + x356 + x357 + x359 + x360 + x364 + x365 ++ x366 + x368 + x369 + x385 + x386 + x387 + x390 + x391 + x392 + x393 ++ x394 + x395 + x414 + x431 + x441 + x445 + x463 + x476 <= 1 + +x5 + x6 + x7 + x8 + x9 + x10 + x17 + x23 + x25 + x26 ++ x30 + x61 + x64 + x65 + x66 + x69 + x76 + x78 + x93 + x95 ++ x100 + x136 + x159 + x160 + x162 + x178 + x180 + x188 + x204 + x228 ++ x244 + x246 + x247 + x248 + x262 + x273 + x274 + x275 + x276 + x277 ++ x278 + x330 + x332 + x346 + x349 + x350 + x351 + x357 + x364 + x365 ++ x366 + x369 + x376 + x378 + x385 + x386 + x387 + x389 + x390 + x391 ++ x392 + x393 + x394 + x395 + x396 + x429 + x430 + x431 + x441 + x448 ++ x460 + x462 + x480 + x481 + x482 + x484 + x485 <= 1 + +x5 + x6 + x8 + x23 + x25 + x43 + x64 + x65 + x66 + x69 ++ x99 + x100 + x103 + x104 + x132 + x135 + x136 + x137 + x138 + x139 ++ x140 + x173 + x180 + x211 + x226 + x228 + x244 + x248 + x262 + x263 ++ x273 + x274 + x275 + x276 + x277 + x278 + x283 + x284 + x330 + x331 ++ x337 + x346 + x349 + x350 + x351 + x353 + x354 + x355 + x357 + x364 ++ x366 + x367 + x369 + x373 + x385 + x386 + x387 + x389 + x390 + x392 ++ x393 + x428 + x429 + x431 + x449 + x460 + x462 + x469 + x482 <= 1 + +x5 + x45 + x64 + x66 + x99 + x103 + x104 + x133 + x134 + x135 ++ x136 + x137 + x139 + x141 + x176 + x180 + x194 + x211 + x247 + x248 ++ x262 + x263 + x273 + x274 + x275 + x276 + x278 + x284 + x337 + x350 ++ x351 + x354 + x355 + x357 + x364 + x367 + x369 + x371 + x385 + x386 ++ x387 + x389 + x390 + x393 + x429 + x462 + x469 <= 1 + +x15 + x16 + x62 + x92 + x178 + x179 + x181 + x183 + x184 + x188 ++ x202 + x205 + x208 + x209 + x211 + x212 + x213 + x221 + x223 + x232 ++ x234 + x243 + x244 + x246 + x248 + x257 + x263 + x298 + x299 + x300 ++ x316 + x318 + x333 + x334 + x351 + x408 + x417 + x453 + x483 <= 1 + +x13 + x15 + x16 + x17 + x36 + x89 + x91 + x92 + x181 + x183 ++ x185 + x187 + x202 + x205 + x208 + x209 + x211 + x212 + x213 + x223 ++ x231 + x234 + x243 + x245 + x246 + x248 + x256 + x257 + x258 + x259 ++ x263 + x266 + x295 + x298 + x299 + x318 + x333 + x334 + x343 + x408 ++ x417 + x483 + x485 + x487 + x488 <= 1 + +x13 + x15 + x17 + x182 + x183 + x185 + x187 + x199 + x202 + x203 ++ x206 + x207 + x208 + x211 + x212 + x213 + x220 + x221 + x223 + x225 ++ x231 + x234 + x243 + x244 + x245 + x246 + x256 + x257 + x258 + x259 ++ x260 + x266 + x299 + x318 + x319 + x406 + x408 + x411 + x488 <= 1 + +x13 + x15 + x17 + x183 + x184 + x185 + x187 + x189 + x199 + x202 ++ x203 + x204 + x206 + x207 + x217 + x220 + x224 + x225 + x231 + x235 ++ x243 + x244 + x245 + x246 + x256 + x257 + x258 + x259 + x319 + x321 ++ x323 + x406 + x408 + x454 + x471 + x488 <= 1 + +x13 + x21 + x23 + x24 + x26 + x56 + x61 + x63 + x75 + x77 ++ x143 + x158 + x160 + x161 + x163 + x185 + x187 + x196 + x197 + x199 ++ x201 + x202 + x203 + x204 + x206 + x207 + x237 + x238 + x239 + x242 ++ x244 + x245 + x246 + x248 + x256 + x259 + x274 + x275 + x276 + x278 ++ x281 + x301 + x317 + x334 + x335 + x343 + x348 + x356 + x365 + x387 ++ x394 + x395 + x408 + x430 + x433 + x435 + x437 + x445 + x454 <= 1 + +x6 + x10 + x13 + x22 + x23 + x24 + x26 + x56 + x60 + x61 ++ x63 + x77 + x79 + x93 + x94 + x95 + x96 + x98 + x152 + x158 ++ x160 + x161 + x163 + x178 + x181 + x188 + x192 + x196 + x197 + x207 ++ x237 + x238 + x239 + x240 + x241 + x242 + x244 + x245 + x246 + x248 ++ x263 + x274 + x275 + x276 + x277 + x278 + x301 + x317 + x330 + x335 ++ x341 + x342 + x343 + x346 + x348 + x356 + x359 + x365 + x385 + x386 ++ x387 + x388 + x392 + x394 + x433 + x437 + x439 + x445 + x463 <= 1 + +x6 + x7 + x8 + x9 + x10 + x22 + x23 + x24 + x26 + x53 ++ x55 + x56 + x60 + x61 + x62 + x63 + x64 + x65 + x76 + x78 ++ x93 + x94 + x95 + x96 + x97 + x98 + x158 + x159 + x160 + x161 ++ x163 + x180 + x181 + x191 + x196 + x198 + x199 + x206 + x235 + x237 ++ x239 + x242 + x245 + x246 + x247 + x248 + x254 + x262 + x263 + x273 ++ x274 + x275 + x276 + x277 + x278 + x317 + x330 + x332 + x337 + x346 ++ x349 + x350 + x356 + x359 + x360 + x365 + x368 + x369 + x385 + x386 ++ x387 + x388 + x389 + x392 + x393 + x394 + x431 + x441 + x445 + x463 ++ x475 + x476 <= 1 + +x5 + x6 + x7 + x9 + x10 + x17 + x24 + x43 + x60 + x64 ++ x65 + x66 + x158 + x159 + x161 + x162 + x180 + x190 + x191 + x194 ++ x198 + x246 + x247 + x248 + x262 + x263 + x273 + x274 + x275 + x276 ++ x277 + x278 + x328 + x330 + x337 + x346 + x349 + x350 + x351 + x357 ++ x364 + x369 + x385 + x386 + x387 + x388 + x389 + x391 + x392 + x395 ++ x429 + x440 + x459 <= 1 + +x5 + x23 + x47 + x64 + x66 + x82 + x103 + x133 + x134 + x135 ++ x136 + x137 + x138 + x140 + x161 + x171 + x173 + x175 + x176 + x180 ++ x194 + x226 + x230 + x247 + x248 + x262 + x263 + x265 + x271 + x273 ++ x274 + x275 + x277 + x278 + x283 + x330 + x337 + x346 + x349 + x350 ++ x351 + x354 + x357 + x369 + x385 + x386 + x388 + x389 + x390 + x402 ++ x428 + x429 + x440 + x443 + x444 + x458 + x460 + x463 + x469 <= 1 + +x5 + x7 + x45 + x64 + x103 + x104 + x110 + x133 + x134 + x135 ++ x136 + x137 + x138 + x139 + x140 + x161 + x162 + x171 + x175 + x176 ++ x180 + x194 + x245 + x247 + x248 + x261 + x262 + x263 + x265 + x273 ++ x274 + x275 + x277 + x278 + x308 + x330 + x346 + x349 + x350 + x351 ++ x357 + x385 + x386 + x388 + x389 + x390 + x393 + x428 + x429 + x443 ++ x444 + x463 <= 1 + +x15 + x16 + x62 + x183 + x202 + x205 + x208 + x212 + x221 + x223 ++ x225 + x232 + x233 + x234 + x243 + x244 + x247 + x257 + x263 + x299 ++ x316 + x318 + x400 + x411 <= 1 + +x24 + x35 + x36 + x62 + x71 + x91 + x181 + x183 + x185 + x187 ++ x199 + x202 + x205 + x208 + x211 + x213 + x219 + x223 + x225 + x231 ++ x233 + x234 + x243 + x244 + x245 + x246 + x247 + x248 + x252 + x256 ++ x257 + x258 + x263 + x298 + x299 + x302 + x315 + x316 + x318 + x397 ++ x400 + x401 + x411 + x417 + x434 + x483 + x485 <= 1 + +x12 + x13 + x15 + x17 + x183 + x185 + x187 + x195 + x199 + x202 ++ x206 + x207 + x217 + x218 + x219 + x220 + x223 + x225 + x231 + x233 ++ x234 + x243 + x244 + x245 + x246 + x247 + x248 + x256 + x257 + x258 ++ x264 + x266 + x299 + x301 + x302 + x316 + x317 + x319 + x321 + x411 ++ x417 + x434 + x483 + x488 <= 1 + +x1 + x25 + x26 + x56 + x75 + x143 + x161 + x163 + x183 + x185 ++ x187 + x189 + x196 + x199 + x202 + x204 + x206 + x207 + x217 + x218 ++ x225 + x231 + x233 + x234 + x235 + x243 + x244 + x245 + x246 + x247 ++ x248 + x256 + x258 + x259 + x275 + x316 + x317 + x319 + x321 + x335 ++ x408 + x417 + x445 + x487 + x488 <= 1 + +x21 + x22 + x23 + x24 + x39 + x56 + x59 + x61 + x63 + x75 ++ x94 + x96 + x160 + x163 + x174 + x181 + x196 + x201 + x202 + x203 ++ x204 + x206 + x237 + x238 + x239 + x240 + x242 + x244 + x246 + x248 ++ x257 + x264 + x266 + x270 + x274 + x275 + x276 + x301 + x317 + x332 ++ x334 + x335 + x340 + x341 + x343 + x348 + x356 + x359 + x363 + x387 ++ x388 + x395 + x421 + x430 + x433 + x435 + x437 + x439 + x440 + x441 ++ x445 + x462 + x463 <= 1 + +x21 + x22 + x23 + x24 + x53 + x55 + x56 + x58 + x59 + x61 ++ x63 + x78 + x96 + x162 + x181 + x194 + x196 + x201 + x206 + x216 ++ x237 + x238 + x239 + x240 + x242 + x244 + x245 + x246 + x248 + x274 ++ x275 + x276 + x335 + x337 + x340 + x346 + x356 + x359 + x387 + x388 ++ x395 + x420 + x440 + x441 + x442 + x445 <= 1 + +x7 + x10 + x21 + x23 + x24 + x53 + x55 + x56 + x60 + x65 ++ x78 + x93 + x95 + x96 + x97 + x158 + x160 + x161 + x162 + x163 ++ x180 + x181 + x191 + x194 + x206 + x238 + x239 + x244 + x245 + x246 ++ x247 + x248 + x273 + x274 + x275 + x278 + x330 + x332 + x337 + x346 ++ x349 + x350 + x351 + x356 + x358 + x359 + x360 + x368 + x386 + x388 ++ x389 + x393 + x394 + x420 + x440 + x441 + x445 + x463 + x477 <= 1 + +x5 + x7 + x9 + x10 + x23 + x24 + x56 + x60 + x66 + x93 ++ x96 + x98 + x110 + x158 + x160 + x161 + x162 + x175 + x180 + x181 ++ x190 + x191 + x194 + x196 + x198 + x206 + x230 + x237 + x244 + x245 ++ x246 + x247 + x248 + x261 + x262 + x263 + x271 + x273 + x274 + x275 ++ x276 + x277 + x278 + x328 + x330 + x332 + x337 + x346 + x349 + x350 ++ x351 + x352 + x356 + x359 + x360 + x365 + x369 + x385 + x386 + x387 ++ x388 + x389 + x392 + x429 + x440 + x443 + x458 + x459 + x463 + x464 ++ x475 + x477 <= 1 + +x5 + x7 + x9 + x10 + x23 + x45 + x54 + x64 + x66 + x104 ++ x110 + x133 + x134 + x136 + x138 + x158 + x160 + x161 + x162 + x171 ++ x175 + x176 + x190 + x194 + x198 + x206 + x230 + x244 + x245 + x246 ++ x247 + x248 + x261 + x262 + x263 + x273 + x274 + x275 + x277 + x278 ++ x330 + x332 + x337 + x346 + x347 + x349 + x350 + x351 + x352 + x359 ++ x360 + x369 + x388 + x389 + x390 + x440 + x443 + x444 + x458 + x459 ++ x460 + x463 <= 1 + +x5 + x7 + x64 + x104 + x136 + x137 + x138 + x158 + x176 + x189 ++ x194 + x243 + x262 + x263 + x265 + x267 + x273 + x278 + x346 + x385 ++ x388 + x428 + x443 + x444 + x463 <= 1 + +x0 + x3 + x12 + x17 + x34 + x36 + x88 + x142 + x143 + x146 ++ x147 + x215 + x222 + x243 + x246 + x247 + x249 + x253 + x265 + x297 ++ x368 + x397 + x398 + x401 + x483 + x485 + x486 <= 1 + +x12 + x15 + x17 + x35 + x36 + x71 + x88 + x142 + x143 + x145 ++ x146 + x147 + x158 + x202 + x205 + x211 + x213 + x215 + x225 + x233 ++ x243 + x244 + x246 + x247 + x248 + x249 + x252 + x253 + x254 + x256 ++ x257 + x258 + x263 + x265 + x297 + x298 + x299 + x300 + x302 + x315 ++ x316 + x329 + x333 + x340 + x345 + x358 + x368 + x397 + x398 + x400 ++ x401 + x411 + x416 + x417 + x434 + x438 + x483 + x485 + x486 <= 1 + +x12 + x15 + x17 + x34 + x36 + x39 + x40 + x42 + x43 + x44 ++ x67 + x71 + x146 + x147 + x153 + x155 + x183 + x187 + x195 + x202 ++ x205 + x206 + x207 + x218 + x219 + x220 + x222 + x225 + x233 + x243 ++ x244 + x245 + x246 + x247 + x248 + x264 + x266 + x297 + x298 + x299 ++ x300 + x301 + x302 + x333 + x340 + x341 + x343 + x354 + x358 + x361 ++ x362 + x405 + x412 + x416 + x417 + x434 + x435 + x438 + x459 + x483 ++ x485 + x486 <= 1 + +x17 + x36 + x39 + x42 + x43 + x44 + x71 + x111 + x145 + x147 ++ x155 + x178 + x184 + x187 + x195 + x202 + x205 + x222 + x233 + x240 ++ x243 + x244 + x245 + x246 + x247 + x248 + x261 + x264 + x266 + x268 ++ x286 + x297 + x300 + x301 + x302 + x333 + x338 + x340 + x341 + x347 ++ x348 + x353 + x358 + x361 + x363 + x399 + x403 + x405 + x421 + x435 ++ x442 + x447 + x457 + x459 + x485 <= 1 + +x22 + x26 + x39 + x41 + x42 + x44 + x56 + x59 + x79 + x94 ++ x96 + x98 + x108 + x144 + x163 + x174 + x187 + x195 + x237 + x240 ++ x242 + x244 + x245 + x247 + x264 + x266 + x269 + x270 + x271 + x286 ++ x300 + x301 + x332 + x333 + x334 + x335 + x338 + x340 + x341 + x343 ++ x344 + x354 + x363 + x388 + x395 + x396 + x402 + x418 + x421 + x435 ++ x437 + x439 + x440 + x442 + x445 + x455 + x462 + x486 <= 1 + +x21 + x22 + x23 + x24 + x39 + x42 + x53 + x55 + x58 + x59 ++ x61 + x78 + x79 + x108 + x144 + x162 + x181 + x195 + x201 + x206 ++ x210 + x216 + x237 + x238 + x239 + x240 + x242 + x244 + x245 + x246 ++ x247 + x265 + x267 + x269 + x270 + x271 + x286 + x287 + x301 + x333 ++ x337 + x338 + x339 + x340 + x341 + x346 + x347 + x365 + x398 + x418 ++ x420 + x426 + x435 + x436 + x437 + x440 + x441 + x442 + x445 + x452 ++ x455 + x486 <= 1 + +x42 + x53 + x54 + x60 + x78 + x98 + x117 + x120 + x161 + x162 ++ x198 + x201 + x242 + x244 + x245 + x246 + x247 + x265 + x267 + x270 ++ x271 + x301 + x330 + x337 + x339 + x346 + x347 + x350 + x365 + x418 ++ x420 + x436 + x440 + x442 + x444 + x455 <= 1 + +x7 + x10 + x20 + x42 + x54 + x60 + x65 + x83 + x84 + x98 ++ x115 + x117 + x120 + x135 + x161 + x162 + x175 + x180 + x181 + x190 ++ x194 + x198 + x201 + x206 + x214 + x230 + x237 + x242 + x244 + x245 ++ x246 + x247 + x261 + x265 + x270 + x271 + x273 + x278 + x301 + x328 ++ x330 + x331 + x334 + x337 + x339 + x346 + x347 + x349 + x350 + x352 ++ x365 + x388 + x440 + x443 + x444 + x458 + x459 + x460 + x463 <= 1 + +x9 + x10 + x54 + x60 + x64 + x66 + x98 + x110 + x117 + x134 ++ x135 + x158 + x162 + x165 + x171 + x175 + x176 + x194 + x237 + x242 ++ x261 + x263 + x265 + x275 + x278 + x280 + x283 + x328 + x330 + x331 ++ x337 + x346 + x347 + x349 + x350 + x351 + x352 + x359 + x389 + x428 ++ x440 + x443 + x444 + x458 + x459 + x463 <= 1 + +x54 + x60 + x64 + x66 + x117 + x158 + x175 + x180 + x189 + x190 ++ x194 + x262 + x265 + x273 + x278 + x280 + x283 + x346 + x351 + x428 + <= 1 + +x3 + x12 + x15 + x16 + x17 + x27 + x28 + x34 + x142 + x192 ++ x200 + x210 + x215 + x222 + x243 + x247 + x248 + x249 + x253 + x254 ++ x265 + x286 + x298 + x302 + x343 + x345 + x358 + x360 + x368 + x397 ++ x398 + x400 + x401 + x402 + x415 + x438 + x483 <= 1 + +x3 + x12 + x15 + x16 + x17 + x34 + x35 + x36 + x37 + x38 ++ x52 + x142 + x143 + x145 + x146 + x147 + x167 + x177 + x187 + x192 ++ x200 + x222 + x233 + x243 + x245 + x246 + x247 + x248 + x249 + x251 ++ x252 + x253 + x254 + x256 + x297 + x298 + x299 + x300 + x302 + x329 ++ x332 + x340 + x343 + x345 + x358 + x360 + x362 + x368 + x397 + x398 ++ x400 + x401 + x402 + x412 + x415 + x416 + x434 + x438 + x483 <= 1 + +x3 + x12 + x15 + x16 + x17 + x34 + x36 + x37 + x39 + x40 ++ x42 + x44 + x50 + x51 + x52 + x106 + x113 + x142 + x143 + x144 ++ x145 + x146 + x147 + x153 + x155 + x157 + x166 + x167 + x187 + x200 ++ x222 + x233 + x241 + x243 + x244 + x245 + x246 + x247 + x248 + x251 ++ x252 + x266 + x297 + x298 + x299 + x300 + x302 + x329 + x331 + x332 ++ x336 + x340 + x343 + x344 + x345 + x353 + x354 + x358 + x362 + x385 ++ x391 + x397 + x398 + x399 + x401 + x412 + x415 + x416 + x423 + x434 ++ x435 + x438 + x439 + x483 + x485 + x486 <= 1 + +x12 + x15 + x34 + x36 + x39 + x40 + x41 + x44 + x50 + x51 ++ x58 + x81 + x106 + x111 + x113 + x114 + x142 + x143 + x144 + x145 ++ x147 + x157 + x187 + x191 + x195 + x222 + x240 + x241 + x245 + x247 ++ x248 + x251 + x264 + x266 + x268 + x272 + x297 + x298 + x299 + x300 ++ x301 + x302 + x328 + x329 + x331 + x332 + x333 + x336 + x338 + x340 ++ x343 + x344 + x348 + x353 + x358 + x361 + x362 + x363 + x385 + x398 ++ x399 + x414 + x422 + x423 + x424 + x426 + x434 + x435 + x437 + x438 ++ x439 + x445 + x447 + x453 + x457 + x459 + x485 + x486 + x497 <= 1 + +x37 + x39 + x42 + x44 + x58 + x79 + x105 + x107 + x111 + x114 ++ x143 + x144 + x145 + x147 + x173 + x178 + x187 + x195 + x240 + x241 ++ x243 + x244 + x245 + x247 + x248 + x261 + x264 + x266 + x268 + x270 ++ x285 + x286 + x297 + x298 + x300 + x301 + x302 + x313 + x314 + x323 ++ x328 + x331 + x332 + x333 + x334 + x335 + x336 + x338 + x340 + x341 ++ x343 + x344 + x348 + x353 + x358 + x361 + x363 + x385 + x399 + x402 ++ x403 + x404 + x421 + x434 + x435 + x436 + x437 + x438 + x439 + x441 ++ x442 + x445 + x447 + x455 + x456 + x457 + x459 + x486 + x497 + x502 + <= 1 + +x22 + x24 + x26 + x39 + x41 + x42 + x52 + x55 + x58 + x59 ++ x79 + x82 + x105 + x108 + x113 + x144 + x162 + x163 + x174 + x187 ++ x195 + x201 + x210 + x216 + x237 + x240 + x241 + x242 + x244 + x245 ++ x247 + x261 + x264 + x266 + x267 + x268 + x269 + x270 + x271 + x285 ++ x286 + x287 + x297 + x301 + x313 + x314 + x315 + x328 + x331 + x332 ++ x333 + x334 + x335 + x336 + x338 + x339 + x340 + x341 + x343 + x347 ++ x350 + x363 + x396 + x402 + x413 + x418 + x419 + x426 + x435 + x436 ++ x437 + x438 + x439 + x440 + x441 + x442 + x445 + x450 + x451 + x452 ++ x455 + x457 + x486 + x491 <= 1 + +x54 + x55 + x80 + x81 + x119 + x172 + x210 + x214 + x216 + x240 ++ x241 + x242 + x245 + x248 + x261 + x264 + x266 + x313 + x314 + x315 ++ x328 + x333 + x334 + x336 + x338 + x339 + x341 + x344 + x347 + x350 ++ x351 + x419 + x437 + x439 + x446 + x450 + x452 + x455 + x457 <= 1 + +x10 + x20 + x54 + x80 + x83 + x84 + x98 + x115 + x116 + x117 ++ x120 + x161 + x172 + x180 + x190 + x191 + x193 + x198 + x201 + x214 ++ x241 + x244 + x245 + x246 + x247 + x248 + x253 + x261 + x264 + x265 ++ x266 + x275 + x278 + x314 + x328 + x331 + x334 + x336 + x338 + x339 ++ x346 + x347 + x349 + x350 + x351 + x352 + x365 + x388 + x419 + x437 ++ x443 + x451 + x455 + x458 <= 1 + +x10 + x17 + x18 + x20 + x22 + x49 + x53 + x54 + x64 + x83 ++ x115 + x118 + x120 + x135 + x137 + x162 + x190 + x191 + x193 + x194 ++ x214 + x215 + x244 + x245 + x247 + x248 + x261 + x264 + x265 + x275 ++ x278 + x280 + x304 + x328 + x334 + x336 + x337 + x346 + x347 + x349 ++ x350 + x351 + x352 + x362 + x389 + x437 + x443 + x444 + x459 <= 1 + +x17 + x22 + x54 + x83 + x118 + x137 + x190 + x244 + x265 + x273 ++ x278 + x280 + x283 + x328 + x337 + x346 + x351 + x352 + x428 + x459 + <= 1 + +x12 + x27 + x34 + x35 + x37 + x38 + x51 + x142 + x187 + x210 ++ x245 + x247 + x248 + x249 + x250 + x253 + x254 + x297 + x298 + x302 ++ x343 + x397 + x400 + x401 + x402 + x434 + x436 + x438 + x483 <= 1 + +x12 + x15 + x16 + x27 + x34 + x35 + x36 + x37 + x38 + x51 ++ x59 + x142 + x143 + x145 + x146 + x147 + x154 + x156 + x177 + x187 ++ x192 + x200 + x243 + x245 + x246 + x247 + x248 + x250 + x251 + x252 ++ x254 + x297 + x298 + x299 + x300 + x302 + x329 + x331 + x332 + x343 ++ x344 + x345 + x358 + x391 + x397 + x398 + x399 + x400 + x401 + x402 ++ x412 + x415 + x416 + x427 + x431 + x434 + x436 + x438 + x483 <= 1 + +x12 + x15 + x16 + x34 + x35 + x36 + x37 + x38 + x39 + x40 ++ x44 + x50 + x51 + x52 + x109 + x142 + x143 + x145 + x146 + x147 ++ x153 + x154 + x155 + x156 + x167 + x187 + x200 + x240 + x243 + x244 ++ x245 + x246 + x247 + x248 + x266 + x297 + x298 + x299 + x300 + x302 ++ x329 + x331 + x332 + x338 + x343 + x344 + x345 + x362 + x391 + x397 ++ x398 + x399 + x400 + x401 + x402 + x412 + x413 + x415 + x416 + x423 ++ x424 + x427 + x434 + x436 + x438 + x442 + x456 + x483 + x485 + x486 + <= 1 + +x12 + x15 + x16 + x35 + x37 + x38 + x40 + x41 + x44 + x50 ++ x51 + x52 + x58 + x59 + x109 + x112 + x114 + x142 + x145 + x146 ++ x147 + x154 + x157 + x167 + x182 + x195 + x200 + x240 + x243 + x245 ++ x246 + x247 + x248 + x264 + x272 + x297 + x298 + x299 + x300 + x302 ++ x328 + x329 + x331 + x332 + x333 + x336 + x338 + x340 + x341 + x344 ++ x347 + x348 + x358 + x360 + x361 + x362 + x363 + x397 + x398 + x399 ++ x413 + x414 + x422 + x423 + x424 + x425 + x427 + x434 + x435 + x436 ++ x437 + x438 + x439 + x442 + x446 + x447 + x453 + x456 + x485 + x486 ++ x495 <= 1 + +x1 + x16 + x37 + x38 + x40 + x41 + x44 + x48 + x51 + x58 ++ x59 + x81 + x82 + x105 + x106 + x107 + x109 + x111 + x112 + x113 ++ x114 + x144 + x145 + x157 + x173 + x178 + x189 + x191 + x195 + x201 ++ x222 + x241 + x243 + x244 + x245 + x247 + x248 + x261 + x264 + x267 ++ x268 + x269 + x272 + x297 + x298 + x300 + x301 + x307 + x328 + x331 ++ x332 + x333 + x335 + x336 + x338 + x340 + x341 + x344 + x347 + x348 ++ x361 + x362 + x363 + x385 + x398 + x399 + x404 + x414 + x422 + x423 ++ x425 + x426 + x427 + x434 + x435 + x436 + x437 + x438 + x439 + x442 ++ x446 + x447 + x456 + x485 + x486 + x491 + x492 + x493 + x495 + x497 + <= 1 + +x16 + x35 + x37 + x41 + x48 + x49 + x50 + x51 + x52 + x53 ++ x58 + x59 + x76 + x81 + x82 + x109 + x111 + x112 + x113 + x114 ++ x119 + x144 + x146 + x162 + x171 + x172 + x174 + x190 + x191 + x192 ++ x193 + x195 + x201 + x210 + x240 + x241 + x242 + x244 + x245 + x247 ++ x248 + x261 + x264 + x266 + x267 + x268 + x269 + x272 + x285 + x287 ++ x288 + x290 + x301 + x307 + x313 + x328 + x331 + x332 + x333 + x335 ++ x336 + x338 + x339 + x340 + x341 + x344 + x347 + x348 + x351 + x361 ++ x363 + x396 + x413 + x425 + x426 + x437 + x439 + x443 + x446 + x447 ++ x450 + x451 + x452 + x453 + x455 + x456 + x457 + x485 + x486 + x489 ++ x491 + x492 + x493 + x494 + x496 + x497 <= 1 + +x16 + x41 + x49 + x50 + x51 + x52 + x53 + x55 + x59 + x81 ++ x84 + x114 + x116 + x119 + x172 + x174 + x190 + x191 + x192 + x193 ++ x195 + x210 + x240 + x241 + x242 + x244 + x245 + x247 + x248 + x261 ++ x264 + x265 + x266 + x269 + x272 + x285 + x288 + x289 + x290 + x301 ++ x307 + x328 + x334 + x335 + x336 + x338 + x339 + x344 + x347 + x349 ++ x351 + x363 + x425 + x446 + x447 + x450 + x451 + x452 + x453 + x456 ++ x457 + x458 + x489 + x492 <= 1 + +x10 + x19 + x39 + x41 + x49 + x50 + x52 + x65 + x72 + x80 ++ x84 + x85 + x115 + x116 + x117 + x119 + x120 + x161 + x171 + x172 ++ x190 + x191 + x192 + x193 + x200 + x241 + x242 + x245 + x247 + x248 ++ x261 + x264 + x265 + x266 + x275 + x288 + x289 + x290 + x304 + x306 ++ x307 + x328 + x336 + x338 + x339 + x347 + x349 + x419 + x437 + x443 ++ x451 + x452 + x458 <= 1 + +x10 + x18 + x19 + x49 + x50 + x53 + x54 + x80 + x83 + x84 ++ x85 + x119 + x120 + x190 + x191 + x192 + x193 + x194 + x237 + x245 ++ x261 + x265 + x275 + x278 + x289 + x304 + x305 + x306 + x328 + x331 ++ x336 + x337 + x347 + x351 + x443 + x444 + x451 <= 1 + +x10 + x83 + x85 + x118 + x119 + x135 + x179 + x186 + x190 + x192 ++ x193 + x194 + x203 + x237 + x244 + x245 + x265 + x275 + x278 + x303 ++ x304 + x305 + x306 + x328 + x331 + x339 + x347 + x351 + x443 + x444 ++ x459 <= 1 + +x16 + x34 + x35 + x36 + x37 + x38 + x51 + x142 + x192 + x210 ++ x245 + x247 + x248 + x249 + x250 + x251 + x252 + x297 + x298 + x300 ++ x302 + x343 + x344 + x397 + x400 + x401 + x402 + x415 + x416 + x427 ++ x434 + x438 <= 1 + +x12 + x16 + x34 + x35 + x36 + x38 + x142 + x143 + x196 + x200 ++ x243 + x245 + x251 + x297 + x298 + x299 + x302 + x331 + x337 + x343 ++ x369 + x400 + x401 + x402 + x411 + x415 + x436 + x438 <= 1 + +x12 + x16 + x35 + x37 + x38 + x40 + x49 + x50 + x51 + x52 ++ x109 + x110 + x143 + x145 + x146 + x147 + x153 + x154 + x156 + x210 ++ x243 + x244 + x245 + x246 + x247 + x248 + x264 + x266 + x297 + x298 ++ x299 + x300 + x302 + x329 + x332 + x360 + x362 + x399 + x400 + x412 ++ x413 + x414 + x434 + x435 + x436 + x438 + x485 + x486 <= 1 + +x11 + x12 + x16 + x35 + x37 + x38 + x49 + x50 + x51 + x52 ++ x109 + x110 + x111 + x112 + x113 + x114 + x146 + x156 + x182 + x240 ++ x241 + x243 + x245 + x246 + x247 + x248 + x264 + x288 + x297 + x299 ++ x300 + x302 + x328 + x329 + x331 + x332 + x333 + x338 + x344 + x348 ++ x358 + x360 + x361 + x362 + x363 + x399 + x412 + x413 + x414 + x422 ++ x424 + x434 + x435 + x436 + x442 + x450 + x453 + x485 + x486 + x495 + <= 1 + +x16 + x35 + x37 + x38 + x46 + x49 + x50 + x51 + x52 + x81 ++ x82 + x109 + x110 + x111 + x112 + x113 + x114 + x146 + x189 + x191 ++ x192 + x195 + x240 + x241 + x243 + x245 + x247 + x248 + x261 + x264 ++ x267 + x272 + x288 + x299 + x300 + x301 + x328 + x329 + x331 + x332 ++ x333 + x335 + x336 + x338 + x341 + x344 + x347 + x348 + x360 + x361 ++ x363 + x414 + x422 + x424 + x425 + x435 + x436 + x437 + x439 + x442 ++ x447 + x450 + x453 + x486 + x493 + x494 + x495 <= 1 + +x16 + x41 + x49 + x50 + x52 + x53 + x58 + x80 + x81 + x82 ++ x85 + x109 + x111 + x112 + x144 + x171 + x174 + x191 + x192 + x193 ++ x195 + x241 + x244 + x245 + x261 + x264 + x266 + x268 + x269 + x272 ++ x287 + x288 + x328 + x330 + x331 + x332 + x333 + x336 + x339 + x341 ++ x344 + x347 + x413 + x450 + x452 + x453 + x454 + x455 + x456 + x489 ++ x490 + x493 + x494 + x496 <= 1 + +x49 + x50 + x52 + x53 + x58 + x80 + x81 + x82 + x84 + x85 ++ x93 + x123 + x174 + x190 + x191 + x192 + x193 + x195 + x241 + x244 ++ x245 + x261 + x264 + x266 + x285 + x287 + x290 + x303 + x307 + x328 ++ x331 + x332 + x336 + x339 + x344 + x347 + x446 + x450 + x451 + x452 ++ x454 + x456 + x457 + x458 + x490 + x494 + x496 <= 1 + +x10 + x39 + x49 + x53 + x54 + x65 + x80 + x82 + x84 + x85 ++ x115 + x116 + x190 + x191 + x192 + x193 + x195 + x241 + x242 + x245 ++ x247 + x261 + x264 + x265 + x266 + x285 + x287 + x289 + x290 + x303 ++ x305 + x328 + x331 + x332 + x339 + x344 + x347 + x451 + x452 + x454 ++ x456 + x457 + x458 + x496 <= 1 + +x10 + x18 + x19 + x49 + x53 + x54 + x65 + x78 + x80 + x83 ++ x84 + x85 + x115 + x116 + x190 + x191 + x192 + x193 + x195 + x245 ++ x261 + x262 + x265 + x278 + x289 + x290 + x303 + x304 + x305 + x306 ++ x328 + x331 + x336 + x339 + x347 + x351 + x444 + x454 <= 1 + +x10 + x14 + x49 + x85 + x116 + x190 + x192 + x244 + x245 + x261 ++ x265 + x289 + x303 + x305 + x306 + x328 + x339 + x351 + x444 <= 1 + +x0 + x1 + x2 + x3 + x4 <= 1 + +x5 + x6 + x7 + x8 + x9 + x10 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 <= 1 + + <= 1 + +x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 + x38 + x39 <= 1 + +x40 + x41 + x42 + x43 + x44 + x45 <= 1 + + <= 1 + +x49 + x50 + x51 + x52 + x53 + x54 <= 1 + +x55 + x56 + x57 + x58 + x59 + x60 <= 1 + +x61 + x62 + x63 + x64 + x65 + x66 <= 1 + +x67 + x68 + x69 + x70 + x71 + x72 <= 1 + +x74 + x75 + x76 + x77 + x78 + x79 <= 1 + +x80 + x81 + x82 + x83 + x84 + x85 <= 1 + + <= 1 + +x89 + x90 + x91 + x92 <= 1 + +x93 + x94 + x95 + x96 + x97 + x98 <= 1 + +x99 + x100 + x101 + x102 + x103 + x104 <= 1 + +x105 + x106 + x107 + x108 <= 1 + +x109 + x110 + x111 + x112 + x113 + x114 <= 1 + +x115 + x116 + x117 + x118 + x119 + x120 <= 1 + +x121 + x122 + x123 + x124 <= 1 + +x125 + x126 <= 1 + +x127 + x128 + x129 + x130 + x131 + x132 <= 1 + +x133 + x134 + x135 + x136 + x137 + x138 <= 1 + +x139 + x140 + x141 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x148 + x149 + x150 + x151 <= 1 + +x153 + x154 + x155 + x156 + x157 <= 1 + +x158 + x159 + x160 + x161 + x162 + x163 <= 1 + +x166 + x167 + x168 + x169 + x170 <= 1 + +x171 + x172 + x173 + x174 + x175 + x176 <= 1 + +x178 + x179 + x180 + x181 + x182 + x183 <= 1 + +x184 + x185 + x186 + x187 + x188 + x189 <= 1 + +x190 + x191 + x192 + x193 + x194 + x195 <= 1 + +x196 + x197 + x198 + x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x208 + x209 + x210 + x211 + x212 + x213 <= 1 + +x214 + x215 + x216 <= 1 + +x217 + x218 + x219 <= 1 + +x220 + x221 + x222 + x223 + x224 + x225 <= 1 + +x226 + x227 + x228 + x229 + x230 <= 1 + +x47 + x231 + x232 + x233 + x234 + x235 <= 1 + +x237 + x238 + x239 + x240 + x241 + x242 <= 1 + +x243 + x244 + x245 + x246 + x247 + x248 <= 1 + +x249 + x250 + x251 + x252 + x253 + x254 <= 1 + +x256 + x257 + x258 + x259 + x260 <= 1 + +x261 + x262 + x263 + x264 + x265 + x266 <= 1 + +x267 + x268 + x269 + x270 + x271 + x272 <= 1 + +x273 + x274 + x275 + x276 + x277 + x278 <= 1 + +x279 + x280 + x281 + x282 + x283 + x284 <= 1 + +x285 + x286 + x287 + x288 + x289 + x290 <= 1 + +x291 + x292 <= 1 + +x293 + x294 + x295 + x296 <= 1 + +x297 + x298 + x299 + x300 + x301 + x302 <= 1 + +x303 + x304 + x305 + x306 + x307 <= 1 + +x311 + x312 <= 1 + +x313 + x314 + x315 <= 1 + +x316 + x317 + x318 + x319 + x320 + x321 <= 1 + + <= 1 + +x322 + x323 + x324 + x325 + x326 + x327 <= 1 + +x328 + x329 + x330 + x331 + x332 + x333 <= 1 + +x334 + x335 + x336 + x337 + x338 + x339 <= 1 + +x340 + x341 + x342 + x343 + x344 + x345 <= 1 + +x346 + x347 + x348 + x349 + x350 + x351 <= 1 + +x352 + x353 + x354 + x355 + x356 + x357 <= 1 + +x358 + x359 + x360 + x361 + x362 + x363 <= 1 + +x364 + x365 + x366 + x367 + x368 + x369 <= 1 + +x370 + x371 + x372 + x373 + x374 <= 1 + +x375 + x376 + x377 + x378 <= 1 + +x379 + x380 + x381 <= 1 + +x382 + x383 <= 1 + +x385 + x386 + x387 + x388 + x389 + x390 <= 1 + +x391 + x392 + x393 + x394 + x395 + x396 <= 1 + +x397 + x398 + x399 + x400 + x401 + x402 <= 1 + +x403 + x404 + x405 <= 1 + +x406 + x407 + x408 + x409 + x410 + x411 <= 1 + +x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 <= 1 + +x422 + x423 + x424 + x425 + x426 + x427 <= 1 + +x428 + x429 + x430 + x431 + x432 + x433 <= 1 + +x434 + x435 + x436 + x437 + x438 + x439 <= 1 + +x440 + x441 + x442 + x443 + x444 + x445 <= 1 + +x446 + x447 + x448 + x449 + x450 + x451 <= 1 + +x452 + x453 + x454 + x455 + x456 + x457 <= 1 + +x458 + x459 + x460 + x461 + x462 + x463 <= 1 + +x464 + x465 + x466 + x467 + x468 + x469 <= 1 + +x470 + x471 + x472 + x473 + x474 <= 1 + +x475 + x476 + x477 <= 1 + +x478 + x479 + x480 + x481 + x482 <= 1 + +x483 + x484 + x485 + x486 + x487 + x488 <= 1 + +x489 + x490 + x491 + x492 <= 1 + +x493 + x494 + x495 + x496 + x497 <= 1 + +x498 + x499 + x500 + x501 + x502 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0018.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0018.lp new file mode 100644 index 000000000..b3ac7ea36 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0018.lp @@ -0,0 +1,1134 @@ +max + +405.955x0 + 505.074x1 + 433.484x2 + 432.879x3 + 427.194x4 + 73.9565x5 + 81.8412x6 + 551.935x7 + 689.346x8 + 669.126x9 + +566.354x10 + 555.537x11 + 548.073x12 + 456.902x13 + 449.817x14 + 426.775x15 + 423.809x16 + 397.995x17 + 360.937x18 + 496.975x19 + +399.29x20 + 289.115x21 + 284.715x22 + 220.814x23 + 715.018x24 + 1061.29x25 + 1030.6x26 + 1024.95x27 + 998.313x28 + 980.39x29 + +4.69384x30 + 653.213x31 + 563.727x32 + 560.894x33 + 548.742x34 + 504.838x35 + 429.519x36 + 957.193x37 + 1205.36x38 + 1201.26x39 + +1174.85x40 + 1158.62x41 + 1141.04x42 + 40.037x43 + 695.433x44 + 695.713x45 + 651.842x46 + 603.878x47 + 563.623x48 + 554.811x49 + +634.652x50 + 784.252x51 + 644.84x52 + 614.421x53 + 612.721x54 + 594.288x55 + 382.508x56 + 433.331x57 + 428.569x58 + 392.818x59 + +306.82x60 + 278.954x61 + 34.6708x62 + 70.369x63 + 60.2241x64 + 649.822x65 + 846.49x66 + 698.958x67 + 658.254x68 + 627.809x69 + +594.969x70 + 2662.52x71 + 3214.23x72 + 3158.26x73 + 3090.35x74 + 3074.65x75 + 3047.05x76 + 530.272x77 + 637.127x78 + 632.281x79 + +584.548x80 + 567.749x81 + 552.592x82 + 20.2299x83 + 451.958x84 + 630.006x85 + 600.785x86 + 578.534x87 + 537.655x88 + 505.999x89 + +812.223x90 + 874.364x91 + 815.459x92 + 810.694x93 + 778.675x94 + 772.032x95 + 890.107x96 + 1299.08x97 + 1175.23x98 + 1005.18x99 + +967.645x100 + 959.565x101 + 530.865x102 + 536.952x103 + 480.476x104 + 475.928x105 + 462.484x106 + 436.517x107 + 1634.84x108 + 1893.1x109 + +1767.49x110 + 1750.85x111 + 1659.94x112 + 1635.8x113 + 239.471x114 + 297.67x115 + 232.125x116 + 202.918x117 + 239.535x118 + 283.352x119 + +224.348x120 + 168.376x121 + 46.9742x122 + 50.9715x123 + 327.222x124 + 465.074x125 + 332.465x126 + 286.918x127 + 282.982x128 + 219.879x129 + +2977.99x130 + 3022.88x131 + 3004x132 + 2894.65x133 + 2867.15x134 + 2863.12x135 + 3129.54x136 + 3594.64x137 + 3524.93x138 + 3505.75x139 + +3505.48x140 + 3473.33x141 + 1765.09x142 + 1941.24x143 + 1931.72x144 + 1904.99x145 + 1898.91x146 + 1894.61x147 + 277.341x148 + 247.38x149 + +224.384x150 + 175.108x151 + 211.51x152 + 262.042x153 + 191.515x154 + 171.047x155 + 124.643x156 + 355.607x157 + 359.278x158 + 277.114x159 + +198.92x160 + 327.458x161 + 461.589x162 + 437.863x163 + 351.437x164 + 293.004x165 + 262.946x166 + 587.535x167 + 695.415x168 + 658.813x169 + +595.069x170 + 441.089x171 + 397.5x172 + 149.398x173 + 54.5437x174 + 104.942x175 + 996.762x176 + 1082.43x177 + 1064.55x178 + 994.442x179 + +976.357x180 + 935.527x181 + 312.006x182 + 464.675x183 + 402.981x184 + 401.632x185 + 325.281x186 + 528.589x187 + 547.927x188 + 520.336x189 + +501.304x190 + 485.878x191 + 434.667x192 + 562.97x193 + 813.383x194 + 804.42x195 + 768.522x196 + 706.744x197 + 702.865x198 + 1659.3x199 + +1731.91x200 + 1671.72x201 + 1646.4x202 + 1643.97x203 + 1624.97x204 + 522.331x205 + 513.535x206 + 502.931x207 + 465.645x208 + 359.161x209 + +305.375x210 + 240.728x211 + 329.396x212 + 198.423x213 + 169.485x214 + 148.891x215 + 575.566x216 + 810.887x217 + 742.08x218 + 737.724x219 + +731.695x220 + 717.093x221 + 460.924x222 + 669.703x223 + 651.374x224 + 640.368x225 + 620.213x226 + 604.422x227 + 1072.98x228 + 1364.17x229 + +1149x230 + 1143.07x231 + 1113.93x232 + 1102.86x233 + 175.568x234 + 162.216x235 + 104.181x236 + 777.014x237 + 1082.47x238 + 1062.4x239 + +949.05x240 + 929.992x241 + 910.648x242 + 3932.92x243 + 4224.63x244 + 4160.15x245 + 4128.27x246 + 4120.92x247 + 4094.08x248 + 252.673x249 + +226.462x250 + 203.543x251 + 172.288x252 + 156.486x253 + 131.215x254 + 168.454x255 + 81.7452x256 + 1359.48x257 + 1773.19x258 + 1686.01x259 + +1653.21x260 + 1607.31x261 + 1597.15x262 + 662.832x263 + 807.935x264 + 781.392x265 + 760.636x266 + 708.694x267 + 678.664x268 + 434.492x269 + +588.375x270 + 558.242x271 + 523.378x272 + 500.56x273 + 500.375x274 + 2630.17x275 + 3047.76x276 + 2982.6x277 + 2928.29x278 + 2871.71x279 + +2841.59x280 + 612.59x281 + 531.667x282 + 526.214x283 + 467.351x284 + 448.963x285 + 447.326x286 + 732.447x287 + 939.004x288 + 926.503x289 + +921.432x290 + 876.366x291 + 863.389x292 + 415.935x293 + 550.352x294 + 516.476x295 + 489.077x296 + 485.331x297 + 473.638x298 + 1195.08x299 + +1301.36x300 + 1232.82x301 + 1158.89x302 + 1147.84x303 + 1110.1x304 + 2155.69x305 + 2683.31x306 + 2513.6x307 + 2407.4x308 + 2406.32x309 + +2395.02x310 + 462.021x311 + 573.353x312 + 533.871x313 + 529.373x314 + 499.057x315 + 466.843x316 + 520.86x317 + 713.217x318 + 689.429x319 + +636.509x320 + 631.79x321 + 609.183x322 + 67.4425x323 + 1539.03x324 + 1677.4x325 + 1611.67x326 + 1585.88x327 + 1532.54x328 + 1529.84x329 + +67.467x330 + 801.417x331 + 965.055x332 + 930.891x333 + 927.685x334 + 890.207x335 + 875.043x336 + 618.246x337 + 679.94x338 + 644.391x339 + +636.99x340 + 625.683x341 + 611.387x342 + 889.245x343 + 999.689x344 + 898.061x345 + 882.2x346 + 832.274x347 + 816.376x348 + 230.558x349 + +246.735x350 + 237.791x351 + 208.116x352 + 194.869x353 + 457.217x354 + 380.225x355 + 367.605x356 + 349.779x357 + 322.194x358 + 314.58x359 + +48.7036x360 + 3065.39x361 + 3218.32x362 + 3188.29x363 + 3143.76x364 + 3140.83x365 + 3139.35x366 + 401.738x367 + 538.772x368 + 472.697x369 + +444.048x370 + 406.908x371 + 394.884x372 + 523.709x373 + 581.606x374 + 510.397x375 + 490.336x376 + 473.95x377 + 464.967x378 + 127.436x379 + +174.068x380 + 172.7x381 + 169.437x382 + 666.874x383 + 943.415x384 + 931.568x385 + 894.24x386 + 890.861x387 + 854.724x388 + 82.847x389 + +101.774x390 + 394.099x391 + 552.199x392 + 469.863x393 + 451.095x394 + 436.758x395 + 436.444x396 + 446.887x397 + 476.356x398 + 466.569x399 + +458.857x400 + 383.393x401 + 343.984x402 + 885.201x403 + 1264.57x404 + 1237.34x405 + 1227.19x406 + 1175.83x407 + 1165.09x408 + 538.771x409 + +558.26x410 + 528.688x411 + 449.741x412 + 422.986x413 + 398.772x414 + 202.295x415 + 254.296x416 + 238.772x417 + 211.798x418 + 144.692x419 + +89.2776x420 + 105.835x421 + 1809.02x422 + 2486.08x423 + 2457.42x424 + 2381.19x425 + 2346.97x426 + 2302.41x427 + 283.186x428 + 391.237x429 + +388.872x430 + 253.912x431 + 202.002x432 + 557.176x433 + 584.801x434 + 540.435x435 + 503.366x436 + 489.677x437 + 363.961x438 + 370.496x439 + +455.687x440 + 428.449x441 + 417.756x442 + 339.743x443 + 304.806x444 + 421.721x445 + 589.145x446 + 587.345x447 + 562.85x448 + 561.244x449 + +463.173x450 + 16.4535x451 + 704.525x452 + 721.271x453 + 687.176x454 + 649.758x455 + 615.22x456 + 609.551x457 + 488.924x458 + 504.279x459 + +496.409x460 + 459.609x461 + 418.893x462 + 374.572x463 + 157.676x464 + 197.046x465 + 138.75x466 + 138.683x467 + 728.181x468 + 944.723x469 + +802.628x470 + 757.681x471 + 734.092x472 + 731.02x473 + 969.142x474 + 1163.7x475 + 1025.95x476 + 1021.83x477 + 999.892x478 + 999.235x479 + +1230.67x480 + 1430.02x481 + 1386.91x482 + 1368.85x483 + 1364.31x484 + 1359.13x485 + 513.173x486 + 594.52x487 + 558.345x488 + 517.431x489 + +506.781x490 + 455.305x491 + 619.744x492 + 878.119x493 + 777.576x494 + 750.479x495 + 740.293x496 + 728.394x497 + 269.298x498 + 338.837x499 + +266.635x500 + 188.234x501 + 109.692x502 + +st + +x36 + x101 + x110 + x130 + x133 + x134 + x135 + x142 + x147 + x153 ++ x154 + x156 + x245 + x286 + x307 + x327 + x361 + x363 + x364 + x365 ++ x405 + x468 + x469 + x471 + x472 + x473 + x478 + x494 <= 1 + +x31 + x36 + x82 + x101 + x110 + x130 + x132 + x133 + x134 + x135 ++ x142 + x147 + x152 + x153 + x155 + x156 + x192 + x235 + x245 + x284 ++ x286 + x307 + x327 + x329 + x361 + x363 + x364 + x365 + x405 + x468 ++ x469 + x471 + x472 + x473 + x478 <= 1 + +x20 + x22 + x23 + x77 + x81 + x82 + x96 + x101 + x109 + x110 ++ x130 + x131 + x132 + x133 + x134 + x135 + x137 + x139 + x142 + x147 ++ x153 + x170 + x192 + x201 + x231 + x245 + x246 + x248 + x260 + x281 ++ x283 + x286 + x306 + x307 + x329 + x331 + x343 + x344 + x346 + x347 ++ x348 + x360 + x361 + x363 + x364 + x365 + x405 + x423 + x427 + x469 + <= 1 + +x19 + x20 + x22 + x23 + x27 + x41 + x72 + x73 + x77 + x78 ++ x81 + x101 + x108 + x109 + x110 + x111 + x112 + x130 + x131 + x132 ++ x133 + x134 + x135 + x137 + x139 + x142 + x143 + x146 + x147 + x167 ++ x170 + x177 + x190 + x229 + x231 + x232 + x245 + x246 + x247 + x248 ++ x260 + x279 + x281 + x282 + x283 + x284 + x286 + x293 + x296 + x297 ++ x298 + x306 + x310 + x331 + x332 + x343 + x344 + x345 + x346 + x348 ++ x361 + x363 + x364 + x365 + x366 + x404 + x406 + x415 + x416 + x423 ++ x427 + x469 <= 1 + +x7 + x19 + x20 + x22 + x27 + x33 + x41 + x71 + x72 + x73 ++ x74 + x76 + x77 + x78 + x81 + x101 + x108 + x109 + x110 + x111 ++ x112 + x113 + x130 + x131 + x132 + x133 + x134 + x135 + x137 + x138 ++ x139 + x141 + x142 + x143 + x144 + x146 + x147 + x168 + x170 + x177 ++ x190 + x199 + x229 + x230 + x231 + x232 + x233 + x244 + x245 + x246 ++ x247 + x248 + x259 + x260 + x276 + x277 + x278 + x279 + x281 + x282 ++ x283 + x284 + x293 + x295 + x296 + x297 + x298 + x301 + x306 + x307 ++ x310 + x331 + x332 + x343 + x344 + x345 + x346 + x347 + x348 + x361 ++ x362 + x363 + x364 + x365 + x366 + x374 + x404 + x406 + x413 + x415 ++ x417 + x418 + x422 + x424 + x427 + x452 + x454 + x455 + x469 + x482 + <= 1 + +x7 + x21 + x27 + x41 + x42 + x54 + x71 + x72 + x73 + x74 ++ x77 + x78 + x79 + x81 + x108 + x109 + x110 + x111 + x112 + x113 ++ x130 + x131 + x132 + x133 + x134 + x135 + x139 + x141 + x142 + x143 ++ x146 + x147 + x168 + x170 + x190 + x207 + x228 + x231 + x232 + x244 ++ x245 + x246 + x247 + x248 + x252 + x259 + x260 + x266 + x276 + x279 ++ x283 + x284 + x291 + x293 + x296 + x297 + x298 + x302 + x306 + x331 ++ x332 + x343 + x345 + x346 + x347 + x361 + x362 + x363 + x364 + x365 ++ x366 + x404 + x413 + x415 + x417 + x418 + x419 + x422 + x425 + x427 ++ x452 + x454 + x455 + x456 + x489 <= 1 + +x3 + x21 + x24 + x25 + x26 + x28 + x37 + x41 + x42 + x51 ++ x52 + x54 + x61 + x71 + x72 + x73 + x74 + x75 + x77 + x78 ++ x79 + x108 + x110 + x111 + x112 + x113 + x130 + x131 + x132 + x134 ++ x135 + x137 + x139 + x140 + x141 + x143 + x145 + x146 + x147 + x168 ++ x169 + x206 + x207 + x209 + x210 + x228 + x232 + x243 + x244 + x245 ++ x246 + x247 + x248 + x252 + x266 + x276 + x279 + x280 + x291 + x305 ++ x306 + x320 + x331 + x332 + x333 + x335 + x336 + x361 + x362 + x363 ++ x364 + x366 + x409 + x410 + x413 + x419 + x422 + x424 + x425 + x427 ++ x446 + x456 + x481 + x484 + x488 + x489 <= 1 + +x1 + x24 + x27 + x28 + x37 + x41 + x42 + x54 + x56 + x61 ++ x72 + x73 + x74 + x75 + x78 + x130 + x131 + x132 + x134 + x135 ++ x137 + x141 + x143 + x147 + x206 + x209 + x210 + x220 + x232 + x242 ++ x245 + x247 + x248 + x276 + x279 + x280 + x325 + x331 + x332 + x333 ++ x334 + x335 + x336 + x361 + x362 + x363 + x364 + x366 + x405 + x409 ++ x410 + x413 + x414 + x423 + x424 + x425 + x480 + x483 + x484 + x485 ++ x486 + x488 + x489 + x490 <= 1 + +x1 + x29 + x51 + x54 + x57 + x61 + x71 + x72 + x73 + x74 ++ x75 + x108 + x109 + x130 + x131 + x132 + x134 + x135 + x147 + x209 ++ x210 + x220 + x232 + x244 + x247 + x248 + x266 + x276 + x278 + x279 ++ x280 + x325 + x331 + x332 + x333 + x334 + x335 + x336 + x361 + x362 ++ x363 + x366 + x405 + x409 + x413 + x414 + x424 + x425 + x480 + x485 ++ x486 + x489 + x491 <= 1 + +x24 + x40 + x42 + x51 + x61 + x71 + x72 + x73 + x74 + x75 ++ x108 + x130 + x131 + x132 + x134 + x209 + x210 + x232 + x244 + x245 ++ x247 + x248 + x266 + x278 + x279 + x325 + x331 + x332 + x333 + x334 ++ x335 + x336 + x361 + x414 + x480 + x485 <= 1 + +x36 + x96 + x101 + x110 + x130 + x133 + x134 + x135 + x139 + x147 ++ x152 + x154 + x155 + x156 + x235 + x261 + x264 + x284 + x286 + x329 ++ x363 + x364 + x365 + x405 + x426 + x468 + x469 + x471 + x472 + x473 ++ x478 + x494 <= 1 + +x31 + x36 + x82 + x101 + x110 + x130 + x133 + x134 + x135 + x139 ++ x147 + x152 + x153 + x154 + x155 + x156 + x181 + x188 + x235 + x244 ++ x245 + x261 + x264 + x270 + x277 + x284 + x286 + x319 + x324 + x327 ++ x329 + x348 + x363 + x364 + x365 + x468 + x469 + x471 + x472 + x473 ++ x474 + x478 + x493 + x494 <= 1 + +x19 + x20 + x23 + x46 + x77 + x81 + x96 + x101 + x109 + x110 ++ x111 + x130 + x131 + x132 + x133 + x134 + x135 + x142 + x143 + x144 ++ x146 + x147 + x153 + x167 + x168 + x170 + x181 + x188 + x192 + x196 ++ x201 + x218 + x231 + x245 + x246 + x247 + x248 + x253 + x282 + x283 ++ x286 + x288 + x295 + x306 + x307 + x324 + x326 + x338 + x343 + x344 ++ x345 + x347 + x348 + x361 + x362 + x363 + x364 + x365 + x366 + x406 ++ x416 + x423 + x427 + x471 + x473 <= 1 + +x19 + x23 + x46 + x51 + x72 + x73 + x74 + x77 + x78 + x81 ++ x96 + x101 + x108 + x109 + x110 + x111 + x130 + x131 + x132 + x133 ++ x134 + x135 + x141 + x142 + x143 + x144 + x146 + x147 + x167 + x168 ++ x170 + x177 + x188 + x229 + x230 + x231 + x245 + x246 + x247 + x248 ++ x276 + x279 + x281 + x282 + x283 + x284 + x288 + x289 + x293 + x295 ++ x296 + x297 + x298 + x306 + x307 + x310 + x326 + x343 + x344 + x345 ++ x347 + x361 + x362 + x363 + x364 + x365 + x366 + x404 + x406 + x416 ++ x417 + x422 + x423 + x424 + x427 + x452 + x455 + x469 + x471 + x473 + <= 1 + +x19 + x20 + x21 + x22 + x27 + x57 + x71 + x72 + x73 + x74 ++ x75 + x76 + x78 + x81 + x95 + x99 + x101 + x109 + x110 + x111 ++ x112 + x113 + x130 + x131 + x132 + x133 + x134 + x135 + x137 + x138 ++ x139 + x140 + x141 + x142 + x143 + x144 + x146 + x168 + x170 + x177 ++ x190 + x228 + x229 + x230 + x231 + x232 + x233 + x244 + x245 + x246 ++ x247 + x248 + x260 + x276 + x277 + x278 + x279 + x280 + x281 + x282 ++ x283 + x284 + x293 + x294 + x295 + x296 + x297 + x298 + x302 + x306 ++ x321 + x331 + x332 + x343 + x344 + x345 + x346 + x347 + x361 + x362 ++ x363 + x364 + x365 + x366 + x386 + x406 + x408 + x412 + x415 + x417 ++ x418 + x422 + x424 + x427 + x452 + x453 + x454 + x455 + x457 + x469 ++ x482 <= 1 + +x17 + x21 + x22 + x27 + x41 + x42 + x52 + x54 + x72 + x73 ++ x74 + x75 + x81 + x95 + x99 + x101 + x109 + x110 + x111 + x112 ++ x113 + x130 + x131 + x132 + x134 + x135 + x138 + x139 + x140 + x142 ++ x143 + x145 + x146 + x147 + x170 + x190 + x207 + x217 + x220 + x228 ++ x229 + x230 + x231 + x233 + x244 + x245 + x247 + x248 + x259 + x260 ++ x277 + x279 + x280 + x284 + x293 + x296 + x297 + x302 + x306 + x322 ++ x326 + x331 + x343 + x346 + x347 + x361 + x362 + x363 + x364 + x365 ++ x366 + x386 + x404 + x408 + x412 + x418 + x419 + x422 + x424 + x425 ++ x426 + x427 + x452 + x453 + x454 + x455 + x456 + x457 + x475 + x481 ++ x482 + x483 + x484 + x490 <= 1 + +x21 + x24 + x26 + x27 + x28 + x39 + x41 + x42 + x50 + x52 ++ x53 + x54 + x55 + x56 + x58 + x59 + x72 + x73 + x74 + x75 ++ x99 + x101 + x108 + x109 + x110 + x111 + x112 + x113 + x130 + x131 ++ x132 + x133 + x134 + x135 + x138 + x139 + x140 + x141 + x142 + x143 ++ x145 + x146 + x147 + x171 + x205 + x209 + x217 + x219 + x220 + x228 ++ x229 + x230 + x231 + x233 + x243 + x244 + x245 + x246 + x247 + x248 ++ x259 + x266 + x276 + x279 + x280 + x297 + x302 + x325 + x329 + x333 ++ x334 + x335 + x336 + x361 + x362 + x363 + x364 + x365 + x366 + x386 ++ x404 + x408 + x409 + x410 + x412 + x413 + x414 + x422 + x423 + x424 ++ x425 + x426 + x427 + x452 + x453 + x454 + x456 + x457 + x475 + x480 ++ x481 + x482 + x483 + x484 + x487 + x490 <= 1 + +x0 + x1 + x2 + x3 + x24 + x25 + x26 + x27 + x28 + x29 ++ x37 + x40 + x41 + x42 + x50 + x51 + x52 + x53 + x54 + x55 ++ x56 + x58 + x59 + x71 + x72 + x73 + x74 + x75 + x78 + x79 ++ x95 + x97 + x108 + x109 + x110 + x112 + x113 + x130 + x131 + x132 ++ x133 + x134 + x135 + x137 + x138 + x140 + x141 + x142 + x143 + x145 ++ x146 + x147 + x169 + x171 + x188 + x205 + x206 + x207 + x208 + x209 ++ x217 + x218 + x219 + x220 + x228 + x229 + x243 + x244 + x245 + x246 ++ x247 + x248 + x259 + x260 + x262 + x266 + x276 + x277 + x279 + x280 ++ x291 + x294 + x302 + x305 + x306 + x320 + x324 + x332 + x333 + x334 ++ x335 + x336 + x361 + x362 + x363 + x364 + x365 + x366 + x394 + x405 ++ x408 + x409 + x410 + x411 + x413 + x414 + x422 + x423 + x424 + x425 ++ x426 + x427 + x430 + x456 + x457 + x475 + x478 + x480 + x481 + x482 ++ x483 + x484 + x485 + x487 + x488 + x489 + x490 <= 1 + +x1 + x4 + x24 + x26 + x28 + x29 + x37 + x40 + x41 + x42 ++ x50 + x51 + x54 + x56 + x57 + x58 + x59 + x71 + x72 + x73 ++ x74 + x75 + x108 + x109 + x112 + x113 + x130 + x131 + x132 + x134 ++ x142 + x145 + x169 + x188 + x205 + x206 + x207 + x208 + x209 + x210 ++ x220 + x228 + x229 + x230 + x231 + x232 + x242 + x243 + x244 + x245 ++ x246 + x247 + x248 + x266 + x275 + x276 + x278 + x279 + x280 + x291 ++ x294 + x300 + x306 + x308 + x323 + x325 + x326 + x327 + x332 + x333 ++ x334 + x335 + x336 + x361 + x362 + x366 + x405 + x409 + x414 + x423 ++ x425 + x426 + x427 + x435 + x480 + x482 + x483 + x484 + x485 + x486 ++ x488 + x490 + x491 <= 1 + +x24 + x40 + x42 + x50 + x58 + x61 + x72 + x73 + x74 + x75 ++ x108 + x130 + x131 + x132 + x134 + x135 + x142 + x188 + x208 + x210 ++ x220 + x228 + x232 + x244 + x245 + x246 + x247 + x248 + x266 + x275 ++ x278 + x279 + x280 + x325 + x331 + x333 + x334 + x335 + x336 + x355 ++ x361 + x366 + x390 + x405 + x408 + x414 + x480 + x485 + x491 <= 1 + +x36 + x82 + x96 + x101 + x130 + x133 + x134 + x135 + x139 + x147 ++ x152 + x154 + x156 + x167 + x261 + x277 + x315 + x329 + x361 + x362 ++ x363 + x364 + x365 + x426 + x468 + x469 + x471 + x472 + x473 + x493 + <= 1 + +x36 + x77 + x82 + x96 + x100 + x110 + x130 + x132 + x133 + x134 ++ x135 + x139 + x144 + x147 + x152 + x154 + x155 + x156 + x164 + x165 ++ x167 + x172 + x181 + x188 + x189 + x201 + x234 + x235 + x245 + x253 ++ x254 + x257 + x261 + x270 + x277 + x309 + x311 + x313 + x314 + x315 ++ x319 + x324 + x327 + x329 + x344 + x348 + x361 + x362 + x363 + x364 ++ x365 + x422 + x468 + x469 + x471 + x472 + x473 + x474 + x478 + x493 + <= 1 + +x9 + x23 + x46 + x77 + x80 + x82 + x96 + x100 + x101 + x110 ++ x130 + x131 + x132 + x133 + x134 + x135 + x139 + x144 + x146 + x147 ++ x152 + x153 + x172 + x181 + x187 + x188 + x189 + x192 + x196 + x201 ++ x204 + x218 + x231 + x235 + x245 + x248 + x249 + x250 + x253 + x257 ++ x259 + x261 + x270 + x273 + x282 + x285 + x286 + x288 + x306 + x307 ++ x313 + x314 + x324 + x327 + x329 + x344 + x345 + x347 + x348 + x361 ++ x362 + x363 + x364 + x365 + x406 + x416 + x422 + x469 + x471 + x472 ++ x473 + x478 <= 1 + +x74 + x96 + x112 + x113 + x123 + x130 + x131 + x132 + x134 + x135 ++ x182 + x185 + x190 + x192 + x228 + x230 + x231 + x233 + x244 + x245 ++ x247 + x248 + x257 + x259 + x260 + x274 + x276 + x277 + x293 + x294 ++ x302 + x317 + x318 + x321 + x322 + x327 + x361 + x362 + x363 + x364 ++ x365 + x406 + x422 + x424 + x427 + x482 <= 1 + +x17 + x27 + x40 + x41 + x57 + x72 + x74 + x75 + x76 + x78 ++ x96 + x97 + x101 + x106 + x109 + x110 + x111 + x112 + x113 + x130 ++ x131 + x132 + x133 + x134 + x135 + x137 + x138 + x139 + x140 + x141 ++ x142 + x143 + x144 + x145 + x146 + x147 + x168 + x185 + x187 + x190 ++ x228 + x229 + x230 + x231 + x233 + x244 + x245 + x246 + x247 + x248 ++ x257 + x259 + x260 + x262 + x274 + x276 + x277 + x278 + x279 + x280 ++ x288 + x293 + x294 + x295 + x296 + x297 + x299 + x302 + x304 + x306 ++ x317 + x318 + x320 + x321 + x322 + x327 + x331 + x332 + x333 + x343 ++ x344 + x346 + x361 + x362 + x363 + x365 + x366 + x404 + x405 + x406 ++ x407 + x408 + x422 + x423 + x424 + x425 + x427 + x454 + x455 + x469 ++ x480 + x482 <= 1 + +x17 + x25 + x26 + x27 + x28 + x41 + x50 + x57 + x59 + x60 ++ x72 + x73 + x74 + x75 + x81 + x95 + x97 + x99 + x101 + x108 ++ x109 + x110 + x111 + x112 + x113 + x130 + x131 + x132 + x133 + x134 ++ x135 + x138 + x139 + x140 + x141 + x142 + x143 + x144 + x145 + x146 ++ x147 + x185 + x216 + x217 + x219 + x220 + x228 + x229 + x230 + x231 ++ x233 + x244 + x245 + x247 + x248 + x259 + x260 + x276 + x277 + x279 ++ x280 + x288 + x295 + x297 + x299 + x302 + x304 + x306 + x318 + x321 ++ x322 + x324 + x326 + x327 + x328 + x331 + x332 + x333 + x336 + x343 ++ x344 + x346 + x347 + x361 + x362 + x363 + x364 + x365 + x366 + x394 ++ x403 + x404 + x405 + x407 + x408 + x412 + x419 + x422 + x423 + x424 ++ x425 + x427 + x453 + x455 + x456 + x478 + x480 + x481 + x482 + x483 ++ x484 + x485 <= 1 + +x0 + x2 + x3 + x24 + x25 + x26 + x27 + x28 + x29 + x37 ++ x39 + x40 + x41 + x42 + x50 + x51 + x52 + x53 + x54 + x55 ++ x56 + x58 + x59 + x60 + x72 + x73 + x74 + x75 + x79 + x95 ++ x97 + x99 + x108 + x109 + x110 + x111 + x112 + x113 + x130 + x131 ++ x132 + x133 + x134 + x135 + x137 + x138 + x139 + x140 + x141 + x142 ++ x143 + x144 + x145 + x146 + x147 + x169 + x171 + x203 + x216 + x217 ++ x218 + x219 + x220 + x228 + x229 + x230 + x233 + x243 + x244 + x245 ++ x246 + x247 + x248 + x259 + x260 + x261 + x262 + x266 + x276 + x277 ++ x279 + x280 + x291 + x302 + x306 + x320 + x322 + x324 + x325 + x326 ++ x332 + x333 + x334 + x336 + x346 + x361 + x362 + x363 + x364 + x365 ++ x366 + x391 + x394 + x403 + x404 + x405 + x407 + x408 + x410 + x412 ++ x422 + x423 + x424 + x425 + x426 + x427 + x452 + x453 + x454 + x456 ++ x457 + x478 + x480 + x481 + x482 + x483 + x484 + x485 + x487 + x489 + <= 1 + +x0 + x1 + x2 + x3 + x4 + x24 + x25 + x26 + x27 + x28 ++ x29 + x37 + x40 + x41 + x42 + x50 + x51 + x52 + x55 + x60 ++ x71 + x72 + x73 + x74 + x75 + x78 + x82 + x95 + x97 + x108 ++ x109 + x110 + x111 + x112 + x113 + x130 + x131 + x132 + x133 + x134 ++ x135 + x137 + x138 + x139 + x140 + x141 + x142 + x143 + x144 + x145 ++ x147 + x167 + x169 + x185 + x205 + x206 + x207 + x218 + x219 + x220 ++ x228 + x229 + x230 + x232 + x233 + x243 + x244 + x245 + x246 + x247 ++ x248 + x259 + x260 + x261 + x262 + x275 + x276 + x277 + x279 + x280 ++ x291 + x302 + x306 + x320 + x324 + x325 + x326 + x334 + x335 + x336 ++ x361 + x362 + x363 + x364 + x366 + x385 + x394 + x405 + x407 + x408 ++ x410 + x411 + x423 + x424 + x425 + x426 + x427 + x430 + x478 + x480 ++ x481 + x482 + x483 + x484 + x485 + x486 + x487 + x488 + x489 + x491 + <= 1 + +x0 + x3 + x4 + x24 + x26 + x28 + x29 + x37 + x42 + x60 ++ x72 + x73 + x74 + x75 + x76 + x95 + x108 + x111 + x112 + x130 ++ x131 + x132 + x134 + x138 + x141 + x142 + x145 + x203 + x205 + x206 ++ x207 + x208 + x210 + x229 + x230 + x232 + x242 + x243 + x244 + x245 ++ x246 + x247 + x248 + x261 + x275 + x276 + x277 + x279 + x280 + x294 ++ x300 + x306 + x308 + x320 + x324 + x325 + x326 + x334 + x336 + x361 ++ x362 + x364 + x366 + x385 + x389 + x408 + x409 + x410 + x411 + x423 ++ x425 + x427 + x430 + x432 + x442 + x480 + x481 + x482 + x484 + x485 ++ x486 + x487 + x488 + x490 + x491 <= 1 + +x24 + x72 + x73 + x74 + x75 + x95 + x111 + x130 + x132 + x134 ++ x188 + x228 + x229 + x230 + x232 + x242 + x243 + x246 + x247 + x248 ++ x275 + x279 + x280 + x306 + x308 + x325 + x333 + x334 + x336 + x361 ++ x366 + x389 + x390 + x408 + x411 + x423 + x425 + x427 + x432 + x484 ++ x485 + x491 <= 1 + +x65 + x66 + x68 + x69 + x80 + x82 + x100 + x130 + x133 + x134 ++ x135 + x139 + x162 + x163 + x164 + x172 + x177 + x189 + x192 + x217 ++ x243 + x246 + x257 + x258 + x259 + x261 + x269 + x270 + x272 + x312 ++ x315 + x319 + x361 + x363 + x365 + x448 + x468 + x470 + x472 + x483 + <= 1 + +x16 + x36 + x47 + x65 + x75 + x80 + x82 + x100 + x130 + x132 ++ x133 + x134 + x135 + x139 + x147 + x161 + x162 + x163 + x164 + x165 ++ x167 + x172 + x181 + x189 + x192 + x197 + x217 + x243 + x245 + x247 ++ x251 + x254 + x257 + x259 + x261 + x270 + x272 + x288 + x309 + x311 ++ x312 + x313 + x314 + x315 + x317 + x318 + x319 + x324 + x327 + x329 ++ x348 + x361 + x362 + x363 + x365 + x422 + x448 + x468 + x470 + x471 ++ x472 + x478 + x483 + x493 <= 1 + +x16 + x44 + x45 + x46 + x47 + x75 + x77 + x80 + x96 + x99 ++ x100 + x106 + x132 + x133 + x134 + x135 + x138 + x139 + x143 + x144 ++ x146 + x147 + x163 + x172 + x181 + x186 + x187 + x189 + x192 + x196 ++ x197 + x204 + x217 + x218 + x247 + x249 + x250 + x251 + x253 + x254 ++ x257 + x259 + x261 + x270 + x272 + x273 + x274 + x277 + x282 + x285 ++ x288 + x294 + x301 + x306 + x311 + x312 + x313 + x314 + x317 + x318 ++ x319 + x321 + x322 + x327 + x348 + x361 + x362 + x363 + x364 + x365 ++ x393 + x406 + x422 + x427 + x448 + x468 + x470 + x471 + x472 + x481 ++ x483 + x493 <= 1 + +x16 + x41 + x74 + x75 + x92 + x96 + x99 + x100 + x102 + x106 ++ x109 + x111 + x112 + x113 + x122 + x123 + x133 + x135 + x136 + x137 ++ x138 + x139 + x142 + x143 + x144 + x146 + x166 + x181 + x182 + x186 ++ x187 + x189 + x190 + x192 + x208 + x230 + x231 + x233 + x247 + x248 ++ x250 + x257 + x274 + x276 + x277 + x287 + x288 + x294 + x295 + x302 ++ x317 + x318 + x320 + x321 + x322 + x327 + x361 + x362 + x363 + x364 ++ x365 + x406 + x422 + x424 + x427 + x448 + x471 + x481 + x482 + x486 + <= 1 + +x16 + x18 + x25 + x41 + x72 + x74 + x75 + x76 + x96 + x97 ++ x98 + x99 + x101 + x106 + x109 + x110 + x111 + x112 + x113 + x122 ++ x123 + x130 + x131 + x132 + x134 + x135 + x136 + x137 + x138 + x139 ++ x140 + x141 + x142 + x143 + x144 + x146 + x168 + x187 + x216 + x228 ++ x229 + x230 + x231 + x233 + x243 + x244 + x245 + x246 + x247 + x248 ++ x256 + x257 + x260 + x262 + x265 + x276 + x277 + x279 + x280 + x288 ++ x293 + x294 + x295 + x296 + x299 + x302 + x304 + x317 + x318 + x320 ++ x321 + x322 + x324 + x326 + x327 + x328 + x332 + x333 + x361 + x362 ++ x365 + x366 + x403 + x404 + x406 + x407 + x408 + x422 + x423 + x424 ++ x425 + x426 + x427 + x471 + x480 + x481 + x482 + x483 <= 1 + +x13 + x17 + x18 + x24 + x25 + x26 + x29 + x39 + x40 + x50 ++ x51 + x53 + x60 + x72 + x73 + x74 + x75 + x76 + x79 + x96 ++ x97 + x99 + x100 + x106 + x109 + x110 + x111 + x112 + x113 + x130 ++ x131 + x132 + x133 + x134 + x135 + x136 + x137 + x138 + x139 + x140 ++ x141 + x142 + x143 + x144 + x145 + x147 + x177 + x178 + x203 + x216 ++ x217 + x218 + x219 + x220 + x228 + x229 + x230 + x233 + x243 + x244 ++ x245 + x246 + x247 + x248 + x255 + x256 + x260 + x262 + x265 + x275 ++ x276 + x277 + x279 + x280 + x295 + x302 + x306 + x318 + x320 + x321 ++ x322 + x324 + x326 + x328 + x331 + x333 + x334 + x346 + x356 + x361 ++ x362 + x363 + x365 + x366 + x394 + x403 + x404 + x405 + x406 + x408 ++ x422 + x423 + x424 + x425 + x426 + x427 + x453 + x457 + x478 + x480 ++ x481 + x482 + x483 + x484 <= 1 + +x0 + x2 + x4 + x17 + x24 + x25 + x26 + x27 + x28 + x29 ++ x37 + x39 + x40 + x41 + x42 + x50 + x55 + x72 + x73 + x74 ++ x75 + x95 + x97 + x108 + x110 + x111 + x112 + x113 + x131 + x132 ++ x133 + x134 + x135 + x137 + x138 + x139 + x140 + x141 + x142 + x144 ++ x145 + x169 + x171 + x203 + x216 + x218 + x219 + x229 + x230 + x244 ++ x247 + x248 + x255 + x256 + x260 + x276 + x277 + x279 + x280 + x291 ++ x306 + x320 + x321 + x324 + x325 + x326 + x335 + x336 + x361 + x362 ++ x366 + x394 + x403 + x405 + x406 + x407 + x408 + x412 + x422 + x423 ++ x425 + x478 + x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x2 + x4 + x14 + x25 + x26 + x29 + x37 + x38 + x39 + x40 ++ x41 + x42 + x47 + x52 + x53 + x55 + x67 + x72 + x73 + x74 ++ x75 + x76 + x82 + x97 + x108 + x110 + x112 + x113 + x130 + x131 ++ x132 + x134 + x135 + x137 + x138 + x139 + x140 + x141 + x142 + x143 ++ x144 + x145 + x147 + x167 + x169 + x171 + x185 + x201 + x202 + x203 ++ x205 + x216 + x218 + x219 + x228 + x232 + x233 + x243 + x244 + x245 ++ x246 + x247 + x248 + x255 + x260 + x276 + x279 + x291 + x306 + x324 ++ x325 + x326 + x334 + x335 + x355 + x361 + x362 + x364 + x366 + x385 ++ x394 + x405 + x407 + x408 + x411 + x422 + x423 + x425 + x427 + x430 ++ x460 + x478 + x480 + x481 + x482 + x484 + x485 + x487 <= 1 + +x5 + x14 + x28 + x29 + x37 + x67 + x72 + x73 + x74 + x75 ++ x76 + x97 + x108 + x130 + x131 + x132 + x134 + x139 + x140 + x141 ++ x144 + x145 + x147 + x171 + x203 + x208 + x224 + x232 + x239 + x242 ++ x243 + x244 + x245 + x247 + x248 + x275 + x276 + x277 + x279 + x280 ++ x300 + x302 + x308 + x324 + x325 + x326 + x334 + x361 + x362 + x364 ++ x366 + x385 + x405 + x411 + x422 + x425 + x427 + x428 + x430 + x431 ++ x432 + x439 + x440 + x442 + x444 + x480 + x484 + x485 + x486 + x488 ++ x491 <= 1 + +x5 + x37 + x72 + x73 + x74 + x75 + x76 + x97 + x108 + x130 ++ x131 + x132 + x134 + x140 + x141 + x144 + x145 + x201 + x203 + x224 ++ x239 + x243 + x244 + x245 + x247 + x248 + x262 + x275 + x276 + x279 ++ x280 + x308 + x325 + x326 + x364 + x385 + x422 + x425 + x428 + x431 ++ x432 + x440 + x441 + x444 + x461 + x462 + x484 + x485 <= 1 + +x30 + x65 + x66 + x68 + x69 + x71 + x80 + x108 + x130 + x132 ++ x133 + x134 + x135 + x149 + x155 + x161 + x162 + x163 + x164 + x181 ++ x243 + x247 + x251 + x257 + x258 + x259 + x261 + x269 + x270 + x272 ++ x278 + x301 + x304 + x308 + x312 + x315 + x316 + x319 + x340 + x361 ++ x363 + x364 + x365 + x472 + x483 + x493 <= 1 + +x46 + x47 + x65 + x66 + x67 + x68 + x69 + x71 + x80 + x100 ++ x108 + x111 + x128 + x130 + x133 + x134 + x135 + x139 + x143 + x161 ++ x162 + x163 + x164 + x165 + x166 + x181 + x191 + x194 + x197 + x200 ++ x217 + x243 + x244 + x245 + x247 + x249 + x251 + x254 + x257 + x258 ++ x259 + x261 + x269 + x272 + x273 + x274 + x288 + x299 + x301 + x304 ++ x309 + x311 + x312 + x313 + x314 + x315 + x316 + x319 + x324 + x327 ++ x361 + x362 + x363 + x364 + x365 + x448 + x468 + x470 + x472 + x478 ++ x483 + x493 <= 1 + +x15 + x44 + x45 + x46 + x47 + x75 + x80 + x96 + x100 + x106 ++ x132 + x133 + x134 + x135 + x136 + x139 + x143 + x147 + x161 + x164 ++ x166 + x181 + x187 + x189 + x191 + x194 + x196 + x197 + x204 + x214 ++ x232 + x233 + x243 + x246 + x247 + x249 + x250 + x251 + x252 + x254 ++ x257 + x258 + x259 + x261 + x269 + x271 + x273 + x274 + x275 + x278 ++ x279 + x288 + x299 + x301 + x304 + x306 + x307 + x311 + x312 + x314 ++ x316 + x317 + x319 + x321 + x327 + x348 + x361 + x362 + x363 + x364 ++ x365 + x366 + x393 + x422 + x446 + x448 + x468 + x470 + x481 + x483 ++ x493 <= 1 + +x44 + x46 + x47 + x80 + x92 + x96 + x106 + x113 + x122 + x132 ++ x133 + x135 + x136 + x138 + x139 + x143 + x144 + x146 + x161 + x166 ++ x186 + x187 + x189 + x190 + x191 + x194 + x204 + x231 + x233 + x247 ++ x248 + x249 + x250 + x252 + x271 + x273 + x274 + x288 + x302 + x307 ++ x312 + x314 + x317 + x318 + x321 + x362 + x363 + x365 + x422 + x424 ++ x448 + x470 + x481 <= 1 + +x16 + x18 + x109 + x111 + x112 + x113 + x131 + x132 + x137 + x139 ++ x140 + x143 + x144 + x146 + x243 + x244 + x246 + x248 + x260 + x262 ++ x277 + x296 + x302 + x317 + x320 + x322 + x324 + x403 + x406 + x422 ++ x426 + x480 <= 1 + +x13 + x16 + x17 + x18 + x25 + x37 + x40 + x53 + x72 + x73 ++ x74 + x75 + x76 + x98 + x99 + x100 + x106 + x109 + x111 + x112 ++ x113 + x131 + x132 + x134 + x136 + x137 + x138 + x139 + x140 + x141 ++ x142 + x143 + x144 + x145 + x177 + x178 + x185 + x216 + x217 + x218 ++ x219 + x233 + x243 + x244 + x245 + x246 + x247 + x248 + x255 + x256 ++ x257 + x260 + x262 + x265 + x267 + x275 + x276 + x277 + x279 + x304 ++ x306 + x310 + x318 + x322 + x324 + x327 + x328 + x356 + x361 + x362 ++ x365 + x366 + x394 + x403 + x404 + x405 + x406 + x408 + x422 + x423 ++ x425 + x426 + x457 + x480 + x481 + x484 + x496 <= 1 + +x13 + x14 + x16 + x17 + x18 + x25 + x26 + x29 + x37 + x39 ++ x40 + x53 + x55 + x72 + x73 + x74 + x75 + x76 + x97 + x100 ++ x108 + x112 + x113 + x131 + x132 + x134 + x136 + x137 + x138 + x139 ++ x140 + x141 + x142 + x144 + x145 + x171 + x185 + x201 + x216 + x218 ++ x243 + x244 + x247 + x248 + x276 + x279 + x280 + x306 + x328 + x335 ++ x355 + x361 + x362 + x364 + x366 + x403 + x407 + x408 + x412 + x422 ++ x423 + x425 + x478 + x480 + x481 + x484 <= 1 + +x13 + x14 + x26 + x37 + x38 + x39 + x40 + x42 + x53 + x55 ++ x72 + x73 + x74 + x75 + x76 + x83 + x98 + x105 + x108 + x112 ++ x113 + x130 + x131 + x132 + x135 + x136 + x137 + x138 + x140 + x141 ++ x144 + x145 + x169 + x171 + x185 + x201 + x202 + x203 + x205 + x216 ++ x219 + x232 + x243 + x244 + x245 + x246 + x247 + x248 + x276 + x279 ++ x303 + x305 + x335 + x354 + x355 + x356 + x361 + x362 + x363 + x364 ++ x366 + x387 + x403 + x407 + x408 + x422 + x423 + x424 + x425 + x427 ++ x459 + x460 + x475 + x478 + x480 + x481 + x484 + x485 + x487 <= 1 + +x6 + x14 + x28 + x29 + x39 + x72 + x73 + x74 + x75 + x76 ++ x97 + x98 + x108 + x130 + x131 + x132 + x134 + x136 + x137 + x138 ++ x139 + x140 + x141 + x145 + x201 + x202 + x208 + x224 + x239 + x242 ++ x243 + x244 + x245 + x247 + x248 + x258 + x275 + x276 + x277 + x279 ++ x280 + x302 + x303 + x305 + x308 + x325 + x358 + x361 + x364 + x365 ++ x366 + x371 + x385 + x407 + x411 + x422 + x423 + x424 + x425 + x426 ++ x427 + x428 + x431 + x439 + x440 + x441 + x442 + x443 + x458 + x462 ++ x485 <= 1 + +x28 + x29 + x37 + x39 + x71 + x72 + x73 + x74 + x75 + x76 ++ x94 + x97 + x98 + x131 + x132 + x138 + x140 + x141 + x145 + x201 ++ x202 + x224 + x239 + x242 + x243 + x244 + x245 + x275 + x276 + x279 ++ x280 + x302 + x305 + x308 + x325 + x351 + x358 + x364 + x371 + x385 ++ x422 + x428 + x431 + x432 + x439 + x440 + x441 + x443 + x444 + x458 ++ x461 + x462 + x463 + x473 + x485 <= 1 + +x48 + x65 + x66 + x68 + x69 + x71 + x80 + x130 + x132 + x135 ++ x139 + x149 + x155 + x162 + x173 + x178 + x181 + x191 + x197 + x198 ++ x225 + x243 + x244 + x247 + x257 + x258 + x259 + x261 + x263 + x265 ++ x270 + x271 + x272 + x278 + x301 + x304 + x308 + x309 + x315 + x319 ++ x340 + x349 + x350 + x351 + x352 + x361 + x363 + x365 + x438 + x446 ++ x448 + x449 + x483 + x493 <= 1 + +x15 + x44 + x46 + x48 + x49 + x66 + x68 + x69 + x75 + x100 ++ x111 + x128 + x135 + x139 + x143 + x149 + x150 + x154 + x161 + x162 ++ x163 + x165 + x166 + x173 + x178 + x187 + x191 + x194 + x197 + x198 ++ x204 + x213 + x234 + x243 + x244 + x245 + x247 + x257 + x259 + x261 ++ x265 + x269 + x271 + x272 + x273 + x278 + x285 + x288 + x299 + x301 ++ x304 + x308 + x309 + x312 + x314 + x315 + x316 + x319 + x327 + x340 ++ x349 + x350 + x351 + x352 + x361 + x363 + x365 + x446 + x448 + x449 ++ x468 + x470 + x472 + x493 <= 1 + +x15 + x44 + x45 + x46 + x47 + x49 + x68 + x70 + x80 + x100 ++ x135 + x136 + x139 + x143 + x176 + x178 + x181 + x186 + x187 + x189 ++ x191 + x193 + x194 + x196 + x197 + x204 + x214 + x233 + x234 + x243 ++ x244 + x246 + x247 + x248 + x252 + x257 + x258 + x261 + x269 + x271 ++ x272 + x273 + x275 + x278 + x279 + x285 + x299 + x301 + x304 + x307 ++ x309 + x311 + x312 + x315 + x316 + x317 + x324 + x327 + x328 + x361 ++ x363 + x364 + x365 + x366 + x382 + x420 + x421 + x445 + x446 + x468 ++ x470 + x497 <= 1 + +x40 + x44 + x45 + x49 + x52 + x62 + x74 + x89 + x103 + x126 ++ x135 + x136 + x137 + x139 + x143 + x176 + x178 + x180 + x181 + x186 ++ x191 + x196 + x204 + x234 + x236 + x243 + x244 + x246 + x247 + x248 ++ x257 + x267 + x269 + x271 + x273 + x274 + x275 + x278 + x299 + x301 ++ x304 + x305 + x309 + x310 + x311 + x316 + x324 + x326 + x328 + x337 ++ x365 + x420 + x421 + x426 <= 1 + +x13 + x44 + x45 + x49 + x52 + x62 + x74 + x75 + x98 + x99 ++ x100 + x134 + x136 + x137 + x138 + x139 + x140 + x141 + x144 + x176 ++ x178 + x181 + x186 + x216 + x221 + x243 + x244 + x246 + x247 + x248 ++ x260 + x262 + x267 + x269 + x273 + x274 + x275 + x299 + x301 + x304 ++ x310 + x311 + x316 + x326 + x328 + x337 + x340 + x392 + x420 + x426 ++ x436 + x450 <= 1 + +x18 + x25 + x45 + x72 + x73 + x74 + x75 + x76 + x92 + x98 ++ x99 + x100 + x111 + x113 + x118 + x120 + x131 + x132 + x134 + x136 ++ x137 + x138 + x139 + x140 + x141 + x144 + x177 + x178 + x181 + x186 ++ x199 + x200 + x201 + x202 + x204 + x216 + x221 + x243 + x244 + x245 ++ x246 + x247 + x248 + x257 + x260 + x262 + x267 + x275 + x276 + x277 ++ x278 + x279 + x299 + x300 + x301 + x303 + x304 + x307 + x310 + x316 ++ x318 + x324 + x326 + x328 + x337 + x340 + x341 + x354 + x357 + x362 ++ x365 + x366 + x388 + x399 + x403 + x406 + x426 + x433 + x434 + x436 ++ x447 + x450 + x477 + x481 + x484 + x485 + x496 <= 1 + +x10 + x11 + x35 + x39 + x71 + x72 + x74 + x76 + x98 + x99 ++ x100 + x102 + x103 + x105 + x107 + x120 + x136 + x137 + x138 + x139 ++ x140 + x141 + x181 + x199 + x200 + x201 + x202 + x221 + x243 + x244 ++ x245 + x246 + x247 + x248 + x257 + x262 + x275 + x276 + x279 + x299 ++ x300 + x303 + x304 + x305 + x307 + x308 + x309 + x310 + x324 + x325 ++ x327 + x328 + x340 + x341 + x357 + x362 + x363 + x364 + x366 + x376 ++ x388 + x398 + x400 + x403 + x406 + x407 + x423 + x424 + x425 + x426 ++ x429 + x433 + x434 + x435 + x436 + x450 + x473 + x479 + x481 + x485 + <= 1 + +x13 + x14 + x37 + x38 + x39 + x41 + x42 + x55 + x72 + x73 ++ x74 + x76 + x98 + x105 + x108 + x112 + x113 + x130 + x131 + x132 ++ x136 + x137 + x138 + x140 + x141 + x144 + x145 + x179 + x200 + x201 ++ x202 + x203 + x212 + x219 + x238 + x239 + x240 + x241 + x243 + x244 ++ x245 + x246 + x247 + x248 + x258 + x262 + x275 + x276 + x277 + x278 ++ x279 + x280 + x299 + x303 + x305 + x308 + x309 + x317 + x325 + x327 ++ x340 + x354 + x355 + x356 + x358 + x362 + x363 + x364 + x365 + x366 ++ x374 + x398 + x403 + x407 + x422 + x423 + x424 + x425 + x426 + x427 ++ x435 + x437 + x441 + x458 + x459 + x460 + x475 + x484 + x485 <= 1 + +x14 + x37 + x38 + x39 + x71 + x72 + x73 + x74 + x75 + x76 ++ x92 + x94 + x96 + x97 + x98 + x102 + x136 + x137 + x138 + x139 ++ x140 + x141 + x144 + x145 + x178 + x200 + x201 + x202 + x203 + x212 ++ x237 + x238 + x239 + x240 + x242 + x243 + x244 + x245 + x246 + x247 ++ x248 + x258 + x275 + x276 + x277 + x279 + x280 + x287 + x290 + x300 ++ x303 + x305 + x308 + x309 + x325 + x345 + x354 + x355 + x356 + x358 ++ x361 + x362 + x364 + x365 + x366 + x374 + x376 + x384 + x385 + x387 ++ x403 + x407 + x423 + x424 + x425 + x426 + x427 + x428 + x429 + x433 ++ x439 + x440 + x441 + x442 + x443 + x458 + x459 + x460 + x461 + x462 ++ x473 + x475 <= 1 + +x8 + x38 + x39 + x71 + x72 + x73 + x74 + x75 + x76 + x94 ++ x96 + x97 + x98 + x102 + x137 + x138 + x139 + x140 + x141 + x182 ++ x191 + x199 + x201 + x202 + x203 + x238 + x239 + x242 + x243 + x245 ++ x246 + x247 + x248 + x275 + x276 + x279 + x287 + x300 + x303 + x305 ++ x308 + x309 + x310 + x325 + x351 + x358 + x362 + x364 + x366 + x385 ++ x387 + x404 + x424 + x427 + x429 + x431 + x439 + x442 + x443 + x444 ++ x458 + x460 + x461 + x462 + x463 + x475 + x490 <= 1 + +x15 + x48 + x53 + x65 + x66 + x68 + x69 + x70 + x71 + x109 ++ x130 + x132 + x135 + x148 + x149 + x165 + x197 + x198 + x204 + x223 ++ x225 + x247 + x253 + x257 + x258 + x259 + x261 + x263 + x264 + x265 ++ x267 + x270 + x272 + x281 + x285 + x301 + x304 + x308 + x309 + x361 ++ x363 + x365 + x368 + x438 + x445 + x446 + x449 + x470 + x492 + x493 ++ x494 + x497 <= 1 + +x13 + x15 + x44 + x47 + x48 + x66 + x68 + x69 + x70 + x71 ++ x75 + x109 + x111 + x129 + x132 + x148 + x150 + x165 + x180 + x193 ++ x194 + x197 + x198 + x204 + x211 + x213 + x223 + x225 + x234 + x241 ++ x244 + x246 + x247 + x248 + x257 + x258 + x259 + x261 + x265 + x267 ++ x271 + x276 + x278 + x279 + x285 + x304 + x309 + x314 + x316 + x319 ++ x327 + x349 + x350 + x352 + x361 + x363 + x365 + x368 + x445 + x446 ++ x447 + x448 + x449 + x466 + x470 + x492 + x493 + x497 <= 1 + +x15 + x44 + x47 + x68 + x70 + x71 + x75 + x76 + x129 + x136 ++ x143 + x148 + x150 + x180 + x186 + x191 + x193 + x194 + x196 + x197 ++ x198 + x204 + x211 + x214 + x223 + x225 + x246 + x257 + x258 + x259 ++ x263 + x264 + x269 + x271 + x275 + x276 + x278 + x279 + x285 + x301 ++ x304 + x307 + x309 + x327 + x350 + x353 + x363 + x382 + x396 + x445 ++ x446 + x447 + x449 + x470 + x492 + x493 + x494 + x497 <= 1 + +x31 + x33 + x40 + x45 + x49 + x67 + x70 + x89 + x103 + x124 ++ x126 + x127 + x136 + x137 + x138 + x140 + x176 + x177 + x178 + x180 ++ x194 + x200 + x204 + x223 + x236 + x243 + x244 + x245 + x246 + x248 ++ x262 + x275 + x278 + x289 + x299 + x300 + x301 + x305 + x307 + x308 ++ x309 + x310 + x311 + x328 + x337 + x339 + x359 + x365 + x366 + x399 ++ x402 + x421 + x425 + x445 + x447 + x474 + x479 + x495 + x497 <= 1 + +x31 + x32 + x33 + x34 + x35 + x38 + x40 + x45 + x49 + x72 ++ x73 + x76 + x87 + x88 + x89 + x98 + x99 + x103 + x104 + x126 ++ x136 + x137 + x138 + x139 + x140 + x141 + x176 + x177 + x178 + x179 ++ x180 + x195 + x199 + x200 + x202 + x204 + x221 + x226 + x243 + x244 ++ x245 + x246 + x248 + x262 + x268 + x275 + x276 + x278 + x280 + x289 ++ x290 + x300 + x305 + x307 + x308 + x309 + x310 + x326 + x337 + x339 ++ x341 + x354 + x357 + x359 + x363 + x366 + x371 + x388 + x399 + x425 ++ x426 + x445 + x450 + x474 + x476 + x477 + x479 + x495 + x496 + x502 + <= 1 + +x25 + x31 + x32 + x34 + x35 + x38 + x45 + x71 + x73 + x74 ++ x75 + x76 + x92 + x98 + x99 + x102 + x103 + x118 + x121 + x131 ++ x133 + x134 + x136 + x137 + x138 + x139 + x140 + x141 + x146 + x176 ++ x178 + x179 + x180 + x198 + x202 + x204 + x221 + x243 + x244 + x245 ++ x246 + x247 + x248 + x262 + x275 + x276 + x277 + x278 + x279 + x280 ++ x289 + x299 + x300 + x301 + x303 + x305 + x306 + x307 + x308 + x309 ++ x310 + x313 + x324 + x326 + x328 + x337 + x339 + x340 + x341 + x354 ++ x357 + x362 + x363 + x366 + x371 + x386 + x387 + x388 + x397 + x399 ++ x400 + x401 + x423 + x425 + x426 + x436 + x447 + x450 + x476 + x477 ++ x479 + x495 + x496 <= 1 + +x11 + x34 + x35 + x38 + x42 + x71 + x72 + x74 + x76 + x89 ++ x92 + x93 + x94 + x102 + x103 + x104 + x105 + x107 + x118 + x119 ++ x120 + x131 + x136 + x137 + x138 + x139 + x140 + x141 + x178 + x179 ++ x199 + x200 + x201 + x202 + x203 + x204 + x221 + x237 + x238 + x243 ++ x244 + x245 + x246 + x247 + x248 + x258 + x262 + x275 + x276 + x280 ++ x289 + x292 + x299 + x300 + x303 + x305 + x306 + x307 + x308 + x309 ++ x310 + x313 + x327 + x328 + x340 + x341 + x357 + x363 + x366 + x376 ++ x384 + x386 + x387 + x388 + x397 + x398 + x399 + x400 + x401 + x402 ++ x403 + x423 + x424 + x425 + x426 + x434 + x435 + x436 + x437 + x447 ++ x450 + x475 + x476 + x479 + x495 <= 1 + +x7 + x10 + x11 + x37 + x38 + x39 + x42 + x71 + x72 + x73 ++ x74 + x75 + x76 + x91 + x92 + x93 + x94 + x97 + x98 + x102 ++ x105 + x107 + x119 + x131 + x133 + x136 + x137 + x138 + x139 + x140 ++ x141 + x144 + x145 + x178 + x179 + x199 + x200 + x201 + x202 + x203 ++ x212 + x221 + x223 + x237 + x238 + x239 + x240 + x241 + x242 + x243 ++ x244 + x245 + x246 + x247 + x248 + x258 + x262 + x275 + x276 + x277 ++ x278 + x280 + x289 + x299 + x300 + x303 + x305 + x308 + x309 + x310 ++ x325 + x327 + x328 + x329 + x340 + x345 + x356 + x358 + x362 + x363 ++ x364 + x365 + x366 + x374 + x376 + x384 + x387 + x388 + x398 + x403 ++ x407 + x423 + x424 + x425 + x426 + x429 + x433 + x434 + x435 + x436 ++ x437 + x447 + x459 + x461 + x473 + x475 + x479 <= 1 + +x7 + x8 + x9 + x10 + x38 + x72 + x73 + x76 + x86 + x94 ++ x98 + x102 + x105 + x107 + x114 + x117 + x131 + x133 + x136 + x137 ++ x138 + x140 + x141 + x145 + x146 + x184 + x201 + x202 + x203 + x223 ++ x237 + x238 + x239 + x240 + x241 + x243 + x245 + x246 + x247 + x248 ++ x258 + x262 + x275 + x276 + x287 + x290 + x305 + x307 + x308 + x309 ++ x310 + x325 + x327 + x328 + x329 + x330 + x364 + x366 + x375 + x376 ++ x383 + x387 + x388 + x407 + x423 + x424 + x426 + x434 + x435 + x459 ++ x475 + x476 <= 1 + +x8 + x10 + x38 + x73 + x76 + x94 + x98 + x100 + x105 + x116 ++ x117 + x136 + x137 + x138 + x140 + x141 + x146 + x182 + x199 + x201 ++ x202 + x203 + x238 + x239 + x241 + x243 + x245 + x246 + x248 + x275 ++ x276 + x287 + x303 + x305 + x308 + x310 + x328 + x364 + x366 + x383 ++ x385 + x387 + x388 + x399 + x404 + x407 + x424 + x427 + x429 + x443 ++ x444 + x463 <= 1 + +x65 + x68 + x69 + x71 + x109 + x129 + x132 + x135 + x180 + x194 ++ x198 + x204 + x223 + x225 + x243 + x244 + x246 + x247 + x258 + x259 ++ x261 + x264 + x265 + x267 + x278 + x281 + x285 + x304 + x308 + x361 ++ x365 + x438 + x449 + x467 + x470 + x492 + x493 + x494 + x497 <= 1 + +x48 + x65 + x66 + x68 + x69 + x70 + x71 + x79 + x128 + x129 ++ x135 + x136 + x137 + x150 + x180 + x193 + x194 + x196 + x198 + x204 ++ x211 + x212 + x213 + x215 + x222 + x223 + x224 + x225 + x243 + x244 ++ x247 + x248 + x257 + x259 + x263 + x264 + x267 + x268 + x278 + x279 ++ x281 + x285 + x310 + x338 + x352 + x363 + x365 + x438 + x445 + x446 ++ x449 + x464 + x466 + x467 + x470 + x492 + x494 + x497 <= 1 + +x15 + x63 + x70 + x71 + x75 + x76 + x124 + x128 + x129 + x136 ++ x137 + x148 + x151 + x160 + x176 + x179 + x180 + x193 + x194 + x196 ++ x197 + x198 + x211 + x214 + x215 + x222 + x223 + x225 + x243 + x257 ++ x259 + x263 + x264 + x271 + x278 + x301 + x307 + x309 + x353 + x362 ++ x363 + x365 + x380 + x382 + x393 + x396 + x445 + x447 + x464 + x465 ++ x466 + x467 + x492 + x494 + x497 <= 1 + +x33 + x49 + x63 + x64 + x67 + x70 + x71 + x76 + x84 + x88 ++ x89 + x124 + x127 + x133 + x136 + x138 + x140 + x141 + x157 + x158 ++ x160 + x176 + x177 + x179 + x180 + x193 + x194 + x198 + x199 + x200 ++ x204 + x215 + x222 + x223 + x224 + x226 + x227 + x236 + x243 + x246 ++ x263 + x268 + x278 + x280 + x301 + x305 + x307 + x308 + x309 + x310 ++ x326 + x337 + x339 + x341 + x342 + x362 + x363 + x379 + x388 + x392 ++ x396 + x402 + x445 + x447 + x479 + x495 + x496 + x497 + x502 <= 1 + +x33 + x35 + x38 + x40 + x63 + x64 + x67 + x71 + x72 + x76 ++ x84 + x87 + x88 + x89 + x103 + x121 + x127 + x131 + x133 + x136 ++ x137 + x138 + x139 + x140 + x141 + x142 + x159 + x176 + x177 + x179 ++ x180 + x193 + x195 + x198 + x199 + x200 + x202 + x204 + x222 + x226 ++ x227 + x237 + x240 + x243 + x244 + x245 + x246 + x262 + x268 + x275 ++ x277 + x278 + x280 + x289 + x290 + x305 + x306 + x307 + x308 + x309 ++ x310 + x326 + x337 + x339 + x341 + x342 + x362 + x363 + x366 + x367 ++ x369 + x370 + x371 + x372 + x380 + x383 + x388 + x393 + x401 + x402 ++ x426 + x474 + x476 + x477 + x483 + x495 + x496 + x502 <= 1 + +x31 + x32 + x33 + x35 + x40 + x71 + x72 + x76 + x87 + x88 ++ x89 + x93 + x99 + x103 + x104 + x121 + x126 + x131 + x133 + x134 ++ x136 + x137 + x138 + x139 + x140 + x141 + x142 + x177 + x178 + x179 ++ x202 + x204 + x221 + x243 + x244 + x245 + x246 + x248 + x262 + x275 ++ x277 + x278 + x279 + x280 + x289 + x290 + x292 + x300 + x305 + x306 ++ x307 + x308 + x309 + x310 + x313 + x324 + x326 + x328 + x329 + x339 ++ x341 + x342 + x357 + x359 + x362 + x366 + x369 + x371 + x372 + x386 ++ x388 + x397 + x400 + x402 + x426 + x445 + x450 + x474 + x476 + x477 ++ x479 + x495 + x496 <= 1 + +x9 + x11 + x12 + x31 + x32 + x33 + x34 + x38 + x43 + x71 ++ x72 + x73 + x74 + x76 + x85 + x88 + x89 + x91 + x92 + x93 ++ x104 + x131 + x133 + x136 + x137 + x138 + x139 + x140 + x141 + x179 ++ x195 + x200 + x201 + x202 + x227 + x237 + x238 + x240 + x241 + x243 ++ x244 + x245 + x246 + x247 + x248 + x262 + x275 + x277 + x278 + x280 ++ x286 + x287 + x289 + x292 + x299 + x300 + x303 + x305 + x306 + x307 ++ x308 + x309 + x310 + x313 + x326 + x328 + x329 + x359 + x366 + x384 ++ x386 + x387 + x388 + x397 + x398 + x400 + x401 + x402 + x407 + x423 ++ x450 + x474 + x475 + x476 + x477 + x479 + x482 + x495 + x496 <= 1 + +x7 + x8 + x9 + x10 + x11 + x12 + x32 + x34 + x71 + x72 ++ x73 + x74 + x76 + x90 + x91 + x104 + x107 + x119 + x131 + x133 ++ x136 + x137 + x138 + x139 + x140 + x141 + x144 + x178 + x179 + x184 ++ x195 + x199 + x200 + x201 + x202 + x203 + x227 + x237 + x240 + x241 ++ x243 + x244 + x245 + x246 + x247 + x248 + x260 + x275 + x276 + x277 ++ x278 + x280 + x287 + x289 + x290 + x292 + x299 + x300 + x303 + x305 ++ x306 + x307 + x308 + x309 + x310 + x325 + x328 + x329 + x340 + x364 ++ x365 + x366 + x373 + x374 + x375 + x384 + x387 + x397 + x398 + x400 ++ x403 + x407 + x423 + x426 + x433 + x434 + x437 + x450 + x474 + x475 ++ x476 + x477 + x479 + x482 + x495 <= 1 + +x7 + x8 + x9 + x10 + x11 + x12 + x38 + x39 + x66 + x73 ++ x76 + x90 + x105 + x107 + x114 + x115 + x116 + x126 + x130 + x136 ++ x137 + x138 + x139 + x140 + x141 + x145 + x146 + x166 + x182 + x183 ++ x184 + x199 + x200 + x201 + x202 + x203 + x237 + x238 + x239 + x240 ++ x243 + x244 + x245 + x246 + x247 + x248 + x258 + x260 + x275 + x276 ++ x277 + x278 + x287 + x290 + x292 + x303 + x305 + x306 + x307 + x308 ++ x309 + x310 + x325 + x328 + x329 + x361 + x364 + x373 + x374 + x375 ++ x376 + x377 + x378 + x383 + x384 + x385 + x387 + x403 + x423 + x424 ++ x426 + x463 + x475 + x476 <= 1 + +x8 + x9 + x10 + x11 + x12 + x39 + x94 + x107 + x114 + x115 ++ x116 + x130 + x136 + x138 + x140 + x141 + x146 + x182 + x183 + x184 ++ x199 + x201 + x202 + x203 + x237 + x239 + x240 + x241 + x243 + x245 ++ x246 + x247 + x248 + x275 + x287 + x292 + x305 + x307 + x310 + x328 ++ x329 + x383 + x385 + x387 + x403 + x426 + x463 + x475 + x476 <= 1 + +x65 + x69 + x71 + x98 + x109 + x136 + x175 + x204 + x223 + x224 ++ x225 + x237 + x243 + x246 + x247 + x258 + x263 + x264 + x265 + x267 ++ x268 + x281 + x338 + x365 + x404 + x492 + x494 + x497 <= 1 + +x48 + x65 + x71 + x93 + x136 + x151 + x160 + x176 + x193 + x194 ++ x195 + x196 + x198 + x204 + x213 + x222 + x223 + x224 + x237 + x258 ++ x263 + x264 + x266 + x267 + x268 + x278 + x307 + x310 + x338 + x365 ++ x391 + x396 + x404 + x406 + x433 + x438 + x446 + x449 + x465 + x479 ++ x492 + x494 + x497 + x501 <= 1 + +x48 + x70 + x71 + x76 + x86 + x93 + x124 + x125 + x128 + x136 ++ x137 + x141 + x151 + x158 + x160 + x176 + x179 + x180 + x193 + x194 ++ x195 + x196 + x197 + x198 + x204 + x215 + x222 + x224 + x225 + x226 ++ x236 + x243 + x257 + x258 + x261 + x263 + x264 + x268 + x278 + x280 ++ x301 + x305 + x307 + x310 + x338 + x353 + x362 + x363 + x369 + x379 ++ x380 + x382 + x391 + x393 + x395 + x396 + x404 + x426 + x447 + x449 ++ x464 + x465 + x492 + x494 + x497 + x499 <= 1 + +x49 + x67 + x70 + x71 + x76 + x84 + x86 + x87 + x89 + x93 ++ x95 + x124 + x125 + x127 + x131 + x133 + x136 + x137 + x140 + x141 ++ x157 + x158 + x159 + x176 + x177 + x179 + x180 + x193 + x195 + x196 ++ x197 + x198 + x199 + x200 + x204 + x206 + x222 + x224 + x226 + x227 ++ x236 + x243 + x244 + x258 + x261 + x262 + x263 + x268 + x277 + x278 ++ x280 + x289 + x298 + x305 + x307 + x308 + x309 + x310 + x324 + x341 ++ x342 + x363 + x367 + x369 + x379 + x380 + x381 + x388 + x392 + x393 ++ x395 + x477 + x483 + x492 + x495 + x496 + x497 + x498 + x502 <= 1 + +x49 + x63 + x64 + x67 + x71 + x76 + x79 + x84 + x87 + x88 ++ x90 + x91 + x93 + x95 + x125 + x127 + x131 + x133 + x136 + x137 ++ x138 + x140 + x141 + x157 + x158 + x159 + x176 + x179 + x180 + x193 ++ x198 + x199 + x200 + x222 + x226 + x237 + x242 + x243 + x244 + x246 ++ x268 + x278 + x305 + x306 + x307 + x308 + x309 + x310 + x328 + x337 ++ x338 + x339 + x342 + x347 + x367 + x368 + x369 + x370 + x371 + x388 ++ x392 + x395 + x401 + x476 + x477 + x492 + x495 + x496 + x501 <= 1 + +x32 + x34 + x38 + x64 + x67 + x71 + x76 + x84 + x85 + x87 ++ x88 + x89 + x90 + x91 + x93 + x95 + x99 + x104 + x133 + x135 ++ x136 + x137 + x138 + x139 + x140 + x141 + x142 + x176 + x177 + x179 ++ x180 + x193 + x195 + x199 + x200 + x202 + x204 + x221 + x226 + x227 ++ x237 + x240 + x241 + x242 + x244 + x246 + x262 + x275 + x277 + x278 ++ x280 + x289 + x290 + x300 + x305 + x306 + x307 + x308 + x309 + x310 ++ x326 + x328 + x329 + x338 + x339 + x341 + x342 + x359 + x362 + x366 ++ x367 + x368 + x369 + x372 + x383 + x388 + x397 + x401 + x426 + x450 ++ x474 + x476 + x477 + x479 + x483 + x495 + x496 <= 1 + +x32 + x34 + x38 + x71 + x75 + x76 + x84 + x85 + x87 + x88 ++ x90 + x91 + x92 + x93 + x104 + x131 + x133 + x135 + x136 + x137 ++ x138 + x140 + x141 + x176 + x179 + x195 + x199 + x200 + x202 + x203 ++ x221 + x226 + x227 + x237 + x240 + x241 + x243 + x244 + x245 + x246 ++ x248 + x275 + x277 + x278 + x280 + x287 + x290 + x291 + x292 + x303 ++ x305 + x306 + x307 + x308 + x309 + x310 + x326 + x328 + x329 + x338 ++ x339 + x341 + x342 + x359 + x362 + x364 + x366 + x368 + x369 + x370 ++ x372 + x377 + x383 + x384 + x386 + x437 + x474 + x476 + x477 + x479 ++ x495 + x496 <= 1 + +x7 + x9 + x10 + x12 + x18 + x38 + x71 + x73 + x76 + x85 ++ x90 + x91 + x92 + x107 + x130 + x131 + x133 + x135 + x136 + x137 ++ x138 + x139 + x140 + x146 + x195 + x199 + x201 + x202 + x203 + x227 ++ x240 + x241 + x243 + x245 + x246 + x247 + x248 + x275 + x277 + x287 ++ x290 + x291 + x292 + x300 + x303 + x305 + x306 + x307 + x308 + x309 ++ x310 + x329 + x335 + x364 + x366 + x370 + x373 + x374 + x377 + x378 ++ x383 + x384 + x386 + x387 + x424 + x437 + x474 + x475 + x477 <= 1 + +x7 + x8 + x9 + x12 + x39 + x66 + x71 + x73 + x85 + x90 ++ x91 + x94 + x115 + x130 + x136 + x137 + x138 + x140 + x141 + x145 ++ x146 + x182 + x183 + x184 + x195 + x199 + x201 + x203 + x238 + x239 ++ x240 + x241 + x243 + x244 + x245 + x246 + x247 + x248 + x260 + x275 ++ x277 + x280 + x287 + x290 + x291 + x292 + x298 + x305 + x306 + x307 ++ x308 + x309 + x310 + x328 + x329 + x361 + x364 + x366 + x373 + x375 ++ x377 + x378 + x383 + x384 + x385 + x386 + x387 + x424 + x426 + x475 ++ x476 <= 1 + +x8 + x11 + x12 + x38 + x39 + x66 + x73 + x90 + x94 + x130 ++ x136 + x137 + x138 + x140 + x141 + x145 + x146 + x172 + x182 + x183 ++ x184 + x195 + x199 + x200 + x201 + x202 + x203 + x238 + x239 + x240 ++ x241 + x243 + x244 + x245 + x246 + x248 + x260 + x275 + x287 + x290 ++ x291 + x292 + x298 + x305 + x307 + x308 + x309 + x310 + x329 + x364 ++ x365 + x366 + x375 + x376 + x383 + x384 + x385 + x386 + x387 + x424 ++ x427 + x453 + x476 <= 1 + +x69 + x71 + x86 + x136 + x146 + x222 + x224 + x246 + x258 + x263 ++ x265 + x267 + x268 + x282 + x391 + x395 + x396 + x404 + x492 + x494 ++ x501 <= 1 + +x48 + x71 + x76 + x86 + x136 + x193 + x194 + x196 + x197 + x222 ++ x223 + x224 + x246 + x258 + x261 + x263 + x264 + x266 + x267 + x278 ++ x282 + x310 + x362 + x365 + x381 + x384 + x391 + x395 + x396 + x438 ++ x479 + x492 + x494 + x498 + x499 + x500 + x501 <= 1 + +x48 + x70 + x71 + x76 + x86 + x125 + x136 + x141 + x151 + x197 ++ x222 + x225 + x226 + x227 + x258 + x261 + x264 + x266 + x268 + x278 ++ x280 + x310 + x349 + x353 + x362 + x379 + x381 + x384 + x391 + x392 ++ x393 + x395 + x396 + x449 + x479 + x494 + x496 + x497 + x498 + x499 ++ x500 <= 1 + +x65 + x67 + x71 + x76 + x84 + x85 + x86 + x93 + x125 + x133 ++ x136 + x141 + x157 + x176 + x180 + x193 + x195 + x196 + x200 + x204 ++ x222 + x224 + x226 + x227 + x258 + x261 + x268 + x278 + x280 + x289 ++ x305 + x306 + x342 + x381 + x391 + x392 + x393 + x474 + x477 + x479 ++ x495 + x496 + x498 + x499 + x500 <= 1 + +x67 + x71 + x76 + x79 + x84 + x85 + x86 + x87 + x93 + x95 ++ x133 + x136 + x137 + x138 + x141 + x159 + x193 + x195 + x196 + x199 ++ x200 + x222 + x226 + x227 + x265 + x277 + x278 + x280 + x305 + x342 ++ x362 + x367 + x368 + x370 + x391 + x392 + x395 + x474 + x476 + x477 ++ x492 + x500 <= 1 + +x35 + x75 + x79 + x81 + x84 + x85 + x86 + x87 + x88 + x90 ++ x91 + x92 + x93 + x133 + x136 + x137 + x138 + x140 + x177 + x195 ++ x199 + x200 + x202 + x221 + x225 + x226 + x227 + x242 + x243 + x244 ++ x246 + x262 + x265 + x277 + x278 + x283 + x305 + x307 + x309 + x329 ++ x338 + x339 + x362 + x366 + x367 + x368 + x370 + x372 + x383 + x392 ++ x474 + x477 + x479 <= 1 + +x75 + x79 + x84 + x85 + x86 + x87 + x88 + x90 + x91 + x92 ++ x104 + x133 + x136 + x138 + x140 + x183 + x199 + x200 + x203 + x225 ++ x226 + x227 + x242 + x243 + x244 + x245 + x246 + x275 + x277 + x278 ++ x283 + x290 + x292 + x305 + x308 + x309 + x310 + x325 + x329 + x337 ++ x338 + x339 + x342 + x345 + x367 + x370 + x372 + x377 + x378 + x383 ++ x386 + x395 + x474 + x477 <= 1 + +x76 + x90 + x91 + x92 + x94 + x117 + x133 + x136 + x137 + x138 ++ x140 + x183 + x199 + x200 + x203 + x225 + x238 + x243 + x244 + x245 ++ x246 + x275 + x277 + x278 + x291 + x292 + x300 + x303 + x305 + x306 ++ x307 + x309 + x310 + x329 + x337 + x338 + x342 + x364 + x372 + x373 ++ x377 + x378 + x383 + x384 + x386 + x474 + x475 + x477 + x482 <= 1 + +x12 + x85 + x90 + x91 + x94 + x133 + x136 + x140 + x145 + x172 ++ x183 + x184 + x199 + x200 + x203 + x238 + x241 + x243 + x244 + x245 ++ x246 + x248 + x275 + x277 + x280 + x303 + x305 + x307 + x308 + x309 ++ x310 + x329 + x364 + x373 + x375 + x377 + x378 + x383 + x384 + x386 ++ x451 + x474 + x482 <= 1 + +x90 + x91 + x94 + x136 + x137 + x138 + x140 + x145 + x146 + x172 ++ x174 + x183 + x184 + x199 + x200 + x203 + x238 + x243 + x244 + x245 ++ x246 + x260 + x275 + x277 + x292 + x298 + x305 + x307 + x308 + x309 ++ x310 + x364 + x365 + x373 + x375 + x378 + x383 + x384 + x385 + x386 ++ x476 <= 1 + +x0 + x1 + x2 + x3 + x4 <= 1 + + <= 1 + +x7 + x8 + x9 + x10 + x11 + x12 <= 1 + +x13 + x14 + x15 + x16 + x17 + x18 <= 1 + +x19 + x20 + x21 + x22 + x23 <= 1 + +x24 + x25 + x26 + x27 + x28 + x29 <= 1 + +x31 + x32 + x33 + x34 + x35 + x36 <= 1 + +x37 + x38 + x39 + x40 + x41 + x42 <= 1 + +x44 + x45 + x46 + x47 + x48 + x49 <= 1 + +x50 + x51 + x52 + x53 + x54 + x55 <= 1 + +x56 + x57 + x58 + x59 + x60 + x61 <= 1 + +x63 + x64 <= 1 + +x65 + x66 + x67 + x68 + x69 + x70 <= 1 + +x71 + x72 + x73 + x74 + x75 + x76 <= 1 + +x77 + x78 + x79 + x80 + x81 + x82 <= 1 + +x84 + x85 + x86 + x87 + x88 + x89 <= 1 + +x90 + x91 + x92 + x93 + x94 + x95 <= 1 + +x96 + x97 + x98 + x99 + x100 + x101 <= 1 + +x102 + x103 + x104 + x105 + x106 + x107 <= 1 + +x108 + x109 + x110 + x111 + x112 + x113 <= 1 + +x114 + x115 + x116 + x117 <= 1 + +x118 + x119 + x120 + x121 <= 1 + +x122 + x123 <= 1 + +x124 + x125 + x126 + x127 + x128 + x129 <= 1 + +x130 + x131 + x132 + x133 + x134 + x135 <= 1 + +x136 + x137 + x138 + x139 + x140 + x141 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x148 + x149 + x150 + x151 <= 1 + +x152 + x153 + x154 + x155 + x156 <= 1 + +x157 + x158 + x159 + x160 <= 1 + +x161 + x162 + x163 + x164 + x165 + x166 <= 1 + +x167 + x168 + x169 + x170 + x171 + x172 <= 1 + +x176 + x177 + x178 + x179 + x180 + x181 <= 1 + +x182 + x183 + x184 + x185 + x186 <= 1 + +x187 + x188 + x189 + x190 + x191 + x192 <= 1 + +x193 + x194 + x195 + x196 + x197 + x198 <= 1 + +x199 + x200 + x201 + x202 + x203 + x204 <= 1 + +x205 + x206 + x207 + x208 + x209 + x210 <= 1 + +x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 + x221 <= 1 + +x222 + x223 + x224 + x225 + x226 + x227 <= 1 + +x228 + x229 + x230 + x231 + x232 + x233 <= 1 + +x234 + x235 + x236 <= 1 + +x237 + x238 + x239 + x240 + x241 + x242 <= 1 + +x243 + x244 + x245 + x246 + x247 + x248 <= 1 + +x249 + x250 + x251 + x252 + x253 + x254 <= 1 + +x255 + x256 <= 1 + +x257 + x258 + x259 + x260 + x261 + x262 <= 1 + +x263 + x264 + x265 + x266 + x267 + x268 <= 1 + +x269 + x270 + x271 + x272 + x273 + x274 <= 1 + +x275 + x276 + x277 + x278 + x279 + x280 <= 1 + +x281 + x282 + x283 + x284 + x285 + x286 <= 1 + +x287 + x288 + x289 + x290 + x291 + x292 <= 1 + +x293 + x294 + x295 + x296 + x297 + x298 <= 1 + +x299 + x300 + x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 + x310 <= 1 + +x311 + x312 + x313 + x314 + x315 + x316 <= 1 + +x317 + x318 + x319 + x320 + x321 + x322 <= 1 + +x324 + x325 + x326 + x327 + x328 + x329 <= 1 + +x331 + x332 + x333 + x334 + x335 + x336 <= 1 + +x337 + x338 + x339 + x340 + x341 + x342 <= 1 + +x343 + x344 + x345 + x346 + x347 + x348 <= 1 + +x349 + x350 + x351 + x352 + x353 <= 1 + +x354 + x355 + x356 + x357 + x358 + x359 <= 1 + +x361 + x362 + x363 + x364 + x365 + x366 <= 1 + +x367 + x368 + x369 + x370 + x371 + x372 <= 1 + +x373 + x374 + x375 + x376 + x377 + x378 <= 1 + +x379 + x380 + x381 + x382 <= 1 + +x383 + x384 + x385 + x386 + x387 + x388 <= 1 + +x389 + x390 <= 1 + +x391 + x392 + x393 + x394 + x395 + x396 <= 1 + +x397 + x398 + x399 + x400 + x401 + x402 <= 1 + +x403 + x404 + x405 + x406 + x407 + x408 <= 1 + +x409 + x410 + x411 + x412 + x413 + x414 <= 1 + +x415 + x416 + x417 + x418 + x419 <= 1 + +x420 + x421 <= 1 + +x422 + x423 + x424 + x425 + x426 + x427 <= 1 + +x428 + x429 + x430 + x431 + x432 <= 1 + +x433 + x434 + x435 + x436 + x437 + x438 <= 1 + +x439 + x440 + x441 + x442 + x443 + x444 <= 1 + +x445 + x446 + x447 + x448 + x449 + x450 <= 1 + +x452 + x453 + x454 + x455 + x456 + x457 <= 1 + +x458 + x459 + x460 + x461 + x462 + x463 <= 1 + +x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x492 + x493 + x494 + x495 + x496 + x497 <= 1 + +x498 + x499 + x500 + x501 + x502 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0019.lp b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0019.lp new file mode 100644 index 000000000..50d3c3e91 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0019.lp @@ -0,0 +1,1053 @@ +max + +303.838x0 + 232.057x1 + 177.694x2 + 898.372x3 + 1208.13x4 + 1095.63x5 + 1090.35x6 + 1062.74x7 + 1024.01x8 + 123.176x9 + +131.139x10 + 110.428x11 + 116.709x12 + 205.653x13 + 271.364x14 + 403.688x15 + 412.833x16 + 410.691x17 + 328.124x18 + 326.425x19 + +232.175x20 + 1881.13x21 + 2418.24x22 + 2369.89x23 + 2262.01x24 + 2195.91x25 + 2155.5x26 + 62.3669x27 + 712.285x28 + 796.286x29 + +790.533x30 + 785.298x31 + 783.488x32 + 729.291x33 + 901.43x34 + 1069.23x35 + 946.752x36 + 922.685x37 + 901.683x38 + 888.332x39 + +1038.86x40 + 1256.74x41 + 1253.15x42 + 1237.63x43 + 1228.44x44 + 1189.34x45 + 319.13x46 + 459.917x47 + 308.746x48 + 252.975x49 + +216.784x50 + 443.176x51 + 539.471x52 + 538.555x53 + 531.84x54 + 508.184x55 + 488.819x56 + 761.406x57 + 751.118x58 + 748.505x59 + +722.314x60 + 691.868x61 + 590.265x62 + 212.364x63 + 259.989x64 + 221.158x65 + 198.857x66 + 255.271x67 + 280.951x68 + 280.14x69 + +265.12x70 + 345.473x71 + 338.404x72 + 291.908x73 + 163.762x74 + 150.338x75 + 171.788x76 + 87.717x77 + 578.028x78 + 744.327x79 + +643.789x80 + 640.002x81 + 623.768x82 + 593.298x83 + 1309.23x84 + 1353.64x85 + 1349.12x86 + 1338.85x87 + 1301.22x88 + 1246.22x89 + +449.586x90 + 648.162x91 + 582.586x92 + 573.465x93 + 547.24x94 + 505.342x95 + 498.197x96 + 561.612x97 + 502.685x98 + 485.581x99 + +483.971x100 + 468.951x101 + 85.428x102 + 1010.15x103 + 1127.96x104 + 1080.2x105 + 1030.07x106 + 1020.12x107 + 992.84x108 + 677.79x109 + +1015.45x110 + 1014.32x111 + 857.442x112 + 828.609x113 + 760.299x114 + 378.022x115 + 397.217x116 + 367.535x117 + 360.337x118 + 274.111x119 + +225.545x120 + 503.794x121 + 711.858x122 + 550.517x123 + 461.616x124 + 393.761x125 + 391.616x126 + 173.543x127 + 140.48x128 + 115.734x129 + +144.509x130 + 202.579x131 + 422.191x132 + 495.44x133 + 461.381x134 + 426.845x135 + 386.866x136 + 271.376x137 + 1054.14x138 + 1199.85x139 + +1146.14x140 + 1135.05x141 + 1040.68x142 + 1003.05x143 + 318.351x144 + 351.262x145 + 338.132x146 + 332.817x147 + 263.537x148 + 247.719x149 + +1039.53x150 + 1375.9x151 + 1333.71x152 + 1308.14x153 + 1270.5x154 + 1226.28x155 + 184.941x156 + 277.02x157 + 264.977x158 + 257.035x159 + +158.508x160 + 136.564x161 + 96.0704x162 + 301.598x163 + 383.126x164 + 164.876x165 + 143.693x166 + 805.076x167 + 1056.64x168 + 955.899x169 + +954.9x170 + 940.194x171 + 930.805x172 + 549.436x173 + 801.227x174 + 773.697x175 + 695.498x176 + 595.104x177 + 447.289x178 + 479.715x179 + +471.073x180 + 445.368x181 + 405.166x182 + 395.185x183 + 9.16192x184 + 1095.53x185 + 1214.8x186 + 1202.66x187 + 1197.05x188 + 1196.01x189 + +1170.31x190 + 189.655x191 + 171.624x192 + 265.467x193 + 197.768x194 + 191.121x195 + 1307.13x196 + 1837.65x197 + 1807.76x198 + 1722.75x199 + +1660.17x200 + 1614.69x201 + 648.451x202 + 739.496x203 + 718.919x204 + 715.918x205 + 709.107x206 + 621.402x207 + 93.1289x208 + 1560.53x209 + +1716.94x210 + 1630.51x211 + 1554.96x212 + 1550.55x213 + 1478.45x214 + 711.947x215 + 1009.06x216 + 913.03x217 + 909.314x218 + 888.316x219 + +877.575x220 + 600.025x221 + 710.042x222 + 608.215x223 + 543.941x224 + 535.777x225 + 534.042x226 + 73.8682x227 + 204.092x228 + 153.976x229 + +159.288x230 + 79.3705x231 + 25.2924x232 + 39.2651x233 + 2327.86x234 + 2543.59x235 + 2506.98x236 + 2480.92x237 + 2427.97x238 + 2413.28x239 + +582.521x240 + 666.671x241 + 657.433x242 + 599.774x243 + 590.782x244 + 572.661x245 + 202.564x246 + 281.82x247 + 270.153x248 + 202.668x249 + +177.854x250 + 1156.58x251 + 1451.21x252 + 1395.42x253 + 1363.13x254 + 1353.42x255 + 1326.68x256 + 1192.72x257 + 1310.52x258 + 1194.93x259 + +1178.2x260 + 1166.12x261 + 1145.98x262 + 98.2782x263 + 124.778x264 + 141.518x265 + 130.316x266 + 107.292x267 + 41.382x268 + 451.515x269 + +632.458x270 + 587.015x271 + 561.725x272 + 541.136x273 + 530.392x274 + 1382.26x275 + 1474.15x276 + 1439.24x277 + 1391.56x278 + 1387.28x279 + +1372.98x280 + 992.028x281 + 989.922x282 + 986.138x283 + 981.109x284 + 933.373x285 + 919.375x286 + 564.429x287 + 699.139x288 + 607.666x289 + +540.205x290 + 535.892x291 + 523.756x292 + 1763.46x293 + 1876.01x294 + 1732.14x295 + 1718.84x296 + 1699.08x297 + 1675.33x298 + 335.248x299 + +450.435x300 + 440.788x301 + 415.55x302 + 402.19x303 + 392.664x304 + 723.247x305 + 1040.26x306 + 928.73x307 + 926.275x308 + 920.676x309 + +909.089x310 + 427.203x311 + 573.957x312 + 489.694x313 + 485.168x314 + 474.881x315 + 434.48x316 + 391.469x317 + 460.157x318 + 411.742x319 + +391.673x320 + 343.89x321 + 297.951x322 + 270.846x323 + 240.018x324 + 227.621x325 + 499.235x326 + 665.463x327 + 652.582x328 + 582.004x329 + +541.177x330 + 479.183x331 + 216.326x332 + 154.021x333 + 106.279x334 + 522.459x335 + 648.852x336 + 599.211x337 + 595.654x338 + 568.659x339 + +529.359x340 + 218.415x341 + 324.066x342 + 242.493x343 + 198.427x344 + 1237.63x345 + 1348.9x346 + 1226.57x347 + 1209.86x348 + 1129.34x349 + +1110.23x350 + 112.108x351 + 127.686x352 + 112.794x353 + 182.985x354 + 190.744x355 + 1076.34x356 + 1492.18x357 + 1456.12x358 + 1415.37x359 + +1385.88x360 + 1329.7x361 + 234.597x362 + 275.76x363 + 262.365x364 + 234.066x365 + 211.521x366 + 188.023x367 + 432.578x368 + 513.577x369 + +489.504x370 + 455.531x371 + 431.386x372 + 430.404x373 + 806.6x374 + 874.424x375 + 776.374x376 + 754x377 + 722.61x378 + 722.42x379 + +223.566x380 + 287.38x381 + 239.252x382 + 177.387x383 + 1676.74x384 + 2040.44x385 + 2039.42x386 + 2034.4x387 + 2024.74x388 + 1980.82x389 + +937.276x390 + 1131.62x391 + 1118.16x392 + 1085.87x393 + 1065.14x394 + 1057.13x395 + 154.893x396 + 124.123x397 + 107x398 + 130.406x399 + +119.186x400 + 92.4777x401 + 46.0491x402 + 1028.81x403 + 1280.15x404 + 1212.4x405 + 1158.57x406 + 1115.36x407 + 1107.68x408 + 198.754x409 + +279.31x410 + 253.882x411 + 186.226x412 + 1876.6x413 + 2116.94x414 + 2101.55x415 + 2067.15x416 + 2063.56x417 + 2052.42x418 + 3.28325x419 + +625.956x420 + 665.97x421 + 648.091x422 + 624.64x423 + 619.332x424 + 602.36x425 + 213.241x426 + 281.232x427 + 277.645x428 + 266.271x429 + +165.569x430 + 156.382x431 + 332.904x432 + 447.562x433 + 398.645x434 + 348.803x435 + 254.798x436 + 215.938x437 + 1700.1x438 + 1974.42x439 + +1939.66x440 + 1855.82x441 + 1816.4x442 + 1806.08x443 + 1175.29x444 + 1346.69x445 + 1232.91x446 + 1217.89x447 + 1216.19x448 + 1189.01x449 + +411.53x450 + 453.473x451 + 447.468x452 + 419.808x453 + 412.801x454 + 389.213x455 + 1179.76x456 + 1667.24x457 + 1615.84x458 + 1578x459 + +1512.76x460 + 1491.47x461 + 307.523x462 + 345.028x463 + 298.268x464 + 295.874x465 + 177.776x466 + 175.811x467 + 502.036x468 + 717.065x469 + +677.49x470 + 657.491x471 + 647.824x472 + 624.02x473 + 922.835x474 + 1172.34x475 + 1122.53x476 + 1048.43x477 + 1040.32x478 + 1017.07x479 + +432.498x480 + 486.202x481 + 484.434x482 + 455.276x483 + 376.059x484 + 333.552x485 + 112.698x486 + 75.4738x487 + 42.3585x488 + 462.879x489 + +581.692x490 + 579.598x491 + 488.014x492 + 483.636x493 + 482.998x494 + 966.325x495 + 976.021x496 + 912.341x497 + 898.249x498 + 890.309x499 + +870.955x500 + +st + +x13 + x140 + x141 + x142 + x154 + x202 + x207 + x261 + x285 + x373 ++ x409 + x410 + x411 + x412 + x413 + x415 + x418 + x440 + x444 + x447 ++ x449 + x456 + x458 <= 1 + +x25 + x123 + x138 + x140 + x141 + x142 + x154 + x202 + x204 + x206 ++ x207 + x251 + x254 + x256 + x261 + x285 + x373 + x384 + x403 + x405 ++ x409 + x410 + x411 + x413 + x415 + x418 + x438 + x445 + x446 + x447 ++ x449 + x495 + x499 <= 1 + +x23 + x24 + x138 + x139 + x140 + x142 + x156 + x158 + x159 + x161 ++ x202 + x203 + x205 + x206 + x207 + x215 + x216 + x218 + x235 + x238 ++ x251 + x254 + x256 + x274 + x289 + x349 + x368 + x384 + x386 + x389 ++ x401 + x402 + x413 + x429 + x438 + x441 + x445 + x446 + x447 + x448 ++ x449 + x474 + x495 + x499 <= 1 + +x51 + x52 + x53 + x117 + x140 + x141 + x142 + x156 + x157 + x159 ++ x160 + x202 + x203 + x205 + x206 + x213 + x215 + x218 + x219 + x235 ++ x251 + x254 + x255 + x256 + x289 + x349 + x367 + x370 + x371 + x384 ++ x386 + x389 + x399 + x401 + x402 + x403 + x412 + x413 + x441 + x444 ++ x445 + x446 + x447 + x448 + x449 + x474 + x495 + x499 <= 1 + +x52 + x141 + x142 + x160 + x203 + x205 + x215 + x218 + x219 + x235 ++ x236 + x238 + x251 + x254 + x255 + x289 + x349 + x384 + x386 + x399 ++ x400 + x402 + x403 + x413 + x415 + x417 + x444 + x445 + x446 + x447 ++ x448 + x449 + x456 + x495 + x498 + x499 <= 1 + +x52 + x73 + x215 + x220 + x235 + x251 + x269 + x273 + x293 + x338 ++ x379 + x386 + x389 + x413 + x417 + x447 + x449 + x467 <= 1 + +x11 + x21 + x28 + x32 + x40 + x42 + x43 + x45 + x90 + x126 ++ x165 + x220 + x287 + x288 + x346 + x387 + x389 + x398 + x413 + x444 ++ x448 + x462 + x464 <= 1 + +x21 + x28 + x32 + x40 + x42 + x43 + x45 + x74 + x126 + x220 ++ x257 + x260 + x287 + x290 + x291 + x385 + x387 + x389 + x396 + x398 ++ x413 + x462 + x464 + x465 + x474 + x477 <= 1 + +x21 + x26 + x28 + x31 + x32 + x33 + x40 + x43 + x45 + x74 ++ x75 + x98 + x148 + x196 + x220 + x256 + x257 + x276 + x287 + x290 ++ x291 + x345 + x385 + x387 + x396 + x397 + x404 + x414 + x451 + x462 ++ x464 + x465 + x466 + x477 <= 1 + +x21 + x26 + x28 + x31 + x33 + x40 + x43 + x56 + x70 + x74 ++ x75 + x96 + x98 + x114 + x256 + x287 + x290 + x291 + x292 + x345 ++ x385 + x387 + x404 + x442 + x462 + x463 + x464 + x465 <= 1 + +x13 + x14 + x24 + x119 + x138 + x141 + x142 + x202 + x207 + x254 ++ x256 + x261 + x289 + x337 + x371 + x373 + x384 + x403 + x405 + x409 ++ x410 + x411 + x412 + x413 + x415 + x442 + x444 + x446 + x447 + x449 + <= 1 + +x13 + x14 + x24 + x54 + x92 + x119 + x138 + x139 + x140 + x141 ++ x142 + x158 + x159 + x161 + x200 + x201 + x202 + x204 + x206 + x207 ++ x218 + x238 + x251 + x254 + x256 + x261 + x289 + x337 + x368 + x371 ++ x373 + x384 + x403 + x405 + x406 + x409 + x410 + x411 + x412 + x413 ++ x415 + x418 + x435 + x438 + x442 + x444 + x445 + x446 + x447 + x449 ++ x495 + x499 <= 1 + +x23 + x24 + x39 + x51 + x53 + x61 + x138 + x139 + x140 + x142 ++ x156 + x158 + x159 + x160 + x161 + x197 + x200 + x202 + x203 + x204 ++ x205 + x206 + x207 + x215 + x216 + x218 + x232 + x235 + x238 + x239 ++ x251 + x254 + x256 + x289 + x337 + x347 + x349 + x368 + x371 + x373 ++ x378 + x384 + x386 + x389 + x401 + x403 + x409 + x410 + x411 + x412 ++ x413 + x415 + x417 + x419 + x438 + x440 + x441 + x444 + x445 + x447 ++ x449 + x495 + x499 <= 1 + +x21 + x24 + x42 + x45 + x51 + x52 + x53 + x87 + x117 + x138 ++ x139 + x140 + x141 + x142 + x156 + x157 + x158 + x159 + x160 + x200 ++ x201 + x203 + x204 + x205 + x206 + x207 + x211 + x213 + x214 + x215 ++ x218 + x219 + x229 + x230 + x232 + x235 + x237 + x238 + x251 + x254 ++ x256 + x278 + x287 + x289 + x347 + x349 + x368 + x370 + x371 + x373 ++ x384 + x386 + x389 + x399 + x400 + x401 + x402 + x403 + x410 + x412 ++ x413 + x414 + x415 + x417 + x444 + x445 + x446 + x447 + x448 + x449 ++ x474 + x495 + x498 + x499 + x500 <= 1 + +x21 + x24 + x39 + x45 + x51 + x52 + x53 + x54 + x87 + x121 ++ x138 + x139 + x142 + x159 + x201 + x203 + x204 + x205 + x206 + x213 ++ x214 + x215 + x218 + x219 + x229 + x232 + x235 + x236 + x237 + x238 ++ x251 + x254 + x255 + x256 + x273 + x276 + x284 + x287 + x289 + x293 ++ x347 + x349 + x371 + x379 + x384 + x386 + x389 + x394 + x399 + x400 ++ x403 + x413 + x414 + x415 + x417 + x444 + x445 + x446 + x447 + x448 ++ x449 + x456 + x479 + x495 + x498 <= 1 + +x24 + x40 + x42 + x52 + x53 + x90 + x138 + x139 + x165 + x214 ++ x215 + x218 + x219 + x220 + x235 + x237 + x238 + x251 + x254 + x273 ++ x276 + x284 + x287 + x289 + x293 + x338 + x379 + x386 + x387 + x389 ++ x394 + x400 + x404 + x413 + x414 + x417 + x445 + x447 + x448 + x449 ++ x456 + x459 + x498 <= 1 + +x6 + x11 + x12 + x21 + x22 + x23 + x26 + x32 + x40 + x42 ++ x43 + x45 + x53 + x90 + x96 + x102 + x126 + x165 + x187 + x211 ++ x215 + x217 + x218 + x219 + x220 + x236 + x237 + x276 + x284 + x287 ++ x288 + x310 + x327 + x344 + x354 + x385 + x386 + x387 + x388 + x389 ++ x413 + x414 + x415 + x416 + x417 + x439 + x441 + x444 + x448 + x459 ++ x477 <= 1 + +x6 + x11 + x12 + x21 + x26 + x32 + x40 + x42 + x43 + x44 ++ x45 + x55 + x101 + x102 + x123 + x163 + x165 + x187 + x215 + x217 ++ x220 + x256 + x266 + x276 + x279 + x343 + x344 + x384 + x385 + x386 ++ x387 + x388 + x389 + x404 + x414 + x415 + x417 + x439 + x444 + x448 ++ x466 + x477 <= 1 + +x11 + x21 + x23 + x26 + x28 + x29 + x31 + x32 + x33 + x40 ++ x43 + x44 + x55 + x74 + x75 + x98 + x99 + x101 + x123 + x139 ++ x148 + x163 + x164 + x166 + x171 + x187 + x190 + x210 + x217 + x220 ++ x256 + x257 + x258 + x264 + x265 + x266 + x276 + x287 + x290 + x291 ++ x292 + x341 + x343 + x344 + x345 + x377 + x384 + x385 + x386 + x387 ++ x388 + x389 + x404 + x413 + x414 + x417 + x448 + x462 + x465 + x466 ++ x467 + x477 <= 1 + +x21 + x28 + x29 + x31 + x32 + x33 + x40 + x43 + x44 + x70 ++ x74 + x75 + x98 + x99 + x144 + x148 + x149 + x166 + x187 + x217 ++ x257 + x265 + x287 + x290 + x291 + x292 + x345 + x385 + x387 + x389 ++ x414 + x442 + x448 + x462 + x463 + x464 + x465 + x466 + x477 <= 1 + +x13 + x14 + x207 + x256 + x261 + x337 + x405 + x409 + x410 + x411 ++ x412 + x413 + x415 + x447 <= 1 + +x4 + x14 + x38 + x55 + x86 + x87 + x138 + x140 + x141 + x142 ++ x156 + x161 + x196 + x200 + x201 + x202 + x204 + x211 + x213 + x214 ++ x218 + x219 + x237 + x238 + x251 + x254 + x256 + x271 + x347 + x368 ++ x378 + x406 + x409 + x411 + x413 + x415 + x438 + x446 + x447 + x449 ++ x495 + x498 + x499 <= 1 + +x4 + x21 + x23 + x24 + x38 + x39 + x51 + x54 + x55 + x61 ++ x79 + x85 + x86 + x87 + x138 + x139 + x140 + x141 + x142 + x156 ++ x160 + x161 + x169 + x196 + x197 + x198 + x200 + x201 + x202 + x203 ++ x204 + x205 + x206 + x207 + x210 + x211 + x213 + x214 + x216 + x218 ++ x219 + x235 + x236 + x237 + x238 + x239 + x251 + x254 + x256 + x271 ++ x273 + x290 + x339 + x347 + x349 + x368 + x371 + x372 + x373 + x374 ++ x378 + x379 + x384 + x386 + x392 + x395 + x404 + x406 + x408 + x409 ++ x412 + x413 + x415 + x416 + x438 + x440 + x441 + x444 + x446 + x447 ++ x449 + x470 + x495 + x497 + x498 + x499 <= 1 + +x4 + x21 + x23 + x24 + x39 + x42 + x51 + x53 + x55 + x61 ++ x86 + x87 + x125 + x126 + x138 + x139 + x140 + x141 + x142 + x157 ++ x196 + x197 + x200 + x201 + x203 + x204 + x206 + x209 + x210 + x211 ++ x212 + x213 + x214 + x215 + x216 + x218 + x219 + x230 + x234 + x236 ++ x237 + x251 + x254 + x255 + x256 + x273 + x278 + x289 + x347 + x368 ++ x370 + x371 + x372 + x373 + x379 + x386 + x389 + x390 + x406 + x410 ++ x413 + x414 + x415 + x416 + x439 + x441 + x444 + x446 + x447 + x448 ++ x449 + x470 + x474 + x495 + x498 + x499 + x500 <= 1 + +x4 + x6 + x7 + x21 + x23 + x24 + x39 + x41 + x42 + x43 ++ x45 + x51 + x52 + x54 + x55 + x86 + x87 + x95 + x107 + x121 ++ x125 + x126 + x139 + x141 + x142 + x153 + x157 + x187 + x189 + x197 ++ x198 + x199 + x201 + x203 + x204 + x206 + x209 + x210 + x211 + x213 ++ x215 + x217 + x219 + x220 + x229 + x230 + x231 + x234 + x235 + x236 ++ x237 + x238 + x251 + x252 + x254 + x255 + x256 + x273 + x276 + x278 ++ x284 + x289 + x314 + x340 + x347 + x361 + x368 + x369 + x370 + x371 ++ x372 + x379 + x386 + x389 + x390 + x392 + x394 + x403 + x413 + x414 ++ x415 + x416 + x417 + x438 + x439 + x440 + x441 + x442 + x444 + x447 ++ x448 + x453 + x456 + x473 + x474 + x477 + x479 + x498 + x500 <= 1 + +x6 + x11 + x12 + x21 + x23 + x26 + x39 + x42 + x43 + x45 ++ x53 + x54 + x72 + x84 + x90 + x93 + x107 + x121 + x126 + x157 ++ x187 + x189 + x209 + x211 + x215 + x217 + x219 + x220 + x231 + x235 ++ x236 + x237 + x238 + x252 + x260 + x273 + x276 + x284 + x353 + x361 ++ x370 + x372 + x385 + x386 + x389 + x403 + x413 + x414 + x415 + x416 ++ x417 + x438 + x439 + x440 + x444 + x459 + x473 + x479 + x500 <= 1 + +x12 + x21 + x22 + x23 + x26 + x40 + x41 + x42 + x43 + x44 ++ x45 + x72 + x85 + x94 + x96 + x97 + x99 + x121 + x122 + x123 ++ x126 + x157 + x187 + x190 + x209 + x210 + x211 + x212 + x217 + x219 ++ x220 + x235 + x237 + x238 + x276 + x280 + x284 + x288 + x291 + x327 ++ x330 + x348 + x354 + x355 + x358 + x360 + x370 + x385 + x386 + x387 ++ x388 + x389 + x413 + x414 + x415 + x416 + x417 + x418 + x439 + x440 ++ x441 + x444 + x448 + x459 + x467 + x476 + x500 <= 1 + +x12 + x21 + x22 + x23 + x26 + x29 + x30 + x32 + x40 + x41 ++ x42 + x43 + x44 + x45 + x55 + x68 + x85 + x96 + x98 + x99 ++ x101 + x123 + x139 + x163 + x164 + x171 + x185 + x187 + x190 + x203 ++ x209 + x210 + x211 + x212 + x217 + x219 + x220 + x237 + x256 + x260 ++ x264 + x266 + x276 + x278 + x279 + x280 + x290 + x291 + x292 + x341 ++ x342 + x343 + x344 + x345 + x349 + x355 + x384 + x385 + x386 + x387 ++ x388 + x389 + x413 + x414 + x416 + x417 + x418 + x439 + x441 + x444 ++ x448 + x451 + x466 + x467 + x476 + x477 <= 1 + +x25 + x29 + x33 + x40 + x44 + x67 + x96 + x98 + x99 + x139 ++ x148 + x163 + x164 + x166 + x171 + x187 + x210 + x257 + x258 + x264 ++ x265 + x276 + x283 + x290 + x292 + x295 + x297 + x316 + x341 + x342 ++ x345 + x384 + x385 + x387 + x389 + x413 + x414 + x418 + x441 + x465 ++ x467 <= 1 + +x21 + x23 + x26 + x28 + x29 + x31 + x32 + x33 + x40 + x43 ++ x44 + x55 + x75 + x99 + x101 + x139 + x144 + x148 + x217 + x257 ++ x258 + x261 + x287 + x290 + x291 + x292 + x297 + x320 + x345 + x384 ++ x385 + x387 + x388 + x389 + x437 + x448 + x464 + x466 + x477 <= 1 + +x4 + x5 + x6 + x9 + x23 + x57 + x59 + x60 + x61 + x84 ++ x87 + x141 + x179 + x197 + x209 + x210 + x211 + x213 + x214 + x216 ++ x234 + x237 + x281 + x282 + x283 + x284 + x285 + x336 + x340 + x376 ++ x403 + x404 + x406 + x407 + x408 + x420 + x422 + x425 + x438 + x440 ++ x441 + x443 + x448 + x457 + x458 + x462 + x496 + x497 <= 1 + +x3 + x4 + x6 + x8 + x21 + x23 + x39 + x57 + x59 + x60 ++ x61 + x84 + x85 + x86 + x87 + x141 + x195 + x197 + x199 + x200 ++ x201 + x209 + x210 + x211 + x213 + x214 + x216 + x234 + x237 + x239 ++ x255 + x281 + x284 + x286 + x336 + x340 + x372 + x374 + x375 + x376 ++ x378 + x379 + x404 + x406 + x407 + x408 + x420 + x422 + x423 + x425 ++ x438 + x440 + x441 + x448 + x457 + x470 + x495 + x496 + x497 + x500 + <= 1 + +x4 + x6 + x8 + x16 + x21 + x23 + x24 + x35 + x37 + x38 ++ x39 + x54 + x57 + x59 + x60 + x61 + x79 + x84 + x85 + x86 ++ x87 + x92 + x139 + x140 + x141 + x142 + x169 + x196 + x197 + x198 ++ x199 + x200 + x201 + x202 + x204 + x207 + x209 + x210 + x211 + x213 ++ x214 + x216 + x218 + x219 + x234 + x236 + x237 + x238 + x239 + x251 ++ x254 + x255 + x256 + x273 + x282 + x283 + x284 + x290 + x327 + x336 ++ x339 + x340 + x347 + x361 + x368 + x369 + x372 + x373 + x374 + x375 ++ x376 + x378 + x379 + x386 + x392 + x394 + x395 + x404 + x406 + x407 ++ x408 + x420 + x421 + x422 + x423 + x425 + x438 + x439 + x440 + x441 ++ x442 + x443 + x446 + x447 + x449 + x457 + x469 + x470 + x495 + x496 ++ x497 + x498 + x500 <= 1 + +x3 + x4 + x6 + x8 + x16 + x21 + x23 + x24 + x26 + x38 ++ x39 + x52 + x54 + x57 + x71 + x84 + x85 + x87 + x92 + x95 ++ x125 + x139 + x140 + x154 + x197 + x198 + x200 + x209 + x210 + x212 ++ x213 + x234 + x236 + x237 + x238 + x239 + x251 + x252 + x254 + x255 ++ x260 + x283 + x314 + x327 + x336 + x340 + x369 + x374 + x376 + x378 ++ x392 + x394 + x395 + x406 + x407 + x417 + x418 + x420 + x423 + x425 ++ x438 + x439 + x440 + x441 + x442 + x443 + x468 + x470 + x471 + x473 ++ x488 + x496 + x500 <= 1 + +x7 + x8 + x21 + x23 + x24 + x26 + x39 + x41 + x42 + x45 ++ x51 + x52 + x53 + x54 + x71 + x72 + x84 + x87 + x92 + x95 ++ x107 + x121 + x125 + x142 + x153 + x197 + x198 + x199 + x201 + x209 ++ x211 + x212 + x213 + x215 + x217 + x219 + x234 + x236 + x237 + x238 ++ x239 + x251 + x252 + x254 + x255 + x260 + x278 + x298 + x314 + x340 ++ x361 + x369 + x370 + x390 + x391 + x392 + x394 + x395 + x408 + x413 ++ x414 + x416 + x417 + x424 + x425 + x438 + x439 + x440 + x441 + x442 ++ x468 + x471 + x472 + x473 + x477 + x479 + x498 + x500 <= 1 + +x7 + x8 + x20 + x21 + x23 + x26 + x33 + x39 + x42 + x43 ++ x44 + x45 + x53 + x54 + x70 + x71 + x72 + x84 + x86 + x87 ++ x90 + x91 + x92 + x93 + x97 + x189 + x209 + x211 + x212 + x213 ++ x214 + x215 + x217 + x234 + x235 + x236 + x237 + x238 + x239 + x252 ++ x255 + x260 + x276 + x277 + x278 + x280 + x314 + x330 + x351 + x353 ++ x360 + x361 + x370 + x385 + x386 + x387 + x391 + x394 + x413 + x414 ++ x415 + x416 + x417 + x439 + x440 + x444 + x454 + x459 + x471 + x479 ++ x498 + x500 <= 1 + +x18 + x20 + x21 + x23 + x25 + x26 + x33 + x40 + x41 + x43 ++ x44 + x45 + x54 + x65 + x85 + x90 + x91 + x94 + x96 + x97 ++ x98 + x99 + x100 + x121 + x122 + x123 + x124 + x185 + x187 + x188 ++ x189 + x190 + x197 + x209 + x210 + x211 + x212 + x217 + x220 + x234 ++ x238 + x256 + x257 + x258 + x260 + x261 + x276 + x278 + x280 + x330 ++ x345 + x348 + x354 + x355 + x358 + x360 + x370 + x385 + x386 + x387 ++ x388 + x389 + x413 + x414 + x415 + x416 + x417 + x418 + x439 + x440 ++ x441 + x459 + x471 + x475 + x476 + x478 + x479 + x498 + x500 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 + x28 + x29 + x30 + x33 ++ x40 + x41 + x42 + x43 + x44 + x45 + x55 + x68 + x85 + x94 ++ x96 + x97 + x98 + x99 + x101 + x122 + x145 + x146 + x147 + x185 ++ x187 + x188 + x190 + x210 + x211 + x212 + x220 + x256 + x257 + x258 ++ x260 + x261 + x277 + x278 + x280 + x291 + x292 + x295 + x297 + x310 ++ x319 + x329 + x330 + x331 + x341 + x342 + x343 + x345 + x346 + x348 ++ x349 + x360 + x364 + x385 + x387 + x388 + x389 + x413 + x414 + x415 ++ x416 + x417 + x418 + x439 + x441 + x451 + x456 + x466 + x467 + x471 ++ x476 + x479 <= 1 + +x21 + x22 + x25 + x26 + x28 + x29 + x33 + x40 + x41 + x44 ++ x67 + x69 + x96 + x97 + x98 + x99 + x101 + x144 + x145 + x146 ++ x147 + x164 + x185 + x187 + x188 + x190 + x210 + x257 + x258 + x260 ++ x261 + x275 + x276 + x277 + x280 + x291 + x292 + x295 + x297 + x316 ++ x317 + x329 + x330 + x342 + x345 + x346 + x348 + x364 + x385 + x387 ++ x388 + x389 + x414 + x417 + x418 + x456 + x463 + x467 <= 1 + +x10 + x21 + x25 + x26 + x28 + x29 + x31 + x33 + x40 + x55 ++ x56 + x69 + x96 + x97 + x101 + x144 + x146 + x147 + x173 + x190 ++ x217 + x258 + x261 + x276 + x277 + x280 + x291 + x292 + x297 + x305 ++ x310 + x316 + x317 + x319 + x320 + x330 + x346 + x348 + x357 + x358 ++ x364 + x384 + x385 + x387 + x388 + x389 + x414 + x417 + x456 + x463 ++ x485 <= 1 + +x4 + x5 + x6 + x59 + x60 + x82 + x85 + x87 + x88 + x174 ++ x182 + x193 + x195 + x197 + x200 + x201 + x209 + x210 + x211 + x213 ++ x214 + x234 + x237 + x281 + x282 + x283 + x284 + x285 + x286 + x304 ++ x336 + x339 + x376 + x403 + x404 + x407 + x408 + x422 + x423 + x432 ++ x433 + x434 + x438 + x443 + x445 + x457 + x496 + x497 <= 1 + +x3 + x4 + x5 + x6 + x8 + x23 + x24 + x36 + x59 + x60 ++ x61 + x85 + x86 + x87 + x88 + x140 + x168 + x174 + x195 + x197 ++ x199 + x200 + x201 + x205 + x209 + x213 + x214 + x234 + x237 + x238 ++ x239 + x281 + x282 + x283 + x284 + x286 + x304 + x328 + x335 + x336 ++ x339 + x340 + x375 + x376 + x378 + x403 + x404 + x405 + x406 + x407 ++ x408 + x420 + x421 + x422 + x423 + x424 + x425 + x433 + x434 + x438 ++ x439 + x441 + x443 + x449 + x457 + x470 + x495 + x496 + x497 <= 1 + +x3 + x4 + x5 + x6 + x8 + x23 + x24 + x34 + x35 + x36 ++ x37 + x38 + x39 + x59 + x60 + x61 + x73 + x79 + x82 + x84 ++ x85 + x86 + x87 + x88 + x89 + x110 + x139 + x140 + x142 + x154 ++ x169 + x196 + x197 + x198 + x199 + x200 + x201 + x205 + x209 + x210 ++ x211 + x213 + x214 + x216 + x234 + x236 + x237 + x238 + x239 + x252 ++ x253 + x254 + x255 + x273 + x278 + x281 + x282 + x283 + x286 + x327 ++ x328 + x335 + x336 + x337 + x338 + x339 + x340 + x361 + x369 + x374 ++ x375 + x376 + x378 + x379 + x385 + x386 + x403 + x404 + x405 + x406 ++ x407 + x408 + x416 + x417 + x420 + x421 + x423 + x424 + x425 + x433 ++ x438 + x439 + x440 + x441 + x442 + x443 + x446 + x449 + x457 + x471 ++ x473 + x496 + x498 + x500 <= 1 + +x3 + x6 + x8 + x16 + x22 + x23 + x24 + x26 + x34 + x35 ++ x36 + x38 + x39 + x52 + x59 + x61 + x73 + x79 + x84 + x85 ++ x86 + x87 + x88 + x89 + x125 + x135 + x140 + x143 + x151 + x154 ++ x169 + x186 + x189 + x197 + x198 + x199 + x200 + x201 + x209 + x212 ++ x213 + x214 + x216 + x234 + x236 + x237 + x238 + x239 + x248 + x251 ++ x252 + x253 + x254 + x255 + x272 + x277 + x278 + x283 + x286 + x303 ++ x314 + x327 + x328 + x335 + x336 + x338 + x361 + x369 + x374 + x375 ++ x376 + x377 + x378 + x386 + x388 + x391 + x392 + x394 + x395 + x403 ++ x406 + x407 + x413 + x414 + x416 + x417 + x418 + x420 + x423 + x424 ++ x438 + x439 + x440 + x441 + x442 + x443 + x445 + x446 + x459 + x468 ++ x470 + x471 + x472 + x473 + x475 + x478 + x496 + x500 <= 1 + +x6 + x7 + x8 + x20 + x23 + x24 + x26 + x36 + x38 + x41 ++ x42 + x61 + x70 + x71 + x73 + x84 + x86 + x87 + x89 + x90 ++ x91 + x92 + x93 + x95 + x100 + x121 + x124 + x125 + x140 + x141 ++ x154 + x186 + x189 + x197 + x198 + x199 + x201 + x209 + x211 + x212 ++ x213 + x214 + x216 + x231 + x234 + x236 + x237 + x238 + x239 + x251 ++ x252 + x254 + x255 + x260 + x277 + x278 + x280 + x298 + x303 + x314 ++ x326 + x328 + x358 + x360 + x361 + x369 + x385 + x386 + x388 + x389 ++ x390 + x391 + x392 + x393 + x394 + x395 + x406 + x413 + x414 + x416 ++ x417 + x424 + x425 + x439 + x440 + x441 + x442 + x443 + x445 + x446 ++ x455 + x468 + x470 + x471 + x472 + x473 + x475 + x477 + x478 + x479 ++ x496 + x500 <= 1 + +x7 + x18 + x20 + x21 + x24 + x26 + x30 + x36 + x42 + x45 ++ x70 + x72 + x84 + x86 + x90 + x91 + x92 + x93 + x95 + x100 ++ x124 + x125 + x143 + x185 + x189 + x209 + x212 + x213 + x214 + x234 ++ x236 + x237 + x238 + x239 + x252 + x254 + x255 + x260 + x277 + x278 ++ x280 + x295 + x348 + x351 + x352 + x358 + x360 + x361 + x385 + x386 ++ x387 + x389 + x390 + x391 + x392 + x393 + x395 + x405 + x414 + x416 ++ x417 + x439 + x440 + x441 + x443 + x446 + x454 + x455 + x474 + x475 ++ x476 + x478 + x479 + x498 <= 1 + +x5 + x7 + x15 + x18 + x19 + x21 + x22 + x23 + x24 + x25 ++ x26 + x30 + x41 + x43 + x44 + x45 + x56 + x63 + x64 + x65 ++ x76 + x84 + x85 + x89 + x91 + x92 + x93 + x94 + x95 + x97 ++ x100 + x105 + x114 + x122 + x123 + x124 + x185 + x186 + x187 + x188 ++ x189 + x190 + x199 + x212 + x217 + x238 + x239 + x252 + x255 + x260 ++ x261 + x275 + x277 + x278 + x280 + x297 + x329 + x331 + x346 + x348 ++ x352 + x358 + x359 + x360 + x387 + x388 + x389 + x391 + x392 + x393 ++ x395 + x405 + x414 + x416 + x417 + x439 + x440 + x441 + x443 + x455 ++ x474 + x475 + x476 + x478 + x479 <= 1 + +x5 + x18 + x19 + x21 + x22 + x23 + x24 + x25 + x26 + x29 ++ x30 + x41 + x42 + x44 + x45 + x56 + x64 + x65 + x66 + x76 ++ x77 + x94 + x97 + x100 + x104 + x105 + x106 + x107 + x114 + x122 ++ x145 + x147 + x154 + x185 + x186 + x187 + x188 + x189 + x190 + x210 ++ x211 + x212 + x238 + x259 + x260 + x261 + x275 + x276 + x277 + x278 ++ x280 + x297 + x306 + x309 + x310 + x319 + x320 + x326 + x329 + x330 ++ x331 + x345 + x346 + x348 + x357 + x358 + x359 + x360 + x385 + x387 ++ x388 + x389 + x393 + x405 + x414 + x416 + x417 + x424 + x439 + x450 ++ x451 + x452 + x455 + x457 + x460 + x474 + x475 + x476 + x479 <= 1 + +x18 + x21 + x22 + x23 + x25 + x28 + x29 + x30 + x40 + x41 ++ x44 + x56 + x67 + x68 + x69 + x94 + x97 + x101 + x115 + x118 ++ x144 + x145 + x146 + x147 + x176 + x185 + x186 + x188 + x189 + x190 ++ x210 + x212 + x238 + x257 + x261 + x275 + x276 + x277 + x278 + x280 ++ x292 + x297 + x309 + x310 + x317 + x319 + x320 + x321 + x329 + x330 ++ x345 + x346 + x348 + x357 + x358 + x359 + x360 + x364 + x385 + x387 ++ x388 + x389 + x414 + x417 + x439 + x440 + x451 + x456 + x457 + x461 + <= 1 + +x10 + x21 + x22 + x25 + x31 + x56 + x120 + x146 + x173 + x176 ++ x217 + x234 + x276 + x277 + x293 + x297 + x305 + x310 + x316 + x317 ++ x320 + x322 + x362 + x364 + x384 + x385 + x387 + x388 + x414 + x417 ++ x456 + x458 + x463 + x485 <= 1 + +x3 + x4 + x48 + x59 + x60 + x82 + x83 + x88 + x151 + x154 ++ x168 + x170 + x177 + x178 + x182 + x193 + x194 + x198 + x200 + x201 ++ x208 + x209 + x214 + x234 + x236 + x237 + x281 + x282 + x283 + x284 ++ x285 + x372 + x391 + x404 + x405 + x407 + x421 + x422 + x423 + x432 ++ x433 + x434 + x438 + x442 + x443 + x445 + x457 + x472 + x476 + x482 ++ x497 <= 1 + +x3 + x4 + x5 + x6 + x23 + x36 + x37 + x46 + x48 + x59 ++ x60 + x78 + x79 + x82 + x83 + x84 + x85 + x86 + x88 + x89 ++ x168 + x169 + x174 + x177 + x182 + x194 + x197 + x198 + x199 + x200 ++ x201 + x209 + x214 + x216 + x234 + x235 + x236 + x237 + x238 + x239 ++ x250 + x281 + x282 + x283 + x284 + x285 + x286 + x299 + x300 + x301 ++ x302 + x303 + x304 + x328 + x335 + x337 + x339 + x372 + x375 + x376 ++ x377 + x390 + x391 + x404 + x405 + x406 + x407 + x408 + x420 + x421 ++ x422 + x424 + x425 + x432 + x433 + x434 + x437 + x438 + x439 + x442 ++ x443 + x457 + x469 + x472 + x476 + x497 <= 1 + +x3 + x4 + x5 + x6 + x23 + x34 + x36 + x37 + x78 + x79 ++ x82 + x84 + x85 + x86 + x87 + x88 + x89 + x110 + x131 + x143 ++ x154 + x169 + x186 + x196 + x197 + x198 + x199 + x200 + x201 + x205 ++ x209 + x213 + x214 + x216 + x228 + x234 + x235 + x236 + x237 + x238 ++ x239 + x252 + x253 + x254 + x255 + x256 + x281 + x283 + x285 + x286 ++ x299 + x300 + x301 + x302 + x324 + x326 + x327 + x328 + x335 + x337 ++ x338 + x339 + x372 + x374 + x375 + x377 + x385 + x390 + x391 + x392 ++ x393 + x404 + x405 + x406 + x408 + x420 + x421 + x422 + x423 + x424 ++ x425 + x432 + x433 + x434 + x438 + x439 + x440 + x442 + x443 + x445 ++ x468 + x469 + x472 + x476 + x496 + x497 + x499 <= 1 + +x5 + x22 + x23 + x25 + x26 + x34 + x35 + x36 + x37 + x38 ++ x79 + x80 + x84 + x85 + x86 + x87 + x88 + x89 + x135 + x140 ++ x143 + x151 + x154 + x169 + x186 + x188 + x196 + x197 + x198 + x199 ++ x200 + x209 + x234 + x237 + x238 + x239 + x248 + x251 + x252 + x253 ++ x255 + x272 + x281 + x285 + x286 + x294 + x301 + x303 + x314 + x319 ++ x323 + x324 + x326 + x327 + x328 + x335 + x337 + x338 + x361 + x374 ++ x375 + x377 + x378 + x385 + x390 + x391 + x392 + x393 + x394 + x395 ++ x403 + x404 + x406 + x408 + x423 + x424 + x438 + x439 + x440 + x441 ++ x442 + x443 + x445 + x459 + x468 + x469 + x475 + x496 + x499 <= 1 + +x3 + x7 + x22 + x23 + x24 + x25 + x26 + x35 + x36 + x38 ++ x41 + x84 + x86 + x88 + x89 + x91 + x93 + x95 + x124 + x149 ++ x150 + x152 + x154 + x185 + x186 + x187 + x188 + x189 + x190 + x197 ++ x198 + x199 + x201 + x212 + x216 + x234 + x235 + x236 + x237 + x238 ++ x239 + x248 + x251 + x252 + x253 + x255 + x260 + x277 + x278 + x280 ++ x285 + x286 + x295 + x298 + x306 + x319 + x326 + x335 + x358 + x359 ++ x360 + x361 + x369 + x374 + x377 + x378 + x385 + x388 + x390 + x391 ++ x392 + x393 + x394 + x395 + x403 + x406 + x408 + x423 + x439 + x440 ++ x441 + x442 + x443 + x445 + x446 + x459 + x468 + x472 + x475 + x478 ++ x479 + x496 <= 1 + +x7 + x15 + x17 + x19 + x20 + x22 + x23 + x24 + x25 + x26 ++ x30 + x31 + x36 + x38 + x41 + x43 + x44 + x71 + x73 + x84 ++ x85 + x86 + x89 + x91 + x93 + x94 + x95 + x100 + x113 + x124 ++ x141 + x143 + x149 + x154 + x185 + x186 + x187 + x188 + x189 + x190 ++ x199 + x212 + x213 + x234 + x235 + x236 + x237 + x238 + x239 + x252 ++ x253 + x255 + x260 + x261 + x275 + x277 + x278 + x280 + x295 + x297 ++ x298 + x309 + x310 + x325 + x348 + x358 + x359 + x360 + x361 + x369 ++ x385 + x387 + x388 + x390 + x391 + x392 + x393 + x395 + x405 + x408 ++ x414 + x416 + x424 + x439 + x440 + x441 + x442 + x443 + x446 + x450 ++ x452 + x454 + x455 + x460 + x471 + x473 + x474 + x475 + x476 + x478 + <= 1 + +x5 + x15 + x19 + x21 + x22 + x24 + x25 + x26 + x30 + x41 ++ x45 + x63 + x66 + x77 + x89 + x93 + x94 + x100 + x105 + x113 ++ x122 + x124 + x154 + x166 + x185 + x186 + x187 + x188 + x189 + x190 ++ x212 + x213 + x238 + x239 + x259 + x260 + x261 + x275 + x277 + x278 ++ x280 + x296 + x297 + x298 + x306 + x307 + x309 + x310 + x314 + x326 ++ x329 + x348 + x358 + x359 + x360 + x361 + x385 + x387 + x388 + x389 ++ x390 + x392 + x393 + x395 + x405 + x415 + x416 + x417 + x424 + x441 ++ x442 + x450 + x451 + x452 + x454 + x455 + x460 + x474 + x475 + x476 ++ x478 + x479 <= 1 + +x5 + x21 + x22 + x24 + x25 + x26 + x29 + x44 + x63 + x64 ++ x66 + x104 + x105 + x107 + x111 + x113 + x114 + x116 + x120 + x122 ++ x128 + x172 + x176 + x185 + x186 + x188 + x189 + x212 + x238 + x259 ++ x260 + x261 + x270 + x275 + x277 + x279 + x280 + x294 + x296 + x297 ++ x298 + x306 + x307 + x309 + x310 + x316 + x326 + x329 + x331 + x346 ++ x348 + x350 + x357 + x358 + x359 + x360 + x361 + x363 + x365 + x385 ++ x387 + x388 + x389 + x393 + x416 + x417 + x441 + x442 + x450 + x452 ++ x460 + x461 + x470 + x472 + x474 + x475 + x476 + x478 + x479 <= 1 + +x5 + x21 + x22 + x25 + x30 + x40 + x44 + x56 + x101 + x106 ++ x113 + x114 + x115 + x118 + x120 + x145 + x173 + x174 + x176 + x177 ++ x188 + x190 + x196 + x210 + x212 + x233 + x257 + x259 + x260 + x261 ++ x270 + x276 + x277 + x292 + x305 + x309 + x310 + x311 + x316 + x320 ++ x321 + x329 + x346 + x348 + x350 + x360 + x362 + x363 + x366 + x384 ++ x385 + x387 + x388 + x389 + x417 + x440 + x456 + x457 + x461 + x472 ++ x477 + x481 + x485 <= 1 + +x22 + x25 + x30 + x56 + x115 + x118 + x119 + x120 + x129 + x173 ++ x175 + x176 + x177 + x188 + x196 + x212 + x220 + x234 + x261 + x276 ++ x277 + x279 + x293 + x297 + x305 + x306 + x307 + x310 + x316 + x317 ++ x321 + x322 + x346 + x350 + x360 + x362 + x366 + x384 + x385 + x387 ++ x388 + x456 + x457 + x458 + x461 + x477 + x480 + x485 <= 1 + +x34 + x37 + x48 + x50 + x78 + x83 + x88 + x89 + x151 + x168 ++ x170 + x175 + x178 + x182 + x193 + x194 + x201 + x208 + x214 + x234 ++ x235 + x236 + x237 + x239 + x250 + x282 + x283 + x285 + x299 + x301 ++ x302 + x303 + x304 + x356 + x404 + x405 + x407 + x421 + x422 + x432 ++ x433 + x434 + x435 + x436 + x437 + x438 + x443 + x457 + x476 + x482 + <= 1 + +x3 + x5 + x37 + x46 + x47 + x48 + x59 + x78 + x79 + x82 ++ x83 + x88 + x143 + x150 + x168 + x169 + x170 + x174 + x177 + x180 ++ x182 + x199 + x234 + x235 + x236 + x239 + x250 + x253 + x281 + x282 ++ x283 + x284 + x285 + x286 + x299 + x300 + x302 + x303 + x304 + x318 ++ x328 + x356 + x375 + x376 + x405 + x407 + x408 + x418 + x420 + x421 ++ x422 + x432 + x434 + x435 + x436 + x437 + x438 + x443 + x469 + x476 ++ x493 + x497 <= 1 + +x3 + x4 + x26 + x34 + x35 + x37 + x41 + x78 + x79 + x80 ++ x83 + x84 + x85 + x86 + x88 + x89 + x131 + x143 + x151 + x154 ++ x168 + x169 + x170 + x175 + x181 + x196 + x198 + x199 + x214 + x216 ++ x227 + x234 + x235 + x236 + x237 + x238 + x239 + x245 + x252 + x253 ++ x281 + x285 + x286 + x294 + x300 + x301 + x302 + x339 + x356 + x360 ++ x361 + x374 + x375 + x377 + x385 + x390 + x391 + x393 + x395 + x420 ++ x421 + x425 + x438 + x440 + x443 + x458 + x460 + x469 + x497 + x499 + <= 1 + +x3 + x7 + x22 + x23 + x24 + x25 + x26 + x31 + x34 + x35 ++ x36 + x38 + x41 + x80 + x84 + x85 + x86 + x88 + x89 + x135 ++ x143 + x149 + x150 + x151 + x152 + x154 + x185 + x186 + x196 + x198 ++ x199 + x214 + x216 + x234 + x235 + x237 + x238 + x239 + x242 + x245 ++ x248 + x251 + x252 + x253 + x280 + x281 + x285 + x286 + x294 + x308 ++ x323 + x335 + x338 + x356 + x359 + x360 + x361 + x374 + x375 + x377 ++ x383 + x385 + x390 + x391 + x392 + x393 + x394 + x395 + x403 + x416 ++ x438 + x439 + x440 + x443 + x445 + x458 + x459 + x460 + x468 + x469 ++ x475 + x478 + x496 + x499 <= 1 + +x3 + x7 + x22 + x24 + x26 + x31 + x36 + x80 + x112 + x143 ++ x149 + x151 + x152 + x153 + x154 + x155 + x171 + x172 + x199 + x234 ++ x235 + x237 + x239 + x242 + x253 + x280 + x294 + x295 + x308 + x309 ++ x323 + x325 + x356 + x357 + x359 + x360 + x361 + x386 + x394 + x415 ++ x416 + x418 + x438 + x439 + x442 + x443 + x445 + x453 + x458 + x460 ++ x461 + x475 + x478 + x490 + x491 + x492 + x494 + x496 <= 1 + +x7 + x15 + x16 + x17 + x22 + x24 + x25 + x26 + x31 + x41 ++ x44 + x80 + x89 + x100 + x113 + x130 + x138 + x143 + x152 + x154 ++ x172 + x185 + x186 + x188 + x190 + x199 + x235 + x236 + x237 + x238 ++ x239 + x242 + x252 + x253 + x255 + x275 + x277 + x280 + x295 + x298 ++ x307 + x308 + x309 + x310 + x311 + x313 + x325 + x331 + x356 + x357 ++ x358 + x359 + x360 + x361 + x384 + x391 + x393 + x405 + x408 + x414 ++ x415 + x416 + x427 + x439 + x442 + x443 + x450 + x453 + x454 + x458 ++ x460 + x476 + x478 + x490 + x494 <= 1 + +x15 + x16 + x17 + x19 + x22 + x24 + x25 + x26 + x32 + x44 ++ x89 + x100 + x105 + x107 + x108 + x109 + x110 + x112 + x113 + x127 ++ x130 + x136 + x143 + x154 + x155 + x172 + x173 + x174 + x185 + x186 ++ x188 + x189 + x196 + x199 + x201 + x228 + x235 + x236 + x238 + x255 ++ x262 + x269 + x275 + x277 + x279 + x280 + x294 + x295 + x296 + x298 ++ x306 + x307 + x308 + x309 + x310 + x311 + x312 + x313 + x314 + x331 ++ x346 + x348 + x357 + x358 + x359 + x360 + x361 + x363 + x388 + x393 ++ x405 + x408 + x414 + x415 + x416 + x426 + x427 + x429 + x431 + x441 ++ x442 + x450 + x452 + x453 + x454 + x456 + x457 + x458 + x459 + x460 ++ x461 + x478 <= 1 + +x5 + x17 + x22 + x24 + x25 + x27 + x62 + x104 + x105 + x107 ++ x108 + x109 + x110 + x111 + x113 + x114 + x116 + x127 + x128 + x161 ++ x173 + x174 + x176 + x185 + x186 + x188 + x189 + x196 + x212 + x238 ++ x259 + x262 + x271 + x275 + x277 + x279 + x280 + x293 + x294 + x295 ++ x296 + x297 + x298 + x305 + x306 + x307 + x308 + x309 + x310 + x311 ++ x312 + x313 + x315 + x326 + x331 + x346 + x347 + x348 + x350 + x357 ++ x358 + x359 + x360 + x362 + x363 + x365 + x384 + x385 + x387 + x388 ++ x415 + x416 + x426 + x427 + x429 + x430 + x431 + x452 + x456 + x457 ++ x458 + x459 + x460 + x461 + x474 + x475 + x478 + x479 + x481 <= 1 + +x17 + x22 + x25 + x62 + x82 + x103 + x105 + x106 + x108 + x109 ++ x110 + x113 + x114 + x115 + x116 + x117 + x118 + x127 + x129 + x173 ++ x174 + x175 + x176 + x177 + x196 + x212 + x244 + x257 + x259 + x260 ++ x262 + x270 + x275 + x276 + x277 + x279 + x295 + x297 + x305 + x306 ++ x307 + x308 + x309 + x310 + x311 + x312 + x313 + x315 + x316 + x321 ++ x331 + x346 + x347 + x348 + x357 + x358 + x360 + x362 + x363 + x365 ++ x366 + x367 + x384 + x387 + x388 + x415 + x416 + x417 + x427 + x428 ++ x440 + x456 + x457 + x458 + x459 + x460 + x461 + x474 + x477 + x478 ++ x479 + x480 + x481 + x483 + x484 <= 1 + +x25 + x57 + x62 + x105 + x106 + x108 + x113 + x117 + x118 + x119 ++ x120 + x129 + x173 + x175 + x176 + x177 + x196 + x257 + x259 + x261 ++ x267 + x276 + x277 + x279 + x293 + x297 + x305 + x306 + x307 + x309 ++ x316 + x346 + x350 + x365 + x366 + x367 + x384 + x387 + x388 + x417 ++ x456 + x457 + x458 + x459 + x480 + x481 + x482 + x483 + x485 <= 1 + +x0 + x2 + x22 + x46 + x48 + x49 + x50 + x58 + x81 + x83 ++ x88 + x151 + x167 + x168 + x169 + x170 + x175 + x176 + x177 + x178 ++ x179 + x180 + x181 + x182 + x183 + x234 + x282 + x296 + x299 + x304 ++ x318 + x356 + x407 + x415 + x436 + x437 + x438 + x443 + x497 <= 1 + +x34 + x37 + x46 + x48 + x49 + x50 + x78 + x80 + x81 + x83 ++ x88 + x89 + x143 + x150 + x151 + x155 + x167 + x168 + x169 + x170 ++ x175 + x177 + x178 + x179 + x180 + x181 + x182 + x183 + x196 + x198 ++ x201 + x208 + x227 + x234 + x235 + x236 + x237 + x250 + x252 + x253 ++ x272 + x281 + x282 + x283 + x285 + x286 + x296 + x299 + x300 + x301 ++ x302 + x303 + x304 + x318 + x356 + x376 + x390 + x407 + x415 + x418 ++ x422 + x432 + x435 + x436 + x437 + x438 + x440 + x443 + x458 + x493 ++ x494 + x497 <= 1 + +x3 + x7 + x34 + x37 + x38 + x49 + x78 + x81 + x83 + x88 ++ x89 + x104 + x112 + x134 + x143 + x150 + x151 + x153 + x155 + x167 ++ x169 + x170 + x175 + x181 + x183 + x197 + x198 + x234 + x235 + x236 ++ x239 + x240 + x241 + x245 + x246 + x249 + x250 + x253 + x281 + x282 ++ x293 + x294 + x295 + x296 + x301 + x349 + x356 + x357 + x418 + x436 ++ x442 + x443 + x463 + x493 + x494 + x497 <= 1 + +x3 + x7 + x24 + x26 + x35 + x36 + x37 + x38 + x41 + x42 ++ x89 + x103 + x104 + x112 + x134 + x143 + x150 + x151 + x152 + x155 ++ x186 + x197 + x198 + x199 + x200 + x223 + x226 + x234 + x235 + x238 ++ x239 + x240 + x241 + x242 + x243 + x245 + x246 + x247 + x248 + x252 ++ x253 + x262 + x280 + x286 + x293 + x294 + x295 + x338 + x349 + x356 ++ x359 + x361 + x380 + x382 + x383 + x390 + x393 + x395 + x416 + x418 ++ x436 + x442 + x443 + x458 + x459 + x460 + x461 + x463 + x475 + x490 ++ x492 + x494 <= 1 + +x7 + x22 + x23 + x26 + x35 + x41 + x103 + x112 + x133 + x134 ++ x143 + x150 + x151 + x152 + x153 + x154 + x155 + x158 + x171 + x172 ++ x197 + x198 + x199 + x200 + x221 + x222 + x223 + x226 + x235 + x239 ++ x240 + x241 + x242 + x243 + x245 + x246 + x247 + x253 + x258 + x262 ++ x279 + x293 + x294 + x295 + x296 + x298 + x308 + x349 + x356 + x357 ++ x359 + x361 + x380 + x381 + x386 + x394 + x414 + x418 + x438 + x442 ++ x443 + x453 + x458 + x459 + x461 + x475 + x490 + x491 + x492 + x494 + <= 1 + +x110 + x112 + x132 + x133 + x134 + x143 + x150 + x152 + x155 + x167 ++ x171 + x172 + x199 + x200 + x221 + x223 + x235 + x241 + x243 + x245 ++ x247 + x253 + x258 + x262 + x279 + x293 + x294 + x295 + x296 + x298 ++ x350 + x356 + x357 + x359 + x361 + x381 + x386 + x414 + x418 + x442 ++ x458 + x459 + x460 + x461 + x489 + x490 + x491 + x492 + x494 <= 1 + +x5 + x22 + x24 + x25 + x89 + x103 + x104 + x105 + x107 + x108 ++ x109 + x110 + x111 + x112 + x113 + x114 + x128 + x136 + x152 + x155 ++ x172 + x173 + x174 + x188 + x189 + x255 + x258 + x259 + x262 + x269 ++ x271 + x274 + x275 + x279 + x288 + x293 + x294 + x295 + x296 + x297 ++ x298 + x302 + x306 + x307 + x308 + x309 + x310 + x311 + x312 + x313 ++ x315 + x346 + x347 + x348 + x350 + x357 + x358 + x359 + x360 + x365 ++ x388 + x416 + x426 + x429 + x430 + x431 + x453 + x456 + x457 + x458 ++ x459 + x460 + x461 + x474 + x484 <= 1 + +x22 + x58 + x62 + x82 + x105 + x107 + x108 + x109 + x110 + x111 ++ x112 + x113 + x114 + x116 + x127 + x128 + x137 + x150 + x155 + x162 ++ x173 + x174 + x176 + x177 + x185 + x188 + x189 + x190 + x196 + x225 ++ x257 + x258 + x259 + x262 + x269 + x271 + x275 + x279 + x290 + x293 ++ x294 + x295 + x296 + x297 + x298 + x305 + x306 + x307 + x308 + x309 ++ x310 + x311 + x312 + x313 + x315 + x347 + x350 + x357 + x358 + x359 ++ x384 + x388 + x415 + x416 + x426 + x427 + x430 + x431 + x456 + x457 ++ x458 + x459 + x460 + x461 + x474 + x481 + x484 <= 1 + +x25 + x57 + x58 + x62 + x82 + x103 + x105 + x106 + x107 + x108 ++ x109 + x114 + x115 + x116 + x117 + x119 + x129 + x137 + x173 + x174 ++ x176 + x177 + x190 + x196 + x198 + x225 + x244 + x252 + x257 + x259 ++ x262 + x270 + x271 + x279 + x294 + x295 + x296 + x297 + x298 + x305 ++ x306 + x307 + x308 + x309 + x311 + x313 + x315 + x348 + x357 + x367 ++ x384 + x387 + x388 + x397 + x415 + x416 + x426 + x427 + x428 + x440 ++ x456 + x457 + x458 + x459 + x460 + x461 + x477 + x480 + x481 + x482 ++ x483 + x484 <= 1 + +x25 + x57 + x62 + x91 + x105 + x106 + x108 + x114 + x173 + x175 ++ x176 + x177 + x196 + x244 + x252 + x257 + x259 + x262 + x267 + x279 ++ x297 + x298 + x305 + x306 + x307 + x309 + x321 + x357 + x366 + x384 ++ x387 + x388 + x415 + x428 + x456 + x457 + x458 + x460 + x480 + x481 ++ x482 + x483 + x484 + x485 <= 1 + +x0 + x1 + x2 + x46 + x49 + x50 + x80 + x81 + x153 + x167 ++ x168 + x169 + x170 + x175 + x178 + x179 + x180 + x181 + x183 + x234 ++ x236 + x282 + x318 + x349 + x356 + x407 + x411 + x415 + x435 + x437 ++ x478 <= 1 + +x1 + x2 + x8 + x34 + x37 + x49 + x50 + x78 + x80 + x81 ++ x83 + x150 + x151 + x153 + x167 + x168 + x169 + x170 + x175 + x178 ++ x179 + x180 + x181 + x183 + x192 + x201 + x234 + x236 + x237 + x240 ++ x244 + x249 + x253 + x268 + x272 + x296 + x299 + x300 + x318 + x356 ++ x407 + x415 + x418 + x435 + x436 + x493 <= 1 + +x25 + x34 + x35 + x37 + x60 + x80 + x88 + x104 + x150 + x151 ++ x152 + x153 + x155 + x167 + x169 + x170 + x175 + x183 + x186 + x234 ++ x235 + x236 + x239 + x240 + x243 + x244 + x249 + x253 + x293 + x294 ++ x296 + x300 + x345 + x349 + x350 + x356 + x377 + x408 + x418 + x443 ++ x482 + x493 + x494 <= 1 + +x7 + x34 + x35 + x88 + x104 + x111 + x143 + x150 + x151 + x152 ++ x153 + x155 + x167 + x168 + x170 + x171 + x186 + x198 + x200 + x221 ++ x222 + x223 + x224 + x226 + x235 + x236 + x239 + x240 + x243 + x244 ++ x246 + x249 + x252 + x253 + x279 + x293 + x294 + x296 + x322 + x345 ++ x349 + x350 + x356 + x380 + x382 + x383 + x386 + x408 + x418 + x443 + <= 1 + +x22 + x23 + x26 + x32 + x35 + x47 + x103 + x104 + x106 + x111 ++ x133 + x141 + x150 + x151 + x152 + x153 + x155 + x158 + x167 + x170 ++ x171 + x172 + x197 + x198 + x200 + x221 + x222 + x223 + x224 + x226 ++ x235 + x239 + x240 + x241 + x242 + x243 + x244 + x245 + x246 + x247 ++ x253 + x258 + x262 + x279 + x288 + x293 + x294 + x296 + x298 + x306 ++ x345 + x347 + x349 + x350 + x356 + x359 + x380 + x381 + x383 + x386 ++ x389 + x394 + x418 + x442 + x461 + x487 + x489 + x491 + x492 <= 1 + +x22 + x47 + x58 + x103 + x104 + x106 + x108 + x109 + x110 + x111 ++ x112 + x132 + x133 + x134 + x136 + x138 + x150 + x152 + x153 + x155 ++ x167 + x170 + x171 + x172 + x218 + x221 + x222 + x223 + x235 + x236 ++ x239 + x241 + x242 + x245 + x247 + x258 + x262 + x275 + x279 + x288 ++ x293 + x294 + x295 + x296 + x297 + x298 + x306 + x307 + x312 + x345 ++ x346 + x347 + x349 + x350 + x356 + x357 + x359 + x361 + x381 + x384 ++ x386 + x389 + x404 + x413 + x414 + x418 + x429 + x442 + x459 + x460 ++ x461 + x489 + x490 + x491 + x492 <= 1 + +x22 + x24 + x25 + x47 + x58 + x103 + x104 + x105 + x106 + x107 ++ x108 + x109 + x110 + x111 + x112 + x113 + x132 + x135 + x136 + x138 ++ x150 + x152 + x153 + x155 + x162 + x171 + x172 + x222 + x224 + x225 ++ x239 + x242 + x258 + x259 + x262 + x269 + x270 + x271 + x272 + x274 ++ x275 + x279 + x288 + x293 + x294 + x295 + x296 + x297 + x298 + x305 ++ x306 + x307 + x308 + x311 + x312 + x313 + x315 + x333 + x345 + x346 ++ x347 + x350 + x356 + x357 + x358 + x384 + x386 + x388 + x418 + x429 ++ x430 + x457 + x458 + x459 + x460 + x461 + x490 + x491 <= 1 + +x8 + x22 + x47 + x57 + x58 + x62 + x103 + x105 + x106 + x107 ++ x108 + x109 + x111 + x112 + x132 + x135 + x136 + x137 + x138 + x150 ++ x162 + x172 + x173 + x174 + x176 + x177 + x184 + x196 + x224 + x225 ++ x257 + x258 + x259 + x262 + x269 + x270 + x272 + x274 + x275 + x278 ++ x279 + x288 + x293 + x295 + x296 + x298 + x305 + x308 + x309 + x315 ++ x350 + x357 + x358 + x359 + x384 + x416 + x418 + x430 + x431 + x456 ++ x458 + x459 + x460 + x461 + x480 + x483 <= 1 + +x8 + x57 + x58 + x62 + x103 + x105 + x106 + x107 + x108 + x109 ++ x137 + x138 + x172 + x173 + x174 + x175 + x176 + x177 + x184 + x190 ++ x210 + x225 + x257 + x258 + x259 + x262 + x269 + x270 + x271 + x274 ++ x275 + x294 + x297 + x298 + x305 + x307 + x308 + x312 + x315 + x357 ++ x359 + x367 + x379 + x384 + x388 + x416 + x418 + x426 + x428 + x431 ++ x456 + x457 + x458 + x459 + x460 + x461 + x468 + x477 + x480 + x481 ++ x482 + x483 + x484 + x485 <= 1 + +x25 + x103 + x106 + x107 + x108 + x160 + x173 + x174 + x175 + x176 ++ x177 + x184 + x210 + x259 + x274 + x278 + x305 + x306 + x307 + x308 ++ x321 + x324 + x379 + x384 + x387 + x388 + x418 + x421 + x428 + x456 ++ x457 + x459 + x460 + x461 + x480 + x482 + x483 + x484 + x485 <= 1 + +x0 + x1 + x42 + x46 + x49 + x81 + x153 + x167 + x169 + x178 ++ x179 + x180 + x183 + x234 + x236 + x282 + x317 + x318 + x349 + x356 ++ x407 <= 1 + +x8 + x34 + x50 + x51 + x56 + x78 + x81 + x150 + x151 + x152 ++ x153 + x167 + x168 + x170 + x171 + x175 + x179 + x180 + x181 + x185 ++ x191 + x192 + x234 + x235 + x236 + x239 + x253 + x272 + x296 + x356 ++ x406 + x407 + x435 + x493 <= 1 + +x25 + x30 + x51 + x56 + x60 + x81 + x104 + x139 + x150 + x151 ++ x152 + x153 + x155 + x167 + x168 + x170 + x171 + x175 + x187 + x191 ++ x192 + x235 + x236 + x239 + x240 + x243 + x253 + x272 + x293 + x294 ++ x296 + x356 + x377 + x382 + x406 + x418 + x489 + x493 <= 1 + +x22 + x25 + x35 + x81 + x88 + x104 + x150 + x151 + x152 + x153 ++ x155 + x167 + x168 + x170 + x171 + x191 + x198 + x221 + x222 + x224 ++ x226 + x235 + x236 + x239 + x240 + x241 + x243 + x244 + x249 + x263 ++ x293 + x294 + x296 + x322 + x359 + x377 + x382 + x418 + x486 + x489 ++ x493 <= 1 + +x22 + x25 + x103 + x104 + x152 + x153 + x155 + x167 + x168 + x171 ++ x200 + x211 + x221 + x224 + x225 + x226 + x236 + x241 + x242 + x243 ++ x244 + x245 + x262 + x293 + x294 + x295 + x296 + x298 + x322 + x334 ++ x347 + x350 + x358 + x359 + x386 + x416 + x418 + x442 + x461 + x486 ++ x487 + x489 + x492 <= 1 + +x22 + x25 + x58 + x103 + x104 + x106 + x110 + x111 + x133 + x134 ++ x152 + x153 + x155 + x167 + x168 + x171 + x172 + x211 + x218 + x221 ++ x222 + x223 + x224 + x225 + x226 + x235 + x236 + x237 + x239 + x241 ++ x258 + x259 + x262 + x275 + x279 + x288 + x293 + x294 + x295 + x296 ++ x297 + x298 + x322 + x332 + x334 + x345 + x347 + x350 + x356 + x357 ++ x358 + x386 + x413 + x418 + x458 + x460 + x461 + x465 + x469 + x489 ++ x490 + x491 + x492 <= 1 + +x24 + x25 + x47 + x58 + x103 + x104 + x106 + x107 + x108 + x110 ++ x111 + x112 + x133 + x152 + x153 + x155 + x171 + x172 + x222 + x223 ++ x224 + x225 + x226 + x235 + x237 + x239 + x258 + x259 + x262 + x274 ++ x275 + x279 + x288 + x293 + x294 + x295 + x296 + x297 + x298 + x305 ++ x313 + x332 + x333 + x346 + x347 + x357 + x358 + x386 + x418 + x458 ++ x460 + x461 + x469 + x489 + x491 <= 1 + +x8 + x62 + x103 + x106 + x108 + x109 + x132 + x135 + x136 + x137 ++ x172 + x174 + x177 + x184 + x196 + x269 + x270 + x272 + x274 + x275 ++ x298 + x308 + x350 + x384 + x430 + x456 + x461 <= 1 + +x8 + x57 + x58 + x62 + x103 + x105 + x107 + x108 + x109 + x111 ++ x114 + x132 + x137 + x138 + x172 + x173 + x174 + x176 + x177 + x196 ++ x210 + x234 + x257 + x258 + x259 + x262 + x269 + x270 + x271 + x274 ++ x275 + x278 + x279 + x288 + x293 + x295 + x298 + x305 + x307 + x308 ++ x312 + x315 + x350 + x357 + x384 + x418 + x456 + x457 + x458 + x459 ++ x460 + x461 + x473 + x483 <= 1 + +x43 + x106 + x173 + x174 + x175 + x176 + x184 + x259 + x275 + x278 ++ x305 + x308 + x384 + x388 + x421 + x428 + x456 + x457 + x460 + x461 ++ x464 + x484 <= 1 + +x0 + x1 + x2 <= 1 + +x3 + x4 + x5 + x6 + x7 + x8 <= 1 + +x11 + x12 <= 1 + +x13 + x14 <= 1 + +x15 + x16 + x17 + x18 + x19 + x20 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 + x38 + x39 <= 1 + +x40 + x41 + x42 + x43 + x44 + x45 <= 1 + +x46 + x47 + x48 + x49 + x50 <= 1 + +x51 + x52 + x53 + x54 + x55 + x56 <= 1 + +x57 + x58 + x59 + x60 + x61 + x62 <= 1 + +x63 + x64 + x65 + x66 <= 1 + +x67 + x68 + x69 <= 1 + +x70 + x71 + x72 + x73 + x74 + x75 <= 1 + +x76 + x77 <= 1 + +x78 + x79 + x80 + x81 + x82 + x83 <= 1 + +x84 + x85 + x86 + x87 + x88 + x89 <= 1 + +x90 + x91 + x92 + x93 + x94 + x95 <= 1 + +x96 + x97 + x98 + x99 + x100 + x101 <= 1 + +x103 + x104 + x105 + x106 + x107 + x108 <= 1 + +x109 + x110 + x111 + x112 + x113 + x114 <= 1 + +x115 + x116 + x117 + x118 + x119 + x120 <= 1 + +x121 + x122 + x123 + x124 + x125 + x126 <= 1 + +x127 + x128 + x129 <= 1 + +x132 + x133 + x134 + x135 + x136 + x137 <= 1 + +x138 + x139 + x140 + x141 + x142 + x143 <= 1 + +x144 + x145 + x146 + x147 + x148 + x149 <= 1 + +x150 + x151 + x152 + x153 + x154 + x155 <= 1 + +x156 + x157 + x158 + x159 + x160 + x161 <= 1 + +x163 + x164 + x165 + x166 <= 1 + +x167 + x168 + x169 + x170 + x171 + x172 <= 1 + +x173 + x174 + x175 + x176 + x177 <= 1 + +x178 + x179 + x180 + x181 + x182 + x183 <= 1 + +x185 + x186 + x187 + x188 + x189 + x190 <= 1 + +x191 + x192 <= 1 + +x193 + x194 + x195 <= 1 + +x196 + x197 + x198 + x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x209 + x210 + x211 + x212 + x213 + x214 <= 1 + +x215 + x216 + x217 + x218 + x219 + x220 <= 1 + +x221 + x222 + x223 + x224 + x225 + x226 <= 1 + +x227 + x228 <= 1 + +x229 + x230 + x231 + x232 <= 1 + +x234 + x235 + x236 + x237 + x238 + x239 <= 1 + +x240 + x241 + x242 + x243 + x244 + x245 <= 1 + +x246 + x247 + x248 + x249 + x250 <= 1 + +x251 + x252 + x253 + x254 + x255 + x256 <= 1 + +x257 + x258 + x259 + x260 + x261 + x262 <= 1 + +x264 + x265 + x266 <= 1 + + <= 1 + +x269 + x270 + x271 + x272 + x273 + x274 <= 1 + +x275 + x276 + x277 + x278 + x279 + x280 <= 1 + +x281 + x282 + x283 + x284 + x285 + x286 <= 1 + +x287 + x288 + x289 + x290 + x291 + x292 <= 1 + +x293 + x294 + x295 + x296 + x297 + x298 <= 1 + +x299 + x300 + x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 + x310 <= 1 + +x311 + x312 + x313 + x314 + x315 + x316 <= 1 + +x317 + x318 + x319 + x320 + x321 + x322 <= 1 + +x323 + x324 + x325 <= 1 + +x326 + x327 + x328 + x329 + x330 + x331 <= 1 + +x332 + x333 + x334 <= 1 + +x335 + x336 + x337 + x338 + x339 + x340 <= 1 + +x341 + x342 + x343 + x344 <= 1 + +x345 + x346 + x347 + x348 + x349 + x350 <= 1 + +x351 + x352 + x353 <= 1 + +x354 + x355 <= 1 + +x356 + x357 + x358 + x359 + x360 + x361 <= 1 + +x362 + x363 + x364 + x365 + x366 + x367 <= 1 + +x368 + x369 + x370 + x371 + x372 + x373 <= 1 + +x374 + x375 + x376 + x377 + x378 + x379 <= 1 + +x380 + x381 + x382 + x383 <= 1 + +x384 + x385 + x386 + x387 + x388 + x389 <= 1 + +x390 + x391 + x392 + x393 + x394 + x395 <= 1 + +x396 + x397 + x398 <= 1 + +x399 + x400 + x401 + x402 <= 1 + +x403 + x404 + x405 + x406 + x407 + x408 <= 1 + +x409 + x410 + x411 + x412 <= 1 + +x413 + x414 + x415 + x416 + x417 + x418 <= 1 + +x420 + x421 + x422 + x423 + x424 + x425 <= 1 + +x426 + x427 + x428 + x429 + x430 + x431 <= 1 + +x432 + x433 + x434 + x435 + x436 + x437 <= 1 + +x438 + x439 + x440 + x441 + x442 + x443 <= 1 + +x444 + x445 + x446 + x447 + x448 + x449 <= 1 + +x450 + x451 + x452 + x453 + x454 + x455 <= 1 + +x456 + x457 + x458 + x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 <= 1 + +x489 + x490 + x491 + x492 + x493 + x494 <= 1 + +x495 + x496 + x497 + x498 + x499 + x500 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 + +end diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS100-small-test.txt b/sparkle/Components/paramils-v3.0.0/example_data/CATS100-small-test.txt new file mode 100644 index 000000000..16f09c50d --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS100-small-test.txt @@ -0,0 +1,10 @@ +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0000.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0001.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0003.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0006.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0010.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0013.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0014.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0015.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0017.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0019.lp diff --git a/sparkle/Components/paramils-v3.0.0/example_data/CATS100-small-train.txt b/sparkle/Components/paramils-v3.0.0/example_data/CATS100-small-train.txt new file mode 100644 index 000000000..20ab10bdf --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/CATS100-small-train.txt @@ -0,0 +1,10 @@ +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0002.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0004.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0005.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0007.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0008.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0009.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0011.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0012.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0016.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0018.lp diff --git a/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf new file mode 100644 index 000000000..50a1f0323 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf @@ -0,0 +1,5936 @@ +c created by edge2cnf +p cnf 774 5934 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-25 -769 0 +-26 -770 0 +-27 -771 0 +-28 -772 0 +-29 -773 0 +-30 -774 0 +-19 -769 0 +-20 -770 0 +-21 -771 0 +-22 -772 0 +-23 -773 0 +-24 -774 0 +-13 -769 0 +-14 -770 0 +-15 -771 0 +-16 -772 0 +-17 -773 0 +-18 -774 0 +-7 -769 0 +-8 -770 0 +-9 -771 0 +-10 -772 0 +-11 -773 0 +-12 -774 0 +-1 -769 0 +-2 -770 0 +-3 -771 0 +-4 -772 0 +-5 -773 0 +-6 -774 0 +-19 -763 0 +-20 -764 0 +-21 -765 0 +-22 -766 0 +-23 -767 0 +-24 -768 0 +-13 -763 0 +-14 -764 0 +-15 -765 0 +-16 -766 0 +-17 -767 0 +-18 -768 0 +-7 -763 0 +-8 -764 0 +-9 -765 0 +-10 -766 0 +-11 -767 0 +-12 -768 0 +-1 -763 0 +-2 -764 0 +-3 -765 0 +-4 -766 0 +-5 -767 0 +-6 -768 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-13 -757 0 +-14 -758 0 +-15 -759 0 +-16 -760 0 +-17 -761 0 +-18 -762 0 +-7 -757 0 +-8 -758 0 +-9 -759 0 +-10 -760 0 +-11 -761 0 +-12 -762 0 +-1 -757 0 +-2 -758 0 +-3 -759 0 +-4 -760 0 +-5 -761 0 +-6 -762 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-7 -751 0 +-8 -752 0 +-9 -753 0 +-10 -754 0 +-11 -755 0 +-12 -756 0 +-1 -751 0 +-2 -752 0 +-3 -753 0 +-4 -754 0 +-5 -755 0 +-6 -756 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-1 -745 0 +-2 -746 0 +-3 -747 0 +-4 -748 0 +-5 -749 0 +-6 -750 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-271 -679 0 +-272 -680 0 +-273 -681 0 +-274 -682 0 +-275 -683 0 +-276 -684 0 +-511 -715 0 +-512 -716 0 +-513 -717 0 +-514 -718 0 +-515 -719 0 +-516 -720 0 +-103 -289 0 +-104 -290 0 +-105 -291 0 +-106 -292 0 +-107 -293 0 +-108 -294 0 +-67 -301 0 +-68 -302 0 +-69 -303 0 +-70 -304 0 +-71 -305 0 +-72 -306 0 +-343 -577 0 +-344 -578 0 +-345 -579 0 +-346 -580 0 +-347 -581 0 +-348 -582 0 diff --git a/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf new file mode 100644 index 000000000..acc999adb --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf @@ -0,0 +1,7546 @@ +c created by edge2cnf +p cnf 984 7544 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-979 -980 0 +-979 -981 0 +-979 -982 0 +-979 -983 0 +-979 -984 0 +-980 -981 0 +-980 -982 0 +-980 -983 0 +-980 -984 0 +-981 -982 0 +-981 -983 0 +-981 -984 0 +-982 -983 0 +-982 -984 0 +-983 -984 0 +979 980 981 982 983 984 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-19 -973 0 +-20 -974 0 +-21 -975 0 +-22 -976 0 +-23 -977 0 +-24 -978 0 +-25 -979 0 +-26 -980 0 +-27 -981 0 +-28 -982 0 +-29 -983 0 +-30 -984 0 +-19 -979 0 +-20 -980 0 +-21 -981 0 +-22 -982 0 +-23 -983 0 +-24 -984 0 +-13 -979 0 +-14 -980 0 +-15 -981 0 +-16 -982 0 +-17 -983 0 +-18 -984 0 +-7 -979 0 +-8 -980 0 +-9 -981 0 +-10 -982 0 +-11 -983 0 +-12 -984 0 +-1 -979 0 +-2 -980 0 +-3 -981 0 +-4 -982 0 +-5 -983 0 +-6 -984 0 +-13 -973 0 +-14 -974 0 +-15 -975 0 +-16 -976 0 +-17 -977 0 +-18 -978 0 +-1 -973 0 +-2 -974 0 +-3 -975 0 +-4 -976 0 +-5 -977 0 +-6 -978 0 +-973 -979 0 +-974 -980 0 +-975 -981 0 +-976 -982 0 +-977 -983 0 +-978 -984 0 +-13 -967 0 +-14 -968 0 +-15 -969 0 +-16 -970 0 +-17 -971 0 +-18 -972 0 +-7 -967 0 +-8 -968 0 +-9 -969 0 +-10 -970 0 +-11 -971 0 +-12 -972 0 +-1 -967 0 +-2 -968 0 +-3 -969 0 +-4 -970 0 +-5 -971 0 +-6 -972 0 +-967 -979 0 +-968 -980 0 +-969 -981 0 +-970 -982 0 +-971 -983 0 +-972 -984 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-7 -961 0 +-8 -962 0 +-9 -963 0 +-10 -964 0 +-11 -965 0 +-12 -966 0 +-1 -961 0 +-2 -962 0 +-3 -963 0 +-4 -964 0 +-5 -965 0 +-6 -966 0 +-961 -979 0 +-962 -980 0 +-963 -981 0 +-964 -982 0 +-965 -983 0 +-966 -984 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-1 -955 0 +-2 -956 0 +-3 -957 0 +-4 -958 0 +-5 -959 0 +-6 -960 0 +-955 -979 0 +-956 -980 0 +-957 -981 0 +-958 -982 0 +-959 -983 0 +-960 -984 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-949 -979 0 +-950 -980 0 +-951 -981 0 +-952 -982 0 +-953 -983 0 +-954 -984 0 +-949 -973 0 +-950 -974 0 +-951 -975 0 +-952 -976 0 +-953 -977 0 +-954 -978 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -919 0 +-890 -920 0 +-891 -921 0 +-892 -922 0 +-893 -923 0 +-894 -924 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-7 -265 0 +-8 -266 0 +-9 -267 0 +-10 -268 0 +-11 -269 0 +-12 -270 0 +-295 -625 0 +-296 -626 0 +-297 -627 0 +-298 -628 0 +-299 -629 0 +-300 -630 0 +-397 -559 0 +-398 -560 0 +-399 -561 0 +-400 -562 0 +-401 -563 0 +-402 -564 0 +-235 -727 0 +-236 -728 0 +-237 -729 0 +-238 -730 0 +-239 -731 0 +-240 -732 0 +-43 -661 0 +-44 -662 0 +-45 -663 0 +-46 -664 0 +-47 -665 0 +-48 -666 0 +-523 -793 0 +-524 -794 0 +-525 -795 0 +-526 -796 0 +-527 -797 0 +-528 -798 0 diff --git a/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf new file mode 100644 index 000000000..039a62814 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf @@ -0,0 +1,7868 @@ +c created by edge2cnf +p cnf 1026 7866 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-979 -980 0 +-979 -981 0 +-979 -982 0 +-979 -983 0 +-979 -984 0 +-980 -981 0 +-980 -982 0 +-980 -983 0 +-980 -984 0 +-981 -982 0 +-981 -983 0 +-981 -984 0 +-982 -983 0 +-982 -984 0 +-983 -984 0 +979 980 981 982 983 984 0 +-985 -986 0 +-985 -987 0 +-985 -988 0 +-985 -989 0 +-985 -990 0 +-986 -987 0 +-986 -988 0 +-986 -989 0 +-986 -990 0 +-987 -988 0 +-987 -989 0 +-987 -990 0 +-988 -989 0 +-988 -990 0 +-989 -990 0 +985 986 987 988 989 990 0 +-991 -992 0 +-991 -993 0 +-991 -994 0 +-991 -995 0 +-991 -996 0 +-992 -993 0 +-992 -994 0 +-992 -995 0 +-992 -996 0 +-993 -994 0 +-993 -995 0 +-993 -996 0 +-994 -995 0 +-994 -996 0 +-995 -996 0 +991 992 993 994 995 996 0 +-997 -998 0 +-997 -999 0 +-997 -1000 0 +-997 -1001 0 +-997 -1002 0 +-998 -999 0 +-998 -1000 0 +-998 -1001 0 +-998 -1002 0 +-999 -1000 0 +-999 -1001 0 +-999 -1002 0 +-1000 -1001 0 +-1000 -1002 0 +-1001 -1002 0 +997 998 999 1000 1001 1002 0 +-1003 -1004 0 +-1003 -1005 0 +-1003 -1006 0 +-1003 -1007 0 +-1003 -1008 0 +-1004 -1005 0 +-1004 -1006 0 +-1004 -1007 0 +-1004 -1008 0 +-1005 -1006 0 +-1005 -1007 0 +-1005 -1008 0 +-1006 -1007 0 +-1006 -1008 0 +-1007 -1008 0 +1003 1004 1005 1006 1007 1008 0 +-1009 -1010 0 +-1009 -1011 0 +-1009 -1012 0 +-1009 -1013 0 +-1009 -1014 0 +-1010 -1011 0 +-1010 -1012 0 +-1010 -1013 0 +-1010 -1014 0 +-1011 -1012 0 +-1011 -1013 0 +-1011 -1014 0 +-1012 -1013 0 +-1012 -1014 0 +-1013 -1014 0 +1009 1010 1011 1012 1013 1014 0 +-1015 -1016 0 +-1015 -1017 0 +-1015 -1018 0 +-1015 -1019 0 +-1015 -1020 0 +-1016 -1017 0 +-1016 -1018 0 +-1016 -1019 0 +-1016 -1020 0 +-1017 -1018 0 +-1017 -1019 0 +-1017 -1020 0 +-1018 -1019 0 +-1018 -1020 0 +-1019 -1020 0 +1015 1016 1017 1018 1019 1020 0 +-1021 -1022 0 +-1021 -1023 0 +-1021 -1024 0 +-1021 -1025 0 +-1021 -1026 0 +-1022 -1023 0 +-1022 -1024 0 +-1022 -1025 0 +-1022 -1026 0 +-1023 -1024 0 +-1023 -1025 0 +-1023 -1026 0 +-1024 -1025 0 +-1024 -1026 0 +-1025 -1026 0 +1021 1022 1023 1024 1025 1026 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-1003 -1021 0 +-1004 -1022 0 +-1005 -1023 0 +-1006 -1024 0 +-1007 -1025 0 +-1008 -1026 0 +-25 -1021 0 +-26 -1022 0 +-27 -1023 0 +-28 -1024 0 +-29 -1025 0 +-30 -1026 0 +-19 -1021 0 +-20 -1022 0 +-21 -1023 0 +-22 -1024 0 +-23 -1025 0 +-24 -1026 0 +-13 -1021 0 +-14 -1022 0 +-15 -1023 0 +-16 -1024 0 +-17 -1025 0 +-18 -1026 0 +-7 -1021 0 +-8 -1022 0 +-9 -1023 0 +-10 -1024 0 +-11 -1025 0 +-12 -1026 0 +-1 -1021 0 +-2 -1022 0 +-3 -1023 0 +-4 -1024 0 +-5 -1025 0 +-6 -1026 0 +-19 -1015 0 +-20 -1016 0 +-21 -1017 0 +-22 -1018 0 +-23 -1019 0 +-24 -1020 0 +-13 -1015 0 +-14 -1016 0 +-15 -1017 0 +-16 -1018 0 +-17 -1019 0 +-18 -1020 0 +-7 -1015 0 +-8 -1016 0 +-9 -1017 0 +-10 -1018 0 +-11 -1019 0 +-12 -1020 0 +-1 -1015 0 +-2 -1016 0 +-3 -1017 0 +-4 -1018 0 +-5 -1019 0 +-6 -1020 0 +-1015 -1021 0 +-1016 -1022 0 +-1017 -1023 0 +-1018 -1024 0 +-1019 -1025 0 +-1020 -1026 0 +-13 -1009 0 +-14 -1010 0 +-15 -1011 0 +-16 -1012 0 +-17 -1013 0 +-18 -1014 0 +-7 -1009 0 +-8 -1010 0 +-9 -1011 0 +-10 -1012 0 +-11 -1013 0 +-12 -1014 0 +-1 -1009 0 +-2 -1010 0 +-3 -1011 0 +-4 -1012 0 +-5 -1013 0 +-6 -1014 0 +-1009 -1021 0 +-1010 -1022 0 +-1011 -1023 0 +-1012 -1024 0 +-1013 -1025 0 +-1014 -1026 0 +-1009 -1015 0 +-1010 -1016 0 +-1011 -1017 0 +-1012 -1018 0 +-1013 -1019 0 +-1014 -1020 0 +-7 -1003 0 +-8 -1004 0 +-9 -1005 0 +-10 -1006 0 +-11 -1007 0 +-12 -1008 0 +-1 -1003 0 +-2 -1004 0 +-3 -1005 0 +-4 -1006 0 +-5 -1007 0 +-6 -1008 0 +-1003 -1015 0 +-1004 -1016 0 +-1005 -1017 0 +-1006 -1018 0 +-1007 -1019 0 +-1008 -1020 0 +-1003 -1009 0 +-1004 -1010 0 +-1005 -1011 0 +-1006 -1012 0 +-1007 -1013 0 +-1008 -1014 0 +-1 -997 0 +-2 -998 0 +-3 -999 0 +-4 -1000 0 +-5 -1001 0 +-6 -1002 0 +-997 -1021 0 +-998 -1022 0 +-999 -1023 0 +-1000 -1024 0 +-1001 -1025 0 +-1002 -1026 0 +-997 -1015 0 +-998 -1016 0 +-999 -1017 0 +-1000 -1018 0 +-1001 -1019 0 +-1002 -1020 0 +-997 -1009 0 +-998 -1010 0 +-999 -1011 0 +-1000 -1012 0 +-1001 -1013 0 +-1002 -1014 0 +-997 -1003 0 +-998 -1004 0 +-999 -1005 0 +-1000 -1006 0 +-1001 -1007 0 +-1002 -1008 0 +-991 -1021 0 +-992 -1022 0 +-993 -1023 0 +-994 -1024 0 +-995 -1025 0 +-996 -1026 0 +-991 -1015 0 +-992 -1016 0 +-993 -1017 0 +-994 -1018 0 +-995 -1019 0 +-996 -1020 0 +-991 -1009 0 +-992 -1010 0 +-993 -1011 0 +-994 -1012 0 +-995 -1013 0 +-996 -1014 0 +-991 -1003 0 +-992 -1004 0 +-993 -1005 0 +-994 -1006 0 +-995 -1007 0 +-996 -1008 0 +-991 -997 0 +-992 -998 0 +-993 -999 0 +-994 -1000 0 +-995 -1001 0 +-996 -1002 0 +-985 -1015 0 +-986 -1016 0 +-987 -1017 0 +-988 -1018 0 +-989 -1019 0 +-990 -1020 0 +-985 -1009 0 +-986 -1010 0 +-987 -1011 0 +-988 -1012 0 +-989 -1013 0 +-990 -1014 0 +-985 -1003 0 +-986 -1004 0 +-987 -1005 0 +-988 -1006 0 +-989 -1007 0 +-990 -1008 0 +-985 -997 0 +-986 -998 0 +-987 -999 0 +-988 -1000 0 +-989 -1001 0 +-990 -1002 0 +-985 -991 0 +-986 -992 0 +-987 -993 0 +-988 -994 0 +-989 -995 0 +-990 -996 0 +-979 -1009 0 +-980 -1010 0 +-981 -1011 0 +-982 -1012 0 +-983 -1013 0 +-984 -1014 0 +-979 -1003 0 +-980 -1004 0 +-981 -1005 0 +-982 -1006 0 +-983 -1007 0 +-984 -1008 0 +-979 -997 0 +-980 -998 0 +-981 -999 0 +-982 -1000 0 +-983 -1001 0 +-984 -1002 0 +-979 -991 0 +-980 -992 0 +-981 -993 0 +-982 -994 0 +-983 -995 0 +-984 -996 0 +-979 -985 0 +-980 -986 0 +-981 -987 0 +-982 -988 0 +-983 -989 0 +-984 -990 0 +-973 -1003 0 +-974 -1004 0 +-975 -1005 0 +-976 -1006 0 +-977 -1007 0 +-978 -1008 0 +-973 -997 0 +-974 -998 0 +-975 -999 0 +-976 -1000 0 +-977 -1001 0 +-978 -1002 0 +-973 -991 0 +-974 -992 0 +-975 -993 0 +-976 -994 0 +-977 -995 0 +-978 -996 0 +-973 -985 0 +-974 -986 0 +-975 -987 0 +-976 -988 0 +-977 -989 0 +-978 -990 0 +-973 -979 0 +-974 -980 0 +-975 -981 0 +-976 -982 0 +-977 -983 0 +-978 -984 0 +-967 -997 0 +-968 -998 0 +-969 -999 0 +-970 -1000 0 +-971 -1001 0 +-972 -1002 0 +-967 -991 0 +-968 -992 0 +-969 -993 0 +-970 -994 0 +-971 -995 0 +-972 -996 0 +-967 -985 0 +-968 -986 0 +-969 -987 0 +-970 -988 0 +-971 -989 0 +-972 -990 0 +-967 -979 0 +-968 -980 0 +-969 -981 0 +-970 -982 0 +-971 -983 0 +-972 -984 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-961 -991 0 +-962 -992 0 +-963 -993 0 +-964 -994 0 +-965 -995 0 +-966 -996 0 +-961 -985 0 +-962 -986 0 +-963 -987 0 +-964 -988 0 +-965 -989 0 +-966 -990 0 +-961 -979 0 +-962 -980 0 +-963 -981 0 +-964 -982 0 +-965 -983 0 +-966 -984 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-955 -985 0 +-956 -986 0 +-957 -987 0 +-958 -988 0 +-959 -989 0 +-960 -990 0 +-955 -979 0 +-956 -980 0 +-957 -981 0 +-958 -982 0 +-959 -983 0 +-960 -984 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -967 0 +-956 -968 0 +-957 -969 0 +-958 -970 0 +-959 -971 0 +-960 -972 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-949 -979 0 +-950 -980 0 +-951 -981 0 +-952 -982 0 +-953 -983 0 +-954 -984 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-289 -823 0 +-290 -824 0 +-291 -825 0 +-292 -826 0 +-293 -827 0 +-294 -828 0 +-517 -577 0 +-518 -578 0 +-519 -579 0 +-520 -580 0 +-521 -581 0 +-522 -582 0 +-169 -829 0 +-170 -830 0 +-171 -831 0 +-172 -832 0 +-173 -833 0 +-174 -834 0 +-499 -859 0 +-500 -860 0 +-501 -861 0 +-502 -862 0 +-503 -863 0 +-504 -864 0 +-151 -313 0 +-152 -314 0 +-153 -315 0 +-154 -316 0 +-155 -317 0 +-156 -318 0 +-385 -775 0 +-386 -776 0 +-387 -777 0 +-388 -778 0 +-389 -779 0 +-390 -780 0 diff --git a/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf new file mode 100644 index 000000000..238c88df9 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf @@ -0,0 +1,11916 @@ +c created by edge2cnf +p cnf 1554 11914 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-979 -980 0 +-979 -981 0 +-979 -982 0 +-979 -983 0 +-979 -984 0 +-980 -981 0 +-980 -982 0 +-980 -983 0 +-980 -984 0 +-981 -982 0 +-981 -983 0 +-981 -984 0 +-982 -983 0 +-982 -984 0 +-983 -984 0 +979 980 981 982 983 984 0 +-985 -986 0 +-985 -987 0 +-985 -988 0 +-985 -989 0 +-985 -990 0 +-986 -987 0 +-986 -988 0 +-986 -989 0 +-986 -990 0 +-987 -988 0 +-987 -989 0 +-987 -990 0 +-988 -989 0 +-988 -990 0 +-989 -990 0 +985 986 987 988 989 990 0 +-991 -992 0 +-991 -993 0 +-991 -994 0 +-991 -995 0 +-991 -996 0 +-992 -993 0 +-992 -994 0 +-992 -995 0 +-992 -996 0 +-993 -994 0 +-993 -995 0 +-993 -996 0 +-994 -995 0 +-994 -996 0 +-995 -996 0 +991 992 993 994 995 996 0 +-997 -998 0 +-997 -999 0 +-997 -1000 0 +-997 -1001 0 +-997 -1002 0 +-998 -999 0 +-998 -1000 0 +-998 -1001 0 +-998 -1002 0 +-999 -1000 0 +-999 -1001 0 +-999 -1002 0 +-1000 -1001 0 +-1000 -1002 0 +-1001 -1002 0 +997 998 999 1000 1001 1002 0 +-1003 -1004 0 +-1003 -1005 0 +-1003 -1006 0 +-1003 -1007 0 +-1003 -1008 0 +-1004 -1005 0 +-1004 -1006 0 +-1004 -1007 0 +-1004 -1008 0 +-1005 -1006 0 +-1005 -1007 0 +-1005 -1008 0 +-1006 -1007 0 +-1006 -1008 0 +-1007 -1008 0 +1003 1004 1005 1006 1007 1008 0 +-1009 -1010 0 +-1009 -1011 0 +-1009 -1012 0 +-1009 -1013 0 +-1009 -1014 0 +-1010 -1011 0 +-1010 -1012 0 +-1010 -1013 0 +-1010 -1014 0 +-1011 -1012 0 +-1011 -1013 0 +-1011 -1014 0 +-1012 -1013 0 +-1012 -1014 0 +-1013 -1014 0 +1009 1010 1011 1012 1013 1014 0 +-1015 -1016 0 +-1015 -1017 0 +-1015 -1018 0 +-1015 -1019 0 +-1015 -1020 0 +-1016 -1017 0 +-1016 -1018 0 +-1016 -1019 0 +-1016 -1020 0 +-1017 -1018 0 +-1017 -1019 0 +-1017 -1020 0 +-1018 -1019 0 +-1018 -1020 0 +-1019 -1020 0 +1015 1016 1017 1018 1019 1020 0 +-1021 -1022 0 +-1021 -1023 0 +-1021 -1024 0 +-1021 -1025 0 +-1021 -1026 0 +-1022 -1023 0 +-1022 -1024 0 +-1022 -1025 0 +-1022 -1026 0 +-1023 -1024 0 +-1023 -1025 0 +-1023 -1026 0 +-1024 -1025 0 +-1024 -1026 0 +-1025 -1026 0 +1021 1022 1023 1024 1025 1026 0 +-1027 -1028 0 +-1027 -1029 0 +-1027 -1030 0 +-1027 -1031 0 +-1027 -1032 0 +-1028 -1029 0 +-1028 -1030 0 +-1028 -1031 0 +-1028 -1032 0 +-1029 -1030 0 +-1029 -1031 0 +-1029 -1032 0 +-1030 -1031 0 +-1030 -1032 0 +-1031 -1032 0 +1027 1028 1029 1030 1031 1032 0 +-1033 -1034 0 +-1033 -1035 0 +-1033 -1036 0 +-1033 -1037 0 +-1033 -1038 0 +-1034 -1035 0 +-1034 -1036 0 +-1034 -1037 0 +-1034 -1038 0 +-1035 -1036 0 +-1035 -1037 0 +-1035 -1038 0 +-1036 -1037 0 +-1036 -1038 0 +-1037 -1038 0 +1033 1034 1035 1036 1037 1038 0 +-1039 -1040 0 +-1039 -1041 0 +-1039 -1042 0 +-1039 -1043 0 +-1039 -1044 0 +-1040 -1041 0 +-1040 -1042 0 +-1040 -1043 0 +-1040 -1044 0 +-1041 -1042 0 +-1041 -1043 0 +-1041 -1044 0 +-1042 -1043 0 +-1042 -1044 0 +-1043 -1044 0 +1039 1040 1041 1042 1043 1044 0 +-1045 -1046 0 +-1045 -1047 0 +-1045 -1048 0 +-1045 -1049 0 +-1045 -1050 0 +-1046 -1047 0 +-1046 -1048 0 +-1046 -1049 0 +-1046 -1050 0 +-1047 -1048 0 +-1047 -1049 0 +-1047 -1050 0 +-1048 -1049 0 +-1048 -1050 0 +-1049 -1050 0 +1045 1046 1047 1048 1049 1050 0 +-1051 -1052 0 +-1051 -1053 0 +-1051 -1054 0 +-1051 -1055 0 +-1051 -1056 0 +-1052 -1053 0 +-1052 -1054 0 +-1052 -1055 0 +-1052 -1056 0 +-1053 -1054 0 +-1053 -1055 0 +-1053 -1056 0 +-1054 -1055 0 +-1054 -1056 0 +-1055 -1056 0 +1051 1052 1053 1054 1055 1056 0 +-1057 -1058 0 +-1057 -1059 0 +-1057 -1060 0 +-1057 -1061 0 +-1057 -1062 0 +-1058 -1059 0 +-1058 -1060 0 +-1058 -1061 0 +-1058 -1062 0 +-1059 -1060 0 +-1059 -1061 0 +-1059 -1062 0 +-1060 -1061 0 +-1060 -1062 0 +-1061 -1062 0 +1057 1058 1059 1060 1061 1062 0 +-1063 -1064 0 +-1063 -1065 0 +-1063 -1066 0 +-1063 -1067 0 +-1063 -1068 0 +-1064 -1065 0 +-1064 -1066 0 +-1064 -1067 0 +-1064 -1068 0 +-1065 -1066 0 +-1065 -1067 0 +-1065 -1068 0 +-1066 -1067 0 +-1066 -1068 0 +-1067 -1068 0 +1063 1064 1065 1066 1067 1068 0 +-1069 -1070 0 +-1069 -1071 0 +-1069 -1072 0 +-1069 -1073 0 +-1069 -1074 0 +-1070 -1071 0 +-1070 -1072 0 +-1070 -1073 0 +-1070 -1074 0 +-1071 -1072 0 +-1071 -1073 0 +-1071 -1074 0 +-1072 -1073 0 +-1072 -1074 0 +-1073 -1074 0 +1069 1070 1071 1072 1073 1074 0 +-1075 -1076 0 +-1075 -1077 0 +-1075 -1078 0 +-1075 -1079 0 +-1075 -1080 0 +-1076 -1077 0 +-1076 -1078 0 +-1076 -1079 0 +-1076 -1080 0 +-1077 -1078 0 +-1077 -1079 0 +-1077 -1080 0 +-1078 -1079 0 +-1078 -1080 0 +-1079 -1080 0 +1075 1076 1077 1078 1079 1080 0 +-1081 -1082 0 +-1081 -1083 0 +-1081 -1084 0 +-1081 -1085 0 +-1081 -1086 0 +-1082 -1083 0 +-1082 -1084 0 +-1082 -1085 0 +-1082 -1086 0 +-1083 -1084 0 +-1083 -1085 0 +-1083 -1086 0 +-1084 -1085 0 +-1084 -1086 0 +-1085 -1086 0 +1081 1082 1083 1084 1085 1086 0 +-1087 -1088 0 +-1087 -1089 0 +-1087 -1090 0 +-1087 -1091 0 +-1087 -1092 0 +-1088 -1089 0 +-1088 -1090 0 +-1088 -1091 0 +-1088 -1092 0 +-1089 -1090 0 +-1089 -1091 0 +-1089 -1092 0 +-1090 -1091 0 +-1090 -1092 0 +-1091 -1092 0 +1087 1088 1089 1090 1091 1092 0 +-1093 -1094 0 +-1093 -1095 0 +-1093 -1096 0 +-1093 -1097 0 +-1093 -1098 0 +-1094 -1095 0 +-1094 -1096 0 +-1094 -1097 0 +-1094 -1098 0 +-1095 -1096 0 +-1095 -1097 0 +-1095 -1098 0 +-1096 -1097 0 +-1096 -1098 0 +-1097 -1098 0 +1093 1094 1095 1096 1097 1098 0 +-1099 -1100 0 +-1099 -1101 0 +-1099 -1102 0 +-1099 -1103 0 +-1099 -1104 0 +-1100 -1101 0 +-1100 -1102 0 +-1100 -1103 0 +-1100 -1104 0 +-1101 -1102 0 +-1101 -1103 0 +-1101 -1104 0 +-1102 -1103 0 +-1102 -1104 0 +-1103 -1104 0 +1099 1100 1101 1102 1103 1104 0 +-1105 -1106 0 +-1105 -1107 0 +-1105 -1108 0 +-1105 -1109 0 +-1105 -1110 0 +-1106 -1107 0 +-1106 -1108 0 +-1106 -1109 0 +-1106 -1110 0 +-1107 -1108 0 +-1107 -1109 0 +-1107 -1110 0 +-1108 -1109 0 +-1108 -1110 0 +-1109 -1110 0 +1105 1106 1107 1108 1109 1110 0 +-1111 -1112 0 +-1111 -1113 0 +-1111 -1114 0 +-1111 -1115 0 +-1111 -1116 0 +-1112 -1113 0 +-1112 -1114 0 +-1112 -1115 0 +-1112 -1116 0 +-1113 -1114 0 +-1113 -1115 0 +-1113 -1116 0 +-1114 -1115 0 +-1114 -1116 0 +-1115 -1116 0 +1111 1112 1113 1114 1115 1116 0 +-1117 -1118 0 +-1117 -1119 0 +-1117 -1120 0 +-1117 -1121 0 +-1117 -1122 0 +-1118 -1119 0 +-1118 -1120 0 +-1118 -1121 0 +-1118 -1122 0 +-1119 -1120 0 +-1119 -1121 0 +-1119 -1122 0 +-1120 -1121 0 +-1120 -1122 0 +-1121 -1122 0 +1117 1118 1119 1120 1121 1122 0 +-1123 -1124 0 +-1123 -1125 0 +-1123 -1126 0 +-1123 -1127 0 +-1123 -1128 0 +-1124 -1125 0 +-1124 -1126 0 +-1124 -1127 0 +-1124 -1128 0 +-1125 -1126 0 +-1125 -1127 0 +-1125 -1128 0 +-1126 -1127 0 +-1126 -1128 0 +-1127 -1128 0 +1123 1124 1125 1126 1127 1128 0 +-1129 -1130 0 +-1129 -1131 0 +-1129 -1132 0 +-1129 -1133 0 +-1129 -1134 0 +-1130 -1131 0 +-1130 -1132 0 +-1130 -1133 0 +-1130 -1134 0 +-1131 -1132 0 +-1131 -1133 0 +-1131 -1134 0 +-1132 -1133 0 +-1132 -1134 0 +-1133 -1134 0 +1129 1130 1131 1132 1133 1134 0 +-1135 -1136 0 +-1135 -1137 0 +-1135 -1138 0 +-1135 -1139 0 +-1135 -1140 0 +-1136 -1137 0 +-1136 -1138 0 +-1136 -1139 0 +-1136 -1140 0 +-1137 -1138 0 +-1137 -1139 0 +-1137 -1140 0 +-1138 -1139 0 +-1138 -1140 0 +-1139 -1140 0 +1135 1136 1137 1138 1139 1140 0 +-1141 -1142 0 +-1141 -1143 0 +-1141 -1144 0 +-1141 -1145 0 +-1141 -1146 0 +-1142 -1143 0 +-1142 -1144 0 +-1142 -1145 0 +-1142 -1146 0 +-1143 -1144 0 +-1143 -1145 0 +-1143 -1146 0 +-1144 -1145 0 +-1144 -1146 0 +-1145 -1146 0 +1141 1142 1143 1144 1145 1146 0 +-1147 -1148 0 +-1147 -1149 0 +-1147 -1150 0 +-1147 -1151 0 +-1147 -1152 0 +-1148 -1149 0 +-1148 -1150 0 +-1148 -1151 0 +-1148 -1152 0 +-1149 -1150 0 +-1149 -1151 0 +-1149 -1152 0 +-1150 -1151 0 +-1150 -1152 0 +-1151 -1152 0 +1147 1148 1149 1150 1151 1152 0 +-1153 -1154 0 +-1153 -1155 0 +-1153 -1156 0 +-1153 -1157 0 +-1153 -1158 0 +-1154 -1155 0 +-1154 -1156 0 +-1154 -1157 0 +-1154 -1158 0 +-1155 -1156 0 +-1155 -1157 0 +-1155 -1158 0 +-1156 -1157 0 +-1156 -1158 0 +-1157 -1158 0 +1153 1154 1155 1156 1157 1158 0 +-1159 -1160 0 +-1159 -1161 0 +-1159 -1162 0 +-1159 -1163 0 +-1159 -1164 0 +-1160 -1161 0 +-1160 -1162 0 +-1160 -1163 0 +-1160 -1164 0 +-1161 -1162 0 +-1161 -1163 0 +-1161 -1164 0 +-1162 -1163 0 +-1162 -1164 0 +-1163 -1164 0 +1159 1160 1161 1162 1163 1164 0 +-1165 -1166 0 +-1165 -1167 0 +-1165 -1168 0 +-1165 -1169 0 +-1165 -1170 0 +-1166 -1167 0 +-1166 -1168 0 +-1166 -1169 0 +-1166 -1170 0 +-1167 -1168 0 +-1167 -1169 0 +-1167 -1170 0 +-1168 -1169 0 +-1168 -1170 0 +-1169 -1170 0 +1165 1166 1167 1168 1169 1170 0 +-1171 -1172 0 +-1171 -1173 0 +-1171 -1174 0 +-1171 -1175 0 +-1171 -1176 0 +-1172 -1173 0 +-1172 -1174 0 +-1172 -1175 0 +-1172 -1176 0 +-1173 -1174 0 +-1173 -1175 0 +-1173 -1176 0 +-1174 -1175 0 +-1174 -1176 0 +-1175 -1176 0 +1171 1172 1173 1174 1175 1176 0 +-1177 -1178 0 +-1177 -1179 0 +-1177 -1180 0 +-1177 -1181 0 +-1177 -1182 0 +-1178 -1179 0 +-1178 -1180 0 +-1178 -1181 0 +-1178 -1182 0 +-1179 -1180 0 +-1179 -1181 0 +-1179 -1182 0 +-1180 -1181 0 +-1180 -1182 0 +-1181 -1182 0 +1177 1178 1179 1180 1181 1182 0 +-1183 -1184 0 +-1183 -1185 0 +-1183 -1186 0 +-1183 -1187 0 +-1183 -1188 0 +-1184 -1185 0 +-1184 -1186 0 +-1184 -1187 0 +-1184 -1188 0 +-1185 -1186 0 +-1185 -1187 0 +-1185 -1188 0 +-1186 -1187 0 +-1186 -1188 0 +-1187 -1188 0 +1183 1184 1185 1186 1187 1188 0 +-1189 -1190 0 +-1189 -1191 0 +-1189 -1192 0 +-1189 -1193 0 +-1189 -1194 0 +-1190 -1191 0 +-1190 -1192 0 +-1190 -1193 0 +-1190 -1194 0 +-1191 -1192 0 +-1191 -1193 0 +-1191 -1194 0 +-1192 -1193 0 +-1192 -1194 0 +-1193 -1194 0 +1189 1190 1191 1192 1193 1194 0 +-1195 -1196 0 +-1195 -1197 0 +-1195 -1198 0 +-1195 -1199 0 +-1195 -1200 0 +-1196 -1197 0 +-1196 -1198 0 +-1196 -1199 0 +-1196 -1200 0 +-1197 -1198 0 +-1197 -1199 0 +-1197 -1200 0 +-1198 -1199 0 +-1198 -1200 0 +-1199 -1200 0 +1195 1196 1197 1198 1199 1200 0 +-1201 -1202 0 +-1201 -1203 0 +-1201 -1204 0 +-1201 -1205 0 +-1201 -1206 0 +-1202 -1203 0 +-1202 -1204 0 +-1202 -1205 0 +-1202 -1206 0 +-1203 -1204 0 +-1203 -1205 0 +-1203 -1206 0 +-1204 -1205 0 +-1204 -1206 0 +-1205 -1206 0 +1201 1202 1203 1204 1205 1206 0 +-1207 -1208 0 +-1207 -1209 0 +-1207 -1210 0 +-1207 -1211 0 +-1207 -1212 0 +-1208 -1209 0 +-1208 -1210 0 +-1208 -1211 0 +-1208 -1212 0 +-1209 -1210 0 +-1209 -1211 0 +-1209 -1212 0 +-1210 -1211 0 +-1210 -1212 0 +-1211 -1212 0 +1207 1208 1209 1210 1211 1212 0 +-1213 -1214 0 +-1213 -1215 0 +-1213 -1216 0 +-1213 -1217 0 +-1213 -1218 0 +-1214 -1215 0 +-1214 -1216 0 +-1214 -1217 0 +-1214 -1218 0 +-1215 -1216 0 +-1215 -1217 0 +-1215 -1218 0 +-1216 -1217 0 +-1216 -1218 0 +-1217 -1218 0 +1213 1214 1215 1216 1217 1218 0 +-1219 -1220 0 +-1219 -1221 0 +-1219 -1222 0 +-1219 -1223 0 +-1219 -1224 0 +-1220 -1221 0 +-1220 -1222 0 +-1220 -1223 0 +-1220 -1224 0 +-1221 -1222 0 +-1221 -1223 0 +-1221 -1224 0 +-1222 -1223 0 +-1222 -1224 0 +-1223 -1224 0 +1219 1220 1221 1222 1223 1224 0 +-1225 -1226 0 +-1225 -1227 0 +-1225 -1228 0 +-1225 -1229 0 +-1225 -1230 0 +-1226 -1227 0 +-1226 -1228 0 +-1226 -1229 0 +-1226 -1230 0 +-1227 -1228 0 +-1227 -1229 0 +-1227 -1230 0 +-1228 -1229 0 +-1228 -1230 0 +-1229 -1230 0 +1225 1226 1227 1228 1229 1230 0 +-1231 -1232 0 +-1231 -1233 0 +-1231 -1234 0 +-1231 -1235 0 +-1231 -1236 0 +-1232 -1233 0 +-1232 -1234 0 +-1232 -1235 0 +-1232 -1236 0 +-1233 -1234 0 +-1233 -1235 0 +-1233 -1236 0 +-1234 -1235 0 +-1234 -1236 0 +-1235 -1236 0 +1231 1232 1233 1234 1235 1236 0 +-1237 -1238 0 +-1237 -1239 0 +-1237 -1240 0 +-1237 -1241 0 +-1237 -1242 0 +-1238 -1239 0 +-1238 -1240 0 +-1238 -1241 0 +-1238 -1242 0 +-1239 -1240 0 +-1239 -1241 0 +-1239 -1242 0 +-1240 -1241 0 +-1240 -1242 0 +-1241 -1242 0 +1237 1238 1239 1240 1241 1242 0 +-1243 -1244 0 +-1243 -1245 0 +-1243 -1246 0 +-1243 -1247 0 +-1243 -1248 0 +-1244 -1245 0 +-1244 -1246 0 +-1244 -1247 0 +-1244 -1248 0 +-1245 -1246 0 +-1245 -1247 0 +-1245 -1248 0 +-1246 -1247 0 +-1246 -1248 0 +-1247 -1248 0 +1243 1244 1245 1246 1247 1248 0 +-1249 -1250 0 +-1249 -1251 0 +-1249 -1252 0 +-1249 -1253 0 +-1249 -1254 0 +-1250 -1251 0 +-1250 -1252 0 +-1250 -1253 0 +-1250 -1254 0 +-1251 -1252 0 +-1251 -1253 0 +-1251 -1254 0 +-1252 -1253 0 +-1252 -1254 0 +-1253 -1254 0 +1249 1250 1251 1252 1253 1254 0 +-1255 -1256 0 +-1255 -1257 0 +-1255 -1258 0 +-1255 -1259 0 +-1255 -1260 0 +-1256 -1257 0 +-1256 -1258 0 +-1256 -1259 0 +-1256 -1260 0 +-1257 -1258 0 +-1257 -1259 0 +-1257 -1260 0 +-1258 -1259 0 +-1258 -1260 0 +-1259 -1260 0 +1255 1256 1257 1258 1259 1260 0 +-1261 -1262 0 +-1261 -1263 0 +-1261 -1264 0 +-1261 -1265 0 +-1261 -1266 0 +-1262 -1263 0 +-1262 -1264 0 +-1262 -1265 0 +-1262 -1266 0 +-1263 -1264 0 +-1263 -1265 0 +-1263 -1266 0 +-1264 -1265 0 +-1264 -1266 0 +-1265 -1266 0 +1261 1262 1263 1264 1265 1266 0 +-1267 -1268 0 +-1267 -1269 0 +-1267 -1270 0 +-1267 -1271 0 +-1267 -1272 0 +-1268 -1269 0 +-1268 -1270 0 +-1268 -1271 0 +-1268 -1272 0 +-1269 -1270 0 +-1269 -1271 0 +-1269 -1272 0 +-1270 -1271 0 +-1270 -1272 0 +-1271 -1272 0 +1267 1268 1269 1270 1271 1272 0 +-1273 -1274 0 +-1273 -1275 0 +-1273 -1276 0 +-1273 -1277 0 +-1273 -1278 0 +-1274 -1275 0 +-1274 -1276 0 +-1274 -1277 0 +-1274 -1278 0 +-1275 -1276 0 +-1275 -1277 0 +-1275 -1278 0 +-1276 -1277 0 +-1276 -1278 0 +-1277 -1278 0 +1273 1274 1275 1276 1277 1278 0 +-1279 -1280 0 +-1279 -1281 0 +-1279 -1282 0 +-1279 -1283 0 +-1279 -1284 0 +-1280 -1281 0 +-1280 -1282 0 +-1280 -1283 0 +-1280 -1284 0 +-1281 -1282 0 +-1281 -1283 0 +-1281 -1284 0 +-1282 -1283 0 +-1282 -1284 0 +-1283 -1284 0 +1279 1280 1281 1282 1283 1284 0 +-1285 -1286 0 +-1285 -1287 0 +-1285 -1288 0 +-1285 -1289 0 +-1285 -1290 0 +-1286 -1287 0 +-1286 -1288 0 +-1286 -1289 0 +-1286 -1290 0 +-1287 -1288 0 +-1287 -1289 0 +-1287 -1290 0 +-1288 -1289 0 +-1288 -1290 0 +-1289 -1290 0 +1285 1286 1287 1288 1289 1290 0 +-1291 -1292 0 +-1291 -1293 0 +-1291 -1294 0 +-1291 -1295 0 +-1291 -1296 0 +-1292 -1293 0 +-1292 -1294 0 +-1292 -1295 0 +-1292 -1296 0 +-1293 -1294 0 +-1293 -1295 0 +-1293 -1296 0 +-1294 -1295 0 +-1294 -1296 0 +-1295 -1296 0 +1291 1292 1293 1294 1295 1296 0 +-1297 -1298 0 +-1297 -1299 0 +-1297 -1300 0 +-1297 -1301 0 +-1297 -1302 0 +-1298 -1299 0 +-1298 -1300 0 +-1298 -1301 0 +-1298 -1302 0 +-1299 -1300 0 +-1299 -1301 0 +-1299 -1302 0 +-1300 -1301 0 +-1300 -1302 0 +-1301 -1302 0 +1297 1298 1299 1300 1301 1302 0 +-1303 -1304 0 +-1303 -1305 0 +-1303 -1306 0 +-1303 -1307 0 +-1303 -1308 0 +-1304 -1305 0 +-1304 -1306 0 +-1304 -1307 0 +-1304 -1308 0 +-1305 -1306 0 +-1305 -1307 0 +-1305 -1308 0 +-1306 -1307 0 +-1306 -1308 0 +-1307 -1308 0 +1303 1304 1305 1306 1307 1308 0 +-1309 -1310 0 +-1309 -1311 0 +-1309 -1312 0 +-1309 -1313 0 +-1309 -1314 0 +-1310 -1311 0 +-1310 -1312 0 +-1310 -1313 0 +-1310 -1314 0 +-1311 -1312 0 +-1311 -1313 0 +-1311 -1314 0 +-1312 -1313 0 +-1312 -1314 0 +-1313 -1314 0 +1309 1310 1311 1312 1313 1314 0 +-1315 -1316 0 +-1315 -1317 0 +-1315 -1318 0 +-1315 -1319 0 +-1315 -1320 0 +-1316 -1317 0 +-1316 -1318 0 +-1316 -1319 0 +-1316 -1320 0 +-1317 -1318 0 +-1317 -1319 0 +-1317 -1320 0 +-1318 -1319 0 +-1318 -1320 0 +-1319 -1320 0 +1315 1316 1317 1318 1319 1320 0 +-1321 -1322 0 +-1321 -1323 0 +-1321 -1324 0 +-1321 -1325 0 +-1321 -1326 0 +-1322 -1323 0 +-1322 -1324 0 +-1322 -1325 0 +-1322 -1326 0 +-1323 -1324 0 +-1323 -1325 0 +-1323 -1326 0 +-1324 -1325 0 +-1324 -1326 0 +-1325 -1326 0 +1321 1322 1323 1324 1325 1326 0 +-1327 -1328 0 +-1327 -1329 0 +-1327 -1330 0 +-1327 -1331 0 +-1327 -1332 0 +-1328 -1329 0 +-1328 -1330 0 +-1328 -1331 0 +-1328 -1332 0 +-1329 -1330 0 +-1329 -1331 0 +-1329 -1332 0 +-1330 -1331 0 +-1330 -1332 0 +-1331 -1332 0 +1327 1328 1329 1330 1331 1332 0 +-1333 -1334 0 +-1333 -1335 0 +-1333 -1336 0 +-1333 -1337 0 +-1333 -1338 0 +-1334 -1335 0 +-1334 -1336 0 +-1334 -1337 0 +-1334 -1338 0 +-1335 -1336 0 +-1335 -1337 0 +-1335 -1338 0 +-1336 -1337 0 +-1336 -1338 0 +-1337 -1338 0 +1333 1334 1335 1336 1337 1338 0 +-1339 -1340 0 +-1339 -1341 0 +-1339 -1342 0 +-1339 -1343 0 +-1339 -1344 0 +-1340 -1341 0 +-1340 -1342 0 +-1340 -1343 0 +-1340 -1344 0 +-1341 -1342 0 +-1341 -1343 0 +-1341 -1344 0 +-1342 -1343 0 +-1342 -1344 0 +-1343 -1344 0 +1339 1340 1341 1342 1343 1344 0 +-1345 -1346 0 +-1345 -1347 0 +-1345 -1348 0 +-1345 -1349 0 +-1345 -1350 0 +-1346 -1347 0 +-1346 -1348 0 +-1346 -1349 0 +-1346 -1350 0 +-1347 -1348 0 +-1347 -1349 0 +-1347 -1350 0 +-1348 -1349 0 +-1348 -1350 0 +-1349 -1350 0 +1345 1346 1347 1348 1349 1350 0 +-1351 -1352 0 +-1351 -1353 0 +-1351 -1354 0 +-1351 -1355 0 +-1351 -1356 0 +-1352 -1353 0 +-1352 -1354 0 +-1352 -1355 0 +-1352 -1356 0 +-1353 -1354 0 +-1353 -1355 0 +-1353 -1356 0 +-1354 -1355 0 +-1354 -1356 0 +-1355 -1356 0 +1351 1352 1353 1354 1355 1356 0 +-1357 -1358 0 +-1357 -1359 0 +-1357 -1360 0 +-1357 -1361 0 +-1357 -1362 0 +-1358 -1359 0 +-1358 -1360 0 +-1358 -1361 0 +-1358 -1362 0 +-1359 -1360 0 +-1359 -1361 0 +-1359 -1362 0 +-1360 -1361 0 +-1360 -1362 0 +-1361 -1362 0 +1357 1358 1359 1360 1361 1362 0 +-1363 -1364 0 +-1363 -1365 0 +-1363 -1366 0 +-1363 -1367 0 +-1363 -1368 0 +-1364 -1365 0 +-1364 -1366 0 +-1364 -1367 0 +-1364 -1368 0 +-1365 -1366 0 +-1365 -1367 0 +-1365 -1368 0 +-1366 -1367 0 +-1366 -1368 0 +-1367 -1368 0 +1363 1364 1365 1366 1367 1368 0 +-1369 -1370 0 +-1369 -1371 0 +-1369 -1372 0 +-1369 -1373 0 +-1369 -1374 0 +-1370 -1371 0 +-1370 -1372 0 +-1370 -1373 0 +-1370 -1374 0 +-1371 -1372 0 +-1371 -1373 0 +-1371 -1374 0 +-1372 -1373 0 +-1372 -1374 0 +-1373 -1374 0 +1369 1370 1371 1372 1373 1374 0 +-1375 -1376 0 +-1375 -1377 0 +-1375 -1378 0 +-1375 -1379 0 +-1375 -1380 0 +-1376 -1377 0 +-1376 -1378 0 +-1376 -1379 0 +-1376 -1380 0 +-1377 -1378 0 +-1377 -1379 0 +-1377 -1380 0 +-1378 -1379 0 +-1378 -1380 0 +-1379 -1380 0 +1375 1376 1377 1378 1379 1380 0 +-1381 -1382 0 +-1381 -1383 0 +-1381 -1384 0 +-1381 -1385 0 +-1381 -1386 0 +-1382 -1383 0 +-1382 -1384 0 +-1382 -1385 0 +-1382 -1386 0 +-1383 -1384 0 +-1383 -1385 0 +-1383 -1386 0 +-1384 -1385 0 +-1384 -1386 0 +-1385 -1386 0 +1381 1382 1383 1384 1385 1386 0 +-1387 -1388 0 +-1387 -1389 0 +-1387 -1390 0 +-1387 -1391 0 +-1387 -1392 0 +-1388 -1389 0 +-1388 -1390 0 +-1388 -1391 0 +-1388 -1392 0 +-1389 -1390 0 +-1389 -1391 0 +-1389 -1392 0 +-1390 -1391 0 +-1390 -1392 0 +-1391 -1392 0 +1387 1388 1389 1390 1391 1392 0 +-1393 -1394 0 +-1393 -1395 0 +-1393 -1396 0 +-1393 -1397 0 +-1393 -1398 0 +-1394 -1395 0 +-1394 -1396 0 +-1394 -1397 0 +-1394 -1398 0 +-1395 -1396 0 +-1395 -1397 0 +-1395 -1398 0 +-1396 -1397 0 +-1396 -1398 0 +-1397 -1398 0 +1393 1394 1395 1396 1397 1398 0 +-1399 -1400 0 +-1399 -1401 0 +-1399 -1402 0 +-1399 -1403 0 +-1399 -1404 0 +-1400 -1401 0 +-1400 -1402 0 +-1400 -1403 0 +-1400 -1404 0 +-1401 -1402 0 +-1401 -1403 0 +-1401 -1404 0 +-1402 -1403 0 +-1402 -1404 0 +-1403 -1404 0 +1399 1400 1401 1402 1403 1404 0 +-1405 -1406 0 +-1405 -1407 0 +-1405 -1408 0 +-1405 -1409 0 +-1405 -1410 0 +-1406 -1407 0 +-1406 -1408 0 +-1406 -1409 0 +-1406 -1410 0 +-1407 -1408 0 +-1407 -1409 0 +-1407 -1410 0 +-1408 -1409 0 +-1408 -1410 0 +-1409 -1410 0 +1405 1406 1407 1408 1409 1410 0 +-1411 -1412 0 +-1411 -1413 0 +-1411 -1414 0 +-1411 -1415 0 +-1411 -1416 0 +-1412 -1413 0 +-1412 -1414 0 +-1412 -1415 0 +-1412 -1416 0 +-1413 -1414 0 +-1413 -1415 0 +-1413 -1416 0 +-1414 -1415 0 +-1414 -1416 0 +-1415 -1416 0 +1411 1412 1413 1414 1415 1416 0 +-1417 -1418 0 +-1417 -1419 0 +-1417 -1420 0 +-1417 -1421 0 +-1417 -1422 0 +-1418 -1419 0 +-1418 -1420 0 +-1418 -1421 0 +-1418 -1422 0 +-1419 -1420 0 +-1419 -1421 0 +-1419 -1422 0 +-1420 -1421 0 +-1420 -1422 0 +-1421 -1422 0 +1417 1418 1419 1420 1421 1422 0 +-1423 -1424 0 +-1423 -1425 0 +-1423 -1426 0 +-1423 -1427 0 +-1423 -1428 0 +-1424 -1425 0 +-1424 -1426 0 +-1424 -1427 0 +-1424 -1428 0 +-1425 -1426 0 +-1425 -1427 0 +-1425 -1428 0 +-1426 -1427 0 +-1426 -1428 0 +-1427 -1428 0 +1423 1424 1425 1426 1427 1428 0 +-1429 -1430 0 +-1429 -1431 0 +-1429 -1432 0 +-1429 -1433 0 +-1429 -1434 0 +-1430 -1431 0 +-1430 -1432 0 +-1430 -1433 0 +-1430 -1434 0 +-1431 -1432 0 +-1431 -1433 0 +-1431 -1434 0 +-1432 -1433 0 +-1432 -1434 0 +-1433 -1434 0 +1429 1430 1431 1432 1433 1434 0 +-1435 -1436 0 +-1435 -1437 0 +-1435 -1438 0 +-1435 -1439 0 +-1435 -1440 0 +-1436 -1437 0 +-1436 -1438 0 +-1436 -1439 0 +-1436 -1440 0 +-1437 -1438 0 +-1437 -1439 0 +-1437 -1440 0 +-1438 -1439 0 +-1438 -1440 0 +-1439 -1440 0 +1435 1436 1437 1438 1439 1440 0 +-1441 -1442 0 +-1441 -1443 0 +-1441 -1444 0 +-1441 -1445 0 +-1441 -1446 0 +-1442 -1443 0 +-1442 -1444 0 +-1442 -1445 0 +-1442 -1446 0 +-1443 -1444 0 +-1443 -1445 0 +-1443 -1446 0 +-1444 -1445 0 +-1444 -1446 0 +-1445 -1446 0 +1441 1442 1443 1444 1445 1446 0 +-1447 -1448 0 +-1447 -1449 0 +-1447 -1450 0 +-1447 -1451 0 +-1447 -1452 0 +-1448 -1449 0 +-1448 -1450 0 +-1448 -1451 0 +-1448 -1452 0 +-1449 -1450 0 +-1449 -1451 0 +-1449 -1452 0 +-1450 -1451 0 +-1450 -1452 0 +-1451 -1452 0 +1447 1448 1449 1450 1451 1452 0 +-1453 -1454 0 +-1453 -1455 0 +-1453 -1456 0 +-1453 -1457 0 +-1453 -1458 0 +-1454 -1455 0 +-1454 -1456 0 +-1454 -1457 0 +-1454 -1458 0 +-1455 -1456 0 +-1455 -1457 0 +-1455 -1458 0 +-1456 -1457 0 +-1456 -1458 0 +-1457 -1458 0 +1453 1454 1455 1456 1457 1458 0 +-1459 -1460 0 +-1459 -1461 0 +-1459 -1462 0 +-1459 -1463 0 +-1459 -1464 0 +-1460 -1461 0 +-1460 -1462 0 +-1460 -1463 0 +-1460 -1464 0 +-1461 -1462 0 +-1461 -1463 0 +-1461 -1464 0 +-1462 -1463 0 +-1462 -1464 0 +-1463 -1464 0 +1459 1460 1461 1462 1463 1464 0 +-1465 -1466 0 +-1465 -1467 0 +-1465 -1468 0 +-1465 -1469 0 +-1465 -1470 0 +-1466 -1467 0 +-1466 -1468 0 +-1466 -1469 0 +-1466 -1470 0 +-1467 -1468 0 +-1467 -1469 0 +-1467 -1470 0 +-1468 -1469 0 +-1468 -1470 0 +-1469 -1470 0 +1465 1466 1467 1468 1469 1470 0 +-1471 -1472 0 +-1471 -1473 0 +-1471 -1474 0 +-1471 -1475 0 +-1471 -1476 0 +-1472 -1473 0 +-1472 -1474 0 +-1472 -1475 0 +-1472 -1476 0 +-1473 -1474 0 +-1473 -1475 0 +-1473 -1476 0 +-1474 -1475 0 +-1474 -1476 0 +-1475 -1476 0 +1471 1472 1473 1474 1475 1476 0 +-1477 -1478 0 +-1477 -1479 0 +-1477 -1480 0 +-1477 -1481 0 +-1477 -1482 0 +-1478 -1479 0 +-1478 -1480 0 +-1478 -1481 0 +-1478 -1482 0 +-1479 -1480 0 +-1479 -1481 0 +-1479 -1482 0 +-1480 -1481 0 +-1480 -1482 0 +-1481 -1482 0 +1477 1478 1479 1480 1481 1482 0 +-1483 -1484 0 +-1483 -1485 0 +-1483 -1486 0 +-1483 -1487 0 +-1483 -1488 0 +-1484 -1485 0 +-1484 -1486 0 +-1484 -1487 0 +-1484 -1488 0 +-1485 -1486 0 +-1485 -1487 0 +-1485 -1488 0 +-1486 -1487 0 +-1486 -1488 0 +-1487 -1488 0 +1483 1484 1485 1486 1487 1488 0 +-1489 -1490 0 +-1489 -1491 0 +-1489 -1492 0 +-1489 -1493 0 +-1489 -1494 0 +-1490 -1491 0 +-1490 -1492 0 +-1490 -1493 0 +-1490 -1494 0 +-1491 -1492 0 +-1491 -1493 0 +-1491 -1494 0 +-1492 -1493 0 +-1492 -1494 0 +-1493 -1494 0 +1489 1490 1491 1492 1493 1494 0 +-1495 -1496 0 +-1495 -1497 0 +-1495 -1498 0 +-1495 -1499 0 +-1495 -1500 0 +-1496 -1497 0 +-1496 -1498 0 +-1496 -1499 0 +-1496 -1500 0 +-1497 -1498 0 +-1497 -1499 0 +-1497 -1500 0 +-1498 -1499 0 +-1498 -1500 0 +-1499 -1500 0 +1495 1496 1497 1498 1499 1500 0 +-1501 -1502 0 +-1501 -1503 0 +-1501 -1504 0 +-1501 -1505 0 +-1501 -1506 0 +-1502 -1503 0 +-1502 -1504 0 +-1502 -1505 0 +-1502 -1506 0 +-1503 -1504 0 +-1503 -1505 0 +-1503 -1506 0 +-1504 -1505 0 +-1504 -1506 0 +-1505 -1506 0 +1501 1502 1503 1504 1505 1506 0 +-1507 -1508 0 +-1507 -1509 0 +-1507 -1510 0 +-1507 -1511 0 +-1507 -1512 0 +-1508 -1509 0 +-1508 -1510 0 +-1508 -1511 0 +-1508 -1512 0 +-1509 -1510 0 +-1509 -1511 0 +-1509 -1512 0 +-1510 -1511 0 +-1510 -1512 0 +-1511 -1512 0 +1507 1508 1509 1510 1511 1512 0 +-1513 -1514 0 +-1513 -1515 0 +-1513 -1516 0 +-1513 -1517 0 +-1513 -1518 0 +-1514 -1515 0 +-1514 -1516 0 +-1514 -1517 0 +-1514 -1518 0 +-1515 -1516 0 +-1515 -1517 0 +-1515 -1518 0 +-1516 -1517 0 +-1516 -1518 0 +-1517 -1518 0 +1513 1514 1515 1516 1517 1518 0 +-1519 -1520 0 +-1519 -1521 0 +-1519 -1522 0 +-1519 -1523 0 +-1519 -1524 0 +-1520 -1521 0 +-1520 -1522 0 +-1520 -1523 0 +-1520 -1524 0 +-1521 -1522 0 +-1521 -1523 0 +-1521 -1524 0 +-1522 -1523 0 +-1522 -1524 0 +-1523 -1524 0 +1519 1520 1521 1522 1523 1524 0 +-1525 -1526 0 +-1525 -1527 0 +-1525 -1528 0 +-1525 -1529 0 +-1525 -1530 0 +-1526 -1527 0 +-1526 -1528 0 +-1526 -1529 0 +-1526 -1530 0 +-1527 -1528 0 +-1527 -1529 0 +-1527 -1530 0 +-1528 -1529 0 +-1528 -1530 0 +-1529 -1530 0 +1525 1526 1527 1528 1529 1530 0 +-1531 -1532 0 +-1531 -1533 0 +-1531 -1534 0 +-1531 -1535 0 +-1531 -1536 0 +-1532 -1533 0 +-1532 -1534 0 +-1532 -1535 0 +-1532 -1536 0 +-1533 -1534 0 +-1533 -1535 0 +-1533 -1536 0 +-1534 -1535 0 +-1534 -1536 0 +-1535 -1536 0 +1531 1532 1533 1534 1535 1536 0 +-1537 -1538 0 +-1537 -1539 0 +-1537 -1540 0 +-1537 -1541 0 +-1537 -1542 0 +-1538 -1539 0 +-1538 -1540 0 +-1538 -1541 0 +-1538 -1542 0 +-1539 -1540 0 +-1539 -1541 0 +-1539 -1542 0 +-1540 -1541 0 +-1540 -1542 0 +-1541 -1542 0 +1537 1538 1539 1540 1541 1542 0 +-1543 -1544 0 +-1543 -1545 0 +-1543 -1546 0 +-1543 -1547 0 +-1543 -1548 0 +-1544 -1545 0 +-1544 -1546 0 +-1544 -1547 0 +-1544 -1548 0 +-1545 -1546 0 +-1545 -1547 0 +-1545 -1548 0 +-1546 -1547 0 +-1546 -1548 0 +-1547 -1548 0 +1543 1544 1545 1546 1547 1548 0 +-1549 -1550 0 +-1549 -1551 0 +-1549 -1552 0 +-1549 -1553 0 +-1549 -1554 0 +-1550 -1551 0 +-1550 -1552 0 +-1550 -1553 0 +-1550 -1554 0 +-1551 -1552 0 +-1551 -1553 0 +-1551 -1554 0 +-1552 -1553 0 +-1552 -1554 0 +-1553 -1554 0 +1549 1550 1551 1552 1553 1554 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-973 -1003 0 +-974 -1004 0 +-975 -1005 0 +-976 -1006 0 +-977 -1007 0 +-978 -1008 0 +-985 -1003 0 +-986 -1004 0 +-987 -1005 0 +-988 -1006 0 +-989 -1007 0 +-990 -1008 0 +-997 -1009 0 +-998 -1010 0 +-999 -1011 0 +-1000 -1012 0 +-1001 -1013 0 +-1002 -1014 0 +-1033 -1057 0 +-1034 -1058 0 +-1035 -1059 0 +-1036 -1060 0 +-1037 -1061 0 +-1038 -1062 0 +-1051 -1081 0 +-1052 -1082 0 +-1053 -1083 0 +-1054 -1084 0 +-1055 -1085 0 +-1056 -1086 0 +-1063 -1075 0 +-1064 -1076 0 +-1065 -1077 0 +-1066 -1078 0 +-1067 -1079 0 +-1068 -1080 0 +-1063 -1081 0 +-1064 -1082 0 +-1065 -1083 0 +-1066 -1084 0 +-1067 -1085 0 +-1068 -1086 0 +-1069 -1087 0 +-1070 -1088 0 +-1071 -1089 0 +-1072 -1090 0 +-1073 -1091 0 +-1074 -1092 0 +-1135 -1147 0 +-1136 -1148 0 +-1137 -1149 0 +-1138 -1150 0 +-1139 -1151 0 +-1140 -1152 0 +-1159 -1177 0 +-1160 -1178 0 +-1161 -1179 0 +-1162 -1180 0 +-1163 -1181 0 +-1164 -1182 0 +-1189 -1201 0 +-1190 -1202 0 +-1191 -1203 0 +-1192 -1204 0 +-1193 -1205 0 +-1194 -1206 0 +-1345 -1357 0 +-1346 -1358 0 +-1347 -1359 0 +-1348 -1360 0 +-1349 -1361 0 +-1350 -1362 0 +-1387 -1411 0 +-1388 -1412 0 +-1389 -1413 0 +-1390 -1414 0 +-1391 -1415 0 +-1392 -1416 0 +-1405 -1435 0 +-1406 -1436 0 +-1407 -1437 0 +-1408 -1438 0 +-1409 -1439 0 +-1410 -1440 0 +-1417 -1447 0 +-1418 -1448 0 +-1419 -1449 0 +-1420 -1450 0 +-1421 -1451 0 +-1422 -1452 0 +-1453 -1459 0 +-1454 -1460 0 +-1455 -1461 0 +-1456 -1462 0 +-1457 -1463 0 +-1458 -1464 0 +-1453 -1465 0 +-1454 -1466 0 +-1455 -1467 0 +-1456 -1468 0 +-1457 -1469 0 +-1458 -1470 0 +-1501 -1519 0 +-1502 -1520 0 +-1503 -1521 0 +-1504 -1522 0 +-1505 -1523 0 +-1506 -1524 0 +-13 -1537 0 +-14 -1538 0 +-15 -1539 0 +-16 -1540 0 +-17 -1541 0 +-18 -1542 0 +-25 -1549 0 +-26 -1550 0 +-27 -1551 0 +-28 -1552 0 +-29 -1553 0 +-30 -1554 0 +-19 -1549 0 +-20 -1550 0 +-21 -1551 0 +-22 -1552 0 +-23 -1553 0 +-24 -1554 0 +-13 -1549 0 +-14 -1550 0 +-15 -1551 0 +-16 -1552 0 +-17 -1553 0 +-18 -1554 0 +-7 -1549 0 +-8 -1550 0 +-9 -1551 0 +-10 -1552 0 +-11 -1553 0 +-12 -1554 0 +-1 -1549 0 +-2 -1550 0 +-3 -1551 0 +-4 -1552 0 +-5 -1553 0 +-6 -1554 0 +-19 -1543 0 +-20 -1544 0 +-21 -1545 0 +-22 -1546 0 +-23 -1547 0 +-24 -1548 0 +-13 -1543 0 +-14 -1544 0 +-15 -1545 0 +-16 -1546 0 +-17 -1547 0 +-18 -1548 0 +-7 -1543 0 +-8 -1544 0 +-9 -1545 0 +-10 -1546 0 +-11 -1547 0 +-12 -1548 0 +-1 -1543 0 +-2 -1544 0 +-3 -1545 0 +-4 -1546 0 +-5 -1547 0 +-6 -1548 0 +-1543 -1549 0 +-1544 -1550 0 +-1545 -1551 0 +-1546 -1552 0 +-1547 -1553 0 +-1548 -1554 0 +-7 -1537 0 +-8 -1538 0 +-9 -1539 0 +-10 -1540 0 +-11 -1541 0 +-12 -1542 0 +-1 -1537 0 +-2 -1538 0 +-3 -1539 0 +-4 -1540 0 +-5 -1541 0 +-6 -1542 0 +-1537 -1549 0 +-1538 -1550 0 +-1539 -1551 0 +-1540 -1552 0 +-1541 -1553 0 +-1542 -1554 0 +-1537 -1543 0 +-1538 -1544 0 +-1539 -1545 0 +-1540 -1546 0 +-1541 -1547 0 +-1542 -1548 0 +-7 -1531 0 +-8 -1532 0 +-9 -1533 0 +-10 -1534 0 +-11 -1535 0 +-12 -1536 0 +-1 -1531 0 +-2 -1532 0 +-3 -1533 0 +-4 -1534 0 +-5 -1535 0 +-6 -1536 0 +-1531 -1549 0 +-1532 -1550 0 +-1533 -1551 0 +-1534 -1552 0 +-1535 -1553 0 +-1536 -1554 0 +-1531 -1543 0 +-1532 -1544 0 +-1533 -1545 0 +-1534 -1546 0 +-1535 -1547 0 +-1536 -1548 0 +-1531 -1537 0 +-1532 -1538 0 +-1533 -1539 0 +-1534 -1540 0 +-1535 -1541 0 +-1536 -1542 0 +-1 -1525 0 +-2 -1526 0 +-3 -1527 0 +-4 -1528 0 +-5 -1529 0 +-6 -1530 0 +-1525 -1549 0 +-1526 -1550 0 +-1527 -1551 0 +-1528 -1552 0 +-1529 -1553 0 +-1530 -1554 0 +-1525 -1543 0 +-1526 -1544 0 +-1527 -1545 0 +-1528 -1546 0 +-1529 -1547 0 +-1530 -1548 0 +-1525 -1537 0 +-1526 -1538 0 +-1527 -1539 0 +-1528 -1540 0 +-1529 -1541 0 +-1530 -1542 0 +-1525 -1531 0 +-1526 -1532 0 +-1527 -1533 0 +-1528 -1534 0 +-1529 -1535 0 +-1530 -1536 0 +-1519 -1549 0 +-1520 -1550 0 +-1521 -1551 0 +-1522 -1552 0 +-1523 -1553 0 +-1524 -1554 0 +-1519 -1543 0 +-1520 -1544 0 +-1521 -1545 0 +-1522 -1546 0 +-1523 -1547 0 +-1524 -1548 0 +-1519 -1537 0 +-1520 -1538 0 +-1521 -1539 0 +-1522 -1540 0 +-1523 -1541 0 +-1524 -1542 0 +-1519 -1531 0 +-1520 -1532 0 +-1521 -1533 0 +-1522 -1534 0 +-1523 -1535 0 +-1524 -1536 0 +-1519 -1525 0 +-1520 -1526 0 +-1521 -1527 0 +-1522 -1528 0 +-1523 -1529 0 +-1524 -1530 0 +-1513 -1543 0 +-1514 -1544 0 +-1515 -1545 0 +-1516 -1546 0 +-1517 -1547 0 +-1518 -1548 0 +-1513 -1537 0 +-1514 -1538 0 +-1515 -1539 0 +-1516 -1540 0 +-1517 -1541 0 +-1518 -1542 0 +-1513 -1531 0 +-1514 -1532 0 +-1515 -1533 0 +-1516 -1534 0 +-1517 -1535 0 +-1518 -1536 0 +-1513 -1525 0 +-1514 -1526 0 +-1515 -1527 0 +-1516 -1528 0 +-1517 -1529 0 +-1518 -1530 0 +-1513 -1519 0 +-1514 -1520 0 +-1515 -1521 0 +-1516 -1522 0 +-1517 -1523 0 +-1518 -1524 0 +-1507 -1537 0 +-1508 -1538 0 +-1509 -1539 0 +-1510 -1540 0 +-1511 -1541 0 +-1512 -1542 0 +-1507 -1531 0 +-1508 -1532 0 +-1509 -1533 0 +-1510 -1534 0 +-1511 -1535 0 +-1512 -1536 0 +-1507 -1525 0 +-1508 -1526 0 +-1509 -1527 0 +-1510 -1528 0 +-1511 -1529 0 +-1512 -1530 0 +-1507 -1519 0 +-1508 -1520 0 +-1509 -1521 0 +-1510 -1522 0 +-1511 -1523 0 +-1512 -1524 0 +-1507 -1513 0 +-1508 -1514 0 +-1509 -1515 0 +-1510 -1516 0 +-1511 -1517 0 +-1512 -1518 0 +-1501 -1531 0 +-1502 -1532 0 +-1503 -1533 0 +-1504 -1534 0 +-1505 -1535 0 +-1506 -1536 0 +-1501 -1525 0 +-1502 -1526 0 +-1503 -1527 0 +-1504 -1528 0 +-1505 -1529 0 +-1506 -1530 0 +-1501 -1513 0 +-1502 -1514 0 +-1503 -1515 0 +-1504 -1516 0 +-1505 -1517 0 +-1506 -1518 0 +-1501 -1507 0 +-1502 -1508 0 +-1503 -1509 0 +-1504 -1510 0 +-1505 -1511 0 +-1506 -1512 0 +-1495 -1525 0 +-1496 -1526 0 +-1497 -1527 0 +-1498 -1528 0 +-1499 -1529 0 +-1500 -1530 0 +-1495 -1519 0 +-1496 -1520 0 +-1497 -1521 0 +-1498 -1522 0 +-1499 -1523 0 +-1500 -1524 0 +-1495 -1513 0 +-1496 -1514 0 +-1497 -1515 0 +-1498 -1516 0 +-1499 -1517 0 +-1500 -1518 0 +-1495 -1507 0 +-1496 -1508 0 +-1497 -1509 0 +-1498 -1510 0 +-1499 -1511 0 +-1500 -1512 0 +-1495 -1501 0 +-1496 -1502 0 +-1497 -1503 0 +-1498 -1504 0 +-1499 -1505 0 +-1500 -1506 0 +-1489 -1519 0 +-1490 -1520 0 +-1491 -1521 0 +-1492 -1522 0 +-1493 -1523 0 +-1494 -1524 0 +-1489 -1513 0 +-1490 -1514 0 +-1491 -1515 0 +-1492 -1516 0 +-1493 -1517 0 +-1494 -1518 0 +-1489 -1507 0 +-1490 -1508 0 +-1491 -1509 0 +-1492 -1510 0 +-1493 -1511 0 +-1494 -1512 0 +-1489 -1501 0 +-1490 -1502 0 +-1491 -1503 0 +-1492 -1504 0 +-1493 -1505 0 +-1494 -1506 0 +-1489 -1495 0 +-1490 -1496 0 +-1491 -1497 0 +-1492 -1498 0 +-1493 -1499 0 +-1494 -1500 0 +-1483 -1513 0 +-1484 -1514 0 +-1485 -1515 0 +-1486 -1516 0 +-1487 -1517 0 +-1488 -1518 0 +-1483 -1507 0 +-1484 -1508 0 +-1485 -1509 0 +-1486 -1510 0 +-1487 -1511 0 +-1488 -1512 0 +-1483 -1501 0 +-1484 -1502 0 +-1485 -1503 0 +-1486 -1504 0 +-1487 -1505 0 +-1488 -1506 0 +-1483 -1495 0 +-1484 -1496 0 +-1485 -1497 0 +-1486 -1498 0 +-1487 -1499 0 +-1488 -1500 0 +-1483 -1489 0 +-1484 -1490 0 +-1485 -1491 0 +-1486 -1492 0 +-1487 -1493 0 +-1488 -1494 0 +-1477 -1507 0 +-1478 -1508 0 +-1479 -1509 0 +-1480 -1510 0 +-1481 -1511 0 +-1482 -1512 0 +-1477 -1501 0 +-1478 -1502 0 +-1479 -1503 0 +-1480 -1504 0 +-1481 -1505 0 +-1482 -1506 0 +-1477 -1495 0 +-1478 -1496 0 +-1479 -1497 0 +-1480 -1498 0 +-1481 -1499 0 +-1482 -1500 0 +-1477 -1489 0 +-1478 -1490 0 +-1479 -1491 0 +-1480 -1492 0 +-1481 -1493 0 +-1482 -1494 0 +-1477 -1483 0 +-1478 -1484 0 +-1479 -1485 0 +-1480 -1486 0 +-1481 -1487 0 +-1482 -1488 0 +-1471 -1501 0 +-1472 -1502 0 +-1473 -1503 0 +-1474 -1504 0 +-1475 -1505 0 +-1476 -1506 0 +-1471 -1495 0 +-1472 -1496 0 +-1473 -1497 0 +-1474 -1498 0 +-1475 -1499 0 +-1476 -1500 0 +-1471 -1489 0 +-1472 -1490 0 +-1473 -1491 0 +-1474 -1492 0 +-1475 -1493 0 +-1476 -1494 0 +-1471 -1483 0 +-1472 -1484 0 +-1473 -1485 0 +-1474 -1486 0 +-1475 -1487 0 +-1476 -1488 0 +-1471 -1477 0 +-1472 -1478 0 +-1473 -1479 0 +-1474 -1480 0 +-1475 -1481 0 +-1476 -1482 0 +-1465 -1495 0 +-1466 -1496 0 +-1467 -1497 0 +-1468 -1498 0 +-1469 -1499 0 +-1470 -1500 0 +-1465 -1489 0 +-1466 -1490 0 +-1467 -1491 0 +-1468 -1492 0 +-1469 -1493 0 +-1470 -1494 0 +-1465 -1483 0 +-1466 -1484 0 +-1467 -1485 0 +-1468 -1486 0 +-1469 -1487 0 +-1470 -1488 0 +-1465 -1477 0 +-1466 -1478 0 +-1467 -1479 0 +-1468 -1480 0 +-1469 -1481 0 +-1470 -1482 0 +-1465 -1471 0 +-1466 -1472 0 +-1467 -1473 0 +-1468 -1474 0 +-1469 -1475 0 +-1470 -1476 0 +-1459 -1489 0 +-1460 -1490 0 +-1461 -1491 0 +-1462 -1492 0 +-1463 -1493 0 +-1464 -1494 0 +-1459 -1483 0 +-1460 -1484 0 +-1461 -1485 0 +-1462 -1486 0 +-1463 -1487 0 +-1464 -1488 0 +-1459 -1477 0 +-1460 -1478 0 +-1461 -1479 0 +-1462 -1480 0 +-1463 -1481 0 +-1464 -1482 0 +-1459 -1471 0 +-1460 -1472 0 +-1461 -1473 0 +-1462 -1474 0 +-1463 -1475 0 +-1464 -1476 0 +-1459 -1465 0 +-1460 -1466 0 +-1461 -1467 0 +-1462 -1468 0 +-1463 -1469 0 +-1464 -1470 0 +-1453 -1483 0 +-1454 -1484 0 +-1455 -1485 0 +-1456 -1486 0 +-1457 -1487 0 +-1458 -1488 0 +-1453 -1477 0 +-1454 -1478 0 +-1455 -1479 0 +-1456 -1480 0 +-1457 -1481 0 +-1458 -1482 0 +-1453 -1471 0 +-1454 -1472 0 +-1455 -1473 0 +-1456 -1474 0 +-1457 -1475 0 +-1458 -1476 0 +-1447 -1477 0 +-1448 -1478 0 +-1449 -1479 0 +-1450 -1480 0 +-1451 -1481 0 +-1452 -1482 0 +-1447 -1471 0 +-1448 -1472 0 +-1449 -1473 0 +-1450 -1474 0 +-1451 -1475 0 +-1452 -1476 0 +-1447 -1465 0 +-1448 -1466 0 +-1449 -1467 0 +-1450 -1468 0 +-1451 -1469 0 +-1452 -1470 0 +-1447 -1459 0 +-1448 -1460 0 +-1449 -1461 0 +-1450 -1462 0 +-1451 -1463 0 +-1452 -1464 0 +-1447 -1453 0 +-1448 -1454 0 +-1449 -1455 0 +-1450 -1456 0 +-1451 -1457 0 +-1452 -1458 0 +-1441 -1471 0 +-1442 -1472 0 +-1443 -1473 0 +-1444 -1474 0 +-1445 -1475 0 +-1446 -1476 0 +-1441 -1465 0 +-1442 -1466 0 +-1443 -1467 0 +-1444 -1468 0 +-1445 -1469 0 +-1446 -1470 0 +-1441 -1459 0 +-1442 -1460 0 +-1443 -1461 0 +-1444 -1462 0 +-1445 -1463 0 +-1446 -1464 0 +-1441 -1453 0 +-1442 -1454 0 +-1443 -1455 0 +-1444 -1456 0 +-1445 -1457 0 +-1446 -1458 0 +-1441 -1447 0 +-1442 -1448 0 +-1443 -1449 0 +-1444 -1450 0 +-1445 -1451 0 +-1446 -1452 0 +-1435 -1465 0 +-1436 -1466 0 +-1437 -1467 0 +-1438 -1468 0 +-1439 -1469 0 +-1440 -1470 0 +-1435 -1459 0 +-1436 -1460 0 +-1437 -1461 0 +-1438 -1462 0 +-1439 -1463 0 +-1440 -1464 0 +-1435 -1453 0 +-1436 -1454 0 +-1437 -1455 0 +-1438 -1456 0 +-1439 -1457 0 +-1440 -1458 0 +-1435 -1447 0 +-1436 -1448 0 +-1437 -1449 0 +-1438 -1450 0 +-1439 -1451 0 +-1440 -1452 0 +-1435 -1441 0 +-1436 -1442 0 +-1437 -1443 0 +-1438 -1444 0 +-1439 -1445 0 +-1440 -1446 0 +-1429 -1459 0 +-1430 -1460 0 +-1431 -1461 0 +-1432 -1462 0 +-1433 -1463 0 +-1434 -1464 0 +-1429 -1453 0 +-1430 -1454 0 +-1431 -1455 0 +-1432 -1456 0 +-1433 -1457 0 +-1434 -1458 0 +-1429 -1447 0 +-1430 -1448 0 +-1431 -1449 0 +-1432 -1450 0 +-1433 -1451 0 +-1434 -1452 0 +-1429 -1441 0 +-1430 -1442 0 +-1431 -1443 0 +-1432 -1444 0 +-1433 -1445 0 +-1434 -1446 0 +-1429 -1435 0 +-1430 -1436 0 +-1431 -1437 0 +-1432 -1438 0 +-1433 -1439 0 +-1434 -1440 0 +-1423 -1453 0 +-1424 -1454 0 +-1425 -1455 0 +-1426 -1456 0 +-1427 -1457 0 +-1428 -1458 0 +-1423 -1447 0 +-1424 -1448 0 +-1425 -1449 0 +-1426 -1450 0 +-1427 -1451 0 +-1428 -1452 0 +-1423 -1441 0 +-1424 -1442 0 +-1425 -1443 0 +-1426 -1444 0 +-1427 -1445 0 +-1428 -1446 0 +-1423 -1435 0 +-1424 -1436 0 +-1425 -1437 0 +-1426 -1438 0 +-1427 -1439 0 +-1428 -1440 0 +-1423 -1429 0 +-1424 -1430 0 +-1425 -1431 0 +-1426 -1432 0 +-1427 -1433 0 +-1428 -1434 0 +-1417 -1441 0 +-1418 -1442 0 +-1419 -1443 0 +-1420 -1444 0 +-1421 -1445 0 +-1422 -1446 0 +-1417 -1435 0 +-1418 -1436 0 +-1419 -1437 0 +-1420 -1438 0 +-1421 -1439 0 +-1422 -1440 0 +-1417 -1429 0 +-1418 -1430 0 +-1419 -1431 0 +-1420 -1432 0 +-1421 -1433 0 +-1422 -1434 0 +-1417 -1423 0 +-1418 -1424 0 +-1419 -1425 0 +-1420 -1426 0 +-1421 -1427 0 +-1422 -1428 0 +-1411 -1441 0 +-1412 -1442 0 +-1413 -1443 0 +-1414 -1444 0 +-1415 -1445 0 +-1416 -1446 0 +-1411 -1435 0 +-1412 -1436 0 +-1413 -1437 0 +-1414 -1438 0 +-1415 -1439 0 +-1416 -1440 0 +-1411 -1429 0 +-1412 -1430 0 +-1413 -1431 0 +-1414 -1432 0 +-1415 -1433 0 +-1416 -1434 0 +-1411 -1423 0 +-1412 -1424 0 +-1413 -1425 0 +-1414 -1426 0 +-1415 -1427 0 +-1416 -1428 0 +-1411 -1417 0 +-1412 -1418 0 +-1413 -1419 0 +-1414 -1420 0 +-1415 -1421 0 +-1416 -1422 0 +-1405 -1429 0 +-1406 -1430 0 +-1407 -1431 0 +-1408 -1432 0 +-1409 -1433 0 +-1410 -1434 0 +-1405 -1423 0 +-1406 -1424 0 +-1407 -1425 0 +-1408 -1426 0 +-1409 -1427 0 +-1410 -1428 0 +-1405 -1417 0 +-1406 -1418 0 +-1407 -1419 0 +-1408 -1420 0 +-1409 -1421 0 +-1410 -1422 0 +-1405 -1411 0 +-1406 -1412 0 +-1407 -1413 0 +-1408 -1414 0 +-1409 -1415 0 +-1410 -1416 0 +-1399 -1429 0 +-1400 -1430 0 +-1401 -1431 0 +-1402 -1432 0 +-1403 -1433 0 +-1404 -1434 0 +-1399 -1423 0 +-1400 -1424 0 +-1401 -1425 0 +-1402 -1426 0 +-1403 -1427 0 +-1404 -1428 0 +-1399 -1417 0 +-1400 -1418 0 +-1401 -1419 0 +-1402 -1420 0 +-1403 -1421 0 +-1404 -1422 0 +-1399 -1411 0 +-1400 -1412 0 +-1401 -1413 0 +-1402 -1414 0 +-1403 -1415 0 +-1404 -1416 0 +-1399 -1405 0 +-1400 -1406 0 +-1401 -1407 0 +-1402 -1408 0 +-1403 -1409 0 +-1404 -1410 0 +-1393 -1423 0 +-1394 -1424 0 +-1395 -1425 0 +-1396 -1426 0 +-1397 -1427 0 +-1398 -1428 0 +-1393 -1417 0 +-1394 -1418 0 +-1395 -1419 0 +-1396 -1420 0 +-1397 -1421 0 +-1398 -1422 0 +-1393 -1411 0 +-1394 -1412 0 +-1395 -1413 0 +-1396 -1414 0 +-1397 -1415 0 +-1398 -1416 0 +-1393 -1405 0 +-1394 -1406 0 +-1395 -1407 0 +-1396 -1408 0 +-1397 -1409 0 +-1398 -1410 0 +-1393 -1399 0 +-1394 -1400 0 +-1395 -1401 0 +-1396 -1402 0 +-1397 -1403 0 +-1398 -1404 0 +-1387 -1417 0 +-1388 -1418 0 +-1389 -1419 0 +-1390 -1420 0 +-1391 -1421 0 +-1392 -1422 0 +-1387 -1405 0 +-1388 -1406 0 +-1389 -1407 0 +-1390 -1408 0 +-1391 -1409 0 +-1392 -1410 0 +-1387 -1399 0 +-1388 -1400 0 +-1389 -1401 0 +-1390 -1402 0 +-1391 -1403 0 +-1392 -1404 0 +-1387 -1393 0 +-1388 -1394 0 +-1389 -1395 0 +-1390 -1396 0 +-1391 -1397 0 +-1392 -1398 0 +-1381 -1411 0 +-1382 -1412 0 +-1383 -1413 0 +-1384 -1414 0 +-1385 -1415 0 +-1386 -1416 0 +-1381 -1405 0 +-1382 -1406 0 +-1383 -1407 0 +-1384 -1408 0 +-1385 -1409 0 +-1386 -1410 0 +-1381 -1399 0 +-1382 -1400 0 +-1383 -1401 0 +-1384 -1402 0 +-1385 -1403 0 +-1386 -1404 0 +-1381 -1393 0 +-1382 -1394 0 +-1383 -1395 0 +-1384 -1396 0 +-1385 -1397 0 +-1386 -1398 0 +-1381 -1387 0 +-1382 -1388 0 +-1383 -1389 0 +-1384 -1390 0 +-1385 -1391 0 +-1386 -1392 0 +-1375 -1405 0 +-1376 -1406 0 +-1377 -1407 0 +-1378 -1408 0 +-1379 -1409 0 +-1380 -1410 0 +-1375 -1399 0 +-1376 -1400 0 +-1377 -1401 0 +-1378 -1402 0 +-1379 -1403 0 +-1380 -1404 0 +-1375 -1393 0 +-1376 -1394 0 +-1377 -1395 0 +-1378 -1396 0 +-1379 -1397 0 +-1380 -1398 0 +-1375 -1387 0 +-1376 -1388 0 +-1377 -1389 0 +-1378 -1390 0 +-1379 -1391 0 +-1380 -1392 0 +-1375 -1381 0 +-1376 -1382 0 +-1377 -1383 0 +-1378 -1384 0 +-1379 -1385 0 +-1380 -1386 0 +-1369 -1399 0 +-1370 -1400 0 +-1371 -1401 0 +-1372 -1402 0 +-1373 -1403 0 +-1374 -1404 0 +-1369 -1393 0 +-1370 -1394 0 +-1371 -1395 0 +-1372 -1396 0 +-1373 -1397 0 +-1374 -1398 0 +-1369 -1387 0 +-1370 -1388 0 +-1371 -1389 0 +-1372 -1390 0 +-1373 -1391 0 +-1374 -1392 0 +-1369 -1381 0 +-1370 -1382 0 +-1371 -1383 0 +-1372 -1384 0 +-1373 -1385 0 +-1374 -1386 0 +-1369 -1375 0 +-1370 -1376 0 +-1371 -1377 0 +-1372 -1378 0 +-1373 -1379 0 +-1374 -1380 0 +-1363 -1393 0 +-1364 -1394 0 +-1365 -1395 0 +-1366 -1396 0 +-1367 -1397 0 +-1368 -1398 0 +-1363 -1387 0 +-1364 -1388 0 +-1365 -1389 0 +-1366 -1390 0 +-1367 -1391 0 +-1368 -1392 0 +-1363 -1381 0 +-1364 -1382 0 +-1365 -1383 0 +-1366 -1384 0 +-1367 -1385 0 +-1368 -1386 0 +-1363 -1375 0 +-1364 -1376 0 +-1365 -1377 0 +-1366 -1378 0 +-1367 -1379 0 +-1368 -1380 0 +-1363 -1369 0 +-1364 -1370 0 +-1365 -1371 0 +-1366 -1372 0 +-1367 -1373 0 +-1368 -1374 0 +-1357 -1387 0 +-1358 -1388 0 +-1359 -1389 0 +-1360 -1390 0 +-1361 -1391 0 +-1362 -1392 0 +-1357 -1381 0 +-1358 -1382 0 +-1359 -1383 0 +-1360 -1384 0 +-1361 -1385 0 +-1362 -1386 0 +-1357 -1375 0 +-1358 -1376 0 +-1359 -1377 0 +-1360 -1378 0 +-1361 -1379 0 +-1362 -1380 0 +-1357 -1369 0 +-1358 -1370 0 +-1359 -1371 0 +-1360 -1372 0 +-1361 -1373 0 +-1362 -1374 0 +-1357 -1363 0 +-1358 -1364 0 +-1359 -1365 0 +-1360 -1366 0 +-1361 -1367 0 +-1362 -1368 0 +-1351 -1381 0 +-1352 -1382 0 +-1353 -1383 0 +-1354 -1384 0 +-1355 -1385 0 +-1356 -1386 0 +-1351 -1375 0 +-1352 -1376 0 +-1353 -1377 0 +-1354 -1378 0 +-1355 -1379 0 +-1356 -1380 0 +-1351 -1369 0 +-1352 -1370 0 +-1353 -1371 0 +-1354 -1372 0 +-1355 -1373 0 +-1356 -1374 0 +-1351 -1363 0 +-1352 -1364 0 +-1353 -1365 0 +-1354 -1366 0 +-1355 -1367 0 +-1356 -1368 0 +-1351 -1357 0 +-1352 -1358 0 +-1353 -1359 0 +-1354 -1360 0 +-1355 -1361 0 +-1356 -1362 0 +-1345 -1375 0 +-1346 -1376 0 +-1347 -1377 0 +-1348 -1378 0 +-1349 -1379 0 +-1350 -1380 0 +-1345 -1369 0 +-1346 -1370 0 +-1347 -1371 0 +-1348 -1372 0 +-1349 -1373 0 +-1350 -1374 0 +-1345 -1363 0 +-1346 -1364 0 +-1347 -1365 0 +-1348 -1366 0 +-1349 -1367 0 +-1350 -1368 0 +-1345 -1351 0 +-1346 -1352 0 +-1347 -1353 0 +-1348 -1354 0 +-1349 -1355 0 +-1350 -1356 0 +-1339 -1369 0 +-1340 -1370 0 +-1341 -1371 0 +-1342 -1372 0 +-1343 -1373 0 +-1344 -1374 0 +-1339 -1363 0 +-1340 -1364 0 +-1341 -1365 0 +-1342 -1366 0 +-1343 -1367 0 +-1344 -1368 0 +-1339 -1357 0 +-1340 -1358 0 +-1341 -1359 0 +-1342 -1360 0 +-1343 -1361 0 +-1344 -1362 0 +-1339 -1351 0 +-1340 -1352 0 +-1341 -1353 0 +-1342 -1354 0 +-1343 -1355 0 +-1344 -1356 0 +-1339 -1345 0 +-1340 -1346 0 +-1341 -1347 0 +-1342 -1348 0 +-1343 -1349 0 +-1344 -1350 0 +-1333 -1363 0 +-1334 -1364 0 +-1335 -1365 0 +-1336 -1366 0 +-1337 -1367 0 +-1338 -1368 0 +-1333 -1357 0 +-1334 -1358 0 +-1335 -1359 0 +-1336 -1360 0 +-1337 -1361 0 +-1338 -1362 0 +-1333 -1351 0 +-1334 -1352 0 +-1335 -1353 0 +-1336 -1354 0 +-1337 -1355 0 +-1338 -1356 0 +-1333 -1345 0 +-1334 -1346 0 +-1335 -1347 0 +-1336 -1348 0 +-1337 -1349 0 +-1338 -1350 0 +-1333 -1339 0 +-1334 -1340 0 +-1335 -1341 0 +-1336 -1342 0 +-1337 -1343 0 +-1338 -1344 0 +-1327 -1357 0 +-1328 -1358 0 +-1329 -1359 0 +-1330 -1360 0 +-1331 -1361 0 +-1332 -1362 0 +-1327 -1351 0 +-1328 -1352 0 +-1329 -1353 0 +-1330 -1354 0 +-1331 -1355 0 +-1332 -1356 0 +-1327 -1345 0 +-1328 -1346 0 +-1329 -1347 0 +-1330 -1348 0 +-1331 -1349 0 +-1332 -1350 0 +-1327 -1339 0 +-1328 -1340 0 +-1329 -1341 0 +-1330 -1342 0 +-1331 -1343 0 +-1332 -1344 0 +-1327 -1333 0 +-1328 -1334 0 +-1329 -1335 0 +-1330 -1336 0 +-1331 -1337 0 +-1332 -1338 0 +-1321 -1351 0 +-1322 -1352 0 +-1323 -1353 0 +-1324 -1354 0 +-1325 -1355 0 +-1326 -1356 0 +-1321 -1345 0 +-1322 -1346 0 +-1323 -1347 0 +-1324 -1348 0 +-1325 -1349 0 +-1326 -1350 0 +-1321 -1339 0 +-1322 -1340 0 +-1323 -1341 0 +-1324 -1342 0 +-1325 -1343 0 +-1326 -1344 0 +-1321 -1333 0 +-1322 -1334 0 +-1323 -1335 0 +-1324 -1336 0 +-1325 -1337 0 +-1326 -1338 0 +-1321 -1327 0 +-1322 -1328 0 +-1323 -1329 0 +-1324 -1330 0 +-1325 -1331 0 +-1326 -1332 0 +-1315 -1345 0 +-1316 -1346 0 +-1317 -1347 0 +-1318 -1348 0 +-1319 -1349 0 +-1320 -1350 0 +-1315 -1339 0 +-1316 -1340 0 +-1317 -1341 0 +-1318 -1342 0 +-1319 -1343 0 +-1320 -1344 0 +-1315 -1333 0 +-1316 -1334 0 +-1317 -1335 0 +-1318 -1336 0 +-1319 -1337 0 +-1320 -1338 0 +-1315 -1327 0 +-1316 -1328 0 +-1317 -1329 0 +-1318 -1330 0 +-1319 -1331 0 +-1320 -1332 0 +-1315 -1321 0 +-1316 -1322 0 +-1317 -1323 0 +-1318 -1324 0 +-1319 -1325 0 +-1320 -1326 0 +-1309 -1339 0 +-1310 -1340 0 +-1311 -1341 0 +-1312 -1342 0 +-1313 -1343 0 +-1314 -1344 0 +-1309 -1333 0 +-1310 -1334 0 +-1311 -1335 0 +-1312 -1336 0 +-1313 -1337 0 +-1314 -1338 0 +-1309 -1327 0 +-1310 -1328 0 +-1311 -1329 0 +-1312 -1330 0 +-1313 -1331 0 +-1314 -1332 0 +-1309 -1321 0 +-1310 -1322 0 +-1311 -1323 0 +-1312 -1324 0 +-1313 -1325 0 +-1314 -1326 0 +-1309 -1315 0 +-1310 -1316 0 +-1311 -1317 0 +-1312 -1318 0 +-1313 -1319 0 +-1314 -1320 0 +-1303 -1333 0 +-1304 -1334 0 +-1305 -1335 0 +-1306 -1336 0 +-1307 -1337 0 +-1308 -1338 0 +-1303 -1327 0 +-1304 -1328 0 +-1305 -1329 0 +-1306 -1330 0 +-1307 -1331 0 +-1308 -1332 0 +-1303 -1321 0 +-1304 -1322 0 +-1305 -1323 0 +-1306 -1324 0 +-1307 -1325 0 +-1308 -1326 0 +-1303 -1315 0 +-1304 -1316 0 +-1305 -1317 0 +-1306 -1318 0 +-1307 -1319 0 +-1308 -1320 0 +-1303 -1309 0 +-1304 -1310 0 +-1305 -1311 0 +-1306 -1312 0 +-1307 -1313 0 +-1308 -1314 0 +-1297 -1327 0 +-1298 -1328 0 +-1299 -1329 0 +-1300 -1330 0 +-1301 -1331 0 +-1302 -1332 0 +-1297 -1321 0 +-1298 -1322 0 +-1299 -1323 0 +-1300 -1324 0 +-1301 -1325 0 +-1302 -1326 0 +-1297 -1315 0 +-1298 -1316 0 +-1299 -1317 0 +-1300 -1318 0 +-1301 -1319 0 +-1302 -1320 0 +-1297 -1309 0 +-1298 -1310 0 +-1299 -1311 0 +-1300 -1312 0 +-1301 -1313 0 +-1302 -1314 0 +-1297 -1303 0 +-1298 -1304 0 +-1299 -1305 0 +-1300 -1306 0 +-1301 -1307 0 +-1302 -1308 0 +-1291 -1321 0 +-1292 -1322 0 +-1293 -1323 0 +-1294 -1324 0 +-1295 -1325 0 +-1296 -1326 0 +-1291 -1315 0 +-1292 -1316 0 +-1293 -1317 0 +-1294 -1318 0 +-1295 -1319 0 +-1296 -1320 0 +-1291 -1309 0 +-1292 -1310 0 +-1293 -1311 0 +-1294 -1312 0 +-1295 -1313 0 +-1296 -1314 0 +-1291 -1303 0 +-1292 -1304 0 +-1293 -1305 0 +-1294 -1306 0 +-1295 -1307 0 +-1296 -1308 0 +-1291 -1297 0 +-1292 -1298 0 +-1293 -1299 0 +-1294 -1300 0 +-1295 -1301 0 +-1296 -1302 0 +-1285 -1315 0 +-1286 -1316 0 +-1287 -1317 0 +-1288 -1318 0 +-1289 -1319 0 +-1290 -1320 0 +-1285 -1309 0 +-1286 -1310 0 +-1287 -1311 0 +-1288 -1312 0 +-1289 -1313 0 +-1290 -1314 0 +-1285 -1303 0 +-1286 -1304 0 +-1287 -1305 0 +-1288 -1306 0 +-1289 -1307 0 +-1290 -1308 0 +-1285 -1297 0 +-1286 -1298 0 +-1287 -1299 0 +-1288 -1300 0 +-1289 -1301 0 +-1290 -1302 0 +-1285 -1291 0 +-1286 -1292 0 +-1287 -1293 0 +-1288 -1294 0 +-1289 -1295 0 +-1290 -1296 0 +-1279 -1309 0 +-1280 -1310 0 +-1281 -1311 0 +-1282 -1312 0 +-1283 -1313 0 +-1284 -1314 0 +-1279 -1303 0 +-1280 -1304 0 +-1281 -1305 0 +-1282 -1306 0 +-1283 -1307 0 +-1284 -1308 0 +-1279 -1297 0 +-1280 -1298 0 +-1281 -1299 0 +-1282 -1300 0 +-1283 -1301 0 +-1284 -1302 0 +-1279 -1291 0 +-1280 -1292 0 +-1281 -1293 0 +-1282 -1294 0 +-1283 -1295 0 +-1284 -1296 0 +-1279 -1285 0 +-1280 -1286 0 +-1281 -1287 0 +-1282 -1288 0 +-1283 -1289 0 +-1284 -1290 0 +-1273 -1303 0 +-1274 -1304 0 +-1275 -1305 0 +-1276 -1306 0 +-1277 -1307 0 +-1278 -1308 0 +-1273 -1297 0 +-1274 -1298 0 +-1275 -1299 0 +-1276 -1300 0 +-1277 -1301 0 +-1278 -1302 0 +-1273 -1291 0 +-1274 -1292 0 +-1275 -1293 0 +-1276 -1294 0 +-1277 -1295 0 +-1278 -1296 0 +-1273 -1285 0 +-1274 -1286 0 +-1275 -1287 0 +-1276 -1288 0 +-1277 -1289 0 +-1278 -1290 0 +-1273 -1279 0 +-1274 -1280 0 +-1275 -1281 0 +-1276 -1282 0 +-1277 -1283 0 +-1278 -1284 0 +-1267 -1297 0 +-1268 -1298 0 +-1269 -1299 0 +-1270 -1300 0 +-1271 -1301 0 +-1272 -1302 0 +-1267 -1291 0 +-1268 -1292 0 +-1269 -1293 0 +-1270 -1294 0 +-1271 -1295 0 +-1272 -1296 0 +-1267 -1285 0 +-1268 -1286 0 +-1269 -1287 0 +-1270 -1288 0 +-1271 -1289 0 +-1272 -1290 0 +-1267 -1279 0 +-1268 -1280 0 +-1269 -1281 0 +-1270 -1282 0 +-1271 -1283 0 +-1272 -1284 0 +-1267 -1273 0 +-1268 -1274 0 +-1269 -1275 0 +-1270 -1276 0 +-1271 -1277 0 +-1272 -1278 0 +-1261 -1291 0 +-1262 -1292 0 +-1263 -1293 0 +-1264 -1294 0 +-1265 -1295 0 +-1266 -1296 0 +-1261 -1285 0 +-1262 -1286 0 +-1263 -1287 0 +-1264 -1288 0 +-1265 -1289 0 +-1266 -1290 0 +-1261 -1279 0 +-1262 -1280 0 +-1263 -1281 0 +-1264 -1282 0 +-1265 -1283 0 +-1266 -1284 0 +-1261 -1273 0 +-1262 -1274 0 +-1263 -1275 0 +-1264 -1276 0 +-1265 -1277 0 +-1266 -1278 0 +-1261 -1267 0 +-1262 -1268 0 +-1263 -1269 0 +-1264 -1270 0 +-1265 -1271 0 +-1266 -1272 0 +-1255 -1285 0 +-1256 -1286 0 +-1257 -1287 0 +-1258 -1288 0 +-1259 -1289 0 +-1260 -1290 0 +-1255 -1279 0 +-1256 -1280 0 +-1257 -1281 0 +-1258 -1282 0 +-1259 -1283 0 +-1260 -1284 0 +-1255 -1273 0 +-1256 -1274 0 +-1257 -1275 0 +-1258 -1276 0 +-1259 -1277 0 +-1260 -1278 0 +-1255 -1267 0 +-1256 -1268 0 +-1257 -1269 0 +-1258 -1270 0 +-1259 -1271 0 +-1260 -1272 0 +-1255 -1261 0 +-1256 -1262 0 +-1257 -1263 0 +-1258 -1264 0 +-1259 -1265 0 +-1260 -1266 0 +-1249 -1279 0 +-1250 -1280 0 +-1251 -1281 0 +-1252 -1282 0 +-1253 -1283 0 +-1254 -1284 0 +-1249 -1273 0 +-1250 -1274 0 +-1251 -1275 0 +-1252 -1276 0 +-1253 -1277 0 +-1254 -1278 0 +-1249 -1267 0 +-1250 -1268 0 +-1251 -1269 0 +-1252 -1270 0 +-1253 -1271 0 +-1254 -1272 0 +-1249 -1261 0 +-1250 -1262 0 +-1251 -1263 0 +-1252 -1264 0 +-1253 -1265 0 +-1254 -1266 0 +-1249 -1255 0 +-1250 -1256 0 +-1251 -1257 0 +-1252 -1258 0 +-1253 -1259 0 +-1254 -1260 0 +-1243 -1273 0 +-1244 -1274 0 +-1245 -1275 0 +-1246 -1276 0 +-1247 -1277 0 +-1248 -1278 0 +-1243 -1267 0 +-1244 -1268 0 +-1245 -1269 0 +-1246 -1270 0 +-1247 -1271 0 +-1248 -1272 0 +-1243 -1261 0 +-1244 -1262 0 +-1245 -1263 0 +-1246 -1264 0 +-1247 -1265 0 +-1248 -1266 0 +-1243 -1255 0 +-1244 -1256 0 +-1245 -1257 0 +-1246 -1258 0 +-1247 -1259 0 +-1248 -1260 0 +-1243 -1249 0 +-1244 -1250 0 +-1245 -1251 0 +-1246 -1252 0 +-1247 -1253 0 +-1248 -1254 0 +-1237 -1267 0 +-1238 -1268 0 +-1239 -1269 0 +-1240 -1270 0 +-1241 -1271 0 +-1242 -1272 0 +-1237 -1261 0 +-1238 -1262 0 +-1239 -1263 0 +-1240 -1264 0 +-1241 -1265 0 +-1242 -1266 0 +-1237 -1255 0 +-1238 -1256 0 +-1239 -1257 0 +-1240 -1258 0 +-1241 -1259 0 +-1242 -1260 0 +-1237 -1249 0 +-1238 -1250 0 +-1239 -1251 0 +-1240 -1252 0 +-1241 -1253 0 +-1242 -1254 0 +-1237 -1243 0 +-1238 -1244 0 +-1239 -1245 0 +-1240 -1246 0 +-1241 -1247 0 +-1242 -1248 0 +-1231 -1261 0 +-1232 -1262 0 +-1233 -1263 0 +-1234 -1264 0 +-1235 -1265 0 +-1236 -1266 0 +-1231 -1255 0 +-1232 -1256 0 +-1233 -1257 0 +-1234 -1258 0 +-1235 -1259 0 +-1236 -1260 0 +-1231 -1249 0 +-1232 -1250 0 +-1233 -1251 0 +-1234 -1252 0 +-1235 -1253 0 +-1236 -1254 0 +-1231 -1243 0 +-1232 -1244 0 +-1233 -1245 0 +-1234 -1246 0 +-1235 -1247 0 +-1236 -1248 0 +-1231 -1237 0 +-1232 -1238 0 +-1233 -1239 0 +-1234 -1240 0 +-1235 -1241 0 +-1236 -1242 0 +-1225 -1255 0 +-1226 -1256 0 +-1227 -1257 0 +-1228 -1258 0 +-1229 -1259 0 +-1230 -1260 0 +-1225 -1249 0 +-1226 -1250 0 +-1227 -1251 0 +-1228 -1252 0 +-1229 -1253 0 +-1230 -1254 0 +-1225 -1243 0 +-1226 -1244 0 +-1227 -1245 0 +-1228 -1246 0 +-1229 -1247 0 +-1230 -1248 0 +-1225 -1237 0 +-1226 -1238 0 +-1227 -1239 0 +-1228 -1240 0 +-1229 -1241 0 +-1230 -1242 0 +-1225 -1231 0 +-1226 -1232 0 +-1227 -1233 0 +-1228 -1234 0 +-1229 -1235 0 +-1230 -1236 0 +-1219 -1249 0 +-1220 -1250 0 +-1221 -1251 0 +-1222 -1252 0 +-1223 -1253 0 +-1224 -1254 0 +-1219 -1243 0 +-1220 -1244 0 +-1221 -1245 0 +-1222 -1246 0 +-1223 -1247 0 +-1224 -1248 0 +-1219 -1237 0 +-1220 -1238 0 +-1221 -1239 0 +-1222 -1240 0 +-1223 -1241 0 +-1224 -1242 0 +-1219 -1231 0 +-1220 -1232 0 +-1221 -1233 0 +-1222 -1234 0 +-1223 -1235 0 +-1224 -1236 0 +-1219 -1225 0 +-1220 -1226 0 +-1221 -1227 0 +-1222 -1228 0 +-1223 -1229 0 +-1224 -1230 0 +-1213 -1243 0 +-1214 -1244 0 +-1215 -1245 0 +-1216 -1246 0 +-1217 -1247 0 +-1218 -1248 0 +-1213 -1237 0 +-1214 -1238 0 +-1215 -1239 0 +-1216 -1240 0 +-1217 -1241 0 +-1218 -1242 0 +-1213 -1231 0 +-1214 -1232 0 +-1215 -1233 0 +-1216 -1234 0 +-1217 -1235 0 +-1218 -1236 0 +-1213 -1225 0 +-1214 -1226 0 +-1215 -1227 0 +-1216 -1228 0 +-1217 -1229 0 +-1218 -1230 0 +-1213 -1219 0 +-1214 -1220 0 +-1215 -1221 0 +-1216 -1222 0 +-1217 -1223 0 +-1218 -1224 0 +-1207 -1237 0 +-1208 -1238 0 +-1209 -1239 0 +-1210 -1240 0 +-1211 -1241 0 +-1212 -1242 0 +-1207 -1231 0 +-1208 -1232 0 +-1209 -1233 0 +-1210 -1234 0 +-1211 -1235 0 +-1212 -1236 0 +-1207 -1225 0 +-1208 -1226 0 +-1209 -1227 0 +-1210 -1228 0 +-1211 -1229 0 +-1212 -1230 0 +-1207 -1219 0 +-1208 -1220 0 +-1209 -1221 0 +-1210 -1222 0 +-1211 -1223 0 +-1212 -1224 0 +-1207 -1213 0 +-1208 -1214 0 +-1209 -1215 0 +-1210 -1216 0 +-1211 -1217 0 +-1212 -1218 0 +-1201 -1231 0 +-1202 -1232 0 +-1203 -1233 0 +-1204 -1234 0 +-1205 -1235 0 +-1206 -1236 0 +-1201 -1225 0 +-1202 -1226 0 +-1203 -1227 0 +-1204 -1228 0 +-1205 -1229 0 +-1206 -1230 0 +-1201 -1219 0 +-1202 -1220 0 +-1203 -1221 0 +-1204 -1222 0 +-1205 -1223 0 +-1206 -1224 0 +-1201 -1213 0 +-1202 -1214 0 +-1203 -1215 0 +-1204 -1216 0 +-1205 -1217 0 +-1206 -1218 0 +-1201 -1207 0 +-1202 -1208 0 +-1203 -1209 0 +-1204 -1210 0 +-1205 -1211 0 +-1206 -1212 0 +-1195 -1225 0 +-1196 -1226 0 +-1197 -1227 0 +-1198 -1228 0 +-1199 -1229 0 +-1200 -1230 0 +-1195 -1219 0 +-1196 -1220 0 +-1197 -1221 0 +-1198 -1222 0 +-1199 -1223 0 +-1200 -1224 0 +-1195 -1213 0 +-1196 -1214 0 +-1197 -1215 0 +-1198 -1216 0 +-1199 -1217 0 +-1200 -1218 0 +-1195 -1207 0 +-1196 -1208 0 +-1197 -1209 0 +-1198 -1210 0 +-1199 -1211 0 +-1200 -1212 0 +-1195 -1201 0 +-1196 -1202 0 +-1197 -1203 0 +-1198 -1204 0 +-1199 -1205 0 +-1200 -1206 0 +-1189 -1219 0 +-1190 -1220 0 +-1191 -1221 0 +-1192 -1222 0 +-1193 -1223 0 +-1194 -1224 0 +-1189 -1213 0 +-1190 -1214 0 +-1191 -1215 0 +-1192 -1216 0 +-1193 -1217 0 +-1194 -1218 0 +-1189 -1207 0 +-1190 -1208 0 +-1191 -1209 0 +-1192 -1210 0 +-1193 -1211 0 +-1194 -1212 0 +-1189 -1195 0 +-1190 -1196 0 +-1191 -1197 0 +-1192 -1198 0 +-1193 -1199 0 +-1194 -1200 0 +-1183 -1213 0 +-1184 -1214 0 +-1185 -1215 0 +-1186 -1216 0 +-1187 -1217 0 +-1188 -1218 0 +-1183 -1207 0 +-1184 -1208 0 +-1185 -1209 0 +-1186 -1210 0 +-1187 -1211 0 +-1188 -1212 0 +-1183 -1201 0 +-1184 -1202 0 +-1185 -1203 0 +-1186 -1204 0 +-1187 -1205 0 +-1188 -1206 0 +-1183 -1195 0 +-1184 -1196 0 +-1185 -1197 0 +-1186 -1198 0 +-1187 -1199 0 +-1188 -1200 0 +-1183 -1189 0 +-1184 -1190 0 +-1185 -1191 0 +-1186 -1192 0 +-1187 -1193 0 +-1188 -1194 0 +-1177 -1207 0 +-1178 -1208 0 +-1179 -1209 0 +-1180 -1210 0 +-1181 -1211 0 +-1182 -1212 0 +-1177 -1201 0 +-1178 -1202 0 +-1179 -1203 0 +-1180 -1204 0 +-1181 -1205 0 +-1182 -1206 0 +-1177 -1195 0 +-1178 -1196 0 +-1179 -1197 0 +-1180 -1198 0 +-1181 -1199 0 +-1182 -1200 0 +-1177 -1183 0 +-1178 -1184 0 +-1179 -1185 0 +-1180 -1186 0 +-1181 -1187 0 +-1182 -1188 0 +-1171 -1201 0 +-1172 -1202 0 +-1173 -1203 0 +-1174 -1204 0 +-1175 -1205 0 +-1176 -1206 0 +-1171 -1195 0 +-1172 -1196 0 +-1173 -1197 0 +-1174 -1198 0 +-1175 -1199 0 +-1176 -1200 0 +-1171 -1189 0 +-1172 -1190 0 +-1173 -1191 0 +-1174 -1192 0 +-1175 -1193 0 +-1176 -1194 0 +-1171 -1183 0 +-1172 -1184 0 +-1173 -1185 0 +-1174 -1186 0 +-1175 -1187 0 +-1176 -1188 0 +-1171 -1177 0 +-1172 -1178 0 +-1173 -1179 0 +-1174 -1180 0 +-1175 -1181 0 +-1176 -1182 0 +-1165 -1195 0 +-1166 -1196 0 +-1167 -1197 0 +-1168 -1198 0 +-1169 -1199 0 +-1170 -1200 0 +-1165 -1189 0 +-1166 -1190 0 +-1167 -1191 0 +-1168 -1192 0 +-1169 -1193 0 +-1170 -1194 0 +-1165 -1183 0 +-1166 -1184 0 +-1167 -1185 0 +-1168 -1186 0 +-1169 -1187 0 +-1170 -1188 0 +-1165 -1177 0 +-1166 -1178 0 +-1167 -1179 0 +-1168 -1180 0 +-1169 -1181 0 +-1170 -1182 0 +-1165 -1171 0 +-1166 -1172 0 +-1167 -1173 0 +-1168 -1174 0 +-1169 -1175 0 +-1170 -1176 0 +-1159 -1189 0 +-1160 -1190 0 +-1161 -1191 0 +-1162 -1192 0 +-1163 -1193 0 +-1164 -1194 0 +-1159 -1183 0 +-1160 -1184 0 +-1161 -1185 0 +-1162 -1186 0 +-1163 -1187 0 +-1164 -1188 0 +-1159 -1171 0 +-1160 -1172 0 +-1161 -1173 0 +-1162 -1174 0 +-1163 -1175 0 +-1164 -1176 0 +-1159 -1165 0 +-1160 -1166 0 +-1161 -1167 0 +-1162 -1168 0 +-1163 -1169 0 +-1164 -1170 0 +-1153 -1177 0 +-1154 -1178 0 +-1155 -1179 0 +-1156 -1180 0 +-1157 -1181 0 +-1158 -1182 0 +-1153 -1171 0 +-1154 -1172 0 +-1155 -1173 0 +-1156 -1174 0 +-1157 -1175 0 +-1158 -1176 0 +-1153 -1165 0 +-1154 -1166 0 +-1155 -1167 0 +-1156 -1168 0 +-1157 -1169 0 +-1158 -1170 0 +-1153 -1159 0 +-1154 -1160 0 +-1155 -1161 0 +-1156 -1162 0 +-1157 -1163 0 +-1158 -1164 0 +-1147 -1177 0 +-1148 -1178 0 +-1149 -1179 0 +-1150 -1180 0 +-1151 -1181 0 +-1152 -1182 0 +-1147 -1171 0 +-1148 -1172 0 +-1149 -1173 0 +-1150 -1174 0 +-1151 -1175 0 +-1152 -1176 0 +-1147 -1165 0 +-1148 -1166 0 +-1149 -1167 0 +-1150 -1168 0 +-1151 -1169 0 +-1152 -1170 0 +-1147 -1159 0 +-1148 -1160 0 +-1149 -1161 0 +-1150 -1162 0 +-1151 -1163 0 +-1152 -1164 0 +-1147 -1153 0 +-1148 -1154 0 +-1149 -1155 0 +-1150 -1156 0 +-1151 -1157 0 +-1152 -1158 0 +-1141 -1171 0 +-1142 -1172 0 +-1143 -1173 0 +-1144 -1174 0 +-1145 -1175 0 +-1146 -1176 0 +-1141 -1165 0 +-1142 -1166 0 +-1143 -1167 0 +-1144 -1168 0 +-1145 -1169 0 +-1146 -1170 0 +-1141 -1159 0 +-1142 -1160 0 +-1143 -1161 0 +-1144 -1162 0 +-1145 -1163 0 +-1146 -1164 0 +-1141 -1153 0 +-1142 -1154 0 +-1143 -1155 0 +-1144 -1156 0 +-1145 -1157 0 +-1146 -1158 0 +-1141 -1147 0 +-1142 -1148 0 +-1143 -1149 0 +-1144 -1150 0 +-1145 -1151 0 +-1146 -1152 0 +-1135 -1165 0 +-1136 -1166 0 +-1137 -1167 0 +-1138 -1168 0 +-1139 -1169 0 +-1140 -1170 0 +-1135 -1159 0 +-1136 -1160 0 +-1137 -1161 0 +-1138 -1162 0 +-1139 -1163 0 +-1140 -1164 0 +-1135 -1153 0 +-1136 -1154 0 +-1137 -1155 0 +-1138 -1156 0 +-1139 -1157 0 +-1140 -1158 0 +-1135 -1141 0 +-1136 -1142 0 +-1137 -1143 0 +-1138 -1144 0 +-1139 -1145 0 +-1140 -1146 0 +-1129 -1159 0 +-1130 -1160 0 +-1131 -1161 0 +-1132 -1162 0 +-1133 -1163 0 +-1134 -1164 0 +-1129 -1153 0 +-1130 -1154 0 +-1131 -1155 0 +-1132 -1156 0 +-1133 -1157 0 +-1134 -1158 0 +-1129 -1147 0 +-1130 -1148 0 +-1131 -1149 0 +-1132 -1150 0 +-1133 -1151 0 +-1134 -1152 0 +-1129 -1141 0 +-1130 -1142 0 +-1131 -1143 0 +-1132 -1144 0 +-1133 -1145 0 +-1134 -1146 0 +-1129 -1135 0 +-1130 -1136 0 +-1131 -1137 0 +-1132 -1138 0 +-1133 -1139 0 +-1134 -1140 0 +-1123 -1147 0 +-1124 -1148 0 +-1125 -1149 0 +-1126 -1150 0 +-1127 -1151 0 +-1128 -1152 0 +-1123 -1141 0 +-1124 -1142 0 +-1125 -1143 0 +-1126 -1144 0 +-1127 -1145 0 +-1128 -1146 0 +-1123 -1135 0 +-1124 -1136 0 +-1125 -1137 0 +-1126 -1138 0 +-1127 -1139 0 +-1128 -1140 0 +-1123 -1129 0 +-1124 -1130 0 +-1125 -1131 0 +-1126 -1132 0 +-1127 -1133 0 +-1128 -1134 0 +-1117 -1147 0 +-1118 -1148 0 +-1119 -1149 0 +-1120 -1150 0 +-1121 -1151 0 +-1122 -1152 0 +-1117 -1141 0 +-1118 -1142 0 +-1119 -1143 0 +-1120 -1144 0 +-1121 -1145 0 +-1122 -1146 0 +-1117 -1135 0 +-1118 -1136 0 +-1119 -1137 0 +-1120 -1138 0 +-1121 -1139 0 +-1122 -1140 0 +-1117 -1129 0 +-1118 -1130 0 +-1119 -1131 0 +-1120 -1132 0 +-1121 -1133 0 +-1122 -1134 0 +-1117 -1123 0 +-1118 -1124 0 +-1119 -1125 0 +-1120 -1126 0 +-1121 -1127 0 +-1122 -1128 0 +-1111 -1141 0 +-1112 -1142 0 +-1113 -1143 0 +-1114 -1144 0 +-1115 -1145 0 +-1116 -1146 0 +-1111 -1135 0 +-1112 -1136 0 +-1113 -1137 0 +-1114 -1138 0 +-1115 -1139 0 +-1116 -1140 0 +-1111 -1129 0 +-1112 -1130 0 +-1113 -1131 0 +-1114 -1132 0 +-1115 -1133 0 +-1116 -1134 0 +-1111 -1123 0 +-1112 -1124 0 +-1113 -1125 0 +-1114 -1126 0 +-1115 -1127 0 +-1116 -1128 0 +-1111 -1117 0 +-1112 -1118 0 +-1113 -1119 0 +-1114 -1120 0 +-1115 -1121 0 +-1116 -1122 0 +-1105 -1135 0 +-1106 -1136 0 +-1107 -1137 0 +-1108 -1138 0 +-1109 -1139 0 +-1110 -1140 0 +-1105 -1129 0 +-1106 -1130 0 +-1107 -1131 0 +-1108 -1132 0 +-1109 -1133 0 +-1110 -1134 0 +-1105 -1123 0 +-1106 -1124 0 +-1107 -1125 0 +-1108 -1126 0 +-1109 -1127 0 +-1110 -1128 0 +-1105 -1117 0 +-1106 -1118 0 +-1107 -1119 0 +-1108 -1120 0 +-1109 -1121 0 +-1110 -1122 0 +-1105 -1111 0 +-1106 -1112 0 +-1107 -1113 0 +-1108 -1114 0 +-1109 -1115 0 +-1110 -1116 0 +-1099 -1129 0 +-1100 -1130 0 +-1101 -1131 0 +-1102 -1132 0 +-1103 -1133 0 +-1104 -1134 0 +-1099 -1123 0 +-1100 -1124 0 +-1101 -1125 0 +-1102 -1126 0 +-1103 -1127 0 +-1104 -1128 0 +-1099 -1117 0 +-1100 -1118 0 +-1101 -1119 0 +-1102 -1120 0 +-1103 -1121 0 +-1104 -1122 0 +-1099 -1111 0 +-1100 -1112 0 +-1101 -1113 0 +-1102 -1114 0 +-1103 -1115 0 +-1104 -1116 0 +-1099 -1105 0 +-1100 -1106 0 +-1101 -1107 0 +-1102 -1108 0 +-1103 -1109 0 +-1104 -1110 0 +-1093 -1123 0 +-1094 -1124 0 +-1095 -1125 0 +-1096 -1126 0 +-1097 -1127 0 +-1098 -1128 0 +-1093 -1117 0 +-1094 -1118 0 +-1095 -1119 0 +-1096 -1120 0 +-1097 -1121 0 +-1098 -1122 0 +-1093 -1111 0 +-1094 -1112 0 +-1095 -1113 0 +-1096 -1114 0 +-1097 -1115 0 +-1098 -1116 0 +-1093 -1105 0 +-1094 -1106 0 +-1095 -1107 0 +-1096 -1108 0 +-1097 -1109 0 +-1098 -1110 0 +-1093 -1099 0 +-1094 -1100 0 +-1095 -1101 0 +-1096 -1102 0 +-1097 -1103 0 +-1098 -1104 0 +-1087 -1117 0 +-1088 -1118 0 +-1089 -1119 0 +-1090 -1120 0 +-1091 -1121 0 +-1092 -1122 0 +-1087 -1111 0 +-1088 -1112 0 +-1089 -1113 0 +-1090 -1114 0 +-1091 -1115 0 +-1092 -1116 0 +-1087 -1105 0 +-1088 -1106 0 +-1089 -1107 0 +-1090 -1108 0 +-1091 -1109 0 +-1092 -1110 0 +-1087 -1099 0 +-1088 -1100 0 +-1089 -1101 0 +-1090 -1102 0 +-1091 -1103 0 +-1092 -1104 0 +-1087 -1093 0 +-1088 -1094 0 +-1089 -1095 0 +-1090 -1096 0 +-1091 -1097 0 +-1092 -1098 0 +-1081 -1111 0 +-1082 -1112 0 +-1083 -1113 0 +-1084 -1114 0 +-1085 -1115 0 +-1086 -1116 0 +-1081 -1105 0 +-1082 -1106 0 +-1083 -1107 0 +-1084 -1108 0 +-1085 -1109 0 +-1086 -1110 0 +-1081 -1099 0 +-1082 -1100 0 +-1083 -1101 0 +-1084 -1102 0 +-1085 -1103 0 +-1086 -1104 0 +-1081 -1093 0 +-1082 -1094 0 +-1083 -1095 0 +-1084 -1096 0 +-1085 -1097 0 +-1086 -1098 0 +-1081 -1087 0 +-1082 -1088 0 +-1083 -1089 0 +-1084 -1090 0 +-1085 -1091 0 +-1086 -1092 0 +-1075 -1105 0 +-1076 -1106 0 +-1077 -1107 0 +-1078 -1108 0 +-1079 -1109 0 +-1080 -1110 0 +-1075 -1099 0 +-1076 -1100 0 +-1077 -1101 0 +-1078 -1102 0 +-1079 -1103 0 +-1080 -1104 0 +-1075 -1093 0 +-1076 -1094 0 +-1077 -1095 0 +-1078 -1096 0 +-1079 -1097 0 +-1080 -1098 0 +-1075 -1087 0 +-1076 -1088 0 +-1077 -1089 0 +-1078 -1090 0 +-1079 -1091 0 +-1080 -1092 0 +-1075 -1081 0 +-1076 -1082 0 +-1077 -1083 0 +-1078 -1084 0 +-1079 -1085 0 +-1080 -1086 0 +-1069 -1099 0 +-1070 -1100 0 +-1071 -1101 0 +-1072 -1102 0 +-1073 -1103 0 +-1074 -1104 0 +-1069 -1093 0 +-1070 -1094 0 +-1071 -1095 0 +-1072 -1096 0 +-1073 -1097 0 +-1074 -1098 0 +-1069 -1081 0 +-1070 -1082 0 +-1071 -1083 0 +-1072 -1084 0 +-1073 -1085 0 +-1074 -1086 0 +-1069 -1075 0 +-1070 -1076 0 +-1071 -1077 0 +-1072 -1078 0 +-1073 -1079 0 +-1074 -1080 0 +-1063 -1093 0 +-1064 -1094 0 +-1065 -1095 0 +-1066 -1096 0 +-1067 -1097 0 +-1068 -1098 0 +-1063 -1087 0 +-1064 -1088 0 +-1065 -1089 0 +-1066 -1090 0 +-1067 -1091 0 +-1068 -1092 0 +-1063 -1069 0 +-1064 -1070 0 +-1065 -1071 0 +-1066 -1072 0 +-1067 -1073 0 +-1068 -1074 0 +-1057 -1087 0 +-1058 -1088 0 +-1059 -1089 0 +-1060 -1090 0 +-1061 -1091 0 +-1062 -1092 0 +-1057 -1081 0 +-1058 -1082 0 +-1059 -1083 0 +-1060 -1084 0 +-1061 -1085 0 +-1062 -1086 0 +-1057 -1075 0 +-1058 -1076 0 +-1059 -1077 0 +-1060 -1078 0 +-1061 -1079 0 +-1062 -1080 0 +-1057 -1069 0 +-1058 -1070 0 +-1059 -1071 0 +-1060 -1072 0 +-1061 -1073 0 +-1062 -1074 0 +-1057 -1063 0 +-1058 -1064 0 +-1059 -1065 0 +-1060 -1066 0 +-1061 -1067 0 +-1062 -1068 0 +-1051 -1075 0 +-1052 -1076 0 +-1053 -1077 0 +-1054 -1078 0 +-1055 -1079 0 +-1056 -1080 0 +-1051 -1069 0 +-1052 -1070 0 +-1053 -1071 0 +-1054 -1072 0 +-1055 -1073 0 +-1056 -1074 0 +-1051 -1063 0 +-1052 -1064 0 +-1053 -1065 0 +-1054 -1066 0 +-1055 -1067 0 +-1056 -1068 0 +-1051 -1057 0 +-1052 -1058 0 +-1053 -1059 0 +-1054 -1060 0 +-1055 -1061 0 +-1056 -1062 0 +-1045 -1075 0 +-1046 -1076 0 +-1047 -1077 0 +-1048 -1078 0 +-1049 -1079 0 +-1050 -1080 0 +-1045 -1069 0 +-1046 -1070 0 +-1047 -1071 0 +-1048 -1072 0 +-1049 -1073 0 +-1050 -1074 0 +-1045 -1063 0 +-1046 -1064 0 +-1047 -1065 0 +-1048 -1066 0 +-1049 -1067 0 +-1050 -1068 0 +-1045 -1057 0 +-1046 -1058 0 +-1047 -1059 0 +-1048 -1060 0 +-1049 -1061 0 +-1050 -1062 0 +-1045 -1051 0 +-1046 -1052 0 +-1047 -1053 0 +-1048 -1054 0 +-1049 -1055 0 +-1050 -1056 0 +-1039 -1069 0 +-1040 -1070 0 +-1041 -1071 0 +-1042 -1072 0 +-1043 -1073 0 +-1044 -1074 0 +-1039 -1063 0 +-1040 -1064 0 +-1041 -1065 0 +-1042 -1066 0 +-1043 -1067 0 +-1044 -1068 0 +-1039 -1057 0 +-1040 -1058 0 +-1041 -1059 0 +-1042 -1060 0 +-1043 -1061 0 +-1044 -1062 0 +-1039 -1051 0 +-1040 -1052 0 +-1041 -1053 0 +-1042 -1054 0 +-1043 -1055 0 +-1044 -1056 0 +-1039 -1045 0 +-1040 -1046 0 +-1041 -1047 0 +-1042 -1048 0 +-1043 -1049 0 +-1044 -1050 0 +-1033 -1063 0 +-1034 -1064 0 +-1035 -1065 0 +-1036 -1066 0 +-1037 -1067 0 +-1038 -1068 0 +-1033 -1051 0 +-1034 -1052 0 +-1035 -1053 0 +-1036 -1054 0 +-1037 -1055 0 +-1038 -1056 0 +-1033 -1045 0 +-1034 -1046 0 +-1035 -1047 0 +-1036 -1048 0 +-1037 -1049 0 +-1038 -1050 0 +-1033 -1039 0 +-1034 -1040 0 +-1035 -1041 0 +-1036 -1042 0 +-1037 -1043 0 +-1038 -1044 0 +-1027 -1057 0 +-1028 -1058 0 +-1029 -1059 0 +-1030 -1060 0 +-1031 -1061 0 +-1032 -1062 0 +-1027 -1051 0 +-1028 -1052 0 +-1029 -1053 0 +-1030 -1054 0 +-1031 -1055 0 +-1032 -1056 0 +-1027 -1045 0 +-1028 -1046 0 +-1029 -1047 0 +-1030 -1048 0 +-1031 -1049 0 +-1032 -1050 0 +-1027 -1039 0 +-1028 -1040 0 +-1029 -1041 0 +-1030 -1042 0 +-1031 -1043 0 +-1032 -1044 0 +-1027 -1033 0 +-1028 -1034 0 +-1029 -1035 0 +-1030 -1036 0 +-1031 -1037 0 +-1032 -1038 0 +-1021 -1051 0 +-1022 -1052 0 +-1023 -1053 0 +-1024 -1054 0 +-1025 -1055 0 +-1026 -1056 0 +-1021 -1045 0 +-1022 -1046 0 +-1023 -1047 0 +-1024 -1048 0 +-1025 -1049 0 +-1026 -1050 0 +-1021 -1039 0 +-1022 -1040 0 +-1023 -1041 0 +-1024 -1042 0 +-1025 -1043 0 +-1026 -1044 0 +-1021 -1033 0 +-1022 -1034 0 +-1023 -1035 0 +-1024 -1036 0 +-1025 -1037 0 +-1026 -1038 0 +-1021 -1027 0 +-1022 -1028 0 +-1023 -1029 0 +-1024 -1030 0 +-1025 -1031 0 +-1026 -1032 0 +-1015 -1045 0 +-1016 -1046 0 +-1017 -1047 0 +-1018 -1048 0 +-1019 -1049 0 +-1020 -1050 0 +-1015 -1039 0 +-1016 -1040 0 +-1017 -1041 0 +-1018 -1042 0 +-1019 -1043 0 +-1020 -1044 0 +-1015 -1033 0 +-1016 -1034 0 +-1017 -1035 0 +-1018 -1036 0 +-1019 -1037 0 +-1020 -1038 0 +-1015 -1027 0 +-1016 -1028 0 +-1017 -1029 0 +-1018 -1030 0 +-1019 -1031 0 +-1020 -1032 0 +-1015 -1021 0 +-1016 -1022 0 +-1017 -1023 0 +-1018 -1024 0 +-1019 -1025 0 +-1020 -1026 0 +-1009 -1039 0 +-1010 -1040 0 +-1011 -1041 0 +-1012 -1042 0 +-1013 -1043 0 +-1014 -1044 0 +-1009 -1033 0 +-1010 -1034 0 +-1011 -1035 0 +-1012 -1036 0 +-1013 -1037 0 +-1014 -1038 0 +-1009 -1027 0 +-1010 -1028 0 +-1011 -1029 0 +-1012 -1030 0 +-1013 -1031 0 +-1014 -1032 0 +-1009 -1021 0 +-1010 -1022 0 +-1011 -1023 0 +-1012 -1024 0 +-1013 -1025 0 +-1014 -1026 0 +-1009 -1015 0 +-1010 -1016 0 +-1011 -1017 0 +-1012 -1018 0 +-1013 -1019 0 +-1014 -1020 0 +-1003 -1033 0 +-1004 -1034 0 +-1005 -1035 0 +-1006 -1036 0 +-1007 -1037 0 +-1008 -1038 0 +-1003 -1027 0 +-1004 -1028 0 +-1005 -1029 0 +-1006 -1030 0 +-1007 -1031 0 +-1008 -1032 0 +-1003 -1021 0 +-1004 -1022 0 +-1005 -1023 0 +-1006 -1024 0 +-1007 -1025 0 +-1008 -1026 0 +-1003 -1015 0 +-1004 -1016 0 +-1005 -1017 0 +-1006 -1018 0 +-1007 -1019 0 +-1008 -1020 0 +-1003 -1009 0 +-1004 -1010 0 +-1005 -1011 0 +-1006 -1012 0 +-1007 -1013 0 +-1008 -1014 0 +-997 -1027 0 +-998 -1028 0 +-999 -1029 0 +-1000 -1030 0 +-1001 -1031 0 +-1002 -1032 0 +-997 -1021 0 +-998 -1022 0 +-999 -1023 0 +-1000 -1024 0 +-1001 -1025 0 +-1002 -1026 0 +-997 -1015 0 +-998 -1016 0 +-999 -1017 0 +-1000 -1018 0 +-1001 -1019 0 +-1002 -1020 0 +-997 -1003 0 +-998 -1004 0 +-999 -1005 0 +-1000 -1006 0 +-1001 -1007 0 +-1002 -1008 0 +-991 -1021 0 +-992 -1022 0 +-993 -1023 0 +-994 -1024 0 +-995 -1025 0 +-996 -1026 0 +-991 -1015 0 +-992 -1016 0 +-993 -1017 0 +-994 -1018 0 +-995 -1019 0 +-996 -1020 0 +-991 -1009 0 +-992 -1010 0 +-993 -1011 0 +-994 -1012 0 +-995 -1013 0 +-996 -1014 0 +-991 -1003 0 +-992 -1004 0 +-993 -1005 0 +-994 -1006 0 +-995 -1007 0 +-996 -1008 0 +-991 -997 0 +-992 -998 0 +-993 -999 0 +-994 -1000 0 +-995 -1001 0 +-996 -1002 0 +-985 -1015 0 +-986 -1016 0 +-987 -1017 0 +-988 -1018 0 +-989 -1019 0 +-990 -1020 0 +-985 -1009 0 +-986 -1010 0 +-987 -1011 0 +-988 -1012 0 +-989 -1013 0 +-990 -1014 0 +-985 -997 0 +-986 -998 0 +-987 -999 0 +-988 -1000 0 +-989 -1001 0 +-990 -1002 0 +-985 -991 0 +-986 -992 0 +-987 -993 0 +-988 -994 0 +-989 -995 0 +-990 -996 0 +-979 -1009 0 +-980 -1010 0 +-981 -1011 0 +-982 -1012 0 +-983 -1013 0 +-984 -1014 0 +-979 -1003 0 +-980 -1004 0 +-981 -1005 0 +-982 -1006 0 +-983 -1007 0 +-984 -1008 0 +-979 -997 0 +-980 -998 0 +-981 -999 0 +-982 -1000 0 +-983 -1001 0 +-984 -1002 0 +-979 -991 0 +-980 -992 0 +-981 -993 0 +-982 -994 0 +-983 -995 0 +-984 -996 0 +-979 -985 0 +-980 -986 0 +-981 -987 0 +-982 -988 0 +-983 -989 0 +-984 -990 0 +-973 -997 0 +-974 -998 0 +-975 -999 0 +-976 -1000 0 +-977 -1001 0 +-978 -1002 0 +-973 -991 0 +-974 -992 0 +-975 -993 0 +-976 -994 0 +-977 -995 0 +-978 -996 0 +-973 -985 0 +-974 -986 0 +-975 -987 0 +-976 -988 0 +-977 -989 0 +-978 -990 0 +-973 -979 0 +-974 -980 0 +-975 -981 0 +-976 -982 0 +-977 -983 0 +-978 -984 0 +-967 -997 0 +-968 -998 0 +-969 -999 0 +-970 -1000 0 +-971 -1001 0 +-972 -1002 0 +-967 -991 0 +-968 -992 0 +-969 -993 0 +-970 -994 0 +-971 -995 0 +-972 -996 0 +-967 -985 0 +-968 -986 0 +-969 -987 0 +-970 -988 0 +-971 -989 0 +-972 -990 0 +-967 -979 0 +-968 -980 0 +-969 -981 0 +-970 -982 0 +-971 -983 0 +-972 -984 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-961 -991 0 +-962 -992 0 +-963 -993 0 +-964 -994 0 +-965 -995 0 +-966 -996 0 +-961 -985 0 +-962 -986 0 +-963 -987 0 +-964 -988 0 +-965 -989 0 +-966 -990 0 +-961 -979 0 +-962 -980 0 +-963 -981 0 +-964 -982 0 +-965 -983 0 +-966 -984 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-955 -985 0 +-956 -986 0 +-957 -987 0 +-958 -988 0 +-959 -989 0 +-960 -990 0 +-955 -979 0 +-956 -980 0 +-957 -981 0 +-958 -982 0 +-959 -983 0 +-960 -984 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -967 0 +-956 -968 0 +-957 -969 0 +-958 -970 0 +-959 -971 0 +-960 -972 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-949 -979 0 +-950 -980 0 +-951 -981 0 +-952 -982 0 +-953 -983 0 +-954 -984 0 +-949 -973 0 +-950 -974 0 +-951 -975 0 +-952 -976 0 +-953 -977 0 +-954 -978 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -919 0 +-890 -920 0 +-891 -921 0 +-892 -922 0 +-893 -923 0 +-894 -924 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-211 -421 0 +-212 -422 0 +-213 -423 0 +-214 -424 0 +-215 -425 0 +-216 -426 0 +-805 -1453 0 +-806 -1454 0 +-807 -1455 0 +-808 -1456 0 +-809 -1457 0 +-810 -1458 0 +-691 -1333 0 +-692 -1334 0 +-693 -1335 0 +-694 -1336 0 +-695 -1337 0 +-696 -1338 0 +-163 -673 0 +-164 -674 0 +-165 -675 0 +-166 -676 0 +-167 -677 0 +-168 -678 0 +-937 -1033 0 +-938 -1034 0 +-939 -1035 0 +-940 -1036 0 +-941 -1037 0 +-942 -1038 0 +-121 -1507 0 +-122 -1508 0 +-123 -1509 0 +-124 -1510 0 +-125 -1511 0 +-126 -1512 0 +-289 -1543 0 +-290 -1544 0 +-291 -1545 0 +-292 -1546 0 +-293 -1547 0 +-294 -1548 0 +-991 -1387 0 +-992 -1388 0 +-993 -1389 0 +-994 -1390 0 +-995 -1391 0 +-996 -1392 0 +-1369 -1537 0 +-1370 -1538 0 +-1371 -1539 0 +-1372 -1540 0 +-1373 -1541 0 +-1374 -1542 0 +-31 -271 0 +-32 -272 0 +-33 -273 0 +-34 -274 0 +-35 -275 0 +-36 -276 0 diff --git a/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf new file mode 100644 index 000000000..0256bb9a5 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf @@ -0,0 +1,6718 @@ +c created by edge2cnf +p cnf 876 6716 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-25 -871 0 +-26 -872 0 +-27 -873 0 +-28 -874 0 +-29 -875 0 +-30 -876 0 +-19 -871 0 +-20 -872 0 +-21 -873 0 +-22 -874 0 +-23 -875 0 +-24 -876 0 +-13 -871 0 +-14 -872 0 +-15 -873 0 +-16 -874 0 +-17 -875 0 +-18 -876 0 +-7 -871 0 +-8 -872 0 +-9 -873 0 +-10 -874 0 +-11 -875 0 +-12 -876 0 +-1 -871 0 +-2 -872 0 +-3 -873 0 +-4 -874 0 +-5 -875 0 +-6 -876 0 +-19 -865 0 +-20 -866 0 +-21 -867 0 +-22 -868 0 +-23 -869 0 +-24 -870 0 +-13 -865 0 +-14 -866 0 +-15 -867 0 +-16 -868 0 +-17 -869 0 +-18 -870 0 +-7 -865 0 +-8 -866 0 +-9 -867 0 +-10 -868 0 +-11 -869 0 +-12 -870 0 +-1 -865 0 +-2 -866 0 +-3 -867 0 +-4 -868 0 +-5 -869 0 +-6 -870 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-13 -859 0 +-14 -860 0 +-15 -861 0 +-16 -862 0 +-17 -863 0 +-18 -864 0 +-7 -859 0 +-8 -860 0 +-9 -861 0 +-10 -862 0 +-11 -863 0 +-12 -864 0 +-1 -859 0 +-2 -860 0 +-3 -861 0 +-4 -862 0 +-5 -863 0 +-6 -864 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-7 -853 0 +-8 -854 0 +-9 -855 0 +-10 -856 0 +-11 -857 0 +-12 -858 0 +-1 -853 0 +-2 -854 0 +-3 -855 0 +-4 -856 0 +-5 -857 0 +-6 -858 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-1 -847 0 +-2 -848 0 +-3 -849 0 +-4 -850 0 +-5 -851 0 +-6 -852 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-31 -739 0 +-32 -740 0 +-33 -741 0 +-34 -742 0 +-35 -743 0 +-36 -744 0 +-67 -241 0 +-68 -242 0 +-69 -243 0 +-70 -244 0 +-71 -245 0 +-72 -246 0 +-67 -649 0 +-68 -650 0 +-69 -651 0 +-70 -652 0 +-71 -653 0 +-72 -654 0 +-517 -577 0 +-518 -578 0 +-519 -579 0 +-520 -580 0 +-521 -581 0 +-522 -582 0 +-175 -793 0 +-176 -794 0 +-177 -795 0 +-178 -796 0 +-179 -797 0 +-180 -798 0 diff --git a/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf new file mode 100644 index 000000000..be1b8778d --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf @@ -0,0 +1,6672 @@ +c created by edge2cnf +p cnf 870 6670 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-1 -841 0 +-2 -842 0 +-3 -843 0 +-4 -844 0 +-5 -845 0 +-6 -846 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-13 -859 0 +-14 -860 0 +-15 -861 0 +-16 -862 0 +-17 -863 0 +-18 -864 0 +-25 -865 0 +-26 -866 0 +-27 -867 0 +-28 -868 0 +-29 -869 0 +-30 -870 0 +-19 -865 0 +-20 -866 0 +-21 -867 0 +-22 -868 0 +-23 -869 0 +-24 -870 0 +-13 -865 0 +-14 -866 0 +-15 -867 0 +-16 -868 0 +-17 -869 0 +-18 -870 0 +-7 -865 0 +-8 -866 0 +-9 -867 0 +-10 -868 0 +-11 -869 0 +-12 -870 0 +-1 -865 0 +-2 -866 0 +-3 -867 0 +-4 -868 0 +-5 -869 0 +-6 -870 0 +-19 -859 0 +-20 -860 0 +-21 -861 0 +-22 -862 0 +-23 -863 0 +-24 -864 0 +-7 -859 0 +-8 -860 0 +-9 -861 0 +-10 -862 0 +-11 -863 0 +-12 -864 0 +-1 -859 0 +-2 -860 0 +-3 -861 0 +-4 -862 0 +-5 -863 0 +-6 -864 0 +-13 -853 0 +-14 -854 0 +-15 -855 0 +-16 -856 0 +-17 -857 0 +-18 -858 0 +-7 -853 0 +-8 -854 0 +-9 -855 0 +-10 -856 0 +-11 -857 0 +-12 -858 0 +-1 -853 0 +-2 -854 0 +-3 -855 0 +-4 -856 0 +-5 -857 0 +-6 -858 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-7 -847 0 +-8 -848 0 +-9 -849 0 +-10 -850 0 +-11 -851 0 +-12 -852 0 +-1 -847 0 +-2 -848 0 +-3 -849 0 +-4 -850 0 +-5 -851 0 +-6 -852 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-769 -853 0 +-770 -854 0 +-771 -855 0 +-772 -856 0 +-773 -857 0 +-774 -858 0 +-151 -841 0 +-152 -842 0 +-153 -843 0 +-154 -844 0 +-155 -845 0 +-156 -846 0 +-589 -637 0 +-590 -638 0 +-591 -639 0 +-592 -640 0 +-593 -641 0 +-594 -642 0 +-193 -859 0 +-194 -860 0 +-195 -861 0 +-196 -862 0 +-197 -863 0 +-198 -864 0 +-127 -169 0 +-128 -170 0 +-129 -171 0 +-130 -172 0 +-131 -173 0 +-132 -174 0 diff --git a/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf new file mode 100644 index 000000000..debca915d --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf @@ -0,0 +1,12928 @@ +c created by edge2cnf +p cnf 1686 12926 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-979 -980 0 +-979 -981 0 +-979 -982 0 +-979 -983 0 +-979 -984 0 +-980 -981 0 +-980 -982 0 +-980 -983 0 +-980 -984 0 +-981 -982 0 +-981 -983 0 +-981 -984 0 +-982 -983 0 +-982 -984 0 +-983 -984 0 +979 980 981 982 983 984 0 +-985 -986 0 +-985 -987 0 +-985 -988 0 +-985 -989 0 +-985 -990 0 +-986 -987 0 +-986 -988 0 +-986 -989 0 +-986 -990 0 +-987 -988 0 +-987 -989 0 +-987 -990 0 +-988 -989 0 +-988 -990 0 +-989 -990 0 +985 986 987 988 989 990 0 +-991 -992 0 +-991 -993 0 +-991 -994 0 +-991 -995 0 +-991 -996 0 +-992 -993 0 +-992 -994 0 +-992 -995 0 +-992 -996 0 +-993 -994 0 +-993 -995 0 +-993 -996 0 +-994 -995 0 +-994 -996 0 +-995 -996 0 +991 992 993 994 995 996 0 +-997 -998 0 +-997 -999 0 +-997 -1000 0 +-997 -1001 0 +-997 -1002 0 +-998 -999 0 +-998 -1000 0 +-998 -1001 0 +-998 -1002 0 +-999 -1000 0 +-999 -1001 0 +-999 -1002 0 +-1000 -1001 0 +-1000 -1002 0 +-1001 -1002 0 +997 998 999 1000 1001 1002 0 +-1003 -1004 0 +-1003 -1005 0 +-1003 -1006 0 +-1003 -1007 0 +-1003 -1008 0 +-1004 -1005 0 +-1004 -1006 0 +-1004 -1007 0 +-1004 -1008 0 +-1005 -1006 0 +-1005 -1007 0 +-1005 -1008 0 +-1006 -1007 0 +-1006 -1008 0 +-1007 -1008 0 +1003 1004 1005 1006 1007 1008 0 +-1009 -1010 0 +-1009 -1011 0 +-1009 -1012 0 +-1009 -1013 0 +-1009 -1014 0 +-1010 -1011 0 +-1010 -1012 0 +-1010 -1013 0 +-1010 -1014 0 +-1011 -1012 0 +-1011 -1013 0 +-1011 -1014 0 +-1012 -1013 0 +-1012 -1014 0 +-1013 -1014 0 +1009 1010 1011 1012 1013 1014 0 +-1015 -1016 0 +-1015 -1017 0 +-1015 -1018 0 +-1015 -1019 0 +-1015 -1020 0 +-1016 -1017 0 +-1016 -1018 0 +-1016 -1019 0 +-1016 -1020 0 +-1017 -1018 0 +-1017 -1019 0 +-1017 -1020 0 +-1018 -1019 0 +-1018 -1020 0 +-1019 -1020 0 +1015 1016 1017 1018 1019 1020 0 +-1021 -1022 0 +-1021 -1023 0 +-1021 -1024 0 +-1021 -1025 0 +-1021 -1026 0 +-1022 -1023 0 +-1022 -1024 0 +-1022 -1025 0 +-1022 -1026 0 +-1023 -1024 0 +-1023 -1025 0 +-1023 -1026 0 +-1024 -1025 0 +-1024 -1026 0 +-1025 -1026 0 +1021 1022 1023 1024 1025 1026 0 +-1027 -1028 0 +-1027 -1029 0 +-1027 -1030 0 +-1027 -1031 0 +-1027 -1032 0 +-1028 -1029 0 +-1028 -1030 0 +-1028 -1031 0 +-1028 -1032 0 +-1029 -1030 0 +-1029 -1031 0 +-1029 -1032 0 +-1030 -1031 0 +-1030 -1032 0 +-1031 -1032 0 +1027 1028 1029 1030 1031 1032 0 +-1033 -1034 0 +-1033 -1035 0 +-1033 -1036 0 +-1033 -1037 0 +-1033 -1038 0 +-1034 -1035 0 +-1034 -1036 0 +-1034 -1037 0 +-1034 -1038 0 +-1035 -1036 0 +-1035 -1037 0 +-1035 -1038 0 +-1036 -1037 0 +-1036 -1038 0 +-1037 -1038 0 +1033 1034 1035 1036 1037 1038 0 +-1039 -1040 0 +-1039 -1041 0 +-1039 -1042 0 +-1039 -1043 0 +-1039 -1044 0 +-1040 -1041 0 +-1040 -1042 0 +-1040 -1043 0 +-1040 -1044 0 +-1041 -1042 0 +-1041 -1043 0 +-1041 -1044 0 +-1042 -1043 0 +-1042 -1044 0 +-1043 -1044 0 +1039 1040 1041 1042 1043 1044 0 +-1045 -1046 0 +-1045 -1047 0 +-1045 -1048 0 +-1045 -1049 0 +-1045 -1050 0 +-1046 -1047 0 +-1046 -1048 0 +-1046 -1049 0 +-1046 -1050 0 +-1047 -1048 0 +-1047 -1049 0 +-1047 -1050 0 +-1048 -1049 0 +-1048 -1050 0 +-1049 -1050 0 +1045 1046 1047 1048 1049 1050 0 +-1051 -1052 0 +-1051 -1053 0 +-1051 -1054 0 +-1051 -1055 0 +-1051 -1056 0 +-1052 -1053 0 +-1052 -1054 0 +-1052 -1055 0 +-1052 -1056 0 +-1053 -1054 0 +-1053 -1055 0 +-1053 -1056 0 +-1054 -1055 0 +-1054 -1056 0 +-1055 -1056 0 +1051 1052 1053 1054 1055 1056 0 +-1057 -1058 0 +-1057 -1059 0 +-1057 -1060 0 +-1057 -1061 0 +-1057 -1062 0 +-1058 -1059 0 +-1058 -1060 0 +-1058 -1061 0 +-1058 -1062 0 +-1059 -1060 0 +-1059 -1061 0 +-1059 -1062 0 +-1060 -1061 0 +-1060 -1062 0 +-1061 -1062 0 +1057 1058 1059 1060 1061 1062 0 +-1063 -1064 0 +-1063 -1065 0 +-1063 -1066 0 +-1063 -1067 0 +-1063 -1068 0 +-1064 -1065 0 +-1064 -1066 0 +-1064 -1067 0 +-1064 -1068 0 +-1065 -1066 0 +-1065 -1067 0 +-1065 -1068 0 +-1066 -1067 0 +-1066 -1068 0 +-1067 -1068 0 +1063 1064 1065 1066 1067 1068 0 +-1069 -1070 0 +-1069 -1071 0 +-1069 -1072 0 +-1069 -1073 0 +-1069 -1074 0 +-1070 -1071 0 +-1070 -1072 0 +-1070 -1073 0 +-1070 -1074 0 +-1071 -1072 0 +-1071 -1073 0 +-1071 -1074 0 +-1072 -1073 0 +-1072 -1074 0 +-1073 -1074 0 +1069 1070 1071 1072 1073 1074 0 +-1075 -1076 0 +-1075 -1077 0 +-1075 -1078 0 +-1075 -1079 0 +-1075 -1080 0 +-1076 -1077 0 +-1076 -1078 0 +-1076 -1079 0 +-1076 -1080 0 +-1077 -1078 0 +-1077 -1079 0 +-1077 -1080 0 +-1078 -1079 0 +-1078 -1080 0 +-1079 -1080 0 +1075 1076 1077 1078 1079 1080 0 +-1081 -1082 0 +-1081 -1083 0 +-1081 -1084 0 +-1081 -1085 0 +-1081 -1086 0 +-1082 -1083 0 +-1082 -1084 0 +-1082 -1085 0 +-1082 -1086 0 +-1083 -1084 0 +-1083 -1085 0 +-1083 -1086 0 +-1084 -1085 0 +-1084 -1086 0 +-1085 -1086 0 +1081 1082 1083 1084 1085 1086 0 +-1087 -1088 0 +-1087 -1089 0 +-1087 -1090 0 +-1087 -1091 0 +-1087 -1092 0 +-1088 -1089 0 +-1088 -1090 0 +-1088 -1091 0 +-1088 -1092 0 +-1089 -1090 0 +-1089 -1091 0 +-1089 -1092 0 +-1090 -1091 0 +-1090 -1092 0 +-1091 -1092 0 +1087 1088 1089 1090 1091 1092 0 +-1093 -1094 0 +-1093 -1095 0 +-1093 -1096 0 +-1093 -1097 0 +-1093 -1098 0 +-1094 -1095 0 +-1094 -1096 0 +-1094 -1097 0 +-1094 -1098 0 +-1095 -1096 0 +-1095 -1097 0 +-1095 -1098 0 +-1096 -1097 0 +-1096 -1098 0 +-1097 -1098 0 +1093 1094 1095 1096 1097 1098 0 +-1099 -1100 0 +-1099 -1101 0 +-1099 -1102 0 +-1099 -1103 0 +-1099 -1104 0 +-1100 -1101 0 +-1100 -1102 0 +-1100 -1103 0 +-1100 -1104 0 +-1101 -1102 0 +-1101 -1103 0 +-1101 -1104 0 +-1102 -1103 0 +-1102 -1104 0 +-1103 -1104 0 +1099 1100 1101 1102 1103 1104 0 +-1105 -1106 0 +-1105 -1107 0 +-1105 -1108 0 +-1105 -1109 0 +-1105 -1110 0 +-1106 -1107 0 +-1106 -1108 0 +-1106 -1109 0 +-1106 -1110 0 +-1107 -1108 0 +-1107 -1109 0 +-1107 -1110 0 +-1108 -1109 0 +-1108 -1110 0 +-1109 -1110 0 +1105 1106 1107 1108 1109 1110 0 +-1111 -1112 0 +-1111 -1113 0 +-1111 -1114 0 +-1111 -1115 0 +-1111 -1116 0 +-1112 -1113 0 +-1112 -1114 0 +-1112 -1115 0 +-1112 -1116 0 +-1113 -1114 0 +-1113 -1115 0 +-1113 -1116 0 +-1114 -1115 0 +-1114 -1116 0 +-1115 -1116 0 +1111 1112 1113 1114 1115 1116 0 +-1117 -1118 0 +-1117 -1119 0 +-1117 -1120 0 +-1117 -1121 0 +-1117 -1122 0 +-1118 -1119 0 +-1118 -1120 0 +-1118 -1121 0 +-1118 -1122 0 +-1119 -1120 0 +-1119 -1121 0 +-1119 -1122 0 +-1120 -1121 0 +-1120 -1122 0 +-1121 -1122 0 +1117 1118 1119 1120 1121 1122 0 +-1123 -1124 0 +-1123 -1125 0 +-1123 -1126 0 +-1123 -1127 0 +-1123 -1128 0 +-1124 -1125 0 +-1124 -1126 0 +-1124 -1127 0 +-1124 -1128 0 +-1125 -1126 0 +-1125 -1127 0 +-1125 -1128 0 +-1126 -1127 0 +-1126 -1128 0 +-1127 -1128 0 +1123 1124 1125 1126 1127 1128 0 +-1129 -1130 0 +-1129 -1131 0 +-1129 -1132 0 +-1129 -1133 0 +-1129 -1134 0 +-1130 -1131 0 +-1130 -1132 0 +-1130 -1133 0 +-1130 -1134 0 +-1131 -1132 0 +-1131 -1133 0 +-1131 -1134 0 +-1132 -1133 0 +-1132 -1134 0 +-1133 -1134 0 +1129 1130 1131 1132 1133 1134 0 +-1135 -1136 0 +-1135 -1137 0 +-1135 -1138 0 +-1135 -1139 0 +-1135 -1140 0 +-1136 -1137 0 +-1136 -1138 0 +-1136 -1139 0 +-1136 -1140 0 +-1137 -1138 0 +-1137 -1139 0 +-1137 -1140 0 +-1138 -1139 0 +-1138 -1140 0 +-1139 -1140 0 +1135 1136 1137 1138 1139 1140 0 +-1141 -1142 0 +-1141 -1143 0 +-1141 -1144 0 +-1141 -1145 0 +-1141 -1146 0 +-1142 -1143 0 +-1142 -1144 0 +-1142 -1145 0 +-1142 -1146 0 +-1143 -1144 0 +-1143 -1145 0 +-1143 -1146 0 +-1144 -1145 0 +-1144 -1146 0 +-1145 -1146 0 +1141 1142 1143 1144 1145 1146 0 +-1147 -1148 0 +-1147 -1149 0 +-1147 -1150 0 +-1147 -1151 0 +-1147 -1152 0 +-1148 -1149 0 +-1148 -1150 0 +-1148 -1151 0 +-1148 -1152 0 +-1149 -1150 0 +-1149 -1151 0 +-1149 -1152 0 +-1150 -1151 0 +-1150 -1152 0 +-1151 -1152 0 +1147 1148 1149 1150 1151 1152 0 +-1153 -1154 0 +-1153 -1155 0 +-1153 -1156 0 +-1153 -1157 0 +-1153 -1158 0 +-1154 -1155 0 +-1154 -1156 0 +-1154 -1157 0 +-1154 -1158 0 +-1155 -1156 0 +-1155 -1157 0 +-1155 -1158 0 +-1156 -1157 0 +-1156 -1158 0 +-1157 -1158 0 +1153 1154 1155 1156 1157 1158 0 +-1159 -1160 0 +-1159 -1161 0 +-1159 -1162 0 +-1159 -1163 0 +-1159 -1164 0 +-1160 -1161 0 +-1160 -1162 0 +-1160 -1163 0 +-1160 -1164 0 +-1161 -1162 0 +-1161 -1163 0 +-1161 -1164 0 +-1162 -1163 0 +-1162 -1164 0 +-1163 -1164 0 +1159 1160 1161 1162 1163 1164 0 +-1165 -1166 0 +-1165 -1167 0 +-1165 -1168 0 +-1165 -1169 0 +-1165 -1170 0 +-1166 -1167 0 +-1166 -1168 0 +-1166 -1169 0 +-1166 -1170 0 +-1167 -1168 0 +-1167 -1169 0 +-1167 -1170 0 +-1168 -1169 0 +-1168 -1170 0 +-1169 -1170 0 +1165 1166 1167 1168 1169 1170 0 +-1171 -1172 0 +-1171 -1173 0 +-1171 -1174 0 +-1171 -1175 0 +-1171 -1176 0 +-1172 -1173 0 +-1172 -1174 0 +-1172 -1175 0 +-1172 -1176 0 +-1173 -1174 0 +-1173 -1175 0 +-1173 -1176 0 +-1174 -1175 0 +-1174 -1176 0 +-1175 -1176 0 +1171 1172 1173 1174 1175 1176 0 +-1177 -1178 0 +-1177 -1179 0 +-1177 -1180 0 +-1177 -1181 0 +-1177 -1182 0 +-1178 -1179 0 +-1178 -1180 0 +-1178 -1181 0 +-1178 -1182 0 +-1179 -1180 0 +-1179 -1181 0 +-1179 -1182 0 +-1180 -1181 0 +-1180 -1182 0 +-1181 -1182 0 +1177 1178 1179 1180 1181 1182 0 +-1183 -1184 0 +-1183 -1185 0 +-1183 -1186 0 +-1183 -1187 0 +-1183 -1188 0 +-1184 -1185 0 +-1184 -1186 0 +-1184 -1187 0 +-1184 -1188 0 +-1185 -1186 0 +-1185 -1187 0 +-1185 -1188 0 +-1186 -1187 0 +-1186 -1188 0 +-1187 -1188 0 +1183 1184 1185 1186 1187 1188 0 +-1189 -1190 0 +-1189 -1191 0 +-1189 -1192 0 +-1189 -1193 0 +-1189 -1194 0 +-1190 -1191 0 +-1190 -1192 0 +-1190 -1193 0 +-1190 -1194 0 +-1191 -1192 0 +-1191 -1193 0 +-1191 -1194 0 +-1192 -1193 0 +-1192 -1194 0 +-1193 -1194 0 +1189 1190 1191 1192 1193 1194 0 +-1195 -1196 0 +-1195 -1197 0 +-1195 -1198 0 +-1195 -1199 0 +-1195 -1200 0 +-1196 -1197 0 +-1196 -1198 0 +-1196 -1199 0 +-1196 -1200 0 +-1197 -1198 0 +-1197 -1199 0 +-1197 -1200 0 +-1198 -1199 0 +-1198 -1200 0 +-1199 -1200 0 +1195 1196 1197 1198 1199 1200 0 +-1201 -1202 0 +-1201 -1203 0 +-1201 -1204 0 +-1201 -1205 0 +-1201 -1206 0 +-1202 -1203 0 +-1202 -1204 0 +-1202 -1205 0 +-1202 -1206 0 +-1203 -1204 0 +-1203 -1205 0 +-1203 -1206 0 +-1204 -1205 0 +-1204 -1206 0 +-1205 -1206 0 +1201 1202 1203 1204 1205 1206 0 +-1207 -1208 0 +-1207 -1209 0 +-1207 -1210 0 +-1207 -1211 0 +-1207 -1212 0 +-1208 -1209 0 +-1208 -1210 0 +-1208 -1211 0 +-1208 -1212 0 +-1209 -1210 0 +-1209 -1211 0 +-1209 -1212 0 +-1210 -1211 0 +-1210 -1212 0 +-1211 -1212 0 +1207 1208 1209 1210 1211 1212 0 +-1213 -1214 0 +-1213 -1215 0 +-1213 -1216 0 +-1213 -1217 0 +-1213 -1218 0 +-1214 -1215 0 +-1214 -1216 0 +-1214 -1217 0 +-1214 -1218 0 +-1215 -1216 0 +-1215 -1217 0 +-1215 -1218 0 +-1216 -1217 0 +-1216 -1218 0 +-1217 -1218 0 +1213 1214 1215 1216 1217 1218 0 +-1219 -1220 0 +-1219 -1221 0 +-1219 -1222 0 +-1219 -1223 0 +-1219 -1224 0 +-1220 -1221 0 +-1220 -1222 0 +-1220 -1223 0 +-1220 -1224 0 +-1221 -1222 0 +-1221 -1223 0 +-1221 -1224 0 +-1222 -1223 0 +-1222 -1224 0 +-1223 -1224 0 +1219 1220 1221 1222 1223 1224 0 +-1225 -1226 0 +-1225 -1227 0 +-1225 -1228 0 +-1225 -1229 0 +-1225 -1230 0 +-1226 -1227 0 +-1226 -1228 0 +-1226 -1229 0 +-1226 -1230 0 +-1227 -1228 0 +-1227 -1229 0 +-1227 -1230 0 +-1228 -1229 0 +-1228 -1230 0 +-1229 -1230 0 +1225 1226 1227 1228 1229 1230 0 +-1231 -1232 0 +-1231 -1233 0 +-1231 -1234 0 +-1231 -1235 0 +-1231 -1236 0 +-1232 -1233 0 +-1232 -1234 0 +-1232 -1235 0 +-1232 -1236 0 +-1233 -1234 0 +-1233 -1235 0 +-1233 -1236 0 +-1234 -1235 0 +-1234 -1236 0 +-1235 -1236 0 +1231 1232 1233 1234 1235 1236 0 +-1237 -1238 0 +-1237 -1239 0 +-1237 -1240 0 +-1237 -1241 0 +-1237 -1242 0 +-1238 -1239 0 +-1238 -1240 0 +-1238 -1241 0 +-1238 -1242 0 +-1239 -1240 0 +-1239 -1241 0 +-1239 -1242 0 +-1240 -1241 0 +-1240 -1242 0 +-1241 -1242 0 +1237 1238 1239 1240 1241 1242 0 +-1243 -1244 0 +-1243 -1245 0 +-1243 -1246 0 +-1243 -1247 0 +-1243 -1248 0 +-1244 -1245 0 +-1244 -1246 0 +-1244 -1247 0 +-1244 -1248 0 +-1245 -1246 0 +-1245 -1247 0 +-1245 -1248 0 +-1246 -1247 0 +-1246 -1248 0 +-1247 -1248 0 +1243 1244 1245 1246 1247 1248 0 +-1249 -1250 0 +-1249 -1251 0 +-1249 -1252 0 +-1249 -1253 0 +-1249 -1254 0 +-1250 -1251 0 +-1250 -1252 0 +-1250 -1253 0 +-1250 -1254 0 +-1251 -1252 0 +-1251 -1253 0 +-1251 -1254 0 +-1252 -1253 0 +-1252 -1254 0 +-1253 -1254 0 +1249 1250 1251 1252 1253 1254 0 +-1255 -1256 0 +-1255 -1257 0 +-1255 -1258 0 +-1255 -1259 0 +-1255 -1260 0 +-1256 -1257 0 +-1256 -1258 0 +-1256 -1259 0 +-1256 -1260 0 +-1257 -1258 0 +-1257 -1259 0 +-1257 -1260 0 +-1258 -1259 0 +-1258 -1260 0 +-1259 -1260 0 +1255 1256 1257 1258 1259 1260 0 +-1261 -1262 0 +-1261 -1263 0 +-1261 -1264 0 +-1261 -1265 0 +-1261 -1266 0 +-1262 -1263 0 +-1262 -1264 0 +-1262 -1265 0 +-1262 -1266 0 +-1263 -1264 0 +-1263 -1265 0 +-1263 -1266 0 +-1264 -1265 0 +-1264 -1266 0 +-1265 -1266 0 +1261 1262 1263 1264 1265 1266 0 +-1267 -1268 0 +-1267 -1269 0 +-1267 -1270 0 +-1267 -1271 0 +-1267 -1272 0 +-1268 -1269 0 +-1268 -1270 0 +-1268 -1271 0 +-1268 -1272 0 +-1269 -1270 0 +-1269 -1271 0 +-1269 -1272 0 +-1270 -1271 0 +-1270 -1272 0 +-1271 -1272 0 +1267 1268 1269 1270 1271 1272 0 +-1273 -1274 0 +-1273 -1275 0 +-1273 -1276 0 +-1273 -1277 0 +-1273 -1278 0 +-1274 -1275 0 +-1274 -1276 0 +-1274 -1277 0 +-1274 -1278 0 +-1275 -1276 0 +-1275 -1277 0 +-1275 -1278 0 +-1276 -1277 0 +-1276 -1278 0 +-1277 -1278 0 +1273 1274 1275 1276 1277 1278 0 +-1279 -1280 0 +-1279 -1281 0 +-1279 -1282 0 +-1279 -1283 0 +-1279 -1284 0 +-1280 -1281 0 +-1280 -1282 0 +-1280 -1283 0 +-1280 -1284 0 +-1281 -1282 0 +-1281 -1283 0 +-1281 -1284 0 +-1282 -1283 0 +-1282 -1284 0 +-1283 -1284 0 +1279 1280 1281 1282 1283 1284 0 +-1285 -1286 0 +-1285 -1287 0 +-1285 -1288 0 +-1285 -1289 0 +-1285 -1290 0 +-1286 -1287 0 +-1286 -1288 0 +-1286 -1289 0 +-1286 -1290 0 +-1287 -1288 0 +-1287 -1289 0 +-1287 -1290 0 +-1288 -1289 0 +-1288 -1290 0 +-1289 -1290 0 +1285 1286 1287 1288 1289 1290 0 +-1291 -1292 0 +-1291 -1293 0 +-1291 -1294 0 +-1291 -1295 0 +-1291 -1296 0 +-1292 -1293 0 +-1292 -1294 0 +-1292 -1295 0 +-1292 -1296 0 +-1293 -1294 0 +-1293 -1295 0 +-1293 -1296 0 +-1294 -1295 0 +-1294 -1296 0 +-1295 -1296 0 +1291 1292 1293 1294 1295 1296 0 +-1297 -1298 0 +-1297 -1299 0 +-1297 -1300 0 +-1297 -1301 0 +-1297 -1302 0 +-1298 -1299 0 +-1298 -1300 0 +-1298 -1301 0 +-1298 -1302 0 +-1299 -1300 0 +-1299 -1301 0 +-1299 -1302 0 +-1300 -1301 0 +-1300 -1302 0 +-1301 -1302 0 +1297 1298 1299 1300 1301 1302 0 +-1303 -1304 0 +-1303 -1305 0 +-1303 -1306 0 +-1303 -1307 0 +-1303 -1308 0 +-1304 -1305 0 +-1304 -1306 0 +-1304 -1307 0 +-1304 -1308 0 +-1305 -1306 0 +-1305 -1307 0 +-1305 -1308 0 +-1306 -1307 0 +-1306 -1308 0 +-1307 -1308 0 +1303 1304 1305 1306 1307 1308 0 +-1309 -1310 0 +-1309 -1311 0 +-1309 -1312 0 +-1309 -1313 0 +-1309 -1314 0 +-1310 -1311 0 +-1310 -1312 0 +-1310 -1313 0 +-1310 -1314 0 +-1311 -1312 0 +-1311 -1313 0 +-1311 -1314 0 +-1312 -1313 0 +-1312 -1314 0 +-1313 -1314 0 +1309 1310 1311 1312 1313 1314 0 +-1315 -1316 0 +-1315 -1317 0 +-1315 -1318 0 +-1315 -1319 0 +-1315 -1320 0 +-1316 -1317 0 +-1316 -1318 0 +-1316 -1319 0 +-1316 -1320 0 +-1317 -1318 0 +-1317 -1319 0 +-1317 -1320 0 +-1318 -1319 0 +-1318 -1320 0 +-1319 -1320 0 +1315 1316 1317 1318 1319 1320 0 +-1321 -1322 0 +-1321 -1323 0 +-1321 -1324 0 +-1321 -1325 0 +-1321 -1326 0 +-1322 -1323 0 +-1322 -1324 0 +-1322 -1325 0 +-1322 -1326 0 +-1323 -1324 0 +-1323 -1325 0 +-1323 -1326 0 +-1324 -1325 0 +-1324 -1326 0 +-1325 -1326 0 +1321 1322 1323 1324 1325 1326 0 +-1327 -1328 0 +-1327 -1329 0 +-1327 -1330 0 +-1327 -1331 0 +-1327 -1332 0 +-1328 -1329 0 +-1328 -1330 0 +-1328 -1331 0 +-1328 -1332 0 +-1329 -1330 0 +-1329 -1331 0 +-1329 -1332 0 +-1330 -1331 0 +-1330 -1332 0 +-1331 -1332 0 +1327 1328 1329 1330 1331 1332 0 +-1333 -1334 0 +-1333 -1335 0 +-1333 -1336 0 +-1333 -1337 0 +-1333 -1338 0 +-1334 -1335 0 +-1334 -1336 0 +-1334 -1337 0 +-1334 -1338 0 +-1335 -1336 0 +-1335 -1337 0 +-1335 -1338 0 +-1336 -1337 0 +-1336 -1338 0 +-1337 -1338 0 +1333 1334 1335 1336 1337 1338 0 +-1339 -1340 0 +-1339 -1341 0 +-1339 -1342 0 +-1339 -1343 0 +-1339 -1344 0 +-1340 -1341 0 +-1340 -1342 0 +-1340 -1343 0 +-1340 -1344 0 +-1341 -1342 0 +-1341 -1343 0 +-1341 -1344 0 +-1342 -1343 0 +-1342 -1344 0 +-1343 -1344 0 +1339 1340 1341 1342 1343 1344 0 +-1345 -1346 0 +-1345 -1347 0 +-1345 -1348 0 +-1345 -1349 0 +-1345 -1350 0 +-1346 -1347 0 +-1346 -1348 0 +-1346 -1349 0 +-1346 -1350 0 +-1347 -1348 0 +-1347 -1349 0 +-1347 -1350 0 +-1348 -1349 0 +-1348 -1350 0 +-1349 -1350 0 +1345 1346 1347 1348 1349 1350 0 +-1351 -1352 0 +-1351 -1353 0 +-1351 -1354 0 +-1351 -1355 0 +-1351 -1356 0 +-1352 -1353 0 +-1352 -1354 0 +-1352 -1355 0 +-1352 -1356 0 +-1353 -1354 0 +-1353 -1355 0 +-1353 -1356 0 +-1354 -1355 0 +-1354 -1356 0 +-1355 -1356 0 +1351 1352 1353 1354 1355 1356 0 +-1357 -1358 0 +-1357 -1359 0 +-1357 -1360 0 +-1357 -1361 0 +-1357 -1362 0 +-1358 -1359 0 +-1358 -1360 0 +-1358 -1361 0 +-1358 -1362 0 +-1359 -1360 0 +-1359 -1361 0 +-1359 -1362 0 +-1360 -1361 0 +-1360 -1362 0 +-1361 -1362 0 +1357 1358 1359 1360 1361 1362 0 +-1363 -1364 0 +-1363 -1365 0 +-1363 -1366 0 +-1363 -1367 0 +-1363 -1368 0 +-1364 -1365 0 +-1364 -1366 0 +-1364 -1367 0 +-1364 -1368 0 +-1365 -1366 0 +-1365 -1367 0 +-1365 -1368 0 +-1366 -1367 0 +-1366 -1368 0 +-1367 -1368 0 +1363 1364 1365 1366 1367 1368 0 +-1369 -1370 0 +-1369 -1371 0 +-1369 -1372 0 +-1369 -1373 0 +-1369 -1374 0 +-1370 -1371 0 +-1370 -1372 0 +-1370 -1373 0 +-1370 -1374 0 +-1371 -1372 0 +-1371 -1373 0 +-1371 -1374 0 +-1372 -1373 0 +-1372 -1374 0 +-1373 -1374 0 +1369 1370 1371 1372 1373 1374 0 +-1375 -1376 0 +-1375 -1377 0 +-1375 -1378 0 +-1375 -1379 0 +-1375 -1380 0 +-1376 -1377 0 +-1376 -1378 0 +-1376 -1379 0 +-1376 -1380 0 +-1377 -1378 0 +-1377 -1379 0 +-1377 -1380 0 +-1378 -1379 0 +-1378 -1380 0 +-1379 -1380 0 +1375 1376 1377 1378 1379 1380 0 +-1381 -1382 0 +-1381 -1383 0 +-1381 -1384 0 +-1381 -1385 0 +-1381 -1386 0 +-1382 -1383 0 +-1382 -1384 0 +-1382 -1385 0 +-1382 -1386 0 +-1383 -1384 0 +-1383 -1385 0 +-1383 -1386 0 +-1384 -1385 0 +-1384 -1386 0 +-1385 -1386 0 +1381 1382 1383 1384 1385 1386 0 +-1387 -1388 0 +-1387 -1389 0 +-1387 -1390 0 +-1387 -1391 0 +-1387 -1392 0 +-1388 -1389 0 +-1388 -1390 0 +-1388 -1391 0 +-1388 -1392 0 +-1389 -1390 0 +-1389 -1391 0 +-1389 -1392 0 +-1390 -1391 0 +-1390 -1392 0 +-1391 -1392 0 +1387 1388 1389 1390 1391 1392 0 +-1393 -1394 0 +-1393 -1395 0 +-1393 -1396 0 +-1393 -1397 0 +-1393 -1398 0 +-1394 -1395 0 +-1394 -1396 0 +-1394 -1397 0 +-1394 -1398 0 +-1395 -1396 0 +-1395 -1397 0 +-1395 -1398 0 +-1396 -1397 0 +-1396 -1398 0 +-1397 -1398 0 +1393 1394 1395 1396 1397 1398 0 +-1399 -1400 0 +-1399 -1401 0 +-1399 -1402 0 +-1399 -1403 0 +-1399 -1404 0 +-1400 -1401 0 +-1400 -1402 0 +-1400 -1403 0 +-1400 -1404 0 +-1401 -1402 0 +-1401 -1403 0 +-1401 -1404 0 +-1402 -1403 0 +-1402 -1404 0 +-1403 -1404 0 +1399 1400 1401 1402 1403 1404 0 +-1405 -1406 0 +-1405 -1407 0 +-1405 -1408 0 +-1405 -1409 0 +-1405 -1410 0 +-1406 -1407 0 +-1406 -1408 0 +-1406 -1409 0 +-1406 -1410 0 +-1407 -1408 0 +-1407 -1409 0 +-1407 -1410 0 +-1408 -1409 0 +-1408 -1410 0 +-1409 -1410 0 +1405 1406 1407 1408 1409 1410 0 +-1411 -1412 0 +-1411 -1413 0 +-1411 -1414 0 +-1411 -1415 0 +-1411 -1416 0 +-1412 -1413 0 +-1412 -1414 0 +-1412 -1415 0 +-1412 -1416 0 +-1413 -1414 0 +-1413 -1415 0 +-1413 -1416 0 +-1414 -1415 0 +-1414 -1416 0 +-1415 -1416 0 +1411 1412 1413 1414 1415 1416 0 +-1417 -1418 0 +-1417 -1419 0 +-1417 -1420 0 +-1417 -1421 0 +-1417 -1422 0 +-1418 -1419 0 +-1418 -1420 0 +-1418 -1421 0 +-1418 -1422 0 +-1419 -1420 0 +-1419 -1421 0 +-1419 -1422 0 +-1420 -1421 0 +-1420 -1422 0 +-1421 -1422 0 +1417 1418 1419 1420 1421 1422 0 +-1423 -1424 0 +-1423 -1425 0 +-1423 -1426 0 +-1423 -1427 0 +-1423 -1428 0 +-1424 -1425 0 +-1424 -1426 0 +-1424 -1427 0 +-1424 -1428 0 +-1425 -1426 0 +-1425 -1427 0 +-1425 -1428 0 +-1426 -1427 0 +-1426 -1428 0 +-1427 -1428 0 +1423 1424 1425 1426 1427 1428 0 +-1429 -1430 0 +-1429 -1431 0 +-1429 -1432 0 +-1429 -1433 0 +-1429 -1434 0 +-1430 -1431 0 +-1430 -1432 0 +-1430 -1433 0 +-1430 -1434 0 +-1431 -1432 0 +-1431 -1433 0 +-1431 -1434 0 +-1432 -1433 0 +-1432 -1434 0 +-1433 -1434 0 +1429 1430 1431 1432 1433 1434 0 +-1435 -1436 0 +-1435 -1437 0 +-1435 -1438 0 +-1435 -1439 0 +-1435 -1440 0 +-1436 -1437 0 +-1436 -1438 0 +-1436 -1439 0 +-1436 -1440 0 +-1437 -1438 0 +-1437 -1439 0 +-1437 -1440 0 +-1438 -1439 0 +-1438 -1440 0 +-1439 -1440 0 +1435 1436 1437 1438 1439 1440 0 +-1441 -1442 0 +-1441 -1443 0 +-1441 -1444 0 +-1441 -1445 0 +-1441 -1446 0 +-1442 -1443 0 +-1442 -1444 0 +-1442 -1445 0 +-1442 -1446 0 +-1443 -1444 0 +-1443 -1445 0 +-1443 -1446 0 +-1444 -1445 0 +-1444 -1446 0 +-1445 -1446 0 +1441 1442 1443 1444 1445 1446 0 +-1447 -1448 0 +-1447 -1449 0 +-1447 -1450 0 +-1447 -1451 0 +-1447 -1452 0 +-1448 -1449 0 +-1448 -1450 0 +-1448 -1451 0 +-1448 -1452 0 +-1449 -1450 0 +-1449 -1451 0 +-1449 -1452 0 +-1450 -1451 0 +-1450 -1452 0 +-1451 -1452 0 +1447 1448 1449 1450 1451 1452 0 +-1453 -1454 0 +-1453 -1455 0 +-1453 -1456 0 +-1453 -1457 0 +-1453 -1458 0 +-1454 -1455 0 +-1454 -1456 0 +-1454 -1457 0 +-1454 -1458 0 +-1455 -1456 0 +-1455 -1457 0 +-1455 -1458 0 +-1456 -1457 0 +-1456 -1458 0 +-1457 -1458 0 +1453 1454 1455 1456 1457 1458 0 +-1459 -1460 0 +-1459 -1461 0 +-1459 -1462 0 +-1459 -1463 0 +-1459 -1464 0 +-1460 -1461 0 +-1460 -1462 0 +-1460 -1463 0 +-1460 -1464 0 +-1461 -1462 0 +-1461 -1463 0 +-1461 -1464 0 +-1462 -1463 0 +-1462 -1464 0 +-1463 -1464 0 +1459 1460 1461 1462 1463 1464 0 +-1465 -1466 0 +-1465 -1467 0 +-1465 -1468 0 +-1465 -1469 0 +-1465 -1470 0 +-1466 -1467 0 +-1466 -1468 0 +-1466 -1469 0 +-1466 -1470 0 +-1467 -1468 0 +-1467 -1469 0 +-1467 -1470 0 +-1468 -1469 0 +-1468 -1470 0 +-1469 -1470 0 +1465 1466 1467 1468 1469 1470 0 +-1471 -1472 0 +-1471 -1473 0 +-1471 -1474 0 +-1471 -1475 0 +-1471 -1476 0 +-1472 -1473 0 +-1472 -1474 0 +-1472 -1475 0 +-1472 -1476 0 +-1473 -1474 0 +-1473 -1475 0 +-1473 -1476 0 +-1474 -1475 0 +-1474 -1476 0 +-1475 -1476 0 +1471 1472 1473 1474 1475 1476 0 +-1477 -1478 0 +-1477 -1479 0 +-1477 -1480 0 +-1477 -1481 0 +-1477 -1482 0 +-1478 -1479 0 +-1478 -1480 0 +-1478 -1481 0 +-1478 -1482 0 +-1479 -1480 0 +-1479 -1481 0 +-1479 -1482 0 +-1480 -1481 0 +-1480 -1482 0 +-1481 -1482 0 +1477 1478 1479 1480 1481 1482 0 +-1483 -1484 0 +-1483 -1485 0 +-1483 -1486 0 +-1483 -1487 0 +-1483 -1488 0 +-1484 -1485 0 +-1484 -1486 0 +-1484 -1487 0 +-1484 -1488 0 +-1485 -1486 0 +-1485 -1487 0 +-1485 -1488 0 +-1486 -1487 0 +-1486 -1488 0 +-1487 -1488 0 +1483 1484 1485 1486 1487 1488 0 +-1489 -1490 0 +-1489 -1491 0 +-1489 -1492 0 +-1489 -1493 0 +-1489 -1494 0 +-1490 -1491 0 +-1490 -1492 0 +-1490 -1493 0 +-1490 -1494 0 +-1491 -1492 0 +-1491 -1493 0 +-1491 -1494 0 +-1492 -1493 0 +-1492 -1494 0 +-1493 -1494 0 +1489 1490 1491 1492 1493 1494 0 +-1495 -1496 0 +-1495 -1497 0 +-1495 -1498 0 +-1495 -1499 0 +-1495 -1500 0 +-1496 -1497 0 +-1496 -1498 0 +-1496 -1499 0 +-1496 -1500 0 +-1497 -1498 0 +-1497 -1499 0 +-1497 -1500 0 +-1498 -1499 0 +-1498 -1500 0 +-1499 -1500 0 +1495 1496 1497 1498 1499 1500 0 +-1501 -1502 0 +-1501 -1503 0 +-1501 -1504 0 +-1501 -1505 0 +-1501 -1506 0 +-1502 -1503 0 +-1502 -1504 0 +-1502 -1505 0 +-1502 -1506 0 +-1503 -1504 0 +-1503 -1505 0 +-1503 -1506 0 +-1504 -1505 0 +-1504 -1506 0 +-1505 -1506 0 +1501 1502 1503 1504 1505 1506 0 +-1507 -1508 0 +-1507 -1509 0 +-1507 -1510 0 +-1507 -1511 0 +-1507 -1512 0 +-1508 -1509 0 +-1508 -1510 0 +-1508 -1511 0 +-1508 -1512 0 +-1509 -1510 0 +-1509 -1511 0 +-1509 -1512 0 +-1510 -1511 0 +-1510 -1512 0 +-1511 -1512 0 +1507 1508 1509 1510 1511 1512 0 +-1513 -1514 0 +-1513 -1515 0 +-1513 -1516 0 +-1513 -1517 0 +-1513 -1518 0 +-1514 -1515 0 +-1514 -1516 0 +-1514 -1517 0 +-1514 -1518 0 +-1515 -1516 0 +-1515 -1517 0 +-1515 -1518 0 +-1516 -1517 0 +-1516 -1518 0 +-1517 -1518 0 +1513 1514 1515 1516 1517 1518 0 +-1519 -1520 0 +-1519 -1521 0 +-1519 -1522 0 +-1519 -1523 0 +-1519 -1524 0 +-1520 -1521 0 +-1520 -1522 0 +-1520 -1523 0 +-1520 -1524 0 +-1521 -1522 0 +-1521 -1523 0 +-1521 -1524 0 +-1522 -1523 0 +-1522 -1524 0 +-1523 -1524 0 +1519 1520 1521 1522 1523 1524 0 +-1525 -1526 0 +-1525 -1527 0 +-1525 -1528 0 +-1525 -1529 0 +-1525 -1530 0 +-1526 -1527 0 +-1526 -1528 0 +-1526 -1529 0 +-1526 -1530 0 +-1527 -1528 0 +-1527 -1529 0 +-1527 -1530 0 +-1528 -1529 0 +-1528 -1530 0 +-1529 -1530 0 +1525 1526 1527 1528 1529 1530 0 +-1531 -1532 0 +-1531 -1533 0 +-1531 -1534 0 +-1531 -1535 0 +-1531 -1536 0 +-1532 -1533 0 +-1532 -1534 0 +-1532 -1535 0 +-1532 -1536 0 +-1533 -1534 0 +-1533 -1535 0 +-1533 -1536 0 +-1534 -1535 0 +-1534 -1536 0 +-1535 -1536 0 +1531 1532 1533 1534 1535 1536 0 +-1537 -1538 0 +-1537 -1539 0 +-1537 -1540 0 +-1537 -1541 0 +-1537 -1542 0 +-1538 -1539 0 +-1538 -1540 0 +-1538 -1541 0 +-1538 -1542 0 +-1539 -1540 0 +-1539 -1541 0 +-1539 -1542 0 +-1540 -1541 0 +-1540 -1542 0 +-1541 -1542 0 +1537 1538 1539 1540 1541 1542 0 +-1543 -1544 0 +-1543 -1545 0 +-1543 -1546 0 +-1543 -1547 0 +-1543 -1548 0 +-1544 -1545 0 +-1544 -1546 0 +-1544 -1547 0 +-1544 -1548 0 +-1545 -1546 0 +-1545 -1547 0 +-1545 -1548 0 +-1546 -1547 0 +-1546 -1548 0 +-1547 -1548 0 +1543 1544 1545 1546 1547 1548 0 +-1549 -1550 0 +-1549 -1551 0 +-1549 -1552 0 +-1549 -1553 0 +-1549 -1554 0 +-1550 -1551 0 +-1550 -1552 0 +-1550 -1553 0 +-1550 -1554 0 +-1551 -1552 0 +-1551 -1553 0 +-1551 -1554 0 +-1552 -1553 0 +-1552 -1554 0 +-1553 -1554 0 +1549 1550 1551 1552 1553 1554 0 +-1555 -1556 0 +-1555 -1557 0 +-1555 -1558 0 +-1555 -1559 0 +-1555 -1560 0 +-1556 -1557 0 +-1556 -1558 0 +-1556 -1559 0 +-1556 -1560 0 +-1557 -1558 0 +-1557 -1559 0 +-1557 -1560 0 +-1558 -1559 0 +-1558 -1560 0 +-1559 -1560 0 +1555 1556 1557 1558 1559 1560 0 +-1561 -1562 0 +-1561 -1563 0 +-1561 -1564 0 +-1561 -1565 0 +-1561 -1566 0 +-1562 -1563 0 +-1562 -1564 0 +-1562 -1565 0 +-1562 -1566 0 +-1563 -1564 0 +-1563 -1565 0 +-1563 -1566 0 +-1564 -1565 0 +-1564 -1566 0 +-1565 -1566 0 +1561 1562 1563 1564 1565 1566 0 +-1567 -1568 0 +-1567 -1569 0 +-1567 -1570 0 +-1567 -1571 0 +-1567 -1572 0 +-1568 -1569 0 +-1568 -1570 0 +-1568 -1571 0 +-1568 -1572 0 +-1569 -1570 0 +-1569 -1571 0 +-1569 -1572 0 +-1570 -1571 0 +-1570 -1572 0 +-1571 -1572 0 +1567 1568 1569 1570 1571 1572 0 +-1573 -1574 0 +-1573 -1575 0 +-1573 -1576 0 +-1573 -1577 0 +-1573 -1578 0 +-1574 -1575 0 +-1574 -1576 0 +-1574 -1577 0 +-1574 -1578 0 +-1575 -1576 0 +-1575 -1577 0 +-1575 -1578 0 +-1576 -1577 0 +-1576 -1578 0 +-1577 -1578 0 +1573 1574 1575 1576 1577 1578 0 +-1579 -1580 0 +-1579 -1581 0 +-1579 -1582 0 +-1579 -1583 0 +-1579 -1584 0 +-1580 -1581 0 +-1580 -1582 0 +-1580 -1583 0 +-1580 -1584 0 +-1581 -1582 0 +-1581 -1583 0 +-1581 -1584 0 +-1582 -1583 0 +-1582 -1584 0 +-1583 -1584 0 +1579 1580 1581 1582 1583 1584 0 +-1585 -1586 0 +-1585 -1587 0 +-1585 -1588 0 +-1585 -1589 0 +-1585 -1590 0 +-1586 -1587 0 +-1586 -1588 0 +-1586 -1589 0 +-1586 -1590 0 +-1587 -1588 0 +-1587 -1589 0 +-1587 -1590 0 +-1588 -1589 0 +-1588 -1590 0 +-1589 -1590 0 +1585 1586 1587 1588 1589 1590 0 +-1591 -1592 0 +-1591 -1593 0 +-1591 -1594 0 +-1591 -1595 0 +-1591 -1596 0 +-1592 -1593 0 +-1592 -1594 0 +-1592 -1595 0 +-1592 -1596 0 +-1593 -1594 0 +-1593 -1595 0 +-1593 -1596 0 +-1594 -1595 0 +-1594 -1596 0 +-1595 -1596 0 +1591 1592 1593 1594 1595 1596 0 +-1597 -1598 0 +-1597 -1599 0 +-1597 -1600 0 +-1597 -1601 0 +-1597 -1602 0 +-1598 -1599 0 +-1598 -1600 0 +-1598 -1601 0 +-1598 -1602 0 +-1599 -1600 0 +-1599 -1601 0 +-1599 -1602 0 +-1600 -1601 0 +-1600 -1602 0 +-1601 -1602 0 +1597 1598 1599 1600 1601 1602 0 +-1603 -1604 0 +-1603 -1605 0 +-1603 -1606 0 +-1603 -1607 0 +-1603 -1608 0 +-1604 -1605 0 +-1604 -1606 0 +-1604 -1607 0 +-1604 -1608 0 +-1605 -1606 0 +-1605 -1607 0 +-1605 -1608 0 +-1606 -1607 0 +-1606 -1608 0 +-1607 -1608 0 +1603 1604 1605 1606 1607 1608 0 +-1609 -1610 0 +-1609 -1611 0 +-1609 -1612 0 +-1609 -1613 0 +-1609 -1614 0 +-1610 -1611 0 +-1610 -1612 0 +-1610 -1613 0 +-1610 -1614 0 +-1611 -1612 0 +-1611 -1613 0 +-1611 -1614 0 +-1612 -1613 0 +-1612 -1614 0 +-1613 -1614 0 +1609 1610 1611 1612 1613 1614 0 +-1615 -1616 0 +-1615 -1617 0 +-1615 -1618 0 +-1615 -1619 0 +-1615 -1620 0 +-1616 -1617 0 +-1616 -1618 0 +-1616 -1619 0 +-1616 -1620 0 +-1617 -1618 0 +-1617 -1619 0 +-1617 -1620 0 +-1618 -1619 0 +-1618 -1620 0 +-1619 -1620 0 +1615 1616 1617 1618 1619 1620 0 +-1621 -1622 0 +-1621 -1623 0 +-1621 -1624 0 +-1621 -1625 0 +-1621 -1626 0 +-1622 -1623 0 +-1622 -1624 0 +-1622 -1625 0 +-1622 -1626 0 +-1623 -1624 0 +-1623 -1625 0 +-1623 -1626 0 +-1624 -1625 0 +-1624 -1626 0 +-1625 -1626 0 +1621 1622 1623 1624 1625 1626 0 +-1627 -1628 0 +-1627 -1629 0 +-1627 -1630 0 +-1627 -1631 0 +-1627 -1632 0 +-1628 -1629 0 +-1628 -1630 0 +-1628 -1631 0 +-1628 -1632 0 +-1629 -1630 0 +-1629 -1631 0 +-1629 -1632 0 +-1630 -1631 0 +-1630 -1632 0 +-1631 -1632 0 +1627 1628 1629 1630 1631 1632 0 +-1633 -1634 0 +-1633 -1635 0 +-1633 -1636 0 +-1633 -1637 0 +-1633 -1638 0 +-1634 -1635 0 +-1634 -1636 0 +-1634 -1637 0 +-1634 -1638 0 +-1635 -1636 0 +-1635 -1637 0 +-1635 -1638 0 +-1636 -1637 0 +-1636 -1638 0 +-1637 -1638 0 +1633 1634 1635 1636 1637 1638 0 +-1639 -1640 0 +-1639 -1641 0 +-1639 -1642 0 +-1639 -1643 0 +-1639 -1644 0 +-1640 -1641 0 +-1640 -1642 0 +-1640 -1643 0 +-1640 -1644 0 +-1641 -1642 0 +-1641 -1643 0 +-1641 -1644 0 +-1642 -1643 0 +-1642 -1644 0 +-1643 -1644 0 +1639 1640 1641 1642 1643 1644 0 +-1645 -1646 0 +-1645 -1647 0 +-1645 -1648 0 +-1645 -1649 0 +-1645 -1650 0 +-1646 -1647 0 +-1646 -1648 0 +-1646 -1649 0 +-1646 -1650 0 +-1647 -1648 0 +-1647 -1649 0 +-1647 -1650 0 +-1648 -1649 0 +-1648 -1650 0 +-1649 -1650 0 +1645 1646 1647 1648 1649 1650 0 +-1651 -1652 0 +-1651 -1653 0 +-1651 -1654 0 +-1651 -1655 0 +-1651 -1656 0 +-1652 -1653 0 +-1652 -1654 0 +-1652 -1655 0 +-1652 -1656 0 +-1653 -1654 0 +-1653 -1655 0 +-1653 -1656 0 +-1654 -1655 0 +-1654 -1656 0 +-1655 -1656 0 +1651 1652 1653 1654 1655 1656 0 +-1657 -1658 0 +-1657 -1659 0 +-1657 -1660 0 +-1657 -1661 0 +-1657 -1662 0 +-1658 -1659 0 +-1658 -1660 0 +-1658 -1661 0 +-1658 -1662 0 +-1659 -1660 0 +-1659 -1661 0 +-1659 -1662 0 +-1660 -1661 0 +-1660 -1662 0 +-1661 -1662 0 +1657 1658 1659 1660 1661 1662 0 +-1663 -1664 0 +-1663 -1665 0 +-1663 -1666 0 +-1663 -1667 0 +-1663 -1668 0 +-1664 -1665 0 +-1664 -1666 0 +-1664 -1667 0 +-1664 -1668 0 +-1665 -1666 0 +-1665 -1667 0 +-1665 -1668 0 +-1666 -1667 0 +-1666 -1668 0 +-1667 -1668 0 +1663 1664 1665 1666 1667 1668 0 +-1669 -1670 0 +-1669 -1671 0 +-1669 -1672 0 +-1669 -1673 0 +-1669 -1674 0 +-1670 -1671 0 +-1670 -1672 0 +-1670 -1673 0 +-1670 -1674 0 +-1671 -1672 0 +-1671 -1673 0 +-1671 -1674 0 +-1672 -1673 0 +-1672 -1674 0 +-1673 -1674 0 +1669 1670 1671 1672 1673 1674 0 +-1675 -1676 0 +-1675 -1677 0 +-1675 -1678 0 +-1675 -1679 0 +-1675 -1680 0 +-1676 -1677 0 +-1676 -1678 0 +-1676 -1679 0 +-1676 -1680 0 +-1677 -1678 0 +-1677 -1679 0 +-1677 -1680 0 +-1678 -1679 0 +-1678 -1680 0 +-1679 -1680 0 +1675 1676 1677 1678 1679 1680 0 +-1681 -1682 0 +-1681 -1683 0 +-1681 -1684 0 +-1681 -1685 0 +-1681 -1686 0 +-1682 -1683 0 +-1682 -1684 0 +-1682 -1685 0 +-1682 -1686 0 +-1683 -1684 0 +-1683 -1685 0 +-1683 -1686 0 +-1684 -1685 0 +-1684 -1686 0 +-1685 -1686 0 +1681 1682 1683 1684 1685 1686 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-997 -1015 0 +-998 -1016 0 +-999 -1017 0 +-1000 -1018 0 +-1001 -1019 0 +-1002 -1020 0 +-1009 -1021 0 +-1010 -1022 0 +-1011 -1023 0 +-1012 -1024 0 +-1013 -1025 0 +-1014 -1026 0 +-1063 -1075 0 +-1064 -1076 0 +-1065 -1077 0 +-1066 -1078 0 +-1067 -1079 0 +-1068 -1080 0 +-1099 -1123 0 +-1100 -1124 0 +-1101 -1125 0 +-1102 -1126 0 +-1103 -1127 0 +-1104 -1128 0 +-1141 -1165 0 +-1142 -1166 0 +-1143 -1167 0 +-1144 -1168 0 +-1145 -1169 0 +-1146 -1170 0 +-1171 -1195 0 +-1172 -1196 0 +-1173 -1197 0 +-1174 -1198 0 +-1175 -1199 0 +-1176 -1200 0 +-1189 -1195 0 +-1190 -1196 0 +-1191 -1197 0 +-1192 -1198 0 +-1193 -1199 0 +-1194 -1200 0 +-1315 -1321 0 +-1316 -1322 0 +-1317 -1323 0 +-1318 -1324 0 +-1319 -1325 0 +-1320 -1326 0 +-1345 -1369 0 +-1346 -1370 0 +-1347 -1371 0 +-1348 -1372 0 +-1349 -1373 0 +-1350 -1374 0 +-1369 -1381 0 +-1370 -1382 0 +-1371 -1383 0 +-1372 -1384 0 +-1373 -1385 0 +-1374 -1386 0 +-1369 -1399 0 +-1370 -1400 0 +-1371 -1401 0 +-1372 -1402 0 +-1373 -1403 0 +-1374 -1404 0 +-1387 -1393 0 +-1388 -1394 0 +-1389 -1395 0 +-1390 -1396 0 +-1391 -1397 0 +-1392 -1398 0 +-1465 -1483 0 +-1466 -1484 0 +-1467 -1485 0 +-1468 -1486 0 +-1469 -1487 0 +-1470 -1488 0 +-1513 -1525 0 +-1514 -1526 0 +-1515 -1527 0 +-1516 -1528 0 +-1517 -1529 0 +-1518 -1530 0 +-1513 -1537 0 +-1514 -1538 0 +-1515 -1539 0 +-1516 -1540 0 +-1517 -1541 0 +-1518 -1542 0 +-1525 -1555 0 +-1526 -1556 0 +-1527 -1557 0 +-1528 -1558 0 +-1529 -1559 0 +-1530 -1560 0 +-1543 -1561 0 +-1544 -1562 0 +-1545 -1563 0 +-1546 -1564 0 +-1547 -1565 0 +-1548 -1566 0 +-1579 -1585 0 +-1580 -1586 0 +-1581 -1587 0 +-1582 -1588 0 +-1583 -1589 0 +-1584 -1590 0 +-1585 -1597 0 +-1586 -1598 0 +-1587 -1599 0 +-1588 -1600 0 +-1589 -1601 0 +-1590 -1602 0 +-1621 -1627 0 +-1622 -1628 0 +-1623 -1629 0 +-1624 -1630 0 +-1625 -1631 0 +-1626 -1632 0 +-1651 -1681 0 +-1652 -1682 0 +-1653 -1683 0 +-1654 -1684 0 +-1655 -1685 0 +-1656 -1686 0 +-25 -1681 0 +-26 -1682 0 +-27 -1683 0 +-28 -1684 0 +-29 -1685 0 +-30 -1686 0 +-19 -1681 0 +-20 -1682 0 +-21 -1683 0 +-22 -1684 0 +-23 -1685 0 +-24 -1686 0 +-13 -1681 0 +-14 -1682 0 +-15 -1683 0 +-16 -1684 0 +-17 -1685 0 +-18 -1686 0 +-7 -1681 0 +-8 -1682 0 +-9 -1683 0 +-10 -1684 0 +-11 -1685 0 +-12 -1686 0 +-1 -1681 0 +-2 -1682 0 +-3 -1683 0 +-4 -1684 0 +-5 -1685 0 +-6 -1686 0 +-19 -1675 0 +-20 -1676 0 +-21 -1677 0 +-22 -1678 0 +-23 -1679 0 +-24 -1680 0 +-13 -1675 0 +-14 -1676 0 +-15 -1677 0 +-16 -1678 0 +-17 -1679 0 +-18 -1680 0 +-7 -1675 0 +-8 -1676 0 +-9 -1677 0 +-10 -1678 0 +-11 -1679 0 +-12 -1680 0 +-1 -1675 0 +-2 -1676 0 +-3 -1677 0 +-4 -1678 0 +-5 -1679 0 +-6 -1680 0 +-1675 -1681 0 +-1676 -1682 0 +-1677 -1683 0 +-1678 -1684 0 +-1679 -1685 0 +-1680 -1686 0 +-13 -1669 0 +-14 -1670 0 +-15 -1671 0 +-16 -1672 0 +-17 -1673 0 +-18 -1674 0 +-7 -1669 0 +-8 -1670 0 +-9 -1671 0 +-10 -1672 0 +-11 -1673 0 +-12 -1674 0 +-1 -1669 0 +-2 -1670 0 +-3 -1671 0 +-4 -1672 0 +-5 -1673 0 +-6 -1674 0 +-1669 -1681 0 +-1670 -1682 0 +-1671 -1683 0 +-1672 -1684 0 +-1673 -1685 0 +-1674 -1686 0 +-1669 -1675 0 +-1670 -1676 0 +-1671 -1677 0 +-1672 -1678 0 +-1673 -1679 0 +-1674 -1680 0 +-7 -1663 0 +-8 -1664 0 +-9 -1665 0 +-10 -1666 0 +-11 -1667 0 +-12 -1668 0 +-1 -1663 0 +-2 -1664 0 +-3 -1665 0 +-4 -1666 0 +-5 -1667 0 +-6 -1668 0 +-1663 -1681 0 +-1664 -1682 0 +-1665 -1683 0 +-1666 -1684 0 +-1667 -1685 0 +-1668 -1686 0 +-1663 -1675 0 +-1664 -1676 0 +-1665 -1677 0 +-1666 -1678 0 +-1667 -1679 0 +-1668 -1680 0 +-1663 -1669 0 +-1664 -1670 0 +-1665 -1671 0 +-1666 -1672 0 +-1667 -1673 0 +-1668 -1674 0 +-1 -1657 0 +-2 -1658 0 +-3 -1659 0 +-4 -1660 0 +-5 -1661 0 +-6 -1662 0 +-1657 -1681 0 +-1658 -1682 0 +-1659 -1683 0 +-1660 -1684 0 +-1661 -1685 0 +-1662 -1686 0 +-1657 -1675 0 +-1658 -1676 0 +-1659 -1677 0 +-1660 -1678 0 +-1661 -1679 0 +-1662 -1680 0 +-1657 -1669 0 +-1658 -1670 0 +-1659 -1671 0 +-1660 -1672 0 +-1661 -1673 0 +-1662 -1674 0 +-1657 -1663 0 +-1658 -1664 0 +-1659 -1665 0 +-1660 -1666 0 +-1661 -1667 0 +-1662 -1668 0 +-1651 -1675 0 +-1652 -1676 0 +-1653 -1677 0 +-1654 -1678 0 +-1655 -1679 0 +-1656 -1680 0 +-1651 -1669 0 +-1652 -1670 0 +-1653 -1671 0 +-1654 -1672 0 +-1655 -1673 0 +-1656 -1674 0 +-1651 -1663 0 +-1652 -1664 0 +-1653 -1665 0 +-1654 -1666 0 +-1655 -1667 0 +-1656 -1668 0 +-1651 -1657 0 +-1652 -1658 0 +-1653 -1659 0 +-1654 -1660 0 +-1655 -1661 0 +-1656 -1662 0 +-1645 -1675 0 +-1646 -1676 0 +-1647 -1677 0 +-1648 -1678 0 +-1649 -1679 0 +-1650 -1680 0 +-1645 -1669 0 +-1646 -1670 0 +-1647 -1671 0 +-1648 -1672 0 +-1649 -1673 0 +-1650 -1674 0 +-1645 -1663 0 +-1646 -1664 0 +-1647 -1665 0 +-1648 -1666 0 +-1649 -1667 0 +-1650 -1668 0 +-1645 -1657 0 +-1646 -1658 0 +-1647 -1659 0 +-1648 -1660 0 +-1649 -1661 0 +-1650 -1662 0 +-1645 -1651 0 +-1646 -1652 0 +-1647 -1653 0 +-1648 -1654 0 +-1649 -1655 0 +-1650 -1656 0 +-1639 -1669 0 +-1640 -1670 0 +-1641 -1671 0 +-1642 -1672 0 +-1643 -1673 0 +-1644 -1674 0 +-1639 -1663 0 +-1640 -1664 0 +-1641 -1665 0 +-1642 -1666 0 +-1643 -1667 0 +-1644 -1668 0 +-1639 -1657 0 +-1640 -1658 0 +-1641 -1659 0 +-1642 -1660 0 +-1643 -1661 0 +-1644 -1662 0 +-1639 -1651 0 +-1640 -1652 0 +-1641 -1653 0 +-1642 -1654 0 +-1643 -1655 0 +-1644 -1656 0 +-1639 -1645 0 +-1640 -1646 0 +-1641 -1647 0 +-1642 -1648 0 +-1643 -1649 0 +-1644 -1650 0 +-1633 -1663 0 +-1634 -1664 0 +-1635 -1665 0 +-1636 -1666 0 +-1637 -1667 0 +-1638 -1668 0 +-1633 -1657 0 +-1634 -1658 0 +-1635 -1659 0 +-1636 -1660 0 +-1637 -1661 0 +-1638 -1662 0 +-1633 -1651 0 +-1634 -1652 0 +-1635 -1653 0 +-1636 -1654 0 +-1637 -1655 0 +-1638 -1656 0 +-1633 -1645 0 +-1634 -1646 0 +-1635 -1647 0 +-1636 -1648 0 +-1637 -1649 0 +-1638 -1650 0 +-1633 -1639 0 +-1634 -1640 0 +-1635 -1641 0 +-1636 -1642 0 +-1637 -1643 0 +-1638 -1644 0 +-1627 -1657 0 +-1628 -1658 0 +-1629 -1659 0 +-1630 -1660 0 +-1631 -1661 0 +-1632 -1662 0 +-1627 -1651 0 +-1628 -1652 0 +-1629 -1653 0 +-1630 -1654 0 +-1631 -1655 0 +-1632 -1656 0 +-1627 -1645 0 +-1628 -1646 0 +-1629 -1647 0 +-1630 -1648 0 +-1631 -1649 0 +-1632 -1650 0 +-1627 -1639 0 +-1628 -1640 0 +-1629 -1641 0 +-1630 -1642 0 +-1631 -1643 0 +-1632 -1644 0 +-1627 -1633 0 +-1628 -1634 0 +-1629 -1635 0 +-1630 -1636 0 +-1631 -1637 0 +-1632 -1638 0 +-1621 -1651 0 +-1622 -1652 0 +-1623 -1653 0 +-1624 -1654 0 +-1625 -1655 0 +-1626 -1656 0 +-1621 -1645 0 +-1622 -1646 0 +-1623 -1647 0 +-1624 -1648 0 +-1625 -1649 0 +-1626 -1650 0 +-1621 -1639 0 +-1622 -1640 0 +-1623 -1641 0 +-1624 -1642 0 +-1625 -1643 0 +-1626 -1644 0 +-1621 -1633 0 +-1622 -1634 0 +-1623 -1635 0 +-1624 -1636 0 +-1625 -1637 0 +-1626 -1638 0 +-1615 -1645 0 +-1616 -1646 0 +-1617 -1647 0 +-1618 -1648 0 +-1619 -1649 0 +-1620 -1650 0 +-1615 -1639 0 +-1616 -1640 0 +-1617 -1641 0 +-1618 -1642 0 +-1619 -1643 0 +-1620 -1644 0 +-1615 -1633 0 +-1616 -1634 0 +-1617 -1635 0 +-1618 -1636 0 +-1619 -1637 0 +-1620 -1638 0 +-1615 -1627 0 +-1616 -1628 0 +-1617 -1629 0 +-1618 -1630 0 +-1619 -1631 0 +-1620 -1632 0 +-1615 -1621 0 +-1616 -1622 0 +-1617 -1623 0 +-1618 -1624 0 +-1619 -1625 0 +-1620 -1626 0 +-1609 -1639 0 +-1610 -1640 0 +-1611 -1641 0 +-1612 -1642 0 +-1613 -1643 0 +-1614 -1644 0 +-1609 -1633 0 +-1610 -1634 0 +-1611 -1635 0 +-1612 -1636 0 +-1613 -1637 0 +-1614 -1638 0 +-1609 -1627 0 +-1610 -1628 0 +-1611 -1629 0 +-1612 -1630 0 +-1613 -1631 0 +-1614 -1632 0 +-1609 -1621 0 +-1610 -1622 0 +-1611 -1623 0 +-1612 -1624 0 +-1613 -1625 0 +-1614 -1626 0 +-1609 -1615 0 +-1610 -1616 0 +-1611 -1617 0 +-1612 -1618 0 +-1613 -1619 0 +-1614 -1620 0 +-1603 -1633 0 +-1604 -1634 0 +-1605 -1635 0 +-1606 -1636 0 +-1607 -1637 0 +-1608 -1638 0 +-1603 -1627 0 +-1604 -1628 0 +-1605 -1629 0 +-1606 -1630 0 +-1607 -1631 0 +-1608 -1632 0 +-1603 -1621 0 +-1604 -1622 0 +-1605 -1623 0 +-1606 -1624 0 +-1607 -1625 0 +-1608 -1626 0 +-1603 -1615 0 +-1604 -1616 0 +-1605 -1617 0 +-1606 -1618 0 +-1607 -1619 0 +-1608 -1620 0 +-1603 -1609 0 +-1604 -1610 0 +-1605 -1611 0 +-1606 -1612 0 +-1607 -1613 0 +-1608 -1614 0 +-1597 -1627 0 +-1598 -1628 0 +-1599 -1629 0 +-1600 -1630 0 +-1601 -1631 0 +-1602 -1632 0 +-1597 -1621 0 +-1598 -1622 0 +-1599 -1623 0 +-1600 -1624 0 +-1601 -1625 0 +-1602 -1626 0 +-1597 -1615 0 +-1598 -1616 0 +-1599 -1617 0 +-1600 -1618 0 +-1601 -1619 0 +-1602 -1620 0 +-1597 -1609 0 +-1598 -1610 0 +-1599 -1611 0 +-1600 -1612 0 +-1601 -1613 0 +-1602 -1614 0 +-1597 -1603 0 +-1598 -1604 0 +-1599 -1605 0 +-1600 -1606 0 +-1601 -1607 0 +-1602 -1608 0 +-1591 -1621 0 +-1592 -1622 0 +-1593 -1623 0 +-1594 -1624 0 +-1595 -1625 0 +-1596 -1626 0 +-1591 -1615 0 +-1592 -1616 0 +-1593 -1617 0 +-1594 -1618 0 +-1595 -1619 0 +-1596 -1620 0 +-1591 -1609 0 +-1592 -1610 0 +-1593 -1611 0 +-1594 -1612 0 +-1595 -1613 0 +-1596 -1614 0 +-1591 -1603 0 +-1592 -1604 0 +-1593 -1605 0 +-1594 -1606 0 +-1595 -1607 0 +-1596 -1608 0 +-1591 -1597 0 +-1592 -1598 0 +-1593 -1599 0 +-1594 -1600 0 +-1595 -1601 0 +-1596 -1602 0 +-1585 -1615 0 +-1586 -1616 0 +-1587 -1617 0 +-1588 -1618 0 +-1589 -1619 0 +-1590 -1620 0 +-1585 -1609 0 +-1586 -1610 0 +-1587 -1611 0 +-1588 -1612 0 +-1589 -1613 0 +-1590 -1614 0 +-1585 -1603 0 +-1586 -1604 0 +-1587 -1605 0 +-1588 -1606 0 +-1589 -1607 0 +-1590 -1608 0 +-1585 -1591 0 +-1586 -1592 0 +-1587 -1593 0 +-1588 -1594 0 +-1589 -1595 0 +-1590 -1596 0 +-1579 -1609 0 +-1580 -1610 0 +-1581 -1611 0 +-1582 -1612 0 +-1583 -1613 0 +-1584 -1614 0 +-1579 -1603 0 +-1580 -1604 0 +-1581 -1605 0 +-1582 -1606 0 +-1583 -1607 0 +-1584 -1608 0 +-1579 -1597 0 +-1580 -1598 0 +-1581 -1599 0 +-1582 -1600 0 +-1583 -1601 0 +-1584 -1602 0 +-1579 -1591 0 +-1580 -1592 0 +-1581 -1593 0 +-1582 -1594 0 +-1583 -1595 0 +-1584 -1596 0 +-1573 -1603 0 +-1574 -1604 0 +-1575 -1605 0 +-1576 -1606 0 +-1577 -1607 0 +-1578 -1608 0 +-1573 -1597 0 +-1574 -1598 0 +-1575 -1599 0 +-1576 -1600 0 +-1577 -1601 0 +-1578 -1602 0 +-1573 -1591 0 +-1574 -1592 0 +-1575 -1593 0 +-1576 -1594 0 +-1577 -1595 0 +-1578 -1596 0 +-1573 -1585 0 +-1574 -1586 0 +-1575 -1587 0 +-1576 -1588 0 +-1577 -1589 0 +-1578 -1590 0 +-1573 -1579 0 +-1574 -1580 0 +-1575 -1581 0 +-1576 -1582 0 +-1577 -1583 0 +-1578 -1584 0 +-1567 -1597 0 +-1568 -1598 0 +-1569 -1599 0 +-1570 -1600 0 +-1571 -1601 0 +-1572 -1602 0 +-1567 -1591 0 +-1568 -1592 0 +-1569 -1593 0 +-1570 -1594 0 +-1571 -1595 0 +-1572 -1596 0 +-1567 -1585 0 +-1568 -1586 0 +-1569 -1587 0 +-1570 -1588 0 +-1571 -1589 0 +-1572 -1590 0 +-1567 -1579 0 +-1568 -1580 0 +-1569 -1581 0 +-1570 -1582 0 +-1571 -1583 0 +-1572 -1584 0 +-1567 -1573 0 +-1568 -1574 0 +-1569 -1575 0 +-1570 -1576 0 +-1571 -1577 0 +-1572 -1578 0 +-1561 -1591 0 +-1562 -1592 0 +-1563 -1593 0 +-1564 -1594 0 +-1565 -1595 0 +-1566 -1596 0 +-1561 -1585 0 +-1562 -1586 0 +-1563 -1587 0 +-1564 -1588 0 +-1565 -1589 0 +-1566 -1590 0 +-1561 -1579 0 +-1562 -1580 0 +-1563 -1581 0 +-1564 -1582 0 +-1565 -1583 0 +-1566 -1584 0 +-1561 -1573 0 +-1562 -1574 0 +-1563 -1575 0 +-1564 -1576 0 +-1565 -1577 0 +-1566 -1578 0 +-1561 -1567 0 +-1562 -1568 0 +-1563 -1569 0 +-1564 -1570 0 +-1565 -1571 0 +-1566 -1572 0 +-1555 -1585 0 +-1556 -1586 0 +-1557 -1587 0 +-1558 -1588 0 +-1559 -1589 0 +-1560 -1590 0 +-1555 -1579 0 +-1556 -1580 0 +-1557 -1581 0 +-1558 -1582 0 +-1559 -1583 0 +-1560 -1584 0 +-1555 -1573 0 +-1556 -1574 0 +-1557 -1575 0 +-1558 -1576 0 +-1559 -1577 0 +-1560 -1578 0 +-1555 -1567 0 +-1556 -1568 0 +-1557 -1569 0 +-1558 -1570 0 +-1559 -1571 0 +-1560 -1572 0 +-1555 -1561 0 +-1556 -1562 0 +-1557 -1563 0 +-1558 -1564 0 +-1559 -1565 0 +-1560 -1566 0 +-1549 -1579 0 +-1550 -1580 0 +-1551 -1581 0 +-1552 -1582 0 +-1553 -1583 0 +-1554 -1584 0 +-1549 -1573 0 +-1550 -1574 0 +-1551 -1575 0 +-1552 -1576 0 +-1553 -1577 0 +-1554 -1578 0 +-1549 -1567 0 +-1550 -1568 0 +-1551 -1569 0 +-1552 -1570 0 +-1553 -1571 0 +-1554 -1572 0 +-1549 -1561 0 +-1550 -1562 0 +-1551 -1563 0 +-1552 -1564 0 +-1553 -1565 0 +-1554 -1566 0 +-1549 -1555 0 +-1550 -1556 0 +-1551 -1557 0 +-1552 -1558 0 +-1553 -1559 0 +-1554 -1560 0 +-1543 -1573 0 +-1544 -1574 0 +-1545 -1575 0 +-1546 -1576 0 +-1547 -1577 0 +-1548 -1578 0 +-1543 -1567 0 +-1544 -1568 0 +-1545 -1569 0 +-1546 -1570 0 +-1547 -1571 0 +-1548 -1572 0 +-1543 -1555 0 +-1544 -1556 0 +-1545 -1557 0 +-1546 -1558 0 +-1547 -1559 0 +-1548 -1560 0 +-1543 -1549 0 +-1544 -1550 0 +-1545 -1551 0 +-1546 -1552 0 +-1547 -1553 0 +-1548 -1554 0 +-1537 -1567 0 +-1538 -1568 0 +-1539 -1569 0 +-1540 -1570 0 +-1541 -1571 0 +-1542 -1572 0 +-1537 -1561 0 +-1538 -1562 0 +-1539 -1563 0 +-1540 -1564 0 +-1541 -1565 0 +-1542 -1566 0 +-1537 -1555 0 +-1538 -1556 0 +-1539 -1557 0 +-1540 -1558 0 +-1541 -1559 0 +-1542 -1560 0 +-1537 -1549 0 +-1538 -1550 0 +-1539 -1551 0 +-1540 -1552 0 +-1541 -1553 0 +-1542 -1554 0 +-1537 -1543 0 +-1538 -1544 0 +-1539 -1545 0 +-1540 -1546 0 +-1541 -1547 0 +-1542 -1548 0 +-1531 -1561 0 +-1532 -1562 0 +-1533 -1563 0 +-1534 -1564 0 +-1535 -1565 0 +-1536 -1566 0 +-1531 -1555 0 +-1532 -1556 0 +-1533 -1557 0 +-1534 -1558 0 +-1535 -1559 0 +-1536 -1560 0 +-1531 -1549 0 +-1532 -1550 0 +-1533 -1551 0 +-1534 -1552 0 +-1535 -1553 0 +-1536 -1554 0 +-1531 -1543 0 +-1532 -1544 0 +-1533 -1545 0 +-1534 -1546 0 +-1535 -1547 0 +-1536 -1548 0 +-1531 -1537 0 +-1532 -1538 0 +-1533 -1539 0 +-1534 -1540 0 +-1535 -1541 0 +-1536 -1542 0 +-1525 -1549 0 +-1526 -1550 0 +-1527 -1551 0 +-1528 -1552 0 +-1529 -1553 0 +-1530 -1554 0 +-1525 -1543 0 +-1526 -1544 0 +-1527 -1545 0 +-1528 -1546 0 +-1529 -1547 0 +-1530 -1548 0 +-1525 -1537 0 +-1526 -1538 0 +-1527 -1539 0 +-1528 -1540 0 +-1529 -1541 0 +-1530 -1542 0 +-1525 -1531 0 +-1526 -1532 0 +-1527 -1533 0 +-1528 -1534 0 +-1529 -1535 0 +-1530 -1536 0 +-1519 -1549 0 +-1520 -1550 0 +-1521 -1551 0 +-1522 -1552 0 +-1523 -1553 0 +-1524 -1554 0 +-1519 -1543 0 +-1520 -1544 0 +-1521 -1545 0 +-1522 -1546 0 +-1523 -1547 0 +-1524 -1548 0 +-1519 -1537 0 +-1520 -1538 0 +-1521 -1539 0 +-1522 -1540 0 +-1523 -1541 0 +-1524 -1542 0 +-1519 -1531 0 +-1520 -1532 0 +-1521 -1533 0 +-1522 -1534 0 +-1523 -1535 0 +-1524 -1536 0 +-1519 -1525 0 +-1520 -1526 0 +-1521 -1527 0 +-1522 -1528 0 +-1523 -1529 0 +-1524 -1530 0 +-1513 -1543 0 +-1514 -1544 0 +-1515 -1545 0 +-1516 -1546 0 +-1517 -1547 0 +-1518 -1548 0 +-1513 -1531 0 +-1514 -1532 0 +-1515 -1533 0 +-1516 -1534 0 +-1517 -1535 0 +-1518 -1536 0 +-1513 -1519 0 +-1514 -1520 0 +-1515 -1521 0 +-1516 -1522 0 +-1517 -1523 0 +-1518 -1524 0 +-1507 -1537 0 +-1508 -1538 0 +-1509 -1539 0 +-1510 -1540 0 +-1511 -1541 0 +-1512 -1542 0 +-1507 -1531 0 +-1508 -1532 0 +-1509 -1533 0 +-1510 -1534 0 +-1511 -1535 0 +-1512 -1536 0 +-1507 -1525 0 +-1508 -1526 0 +-1509 -1527 0 +-1510 -1528 0 +-1511 -1529 0 +-1512 -1530 0 +-1507 -1519 0 +-1508 -1520 0 +-1509 -1521 0 +-1510 -1522 0 +-1511 -1523 0 +-1512 -1524 0 +-1507 -1513 0 +-1508 -1514 0 +-1509 -1515 0 +-1510 -1516 0 +-1511 -1517 0 +-1512 -1518 0 +-1501 -1531 0 +-1502 -1532 0 +-1503 -1533 0 +-1504 -1534 0 +-1505 -1535 0 +-1506 -1536 0 +-1501 -1525 0 +-1502 -1526 0 +-1503 -1527 0 +-1504 -1528 0 +-1505 -1529 0 +-1506 -1530 0 +-1501 -1519 0 +-1502 -1520 0 +-1503 -1521 0 +-1504 -1522 0 +-1505 -1523 0 +-1506 -1524 0 +-1501 -1513 0 +-1502 -1514 0 +-1503 -1515 0 +-1504 -1516 0 +-1505 -1517 0 +-1506 -1518 0 +-1501 -1507 0 +-1502 -1508 0 +-1503 -1509 0 +-1504 -1510 0 +-1505 -1511 0 +-1506 -1512 0 +-1495 -1525 0 +-1496 -1526 0 +-1497 -1527 0 +-1498 -1528 0 +-1499 -1529 0 +-1500 -1530 0 +-1495 -1519 0 +-1496 -1520 0 +-1497 -1521 0 +-1498 -1522 0 +-1499 -1523 0 +-1500 -1524 0 +-1495 -1513 0 +-1496 -1514 0 +-1497 -1515 0 +-1498 -1516 0 +-1499 -1517 0 +-1500 -1518 0 +-1495 -1507 0 +-1496 -1508 0 +-1497 -1509 0 +-1498 -1510 0 +-1499 -1511 0 +-1500 -1512 0 +-1495 -1501 0 +-1496 -1502 0 +-1497 -1503 0 +-1498 -1504 0 +-1499 -1505 0 +-1500 -1506 0 +-1489 -1519 0 +-1490 -1520 0 +-1491 -1521 0 +-1492 -1522 0 +-1493 -1523 0 +-1494 -1524 0 +-1489 -1513 0 +-1490 -1514 0 +-1491 -1515 0 +-1492 -1516 0 +-1493 -1517 0 +-1494 -1518 0 +-1489 -1507 0 +-1490 -1508 0 +-1491 -1509 0 +-1492 -1510 0 +-1493 -1511 0 +-1494 -1512 0 +-1489 -1501 0 +-1490 -1502 0 +-1491 -1503 0 +-1492 -1504 0 +-1493 -1505 0 +-1494 -1506 0 +-1489 -1495 0 +-1490 -1496 0 +-1491 -1497 0 +-1492 -1498 0 +-1493 -1499 0 +-1494 -1500 0 +-1483 -1513 0 +-1484 -1514 0 +-1485 -1515 0 +-1486 -1516 0 +-1487 -1517 0 +-1488 -1518 0 +-1483 -1507 0 +-1484 -1508 0 +-1485 -1509 0 +-1486 -1510 0 +-1487 -1511 0 +-1488 -1512 0 +-1483 -1501 0 +-1484 -1502 0 +-1485 -1503 0 +-1486 -1504 0 +-1487 -1505 0 +-1488 -1506 0 +-1483 -1495 0 +-1484 -1496 0 +-1485 -1497 0 +-1486 -1498 0 +-1487 -1499 0 +-1488 -1500 0 +-1483 -1489 0 +-1484 -1490 0 +-1485 -1491 0 +-1486 -1492 0 +-1487 -1493 0 +-1488 -1494 0 +-1477 -1507 0 +-1478 -1508 0 +-1479 -1509 0 +-1480 -1510 0 +-1481 -1511 0 +-1482 -1512 0 +-1477 -1501 0 +-1478 -1502 0 +-1479 -1503 0 +-1480 -1504 0 +-1481 -1505 0 +-1482 -1506 0 +-1477 -1495 0 +-1478 -1496 0 +-1479 -1497 0 +-1480 -1498 0 +-1481 -1499 0 +-1482 -1500 0 +-1477 -1489 0 +-1478 -1490 0 +-1479 -1491 0 +-1480 -1492 0 +-1481 -1493 0 +-1482 -1494 0 +-1477 -1483 0 +-1478 -1484 0 +-1479 -1485 0 +-1480 -1486 0 +-1481 -1487 0 +-1482 -1488 0 +-1471 -1501 0 +-1472 -1502 0 +-1473 -1503 0 +-1474 -1504 0 +-1475 -1505 0 +-1476 -1506 0 +-1471 -1495 0 +-1472 -1496 0 +-1473 -1497 0 +-1474 -1498 0 +-1475 -1499 0 +-1476 -1500 0 +-1471 -1489 0 +-1472 -1490 0 +-1473 -1491 0 +-1474 -1492 0 +-1475 -1493 0 +-1476 -1494 0 +-1471 -1483 0 +-1472 -1484 0 +-1473 -1485 0 +-1474 -1486 0 +-1475 -1487 0 +-1476 -1488 0 +-1471 -1477 0 +-1472 -1478 0 +-1473 -1479 0 +-1474 -1480 0 +-1475 -1481 0 +-1476 -1482 0 +-1465 -1495 0 +-1466 -1496 0 +-1467 -1497 0 +-1468 -1498 0 +-1469 -1499 0 +-1470 -1500 0 +-1465 -1489 0 +-1466 -1490 0 +-1467 -1491 0 +-1468 -1492 0 +-1469 -1493 0 +-1470 -1494 0 +-1465 -1477 0 +-1466 -1478 0 +-1467 -1479 0 +-1468 -1480 0 +-1469 -1481 0 +-1470 -1482 0 +-1465 -1471 0 +-1466 -1472 0 +-1467 -1473 0 +-1468 -1474 0 +-1469 -1475 0 +-1470 -1476 0 +-1459 -1489 0 +-1460 -1490 0 +-1461 -1491 0 +-1462 -1492 0 +-1463 -1493 0 +-1464 -1494 0 +-1459 -1483 0 +-1460 -1484 0 +-1461 -1485 0 +-1462 -1486 0 +-1463 -1487 0 +-1464 -1488 0 +-1459 -1477 0 +-1460 -1478 0 +-1461 -1479 0 +-1462 -1480 0 +-1463 -1481 0 +-1464 -1482 0 +-1459 -1471 0 +-1460 -1472 0 +-1461 -1473 0 +-1462 -1474 0 +-1463 -1475 0 +-1464 -1476 0 +-1459 -1465 0 +-1460 -1466 0 +-1461 -1467 0 +-1462 -1468 0 +-1463 -1469 0 +-1464 -1470 0 +-1453 -1483 0 +-1454 -1484 0 +-1455 -1485 0 +-1456 -1486 0 +-1457 -1487 0 +-1458 -1488 0 +-1453 -1477 0 +-1454 -1478 0 +-1455 -1479 0 +-1456 -1480 0 +-1457 -1481 0 +-1458 -1482 0 +-1453 -1471 0 +-1454 -1472 0 +-1455 -1473 0 +-1456 -1474 0 +-1457 -1475 0 +-1458 -1476 0 +-1453 -1465 0 +-1454 -1466 0 +-1455 -1467 0 +-1456 -1468 0 +-1457 -1469 0 +-1458 -1470 0 +-1453 -1459 0 +-1454 -1460 0 +-1455 -1461 0 +-1456 -1462 0 +-1457 -1463 0 +-1458 -1464 0 +-1447 -1477 0 +-1448 -1478 0 +-1449 -1479 0 +-1450 -1480 0 +-1451 -1481 0 +-1452 -1482 0 +-1447 -1471 0 +-1448 -1472 0 +-1449 -1473 0 +-1450 -1474 0 +-1451 -1475 0 +-1452 -1476 0 +-1447 -1465 0 +-1448 -1466 0 +-1449 -1467 0 +-1450 -1468 0 +-1451 -1469 0 +-1452 -1470 0 +-1447 -1459 0 +-1448 -1460 0 +-1449 -1461 0 +-1450 -1462 0 +-1451 -1463 0 +-1452 -1464 0 +-1447 -1453 0 +-1448 -1454 0 +-1449 -1455 0 +-1450 -1456 0 +-1451 -1457 0 +-1452 -1458 0 +-1441 -1471 0 +-1442 -1472 0 +-1443 -1473 0 +-1444 -1474 0 +-1445 -1475 0 +-1446 -1476 0 +-1441 -1465 0 +-1442 -1466 0 +-1443 -1467 0 +-1444 -1468 0 +-1445 -1469 0 +-1446 -1470 0 +-1441 -1459 0 +-1442 -1460 0 +-1443 -1461 0 +-1444 -1462 0 +-1445 -1463 0 +-1446 -1464 0 +-1441 -1453 0 +-1442 -1454 0 +-1443 -1455 0 +-1444 -1456 0 +-1445 -1457 0 +-1446 -1458 0 +-1441 -1447 0 +-1442 -1448 0 +-1443 -1449 0 +-1444 -1450 0 +-1445 -1451 0 +-1446 -1452 0 +-1435 -1465 0 +-1436 -1466 0 +-1437 -1467 0 +-1438 -1468 0 +-1439 -1469 0 +-1440 -1470 0 +-1435 -1459 0 +-1436 -1460 0 +-1437 -1461 0 +-1438 -1462 0 +-1439 -1463 0 +-1440 -1464 0 +-1435 -1453 0 +-1436 -1454 0 +-1437 -1455 0 +-1438 -1456 0 +-1439 -1457 0 +-1440 -1458 0 +-1435 -1447 0 +-1436 -1448 0 +-1437 -1449 0 +-1438 -1450 0 +-1439 -1451 0 +-1440 -1452 0 +-1435 -1441 0 +-1436 -1442 0 +-1437 -1443 0 +-1438 -1444 0 +-1439 -1445 0 +-1440 -1446 0 +-1429 -1459 0 +-1430 -1460 0 +-1431 -1461 0 +-1432 -1462 0 +-1433 -1463 0 +-1434 -1464 0 +-1429 -1453 0 +-1430 -1454 0 +-1431 -1455 0 +-1432 -1456 0 +-1433 -1457 0 +-1434 -1458 0 +-1429 -1447 0 +-1430 -1448 0 +-1431 -1449 0 +-1432 -1450 0 +-1433 -1451 0 +-1434 -1452 0 +-1429 -1441 0 +-1430 -1442 0 +-1431 -1443 0 +-1432 -1444 0 +-1433 -1445 0 +-1434 -1446 0 +-1429 -1435 0 +-1430 -1436 0 +-1431 -1437 0 +-1432 -1438 0 +-1433 -1439 0 +-1434 -1440 0 +-1423 -1453 0 +-1424 -1454 0 +-1425 -1455 0 +-1426 -1456 0 +-1427 -1457 0 +-1428 -1458 0 +-1423 -1447 0 +-1424 -1448 0 +-1425 -1449 0 +-1426 -1450 0 +-1427 -1451 0 +-1428 -1452 0 +-1423 -1441 0 +-1424 -1442 0 +-1425 -1443 0 +-1426 -1444 0 +-1427 -1445 0 +-1428 -1446 0 +-1423 -1435 0 +-1424 -1436 0 +-1425 -1437 0 +-1426 -1438 0 +-1427 -1439 0 +-1428 -1440 0 +-1423 -1429 0 +-1424 -1430 0 +-1425 -1431 0 +-1426 -1432 0 +-1427 -1433 0 +-1428 -1434 0 +-1417 -1447 0 +-1418 -1448 0 +-1419 -1449 0 +-1420 -1450 0 +-1421 -1451 0 +-1422 -1452 0 +-1417 -1441 0 +-1418 -1442 0 +-1419 -1443 0 +-1420 -1444 0 +-1421 -1445 0 +-1422 -1446 0 +-1417 -1435 0 +-1418 -1436 0 +-1419 -1437 0 +-1420 -1438 0 +-1421 -1439 0 +-1422 -1440 0 +-1417 -1429 0 +-1418 -1430 0 +-1419 -1431 0 +-1420 -1432 0 +-1421 -1433 0 +-1422 -1434 0 +-1417 -1423 0 +-1418 -1424 0 +-1419 -1425 0 +-1420 -1426 0 +-1421 -1427 0 +-1422 -1428 0 +-1411 -1441 0 +-1412 -1442 0 +-1413 -1443 0 +-1414 -1444 0 +-1415 -1445 0 +-1416 -1446 0 +-1411 -1435 0 +-1412 -1436 0 +-1413 -1437 0 +-1414 -1438 0 +-1415 -1439 0 +-1416 -1440 0 +-1411 -1429 0 +-1412 -1430 0 +-1413 -1431 0 +-1414 -1432 0 +-1415 -1433 0 +-1416 -1434 0 +-1411 -1423 0 +-1412 -1424 0 +-1413 -1425 0 +-1414 -1426 0 +-1415 -1427 0 +-1416 -1428 0 +-1411 -1417 0 +-1412 -1418 0 +-1413 -1419 0 +-1414 -1420 0 +-1415 -1421 0 +-1416 -1422 0 +-1405 -1435 0 +-1406 -1436 0 +-1407 -1437 0 +-1408 -1438 0 +-1409 -1439 0 +-1410 -1440 0 +-1405 -1429 0 +-1406 -1430 0 +-1407 -1431 0 +-1408 -1432 0 +-1409 -1433 0 +-1410 -1434 0 +-1405 -1423 0 +-1406 -1424 0 +-1407 -1425 0 +-1408 -1426 0 +-1409 -1427 0 +-1410 -1428 0 +-1405 -1417 0 +-1406 -1418 0 +-1407 -1419 0 +-1408 -1420 0 +-1409 -1421 0 +-1410 -1422 0 +-1405 -1411 0 +-1406 -1412 0 +-1407 -1413 0 +-1408 -1414 0 +-1409 -1415 0 +-1410 -1416 0 +-1399 -1429 0 +-1400 -1430 0 +-1401 -1431 0 +-1402 -1432 0 +-1403 -1433 0 +-1404 -1434 0 +-1399 -1423 0 +-1400 -1424 0 +-1401 -1425 0 +-1402 -1426 0 +-1403 -1427 0 +-1404 -1428 0 +-1399 -1417 0 +-1400 -1418 0 +-1401 -1419 0 +-1402 -1420 0 +-1403 -1421 0 +-1404 -1422 0 +-1399 -1411 0 +-1400 -1412 0 +-1401 -1413 0 +-1402 -1414 0 +-1403 -1415 0 +-1404 -1416 0 +-1399 -1405 0 +-1400 -1406 0 +-1401 -1407 0 +-1402 -1408 0 +-1403 -1409 0 +-1404 -1410 0 +-1393 -1423 0 +-1394 -1424 0 +-1395 -1425 0 +-1396 -1426 0 +-1397 -1427 0 +-1398 -1428 0 +-1393 -1417 0 +-1394 -1418 0 +-1395 -1419 0 +-1396 -1420 0 +-1397 -1421 0 +-1398 -1422 0 +-1393 -1411 0 +-1394 -1412 0 +-1395 -1413 0 +-1396 -1414 0 +-1397 -1415 0 +-1398 -1416 0 +-1393 -1405 0 +-1394 -1406 0 +-1395 -1407 0 +-1396 -1408 0 +-1397 -1409 0 +-1398 -1410 0 +-1393 -1399 0 +-1394 -1400 0 +-1395 -1401 0 +-1396 -1402 0 +-1397 -1403 0 +-1398 -1404 0 +-1387 -1417 0 +-1388 -1418 0 +-1389 -1419 0 +-1390 -1420 0 +-1391 -1421 0 +-1392 -1422 0 +-1387 -1411 0 +-1388 -1412 0 +-1389 -1413 0 +-1390 -1414 0 +-1391 -1415 0 +-1392 -1416 0 +-1387 -1405 0 +-1388 -1406 0 +-1389 -1407 0 +-1390 -1408 0 +-1391 -1409 0 +-1392 -1410 0 +-1387 -1399 0 +-1388 -1400 0 +-1389 -1401 0 +-1390 -1402 0 +-1391 -1403 0 +-1392 -1404 0 +-1381 -1411 0 +-1382 -1412 0 +-1383 -1413 0 +-1384 -1414 0 +-1385 -1415 0 +-1386 -1416 0 +-1381 -1405 0 +-1382 -1406 0 +-1383 -1407 0 +-1384 -1408 0 +-1385 -1409 0 +-1386 -1410 0 +-1381 -1399 0 +-1382 -1400 0 +-1383 -1401 0 +-1384 -1402 0 +-1385 -1403 0 +-1386 -1404 0 +-1381 -1393 0 +-1382 -1394 0 +-1383 -1395 0 +-1384 -1396 0 +-1385 -1397 0 +-1386 -1398 0 +-1381 -1387 0 +-1382 -1388 0 +-1383 -1389 0 +-1384 -1390 0 +-1385 -1391 0 +-1386 -1392 0 +-1375 -1405 0 +-1376 -1406 0 +-1377 -1407 0 +-1378 -1408 0 +-1379 -1409 0 +-1380 -1410 0 +-1375 -1393 0 +-1376 -1394 0 +-1377 -1395 0 +-1378 -1396 0 +-1379 -1397 0 +-1380 -1398 0 +-1375 -1387 0 +-1376 -1388 0 +-1377 -1389 0 +-1378 -1390 0 +-1379 -1391 0 +-1380 -1392 0 +-1375 -1381 0 +-1376 -1382 0 +-1377 -1383 0 +-1378 -1384 0 +-1379 -1385 0 +-1380 -1386 0 +-1369 -1393 0 +-1370 -1394 0 +-1371 -1395 0 +-1372 -1396 0 +-1373 -1397 0 +-1374 -1398 0 +-1369 -1387 0 +-1370 -1388 0 +-1371 -1389 0 +-1372 -1390 0 +-1373 -1391 0 +-1374 -1392 0 +-1369 -1375 0 +-1370 -1376 0 +-1371 -1377 0 +-1372 -1378 0 +-1373 -1379 0 +-1374 -1380 0 +-1363 -1393 0 +-1364 -1394 0 +-1365 -1395 0 +-1366 -1396 0 +-1367 -1397 0 +-1368 -1398 0 +-1363 -1387 0 +-1364 -1388 0 +-1365 -1389 0 +-1366 -1390 0 +-1367 -1391 0 +-1368 -1392 0 +-1363 -1381 0 +-1364 -1382 0 +-1365 -1383 0 +-1366 -1384 0 +-1367 -1385 0 +-1368 -1386 0 +-1363 -1375 0 +-1364 -1376 0 +-1365 -1377 0 +-1366 -1378 0 +-1367 -1379 0 +-1368 -1380 0 +-1363 -1369 0 +-1364 -1370 0 +-1365 -1371 0 +-1366 -1372 0 +-1367 -1373 0 +-1368 -1374 0 +-1357 -1387 0 +-1358 -1388 0 +-1359 -1389 0 +-1360 -1390 0 +-1361 -1391 0 +-1362 -1392 0 +-1357 -1381 0 +-1358 -1382 0 +-1359 -1383 0 +-1360 -1384 0 +-1361 -1385 0 +-1362 -1386 0 +-1357 -1375 0 +-1358 -1376 0 +-1359 -1377 0 +-1360 -1378 0 +-1361 -1379 0 +-1362 -1380 0 +-1357 -1369 0 +-1358 -1370 0 +-1359 -1371 0 +-1360 -1372 0 +-1361 -1373 0 +-1362 -1374 0 +-1357 -1363 0 +-1358 -1364 0 +-1359 -1365 0 +-1360 -1366 0 +-1361 -1367 0 +-1362 -1368 0 +-1351 -1381 0 +-1352 -1382 0 +-1353 -1383 0 +-1354 -1384 0 +-1355 -1385 0 +-1356 -1386 0 +-1351 -1375 0 +-1352 -1376 0 +-1353 -1377 0 +-1354 -1378 0 +-1355 -1379 0 +-1356 -1380 0 +-1351 -1369 0 +-1352 -1370 0 +-1353 -1371 0 +-1354 -1372 0 +-1355 -1373 0 +-1356 -1374 0 +-1351 -1363 0 +-1352 -1364 0 +-1353 -1365 0 +-1354 -1366 0 +-1355 -1367 0 +-1356 -1368 0 +-1351 -1357 0 +-1352 -1358 0 +-1353 -1359 0 +-1354 -1360 0 +-1355 -1361 0 +-1356 -1362 0 +-1345 -1375 0 +-1346 -1376 0 +-1347 -1377 0 +-1348 -1378 0 +-1349 -1379 0 +-1350 -1380 0 +-1345 -1363 0 +-1346 -1364 0 +-1347 -1365 0 +-1348 -1366 0 +-1349 -1367 0 +-1350 -1368 0 +-1345 -1357 0 +-1346 -1358 0 +-1347 -1359 0 +-1348 -1360 0 +-1349 -1361 0 +-1350 -1362 0 +-1345 -1351 0 +-1346 -1352 0 +-1347 -1353 0 +-1348 -1354 0 +-1349 -1355 0 +-1350 -1356 0 +-1339 -1369 0 +-1340 -1370 0 +-1341 -1371 0 +-1342 -1372 0 +-1343 -1373 0 +-1344 -1374 0 +-1339 -1363 0 +-1340 -1364 0 +-1341 -1365 0 +-1342 -1366 0 +-1343 -1367 0 +-1344 -1368 0 +-1339 -1357 0 +-1340 -1358 0 +-1341 -1359 0 +-1342 -1360 0 +-1343 -1361 0 +-1344 -1362 0 +-1339 -1351 0 +-1340 -1352 0 +-1341 -1353 0 +-1342 -1354 0 +-1343 -1355 0 +-1344 -1356 0 +-1339 -1345 0 +-1340 -1346 0 +-1341 -1347 0 +-1342 -1348 0 +-1343 -1349 0 +-1344 -1350 0 +-1333 -1363 0 +-1334 -1364 0 +-1335 -1365 0 +-1336 -1366 0 +-1337 -1367 0 +-1338 -1368 0 +-1333 -1357 0 +-1334 -1358 0 +-1335 -1359 0 +-1336 -1360 0 +-1337 -1361 0 +-1338 -1362 0 +-1333 -1351 0 +-1334 -1352 0 +-1335 -1353 0 +-1336 -1354 0 +-1337 -1355 0 +-1338 -1356 0 +-1333 -1345 0 +-1334 -1346 0 +-1335 -1347 0 +-1336 -1348 0 +-1337 -1349 0 +-1338 -1350 0 +-1333 -1339 0 +-1334 -1340 0 +-1335 -1341 0 +-1336 -1342 0 +-1337 -1343 0 +-1338 -1344 0 +-1327 -1357 0 +-1328 -1358 0 +-1329 -1359 0 +-1330 -1360 0 +-1331 -1361 0 +-1332 -1362 0 +-1327 -1351 0 +-1328 -1352 0 +-1329 -1353 0 +-1330 -1354 0 +-1331 -1355 0 +-1332 -1356 0 +-1327 -1345 0 +-1328 -1346 0 +-1329 -1347 0 +-1330 -1348 0 +-1331 -1349 0 +-1332 -1350 0 +-1327 -1339 0 +-1328 -1340 0 +-1329 -1341 0 +-1330 -1342 0 +-1331 -1343 0 +-1332 -1344 0 +-1327 -1333 0 +-1328 -1334 0 +-1329 -1335 0 +-1330 -1336 0 +-1331 -1337 0 +-1332 -1338 0 +-1321 -1351 0 +-1322 -1352 0 +-1323 -1353 0 +-1324 -1354 0 +-1325 -1355 0 +-1326 -1356 0 +-1321 -1345 0 +-1322 -1346 0 +-1323 -1347 0 +-1324 -1348 0 +-1325 -1349 0 +-1326 -1350 0 +-1321 -1339 0 +-1322 -1340 0 +-1323 -1341 0 +-1324 -1342 0 +-1325 -1343 0 +-1326 -1344 0 +-1321 -1333 0 +-1322 -1334 0 +-1323 -1335 0 +-1324 -1336 0 +-1325 -1337 0 +-1326 -1338 0 +-1321 -1327 0 +-1322 -1328 0 +-1323 -1329 0 +-1324 -1330 0 +-1325 -1331 0 +-1326 -1332 0 +-1315 -1345 0 +-1316 -1346 0 +-1317 -1347 0 +-1318 -1348 0 +-1319 -1349 0 +-1320 -1350 0 +-1315 -1339 0 +-1316 -1340 0 +-1317 -1341 0 +-1318 -1342 0 +-1319 -1343 0 +-1320 -1344 0 +-1315 -1333 0 +-1316 -1334 0 +-1317 -1335 0 +-1318 -1336 0 +-1319 -1337 0 +-1320 -1338 0 +-1315 -1327 0 +-1316 -1328 0 +-1317 -1329 0 +-1318 -1330 0 +-1319 -1331 0 +-1320 -1332 0 +-1309 -1339 0 +-1310 -1340 0 +-1311 -1341 0 +-1312 -1342 0 +-1313 -1343 0 +-1314 -1344 0 +-1309 -1333 0 +-1310 -1334 0 +-1311 -1335 0 +-1312 -1336 0 +-1313 -1337 0 +-1314 -1338 0 +-1309 -1327 0 +-1310 -1328 0 +-1311 -1329 0 +-1312 -1330 0 +-1313 -1331 0 +-1314 -1332 0 +-1309 -1321 0 +-1310 -1322 0 +-1311 -1323 0 +-1312 -1324 0 +-1313 -1325 0 +-1314 -1326 0 +-1309 -1315 0 +-1310 -1316 0 +-1311 -1317 0 +-1312 -1318 0 +-1313 -1319 0 +-1314 -1320 0 +-1303 -1333 0 +-1304 -1334 0 +-1305 -1335 0 +-1306 -1336 0 +-1307 -1337 0 +-1308 -1338 0 +-1303 -1327 0 +-1304 -1328 0 +-1305 -1329 0 +-1306 -1330 0 +-1307 -1331 0 +-1308 -1332 0 +-1303 -1321 0 +-1304 -1322 0 +-1305 -1323 0 +-1306 -1324 0 +-1307 -1325 0 +-1308 -1326 0 +-1303 -1315 0 +-1304 -1316 0 +-1305 -1317 0 +-1306 -1318 0 +-1307 -1319 0 +-1308 -1320 0 +-1303 -1309 0 +-1304 -1310 0 +-1305 -1311 0 +-1306 -1312 0 +-1307 -1313 0 +-1308 -1314 0 +-1297 -1327 0 +-1298 -1328 0 +-1299 -1329 0 +-1300 -1330 0 +-1301 -1331 0 +-1302 -1332 0 +-1297 -1321 0 +-1298 -1322 0 +-1299 -1323 0 +-1300 -1324 0 +-1301 -1325 0 +-1302 -1326 0 +-1297 -1315 0 +-1298 -1316 0 +-1299 -1317 0 +-1300 -1318 0 +-1301 -1319 0 +-1302 -1320 0 +-1297 -1309 0 +-1298 -1310 0 +-1299 -1311 0 +-1300 -1312 0 +-1301 -1313 0 +-1302 -1314 0 +-1297 -1303 0 +-1298 -1304 0 +-1299 -1305 0 +-1300 -1306 0 +-1301 -1307 0 +-1302 -1308 0 +-1291 -1321 0 +-1292 -1322 0 +-1293 -1323 0 +-1294 -1324 0 +-1295 -1325 0 +-1296 -1326 0 +-1291 -1315 0 +-1292 -1316 0 +-1293 -1317 0 +-1294 -1318 0 +-1295 -1319 0 +-1296 -1320 0 +-1291 -1309 0 +-1292 -1310 0 +-1293 -1311 0 +-1294 -1312 0 +-1295 -1313 0 +-1296 -1314 0 +-1291 -1303 0 +-1292 -1304 0 +-1293 -1305 0 +-1294 -1306 0 +-1295 -1307 0 +-1296 -1308 0 +-1291 -1297 0 +-1292 -1298 0 +-1293 -1299 0 +-1294 -1300 0 +-1295 -1301 0 +-1296 -1302 0 +-1285 -1315 0 +-1286 -1316 0 +-1287 -1317 0 +-1288 -1318 0 +-1289 -1319 0 +-1290 -1320 0 +-1285 -1309 0 +-1286 -1310 0 +-1287 -1311 0 +-1288 -1312 0 +-1289 -1313 0 +-1290 -1314 0 +-1285 -1303 0 +-1286 -1304 0 +-1287 -1305 0 +-1288 -1306 0 +-1289 -1307 0 +-1290 -1308 0 +-1285 -1297 0 +-1286 -1298 0 +-1287 -1299 0 +-1288 -1300 0 +-1289 -1301 0 +-1290 -1302 0 +-1285 -1291 0 +-1286 -1292 0 +-1287 -1293 0 +-1288 -1294 0 +-1289 -1295 0 +-1290 -1296 0 +-1279 -1309 0 +-1280 -1310 0 +-1281 -1311 0 +-1282 -1312 0 +-1283 -1313 0 +-1284 -1314 0 +-1279 -1303 0 +-1280 -1304 0 +-1281 -1305 0 +-1282 -1306 0 +-1283 -1307 0 +-1284 -1308 0 +-1279 -1297 0 +-1280 -1298 0 +-1281 -1299 0 +-1282 -1300 0 +-1283 -1301 0 +-1284 -1302 0 +-1279 -1291 0 +-1280 -1292 0 +-1281 -1293 0 +-1282 -1294 0 +-1283 -1295 0 +-1284 -1296 0 +-1279 -1285 0 +-1280 -1286 0 +-1281 -1287 0 +-1282 -1288 0 +-1283 -1289 0 +-1284 -1290 0 +-1273 -1303 0 +-1274 -1304 0 +-1275 -1305 0 +-1276 -1306 0 +-1277 -1307 0 +-1278 -1308 0 +-1273 -1297 0 +-1274 -1298 0 +-1275 -1299 0 +-1276 -1300 0 +-1277 -1301 0 +-1278 -1302 0 +-1273 -1291 0 +-1274 -1292 0 +-1275 -1293 0 +-1276 -1294 0 +-1277 -1295 0 +-1278 -1296 0 +-1273 -1285 0 +-1274 -1286 0 +-1275 -1287 0 +-1276 -1288 0 +-1277 -1289 0 +-1278 -1290 0 +-1273 -1279 0 +-1274 -1280 0 +-1275 -1281 0 +-1276 -1282 0 +-1277 -1283 0 +-1278 -1284 0 +-1267 -1297 0 +-1268 -1298 0 +-1269 -1299 0 +-1270 -1300 0 +-1271 -1301 0 +-1272 -1302 0 +-1267 -1291 0 +-1268 -1292 0 +-1269 -1293 0 +-1270 -1294 0 +-1271 -1295 0 +-1272 -1296 0 +-1267 -1285 0 +-1268 -1286 0 +-1269 -1287 0 +-1270 -1288 0 +-1271 -1289 0 +-1272 -1290 0 +-1267 -1279 0 +-1268 -1280 0 +-1269 -1281 0 +-1270 -1282 0 +-1271 -1283 0 +-1272 -1284 0 +-1267 -1273 0 +-1268 -1274 0 +-1269 -1275 0 +-1270 -1276 0 +-1271 -1277 0 +-1272 -1278 0 +-1261 -1291 0 +-1262 -1292 0 +-1263 -1293 0 +-1264 -1294 0 +-1265 -1295 0 +-1266 -1296 0 +-1261 -1285 0 +-1262 -1286 0 +-1263 -1287 0 +-1264 -1288 0 +-1265 -1289 0 +-1266 -1290 0 +-1261 -1279 0 +-1262 -1280 0 +-1263 -1281 0 +-1264 -1282 0 +-1265 -1283 0 +-1266 -1284 0 +-1261 -1273 0 +-1262 -1274 0 +-1263 -1275 0 +-1264 -1276 0 +-1265 -1277 0 +-1266 -1278 0 +-1261 -1267 0 +-1262 -1268 0 +-1263 -1269 0 +-1264 -1270 0 +-1265 -1271 0 +-1266 -1272 0 +-1255 -1285 0 +-1256 -1286 0 +-1257 -1287 0 +-1258 -1288 0 +-1259 -1289 0 +-1260 -1290 0 +-1255 -1279 0 +-1256 -1280 0 +-1257 -1281 0 +-1258 -1282 0 +-1259 -1283 0 +-1260 -1284 0 +-1255 -1273 0 +-1256 -1274 0 +-1257 -1275 0 +-1258 -1276 0 +-1259 -1277 0 +-1260 -1278 0 +-1255 -1267 0 +-1256 -1268 0 +-1257 -1269 0 +-1258 -1270 0 +-1259 -1271 0 +-1260 -1272 0 +-1255 -1261 0 +-1256 -1262 0 +-1257 -1263 0 +-1258 -1264 0 +-1259 -1265 0 +-1260 -1266 0 +-1249 -1279 0 +-1250 -1280 0 +-1251 -1281 0 +-1252 -1282 0 +-1253 -1283 0 +-1254 -1284 0 +-1249 -1273 0 +-1250 -1274 0 +-1251 -1275 0 +-1252 -1276 0 +-1253 -1277 0 +-1254 -1278 0 +-1249 -1267 0 +-1250 -1268 0 +-1251 -1269 0 +-1252 -1270 0 +-1253 -1271 0 +-1254 -1272 0 +-1249 -1261 0 +-1250 -1262 0 +-1251 -1263 0 +-1252 -1264 0 +-1253 -1265 0 +-1254 -1266 0 +-1249 -1255 0 +-1250 -1256 0 +-1251 -1257 0 +-1252 -1258 0 +-1253 -1259 0 +-1254 -1260 0 +-1243 -1273 0 +-1244 -1274 0 +-1245 -1275 0 +-1246 -1276 0 +-1247 -1277 0 +-1248 -1278 0 +-1243 -1267 0 +-1244 -1268 0 +-1245 -1269 0 +-1246 -1270 0 +-1247 -1271 0 +-1248 -1272 0 +-1243 -1261 0 +-1244 -1262 0 +-1245 -1263 0 +-1246 -1264 0 +-1247 -1265 0 +-1248 -1266 0 +-1243 -1255 0 +-1244 -1256 0 +-1245 -1257 0 +-1246 -1258 0 +-1247 -1259 0 +-1248 -1260 0 +-1243 -1249 0 +-1244 -1250 0 +-1245 -1251 0 +-1246 -1252 0 +-1247 -1253 0 +-1248 -1254 0 +-1237 -1267 0 +-1238 -1268 0 +-1239 -1269 0 +-1240 -1270 0 +-1241 -1271 0 +-1242 -1272 0 +-1237 -1261 0 +-1238 -1262 0 +-1239 -1263 0 +-1240 -1264 0 +-1241 -1265 0 +-1242 -1266 0 +-1237 -1255 0 +-1238 -1256 0 +-1239 -1257 0 +-1240 -1258 0 +-1241 -1259 0 +-1242 -1260 0 +-1237 -1249 0 +-1238 -1250 0 +-1239 -1251 0 +-1240 -1252 0 +-1241 -1253 0 +-1242 -1254 0 +-1237 -1243 0 +-1238 -1244 0 +-1239 -1245 0 +-1240 -1246 0 +-1241 -1247 0 +-1242 -1248 0 +-1231 -1261 0 +-1232 -1262 0 +-1233 -1263 0 +-1234 -1264 0 +-1235 -1265 0 +-1236 -1266 0 +-1231 -1255 0 +-1232 -1256 0 +-1233 -1257 0 +-1234 -1258 0 +-1235 -1259 0 +-1236 -1260 0 +-1231 -1249 0 +-1232 -1250 0 +-1233 -1251 0 +-1234 -1252 0 +-1235 -1253 0 +-1236 -1254 0 +-1231 -1243 0 +-1232 -1244 0 +-1233 -1245 0 +-1234 -1246 0 +-1235 -1247 0 +-1236 -1248 0 +-1231 -1237 0 +-1232 -1238 0 +-1233 -1239 0 +-1234 -1240 0 +-1235 -1241 0 +-1236 -1242 0 +-1225 -1255 0 +-1226 -1256 0 +-1227 -1257 0 +-1228 -1258 0 +-1229 -1259 0 +-1230 -1260 0 +-1225 -1249 0 +-1226 -1250 0 +-1227 -1251 0 +-1228 -1252 0 +-1229 -1253 0 +-1230 -1254 0 +-1225 -1243 0 +-1226 -1244 0 +-1227 -1245 0 +-1228 -1246 0 +-1229 -1247 0 +-1230 -1248 0 +-1225 -1237 0 +-1226 -1238 0 +-1227 -1239 0 +-1228 -1240 0 +-1229 -1241 0 +-1230 -1242 0 +-1225 -1231 0 +-1226 -1232 0 +-1227 -1233 0 +-1228 -1234 0 +-1229 -1235 0 +-1230 -1236 0 +-1219 -1249 0 +-1220 -1250 0 +-1221 -1251 0 +-1222 -1252 0 +-1223 -1253 0 +-1224 -1254 0 +-1219 -1243 0 +-1220 -1244 0 +-1221 -1245 0 +-1222 -1246 0 +-1223 -1247 0 +-1224 -1248 0 +-1219 -1237 0 +-1220 -1238 0 +-1221 -1239 0 +-1222 -1240 0 +-1223 -1241 0 +-1224 -1242 0 +-1219 -1231 0 +-1220 -1232 0 +-1221 -1233 0 +-1222 -1234 0 +-1223 -1235 0 +-1224 -1236 0 +-1219 -1225 0 +-1220 -1226 0 +-1221 -1227 0 +-1222 -1228 0 +-1223 -1229 0 +-1224 -1230 0 +-1213 -1243 0 +-1214 -1244 0 +-1215 -1245 0 +-1216 -1246 0 +-1217 -1247 0 +-1218 -1248 0 +-1213 -1237 0 +-1214 -1238 0 +-1215 -1239 0 +-1216 -1240 0 +-1217 -1241 0 +-1218 -1242 0 +-1213 -1231 0 +-1214 -1232 0 +-1215 -1233 0 +-1216 -1234 0 +-1217 -1235 0 +-1218 -1236 0 +-1213 -1225 0 +-1214 -1226 0 +-1215 -1227 0 +-1216 -1228 0 +-1217 -1229 0 +-1218 -1230 0 +-1213 -1219 0 +-1214 -1220 0 +-1215 -1221 0 +-1216 -1222 0 +-1217 -1223 0 +-1218 -1224 0 +-1207 -1237 0 +-1208 -1238 0 +-1209 -1239 0 +-1210 -1240 0 +-1211 -1241 0 +-1212 -1242 0 +-1207 -1231 0 +-1208 -1232 0 +-1209 -1233 0 +-1210 -1234 0 +-1211 -1235 0 +-1212 -1236 0 +-1207 -1225 0 +-1208 -1226 0 +-1209 -1227 0 +-1210 -1228 0 +-1211 -1229 0 +-1212 -1230 0 +-1207 -1219 0 +-1208 -1220 0 +-1209 -1221 0 +-1210 -1222 0 +-1211 -1223 0 +-1212 -1224 0 +-1207 -1213 0 +-1208 -1214 0 +-1209 -1215 0 +-1210 -1216 0 +-1211 -1217 0 +-1212 -1218 0 +-1201 -1231 0 +-1202 -1232 0 +-1203 -1233 0 +-1204 -1234 0 +-1205 -1235 0 +-1206 -1236 0 +-1201 -1225 0 +-1202 -1226 0 +-1203 -1227 0 +-1204 -1228 0 +-1205 -1229 0 +-1206 -1230 0 +-1201 -1219 0 +-1202 -1220 0 +-1203 -1221 0 +-1204 -1222 0 +-1205 -1223 0 +-1206 -1224 0 +-1201 -1213 0 +-1202 -1214 0 +-1203 -1215 0 +-1204 -1216 0 +-1205 -1217 0 +-1206 -1218 0 +-1201 -1207 0 +-1202 -1208 0 +-1203 -1209 0 +-1204 -1210 0 +-1205 -1211 0 +-1206 -1212 0 +-1195 -1225 0 +-1196 -1226 0 +-1197 -1227 0 +-1198 -1228 0 +-1199 -1229 0 +-1200 -1230 0 +-1195 -1219 0 +-1196 -1220 0 +-1197 -1221 0 +-1198 -1222 0 +-1199 -1223 0 +-1200 -1224 0 +-1195 -1213 0 +-1196 -1214 0 +-1197 -1215 0 +-1198 -1216 0 +-1199 -1217 0 +-1200 -1218 0 +-1195 -1207 0 +-1196 -1208 0 +-1197 -1209 0 +-1198 -1210 0 +-1199 -1211 0 +-1200 -1212 0 +-1195 -1201 0 +-1196 -1202 0 +-1197 -1203 0 +-1198 -1204 0 +-1199 -1205 0 +-1200 -1206 0 +-1189 -1219 0 +-1190 -1220 0 +-1191 -1221 0 +-1192 -1222 0 +-1193 -1223 0 +-1194 -1224 0 +-1189 -1213 0 +-1190 -1214 0 +-1191 -1215 0 +-1192 -1216 0 +-1193 -1217 0 +-1194 -1218 0 +-1189 -1207 0 +-1190 -1208 0 +-1191 -1209 0 +-1192 -1210 0 +-1193 -1211 0 +-1194 -1212 0 +-1189 -1201 0 +-1190 -1202 0 +-1191 -1203 0 +-1192 -1204 0 +-1193 -1205 0 +-1194 -1206 0 +-1183 -1213 0 +-1184 -1214 0 +-1185 -1215 0 +-1186 -1216 0 +-1187 -1217 0 +-1188 -1218 0 +-1183 -1207 0 +-1184 -1208 0 +-1185 -1209 0 +-1186 -1210 0 +-1187 -1211 0 +-1188 -1212 0 +-1183 -1201 0 +-1184 -1202 0 +-1185 -1203 0 +-1186 -1204 0 +-1187 -1205 0 +-1188 -1206 0 +-1183 -1195 0 +-1184 -1196 0 +-1185 -1197 0 +-1186 -1198 0 +-1187 -1199 0 +-1188 -1200 0 +-1183 -1189 0 +-1184 -1190 0 +-1185 -1191 0 +-1186 -1192 0 +-1187 -1193 0 +-1188 -1194 0 +-1177 -1207 0 +-1178 -1208 0 +-1179 -1209 0 +-1180 -1210 0 +-1181 -1211 0 +-1182 -1212 0 +-1177 -1201 0 +-1178 -1202 0 +-1179 -1203 0 +-1180 -1204 0 +-1181 -1205 0 +-1182 -1206 0 +-1177 -1195 0 +-1178 -1196 0 +-1179 -1197 0 +-1180 -1198 0 +-1181 -1199 0 +-1182 -1200 0 +-1177 -1189 0 +-1178 -1190 0 +-1179 -1191 0 +-1180 -1192 0 +-1181 -1193 0 +-1182 -1194 0 +-1177 -1183 0 +-1178 -1184 0 +-1179 -1185 0 +-1180 -1186 0 +-1181 -1187 0 +-1182 -1188 0 +-1171 -1201 0 +-1172 -1202 0 +-1173 -1203 0 +-1174 -1204 0 +-1175 -1205 0 +-1176 -1206 0 +-1171 -1189 0 +-1172 -1190 0 +-1173 -1191 0 +-1174 -1192 0 +-1175 -1193 0 +-1176 -1194 0 +-1171 -1183 0 +-1172 -1184 0 +-1173 -1185 0 +-1174 -1186 0 +-1175 -1187 0 +-1176 -1188 0 +-1171 -1177 0 +-1172 -1178 0 +-1173 -1179 0 +-1174 -1180 0 +-1175 -1181 0 +-1176 -1182 0 +-1165 -1195 0 +-1166 -1196 0 +-1167 -1197 0 +-1168 -1198 0 +-1169 -1199 0 +-1170 -1200 0 +-1165 -1189 0 +-1166 -1190 0 +-1167 -1191 0 +-1168 -1192 0 +-1169 -1193 0 +-1170 -1194 0 +-1165 -1183 0 +-1166 -1184 0 +-1167 -1185 0 +-1168 -1186 0 +-1169 -1187 0 +-1170 -1188 0 +-1165 -1177 0 +-1166 -1178 0 +-1167 -1179 0 +-1168 -1180 0 +-1169 -1181 0 +-1170 -1182 0 +-1165 -1171 0 +-1166 -1172 0 +-1167 -1173 0 +-1168 -1174 0 +-1169 -1175 0 +-1170 -1176 0 +-1159 -1189 0 +-1160 -1190 0 +-1161 -1191 0 +-1162 -1192 0 +-1163 -1193 0 +-1164 -1194 0 +-1159 -1183 0 +-1160 -1184 0 +-1161 -1185 0 +-1162 -1186 0 +-1163 -1187 0 +-1164 -1188 0 +-1159 -1177 0 +-1160 -1178 0 +-1161 -1179 0 +-1162 -1180 0 +-1163 -1181 0 +-1164 -1182 0 +-1159 -1171 0 +-1160 -1172 0 +-1161 -1173 0 +-1162 -1174 0 +-1163 -1175 0 +-1164 -1176 0 +-1159 -1165 0 +-1160 -1166 0 +-1161 -1167 0 +-1162 -1168 0 +-1163 -1169 0 +-1164 -1170 0 +-1153 -1183 0 +-1154 -1184 0 +-1155 -1185 0 +-1156 -1186 0 +-1157 -1187 0 +-1158 -1188 0 +-1153 -1177 0 +-1154 -1178 0 +-1155 -1179 0 +-1156 -1180 0 +-1157 -1181 0 +-1158 -1182 0 +-1153 -1171 0 +-1154 -1172 0 +-1155 -1173 0 +-1156 -1174 0 +-1157 -1175 0 +-1158 -1176 0 +-1153 -1165 0 +-1154 -1166 0 +-1155 -1167 0 +-1156 -1168 0 +-1157 -1169 0 +-1158 -1170 0 +-1153 -1159 0 +-1154 -1160 0 +-1155 -1161 0 +-1156 -1162 0 +-1157 -1163 0 +-1158 -1164 0 +-1147 -1177 0 +-1148 -1178 0 +-1149 -1179 0 +-1150 -1180 0 +-1151 -1181 0 +-1152 -1182 0 +-1147 -1171 0 +-1148 -1172 0 +-1149 -1173 0 +-1150 -1174 0 +-1151 -1175 0 +-1152 -1176 0 +-1147 -1165 0 +-1148 -1166 0 +-1149 -1167 0 +-1150 -1168 0 +-1151 -1169 0 +-1152 -1170 0 +-1147 -1159 0 +-1148 -1160 0 +-1149 -1161 0 +-1150 -1162 0 +-1151 -1163 0 +-1152 -1164 0 +-1147 -1153 0 +-1148 -1154 0 +-1149 -1155 0 +-1150 -1156 0 +-1151 -1157 0 +-1152 -1158 0 +-1141 -1171 0 +-1142 -1172 0 +-1143 -1173 0 +-1144 -1174 0 +-1145 -1175 0 +-1146 -1176 0 +-1141 -1159 0 +-1142 -1160 0 +-1143 -1161 0 +-1144 -1162 0 +-1145 -1163 0 +-1146 -1164 0 +-1141 -1153 0 +-1142 -1154 0 +-1143 -1155 0 +-1144 -1156 0 +-1145 -1157 0 +-1146 -1158 0 +-1141 -1147 0 +-1142 -1148 0 +-1143 -1149 0 +-1144 -1150 0 +-1145 -1151 0 +-1146 -1152 0 +-1135 -1165 0 +-1136 -1166 0 +-1137 -1167 0 +-1138 -1168 0 +-1139 -1169 0 +-1140 -1170 0 +-1135 -1159 0 +-1136 -1160 0 +-1137 -1161 0 +-1138 -1162 0 +-1139 -1163 0 +-1140 -1164 0 +-1135 -1153 0 +-1136 -1154 0 +-1137 -1155 0 +-1138 -1156 0 +-1139 -1157 0 +-1140 -1158 0 +-1135 -1147 0 +-1136 -1148 0 +-1137 -1149 0 +-1138 -1150 0 +-1139 -1151 0 +-1140 -1152 0 +-1135 -1141 0 +-1136 -1142 0 +-1137 -1143 0 +-1138 -1144 0 +-1139 -1145 0 +-1140 -1146 0 +-1129 -1159 0 +-1130 -1160 0 +-1131 -1161 0 +-1132 -1162 0 +-1133 -1163 0 +-1134 -1164 0 +-1129 -1153 0 +-1130 -1154 0 +-1131 -1155 0 +-1132 -1156 0 +-1133 -1157 0 +-1134 -1158 0 +-1129 -1147 0 +-1130 -1148 0 +-1131 -1149 0 +-1132 -1150 0 +-1133 -1151 0 +-1134 -1152 0 +-1129 -1141 0 +-1130 -1142 0 +-1131 -1143 0 +-1132 -1144 0 +-1133 -1145 0 +-1134 -1146 0 +-1129 -1135 0 +-1130 -1136 0 +-1131 -1137 0 +-1132 -1138 0 +-1133 -1139 0 +-1134 -1140 0 +-1123 -1153 0 +-1124 -1154 0 +-1125 -1155 0 +-1126 -1156 0 +-1127 -1157 0 +-1128 -1158 0 +-1123 -1147 0 +-1124 -1148 0 +-1125 -1149 0 +-1126 -1150 0 +-1127 -1151 0 +-1128 -1152 0 +-1123 -1141 0 +-1124 -1142 0 +-1125 -1143 0 +-1126 -1144 0 +-1127 -1145 0 +-1128 -1146 0 +-1123 -1135 0 +-1124 -1136 0 +-1125 -1137 0 +-1126 -1138 0 +-1127 -1139 0 +-1128 -1140 0 +-1123 -1129 0 +-1124 -1130 0 +-1125 -1131 0 +-1126 -1132 0 +-1127 -1133 0 +-1128 -1134 0 +-1117 -1147 0 +-1118 -1148 0 +-1119 -1149 0 +-1120 -1150 0 +-1121 -1151 0 +-1122 -1152 0 +-1117 -1141 0 +-1118 -1142 0 +-1119 -1143 0 +-1120 -1144 0 +-1121 -1145 0 +-1122 -1146 0 +-1117 -1135 0 +-1118 -1136 0 +-1119 -1137 0 +-1120 -1138 0 +-1121 -1139 0 +-1122 -1140 0 +-1117 -1129 0 +-1118 -1130 0 +-1119 -1131 0 +-1120 -1132 0 +-1121 -1133 0 +-1122 -1134 0 +-1117 -1123 0 +-1118 -1124 0 +-1119 -1125 0 +-1120 -1126 0 +-1121 -1127 0 +-1122 -1128 0 +-1111 -1141 0 +-1112 -1142 0 +-1113 -1143 0 +-1114 -1144 0 +-1115 -1145 0 +-1116 -1146 0 +-1111 -1135 0 +-1112 -1136 0 +-1113 -1137 0 +-1114 -1138 0 +-1115 -1139 0 +-1116 -1140 0 +-1111 -1129 0 +-1112 -1130 0 +-1113 -1131 0 +-1114 -1132 0 +-1115 -1133 0 +-1116 -1134 0 +-1111 -1123 0 +-1112 -1124 0 +-1113 -1125 0 +-1114 -1126 0 +-1115 -1127 0 +-1116 -1128 0 +-1111 -1117 0 +-1112 -1118 0 +-1113 -1119 0 +-1114 -1120 0 +-1115 -1121 0 +-1116 -1122 0 +-1105 -1135 0 +-1106 -1136 0 +-1107 -1137 0 +-1108 -1138 0 +-1109 -1139 0 +-1110 -1140 0 +-1105 -1129 0 +-1106 -1130 0 +-1107 -1131 0 +-1108 -1132 0 +-1109 -1133 0 +-1110 -1134 0 +-1105 -1123 0 +-1106 -1124 0 +-1107 -1125 0 +-1108 -1126 0 +-1109 -1127 0 +-1110 -1128 0 +-1105 -1117 0 +-1106 -1118 0 +-1107 -1119 0 +-1108 -1120 0 +-1109 -1121 0 +-1110 -1122 0 +-1105 -1111 0 +-1106 -1112 0 +-1107 -1113 0 +-1108 -1114 0 +-1109 -1115 0 +-1110 -1116 0 +-1099 -1129 0 +-1100 -1130 0 +-1101 -1131 0 +-1102 -1132 0 +-1103 -1133 0 +-1104 -1134 0 +-1099 -1117 0 +-1100 -1118 0 +-1101 -1119 0 +-1102 -1120 0 +-1103 -1121 0 +-1104 -1122 0 +-1099 -1111 0 +-1100 -1112 0 +-1101 -1113 0 +-1102 -1114 0 +-1103 -1115 0 +-1104 -1116 0 +-1099 -1105 0 +-1100 -1106 0 +-1101 -1107 0 +-1102 -1108 0 +-1103 -1109 0 +-1104 -1110 0 +-1093 -1123 0 +-1094 -1124 0 +-1095 -1125 0 +-1096 -1126 0 +-1097 -1127 0 +-1098 -1128 0 +-1093 -1117 0 +-1094 -1118 0 +-1095 -1119 0 +-1096 -1120 0 +-1097 -1121 0 +-1098 -1122 0 +-1093 -1111 0 +-1094 -1112 0 +-1095 -1113 0 +-1096 -1114 0 +-1097 -1115 0 +-1098 -1116 0 +-1093 -1105 0 +-1094 -1106 0 +-1095 -1107 0 +-1096 -1108 0 +-1097 -1109 0 +-1098 -1110 0 +-1093 -1099 0 +-1094 -1100 0 +-1095 -1101 0 +-1096 -1102 0 +-1097 -1103 0 +-1098 -1104 0 +-1087 -1117 0 +-1088 -1118 0 +-1089 -1119 0 +-1090 -1120 0 +-1091 -1121 0 +-1092 -1122 0 +-1087 -1111 0 +-1088 -1112 0 +-1089 -1113 0 +-1090 -1114 0 +-1091 -1115 0 +-1092 -1116 0 +-1087 -1105 0 +-1088 -1106 0 +-1089 -1107 0 +-1090 -1108 0 +-1091 -1109 0 +-1092 -1110 0 +-1087 -1099 0 +-1088 -1100 0 +-1089 -1101 0 +-1090 -1102 0 +-1091 -1103 0 +-1092 -1104 0 +-1087 -1093 0 +-1088 -1094 0 +-1089 -1095 0 +-1090 -1096 0 +-1091 -1097 0 +-1092 -1098 0 +-1081 -1111 0 +-1082 -1112 0 +-1083 -1113 0 +-1084 -1114 0 +-1085 -1115 0 +-1086 -1116 0 +-1081 -1105 0 +-1082 -1106 0 +-1083 -1107 0 +-1084 -1108 0 +-1085 -1109 0 +-1086 -1110 0 +-1081 -1099 0 +-1082 -1100 0 +-1083 -1101 0 +-1084 -1102 0 +-1085 -1103 0 +-1086 -1104 0 +-1081 -1093 0 +-1082 -1094 0 +-1083 -1095 0 +-1084 -1096 0 +-1085 -1097 0 +-1086 -1098 0 +-1081 -1087 0 +-1082 -1088 0 +-1083 -1089 0 +-1084 -1090 0 +-1085 -1091 0 +-1086 -1092 0 +-1075 -1105 0 +-1076 -1106 0 +-1077 -1107 0 +-1078 -1108 0 +-1079 -1109 0 +-1080 -1110 0 +-1075 -1099 0 +-1076 -1100 0 +-1077 -1101 0 +-1078 -1102 0 +-1079 -1103 0 +-1080 -1104 0 +-1075 -1093 0 +-1076 -1094 0 +-1077 -1095 0 +-1078 -1096 0 +-1079 -1097 0 +-1080 -1098 0 +-1075 -1087 0 +-1076 -1088 0 +-1077 -1089 0 +-1078 -1090 0 +-1079 -1091 0 +-1080 -1092 0 +-1075 -1081 0 +-1076 -1082 0 +-1077 -1083 0 +-1078 -1084 0 +-1079 -1085 0 +-1080 -1086 0 +-1069 -1099 0 +-1070 -1100 0 +-1071 -1101 0 +-1072 -1102 0 +-1073 -1103 0 +-1074 -1104 0 +-1069 -1093 0 +-1070 -1094 0 +-1071 -1095 0 +-1072 -1096 0 +-1073 -1097 0 +-1074 -1098 0 +-1069 -1087 0 +-1070 -1088 0 +-1071 -1089 0 +-1072 -1090 0 +-1073 -1091 0 +-1074 -1092 0 +-1069 -1081 0 +-1070 -1082 0 +-1071 -1083 0 +-1072 -1084 0 +-1073 -1085 0 +-1074 -1086 0 +-1069 -1075 0 +-1070 -1076 0 +-1071 -1077 0 +-1072 -1078 0 +-1073 -1079 0 +-1074 -1080 0 +-1063 -1093 0 +-1064 -1094 0 +-1065 -1095 0 +-1066 -1096 0 +-1067 -1097 0 +-1068 -1098 0 +-1063 -1087 0 +-1064 -1088 0 +-1065 -1089 0 +-1066 -1090 0 +-1067 -1091 0 +-1068 -1092 0 +-1063 -1081 0 +-1064 -1082 0 +-1065 -1083 0 +-1066 -1084 0 +-1067 -1085 0 +-1068 -1086 0 +-1063 -1069 0 +-1064 -1070 0 +-1065 -1071 0 +-1066 -1072 0 +-1067 -1073 0 +-1068 -1074 0 +-1057 -1087 0 +-1058 -1088 0 +-1059 -1089 0 +-1060 -1090 0 +-1061 -1091 0 +-1062 -1092 0 +-1057 -1081 0 +-1058 -1082 0 +-1059 -1083 0 +-1060 -1084 0 +-1061 -1085 0 +-1062 -1086 0 +-1057 -1075 0 +-1058 -1076 0 +-1059 -1077 0 +-1060 -1078 0 +-1061 -1079 0 +-1062 -1080 0 +-1057 -1069 0 +-1058 -1070 0 +-1059 -1071 0 +-1060 -1072 0 +-1061 -1073 0 +-1062 -1074 0 +-1057 -1063 0 +-1058 -1064 0 +-1059 -1065 0 +-1060 -1066 0 +-1061 -1067 0 +-1062 -1068 0 +-1051 -1081 0 +-1052 -1082 0 +-1053 -1083 0 +-1054 -1084 0 +-1055 -1085 0 +-1056 -1086 0 +-1051 -1075 0 +-1052 -1076 0 +-1053 -1077 0 +-1054 -1078 0 +-1055 -1079 0 +-1056 -1080 0 +-1051 -1069 0 +-1052 -1070 0 +-1053 -1071 0 +-1054 -1072 0 +-1055 -1073 0 +-1056 -1074 0 +-1051 -1063 0 +-1052 -1064 0 +-1053 -1065 0 +-1054 -1066 0 +-1055 -1067 0 +-1056 -1068 0 +-1051 -1057 0 +-1052 -1058 0 +-1053 -1059 0 +-1054 -1060 0 +-1055 -1061 0 +-1056 -1062 0 +-1045 -1075 0 +-1046 -1076 0 +-1047 -1077 0 +-1048 -1078 0 +-1049 -1079 0 +-1050 -1080 0 +-1045 -1069 0 +-1046 -1070 0 +-1047 -1071 0 +-1048 -1072 0 +-1049 -1073 0 +-1050 -1074 0 +-1045 -1063 0 +-1046 -1064 0 +-1047 -1065 0 +-1048 -1066 0 +-1049 -1067 0 +-1050 -1068 0 +-1045 -1057 0 +-1046 -1058 0 +-1047 -1059 0 +-1048 -1060 0 +-1049 -1061 0 +-1050 -1062 0 +-1045 -1051 0 +-1046 -1052 0 +-1047 -1053 0 +-1048 -1054 0 +-1049 -1055 0 +-1050 -1056 0 +-1039 -1069 0 +-1040 -1070 0 +-1041 -1071 0 +-1042 -1072 0 +-1043 -1073 0 +-1044 -1074 0 +-1039 -1063 0 +-1040 -1064 0 +-1041 -1065 0 +-1042 -1066 0 +-1043 -1067 0 +-1044 -1068 0 +-1039 -1057 0 +-1040 -1058 0 +-1041 -1059 0 +-1042 -1060 0 +-1043 -1061 0 +-1044 -1062 0 +-1039 -1051 0 +-1040 -1052 0 +-1041 -1053 0 +-1042 -1054 0 +-1043 -1055 0 +-1044 -1056 0 +-1039 -1045 0 +-1040 -1046 0 +-1041 -1047 0 +-1042 -1048 0 +-1043 -1049 0 +-1044 -1050 0 +-1033 -1063 0 +-1034 -1064 0 +-1035 -1065 0 +-1036 -1066 0 +-1037 -1067 0 +-1038 -1068 0 +-1033 -1057 0 +-1034 -1058 0 +-1035 -1059 0 +-1036 -1060 0 +-1037 -1061 0 +-1038 -1062 0 +-1033 -1051 0 +-1034 -1052 0 +-1035 -1053 0 +-1036 -1054 0 +-1037 -1055 0 +-1038 -1056 0 +-1033 -1045 0 +-1034 -1046 0 +-1035 -1047 0 +-1036 -1048 0 +-1037 -1049 0 +-1038 -1050 0 +-1033 -1039 0 +-1034 -1040 0 +-1035 -1041 0 +-1036 -1042 0 +-1037 -1043 0 +-1038 -1044 0 +-1027 -1057 0 +-1028 -1058 0 +-1029 -1059 0 +-1030 -1060 0 +-1031 -1061 0 +-1032 -1062 0 +-1027 -1051 0 +-1028 -1052 0 +-1029 -1053 0 +-1030 -1054 0 +-1031 -1055 0 +-1032 -1056 0 +-1027 -1045 0 +-1028 -1046 0 +-1029 -1047 0 +-1030 -1048 0 +-1031 -1049 0 +-1032 -1050 0 +-1027 -1039 0 +-1028 -1040 0 +-1029 -1041 0 +-1030 -1042 0 +-1031 -1043 0 +-1032 -1044 0 +-1027 -1033 0 +-1028 -1034 0 +-1029 -1035 0 +-1030 -1036 0 +-1031 -1037 0 +-1032 -1038 0 +-1021 -1045 0 +-1022 -1046 0 +-1023 -1047 0 +-1024 -1048 0 +-1025 -1049 0 +-1026 -1050 0 +-1021 -1039 0 +-1022 -1040 0 +-1023 -1041 0 +-1024 -1042 0 +-1025 -1043 0 +-1026 -1044 0 +-1021 -1033 0 +-1022 -1034 0 +-1023 -1035 0 +-1024 -1036 0 +-1025 -1037 0 +-1026 -1038 0 +-1021 -1027 0 +-1022 -1028 0 +-1023 -1029 0 +-1024 -1030 0 +-1025 -1031 0 +-1026 -1032 0 +-1015 -1045 0 +-1016 -1046 0 +-1017 -1047 0 +-1018 -1048 0 +-1019 -1049 0 +-1020 -1050 0 +-1015 -1039 0 +-1016 -1040 0 +-1017 -1041 0 +-1018 -1042 0 +-1019 -1043 0 +-1020 -1044 0 +-1015 -1033 0 +-1016 -1034 0 +-1017 -1035 0 +-1018 -1036 0 +-1019 -1037 0 +-1020 -1038 0 +-1015 -1027 0 +-1016 -1028 0 +-1017 -1029 0 +-1018 -1030 0 +-1019 -1031 0 +-1020 -1032 0 +-1015 -1021 0 +-1016 -1022 0 +-1017 -1023 0 +-1018 -1024 0 +-1019 -1025 0 +-1020 -1026 0 +-1009 -1039 0 +-1010 -1040 0 +-1011 -1041 0 +-1012 -1042 0 +-1013 -1043 0 +-1014 -1044 0 +-1009 -1033 0 +-1010 -1034 0 +-1011 -1035 0 +-1012 -1036 0 +-1013 -1037 0 +-1014 -1038 0 +-1009 -1027 0 +-1010 -1028 0 +-1011 -1029 0 +-1012 -1030 0 +-1013 -1031 0 +-1014 -1032 0 +-1009 -1015 0 +-1010 -1016 0 +-1011 -1017 0 +-1012 -1018 0 +-1013 -1019 0 +-1014 -1020 0 +-1003 -1033 0 +-1004 -1034 0 +-1005 -1035 0 +-1006 -1036 0 +-1007 -1037 0 +-1008 -1038 0 +-1003 -1027 0 +-1004 -1028 0 +-1005 -1029 0 +-1006 -1030 0 +-1007 -1031 0 +-1008 -1032 0 +-1003 -1021 0 +-1004 -1022 0 +-1005 -1023 0 +-1006 -1024 0 +-1007 -1025 0 +-1008 -1026 0 +-1003 -1015 0 +-1004 -1016 0 +-1005 -1017 0 +-1006 -1018 0 +-1007 -1019 0 +-1008 -1020 0 +-1003 -1009 0 +-1004 -1010 0 +-1005 -1011 0 +-1006 -1012 0 +-1007 -1013 0 +-1008 -1014 0 +-997 -1027 0 +-998 -1028 0 +-999 -1029 0 +-1000 -1030 0 +-1001 -1031 0 +-1002 -1032 0 +-997 -1021 0 +-998 -1022 0 +-999 -1023 0 +-1000 -1024 0 +-1001 -1025 0 +-1002 -1026 0 +-997 -1009 0 +-998 -1010 0 +-999 -1011 0 +-1000 -1012 0 +-1001 -1013 0 +-1002 -1014 0 +-997 -1003 0 +-998 -1004 0 +-999 -1005 0 +-1000 -1006 0 +-1001 -1007 0 +-1002 -1008 0 +-991 -1021 0 +-992 -1022 0 +-993 -1023 0 +-994 -1024 0 +-995 -1025 0 +-996 -1026 0 +-991 -1015 0 +-992 -1016 0 +-993 -1017 0 +-994 -1018 0 +-995 -1019 0 +-996 -1020 0 +-991 -1009 0 +-992 -1010 0 +-993 -1011 0 +-994 -1012 0 +-995 -1013 0 +-996 -1014 0 +-991 -1003 0 +-992 -1004 0 +-993 -1005 0 +-994 -1006 0 +-995 -1007 0 +-996 -1008 0 +-991 -997 0 +-992 -998 0 +-993 -999 0 +-994 -1000 0 +-995 -1001 0 +-996 -1002 0 +-985 -1015 0 +-986 -1016 0 +-987 -1017 0 +-988 -1018 0 +-989 -1019 0 +-990 -1020 0 +-985 -1009 0 +-986 -1010 0 +-987 -1011 0 +-988 -1012 0 +-989 -1013 0 +-990 -1014 0 +-985 -1003 0 +-986 -1004 0 +-987 -1005 0 +-988 -1006 0 +-989 -1007 0 +-990 -1008 0 +-985 -997 0 +-986 -998 0 +-987 -999 0 +-988 -1000 0 +-989 -1001 0 +-990 -1002 0 +-985 -991 0 +-986 -992 0 +-987 -993 0 +-988 -994 0 +-989 -995 0 +-990 -996 0 +-979 -1009 0 +-980 -1010 0 +-981 -1011 0 +-982 -1012 0 +-983 -1013 0 +-984 -1014 0 +-979 -1003 0 +-980 -1004 0 +-981 -1005 0 +-982 -1006 0 +-983 -1007 0 +-984 -1008 0 +-979 -997 0 +-980 -998 0 +-981 -999 0 +-982 -1000 0 +-983 -1001 0 +-984 -1002 0 +-979 -991 0 +-980 -992 0 +-981 -993 0 +-982 -994 0 +-983 -995 0 +-984 -996 0 +-979 -985 0 +-980 -986 0 +-981 -987 0 +-982 -988 0 +-983 -989 0 +-984 -990 0 +-973 -1003 0 +-974 -1004 0 +-975 -1005 0 +-976 -1006 0 +-977 -1007 0 +-978 -1008 0 +-973 -997 0 +-974 -998 0 +-975 -999 0 +-976 -1000 0 +-977 -1001 0 +-978 -1002 0 +-973 -985 0 +-974 -986 0 +-975 -987 0 +-976 -988 0 +-977 -989 0 +-978 -990 0 +-973 -979 0 +-974 -980 0 +-975 -981 0 +-976 -982 0 +-977 -983 0 +-978 -984 0 +-967 -997 0 +-968 -998 0 +-969 -999 0 +-970 -1000 0 +-971 -1001 0 +-972 -1002 0 +-967 -991 0 +-968 -992 0 +-969 -993 0 +-970 -994 0 +-971 -995 0 +-972 -996 0 +-967 -985 0 +-968 -986 0 +-969 -987 0 +-970 -988 0 +-971 -989 0 +-972 -990 0 +-967 -979 0 +-968 -980 0 +-969 -981 0 +-970 -982 0 +-971 -983 0 +-972 -984 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-961 -991 0 +-962 -992 0 +-963 -993 0 +-964 -994 0 +-965 -995 0 +-966 -996 0 +-961 -985 0 +-962 -986 0 +-963 -987 0 +-964 -988 0 +-965 -989 0 +-966 -990 0 +-961 -979 0 +-962 -980 0 +-963 -981 0 +-964 -982 0 +-965 -983 0 +-966 -984 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-955 -985 0 +-956 -986 0 +-957 -987 0 +-958 -988 0 +-959 -989 0 +-960 -990 0 +-955 -979 0 +-956 -980 0 +-957 -981 0 +-958 -982 0 +-959 -983 0 +-960 -984 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -967 0 +-956 -968 0 +-957 -969 0 +-958 -970 0 +-959 -971 0 +-960 -972 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-949 -979 0 +-950 -980 0 +-951 -981 0 +-952 -982 0 +-953 -983 0 +-954 -984 0 +-949 -973 0 +-950 -974 0 +-951 -975 0 +-952 -976 0 +-953 -977 0 +-954 -978 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-805 -1291 0 +-806 -1292 0 +-807 -1293 0 +-808 -1294 0 +-809 -1295 0 +-810 -1296 0 +-247 -1609 0 +-248 -1610 0 +-249 -1611 0 +-250 -1612 0 +-251 -1613 0 +-252 -1614 0 +-439 -1537 0 +-440 -1538 0 +-441 -1539 0 +-442 -1540 0 +-443 -1541 0 +-444 -1542 0 +-289 -1003 0 +-290 -1004 0 +-291 -1005 0 +-292 -1006 0 +-293 -1007 0 +-294 -1008 0 +-355 -1543 0 +-356 -1544 0 +-357 -1545 0 +-358 -1546 0 +-359 -1547 0 +-360 -1548 0 +-649 -1159 0 +-650 -1160 0 +-651 -1161 0 +-652 -1162 0 +-653 -1163 0 +-654 -1164 0 +-1045 -1567 0 +-1046 -1568 0 +-1047 -1569 0 +-1048 -1570 0 +-1049 -1571 0 +-1050 -1572 0 +-1177 -1627 0 +-1178 -1628 0 +-1179 -1629 0 +-1180 -1630 0 +-1181 -1631 0 +-1182 -1632 0 +-619 -859 0 +-620 -860 0 +-621 -861 0 +-622 -862 0 +-623 -863 0 +-624 -864 0 +-37 -283 0 +-38 -284 0 +-39 -285 0 +-40 -286 0 +-41 -287 0 +-42 -288 0 +-961 -1573 0 +-962 -1574 0 +-963 -1575 0 +-964 -1576 0 +-965 -1577 0 +-966 -1578 0 diff --git a/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf new file mode 100644 index 000000000..c367fc492 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf @@ -0,0 +1,19368 @@ +c created by edge2cnf +p cnf 2526 19366 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-979 -980 0 +-979 -981 0 +-979 -982 0 +-979 -983 0 +-979 -984 0 +-980 -981 0 +-980 -982 0 +-980 -983 0 +-980 -984 0 +-981 -982 0 +-981 -983 0 +-981 -984 0 +-982 -983 0 +-982 -984 0 +-983 -984 0 +979 980 981 982 983 984 0 +-985 -986 0 +-985 -987 0 +-985 -988 0 +-985 -989 0 +-985 -990 0 +-986 -987 0 +-986 -988 0 +-986 -989 0 +-986 -990 0 +-987 -988 0 +-987 -989 0 +-987 -990 0 +-988 -989 0 +-988 -990 0 +-989 -990 0 +985 986 987 988 989 990 0 +-991 -992 0 +-991 -993 0 +-991 -994 0 +-991 -995 0 +-991 -996 0 +-992 -993 0 +-992 -994 0 +-992 -995 0 +-992 -996 0 +-993 -994 0 +-993 -995 0 +-993 -996 0 +-994 -995 0 +-994 -996 0 +-995 -996 0 +991 992 993 994 995 996 0 +-997 -998 0 +-997 -999 0 +-997 -1000 0 +-997 -1001 0 +-997 -1002 0 +-998 -999 0 +-998 -1000 0 +-998 -1001 0 +-998 -1002 0 +-999 -1000 0 +-999 -1001 0 +-999 -1002 0 +-1000 -1001 0 +-1000 -1002 0 +-1001 -1002 0 +997 998 999 1000 1001 1002 0 +-1003 -1004 0 +-1003 -1005 0 +-1003 -1006 0 +-1003 -1007 0 +-1003 -1008 0 +-1004 -1005 0 +-1004 -1006 0 +-1004 -1007 0 +-1004 -1008 0 +-1005 -1006 0 +-1005 -1007 0 +-1005 -1008 0 +-1006 -1007 0 +-1006 -1008 0 +-1007 -1008 0 +1003 1004 1005 1006 1007 1008 0 +-1009 -1010 0 +-1009 -1011 0 +-1009 -1012 0 +-1009 -1013 0 +-1009 -1014 0 +-1010 -1011 0 +-1010 -1012 0 +-1010 -1013 0 +-1010 -1014 0 +-1011 -1012 0 +-1011 -1013 0 +-1011 -1014 0 +-1012 -1013 0 +-1012 -1014 0 +-1013 -1014 0 +1009 1010 1011 1012 1013 1014 0 +-1015 -1016 0 +-1015 -1017 0 +-1015 -1018 0 +-1015 -1019 0 +-1015 -1020 0 +-1016 -1017 0 +-1016 -1018 0 +-1016 -1019 0 +-1016 -1020 0 +-1017 -1018 0 +-1017 -1019 0 +-1017 -1020 0 +-1018 -1019 0 +-1018 -1020 0 +-1019 -1020 0 +1015 1016 1017 1018 1019 1020 0 +-1021 -1022 0 +-1021 -1023 0 +-1021 -1024 0 +-1021 -1025 0 +-1021 -1026 0 +-1022 -1023 0 +-1022 -1024 0 +-1022 -1025 0 +-1022 -1026 0 +-1023 -1024 0 +-1023 -1025 0 +-1023 -1026 0 +-1024 -1025 0 +-1024 -1026 0 +-1025 -1026 0 +1021 1022 1023 1024 1025 1026 0 +-1027 -1028 0 +-1027 -1029 0 +-1027 -1030 0 +-1027 -1031 0 +-1027 -1032 0 +-1028 -1029 0 +-1028 -1030 0 +-1028 -1031 0 +-1028 -1032 0 +-1029 -1030 0 +-1029 -1031 0 +-1029 -1032 0 +-1030 -1031 0 +-1030 -1032 0 +-1031 -1032 0 +1027 1028 1029 1030 1031 1032 0 +-1033 -1034 0 +-1033 -1035 0 +-1033 -1036 0 +-1033 -1037 0 +-1033 -1038 0 +-1034 -1035 0 +-1034 -1036 0 +-1034 -1037 0 +-1034 -1038 0 +-1035 -1036 0 +-1035 -1037 0 +-1035 -1038 0 +-1036 -1037 0 +-1036 -1038 0 +-1037 -1038 0 +1033 1034 1035 1036 1037 1038 0 +-1039 -1040 0 +-1039 -1041 0 +-1039 -1042 0 +-1039 -1043 0 +-1039 -1044 0 +-1040 -1041 0 +-1040 -1042 0 +-1040 -1043 0 +-1040 -1044 0 +-1041 -1042 0 +-1041 -1043 0 +-1041 -1044 0 +-1042 -1043 0 +-1042 -1044 0 +-1043 -1044 0 +1039 1040 1041 1042 1043 1044 0 +-1045 -1046 0 +-1045 -1047 0 +-1045 -1048 0 +-1045 -1049 0 +-1045 -1050 0 +-1046 -1047 0 +-1046 -1048 0 +-1046 -1049 0 +-1046 -1050 0 +-1047 -1048 0 +-1047 -1049 0 +-1047 -1050 0 +-1048 -1049 0 +-1048 -1050 0 +-1049 -1050 0 +1045 1046 1047 1048 1049 1050 0 +-1051 -1052 0 +-1051 -1053 0 +-1051 -1054 0 +-1051 -1055 0 +-1051 -1056 0 +-1052 -1053 0 +-1052 -1054 0 +-1052 -1055 0 +-1052 -1056 0 +-1053 -1054 0 +-1053 -1055 0 +-1053 -1056 0 +-1054 -1055 0 +-1054 -1056 0 +-1055 -1056 0 +1051 1052 1053 1054 1055 1056 0 +-1057 -1058 0 +-1057 -1059 0 +-1057 -1060 0 +-1057 -1061 0 +-1057 -1062 0 +-1058 -1059 0 +-1058 -1060 0 +-1058 -1061 0 +-1058 -1062 0 +-1059 -1060 0 +-1059 -1061 0 +-1059 -1062 0 +-1060 -1061 0 +-1060 -1062 0 +-1061 -1062 0 +1057 1058 1059 1060 1061 1062 0 +-1063 -1064 0 +-1063 -1065 0 +-1063 -1066 0 +-1063 -1067 0 +-1063 -1068 0 +-1064 -1065 0 +-1064 -1066 0 +-1064 -1067 0 +-1064 -1068 0 +-1065 -1066 0 +-1065 -1067 0 +-1065 -1068 0 +-1066 -1067 0 +-1066 -1068 0 +-1067 -1068 0 +1063 1064 1065 1066 1067 1068 0 +-1069 -1070 0 +-1069 -1071 0 +-1069 -1072 0 +-1069 -1073 0 +-1069 -1074 0 +-1070 -1071 0 +-1070 -1072 0 +-1070 -1073 0 +-1070 -1074 0 +-1071 -1072 0 +-1071 -1073 0 +-1071 -1074 0 +-1072 -1073 0 +-1072 -1074 0 +-1073 -1074 0 +1069 1070 1071 1072 1073 1074 0 +-1075 -1076 0 +-1075 -1077 0 +-1075 -1078 0 +-1075 -1079 0 +-1075 -1080 0 +-1076 -1077 0 +-1076 -1078 0 +-1076 -1079 0 +-1076 -1080 0 +-1077 -1078 0 +-1077 -1079 0 +-1077 -1080 0 +-1078 -1079 0 +-1078 -1080 0 +-1079 -1080 0 +1075 1076 1077 1078 1079 1080 0 +-1081 -1082 0 +-1081 -1083 0 +-1081 -1084 0 +-1081 -1085 0 +-1081 -1086 0 +-1082 -1083 0 +-1082 -1084 0 +-1082 -1085 0 +-1082 -1086 0 +-1083 -1084 0 +-1083 -1085 0 +-1083 -1086 0 +-1084 -1085 0 +-1084 -1086 0 +-1085 -1086 0 +1081 1082 1083 1084 1085 1086 0 +-1087 -1088 0 +-1087 -1089 0 +-1087 -1090 0 +-1087 -1091 0 +-1087 -1092 0 +-1088 -1089 0 +-1088 -1090 0 +-1088 -1091 0 +-1088 -1092 0 +-1089 -1090 0 +-1089 -1091 0 +-1089 -1092 0 +-1090 -1091 0 +-1090 -1092 0 +-1091 -1092 0 +1087 1088 1089 1090 1091 1092 0 +-1093 -1094 0 +-1093 -1095 0 +-1093 -1096 0 +-1093 -1097 0 +-1093 -1098 0 +-1094 -1095 0 +-1094 -1096 0 +-1094 -1097 0 +-1094 -1098 0 +-1095 -1096 0 +-1095 -1097 0 +-1095 -1098 0 +-1096 -1097 0 +-1096 -1098 0 +-1097 -1098 0 +1093 1094 1095 1096 1097 1098 0 +-1099 -1100 0 +-1099 -1101 0 +-1099 -1102 0 +-1099 -1103 0 +-1099 -1104 0 +-1100 -1101 0 +-1100 -1102 0 +-1100 -1103 0 +-1100 -1104 0 +-1101 -1102 0 +-1101 -1103 0 +-1101 -1104 0 +-1102 -1103 0 +-1102 -1104 0 +-1103 -1104 0 +1099 1100 1101 1102 1103 1104 0 +-1105 -1106 0 +-1105 -1107 0 +-1105 -1108 0 +-1105 -1109 0 +-1105 -1110 0 +-1106 -1107 0 +-1106 -1108 0 +-1106 -1109 0 +-1106 -1110 0 +-1107 -1108 0 +-1107 -1109 0 +-1107 -1110 0 +-1108 -1109 0 +-1108 -1110 0 +-1109 -1110 0 +1105 1106 1107 1108 1109 1110 0 +-1111 -1112 0 +-1111 -1113 0 +-1111 -1114 0 +-1111 -1115 0 +-1111 -1116 0 +-1112 -1113 0 +-1112 -1114 0 +-1112 -1115 0 +-1112 -1116 0 +-1113 -1114 0 +-1113 -1115 0 +-1113 -1116 0 +-1114 -1115 0 +-1114 -1116 0 +-1115 -1116 0 +1111 1112 1113 1114 1115 1116 0 +-1117 -1118 0 +-1117 -1119 0 +-1117 -1120 0 +-1117 -1121 0 +-1117 -1122 0 +-1118 -1119 0 +-1118 -1120 0 +-1118 -1121 0 +-1118 -1122 0 +-1119 -1120 0 +-1119 -1121 0 +-1119 -1122 0 +-1120 -1121 0 +-1120 -1122 0 +-1121 -1122 0 +1117 1118 1119 1120 1121 1122 0 +-1123 -1124 0 +-1123 -1125 0 +-1123 -1126 0 +-1123 -1127 0 +-1123 -1128 0 +-1124 -1125 0 +-1124 -1126 0 +-1124 -1127 0 +-1124 -1128 0 +-1125 -1126 0 +-1125 -1127 0 +-1125 -1128 0 +-1126 -1127 0 +-1126 -1128 0 +-1127 -1128 0 +1123 1124 1125 1126 1127 1128 0 +-1129 -1130 0 +-1129 -1131 0 +-1129 -1132 0 +-1129 -1133 0 +-1129 -1134 0 +-1130 -1131 0 +-1130 -1132 0 +-1130 -1133 0 +-1130 -1134 0 +-1131 -1132 0 +-1131 -1133 0 +-1131 -1134 0 +-1132 -1133 0 +-1132 -1134 0 +-1133 -1134 0 +1129 1130 1131 1132 1133 1134 0 +-1135 -1136 0 +-1135 -1137 0 +-1135 -1138 0 +-1135 -1139 0 +-1135 -1140 0 +-1136 -1137 0 +-1136 -1138 0 +-1136 -1139 0 +-1136 -1140 0 +-1137 -1138 0 +-1137 -1139 0 +-1137 -1140 0 +-1138 -1139 0 +-1138 -1140 0 +-1139 -1140 0 +1135 1136 1137 1138 1139 1140 0 +-1141 -1142 0 +-1141 -1143 0 +-1141 -1144 0 +-1141 -1145 0 +-1141 -1146 0 +-1142 -1143 0 +-1142 -1144 0 +-1142 -1145 0 +-1142 -1146 0 +-1143 -1144 0 +-1143 -1145 0 +-1143 -1146 0 +-1144 -1145 0 +-1144 -1146 0 +-1145 -1146 0 +1141 1142 1143 1144 1145 1146 0 +-1147 -1148 0 +-1147 -1149 0 +-1147 -1150 0 +-1147 -1151 0 +-1147 -1152 0 +-1148 -1149 0 +-1148 -1150 0 +-1148 -1151 0 +-1148 -1152 0 +-1149 -1150 0 +-1149 -1151 0 +-1149 -1152 0 +-1150 -1151 0 +-1150 -1152 0 +-1151 -1152 0 +1147 1148 1149 1150 1151 1152 0 +-1153 -1154 0 +-1153 -1155 0 +-1153 -1156 0 +-1153 -1157 0 +-1153 -1158 0 +-1154 -1155 0 +-1154 -1156 0 +-1154 -1157 0 +-1154 -1158 0 +-1155 -1156 0 +-1155 -1157 0 +-1155 -1158 0 +-1156 -1157 0 +-1156 -1158 0 +-1157 -1158 0 +1153 1154 1155 1156 1157 1158 0 +-1159 -1160 0 +-1159 -1161 0 +-1159 -1162 0 +-1159 -1163 0 +-1159 -1164 0 +-1160 -1161 0 +-1160 -1162 0 +-1160 -1163 0 +-1160 -1164 0 +-1161 -1162 0 +-1161 -1163 0 +-1161 -1164 0 +-1162 -1163 0 +-1162 -1164 0 +-1163 -1164 0 +1159 1160 1161 1162 1163 1164 0 +-1165 -1166 0 +-1165 -1167 0 +-1165 -1168 0 +-1165 -1169 0 +-1165 -1170 0 +-1166 -1167 0 +-1166 -1168 0 +-1166 -1169 0 +-1166 -1170 0 +-1167 -1168 0 +-1167 -1169 0 +-1167 -1170 0 +-1168 -1169 0 +-1168 -1170 0 +-1169 -1170 0 +1165 1166 1167 1168 1169 1170 0 +-1171 -1172 0 +-1171 -1173 0 +-1171 -1174 0 +-1171 -1175 0 +-1171 -1176 0 +-1172 -1173 0 +-1172 -1174 0 +-1172 -1175 0 +-1172 -1176 0 +-1173 -1174 0 +-1173 -1175 0 +-1173 -1176 0 +-1174 -1175 0 +-1174 -1176 0 +-1175 -1176 0 +1171 1172 1173 1174 1175 1176 0 +-1177 -1178 0 +-1177 -1179 0 +-1177 -1180 0 +-1177 -1181 0 +-1177 -1182 0 +-1178 -1179 0 +-1178 -1180 0 +-1178 -1181 0 +-1178 -1182 0 +-1179 -1180 0 +-1179 -1181 0 +-1179 -1182 0 +-1180 -1181 0 +-1180 -1182 0 +-1181 -1182 0 +1177 1178 1179 1180 1181 1182 0 +-1183 -1184 0 +-1183 -1185 0 +-1183 -1186 0 +-1183 -1187 0 +-1183 -1188 0 +-1184 -1185 0 +-1184 -1186 0 +-1184 -1187 0 +-1184 -1188 0 +-1185 -1186 0 +-1185 -1187 0 +-1185 -1188 0 +-1186 -1187 0 +-1186 -1188 0 +-1187 -1188 0 +1183 1184 1185 1186 1187 1188 0 +-1189 -1190 0 +-1189 -1191 0 +-1189 -1192 0 +-1189 -1193 0 +-1189 -1194 0 +-1190 -1191 0 +-1190 -1192 0 +-1190 -1193 0 +-1190 -1194 0 +-1191 -1192 0 +-1191 -1193 0 +-1191 -1194 0 +-1192 -1193 0 +-1192 -1194 0 +-1193 -1194 0 +1189 1190 1191 1192 1193 1194 0 +-1195 -1196 0 +-1195 -1197 0 +-1195 -1198 0 +-1195 -1199 0 +-1195 -1200 0 +-1196 -1197 0 +-1196 -1198 0 +-1196 -1199 0 +-1196 -1200 0 +-1197 -1198 0 +-1197 -1199 0 +-1197 -1200 0 +-1198 -1199 0 +-1198 -1200 0 +-1199 -1200 0 +1195 1196 1197 1198 1199 1200 0 +-1201 -1202 0 +-1201 -1203 0 +-1201 -1204 0 +-1201 -1205 0 +-1201 -1206 0 +-1202 -1203 0 +-1202 -1204 0 +-1202 -1205 0 +-1202 -1206 0 +-1203 -1204 0 +-1203 -1205 0 +-1203 -1206 0 +-1204 -1205 0 +-1204 -1206 0 +-1205 -1206 0 +1201 1202 1203 1204 1205 1206 0 +-1207 -1208 0 +-1207 -1209 0 +-1207 -1210 0 +-1207 -1211 0 +-1207 -1212 0 +-1208 -1209 0 +-1208 -1210 0 +-1208 -1211 0 +-1208 -1212 0 +-1209 -1210 0 +-1209 -1211 0 +-1209 -1212 0 +-1210 -1211 0 +-1210 -1212 0 +-1211 -1212 0 +1207 1208 1209 1210 1211 1212 0 +-1213 -1214 0 +-1213 -1215 0 +-1213 -1216 0 +-1213 -1217 0 +-1213 -1218 0 +-1214 -1215 0 +-1214 -1216 0 +-1214 -1217 0 +-1214 -1218 0 +-1215 -1216 0 +-1215 -1217 0 +-1215 -1218 0 +-1216 -1217 0 +-1216 -1218 0 +-1217 -1218 0 +1213 1214 1215 1216 1217 1218 0 +-1219 -1220 0 +-1219 -1221 0 +-1219 -1222 0 +-1219 -1223 0 +-1219 -1224 0 +-1220 -1221 0 +-1220 -1222 0 +-1220 -1223 0 +-1220 -1224 0 +-1221 -1222 0 +-1221 -1223 0 +-1221 -1224 0 +-1222 -1223 0 +-1222 -1224 0 +-1223 -1224 0 +1219 1220 1221 1222 1223 1224 0 +-1225 -1226 0 +-1225 -1227 0 +-1225 -1228 0 +-1225 -1229 0 +-1225 -1230 0 +-1226 -1227 0 +-1226 -1228 0 +-1226 -1229 0 +-1226 -1230 0 +-1227 -1228 0 +-1227 -1229 0 +-1227 -1230 0 +-1228 -1229 0 +-1228 -1230 0 +-1229 -1230 0 +1225 1226 1227 1228 1229 1230 0 +-1231 -1232 0 +-1231 -1233 0 +-1231 -1234 0 +-1231 -1235 0 +-1231 -1236 0 +-1232 -1233 0 +-1232 -1234 0 +-1232 -1235 0 +-1232 -1236 0 +-1233 -1234 0 +-1233 -1235 0 +-1233 -1236 0 +-1234 -1235 0 +-1234 -1236 0 +-1235 -1236 0 +1231 1232 1233 1234 1235 1236 0 +-1237 -1238 0 +-1237 -1239 0 +-1237 -1240 0 +-1237 -1241 0 +-1237 -1242 0 +-1238 -1239 0 +-1238 -1240 0 +-1238 -1241 0 +-1238 -1242 0 +-1239 -1240 0 +-1239 -1241 0 +-1239 -1242 0 +-1240 -1241 0 +-1240 -1242 0 +-1241 -1242 0 +1237 1238 1239 1240 1241 1242 0 +-1243 -1244 0 +-1243 -1245 0 +-1243 -1246 0 +-1243 -1247 0 +-1243 -1248 0 +-1244 -1245 0 +-1244 -1246 0 +-1244 -1247 0 +-1244 -1248 0 +-1245 -1246 0 +-1245 -1247 0 +-1245 -1248 0 +-1246 -1247 0 +-1246 -1248 0 +-1247 -1248 0 +1243 1244 1245 1246 1247 1248 0 +-1249 -1250 0 +-1249 -1251 0 +-1249 -1252 0 +-1249 -1253 0 +-1249 -1254 0 +-1250 -1251 0 +-1250 -1252 0 +-1250 -1253 0 +-1250 -1254 0 +-1251 -1252 0 +-1251 -1253 0 +-1251 -1254 0 +-1252 -1253 0 +-1252 -1254 0 +-1253 -1254 0 +1249 1250 1251 1252 1253 1254 0 +-1255 -1256 0 +-1255 -1257 0 +-1255 -1258 0 +-1255 -1259 0 +-1255 -1260 0 +-1256 -1257 0 +-1256 -1258 0 +-1256 -1259 0 +-1256 -1260 0 +-1257 -1258 0 +-1257 -1259 0 +-1257 -1260 0 +-1258 -1259 0 +-1258 -1260 0 +-1259 -1260 0 +1255 1256 1257 1258 1259 1260 0 +-1261 -1262 0 +-1261 -1263 0 +-1261 -1264 0 +-1261 -1265 0 +-1261 -1266 0 +-1262 -1263 0 +-1262 -1264 0 +-1262 -1265 0 +-1262 -1266 0 +-1263 -1264 0 +-1263 -1265 0 +-1263 -1266 0 +-1264 -1265 0 +-1264 -1266 0 +-1265 -1266 0 +1261 1262 1263 1264 1265 1266 0 +-1267 -1268 0 +-1267 -1269 0 +-1267 -1270 0 +-1267 -1271 0 +-1267 -1272 0 +-1268 -1269 0 +-1268 -1270 0 +-1268 -1271 0 +-1268 -1272 0 +-1269 -1270 0 +-1269 -1271 0 +-1269 -1272 0 +-1270 -1271 0 +-1270 -1272 0 +-1271 -1272 0 +1267 1268 1269 1270 1271 1272 0 +-1273 -1274 0 +-1273 -1275 0 +-1273 -1276 0 +-1273 -1277 0 +-1273 -1278 0 +-1274 -1275 0 +-1274 -1276 0 +-1274 -1277 0 +-1274 -1278 0 +-1275 -1276 0 +-1275 -1277 0 +-1275 -1278 0 +-1276 -1277 0 +-1276 -1278 0 +-1277 -1278 0 +1273 1274 1275 1276 1277 1278 0 +-1279 -1280 0 +-1279 -1281 0 +-1279 -1282 0 +-1279 -1283 0 +-1279 -1284 0 +-1280 -1281 0 +-1280 -1282 0 +-1280 -1283 0 +-1280 -1284 0 +-1281 -1282 0 +-1281 -1283 0 +-1281 -1284 0 +-1282 -1283 0 +-1282 -1284 0 +-1283 -1284 0 +1279 1280 1281 1282 1283 1284 0 +-1285 -1286 0 +-1285 -1287 0 +-1285 -1288 0 +-1285 -1289 0 +-1285 -1290 0 +-1286 -1287 0 +-1286 -1288 0 +-1286 -1289 0 +-1286 -1290 0 +-1287 -1288 0 +-1287 -1289 0 +-1287 -1290 0 +-1288 -1289 0 +-1288 -1290 0 +-1289 -1290 0 +1285 1286 1287 1288 1289 1290 0 +-1291 -1292 0 +-1291 -1293 0 +-1291 -1294 0 +-1291 -1295 0 +-1291 -1296 0 +-1292 -1293 0 +-1292 -1294 0 +-1292 -1295 0 +-1292 -1296 0 +-1293 -1294 0 +-1293 -1295 0 +-1293 -1296 0 +-1294 -1295 0 +-1294 -1296 0 +-1295 -1296 0 +1291 1292 1293 1294 1295 1296 0 +-1297 -1298 0 +-1297 -1299 0 +-1297 -1300 0 +-1297 -1301 0 +-1297 -1302 0 +-1298 -1299 0 +-1298 -1300 0 +-1298 -1301 0 +-1298 -1302 0 +-1299 -1300 0 +-1299 -1301 0 +-1299 -1302 0 +-1300 -1301 0 +-1300 -1302 0 +-1301 -1302 0 +1297 1298 1299 1300 1301 1302 0 +-1303 -1304 0 +-1303 -1305 0 +-1303 -1306 0 +-1303 -1307 0 +-1303 -1308 0 +-1304 -1305 0 +-1304 -1306 0 +-1304 -1307 0 +-1304 -1308 0 +-1305 -1306 0 +-1305 -1307 0 +-1305 -1308 0 +-1306 -1307 0 +-1306 -1308 0 +-1307 -1308 0 +1303 1304 1305 1306 1307 1308 0 +-1309 -1310 0 +-1309 -1311 0 +-1309 -1312 0 +-1309 -1313 0 +-1309 -1314 0 +-1310 -1311 0 +-1310 -1312 0 +-1310 -1313 0 +-1310 -1314 0 +-1311 -1312 0 +-1311 -1313 0 +-1311 -1314 0 +-1312 -1313 0 +-1312 -1314 0 +-1313 -1314 0 +1309 1310 1311 1312 1313 1314 0 +-1315 -1316 0 +-1315 -1317 0 +-1315 -1318 0 +-1315 -1319 0 +-1315 -1320 0 +-1316 -1317 0 +-1316 -1318 0 +-1316 -1319 0 +-1316 -1320 0 +-1317 -1318 0 +-1317 -1319 0 +-1317 -1320 0 +-1318 -1319 0 +-1318 -1320 0 +-1319 -1320 0 +1315 1316 1317 1318 1319 1320 0 +-1321 -1322 0 +-1321 -1323 0 +-1321 -1324 0 +-1321 -1325 0 +-1321 -1326 0 +-1322 -1323 0 +-1322 -1324 0 +-1322 -1325 0 +-1322 -1326 0 +-1323 -1324 0 +-1323 -1325 0 +-1323 -1326 0 +-1324 -1325 0 +-1324 -1326 0 +-1325 -1326 0 +1321 1322 1323 1324 1325 1326 0 +-1327 -1328 0 +-1327 -1329 0 +-1327 -1330 0 +-1327 -1331 0 +-1327 -1332 0 +-1328 -1329 0 +-1328 -1330 0 +-1328 -1331 0 +-1328 -1332 0 +-1329 -1330 0 +-1329 -1331 0 +-1329 -1332 0 +-1330 -1331 0 +-1330 -1332 0 +-1331 -1332 0 +1327 1328 1329 1330 1331 1332 0 +-1333 -1334 0 +-1333 -1335 0 +-1333 -1336 0 +-1333 -1337 0 +-1333 -1338 0 +-1334 -1335 0 +-1334 -1336 0 +-1334 -1337 0 +-1334 -1338 0 +-1335 -1336 0 +-1335 -1337 0 +-1335 -1338 0 +-1336 -1337 0 +-1336 -1338 0 +-1337 -1338 0 +1333 1334 1335 1336 1337 1338 0 +-1339 -1340 0 +-1339 -1341 0 +-1339 -1342 0 +-1339 -1343 0 +-1339 -1344 0 +-1340 -1341 0 +-1340 -1342 0 +-1340 -1343 0 +-1340 -1344 0 +-1341 -1342 0 +-1341 -1343 0 +-1341 -1344 0 +-1342 -1343 0 +-1342 -1344 0 +-1343 -1344 0 +1339 1340 1341 1342 1343 1344 0 +-1345 -1346 0 +-1345 -1347 0 +-1345 -1348 0 +-1345 -1349 0 +-1345 -1350 0 +-1346 -1347 0 +-1346 -1348 0 +-1346 -1349 0 +-1346 -1350 0 +-1347 -1348 0 +-1347 -1349 0 +-1347 -1350 0 +-1348 -1349 0 +-1348 -1350 0 +-1349 -1350 0 +1345 1346 1347 1348 1349 1350 0 +-1351 -1352 0 +-1351 -1353 0 +-1351 -1354 0 +-1351 -1355 0 +-1351 -1356 0 +-1352 -1353 0 +-1352 -1354 0 +-1352 -1355 0 +-1352 -1356 0 +-1353 -1354 0 +-1353 -1355 0 +-1353 -1356 0 +-1354 -1355 0 +-1354 -1356 0 +-1355 -1356 0 +1351 1352 1353 1354 1355 1356 0 +-1357 -1358 0 +-1357 -1359 0 +-1357 -1360 0 +-1357 -1361 0 +-1357 -1362 0 +-1358 -1359 0 +-1358 -1360 0 +-1358 -1361 0 +-1358 -1362 0 +-1359 -1360 0 +-1359 -1361 0 +-1359 -1362 0 +-1360 -1361 0 +-1360 -1362 0 +-1361 -1362 0 +1357 1358 1359 1360 1361 1362 0 +-1363 -1364 0 +-1363 -1365 0 +-1363 -1366 0 +-1363 -1367 0 +-1363 -1368 0 +-1364 -1365 0 +-1364 -1366 0 +-1364 -1367 0 +-1364 -1368 0 +-1365 -1366 0 +-1365 -1367 0 +-1365 -1368 0 +-1366 -1367 0 +-1366 -1368 0 +-1367 -1368 0 +1363 1364 1365 1366 1367 1368 0 +-1369 -1370 0 +-1369 -1371 0 +-1369 -1372 0 +-1369 -1373 0 +-1369 -1374 0 +-1370 -1371 0 +-1370 -1372 0 +-1370 -1373 0 +-1370 -1374 0 +-1371 -1372 0 +-1371 -1373 0 +-1371 -1374 0 +-1372 -1373 0 +-1372 -1374 0 +-1373 -1374 0 +1369 1370 1371 1372 1373 1374 0 +-1375 -1376 0 +-1375 -1377 0 +-1375 -1378 0 +-1375 -1379 0 +-1375 -1380 0 +-1376 -1377 0 +-1376 -1378 0 +-1376 -1379 0 +-1376 -1380 0 +-1377 -1378 0 +-1377 -1379 0 +-1377 -1380 0 +-1378 -1379 0 +-1378 -1380 0 +-1379 -1380 0 +1375 1376 1377 1378 1379 1380 0 +-1381 -1382 0 +-1381 -1383 0 +-1381 -1384 0 +-1381 -1385 0 +-1381 -1386 0 +-1382 -1383 0 +-1382 -1384 0 +-1382 -1385 0 +-1382 -1386 0 +-1383 -1384 0 +-1383 -1385 0 +-1383 -1386 0 +-1384 -1385 0 +-1384 -1386 0 +-1385 -1386 0 +1381 1382 1383 1384 1385 1386 0 +-1387 -1388 0 +-1387 -1389 0 +-1387 -1390 0 +-1387 -1391 0 +-1387 -1392 0 +-1388 -1389 0 +-1388 -1390 0 +-1388 -1391 0 +-1388 -1392 0 +-1389 -1390 0 +-1389 -1391 0 +-1389 -1392 0 +-1390 -1391 0 +-1390 -1392 0 +-1391 -1392 0 +1387 1388 1389 1390 1391 1392 0 +-1393 -1394 0 +-1393 -1395 0 +-1393 -1396 0 +-1393 -1397 0 +-1393 -1398 0 +-1394 -1395 0 +-1394 -1396 0 +-1394 -1397 0 +-1394 -1398 0 +-1395 -1396 0 +-1395 -1397 0 +-1395 -1398 0 +-1396 -1397 0 +-1396 -1398 0 +-1397 -1398 0 +1393 1394 1395 1396 1397 1398 0 +-1399 -1400 0 +-1399 -1401 0 +-1399 -1402 0 +-1399 -1403 0 +-1399 -1404 0 +-1400 -1401 0 +-1400 -1402 0 +-1400 -1403 0 +-1400 -1404 0 +-1401 -1402 0 +-1401 -1403 0 +-1401 -1404 0 +-1402 -1403 0 +-1402 -1404 0 +-1403 -1404 0 +1399 1400 1401 1402 1403 1404 0 +-1405 -1406 0 +-1405 -1407 0 +-1405 -1408 0 +-1405 -1409 0 +-1405 -1410 0 +-1406 -1407 0 +-1406 -1408 0 +-1406 -1409 0 +-1406 -1410 0 +-1407 -1408 0 +-1407 -1409 0 +-1407 -1410 0 +-1408 -1409 0 +-1408 -1410 0 +-1409 -1410 0 +1405 1406 1407 1408 1409 1410 0 +-1411 -1412 0 +-1411 -1413 0 +-1411 -1414 0 +-1411 -1415 0 +-1411 -1416 0 +-1412 -1413 0 +-1412 -1414 0 +-1412 -1415 0 +-1412 -1416 0 +-1413 -1414 0 +-1413 -1415 0 +-1413 -1416 0 +-1414 -1415 0 +-1414 -1416 0 +-1415 -1416 0 +1411 1412 1413 1414 1415 1416 0 +-1417 -1418 0 +-1417 -1419 0 +-1417 -1420 0 +-1417 -1421 0 +-1417 -1422 0 +-1418 -1419 0 +-1418 -1420 0 +-1418 -1421 0 +-1418 -1422 0 +-1419 -1420 0 +-1419 -1421 0 +-1419 -1422 0 +-1420 -1421 0 +-1420 -1422 0 +-1421 -1422 0 +1417 1418 1419 1420 1421 1422 0 +-1423 -1424 0 +-1423 -1425 0 +-1423 -1426 0 +-1423 -1427 0 +-1423 -1428 0 +-1424 -1425 0 +-1424 -1426 0 +-1424 -1427 0 +-1424 -1428 0 +-1425 -1426 0 +-1425 -1427 0 +-1425 -1428 0 +-1426 -1427 0 +-1426 -1428 0 +-1427 -1428 0 +1423 1424 1425 1426 1427 1428 0 +-1429 -1430 0 +-1429 -1431 0 +-1429 -1432 0 +-1429 -1433 0 +-1429 -1434 0 +-1430 -1431 0 +-1430 -1432 0 +-1430 -1433 0 +-1430 -1434 0 +-1431 -1432 0 +-1431 -1433 0 +-1431 -1434 0 +-1432 -1433 0 +-1432 -1434 0 +-1433 -1434 0 +1429 1430 1431 1432 1433 1434 0 +-1435 -1436 0 +-1435 -1437 0 +-1435 -1438 0 +-1435 -1439 0 +-1435 -1440 0 +-1436 -1437 0 +-1436 -1438 0 +-1436 -1439 0 +-1436 -1440 0 +-1437 -1438 0 +-1437 -1439 0 +-1437 -1440 0 +-1438 -1439 0 +-1438 -1440 0 +-1439 -1440 0 +1435 1436 1437 1438 1439 1440 0 +-1441 -1442 0 +-1441 -1443 0 +-1441 -1444 0 +-1441 -1445 0 +-1441 -1446 0 +-1442 -1443 0 +-1442 -1444 0 +-1442 -1445 0 +-1442 -1446 0 +-1443 -1444 0 +-1443 -1445 0 +-1443 -1446 0 +-1444 -1445 0 +-1444 -1446 0 +-1445 -1446 0 +1441 1442 1443 1444 1445 1446 0 +-1447 -1448 0 +-1447 -1449 0 +-1447 -1450 0 +-1447 -1451 0 +-1447 -1452 0 +-1448 -1449 0 +-1448 -1450 0 +-1448 -1451 0 +-1448 -1452 0 +-1449 -1450 0 +-1449 -1451 0 +-1449 -1452 0 +-1450 -1451 0 +-1450 -1452 0 +-1451 -1452 0 +1447 1448 1449 1450 1451 1452 0 +-1453 -1454 0 +-1453 -1455 0 +-1453 -1456 0 +-1453 -1457 0 +-1453 -1458 0 +-1454 -1455 0 +-1454 -1456 0 +-1454 -1457 0 +-1454 -1458 0 +-1455 -1456 0 +-1455 -1457 0 +-1455 -1458 0 +-1456 -1457 0 +-1456 -1458 0 +-1457 -1458 0 +1453 1454 1455 1456 1457 1458 0 +-1459 -1460 0 +-1459 -1461 0 +-1459 -1462 0 +-1459 -1463 0 +-1459 -1464 0 +-1460 -1461 0 +-1460 -1462 0 +-1460 -1463 0 +-1460 -1464 0 +-1461 -1462 0 +-1461 -1463 0 +-1461 -1464 0 +-1462 -1463 0 +-1462 -1464 0 +-1463 -1464 0 +1459 1460 1461 1462 1463 1464 0 +-1465 -1466 0 +-1465 -1467 0 +-1465 -1468 0 +-1465 -1469 0 +-1465 -1470 0 +-1466 -1467 0 +-1466 -1468 0 +-1466 -1469 0 +-1466 -1470 0 +-1467 -1468 0 +-1467 -1469 0 +-1467 -1470 0 +-1468 -1469 0 +-1468 -1470 0 +-1469 -1470 0 +1465 1466 1467 1468 1469 1470 0 +-1471 -1472 0 +-1471 -1473 0 +-1471 -1474 0 +-1471 -1475 0 +-1471 -1476 0 +-1472 -1473 0 +-1472 -1474 0 +-1472 -1475 0 +-1472 -1476 0 +-1473 -1474 0 +-1473 -1475 0 +-1473 -1476 0 +-1474 -1475 0 +-1474 -1476 0 +-1475 -1476 0 +1471 1472 1473 1474 1475 1476 0 +-1477 -1478 0 +-1477 -1479 0 +-1477 -1480 0 +-1477 -1481 0 +-1477 -1482 0 +-1478 -1479 0 +-1478 -1480 0 +-1478 -1481 0 +-1478 -1482 0 +-1479 -1480 0 +-1479 -1481 0 +-1479 -1482 0 +-1480 -1481 0 +-1480 -1482 0 +-1481 -1482 0 +1477 1478 1479 1480 1481 1482 0 +-1483 -1484 0 +-1483 -1485 0 +-1483 -1486 0 +-1483 -1487 0 +-1483 -1488 0 +-1484 -1485 0 +-1484 -1486 0 +-1484 -1487 0 +-1484 -1488 0 +-1485 -1486 0 +-1485 -1487 0 +-1485 -1488 0 +-1486 -1487 0 +-1486 -1488 0 +-1487 -1488 0 +1483 1484 1485 1486 1487 1488 0 +-1489 -1490 0 +-1489 -1491 0 +-1489 -1492 0 +-1489 -1493 0 +-1489 -1494 0 +-1490 -1491 0 +-1490 -1492 0 +-1490 -1493 0 +-1490 -1494 0 +-1491 -1492 0 +-1491 -1493 0 +-1491 -1494 0 +-1492 -1493 0 +-1492 -1494 0 +-1493 -1494 0 +1489 1490 1491 1492 1493 1494 0 +-1495 -1496 0 +-1495 -1497 0 +-1495 -1498 0 +-1495 -1499 0 +-1495 -1500 0 +-1496 -1497 0 +-1496 -1498 0 +-1496 -1499 0 +-1496 -1500 0 +-1497 -1498 0 +-1497 -1499 0 +-1497 -1500 0 +-1498 -1499 0 +-1498 -1500 0 +-1499 -1500 0 +1495 1496 1497 1498 1499 1500 0 +-1501 -1502 0 +-1501 -1503 0 +-1501 -1504 0 +-1501 -1505 0 +-1501 -1506 0 +-1502 -1503 0 +-1502 -1504 0 +-1502 -1505 0 +-1502 -1506 0 +-1503 -1504 0 +-1503 -1505 0 +-1503 -1506 0 +-1504 -1505 0 +-1504 -1506 0 +-1505 -1506 0 +1501 1502 1503 1504 1505 1506 0 +-1507 -1508 0 +-1507 -1509 0 +-1507 -1510 0 +-1507 -1511 0 +-1507 -1512 0 +-1508 -1509 0 +-1508 -1510 0 +-1508 -1511 0 +-1508 -1512 0 +-1509 -1510 0 +-1509 -1511 0 +-1509 -1512 0 +-1510 -1511 0 +-1510 -1512 0 +-1511 -1512 0 +1507 1508 1509 1510 1511 1512 0 +-1513 -1514 0 +-1513 -1515 0 +-1513 -1516 0 +-1513 -1517 0 +-1513 -1518 0 +-1514 -1515 0 +-1514 -1516 0 +-1514 -1517 0 +-1514 -1518 0 +-1515 -1516 0 +-1515 -1517 0 +-1515 -1518 0 +-1516 -1517 0 +-1516 -1518 0 +-1517 -1518 0 +1513 1514 1515 1516 1517 1518 0 +-1519 -1520 0 +-1519 -1521 0 +-1519 -1522 0 +-1519 -1523 0 +-1519 -1524 0 +-1520 -1521 0 +-1520 -1522 0 +-1520 -1523 0 +-1520 -1524 0 +-1521 -1522 0 +-1521 -1523 0 +-1521 -1524 0 +-1522 -1523 0 +-1522 -1524 0 +-1523 -1524 0 +1519 1520 1521 1522 1523 1524 0 +-1525 -1526 0 +-1525 -1527 0 +-1525 -1528 0 +-1525 -1529 0 +-1525 -1530 0 +-1526 -1527 0 +-1526 -1528 0 +-1526 -1529 0 +-1526 -1530 0 +-1527 -1528 0 +-1527 -1529 0 +-1527 -1530 0 +-1528 -1529 0 +-1528 -1530 0 +-1529 -1530 0 +1525 1526 1527 1528 1529 1530 0 +-1531 -1532 0 +-1531 -1533 0 +-1531 -1534 0 +-1531 -1535 0 +-1531 -1536 0 +-1532 -1533 0 +-1532 -1534 0 +-1532 -1535 0 +-1532 -1536 0 +-1533 -1534 0 +-1533 -1535 0 +-1533 -1536 0 +-1534 -1535 0 +-1534 -1536 0 +-1535 -1536 0 +1531 1532 1533 1534 1535 1536 0 +-1537 -1538 0 +-1537 -1539 0 +-1537 -1540 0 +-1537 -1541 0 +-1537 -1542 0 +-1538 -1539 0 +-1538 -1540 0 +-1538 -1541 0 +-1538 -1542 0 +-1539 -1540 0 +-1539 -1541 0 +-1539 -1542 0 +-1540 -1541 0 +-1540 -1542 0 +-1541 -1542 0 +1537 1538 1539 1540 1541 1542 0 +-1543 -1544 0 +-1543 -1545 0 +-1543 -1546 0 +-1543 -1547 0 +-1543 -1548 0 +-1544 -1545 0 +-1544 -1546 0 +-1544 -1547 0 +-1544 -1548 0 +-1545 -1546 0 +-1545 -1547 0 +-1545 -1548 0 +-1546 -1547 0 +-1546 -1548 0 +-1547 -1548 0 +1543 1544 1545 1546 1547 1548 0 +-1549 -1550 0 +-1549 -1551 0 +-1549 -1552 0 +-1549 -1553 0 +-1549 -1554 0 +-1550 -1551 0 +-1550 -1552 0 +-1550 -1553 0 +-1550 -1554 0 +-1551 -1552 0 +-1551 -1553 0 +-1551 -1554 0 +-1552 -1553 0 +-1552 -1554 0 +-1553 -1554 0 +1549 1550 1551 1552 1553 1554 0 +-1555 -1556 0 +-1555 -1557 0 +-1555 -1558 0 +-1555 -1559 0 +-1555 -1560 0 +-1556 -1557 0 +-1556 -1558 0 +-1556 -1559 0 +-1556 -1560 0 +-1557 -1558 0 +-1557 -1559 0 +-1557 -1560 0 +-1558 -1559 0 +-1558 -1560 0 +-1559 -1560 0 +1555 1556 1557 1558 1559 1560 0 +-1561 -1562 0 +-1561 -1563 0 +-1561 -1564 0 +-1561 -1565 0 +-1561 -1566 0 +-1562 -1563 0 +-1562 -1564 0 +-1562 -1565 0 +-1562 -1566 0 +-1563 -1564 0 +-1563 -1565 0 +-1563 -1566 0 +-1564 -1565 0 +-1564 -1566 0 +-1565 -1566 0 +1561 1562 1563 1564 1565 1566 0 +-1567 -1568 0 +-1567 -1569 0 +-1567 -1570 0 +-1567 -1571 0 +-1567 -1572 0 +-1568 -1569 0 +-1568 -1570 0 +-1568 -1571 0 +-1568 -1572 0 +-1569 -1570 0 +-1569 -1571 0 +-1569 -1572 0 +-1570 -1571 0 +-1570 -1572 0 +-1571 -1572 0 +1567 1568 1569 1570 1571 1572 0 +-1573 -1574 0 +-1573 -1575 0 +-1573 -1576 0 +-1573 -1577 0 +-1573 -1578 0 +-1574 -1575 0 +-1574 -1576 0 +-1574 -1577 0 +-1574 -1578 0 +-1575 -1576 0 +-1575 -1577 0 +-1575 -1578 0 +-1576 -1577 0 +-1576 -1578 0 +-1577 -1578 0 +1573 1574 1575 1576 1577 1578 0 +-1579 -1580 0 +-1579 -1581 0 +-1579 -1582 0 +-1579 -1583 0 +-1579 -1584 0 +-1580 -1581 0 +-1580 -1582 0 +-1580 -1583 0 +-1580 -1584 0 +-1581 -1582 0 +-1581 -1583 0 +-1581 -1584 0 +-1582 -1583 0 +-1582 -1584 0 +-1583 -1584 0 +1579 1580 1581 1582 1583 1584 0 +-1585 -1586 0 +-1585 -1587 0 +-1585 -1588 0 +-1585 -1589 0 +-1585 -1590 0 +-1586 -1587 0 +-1586 -1588 0 +-1586 -1589 0 +-1586 -1590 0 +-1587 -1588 0 +-1587 -1589 0 +-1587 -1590 0 +-1588 -1589 0 +-1588 -1590 0 +-1589 -1590 0 +1585 1586 1587 1588 1589 1590 0 +-1591 -1592 0 +-1591 -1593 0 +-1591 -1594 0 +-1591 -1595 0 +-1591 -1596 0 +-1592 -1593 0 +-1592 -1594 0 +-1592 -1595 0 +-1592 -1596 0 +-1593 -1594 0 +-1593 -1595 0 +-1593 -1596 0 +-1594 -1595 0 +-1594 -1596 0 +-1595 -1596 0 +1591 1592 1593 1594 1595 1596 0 +-1597 -1598 0 +-1597 -1599 0 +-1597 -1600 0 +-1597 -1601 0 +-1597 -1602 0 +-1598 -1599 0 +-1598 -1600 0 +-1598 -1601 0 +-1598 -1602 0 +-1599 -1600 0 +-1599 -1601 0 +-1599 -1602 0 +-1600 -1601 0 +-1600 -1602 0 +-1601 -1602 0 +1597 1598 1599 1600 1601 1602 0 +-1603 -1604 0 +-1603 -1605 0 +-1603 -1606 0 +-1603 -1607 0 +-1603 -1608 0 +-1604 -1605 0 +-1604 -1606 0 +-1604 -1607 0 +-1604 -1608 0 +-1605 -1606 0 +-1605 -1607 0 +-1605 -1608 0 +-1606 -1607 0 +-1606 -1608 0 +-1607 -1608 0 +1603 1604 1605 1606 1607 1608 0 +-1609 -1610 0 +-1609 -1611 0 +-1609 -1612 0 +-1609 -1613 0 +-1609 -1614 0 +-1610 -1611 0 +-1610 -1612 0 +-1610 -1613 0 +-1610 -1614 0 +-1611 -1612 0 +-1611 -1613 0 +-1611 -1614 0 +-1612 -1613 0 +-1612 -1614 0 +-1613 -1614 0 +1609 1610 1611 1612 1613 1614 0 +-1615 -1616 0 +-1615 -1617 0 +-1615 -1618 0 +-1615 -1619 0 +-1615 -1620 0 +-1616 -1617 0 +-1616 -1618 0 +-1616 -1619 0 +-1616 -1620 0 +-1617 -1618 0 +-1617 -1619 0 +-1617 -1620 0 +-1618 -1619 0 +-1618 -1620 0 +-1619 -1620 0 +1615 1616 1617 1618 1619 1620 0 +-1621 -1622 0 +-1621 -1623 0 +-1621 -1624 0 +-1621 -1625 0 +-1621 -1626 0 +-1622 -1623 0 +-1622 -1624 0 +-1622 -1625 0 +-1622 -1626 0 +-1623 -1624 0 +-1623 -1625 0 +-1623 -1626 0 +-1624 -1625 0 +-1624 -1626 0 +-1625 -1626 0 +1621 1622 1623 1624 1625 1626 0 +-1627 -1628 0 +-1627 -1629 0 +-1627 -1630 0 +-1627 -1631 0 +-1627 -1632 0 +-1628 -1629 0 +-1628 -1630 0 +-1628 -1631 0 +-1628 -1632 0 +-1629 -1630 0 +-1629 -1631 0 +-1629 -1632 0 +-1630 -1631 0 +-1630 -1632 0 +-1631 -1632 0 +1627 1628 1629 1630 1631 1632 0 +-1633 -1634 0 +-1633 -1635 0 +-1633 -1636 0 +-1633 -1637 0 +-1633 -1638 0 +-1634 -1635 0 +-1634 -1636 0 +-1634 -1637 0 +-1634 -1638 0 +-1635 -1636 0 +-1635 -1637 0 +-1635 -1638 0 +-1636 -1637 0 +-1636 -1638 0 +-1637 -1638 0 +1633 1634 1635 1636 1637 1638 0 +-1639 -1640 0 +-1639 -1641 0 +-1639 -1642 0 +-1639 -1643 0 +-1639 -1644 0 +-1640 -1641 0 +-1640 -1642 0 +-1640 -1643 0 +-1640 -1644 0 +-1641 -1642 0 +-1641 -1643 0 +-1641 -1644 0 +-1642 -1643 0 +-1642 -1644 0 +-1643 -1644 0 +1639 1640 1641 1642 1643 1644 0 +-1645 -1646 0 +-1645 -1647 0 +-1645 -1648 0 +-1645 -1649 0 +-1645 -1650 0 +-1646 -1647 0 +-1646 -1648 0 +-1646 -1649 0 +-1646 -1650 0 +-1647 -1648 0 +-1647 -1649 0 +-1647 -1650 0 +-1648 -1649 0 +-1648 -1650 0 +-1649 -1650 0 +1645 1646 1647 1648 1649 1650 0 +-1651 -1652 0 +-1651 -1653 0 +-1651 -1654 0 +-1651 -1655 0 +-1651 -1656 0 +-1652 -1653 0 +-1652 -1654 0 +-1652 -1655 0 +-1652 -1656 0 +-1653 -1654 0 +-1653 -1655 0 +-1653 -1656 0 +-1654 -1655 0 +-1654 -1656 0 +-1655 -1656 0 +1651 1652 1653 1654 1655 1656 0 +-1657 -1658 0 +-1657 -1659 0 +-1657 -1660 0 +-1657 -1661 0 +-1657 -1662 0 +-1658 -1659 0 +-1658 -1660 0 +-1658 -1661 0 +-1658 -1662 0 +-1659 -1660 0 +-1659 -1661 0 +-1659 -1662 0 +-1660 -1661 0 +-1660 -1662 0 +-1661 -1662 0 +1657 1658 1659 1660 1661 1662 0 +-1663 -1664 0 +-1663 -1665 0 +-1663 -1666 0 +-1663 -1667 0 +-1663 -1668 0 +-1664 -1665 0 +-1664 -1666 0 +-1664 -1667 0 +-1664 -1668 0 +-1665 -1666 0 +-1665 -1667 0 +-1665 -1668 0 +-1666 -1667 0 +-1666 -1668 0 +-1667 -1668 0 +1663 1664 1665 1666 1667 1668 0 +-1669 -1670 0 +-1669 -1671 0 +-1669 -1672 0 +-1669 -1673 0 +-1669 -1674 0 +-1670 -1671 0 +-1670 -1672 0 +-1670 -1673 0 +-1670 -1674 0 +-1671 -1672 0 +-1671 -1673 0 +-1671 -1674 0 +-1672 -1673 0 +-1672 -1674 0 +-1673 -1674 0 +1669 1670 1671 1672 1673 1674 0 +-1675 -1676 0 +-1675 -1677 0 +-1675 -1678 0 +-1675 -1679 0 +-1675 -1680 0 +-1676 -1677 0 +-1676 -1678 0 +-1676 -1679 0 +-1676 -1680 0 +-1677 -1678 0 +-1677 -1679 0 +-1677 -1680 0 +-1678 -1679 0 +-1678 -1680 0 +-1679 -1680 0 +1675 1676 1677 1678 1679 1680 0 +-1681 -1682 0 +-1681 -1683 0 +-1681 -1684 0 +-1681 -1685 0 +-1681 -1686 0 +-1682 -1683 0 +-1682 -1684 0 +-1682 -1685 0 +-1682 -1686 0 +-1683 -1684 0 +-1683 -1685 0 +-1683 -1686 0 +-1684 -1685 0 +-1684 -1686 0 +-1685 -1686 0 +1681 1682 1683 1684 1685 1686 0 +-1687 -1688 0 +-1687 -1689 0 +-1687 -1690 0 +-1687 -1691 0 +-1687 -1692 0 +-1688 -1689 0 +-1688 -1690 0 +-1688 -1691 0 +-1688 -1692 0 +-1689 -1690 0 +-1689 -1691 0 +-1689 -1692 0 +-1690 -1691 0 +-1690 -1692 0 +-1691 -1692 0 +1687 1688 1689 1690 1691 1692 0 +-1693 -1694 0 +-1693 -1695 0 +-1693 -1696 0 +-1693 -1697 0 +-1693 -1698 0 +-1694 -1695 0 +-1694 -1696 0 +-1694 -1697 0 +-1694 -1698 0 +-1695 -1696 0 +-1695 -1697 0 +-1695 -1698 0 +-1696 -1697 0 +-1696 -1698 0 +-1697 -1698 0 +1693 1694 1695 1696 1697 1698 0 +-1699 -1700 0 +-1699 -1701 0 +-1699 -1702 0 +-1699 -1703 0 +-1699 -1704 0 +-1700 -1701 0 +-1700 -1702 0 +-1700 -1703 0 +-1700 -1704 0 +-1701 -1702 0 +-1701 -1703 0 +-1701 -1704 0 +-1702 -1703 0 +-1702 -1704 0 +-1703 -1704 0 +1699 1700 1701 1702 1703 1704 0 +-1705 -1706 0 +-1705 -1707 0 +-1705 -1708 0 +-1705 -1709 0 +-1705 -1710 0 +-1706 -1707 0 +-1706 -1708 0 +-1706 -1709 0 +-1706 -1710 0 +-1707 -1708 0 +-1707 -1709 0 +-1707 -1710 0 +-1708 -1709 0 +-1708 -1710 0 +-1709 -1710 0 +1705 1706 1707 1708 1709 1710 0 +-1711 -1712 0 +-1711 -1713 0 +-1711 -1714 0 +-1711 -1715 0 +-1711 -1716 0 +-1712 -1713 0 +-1712 -1714 0 +-1712 -1715 0 +-1712 -1716 0 +-1713 -1714 0 +-1713 -1715 0 +-1713 -1716 0 +-1714 -1715 0 +-1714 -1716 0 +-1715 -1716 0 +1711 1712 1713 1714 1715 1716 0 +-1717 -1718 0 +-1717 -1719 0 +-1717 -1720 0 +-1717 -1721 0 +-1717 -1722 0 +-1718 -1719 0 +-1718 -1720 0 +-1718 -1721 0 +-1718 -1722 0 +-1719 -1720 0 +-1719 -1721 0 +-1719 -1722 0 +-1720 -1721 0 +-1720 -1722 0 +-1721 -1722 0 +1717 1718 1719 1720 1721 1722 0 +-1723 -1724 0 +-1723 -1725 0 +-1723 -1726 0 +-1723 -1727 0 +-1723 -1728 0 +-1724 -1725 0 +-1724 -1726 0 +-1724 -1727 0 +-1724 -1728 0 +-1725 -1726 0 +-1725 -1727 0 +-1725 -1728 0 +-1726 -1727 0 +-1726 -1728 0 +-1727 -1728 0 +1723 1724 1725 1726 1727 1728 0 +-1729 -1730 0 +-1729 -1731 0 +-1729 -1732 0 +-1729 -1733 0 +-1729 -1734 0 +-1730 -1731 0 +-1730 -1732 0 +-1730 -1733 0 +-1730 -1734 0 +-1731 -1732 0 +-1731 -1733 0 +-1731 -1734 0 +-1732 -1733 0 +-1732 -1734 0 +-1733 -1734 0 +1729 1730 1731 1732 1733 1734 0 +-1735 -1736 0 +-1735 -1737 0 +-1735 -1738 0 +-1735 -1739 0 +-1735 -1740 0 +-1736 -1737 0 +-1736 -1738 0 +-1736 -1739 0 +-1736 -1740 0 +-1737 -1738 0 +-1737 -1739 0 +-1737 -1740 0 +-1738 -1739 0 +-1738 -1740 0 +-1739 -1740 0 +1735 1736 1737 1738 1739 1740 0 +-1741 -1742 0 +-1741 -1743 0 +-1741 -1744 0 +-1741 -1745 0 +-1741 -1746 0 +-1742 -1743 0 +-1742 -1744 0 +-1742 -1745 0 +-1742 -1746 0 +-1743 -1744 0 +-1743 -1745 0 +-1743 -1746 0 +-1744 -1745 0 +-1744 -1746 0 +-1745 -1746 0 +1741 1742 1743 1744 1745 1746 0 +-1747 -1748 0 +-1747 -1749 0 +-1747 -1750 0 +-1747 -1751 0 +-1747 -1752 0 +-1748 -1749 0 +-1748 -1750 0 +-1748 -1751 0 +-1748 -1752 0 +-1749 -1750 0 +-1749 -1751 0 +-1749 -1752 0 +-1750 -1751 0 +-1750 -1752 0 +-1751 -1752 0 +1747 1748 1749 1750 1751 1752 0 +-1753 -1754 0 +-1753 -1755 0 +-1753 -1756 0 +-1753 -1757 0 +-1753 -1758 0 +-1754 -1755 0 +-1754 -1756 0 +-1754 -1757 0 +-1754 -1758 0 +-1755 -1756 0 +-1755 -1757 0 +-1755 -1758 0 +-1756 -1757 0 +-1756 -1758 0 +-1757 -1758 0 +1753 1754 1755 1756 1757 1758 0 +-1759 -1760 0 +-1759 -1761 0 +-1759 -1762 0 +-1759 -1763 0 +-1759 -1764 0 +-1760 -1761 0 +-1760 -1762 0 +-1760 -1763 0 +-1760 -1764 0 +-1761 -1762 0 +-1761 -1763 0 +-1761 -1764 0 +-1762 -1763 0 +-1762 -1764 0 +-1763 -1764 0 +1759 1760 1761 1762 1763 1764 0 +-1765 -1766 0 +-1765 -1767 0 +-1765 -1768 0 +-1765 -1769 0 +-1765 -1770 0 +-1766 -1767 0 +-1766 -1768 0 +-1766 -1769 0 +-1766 -1770 0 +-1767 -1768 0 +-1767 -1769 0 +-1767 -1770 0 +-1768 -1769 0 +-1768 -1770 0 +-1769 -1770 0 +1765 1766 1767 1768 1769 1770 0 +-1771 -1772 0 +-1771 -1773 0 +-1771 -1774 0 +-1771 -1775 0 +-1771 -1776 0 +-1772 -1773 0 +-1772 -1774 0 +-1772 -1775 0 +-1772 -1776 0 +-1773 -1774 0 +-1773 -1775 0 +-1773 -1776 0 +-1774 -1775 0 +-1774 -1776 0 +-1775 -1776 0 +1771 1772 1773 1774 1775 1776 0 +-1777 -1778 0 +-1777 -1779 0 +-1777 -1780 0 +-1777 -1781 0 +-1777 -1782 0 +-1778 -1779 0 +-1778 -1780 0 +-1778 -1781 0 +-1778 -1782 0 +-1779 -1780 0 +-1779 -1781 0 +-1779 -1782 0 +-1780 -1781 0 +-1780 -1782 0 +-1781 -1782 0 +1777 1778 1779 1780 1781 1782 0 +-1783 -1784 0 +-1783 -1785 0 +-1783 -1786 0 +-1783 -1787 0 +-1783 -1788 0 +-1784 -1785 0 +-1784 -1786 0 +-1784 -1787 0 +-1784 -1788 0 +-1785 -1786 0 +-1785 -1787 0 +-1785 -1788 0 +-1786 -1787 0 +-1786 -1788 0 +-1787 -1788 0 +1783 1784 1785 1786 1787 1788 0 +-1789 -1790 0 +-1789 -1791 0 +-1789 -1792 0 +-1789 -1793 0 +-1789 -1794 0 +-1790 -1791 0 +-1790 -1792 0 +-1790 -1793 0 +-1790 -1794 0 +-1791 -1792 0 +-1791 -1793 0 +-1791 -1794 0 +-1792 -1793 0 +-1792 -1794 0 +-1793 -1794 0 +1789 1790 1791 1792 1793 1794 0 +-1795 -1796 0 +-1795 -1797 0 +-1795 -1798 0 +-1795 -1799 0 +-1795 -1800 0 +-1796 -1797 0 +-1796 -1798 0 +-1796 -1799 0 +-1796 -1800 0 +-1797 -1798 0 +-1797 -1799 0 +-1797 -1800 0 +-1798 -1799 0 +-1798 -1800 0 +-1799 -1800 0 +1795 1796 1797 1798 1799 1800 0 +-1801 -1802 0 +-1801 -1803 0 +-1801 -1804 0 +-1801 -1805 0 +-1801 -1806 0 +-1802 -1803 0 +-1802 -1804 0 +-1802 -1805 0 +-1802 -1806 0 +-1803 -1804 0 +-1803 -1805 0 +-1803 -1806 0 +-1804 -1805 0 +-1804 -1806 0 +-1805 -1806 0 +1801 1802 1803 1804 1805 1806 0 +-1807 -1808 0 +-1807 -1809 0 +-1807 -1810 0 +-1807 -1811 0 +-1807 -1812 0 +-1808 -1809 0 +-1808 -1810 0 +-1808 -1811 0 +-1808 -1812 0 +-1809 -1810 0 +-1809 -1811 0 +-1809 -1812 0 +-1810 -1811 0 +-1810 -1812 0 +-1811 -1812 0 +1807 1808 1809 1810 1811 1812 0 +-1813 -1814 0 +-1813 -1815 0 +-1813 -1816 0 +-1813 -1817 0 +-1813 -1818 0 +-1814 -1815 0 +-1814 -1816 0 +-1814 -1817 0 +-1814 -1818 0 +-1815 -1816 0 +-1815 -1817 0 +-1815 -1818 0 +-1816 -1817 0 +-1816 -1818 0 +-1817 -1818 0 +1813 1814 1815 1816 1817 1818 0 +-1819 -1820 0 +-1819 -1821 0 +-1819 -1822 0 +-1819 -1823 0 +-1819 -1824 0 +-1820 -1821 0 +-1820 -1822 0 +-1820 -1823 0 +-1820 -1824 0 +-1821 -1822 0 +-1821 -1823 0 +-1821 -1824 0 +-1822 -1823 0 +-1822 -1824 0 +-1823 -1824 0 +1819 1820 1821 1822 1823 1824 0 +-1825 -1826 0 +-1825 -1827 0 +-1825 -1828 0 +-1825 -1829 0 +-1825 -1830 0 +-1826 -1827 0 +-1826 -1828 0 +-1826 -1829 0 +-1826 -1830 0 +-1827 -1828 0 +-1827 -1829 0 +-1827 -1830 0 +-1828 -1829 0 +-1828 -1830 0 +-1829 -1830 0 +1825 1826 1827 1828 1829 1830 0 +-1831 -1832 0 +-1831 -1833 0 +-1831 -1834 0 +-1831 -1835 0 +-1831 -1836 0 +-1832 -1833 0 +-1832 -1834 0 +-1832 -1835 0 +-1832 -1836 0 +-1833 -1834 0 +-1833 -1835 0 +-1833 -1836 0 +-1834 -1835 0 +-1834 -1836 0 +-1835 -1836 0 +1831 1832 1833 1834 1835 1836 0 +-1837 -1838 0 +-1837 -1839 0 +-1837 -1840 0 +-1837 -1841 0 +-1837 -1842 0 +-1838 -1839 0 +-1838 -1840 0 +-1838 -1841 0 +-1838 -1842 0 +-1839 -1840 0 +-1839 -1841 0 +-1839 -1842 0 +-1840 -1841 0 +-1840 -1842 0 +-1841 -1842 0 +1837 1838 1839 1840 1841 1842 0 +-1843 -1844 0 +-1843 -1845 0 +-1843 -1846 0 +-1843 -1847 0 +-1843 -1848 0 +-1844 -1845 0 +-1844 -1846 0 +-1844 -1847 0 +-1844 -1848 0 +-1845 -1846 0 +-1845 -1847 0 +-1845 -1848 0 +-1846 -1847 0 +-1846 -1848 0 +-1847 -1848 0 +1843 1844 1845 1846 1847 1848 0 +-1849 -1850 0 +-1849 -1851 0 +-1849 -1852 0 +-1849 -1853 0 +-1849 -1854 0 +-1850 -1851 0 +-1850 -1852 0 +-1850 -1853 0 +-1850 -1854 0 +-1851 -1852 0 +-1851 -1853 0 +-1851 -1854 0 +-1852 -1853 0 +-1852 -1854 0 +-1853 -1854 0 +1849 1850 1851 1852 1853 1854 0 +-1855 -1856 0 +-1855 -1857 0 +-1855 -1858 0 +-1855 -1859 0 +-1855 -1860 0 +-1856 -1857 0 +-1856 -1858 0 +-1856 -1859 0 +-1856 -1860 0 +-1857 -1858 0 +-1857 -1859 0 +-1857 -1860 0 +-1858 -1859 0 +-1858 -1860 0 +-1859 -1860 0 +1855 1856 1857 1858 1859 1860 0 +-1861 -1862 0 +-1861 -1863 0 +-1861 -1864 0 +-1861 -1865 0 +-1861 -1866 0 +-1862 -1863 0 +-1862 -1864 0 +-1862 -1865 0 +-1862 -1866 0 +-1863 -1864 0 +-1863 -1865 0 +-1863 -1866 0 +-1864 -1865 0 +-1864 -1866 0 +-1865 -1866 0 +1861 1862 1863 1864 1865 1866 0 +-1867 -1868 0 +-1867 -1869 0 +-1867 -1870 0 +-1867 -1871 0 +-1867 -1872 0 +-1868 -1869 0 +-1868 -1870 0 +-1868 -1871 0 +-1868 -1872 0 +-1869 -1870 0 +-1869 -1871 0 +-1869 -1872 0 +-1870 -1871 0 +-1870 -1872 0 +-1871 -1872 0 +1867 1868 1869 1870 1871 1872 0 +-1873 -1874 0 +-1873 -1875 0 +-1873 -1876 0 +-1873 -1877 0 +-1873 -1878 0 +-1874 -1875 0 +-1874 -1876 0 +-1874 -1877 0 +-1874 -1878 0 +-1875 -1876 0 +-1875 -1877 0 +-1875 -1878 0 +-1876 -1877 0 +-1876 -1878 0 +-1877 -1878 0 +1873 1874 1875 1876 1877 1878 0 +-1879 -1880 0 +-1879 -1881 0 +-1879 -1882 0 +-1879 -1883 0 +-1879 -1884 0 +-1880 -1881 0 +-1880 -1882 0 +-1880 -1883 0 +-1880 -1884 0 +-1881 -1882 0 +-1881 -1883 0 +-1881 -1884 0 +-1882 -1883 0 +-1882 -1884 0 +-1883 -1884 0 +1879 1880 1881 1882 1883 1884 0 +-1885 -1886 0 +-1885 -1887 0 +-1885 -1888 0 +-1885 -1889 0 +-1885 -1890 0 +-1886 -1887 0 +-1886 -1888 0 +-1886 -1889 0 +-1886 -1890 0 +-1887 -1888 0 +-1887 -1889 0 +-1887 -1890 0 +-1888 -1889 0 +-1888 -1890 0 +-1889 -1890 0 +1885 1886 1887 1888 1889 1890 0 +-1891 -1892 0 +-1891 -1893 0 +-1891 -1894 0 +-1891 -1895 0 +-1891 -1896 0 +-1892 -1893 0 +-1892 -1894 0 +-1892 -1895 0 +-1892 -1896 0 +-1893 -1894 0 +-1893 -1895 0 +-1893 -1896 0 +-1894 -1895 0 +-1894 -1896 0 +-1895 -1896 0 +1891 1892 1893 1894 1895 1896 0 +-1897 -1898 0 +-1897 -1899 0 +-1897 -1900 0 +-1897 -1901 0 +-1897 -1902 0 +-1898 -1899 0 +-1898 -1900 0 +-1898 -1901 0 +-1898 -1902 0 +-1899 -1900 0 +-1899 -1901 0 +-1899 -1902 0 +-1900 -1901 0 +-1900 -1902 0 +-1901 -1902 0 +1897 1898 1899 1900 1901 1902 0 +-1903 -1904 0 +-1903 -1905 0 +-1903 -1906 0 +-1903 -1907 0 +-1903 -1908 0 +-1904 -1905 0 +-1904 -1906 0 +-1904 -1907 0 +-1904 -1908 0 +-1905 -1906 0 +-1905 -1907 0 +-1905 -1908 0 +-1906 -1907 0 +-1906 -1908 0 +-1907 -1908 0 +1903 1904 1905 1906 1907 1908 0 +-1909 -1910 0 +-1909 -1911 0 +-1909 -1912 0 +-1909 -1913 0 +-1909 -1914 0 +-1910 -1911 0 +-1910 -1912 0 +-1910 -1913 0 +-1910 -1914 0 +-1911 -1912 0 +-1911 -1913 0 +-1911 -1914 0 +-1912 -1913 0 +-1912 -1914 0 +-1913 -1914 0 +1909 1910 1911 1912 1913 1914 0 +-1915 -1916 0 +-1915 -1917 0 +-1915 -1918 0 +-1915 -1919 0 +-1915 -1920 0 +-1916 -1917 0 +-1916 -1918 0 +-1916 -1919 0 +-1916 -1920 0 +-1917 -1918 0 +-1917 -1919 0 +-1917 -1920 0 +-1918 -1919 0 +-1918 -1920 0 +-1919 -1920 0 +1915 1916 1917 1918 1919 1920 0 +-1921 -1922 0 +-1921 -1923 0 +-1921 -1924 0 +-1921 -1925 0 +-1921 -1926 0 +-1922 -1923 0 +-1922 -1924 0 +-1922 -1925 0 +-1922 -1926 0 +-1923 -1924 0 +-1923 -1925 0 +-1923 -1926 0 +-1924 -1925 0 +-1924 -1926 0 +-1925 -1926 0 +1921 1922 1923 1924 1925 1926 0 +-1927 -1928 0 +-1927 -1929 0 +-1927 -1930 0 +-1927 -1931 0 +-1927 -1932 0 +-1928 -1929 0 +-1928 -1930 0 +-1928 -1931 0 +-1928 -1932 0 +-1929 -1930 0 +-1929 -1931 0 +-1929 -1932 0 +-1930 -1931 0 +-1930 -1932 0 +-1931 -1932 0 +1927 1928 1929 1930 1931 1932 0 +-1933 -1934 0 +-1933 -1935 0 +-1933 -1936 0 +-1933 -1937 0 +-1933 -1938 0 +-1934 -1935 0 +-1934 -1936 0 +-1934 -1937 0 +-1934 -1938 0 +-1935 -1936 0 +-1935 -1937 0 +-1935 -1938 0 +-1936 -1937 0 +-1936 -1938 0 +-1937 -1938 0 +1933 1934 1935 1936 1937 1938 0 +-1939 -1940 0 +-1939 -1941 0 +-1939 -1942 0 +-1939 -1943 0 +-1939 -1944 0 +-1940 -1941 0 +-1940 -1942 0 +-1940 -1943 0 +-1940 -1944 0 +-1941 -1942 0 +-1941 -1943 0 +-1941 -1944 0 +-1942 -1943 0 +-1942 -1944 0 +-1943 -1944 0 +1939 1940 1941 1942 1943 1944 0 +-1945 -1946 0 +-1945 -1947 0 +-1945 -1948 0 +-1945 -1949 0 +-1945 -1950 0 +-1946 -1947 0 +-1946 -1948 0 +-1946 -1949 0 +-1946 -1950 0 +-1947 -1948 0 +-1947 -1949 0 +-1947 -1950 0 +-1948 -1949 0 +-1948 -1950 0 +-1949 -1950 0 +1945 1946 1947 1948 1949 1950 0 +-1951 -1952 0 +-1951 -1953 0 +-1951 -1954 0 +-1951 -1955 0 +-1951 -1956 0 +-1952 -1953 0 +-1952 -1954 0 +-1952 -1955 0 +-1952 -1956 0 +-1953 -1954 0 +-1953 -1955 0 +-1953 -1956 0 +-1954 -1955 0 +-1954 -1956 0 +-1955 -1956 0 +1951 1952 1953 1954 1955 1956 0 +-1957 -1958 0 +-1957 -1959 0 +-1957 -1960 0 +-1957 -1961 0 +-1957 -1962 0 +-1958 -1959 0 +-1958 -1960 0 +-1958 -1961 0 +-1958 -1962 0 +-1959 -1960 0 +-1959 -1961 0 +-1959 -1962 0 +-1960 -1961 0 +-1960 -1962 0 +-1961 -1962 0 +1957 1958 1959 1960 1961 1962 0 +-1963 -1964 0 +-1963 -1965 0 +-1963 -1966 0 +-1963 -1967 0 +-1963 -1968 0 +-1964 -1965 0 +-1964 -1966 0 +-1964 -1967 0 +-1964 -1968 0 +-1965 -1966 0 +-1965 -1967 0 +-1965 -1968 0 +-1966 -1967 0 +-1966 -1968 0 +-1967 -1968 0 +1963 1964 1965 1966 1967 1968 0 +-1969 -1970 0 +-1969 -1971 0 +-1969 -1972 0 +-1969 -1973 0 +-1969 -1974 0 +-1970 -1971 0 +-1970 -1972 0 +-1970 -1973 0 +-1970 -1974 0 +-1971 -1972 0 +-1971 -1973 0 +-1971 -1974 0 +-1972 -1973 0 +-1972 -1974 0 +-1973 -1974 0 +1969 1970 1971 1972 1973 1974 0 +-1975 -1976 0 +-1975 -1977 0 +-1975 -1978 0 +-1975 -1979 0 +-1975 -1980 0 +-1976 -1977 0 +-1976 -1978 0 +-1976 -1979 0 +-1976 -1980 0 +-1977 -1978 0 +-1977 -1979 0 +-1977 -1980 0 +-1978 -1979 0 +-1978 -1980 0 +-1979 -1980 0 +1975 1976 1977 1978 1979 1980 0 +-1981 -1982 0 +-1981 -1983 0 +-1981 -1984 0 +-1981 -1985 0 +-1981 -1986 0 +-1982 -1983 0 +-1982 -1984 0 +-1982 -1985 0 +-1982 -1986 0 +-1983 -1984 0 +-1983 -1985 0 +-1983 -1986 0 +-1984 -1985 0 +-1984 -1986 0 +-1985 -1986 0 +1981 1982 1983 1984 1985 1986 0 +-1987 -1988 0 +-1987 -1989 0 +-1987 -1990 0 +-1987 -1991 0 +-1987 -1992 0 +-1988 -1989 0 +-1988 -1990 0 +-1988 -1991 0 +-1988 -1992 0 +-1989 -1990 0 +-1989 -1991 0 +-1989 -1992 0 +-1990 -1991 0 +-1990 -1992 0 +-1991 -1992 0 +1987 1988 1989 1990 1991 1992 0 +-1993 -1994 0 +-1993 -1995 0 +-1993 -1996 0 +-1993 -1997 0 +-1993 -1998 0 +-1994 -1995 0 +-1994 -1996 0 +-1994 -1997 0 +-1994 -1998 0 +-1995 -1996 0 +-1995 -1997 0 +-1995 -1998 0 +-1996 -1997 0 +-1996 -1998 0 +-1997 -1998 0 +1993 1994 1995 1996 1997 1998 0 +-1999 -2000 0 +-1999 -2001 0 +-1999 -2002 0 +-1999 -2003 0 +-1999 -2004 0 +-2000 -2001 0 +-2000 -2002 0 +-2000 -2003 0 +-2000 -2004 0 +-2001 -2002 0 +-2001 -2003 0 +-2001 -2004 0 +-2002 -2003 0 +-2002 -2004 0 +-2003 -2004 0 +1999 2000 2001 2002 2003 2004 0 +-2005 -2006 0 +-2005 -2007 0 +-2005 -2008 0 +-2005 -2009 0 +-2005 -2010 0 +-2006 -2007 0 +-2006 -2008 0 +-2006 -2009 0 +-2006 -2010 0 +-2007 -2008 0 +-2007 -2009 0 +-2007 -2010 0 +-2008 -2009 0 +-2008 -2010 0 +-2009 -2010 0 +2005 2006 2007 2008 2009 2010 0 +-2011 -2012 0 +-2011 -2013 0 +-2011 -2014 0 +-2011 -2015 0 +-2011 -2016 0 +-2012 -2013 0 +-2012 -2014 0 +-2012 -2015 0 +-2012 -2016 0 +-2013 -2014 0 +-2013 -2015 0 +-2013 -2016 0 +-2014 -2015 0 +-2014 -2016 0 +-2015 -2016 0 +2011 2012 2013 2014 2015 2016 0 +-2017 -2018 0 +-2017 -2019 0 +-2017 -2020 0 +-2017 -2021 0 +-2017 -2022 0 +-2018 -2019 0 +-2018 -2020 0 +-2018 -2021 0 +-2018 -2022 0 +-2019 -2020 0 +-2019 -2021 0 +-2019 -2022 0 +-2020 -2021 0 +-2020 -2022 0 +-2021 -2022 0 +2017 2018 2019 2020 2021 2022 0 +-2023 -2024 0 +-2023 -2025 0 +-2023 -2026 0 +-2023 -2027 0 +-2023 -2028 0 +-2024 -2025 0 +-2024 -2026 0 +-2024 -2027 0 +-2024 -2028 0 +-2025 -2026 0 +-2025 -2027 0 +-2025 -2028 0 +-2026 -2027 0 +-2026 -2028 0 +-2027 -2028 0 +2023 2024 2025 2026 2027 2028 0 +-2029 -2030 0 +-2029 -2031 0 +-2029 -2032 0 +-2029 -2033 0 +-2029 -2034 0 +-2030 -2031 0 +-2030 -2032 0 +-2030 -2033 0 +-2030 -2034 0 +-2031 -2032 0 +-2031 -2033 0 +-2031 -2034 0 +-2032 -2033 0 +-2032 -2034 0 +-2033 -2034 0 +2029 2030 2031 2032 2033 2034 0 +-2035 -2036 0 +-2035 -2037 0 +-2035 -2038 0 +-2035 -2039 0 +-2035 -2040 0 +-2036 -2037 0 +-2036 -2038 0 +-2036 -2039 0 +-2036 -2040 0 +-2037 -2038 0 +-2037 -2039 0 +-2037 -2040 0 +-2038 -2039 0 +-2038 -2040 0 +-2039 -2040 0 +2035 2036 2037 2038 2039 2040 0 +-2041 -2042 0 +-2041 -2043 0 +-2041 -2044 0 +-2041 -2045 0 +-2041 -2046 0 +-2042 -2043 0 +-2042 -2044 0 +-2042 -2045 0 +-2042 -2046 0 +-2043 -2044 0 +-2043 -2045 0 +-2043 -2046 0 +-2044 -2045 0 +-2044 -2046 0 +-2045 -2046 0 +2041 2042 2043 2044 2045 2046 0 +-2047 -2048 0 +-2047 -2049 0 +-2047 -2050 0 +-2047 -2051 0 +-2047 -2052 0 +-2048 -2049 0 +-2048 -2050 0 +-2048 -2051 0 +-2048 -2052 0 +-2049 -2050 0 +-2049 -2051 0 +-2049 -2052 0 +-2050 -2051 0 +-2050 -2052 0 +-2051 -2052 0 +2047 2048 2049 2050 2051 2052 0 +-2053 -2054 0 +-2053 -2055 0 +-2053 -2056 0 +-2053 -2057 0 +-2053 -2058 0 +-2054 -2055 0 +-2054 -2056 0 +-2054 -2057 0 +-2054 -2058 0 +-2055 -2056 0 +-2055 -2057 0 +-2055 -2058 0 +-2056 -2057 0 +-2056 -2058 0 +-2057 -2058 0 +2053 2054 2055 2056 2057 2058 0 +-2059 -2060 0 +-2059 -2061 0 +-2059 -2062 0 +-2059 -2063 0 +-2059 -2064 0 +-2060 -2061 0 +-2060 -2062 0 +-2060 -2063 0 +-2060 -2064 0 +-2061 -2062 0 +-2061 -2063 0 +-2061 -2064 0 +-2062 -2063 0 +-2062 -2064 0 +-2063 -2064 0 +2059 2060 2061 2062 2063 2064 0 +-2065 -2066 0 +-2065 -2067 0 +-2065 -2068 0 +-2065 -2069 0 +-2065 -2070 0 +-2066 -2067 0 +-2066 -2068 0 +-2066 -2069 0 +-2066 -2070 0 +-2067 -2068 0 +-2067 -2069 0 +-2067 -2070 0 +-2068 -2069 0 +-2068 -2070 0 +-2069 -2070 0 +2065 2066 2067 2068 2069 2070 0 +-2071 -2072 0 +-2071 -2073 0 +-2071 -2074 0 +-2071 -2075 0 +-2071 -2076 0 +-2072 -2073 0 +-2072 -2074 0 +-2072 -2075 0 +-2072 -2076 0 +-2073 -2074 0 +-2073 -2075 0 +-2073 -2076 0 +-2074 -2075 0 +-2074 -2076 0 +-2075 -2076 0 +2071 2072 2073 2074 2075 2076 0 +-2077 -2078 0 +-2077 -2079 0 +-2077 -2080 0 +-2077 -2081 0 +-2077 -2082 0 +-2078 -2079 0 +-2078 -2080 0 +-2078 -2081 0 +-2078 -2082 0 +-2079 -2080 0 +-2079 -2081 0 +-2079 -2082 0 +-2080 -2081 0 +-2080 -2082 0 +-2081 -2082 0 +2077 2078 2079 2080 2081 2082 0 +-2083 -2084 0 +-2083 -2085 0 +-2083 -2086 0 +-2083 -2087 0 +-2083 -2088 0 +-2084 -2085 0 +-2084 -2086 0 +-2084 -2087 0 +-2084 -2088 0 +-2085 -2086 0 +-2085 -2087 0 +-2085 -2088 0 +-2086 -2087 0 +-2086 -2088 0 +-2087 -2088 0 +2083 2084 2085 2086 2087 2088 0 +-2089 -2090 0 +-2089 -2091 0 +-2089 -2092 0 +-2089 -2093 0 +-2089 -2094 0 +-2090 -2091 0 +-2090 -2092 0 +-2090 -2093 0 +-2090 -2094 0 +-2091 -2092 0 +-2091 -2093 0 +-2091 -2094 0 +-2092 -2093 0 +-2092 -2094 0 +-2093 -2094 0 +2089 2090 2091 2092 2093 2094 0 +-2095 -2096 0 +-2095 -2097 0 +-2095 -2098 0 +-2095 -2099 0 +-2095 -2100 0 +-2096 -2097 0 +-2096 -2098 0 +-2096 -2099 0 +-2096 -2100 0 +-2097 -2098 0 +-2097 -2099 0 +-2097 -2100 0 +-2098 -2099 0 +-2098 -2100 0 +-2099 -2100 0 +2095 2096 2097 2098 2099 2100 0 +-2101 -2102 0 +-2101 -2103 0 +-2101 -2104 0 +-2101 -2105 0 +-2101 -2106 0 +-2102 -2103 0 +-2102 -2104 0 +-2102 -2105 0 +-2102 -2106 0 +-2103 -2104 0 +-2103 -2105 0 +-2103 -2106 0 +-2104 -2105 0 +-2104 -2106 0 +-2105 -2106 0 +2101 2102 2103 2104 2105 2106 0 +-2107 -2108 0 +-2107 -2109 0 +-2107 -2110 0 +-2107 -2111 0 +-2107 -2112 0 +-2108 -2109 0 +-2108 -2110 0 +-2108 -2111 0 +-2108 -2112 0 +-2109 -2110 0 +-2109 -2111 0 +-2109 -2112 0 +-2110 -2111 0 +-2110 -2112 0 +-2111 -2112 0 +2107 2108 2109 2110 2111 2112 0 +-2113 -2114 0 +-2113 -2115 0 +-2113 -2116 0 +-2113 -2117 0 +-2113 -2118 0 +-2114 -2115 0 +-2114 -2116 0 +-2114 -2117 0 +-2114 -2118 0 +-2115 -2116 0 +-2115 -2117 0 +-2115 -2118 0 +-2116 -2117 0 +-2116 -2118 0 +-2117 -2118 0 +2113 2114 2115 2116 2117 2118 0 +-2119 -2120 0 +-2119 -2121 0 +-2119 -2122 0 +-2119 -2123 0 +-2119 -2124 0 +-2120 -2121 0 +-2120 -2122 0 +-2120 -2123 0 +-2120 -2124 0 +-2121 -2122 0 +-2121 -2123 0 +-2121 -2124 0 +-2122 -2123 0 +-2122 -2124 0 +-2123 -2124 0 +2119 2120 2121 2122 2123 2124 0 +-2125 -2126 0 +-2125 -2127 0 +-2125 -2128 0 +-2125 -2129 0 +-2125 -2130 0 +-2126 -2127 0 +-2126 -2128 0 +-2126 -2129 0 +-2126 -2130 0 +-2127 -2128 0 +-2127 -2129 0 +-2127 -2130 0 +-2128 -2129 0 +-2128 -2130 0 +-2129 -2130 0 +2125 2126 2127 2128 2129 2130 0 +-2131 -2132 0 +-2131 -2133 0 +-2131 -2134 0 +-2131 -2135 0 +-2131 -2136 0 +-2132 -2133 0 +-2132 -2134 0 +-2132 -2135 0 +-2132 -2136 0 +-2133 -2134 0 +-2133 -2135 0 +-2133 -2136 0 +-2134 -2135 0 +-2134 -2136 0 +-2135 -2136 0 +2131 2132 2133 2134 2135 2136 0 +-2137 -2138 0 +-2137 -2139 0 +-2137 -2140 0 +-2137 -2141 0 +-2137 -2142 0 +-2138 -2139 0 +-2138 -2140 0 +-2138 -2141 0 +-2138 -2142 0 +-2139 -2140 0 +-2139 -2141 0 +-2139 -2142 0 +-2140 -2141 0 +-2140 -2142 0 +-2141 -2142 0 +2137 2138 2139 2140 2141 2142 0 +-2143 -2144 0 +-2143 -2145 0 +-2143 -2146 0 +-2143 -2147 0 +-2143 -2148 0 +-2144 -2145 0 +-2144 -2146 0 +-2144 -2147 0 +-2144 -2148 0 +-2145 -2146 0 +-2145 -2147 0 +-2145 -2148 0 +-2146 -2147 0 +-2146 -2148 0 +-2147 -2148 0 +2143 2144 2145 2146 2147 2148 0 +-2149 -2150 0 +-2149 -2151 0 +-2149 -2152 0 +-2149 -2153 0 +-2149 -2154 0 +-2150 -2151 0 +-2150 -2152 0 +-2150 -2153 0 +-2150 -2154 0 +-2151 -2152 0 +-2151 -2153 0 +-2151 -2154 0 +-2152 -2153 0 +-2152 -2154 0 +-2153 -2154 0 +2149 2150 2151 2152 2153 2154 0 +-2155 -2156 0 +-2155 -2157 0 +-2155 -2158 0 +-2155 -2159 0 +-2155 -2160 0 +-2156 -2157 0 +-2156 -2158 0 +-2156 -2159 0 +-2156 -2160 0 +-2157 -2158 0 +-2157 -2159 0 +-2157 -2160 0 +-2158 -2159 0 +-2158 -2160 0 +-2159 -2160 0 +2155 2156 2157 2158 2159 2160 0 +-2161 -2162 0 +-2161 -2163 0 +-2161 -2164 0 +-2161 -2165 0 +-2161 -2166 0 +-2162 -2163 0 +-2162 -2164 0 +-2162 -2165 0 +-2162 -2166 0 +-2163 -2164 0 +-2163 -2165 0 +-2163 -2166 0 +-2164 -2165 0 +-2164 -2166 0 +-2165 -2166 0 +2161 2162 2163 2164 2165 2166 0 +-2167 -2168 0 +-2167 -2169 0 +-2167 -2170 0 +-2167 -2171 0 +-2167 -2172 0 +-2168 -2169 0 +-2168 -2170 0 +-2168 -2171 0 +-2168 -2172 0 +-2169 -2170 0 +-2169 -2171 0 +-2169 -2172 0 +-2170 -2171 0 +-2170 -2172 0 +-2171 -2172 0 +2167 2168 2169 2170 2171 2172 0 +-2173 -2174 0 +-2173 -2175 0 +-2173 -2176 0 +-2173 -2177 0 +-2173 -2178 0 +-2174 -2175 0 +-2174 -2176 0 +-2174 -2177 0 +-2174 -2178 0 +-2175 -2176 0 +-2175 -2177 0 +-2175 -2178 0 +-2176 -2177 0 +-2176 -2178 0 +-2177 -2178 0 +2173 2174 2175 2176 2177 2178 0 +-2179 -2180 0 +-2179 -2181 0 +-2179 -2182 0 +-2179 -2183 0 +-2179 -2184 0 +-2180 -2181 0 +-2180 -2182 0 +-2180 -2183 0 +-2180 -2184 0 +-2181 -2182 0 +-2181 -2183 0 +-2181 -2184 0 +-2182 -2183 0 +-2182 -2184 0 +-2183 -2184 0 +2179 2180 2181 2182 2183 2184 0 +-2185 -2186 0 +-2185 -2187 0 +-2185 -2188 0 +-2185 -2189 0 +-2185 -2190 0 +-2186 -2187 0 +-2186 -2188 0 +-2186 -2189 0 +-2186 -2190 0 +-2187 -2188 0 +-2187 -2189 0 +-2187 -2190 0 +-2188 -2189 0 +-2188 -2190 0 +-2189 -2190 0 +2185 2186 2187 2188 2189 2190 0 +-2191 -2192 0 +-2191 -2193 0 +-2191 -2194 0 +-2191 -2195 0 +-2191 -2196 0 +-2192 -2193 0 +-2192 -2194 0 +-2192 -2195 0 +-2192 -2196 0 +-2193 -2194 0 +-2193 -2195 0 +-2193 -2196 0 +-2194 -2195 0 +-2194 -2196 0 +-2195 -2196 0 +2191 2192 2193 2194 2195 2196 0 +-2197 -2198 0 +-2197 -2199 0 +-2197 -2200 0 +-2197 -2201 0 +-2197 -2202 0 +-2198 -2199 0 +-2198 -2200 0 +-2198 -2201 0 +-2198 -2202 0 +-2199 -2200 0 +-2199 -2201 0 +-2199 -2202 0 +-2200 -2201 0 +-2200 -2202 0 +-2201 -2202 0 +2197 2198 2199 2200 2201 2202 0 +-2203 -2204 0 +-2203 -2205 0 +-2203 -2206 0 +-2203 -2207 0 +-2203 -2208 0 +-2204 -2205 0 +-2204 -2206 0 +-2204 -2207 0 +-2204 -2208 0 +-2205 -2206 0 +-2205 -2207 0 +-2205 -2208 0 +-2206 -2207 0 +-2206 -2208 0 +-2207 -2208 0 +2203 2204 2205 2206 2207 2208 0 +-2209 -2210 0 +-2209 -2211 0 +-2209 -2212 0 +-2209 -2213 0 +-2209 -2214 0 +-2210 -2211 0 +-2210 -2212 0 +-2210 -2213 0 +-2210 -2214 0 +-2211 -2212 0 +-2211 -2213 0 +-2211 -2214 0 +-2212 -2213 0 +-2212 -2214 0 +-2213 -2214 0 +2209 2210 2211 2212 2213 2214 0 +-2215 -2216 0 +-2215 -2217 0 +-2215 -2218 0 +-2215 -2219 0 +-2215 -2220 0 +-2216 -2217 0 +-2216 -2218 0 +-2216 -2219 0 +-2216 -2220 0 +-2217 -2218 0 +-2217 -2219 0 +-2217 -2220 0 +-2218 -2219 0 +-2218 -2220 0 +-2219 -2220 0 +2215 2216 2217 2218 2219 2220 0 +-2221 -2222 0 +-2221 -2223 0 +-2221 -2224 0 +-2221 -2225 0 +-2221 -2226 0 +-2222 -2223 0 +-2222 -2224 0 +-2222 -2225 0 +-2222 -2226 0 +-2223 -2224 0 +-2223 -2225 0 +-2223 -2226 0 +-2224 -2225 0 +-2224 -2226 0 +-2225 -2226 0 +2221 2222 2223 2224 2225 2226 0 +-2227 -2228 0 +-2227 -2229 0 +-2227 -2230 0 +-2227 -2231 0 +-2227 -2232 0 +-2228 -2229 0 +-2228 -2230 0 +-2228 -2231 0 +-2228 -2232 0 +-2229 -2230 0 +-2229 -2231 0 +-2229 -2232 0 +-2230 -2231 0 +-2230 -2232 0 +-2231 -2232 0 +2227 2228 2229 2230 2231 2232 0 +-2233 -2234 0 +-2233 -2235 0 +-2233 -2236 0 +-2233 -2237 0 +-2233 -2238 0 +-2234 -2235 0 +-2234 -2236 0 +-2234 -2237 0 +-2234 -2238 0 +-2235 -2236 0 +-2235 -2237 0 +-2235 -2238 0 +-2236 -2237 0 +-2236 -2238 0 +-2237 -2238 0 +2233 2234 2235 2236 2237 2238 0 +-2239 -2240 0 +-2239 -2241 0 +-2239 -2242 0 +-2239 -2243 0 +-2239 -2244 0 +-2240 -2241 0 +-2240 -2242 0 +-2240 -2243 0 +-2240 -2244 0 +-2241 -2242 0 +-2241 -2243 0 +-2241 -2244 0 +-2242 -2243 0 +-2242 -2244 0 +-2243 -2244 0 +2239 2240 2241 2242 2243 2244 0 +-2245 -2246 0 +-2245 -2247 0 +-2245 -2248 0 +-2245 -2249 0 +-2245 -2250 0 +-2246 -2247 0 +-2246 -2248 0 +-2246 -2249 0 +-2246 -2250 0 +-2247 -2248 0 +-2247 -2249 0 +-2247 -2250 0 +-2248 -2249 0 +-2248 -2250 0 +-2249 -2250 0 +2245 2246 2247 2248 2249 2250 0 +-2251 -2252 0 +-2251 -2253 0 +-2251 -2254 0 +-2251 -2255 0 +-2251 -2256 0 +-2252 -2253 0 +-2252 -2254 0 +-2252 -2255 0 +-2252 -2256 0 +-2253 -2254 0 +-2253 -2255 0 +-2253 -2256 0 +-2254 -2255 0 +-2254 -2256 0 +-2255 -2256 0 +2251 2252 2253 2254 2255 2256 0 +-2257 -2258 0 +-2257 -2259 0 +-2257 -2260 0 +-2257 -2261 0 +-2257 -2262 0 +-2258 -2259 0 +-2258 -2260 0 +-2258 -2261 0 +-2258 -2262 0 +-2259 -2260 0 +-2259 -2261 0 +-2259 -2262 0 +-2260 -2261 0 +-2260 -2262 0 +-2261 -2262 0 +2257 2258 2259 2260 2261 2262 0 +-2263 -2264 0 +-2263 -2265 0 +-2263 -2266 0 +-2263 -2267 0 +-2263 -2268 0 +-2264 -2265 0 +-2264 -2266 0 +-2264 -2267 0 +-2264 -2268 0 +-2265 -2266 0 +-2265 -2267 0 +-2265 -2268 0 +-2266 -2267 0 +-2266 -2268 0 +-2267 -2268 0 +2263 2264 2265 2266 2267 2268 0 +-2269 -2270 0 +-2269 -2271 0 +-2269 -2272 0 +-2269 -2273 0 +-2269 -2274 0 +-2270 -2271 0 +-2270 -2272 0 +-2270 -2273 0 +-2270 -2274 0 +-2271 -2272 0 +-2271 -2273 0 +-2271 -2274 0 +-2272 -2273 0 +-2272 -2274 0 +-2273 -2274 0 +2269 2270 2271 2272 2273 2274 0 +-2275 -2276 0 +-2275 -2277 0 +-2275 -2278 0 +-2275 -2279 0 +-2275 -2280 0 +-2276 -2277 0 +-2276 -2278 0 +-2276 -2279 0 +-2276 -2280 0 +-2277 -2278 0 +-2277 -2279 0 +-2277 -2280 0 +-2278 -2279 0 +-2278 -2280 0 +-2279 -2280 0 +2275 2276 2277 2278 2279 2280 0 +-2281 -2282 0 +-2281 -2283 0 +-2281 -2284 0 +-2281 -2285 0 +-2281 -2286 0 +-2282 -2283 0 +-2282 -2284 0 +-2282 -2285 0 +-2282 -2286 0 +-2283 -2284 0 +-2283 -2285 0 +-2283 -2286 0 +-2284 -2285 0 +-2284 -2286 0 +-2285 -2286 0 +2281 2282 2283 2284 2285 2286 0 +-2287 -2288 0 +-2287 -2289 0 +-2287 -2290 0 +-2287 -2291 0 +-2287 -2292 0 +-2288 -2289 0 +-2288 -2290 0 +-2288 -2291 0 +-2288 -2292 0 +-2289 -2290 0 +-2289 -2291 0 +-2289 -2292 0 +-2290 -2291 0 +-2290 -2292 0 +-2291 -2292 0 +2287 2288 2289 2290 2291 2292 0 +-2293 -2294 0 +-2293 -2295 0 +-2293 -2296 0 +-2293 -2297 0 +-2293 -2298 0 +-2294 -2295 0 +-2294 -2296 0 +-2294 -2297 0 +-2294 -2298 0 +-2295 -2296 0 +-2295 -2297 0 +-2295 -2298 0 +-2296 -2297 0 +-2296 -2298 0 +-2297 -2298 0 +2293 2294 2295 2296 2297 2298 0 +-2299 -2300 0 +-2299 -2301 0 +-2299 -2302 0 +-2299 -2303 0 +-2299 -2304 0 +-2300 -2301 0 +-2300 -2302 0 +-2300 -2303 0 +-2300 -2304 0 +-2301 -2302 0 +-2301 -2303 0 +-2301 -2304 0 +-2302 -2303 0 +-2302 -2304 0 +-2303 -2304 0 +2299 2300 2301 2302 2303 2304 0 +-2305 -2306 0 +-2305 -2307 0 +-2305 -2308 0 +-2305 -2309 0 +-2305 -2310 0 +-2306 -2307 0 +-2306 -2308 0 +-2306 -2309 0 +-2306 -2310 0 +-2307 -2308 0 +-2307 -2309 0 +-2307 -2310 0 +-2308 -2309 0 +-2308 -2310 0 +-2309 -2310 0 +2305 2306 2307 2308 2309 2310 0 +-2311 -2312 0 +-2311 -2313 0 +-2311 -2314 0 +-2311 -2315 0 +-2311 -2316 0 +-2312 -2313 0 +-2312 -2314 0 +-2312 -2315 0 +-2312 -2316 0 +-2313 -2314 0 +-2313 -2315 0 +-2313 -2316 0 +-2314 -2315 0 +-2314 -2316 0 +-2315 -2316 0 +2311 2312 2313 2314 2315 2316 0 +-2317 -2318 0 +-2317 -2319 0 +-2317 -2320 0 +-2317 -2321 0 +-2317 -2322 0 +-2318 -2319 0 +-2318 -2320 0 +-2318 -2321 0 +-2318 -2322 0 +-2319 -2320 0 +-2319 -2321 0 +-2319 -2322 0 +-2320 -2321 0 +-2320 -2322 0 +-2321 -2322 0 +2317 2318 2319 2320 2321 2322 0 +-2323 -2324 0 +-2323 -2325 0 +-2323 -2326 0 +-2323 -2327 0 +-2323 -2328 0 +-2324 -2325 0 +-2324 -2326 0 +-2324 -2327 0 +-2324 -2328 0 +-2325 -2326 0 +-2325 -2327 0 +-2325 -2328 0 +-2326 -2327 0 +-2326 -2328 0 +-2327 -2328 0 +2323 2324 2325 2326 2327 2328 0 +-2329 -2330 0 +-2329 -2331 0 +-2329 -2332 0 +-2329 -2333 0 +-2329 -2334 0 +-2330 -2331 0 +-2330 -2332 0 +-2330 -2333 0 +-2330 -2334 0 +-2331 -2332 0 +-2331 -2333 0 +-2331 -2334 0 +-2332 -2333 0 +-2332 -2334 0 +-2333 -2334 0 +2329 2330 2331 2332 2333 2334 0 +-2335 -2336 0 +-2335 -2337 0 +-2335 -2338 0 +-2335 -2339 0 +-2335 -2340 0 +-2336 -2337 0 +-2336 -2338 0 +-2336 -2339 0 +-2336 -2340 0 +-2337 -2338 0 +-2337 -2339 0 +-2337 -2340 0 +-2338 -2339 0 +-2338 -2340 0 +-2339 -2340 0 +2335 2336 2337 2338 2339 2340 0 +-2341 -2342 0 +-2341 -2343 0 +-2341 -2344 0 +-2341 -2345 0 +-2341 -2346 0 +-2342 -2343 0 +-2342 -2344 0 +-2342 -2345 0 +-2342 -2346 0 +-2343 -2344 0 +-2343 -2345 0 +-2343 -2346 0 +-2344 -2345 0 +-2344 -2346 0 +-2345 -2346 0 +2341 2342 2343 2344 2345 2346 0 +-2347 -2348 0 +-2347 -2349 0 +-2347 -2350 0 +-2347 -2351 0 +-2347 -2352 0 +-2348 -2349 0 +-2348 -2350 0 +-2348 -2351 0 +-2348 -2352 0 +-2349 -2350 0 +-2349 -2351 0 +-2349 -2352 0 +-2350 -2351 0 +-2350 -2352 0 +-2351 -2352 0 +2347 2348 2349 2350 2351 2352 0 +-2353 -2354 0 +-2353 -2355 0 +-2353 -2356 0 +-2353 -2357 0 +-2353 -2358 0 +-2354 -2355 0 +-2354 -2356 0 +-2354 -2357 0 +-2354 -2358 0 +-2355 -2356 0 +-2355 -2357 0 +-2355 -2358 0 +-2356 -2357 0 +-2356 -2358 0 +-2357 -2358 0 +2353 2354 2355 2356 2357 2358 0 +-2359 -2360 0 +-2359 -2361 0 +-2359 -2362 0 +-2359 -2363 0 +-2359 -2364 0 +-2360 -2361 0 +-2360 -2362 0 +-2360 -2363 0 +-2360 -2364 0 +-2361 -2362 0 +-2361 -2363 0 +-2361 -2364 0 +-2362 -2363 0 +-2362 -2364 0 +-2363 -2364 0 +2359 2360 2361 2362 2363 2364 0 +-2365 -2366 0 +-2365 -2367 0 +-2365 -2368 0 +-2365 -2369 0 +-2365 -2370 0 +-2366 -2367 0 +-2366 -2368 0 +-2366 -2369 0 +-2366 -2370 0 +-2367 -2368 0 +-2367 -2369 0 +-2367 -2370 0 +-2368 -2369 0 +-2368 -2370 0 +-2369 -2370 0 +2365 2366 2367 2368 2369 2370 0 +-2371 -2372 0 +-2371 -2373 0 +-2371 -2374 0 +-2371 -2375 0 +-2371 -2376 0 +-2372 -2373 0 +-2372 -2374 0 +-2372 -2375 0 +-2372 -2376 0 +-2373 -2374 0 +-2373 -2375 0 +-2373 -2376 0 +-2374 -2375 0 +-2374 -2376 0 +-2375 -2376 0 +2371 2372 2373 2374 2375 2376 0 +-2377 -2378 0 +-2377 -2379 0 +-2377 -2380 0 +-2377 -2381 0 +-2377 -2382 0 +-2378 -2379 0 +-2378 -2380 0 +-2378 -2381 0 +-2378 -2382 0 +-2379 -2380 0 +-2379 -2381 0 +-2379 -2382 0 +-2380 -2381 0 +-2380 -2382 0 +-2381 -2382 0 +2377 2378 2379 2380 2381 2382 0 +-2383 -2384 0 +-2383 -2385 0 +-2383 -2386 0 +-2383 -2387 0 +-2383 -2388 0 +-2384 -2385 0 +-2384 -2386 0 +-2384 -2387 0 +-2384 -2388 0 +-2385 -2386 0 +-2385 -2387 0 +-2385 -2388 0 +-2386 -2387 0 +-2386 -2388 0 +-2387 -2388 0 +2383 2384 2385 2386 2387 2388 0 +-2389 -2390 0 +-2389 -2391 0 +-2389 -2392 0 +-2389 -2393 0 +-2389 -2394 0 +-2390 -2391 0 +-2390 -2392 0 +-2390 -2393 0 +-2390 -2394 0 +-2391 -2392 0 +-2391 -2393 0 +-2391 -2394 0 +-2392 -2393 0 +-2392 -2394 0 +-2393 -2394 0 +2389 2390 2391 2392 2393 2394 0 +-2395 -2396 0 +-2395 -2397 0 +-2395 -2398 0 +-2395 -2399 0 +-2395 -2400 0 +-2396 -2397 0 +-2396 -2398 0 +-2396 -2399 0 +-2396 -2400 0 +-2397 -2398 0 +-2397 -2399 0 +-2397 -2400 0 +-2398 -2399 0 +-2398 -2400 0 +-2399 -2400 0 +2395 2396 2397 2398 2399 2400 0 +-2401 -2402 0 +-2401 -2403 0 +-2401 -2404 0 +-2401 -2405 0 +-2401 -2406 0 +-2402 -2403 0 +-2402 -2404 0 +-2402 -2405 0 +-2402 -2406 0 +-2403 -2404 0 +-2403 -2405 0 +-2403 -2406 0 +-2404 -2405 0 +-2404 -2406 0 +-2405 -2406 0 +2401 2402 2403 2404 2405 2406 0 +-2407 -2408 0 +-2407 -2409 0 +-2407 -2410 0 +-2407 -2411 0 +-2407 -2412 0 +-2408 -2409 0 +-2408 -2410 0 +-2408 -2411 0 +-2408 -2412 0 +-2409 -2410 0 +-2409 -2411 0 +-2409 -2412 0 +-2410 -2411 0 +-2410 -2412 0 +-2411 -2412 0 +2407 2408 2409 2410 2411 2412 0 +-2413 -2414 0 +-2413 -2415 0 +-2413 -2416 0 +-2413 -2417 0 +-2413 -2418 0 +-2414 -2415 0 +-2414 -2416 0 +-2414 -2417 0 +-2414 -2418 0 +-2415 -2416 0 +-2415 -2417 0 +-2415 -2418 0 +-2416 -2417 0 +-2416 -2418 0 +-2417 -2418 0 +2413 2414 2415 2416 2417 2418 0 +-2419 -2420 0 +-2419 -2421 0 +-2419 -2422 0 +-2419 -2423 0 +-2419 -2424 0 +-2420 -2421 0 +-2420 -2422 0 +-2420 -2423 0 +-2420 -2424 0 +-2421 -2422 0 +-2421 -2423 0 +-2421 -2424 0 +-2422 -2423 0 +-2422 -2424 0 +-2423 -2424 0 +2419 2420 2421 2422 2423 2424 0 +-2425 -2426 0 +-2425 -2427 0 +-2425 -2428 0 +-2425 -2429 0 +-2425 -2430 0 +-2426 -2427 0 +-2426 -2428 0 +-2426 -2429 0 +-2426 -2430 0 +-2427 -2428 0 +-2427 -2429 0 +-2427 -2430 0 +-2428 -2429 0 +-2428 -2430 0 +-2429 -2430 0 +2425 2426 2427 2428 2429 2430 0 +-2431 -2432 0 +-2431 -2433 0 +-2431 -2434 0 +-2431 -2435 0 +-2431 -2436 0 +-2432 -2433 0 +-2432 -2434 0 +-2432 -2435 0 +-2432 -2436 0 +-2433 -2434 0 +-2433 -2435 0 +-2433 -2436 0 +-2434 -2435 0 +-2434 -2436 0 +-2435 -2436 0 +2431 2432 2433 2434 2435 2436 0 +-2437 -2438 0 +-2437 -2439 0 +-2437 -2440 0 +-2437 -2441 0 +-2437 -2442 0 +-2438 -2439 0 +-2438 -2440 0 +-2438 -2441 0 +-2438 -2442 0 +-2439 -2440 0 +-2439 -2441 0 +-2439 -2442 0 +-2440 -2441 0 +-2440 -2442 0 +-2441 -2442 0 +2437 2438 2439 2440 2441 2442 0 +-2443 -2444 0 +-2443 -2445 0 +-2443 -2446 0 +-2443 -2447 0 +-2443 -2448 0 +-2444 -2445 0 +-2444 -2446 0 +-2444 -2447 0 +-2444 -2448 0 +-2445 -2446 0 +-2445 -2447 0 +-2445 -2448 0 +-2446 -2447 0 +-2446 -2448 0 +-2447 -2448 0 +2443 2444 2445 2446 2447 2448 0 +-2449 -2450 0 +-2449 -2451 0 +-2449 -2452 0 +-2449 -2453 0 +-2449 -2454 0 +-2450 -2451 0 +-2450 -2452 0 +-2450 -2453 0 +-2450 -2454 0 +-2451 -2452 0 +-2451 -2453 0 +-2451 -2454 0 +-2452 -2453 0 +-2452 -2454 0 +-2453 -2454 0 +2449 2450 2451 2452 2453 2454 0 +-2455 -2456 0 +-2455 -2457 0 +-2455 -2458 0 +-2455 -2459 0 +-2455 -2460 0 +-2456 -2457 0 +-2456 -2458 0 +-2456 -2459 0 +-2456 -2460 0 +-2457 -2458 0 +-2457 -2459 0 +-2457 -2460 0 +-2458 -2459 0 +-2458 -2460 0 +-2459 -2460 0 +2455 2456 2457 2458 2459 2460 0 +-2461 -2462 0 +-2461 -2463 0 +-2461 -2464 0 +-2461 -2465 0 +-2461 -2466 0 +-2462 -2463 0 +-2462 -2464 0 +-2462 -2465 0 +-2462 -2466 0 +-2463 -2464 0 +-2463 -2465 0 +-2463 -2466 0 +-2464 -2465 0 +-2464 -2466 0 +-2465 -2466 0 +2461 2462 2463 2464 2465 2466 0 +-2467 -2468 0 +-2467 -2469 0 +-2467 -2470 0 +-2467 -2471 0 +-2467 -2472 0 +-2468 -2469 0 +-2468 -2470 0 +-2468 -2471 0 +-2468 -2472 0 +-2469 -2470 0 +-2469 -2471 0 +-2469 -2472 0 +-2470 -2471 0 +-2470 -2472 0 +-2471 -2472 0 +2467 2468 2469 2470 2471 2472 0 +-2473 -2474 0 +-2473 -2475 0 +-2473 -2476 0 +-2473 -2477 0 +-2473 -2478 0 +-2474 -2475 0 +-2474 -2476 0 +-2474 -2477 0 +-2474 -2478 0 +-2475 -2476 0 +-2475 -2477 0 +-2475 -2478 0 +-2476 -2477 0 +-2476 -2478 0 +-2477 -2478 0 +2473 2474 2475 2476 2477 2478 0 +-2479 -2480 0 +-2479 -2481 0 +-2479 -2482 0 +-2479 -2483 0 +-2479 -2484 0 +-2480 -2481 0 +-2480 -2482 0 +-2480 -2483 0 +-2480 -2484 0 +-2481 -2482 0 +-2481 -2483 0 +-2481 -2484 0 +-2482 -2483 0 +-2482 -2484 0 +-2483 -2484 0 +2479 2480 2481 2482 2483 2484 0 +-2485 -2486 0 +-2485 -2487 0 +-2485 -2488 0 +-2485 -2489 0 +-2485 -2490 0 +-2486 -2487 0 +-2486 -2488 0 +-2486 -2489 0 +-2486 -2490 0 +-2487 -2488 0 +-2487 -2489 0 +-2487 -2490 0 +-2488 -2489 0 +-2488 -2490 0 +-2489 -2490 0 +2485 2486 2487 2488 2489 2490 0 +-2491 -2492 0 +-2491 -2493 0 +-2491 -2494 0 +-2491 -2495 0 +-2491 -2496 0 +-2492 -2493 0 +-2492 -2494 0 +-2492 -2495 0 +-2492 -2496 0 +-2493 -2494 0 +-2493 -2495 0 +-2493 -2496 0 +-2494 -2495 0 +-2494 -2496 0 +-2495 -2496 0 +2491 2492 2493 2494 2495 2496 0 +-2497 -2498 0 +-2497 -2499 0 +-2497 -2500 0 +-2497 -2501 0 +-2497 -2502 0 +-2498 -2499 0 +-2498 -2500 0 +-2498 -2501 0 +-2498 -2502 0 +-2499 -2500 0 +-2499 -2501 0 +-2499 -2502 0 +-2500 -2501 0 +-2500 -2502 0 +-2501 -2502 0 +2497 2498 2499 2500 2501 2502 0 +-2503 -2504 0 +-2503 -2505 0 +-2503 -2506 0 +-2503 -2507 0 +-2503 -2508 0 +-2504 -2505 0 +-2504 -2506 0 +-2504 -2507 0 +-2504 -2508 0 +-2505 -2506 0 +-2505 -2507 0 +-2505 -2508 0 +-2506 -2507 0 +-2506 -2508 0 +-2507 -2508 0 +2503 2504 2505 2506 2507 2508 0 +-2509 -2510 0 +-2509 -2511 0 +-2509 -2512 0 +-2509 -2513 0 +-2509 -2514 0 +-2510 -2511 0 +-2510 -2512 0 +-2510 -2513 0 +-2510 -2514 0 +-2511 -2512 0 +-2511 -2513 0 +-2511 -2514 0 +-2512 -2513 0 +-2512 -2514 0 +-2513 -2514 0 +2509 2510 2511 2512 2513 2514 0 +-2515 -2516 0 +-2515 -2517 0 +-2515 -2518 0 +-2515 -2519 0 +-2515 -2520 0 +-2516 -2517 0 +-2516 -2518 0 +-2516 -2519 0 +-2516 -2520 0 +-2517 -2518 0 +-2517 -2519 0 +-2517 -2520 0 +-2518 -2519 0 +-2518 -2520 0 +-2519 -2520 0 +2515 2516 2517 2518 2519 2520 0 +-2521 -2522 0 +-2521 -2523 0 +-2521 -2524 0 +-2521 -2525 0 +-2521 -2526 0 +-2522 -2523 0 +-2522 -2524 0 +-2522 -2525 0 +-2522 -2526 0 +-2523 -2524 0 +-2523 -2525 0 +-2523 -2526 0 +-2524 -2525 0 +-2524 -2526 0 +-2525 -2526 0 +2521 2522 2523 2524 2525 2526 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-973 -1003 0 +-974 -1004 0 +-975 -1005 0 +-976 -1006 0 +-977 -1007 0 +-978 -1008 0 +-1039 -1051 0 +-1040 -1052 0 +-1041 -1053 0 +-1042 -1054 0 +-1043 -1055 0 +-1044 -1056 0 +-1051 -1057 0 +-1052 -1058 0 +-1053 -1059 0 +-1054 -1060 0 +-1055 -1061 0 +-1056 -1062 0 +-1075 -1087 0 +-1076 -1088 0 +-1077 -1089 0 +-1078 -1090 0 +-1079 -1091 0 +-1080 -1092 0 +-1135 -1153 0 +-1136 -1154 0 +-1137 -1155 0 +-1138 -1156 0 +-1139 -1157 0 +-1140 -1158 0 +-1249 -1279 0 +-1250 -1280 0 +-1251 -1281 0 +-1252 -1282 0 +-1253 -1283 0 +-1254 -1284 0 +-1285 -1315 0 +-1286 -1316 0 +-1287 -1317 0 +-1288 -1318 0 +-1289 -1319 0 +-1290 -1320 0 +-1327 -1357 0 +-1328 -1358 0 +-1329 -1359 0 +-1330 -1360 0 +-1331 -1361 0 +-1332 -1362 0 +-1333 -1363 0 +-1334 -1364 0 +-1335 -1365 0 +-1336 -1366 0 +-1337 -1367 0 +-1338 -1368 0 +-1381 -1411 0 +-1382 -1412 0 +-1383 -1413 0 +-1384 -1414 0 +-1385 -1415 0 +-1386 -1416 0 +-1507 -1537 0 +-1508 -1538 0 +-1509 -1539 0 +-1510 -1540 0 +-1511 -1541 0 +-1512 -1542 0 +-1525 -1555 0 +-1526 -1556 0 +-1527 -1557 0 +-1528 -1558 0 +-1529 -1559 0 +-1530 -1560 0 +-1549 -1567 0 +-1550 -1568 0 +-1551 -1569 0 +-1552 -1570 0 +-1553 -1571 0 +-1554 -1572 0 +-1609 -1615 0 +-1610 -1616 0 +-1611 -1617 0 +-1612 -1618 0 +-1613 -1619 0 +-1614 -1620 0 +-1621 -1651 0 +-1622 -1652 0 +-1623 -1653 0 +-1624 -1654 0 +-1625 -1655 0 +-1626 -1656 0 +-1627 -1639 0 +-1628 -1640 0 +-1629 -1641 0 +-1630 -1642 0 +-1631 -1643 0 +-1632 -1644 0 +-1639 -1657 0 +-1640 -1658 0 +-1641 -1659 0 +-1642 -1660 0 +-1643 -1661 0 +-1644 -1662 0 +-1645 -1651 0 +-1646 -1652 0 +-1647 -1653 0 +-1648 -1654 0 +-1649 -1655 0 +-1650 -1656 0 +-1651 -1675 0 +-1652 -1676 0 +-1653 -1677 0 +-1654 -1678 0 +-1655 -1679 0 +-1656 -1680 0 +-1669 -1687 0 +-1670 -1688 0 +-1671 -1689 0 +-1672 -1690 0 +-1673 -1691 0 +-1674 -1692 0 +-1693 -1699 0 +-1694 -1700 0 +-1695 -1701 0 +-1696 -1702 0 +-1697 -1703 0 +-1698 -1704 0 +-1759 -1783 0 +-1760 -1784 0 +-1761 -1785 0 +-1762 -1786 0 +-1763 -1787 0 +-1764 -1788 0 +-1879 -1885 0 +-1880 -1886 0 +-1881 -1887 0 +-1882 -1888 0 +-1883 -1889 0 +-1884 -1890 0 +-1891 -1909 0 +-1892 -1910 0 +-1893 -1911 0 +-1894 -1912 0 +-1895 -1913 0 +-1896 -1914 0 +-1945 -1951 0 +-1946 -1952 0 +-1947 -1953 0 +-1948 -1954 0 +-1949 -1955 0 +-1950 -1956 0 +-2053 -2059 0 +-2054 -2060 0 +-2055 -2061 0 +-2056 -2062 0 +-2057 -2063 0 +-2058 -2064 0 +-2143 -2149 0 +-2144 -2150 0 +-2145 -2151 0 +-2146 -2152 0 +-2147 -2153 0 +-2148 -2154 0 +-2215 -2227 0 +-2216 -2228 0 +-2217 -2229 0 +-2218 -2230 0 +-2219 -2231 0 +-2220 -2232 0 +-2221 -2245 0 +-2222 -2246 0 +-2223 -2247 0 +-2224 -2248 0 +-2225 -2249 0 +-2226 -2250 0 +-2233 -2251 0 +-2234 -2252 0 +-2235 -2253 0 +-2236 -2254 0 +-2237 -2255 0 +-2238 -2256 0 +-2269 -2299 0 +-2270 -2300 0 +-2271 -2301 0 +-2272 -2302 0 +-2273 -2303 0 +-2274 -2304 0 +-2293 -2305 0 +-2294 -2306 0 +-2295 -2307 0 +-2296 -2308 0 +-2297 -2309 0 +-2298 -2310 0 +-2305 -2329 0 +-2306 -2330 0 +-2307 -2331 0 +-2308 -2332 0 +-2309 -2333 0 +-2310 -2334 0 +-2341 -2359 0 +-2342 -2360 0 +-2343 -2361 0 +-2344 -2362 0 +-2345 -2363 0 +-2346 -2364 0 +-2473 -2479 0 +-2474 -2480 0 +-2475 -2481 0 +-2476 -2482 0 +-2477 -2483 0 +-2478 -2484 0 +-2485 -2497 0 +-2486 -2498 0 +-2487 -2499 0 +-2488 -2500 0 +-2489 -2501 0 +-2490 -2502 0 +-25 -2521 0 +-26 -2522 0 +-27 -2523 0 +-28 -2524 0 +-29 -2525 0 +-30 -2526 0 +-19 -2521 0 +-20 -2522 0 +-21 -2523 0 +-22 -2524 0 +-23 -2525 0 +-24 -2526 0 +-13 -2521 0 +-14 -2522 0 +-15 -2523 0 +-16 -2524 0 +-17 -2525 0 +-18 -2526 0 +-7 -2521 0 +-8 -2522 0 +-9 -2523 0 +-10 -2524 0 +-11 -2525 0 +-12 -2526 0 +-1 -2521 0 +-2 -2522 0 +-3 -2523 0 +-4 -2524 0 +-5 -2525 0 +-6 -2526 0 +-19 -2515 0 +-20 -2516 0 +-21 -2517 0 +-22 -2518 0 +-23 -2519 0 +-24 -2520 0 +-13 -2515 0 +-14 -2516 0 +-15 -2517 0 +-16 -2518 0 +-17 -2519 0 +-18 -2520 0 +-7 -2515 0 +-8 -2516 0 +-9 -2517 0 +-10 -2518 0 +-11 -2519 0 +-12 -2520 0 +-1 -2515 0 +-2 -2516 0 +-3 -2517 0 +-4 -2518 0 +-5 -2519 0 +-6 -2520 0 +-2515 -2521 0 +-2516 -2522 0 +-2517 -2523 0 +-2518 -2524 0 +-2519 -2525 0 +-2520 -2526 0 +-13 -2509 0 +-14 -2510 0 +-15 -2511 0 +-16 -2512 0 +-17 -2513 0 +-18 -2514 0 +-7 -2509 0 +-8 -2510 0 +-9 -2511 0 +-10 -2512 0 +-11 -2513 0 +-12 -2514 0 +-1 -2509 0 +-2 -2510 0 +-3 -2511 0 +-4 -2512 0 +-5 -2513 0 +-6 -2514 0 +-2509 -2521 0 +-2510 -2522 0 +-2511 -2523 0 +-2512 -2524 0 +-2513 -2525 0 +-2514 -2526 0 +-2509 -2515 0 +-2510 -2516 0 +-2511 -2517 0 +-2512 -2518 0 +-2513 -2519 0 +-2514 -2520 0 +-7 -2503 0 +-8 -2504 0 +-9 -2505 0 +-10 -2506 0 +-11 -2507 0 +-12 -2508 0 +-1 -2503 0 +-2 -2504 0 +-3 -2505 0 +-4 -2506 0 +-5 -2507 0 +-6 -2508 0 +-2503 -2521 0 +-2504 -2522 0 +-2505 -2523 0 +-2506 -2524 0 +-2507 -2525 0 +-2508 -2526 0 +-2503 -2515 0 +-2504 -2516 0 +-2505 -2517 0 +-2506 -2518 0 +-2507 -2519 0 +-2508 -2520 0 +-2503 -2509 0 +-2504 -2510 0 +-2505 -2511 0 +-2506 -2512 0 +-2507 -2513 0 +-2508 -2514 0 +-1 -2497 0 +-2 -2498 0 +-3 -2499 0 +-4 -2500 0 +-5 -2501 0 +-6 -2502 0 +-2497 -2521 0 +-2498 -2522 0 +-2499 -2523 0 +-2500 -2524 0 +-2501 -2525 0 +-2502 -2526 0 +-2497 -2515 0 +-2498 -2516 0 +-2499 -2517 0 +-2500 -2518 0 +-2501 -2519 0 +-2502 -2520 0 +-2497 -2509 0 +-2498 -2510 0 +-2499 -2511 0 +-2500 -2512 0 +-2501 -2513 0 +-2502 -2514 0 +-2497 -2503 0 +-2498 -2504 0 +-2499 -2505 0 +-2500 -2506 0 +-2501 -2507 0 +-2502 -2508 0 +-2491 -2521 0 +-2492 -2522 0 +-2493 -2523 0 +-2494 -2524 0 +-2495 -2525 0 +-2496 -2526 0 +-2491 -2515 0 +-2492 -2516 0 +-2493 -2517 0 +-2494 -2518 0 +-2495 -2519 0 +-2496 -2520 0 +-2491 -2509 0 +-2492 -2510 0 +-2493 -2511 0 +-2494 -2512 0 +-2495 -2513 0 +-2496 -2514 0 +-2491 -2503 0 +-2492 -2504 0 +-2493 -2505 0 +-2494 -2506 0 +-2495 -2507 0 +-2496 -2508 0 +-2491 -2497 0 +-2492 -2498 0 +-2493 -2499 0 +-2494 -2500 0 +-2495 -2501 0 +-2496 -2502 0 +-2485 -2515 0 +-2486 -2516 0 +-2487 -2517 0 +-2488 -2518 0 +-2489 -2519 0 +-2490 -2520 0 +-2485 -2509 0 +-2486 -2510 0 +-2487 -2511 0 +-2488 -2512 0 +-2489 -2513 0 +-2490 -2514 0 +-2485 -2503 0 +-2486 -2504 0 +-2487 -2505 0 +-2488 -2506 0 +-2489 -2507 0 +-2490 -2508 0 +-2485 -2491 0 +-2486 -2492 0 +-2487 -2493 0 +-2488 -2494 0 +-2489 -2495 0 +-2490 -2496 0 +-2479 -2509 0 +-2480 -2510 0 +-2481 -2511 0 +-2482 -2512 0 +-2483 -2513 0 +-2484 -2514 0 +-2479 -2503 0 +-2480 -2504 0 +-2481 -2505 0 +-2482 -2506 0 +-2483 -2507 0 +-2484 -2508 0 +-2479 -2497 0 +-2480 -2498 0 +-2481 -2499 0 +-2482 -2500 0 +-2483 -2501 0 +-2484 -2502 0 +-2479 -2491 0 +-2480 -2492 0 +-2481 -2493 0 +-2482 -2494 0 +-2483 -2495 0 +-2484 -2496 0 +-2479 -2485 0 +-2480 -2486 0 +-2481 -2487 0 +-2482 -2488 0 +-2483 -2489 0 +-2484 -2490 0 +-2473 -2503 0 +-2474 -2504 0 +-2475 -2505 0 +-2476 -2506 0 +-2477 -2507 0 +-2478 -2508 0 +-2473 -2497 0 +-2474 -2498 0 +-2475 -2499 0 +-2476 -2500 0 +-2477 -2501 0 +-2478 -2502 0 +-2473 -2491 0 +-2474 -2492 0 +-2475 -2493 0 +-2476 -2494 0 +-2477 -2495 0 +-2478 -2496 0 +-2473 -2485 0 +-2474 -2486 0 +-2475 -2487 0 +-2476 -2488 0 +-2477 -2489 0 +-2478 -2490 0 +-2467 -2497 0 +-2468 -2498 0 +-2469 -2499 0 +-2470 -2500 0 +-2471 -2501 0 +-2472 -2502 0 +-2467 -2491 0 +-2468 -2492 0 +-2469 -2493 0 +-2470 -2494 0 +-2471 -2495 0 +-2472 -2496 0 +-2467 -2485 0 +-2468 -2486 0 +-2469 -2487 0 +-2470 -2488 0 +-2471 -2489 0 +-2472 -2490 0 +-2467 -2479 0 +-2468 -2480 0 +-2469 -2481 0 +-2470 -2482 0 +-2471 -2483 0 +-2472 -2484 0 +-2467 -2473 0 +-2468 -2474 0 +-2469 -2475 0 +-2470 -2476 0 +-2471 -2477 0 +-2472 -2478 0 +-2461 -2491 0 +-2462 -2492 0 +-2463 -2493 0 +-2464 -2494 0 +-2465 -2495 0 +-2466 -2496 0 +-2461 -2485 0 +-2462 -2486 0 +-2463 -2487 0 +-2464 -2488 0 +-2465 -2489 0 +-2466 -2490 0 +-2461 -2479 0 +-2462 -2480 0 +-2463 -2481 0 +-2464 -2482 0 +-2465 -2483 0 +-2466 -2484 0 +-2461 -2473 0 +-2462 -2474 0 +-2463 -2475 0 +-2464 -2476 0 +-2465 -2477 0 +-2466 -2478 0 +-2461 -2467 0 +-2462 -2468 0 +-2463 -2469 0 +-2464 -2470 0 +-2465 -2471 0 +-2466 -2472 0 +-2455 -2485 0 +-2456 -2486 0 +-2457 -2487 0 +-2458 -2488 0 +-2459 -2489 0 +-2460 -2490 0 +-2455 -2479 0 +-2456 -2480 0 +-2457 -2481 0 +-2458 -2482 0 +-2459 -2483 0 +-2460 -2484 0 +-2455 -2473 0 +-2456 -2474 0 +-2457 -2475 0 +-2458 -2476 0 +-2459 -2477 0 +-2460 -2478 0 +-2455 -2467 0 +-2456 -2468 0 +-2457 -2469 0 +-2458 -2470 0 +-2459 -2471 0 +-2460 -2472 0 +-2455 -2461 0 +-2456 -2462 0 +-2457 -2463 0 +-2458 -2464 0 +-2459 -2465 0 +-2460 -2466 0 +-2449 -2479 0 +-2450 -2480 0 +-2451 -2481 0 +-2452 -2482 0 +-2453 -2483 0 +-2454 -2484 0 +-2449 -2473 0 +-2450 -2474 0 +-2451 -2475 0 +-2452 -2476 0 +-2453 -2477 0 +-2454 -2478 0 +-2449 -2467 0 +-2450 -2468 0 +-2451 -2469 0 +-2452 -2470 0 +-2453 -2471 0 +-2454 -2472 0 +-2449 -2461 0 +-2450 -2462 0 +-2451 -2463 0 +-2452 -2464 0 +-2453 -2465 0 +-2454 -2466 0 +-2449 -2455 0 +-2450 -2456 0 +-2451 -2457 0 +-2452 -2458 0 +-2453 -2459 0 +-2454 -2460 0 +-2443 -2473 0 +-2444 -2474 0 +-2445 -2475 0 +-2446 -2476 0 +-2447 -2477 0 +-2448 -2478 0 +-2443 -2467 0 +-2444 -2468 0 +-2445 -2469 0 +-2446 -2470 0 +-2447 -2471 0 +-2448 -2472 0 +-2443 -2461 0 +-2444 -2462 0 +-2445 -2463 0 +-2446 -2464 0 +-2447 -2465 0 +-2448 -2466 0 +-2443 -2455 0 +-2444 -2456 0 +-2445 -2457 0 +-2446 -2458 0 +-2447 -2459 0 +-2448 -2460 0 +-2443 -2449 0 +-2444 -2450 0 +-2445 -2451 0 +-2446 -2452 0 +-2447 -2453 0 +-2448 -2454 0 +-2437 -2467 0 +-2438 -2468 0 +-2439 -2469 0 +-2440 -2470 0 +-2441 -2471 0 +-2442 -2472 0 +-2437 -2461 0 +-2438 -2462 0 +-2439 -2463 0 +-2440 -2464 0 +-2441 -2465 0 +-2442 -2466 0 +-2437 -2455 0 +-2438 -2456 0 +-2439 -2457 0 +-2440 -2458 0 +-2441 -2459 0 +-2442 -2460 0 +-2437 -2449 0 +-2438 -2450 0 +-2439 -2451 0 +-2440 -2452 0 +-2441 -2453 0 +-2442 -2454 0 +-2437 -2443 0 +-2438 -2444 0 +-2439 -2445 0 +-2440 -2446 0 +-2441 -2447 0 +-2442 -2448 0 +-2431 -2461 0 +-2432 -2462 0 +-2433 -2463 0 +-2434 -2464 0 +-2435 -2465 0 +-2436 -2466 0 +-2431 -2455 0 +-2432 -2456 0 +-2433 -2457 0 +-2434 -2458 0 +-2435 -2459 0 +-2436 -2460 0 +-2431 -2449 0 +-2432 -2450 0 +-2433 -2451 0 +-2434 -2452 0 +-2435 -2453 0 +-2436 -2454 0 +-2431 -2443 0 +-2432 -2444 0 +-2433 -2445 0 +-2434 -2446 0 +-2435 -2447 0 +-2436 -2448 0 +-2431 -2437 0 +-2432 -2438 0 +-2433 -2439 0 +-2434 -2440 0 +-2435 -2441 0 +-2436 -2442 0 +-2425 -2455 0 +-2426 -2456 0 +-2427 -2457 0 +-2428 -2458 0 +-2429 -2459 0 +-2430 -2460 0 +-2425 -2449 0 +-2426 -2450 0 +-2427 -2451 0 +-2428 -2452 0 +-2429 -2453 0 +-2430 -2454 0 +-2425 -2443 0 +-2426 -2444 0 +-2427 -2445 0 +-2428 -2446 0 +-2429 -2447 0 +-2430 -2448 0 +-2425 -2437 0 +-2426 -2438 0 +-2427 -2439 0 +-2428 -2440 0 +-2429 -2441 0 +-2430 -2442 0 +-2425 -2431 0 +-2426 -2432 0 +-2427 -2433 0 +-2428 -2434 0 +-2429 -2435 0 +-2430 -2436 0 +-2419 -2449 0 +-2420 -2450 0 +-2421 -2451 0 +-2422 -2452 0 +-2423 -2453 0 +-2424 -2454 0 +-2419 -2443 0 +-2420 -2444 0 +-2421 -2445 0 +-2422 -2446 0 +-2423 -2447 0 +-2424 -2448 0 +-2419 -2437 0 +-2420 -2438 0 +-2421 -2439 0 +-2422 -2440 0 +-2423 -2441 0 +-2424 -2442 0 +-2419 -2431 0 +-2420 -2432 0 +-2421 -2433 0 +-2422 -2434 0 +-2423 -2435 0 +-2424 -2436 0 +-2419 -2425 0 +-2420 -2426 0 +-2421 -2427 0 +-2422 -2428 0 +-2423 -2429 0 +-2424 -2430 0 +-2413 -2443 0 +-2414 -2444 0 +-2415 -2445 0 +-2416 -2446 0 +-2417 -2447 0 +-2418 -2448 0 +-2413 -2437 0 +-2414 -2438 0 +-2415 -2439 0 +-2416 -2440 0 +-2417 -2441 0 +-2418 -2442 0 +-2413 -2431 0 +-2414 -2432 0 +-2415 -2433 0 +-2416 -2434 0 +-2417 -2435 0 +-2418 -2436 0 +-2413 -2425 0 +-2414 -2426 0 +-2415 -2427 0 +-2416 -2428 0 +-2417 -2429 0 +-2418 -2430 0 +-2413 -2419 0 +-2414 -2420 0 +-2415 -2421 0 +-2416 -2422 0 +-2417 -2423 0 +-2418 -2424 0 +-2407 -2437 0 +-2408 -2438 0 +-2409 -2439 0 +-2410 -2440 0 +-2411 -2441 0 +-2412 -2442 0 +-2407 -2431 0 +-2408 -2432 0 +-2409 -2433 0 +-2410 -2434 0 +-2411 -2435 0 +-2412 -2436 0 +-2407 -2425 0 +-2408 -2426 0 +-2409 -2427 0 +-2410 -2428 0 +-2411 -2429 0 +-2412 -2430 0 +-2407 -2419 0 +-2408 -2420 0 +-2409 -2421 0 +-2410 -2422 0 +-2411 -2423 0 +-2412 -2424 0 +-2407 -2413 0 +-2408 -2414 0 +-2409 -2415 0 +-2410 -2416 0 +-2411 -2417 0 +-2412 -2418 0 +-2401 -2431 0 +-2402 -2432 0 +-2403 -2433 0 +-2404 -2434 0 +-2405 -2435 0 +-2406 -2436 0 +-2401 -2425 0 +-2402 -2426 0 +-2403 -2427 0 +-2404 -2428 0 +-2405 -2429 0 +-2406 -2430 0 +-2401 -2419 0 +-2402 -2420 0 +-2403 -2421 0 +-2404 -2422 0 +-2405 -2423 0 +-2406 -2424 0 +-2401 -2413 0 +-2402 -2414 0 +-2403 -2415 0 +-2404 -2416 0 +-2405 -2417 0 +-2406 -2418 0 +-2401 -2407 0 +-2402 -2408 0 +-2403 -2409 0 +-2404 -2410 0 +-2405 -2411 0 +-2406 -2412 0 +-2395 -2425 0 +-2396 -2426 0 +-2397 -2427 0 +-2398 -2428 0 +-2399 -2429 0 +-2400 -2430 0 +-2395 -2419 0 +-2396 -2420 0 +-2397 -2421 0 +-2398 -2422 0 +-2399 -2423 0 +-2400 -2424 0 +-2395 -2413 0 +-2396 -2414 0 +-2397 -2415 0 +-2398 -2416 0 +-2399 -2417 0 +-2400 -2418 0 +-2395 -2407 0 +-2396 -2408 0 +-2397 -2409 0 +-2398 -2410 0 +-2399 -2411 0 +-2400 -2412 0 +-2395 -2401 0 +-2396 -2402 0 +-2397 -2403 0 +-2398 -2404 0 +-2399 -2405 0 +-2400 -2406 0 +-2389 -2419 0 +-2390 -2420 0 +-2391 -2421 0 +-2392 -2422 0 +-2393 -2423 0 +-2394 -2424 0 +-2389 -2413 0 +-2390 -2414 0 +-2391 -2415 0 +-2392 -2416 0 +-2393 -2417 0 +-2394 -2418 0 +-2389 -2407 0 +-2390 -2408 0 +-2391 -2409 0 +-2392 -2410 0 +-2393 -2411 0 +-2394 -2412 0 +-2389 -2401 0 +-2390 -2402 0 +-2391 -2403 0 +-2392 -2404 0 +-2393 -2405 0 +-2394 -2406 0 +-2389 -2395 0 +-2390 -2396 0 +-2391 -2397 0 +-2392 -2398 0 +-2393 -2399 0 +-2394 -2400 0 +-2383 -2413 0 +-2384 -2414 0 +-2385 -2415 0 +-2386 -2416 0 +-2387 -2417 0 +-2388 -2418 0 +-2383 -2407 0 +-2384 -2408 0 +-2385 -2409 0 +-2386 -2410 0 +-2387 -2411 0 +-2388 -2412 0 +-2383 -2401 0 +-2384 -2402 0 +-2385 -2403 0 +-2386 -2404 0 +-2387 -2405 0 +-2388 -2406 0 +-2383 -2395 0 +-2384 -2396 0 +-2385 -2397 0 +-2386 -2398 0 +-2387 -2399 0 +-2388 -2400 0 +-2383 -2389 0 +-2384 -2390 0 +-2385 -2391 0 +-2386 -2392 0 +-2387 -2393 0 +-2388 -2394 0 +-2377 -2407 0 +-2378 -2408 0 +-2379 -2409 0 +-2380 -2410 0 +-2381 -2411 0 +-2382 -2412 0 +-2377 -2395 0 +-2378 -2396 0 +-2379 -2397 0 +-2380 -2398 0 +-2381 -2399 0 +-2382 -2400 0 +-2377 -2389 0 +-2378 -2390 0 +-2379 -2391 0 +-2380 -2392 0 +-2381 -2393 0 +-2382 -2394 0 +-2377 -2383 0 +-2378 -2384 0 +-2379 -2385 0 +-2380 -2386 0 +-2381 -2387 0 +-2382 -2388 0 +-2371 -2401 0 +-2372 -2402 0 +-2373 -2403 0 +-2374 -2404 0 +-2375 -2405 0 +-2376 -2406 0 +-2371 -2395 0 +-2372 -2396 0 +-2373 -2397 0 +-2374 -2398 0 +-2375 -2399 0 +-2376 -2400 0 +-2371 -2389 0 +-2372 -2390 0 +-2373 -2391 0 +-2374 -2392 0 +-2375 -2393 0 +-2376 -2394 0 +-2371 -2383 0 +-2372 -2384 0 +-2373 -2385 0 +-2374 -2386 0 +-2375 -2387 0 +-2376 -2388 0 +-2371 -2377 0 +-2372 -2378 0 +-2373 -2379 0 +-2374 -2380 0 +-2375 -2381 0 +-2376 -2382 0 +-2365 -2395 0 +-2366 -2396 0 +-2367 -2397 0 +-2368 -2398 0 +-2369 -2399 0 +-2370 -2400 0 +-2365 -2389 0 +-2366 -2390 0 +-2367 -2391 0 +-2368 -2392 0 +-2369 -2393 0 +-2370 -2394 0 +-2365 -2383 0 +-2366 -2384 0 +-2367 -2385 0 +-2368 -2386 0 +-2369 -2387 0 +-2370 -2388 0 +-2365 -2377 0 +-2366 -2378 0 +-2367 -2379 0 +-2368 -2380 0 +-2369 -2381 0 +-2370 -2382 0 +-2365 -2371 0 +-2366 -2372 0 +-2367 -2373 0 +-2368 -2374 0 +-2369 -2375 0 +-2370 -2376 0 +-2359 -2389 0 +-2360 -2390 0 +-2361 -2391 0 +-2362 -2392 0 +-2363 -2393 0 +-2364 -2394 0 +-2359 -2383 0 +-2360 -2384 0 +-2361 -2385 0 +-2362 -2386 0 +-2363 -2387 0 +-2364 -2388 0 +-2359 -2377 0 +-2360 -2378 0 +-2361 -2379 0 +-2362 -2380 0 +-2363 -2381 0 +-2364 -2382 0 +-2359 -2371 0 +-2360 -2372 0 +-2361 -2373 0 +-2362 -2374 0 +-2363 -2375 0 +-2364 -2376 0 +-2359 -2365 0 +-2360 -2366 0 +-2361 -2367 0 +-2362 -2368 0 +-2363 -2369 0 +-2364 -2370 0 +-2353 -2383 0 +-2354 -2384 0 +-2355 -2385 0 +-2356 -2386 0 +-2357 -2387 0 +-2358 -2388 0 +-2353 -2377 0 +-2354 -2378 0 +-2355 -2379 0 +-2356 -2380 0 +-2357 -2381 0 +-2358 -2382 0 +-2353 -2371 0 +-2354 -2372 0 +-2355 -2373 0 +-2356 -2374 0 +-2357 -2375 0 +-2358 -2376 0 +-2353 -2365 0 +-2354 -2366 0 +-2355 -2367 0 +-2356 -2368 0 +-2357 -2369 0 +-2358 -2370 0 +-2353 -2359 0 +-2354 -2360 0 +-2355 -2361 0 +-2356 -2362 0 +-2357 -2363 0 +-2358 -2364 0 +-2347 -2377 0 +-2348 -2378 0 +-2349 -2379 0 +-2350 -2380 0 +-2351 -2381 0 +-2352 -2382 0 +-2347 -2371 0 +-2348 -2372 0 +-2349 -2373 0 +-2350 -2374 0 +-2351 -2375 0 +-2352 -2376 0 +-2347 -2365 0 +-2348 -2366 0 +-2349 -2367 0 +-2350 -2368 0 +-2351 -2369 0 +-2352 -2370 0 +-2347 -2359 0 +-2348 -2360 0 +-2349 -2361 0 +-2350 -2362 0 +-2351 -2363 0 +-2352 -2364 0 +-2347 -2353 0 +-2348 -2354 0 +-2349 -2355 0 +-2350 -2356 0 +-2351 -2357 0 +-2352 -2358 0 +-2341 -2371 0 +-2342 -2372 0 +-2343 -2373 0 +-2344 -2374 0 +-2345 -2375 0 +-2346 -2376 0 +-2341 -2365 0 +-2342 -2366 0 +-2343 -2367 0 +-2344 -2368 0 +-2345 -2369 0 +-2346 -2370 0 +-2341 -2353 0 +-2342 -2354 0 +-2343 -2355 0 +-2344 -2356 0 +-2345 -2357 0 +-2346 -2358 0 +-2341 -2347 0 +-2342 -2348 0 +-2343 -2349 0 +-2344 -2350 0 +-2345 -2351 0 +-2346 -2352 0 +-2335 -2365 0 +-2336 -2366 0 +-2337 -2367 0 +-2338 -2368 0 +-2339 -2369 0 +-2340 -2370 0 +-2335 -2359 0 +-2336 -2360 0 +-2337 -2361 0 +-2338 -2362 0 +-2339 -2363 0 +-2340 -2364 0 +-2335 -2353 0 +-2336 -2354 0 +-2337 -2355 0 +-2338 -2356 0 +-2339 -2357 0 +-2340 -2358 0 +-2335 -2347 0 +-2336 -2348 0 +-2337 -2349 0 +-2338 -2350 0 +-2339 -2351 0 +-2340 -2352 0 +-2335 -2341 0 +-2336 -2342 0 +-2337 -2343 0 +-2338 -2344 0 +-2339 -2345 0 +-2340 -2346 0 +-2329 -2359 0 +-2330 -2360 0 +-2331 -2361 0 +-2332 -2362 0 +-2333 -2363 0 +-2334 -2364 0 +-2329 -2353 0 +-2330 -2354 0 +-2331 -2355 0 +-2332 -2356 0 +-2333 -2357 0 +-2334 -2358 0 +-2329 -2347 0 +-2330 -2348 0 +-2331 -2349 0 +-2332 -2350 0 +-2333 -2351 0 +-2334 -2352 0 +-2329 -2341 0 +-2330 -2342 0 +-2331 -2343 0 +-2332 -2344 0 +-2333 -2345 0 +-2334 -2346 0 +-2329 -2335 0 +-2330 -2336 0 +-2331 -2337 0 +-2332 -2338 0 +-2333 -2339 0 +-2334 -2340 0 +-2323 -2353 0 +-2324 -2354 0 +-2325 -2355 0 +-2326 -2356 0 +-2327 -2357 0 +-2328 -2358 0 +-2323 -2347 0 +-2324 -2348 0 +-2325 -2349 0 +-2326 -2350 0 +-2327 -2351 0 +-2328 -2352 0 +-2323 -2341 0 +-2324 -2342 0 +-2325 -2343 0 +-2326 -2344 0 +-2327 -2345 0 +-2328 -2346 0 +-2323 -2335 0 +-2324 -2336 0 +-2325 -2337 0 +-2326 -2338 0 +-2327 -2339 0 +-2328 -2340 0 +-2323 -2329 0 +-2324 -2330 0 +-2325 -2331 0 +-2326 -2332 0 +-2327 -2333 0 +-2328 -2334 0 +-2317 -2347 0 +-2318 -2348 0 +-2319 -2349 0 +-2320 -2350 0 +-2321 -2351 0 +-2322 -2352 0 +-2317 -2341 0 +-2318 -2342 0 +-2319 -2343 0 +-2320 -2344 0 +-2321 -2345 0 +-2322 -2346 0 +-2317 -2335 0 +-2318 -2336 0 +-2319 -2337 0 +-2320 -2338 0 +-2321 -2339 0 +-2322 -2340 0 +-2317 -2329 0 +-2318 -2330 0 +-2319 -2331 0 +-2320 -2332 0 +-2321 -2333 0 +-2322 -2334 0 +-2317 -2323 0 +-2318 -2324 0 +-2319 -2325 0 +-2320 -2326 0 +-2321 -2327 0 +-2322 -2328 0 +-2311 -2341 0 +-2312 -2342 0 +-2313 -2343 0 +-2314 -2344 0 +-2315 -2345 0 +-2316 -2346 0 +-2311 -2335 0 +-2312 -2336 0 +-2313 -2337 0 +-2314 -2338 0 +-2315 -2339 0 +-2316 -2340 0 +-2311 -2329 0 +-2312 -2330 0 +-2313 -2331 0 +-2314 -2332 0 +-2315 -2333 0 +-2316 -2334 0 +-2311 -2323 0 +-2312 -2324 0 +-2313 -2325 0 +-2314 -2326 0 +-2315 -2327 0 +-2316 -2328 0 +-2311 -2317 0 +-2312 -2318 0 +-2313 -2319 0 +-2314 -2320 0 +-2315 -2321 0 +-2316 -2322 0 +-2305 -2335 0 +-2306 -2336 0 +-2307 -2337 0 +-2308 -2338 0 +-2309 -2339 0 +-2310 -2340 0 +-2305 -2323 0 +-2306 -2324 0 +-2307 -2325 0 +-2308 -2326 0 +-2309 -2327 0 +-2310 -2328 0 +-2305 -2317 0 +-2306 -2318 0 +-2307 -2319 0 +-2308 -2320 0 +-2309 -2321 0 +-2310 -2322 0 +-2305 -2311 0 +-2306 -2312 0 +-2307 -2313 0 +-2308 -2314 0 +-2309 -2315 0 +-2310 -2316 0 +-2299 -2329 0 +-2300 -2330 0 +-2301 -2331 0 +-2302 -2332 0 +-2303 -2333 0 +-2304 -2334 0 +-2299 -2323 0 +-2300 -2324 0 +-2301 -2325 0 +-2302 -2326 0 +-2303 -2327 0 +-2304 -2328 0 +-2299 -2317 0 +-2300 -2318 0 +-2301 -2319 0 +-2302 -2320 0 +-2303 -2321 0 +-2304 -2322 0 +-2299 -2311 0 +-2300 -2312 0 +-2301 -2313 0 +-2302 -2314 0 +-2303 -2315 0 +-2304 -2316 0 +-2299 -2305 0 +-2300 -2306 0 +-2301 -2307 0 +-2302 -2308 0 +-2303 -2309 0 +-2304 -2310 0 +-2293 -2323 0 +-2294 -2324 0 +-2295 -2325 0 +-2296 -2326 0 +-2297 -2327 0 +-2298 -2328 0 +-2293 -2317 0 +-2294 -2318 0 +-2295 -2319 0 +-2296 -2320 0 +-2297 -2321 0 +-2298 -2322 0 +-2293 -2311 0 +-2294 -2312 0 +-2295 -2313 0 +-2296 -2314 0 +-2297 -2315 0 +-2298 -2316 0 +-2293 -2299 0 +-2294 -2300 0 +-2295 -2301 0 +-2296 -2302 0 +-2297 -2303 0 +-2298 -2304 0 +-2287 -2317 0 +-2288 -2318 0 +-2289 -2319 0 +-2290 -2320 0 +-2291 -2321 0 +-2292 -2322 0 +-2287 -2311 0 +-2288 -2312 0 +-2289 -2313 0 +-2290 -2314 0 +-2291 -2315 0 +-2292 -2316 0 +-2287 -2305 0 +-2288 -2306 0 +-2289 -2307 0 +-2290 -2308 0 +-2291 -2309 0 +-2292 -2310 0 +-2287 -2299 0 +-2288 -2300 0 +-2289 -2301 0 +-2290 -2302 0 +-2291 -2303 0 +-2292 -2304 0 +-2287 -2293 0 +-2288 -2294 0 +-2289 -2295 0 +-2290 -2296 0 +-2291 -2297 0 +-2292 -2298 0 +-2281 -2311 0 +-2282 -2312 0 +-2283 -2313 0 +-2284 -2314 0 +-2285 -2315 0 +-2286 -2316 0 +-2281 -2305 0 +-2282 -2306 0 +-2283 -2307 0 +-2284 -2308 0 +-2285 -2309 0 +-2286 -2310 0 +-2281 -2299 0 +-2282 -2300 0 +-2283 -2301 0 +-2284 -2302 0 +-2285 -2303 0 +-2286 -2304 0 +-2281 -2293 0 +-2282 -2294 0 +-2283 -2295 0 +-2284 -2296 0 +-2285 -2297 0 +-2286 -2298 0 +-2281 -2287 0 +-2282 -2288 0 +-2283 -2289 0 +-2284 -2290 0 +-2285 -2291 0 +-2286 -2292 0 +-2275 -2305 0 +-2276 -2306 0 +-2277 -2307 0 +-2278 -2308 0 +-2279 -2309 0 +-2280 -2310 0 +-2275 -2299 0 +-2276 -2300 0 +-2277 -2301 0 +-2278 -2302 0 +-2279 -2303 0 +-2280 -2304 0 +-2275 -2293 0 +-2276 -2294 0 +-2277 -2295 0 +-2278 -2296 0 +-2279 -2297 0 +-2280 -2298 0 +-2275 -2287 0 +-2276 -2288 0 +-2277 -2289 0 +-2278 -2290 0 +-2279 -2291 0 +-2280 -2292 0 +-2275 -2281 0 +-2276 -2282 0 +-2277 -2283 0 +-2278 -2284 0 +-2279 -2285 0 +-2280 -2286 0 +-2269 -2293 0 +-2270 -2294 0 +-2271 -2295 0 +-2272 -2296 0 +-2273 -2297 0 +-2274 -2298 0 +-2269 -2287 0 +-2270 -2288 0 +-2271 -2289 0 +-2272 -2290 0 +-2273 -2291 0 +-2274 -2292 0 +-2269 -2281 0 +-2270 -2282 0 +-2271 -2283 0 +-2272 -2284 0 +-2273 -2285 0 +-2274 -2286 0 +-2269 -2275 0 +-2270 -2276 0 +-2271 -2277 0 +-2272 -2278 0 +-2273 -2279 0 +-2274 -2280 0 +-2263 -2293 0 +-2264 -2294 0 +-2265 -2295 0 +-2266 -2296 0 +-2267 -2297 0 +-2268 -2298 0 +-2263 -2287 0 +-2264 -2288 0 +-2265 -2289 0 +-2266 -2290 0 +-2267 -2291 0 +-2268 -2292 0 +-2263 -2281 0 +-2264 -2282 0 +-2265 -2283 0 +-2266 -2284 0 +-2267 -2285 0 +-2268 -2286 0 +-2263 -2275 0 +-2264 -2276 0 +-2265 -2277 0 +-2266 -2278 0 +-2267 -2279 0 +-2268 -2280 0 +-2263 -2269 0 +-2264 -2270 0 +-2265 -2271 0 +-2266 -2272 0 +-2267 -2273 0 +-2268 -2274 0 +-2257 -2287 0 +-2258 -2288 0 +-2259 -2289 0 +-2260 -2290 0 +-2261 -2291 0 +-2262 -2292 0 +-2257 -2281 0 +-2258 -2282 0 +-2259 -2283 0 +-2260 -2284 0 +-2261 -2285 0 +-2262 -2286 0 +-2257 -2275 0 +-2258 -2276 0 +-2259 -2277 0 +-2260 -2278 0 +-2261 -2279 0 +-2262 -2280 0 +-2257 -2269 0 +-2258 -2270 0 +-2259 -2271 0 +-2260 -2272 0 +-2261 -2273 0 +-2262 -2274 0 +-2257 -2263 0 +-2258 -2264 0 +-2259 -2265 0 +-2260 -2266 0 +-2261 -2267 0 +-2262 -2268 0 +-2251 -2281 0 +-2252 -2282 0 +-2253 -2283 0 +-2254 -2284 0 +-2255 -2285 0 +-2256 -2286 0 +-2251 -2275 0 +-2252 -2276 0 +-2253 -2277 0 +-2254 -2278 0 +-2255 -2279 0 +-2256 -2280 0 +-2251 -2269 0 +-2252 -2270 0 +-2253 -2271 0 +-2254 -2272 0 +-2255 -2273 0 +-2256 -2274 0 +-2251 -2263 0 +-2252 -2264 0 +-2253 -2265 0 +-2254 -2266 0 +-2255 -2267 0 +-2256 -2268 0 +-2245 -2275 0 +-2246 -2276 0 +-2247 -2277 0 +-2248 -2278 0 +-2249 -2279 0 +-2250 -2280 0 +-2245 -2269 0 +-2246 -2270 0 +-2247 -2271 0 +-2248 -2272 0 +-2249 -2273 0 +-2250 -2274 0 +-2245 -2263 0 +-2246 -2264 0 +-2247 -2265 0 +-2248 -2266 0 +-2249 -2267 0 +-2250 -2268 0 +-2245 -2257 0 +-2246 -2258 0 +-2247 -2259 0 +-2248 -2260 0 +-2249 -2261 0 +-2250 -2262 0 +-2245 -2251 0 +-2246 -2252 0 +-2247 -2253 0 +-2248 -2254 0 +-2249 -2255 0 +-2250 -2256 0 +-2239 -2269 0 +-2240 -2270 0 +-2241 -2271 0 +-2242 -2272 0 +-2243 -2273 0 +-2244 -2274 0 +-2239 -2263 0 +-2240 -2264 0 +-2241 -2265 0 +-2242 -2266 0 +-2243 -2267 0 +-2244 -2268 0 +-2239 -2257 0 +-2240 -2258 0 +-2241 -2259 0 +-2242 -2260 0 +-2243 -2261 0 +-2244 -2262 0 +-2239 -2251 0 +-2240 -2252 0 +-2241 -2253 0 +-2242 -2254 0 +-2243 -2255 0 +-2244 -2256 0 +-2239 -2245 0 +-2240 -2246 0 +-2241 -2247 0 +-2242 -2248 0 +-2243 -2249 0 +-2244 -2250 0 +-2233 -2263 0 +-2234 -2264 0 +-2235 -2265 0 +-2236 -2266 0 +-2237 -2267 0 +-2238 -2268 0 +-2233 -2257 0 +-2234 -2258 0 +-2235 -2259 0 +-2236 -2260 0 +-2237 -2261 0 +-2238 -2262 0 +-2233 -2245 0 +-2234 -2246 0 +-2235 -2247 0 +-2236 -2248 0 +-2237 -2249 0 +-2238 -2250 0 +-2233 -2239 0 +-2234 -2240 0 +-2235 -2241 0 +-2236 -2242 0 +-2237 -2243 0 +-2238 -2244 0 +-2227 -2257 0 +-2228 -2258 0 +-2229 -2259 0 +-2230 -2260 0 +-2231 -2261 0 +-2232 -2262 0 +-2227 -2251 0 +-2228 -2252 0 +-2229 -2253 0 +-2230 -2254 0 +-2231 -2255 0 +-2232 -2256 0 +-2227 -2245 0 +-2228 -2246 0 +-2229 -2247 0 +-2230 -2248 0 +-2231 -2249 0 +-2232 -2250 0 +-2227 -2239 0 +-2228 -2240 0 +-2229 -2241 0 +-2230 -2242 0 +-2231 -2243 0 +-2232 -2244 0 +-2221 -2251 0 +-2222 -2252 0 +-2223 -2253 0 +-2224 -2254 0 +-2225 -2255 0 +-2226 -2256 0 +-2221 -2239 0 +-2222 -2240 0 +-2223 -2241 0 +-2224 -2242 0 +-2225 -2243 0 +-2226 -2244 0 +-2221 -2233 0 +-2222 -2234 0 +-2223 -2235 0 +-2224 -2236 0 +-2225 -2237 0 +-2226 -2238 0 +-2221 -2227 0 +-2222 -2228 0 +-2223 -2229 0 +-2224 -2230 0 +-2225 -2231 0 +-2226 -2232 0 +-2215 -2245 0 +-2216 -2246 0 +-2217 -2247 0 +-2218 -2248 0 +-2219 -2249 0 +-2220 -2250 0 +-2215 -2239 0 +-2216 -2240 0 +-2217 -2241 0 +-2218 -2242 0 +-2219 -2243 0 +-2220 -2244 0 +-2215 -2233 0 +-2216 -2234 0 +-2217 -2235 0 +-2218 -2236 0 +-2219 -2237 0 +-2220 -2238 0 +-2215 -2221 0 +-2216 -2222 0 +-2217 -2223 0 +-2218 -2224 0 +-2219 -2225 0 +-2220 -2226 0 +-2209 -2239 0 +-2210 -2240 0 +-2211 -2241 0 +-2212 -2242 0 +-2213 -2243 0 +-2214 -2244 0 +-2209 -2233 0 +-2210 -2234 0 +-2211 -2235 0 +-2212 -2236 0 +-2213 -2237 0 +-2214 -2238 0 +-2209 -2227 0 +-2210 -2228 0 +-2211 -2229 0 +-2212 -2230 0 +-2213 -2231 0 +-2214 -2232 0 +-2209 -2221 0 +-2210 -2222 0 +-2211 -2223 0 +-2212 -2224 0 +-2213 -2225 0 +-2214 -2226 0 +-2209 -2215 0 +-2210 -2216 0 +-2211 -2217 0 +-2212 -2218 0 +-2213 -2219 0 +-2214 -2220 0 +-2203 -2233 0 +-2204 -2234 0 +-2205 -2235 0 +-2206 -2236 0 +-2207 -2237 0 +-2208 -2238 0 +-2203 -2227 0 +-2204 -2228 0 +-2205 -2229 0 +-2206 -2230 0 +-2207 -2231 0 +-2208 -2232 0 +-2203 -2221 0 +-2204 -2222 0 +-2205 -2223 0 +-2206 -2224 0 +-2207 -2225 0 +-2208 -2226 0 +-2203 -2215 0 +-2204 -2216 0 +-2205 -2217 0 +-2206 -2218 0 +-2207 -2219 0 +-2208 -2220 0 +-2203 -2209 0 +-2204 -2210 0 +-2205 -2211 0 +-2206 -2212 0 +-2207 -2213 0 +-2208 -2214 0 +-2197 -2227 0 +-2198 -2228 0 +-2199 -2229 0 +-2200 -2230 0 +-2201 -2231 0 +-2202 -2232 0 +-2197 -2221 0 +-2198 -2222 0 +-2199 -2223 0 +-2200 -2224 0 +-2201 -2225 0 +-2202 -2226 0 +-2197 -2215 0 +-2198 -2216 0 +-2199 -2217 0 +-2200 -2218 0 +-2201 -2219 0 +-2202 -2220 0 +-2197 -2209 0 +-2198 -2210 0 +-2199 -2211 0 +-2200 -2212 0 +-2201 -2213 0 +-2202 -2214 0 +-2197 -2203 0 +-2198 -2204 0 +-2199 -2205 0 +-2200 -2206 0 +-2201 -2207 0 +-2202 -2208 0 +-2191 -2221 0 +-2192 -2222 0 +-2193 -2223 0 +-2194 -2224 0 +-2195 -2225 0 +-2196 -2226 0 +-2191 -2215 0 +-2192 -2216 0 +-2193 -2217 0 +-2194 -2218 0 +-2195 -2219 0 +-2196 -2220 0 +-2191 -2209 0 +-2192 -2210 0 +-2193 -2211 0 +-2194 -2212 0 +-2195 -2213 0 +-2196 -2214 0 +-2191 -2203 0 +-2192 -2204 0 +-2193 -2205 0 +-2194 -2206 0 +-2195 -2207 0 +-2196 -2208 0 +-2191 -2197 0 +-2192 -2198 0 +-2193 -2199 0 +-2194 -2200 0 +-2195 -2201 0 +-2196 -2202 0 +-2185 -2215 0 +-2186 -2216 0 +-2187 -2217 0 +-2188 -2218 0 +-2189 -2219 0 +-2190 -2220 0 +-2185 -2209 0 +-2186 -2210 0 +-2187 -2211 0 +-2188 -2212 0 +-2189 -2213 0 +-2190 -2214 0 +-2185 -2203 0 +-2186 -2204 0 +-2187 -2205 0 +-2188 -2206 0 +-2189 -2207 0 +-2190 -2208 0 +-2185 -2197 0 +-2186 -2198 0 +-2187 -2199 0 +-2188 -2200 0 +-2189 -2201 0 +-2190 -2202 0 +-2185 -2191 0 +-2186 -2192 0 +-2187 -2193 0 +-2188 -2194 0 +-2189 -2195 0 +-2190 -2196 0 +-2179 -2209 0 +-2180 -2210 0 +-2181 -2211 0 +-2182 -2212 0 +-2183 -2213 0 +-2184 -2214 0 +-2179 -2203 0 +-2180 -2204 0 +-2181 -2205 0 +-2182 -2206 0 +-2183 -2207 0 +-2184 -2208 0 +-2179 -2197 0 +-2180 -2198 0 +-2181 -2199 0 +-2182 -2200 0 +-2183 -2201 0 +-2184 -2202 0 +-2179 -2191 0 +-2180 -2192 0 +-2181 -2193 0 +-2182 -2194 0 +-2183 -2195 0 +-2184 -2196 0 +-2179 -2185 0 +-2180 -2186 0 +-2181 -2187 0 +-2182 -2188 0 +-2183 -2189 0 +-2184 -2190 0 +-2173 -2203 0 +-2174 -2204 0 +-2175 -2205 0 +-2176 -2206 0 +-2177 -2207 0 +-2178 -2208 0 +-2173 -2197 0 +-2174 -2198 0 +-2175 -2199 0 +-2176 -2200 0 +-2177 -2201 0 +-2178 -2202 0 +-2173 -2191 0 +-2174 -2192 0 +-2175 -2193 0 +-2176 -2194 0 +-2177 -2195 0 +-2178 -2196 0 +-2173 -2185 0 +-2174 -2186 0 +-2175 -2187 0 +-2176 -2188 0 +-2177 -2189 0 +-2178 -2190 0 +-2173 -2179 0 +-2174 -2180 0 +-2175 -2181 0 +-2176 -2182 0 +-2177 -2183 0 +-2178 -2184 0 +-2167 -2197 0 +-2168 -2198 0 +-2169 -2199 0 +-2170 -2200 0 +-2171 -2201 0 +-2172 -2202 0 +-2167 -2191 0 +-2168 -2192 0 +-2169 -2193 0 +-2170 -2194 0 +-2171 -2195 0 +-2172 -2196 0 +-2167 -2185 0 +-2168 -2186 0 +-2169 -2187 0 +-2170 -2188 0 +-2171 -2189 0 +-2172 -2190 0 +-2167 -2179 0 +-2168 -2180 0 +-2169 -2181 0 +-2170 -2182 0 +-2171 -2183 0 +-2172 -2184 0 +-2167 -2173 0 +-2168 -2174 0 +-2169 -2175 0 +-2170 -2176 0 +-2171 -2177 0 +-2172 -2178 0 +-2161 -2191 0 +-2162 -2192 0 +-2163 -2193 0 +-2164 -2194 0 +-2165 -2195 0 +-2166 -2196 0 +-2161 -2185 0 +-2162 -2186 0 +-2163 -2187 0 +-2164 -2188 0 +-2165 -2189 0 +-2166 -2190 0 +-2161 -2179 0 +-2162 -2180 0 +-2163 -2181 0 +-2164 -2182 0 +-2165 -2183 0 +-2166 -2184 0 +-2161 -2173 0 +-2162 -2174 0 +-2163 -2175 0 +-2164 -2176 0 +-2165 -2177 0 +-2166 -2178 0 +-2161 -2167 0 +-2162 -2168 0 +-2163 -2169 0 +-2164 -2170 0 +-2165 -2171 0 +-2166 -2172 0 +-2155 -2185 0 +-2156 -2186 0 +-2157 -2187 0 +-2158 -2188 0 +-2159 -2189 0 +-2160 -2190 0 +-2155 -2179 0 +-2156 -2180 0 +-2157 -2181 0 +-2158 -2182 0 +-2159 -2183 0 +-2160 -2184 0 +-2155 -2173 0 +-2156 -2174 0 +-2157 -2175 0 +-2158 -2176 0 +-2159 -2177 0 +-2160 -2178 0 +-2155 -2167 0 +-2156 -2168 0 +-2157 -2169 0 +-2158 -2170 0 +-2159 -2171 0 +-2160 -2172 0 +-2155 -2161 0 +-2156 -2162 0 +-2157 -2163 0 +-2158 -2164 0 +-2159 -2165 0 +-2160 -2166 0 +-2149 -2179 0 +-2150 -2180 0 +-2151 -2181 0 +-2152 -2182 0 +-2153 -2183 0 +-2154 -2184 0 +-2149 -2173 0 +-2150 -2174 0 +-2151 -2175 0 +-2152 -2176 0 +-2153 -2177 0 +-2154 -2178 0 +-2149 -2167 0 +-2150 -2168 0 +-2151 -2169 0 +-2152 -2170 0 +-2153 -2171 0 +-2154 -2172 0 +-2149 -2161 0 +-2150 -2162 0 +-2151 -2163 0 +-2152 -2164 0 +-2153 -2165 0 +-2154 -2166 0 +-2149 -2155 0 +-2150 -2156 0 +-2151 -2157 0 +-2152 -2158 0 +-2153 -2159 0 +-2154 -2160 0 +-2143 -2173 0 +-2144 -2174 0 +-2145 -2175 0 +-2146 -2176 0 +-2147 -2177 0 +-2148 -2178 0 +-2143 -2167 0 +-2144 -2168 0 +-2145 -2169 0 +-2146 -2170 0 +-2147 -2171 0 +-2148 -2172 0 +-2143 -2161 0 +-2144 -2162 0 +-2145 -2163 0 +-2146 -2164 0 +-2147 -2165 0 +-2148 -2166 0 +-2143 -2155 0 +-2144 -2156 0 +-2145 -2157 0 +-2146 -2158 0 +-2147 -2159 0 +-2148 -2160 0 +-2137 -2167 0 +-2138 -2168 0 +-2139 -2169 0 +-2140 -2170 0 +-2141 -2171 0 +-2142 -2172 0 +-2137 -2161 0 +-2138 -2162 0 +-2139 -2163 0 +-2140 -2164 0 +-2141 -2165 0 +-2142 -2166 0 +-2137 -2155 0 +-2138 -2156 0 +-2139 -2157 0 +-2140 -2158 0 +-2141 -2159 0 +-2142 -2160 0 +-2137 -2149 0 +-2138 -2150 0 +-2139 -2151 0 +-2140 -2152 0 +-2141 -2153 0 +-2142 -2154 0 +-2137 -2143 0 +-2138 -2144 0 +-2139 -2145 0 +-2140 -2146 0 +-2141 -2147 0 +-2142 -2148 0 +-2131 -2161 0 +-2132 -2162 0 +-2133 -2163 0 +-2134 -2164 0 +-2135 -2165 0 +-2136 -2166 0 +-2131 -2155 0 +-2132 -2156 0 +-2133 -2157 0 +-2134 -2158 0 +-2135 -2159 0 +-2136 -2160 0 +-2131 -2149 0 +-2132 -2150 0 +-2133 -2151 0 +-2134 -2152 0 +-2135 -2153 0 +-2136 -2154 0 +-2131 -2143 0 +-2132 -2144 0 +-2133 -2145 0 +-2134 -2146 0 +-2135 -2147 0 +-2136 -2148 0 +-2131 -2137 0 +-2132 -2138 0 +-2133 -2139 0 +-2134 -2140 0 +-2135 -2141 0 +-2136 -2142 0 +-2125 -2155 0 +-2126 -2156 0 +-2127 -2157 0 +-2128 -2158 0 +-2129 -2159 0 +-2130 -2160 0 +-2125 -2149 0 +-2126 -2150 0 +-2127 -2151 0 +-2128 -2152 0 +-2129 -2153 0 +-2130 -2154 0 +-2125 -2143 0 +-2126 -2144 0 +-2127 -2145 0 +-2128 -2146 0 +-2129 -2147 0 +-2130 -2148 0 +-2125 -2137 0 +-2126 -2138 0 +-2127 -2139 0 +-2128 -2140 0 +-2129 -2141 0 +-2130 -2142 0 +-2125 -2131 0 +-2126 -2132 0 +-2127 -2133 0 +-2128 -2134 0 +-2129 -2135 0 +-2130 -2136 0 +-2119 -2149 0 +-2120 -2150 0 +-2121 -2151 0 +-2122 -2152 0 +-2123 -2153 0 +-2124 -2154 0 +-2119 -2143 0 +-2120 -2144 0 +-2121 -2145 0 +-2122 -2146 0 +-2123 -2147 0 +-2124 -2148 0 +-2119 -2137 0 +-2120 -2138 0 +-2121 -2139 0 +-2122 -2140 0 +-2123 -2141 0 +-2124 -2142 0 +-2119 -2131 0 +-2120 -2132 0 +-2121 -2133 0 +-2122 -2134 0 +-2123 -2135 0 +-2124 -2136 0 +-2119 -2125 0 +-2120 -2126 0 +-2121 -2127 0 +-2122 -2128 0 +-2123 -2129 0 +-2124 -2130 0 +-2113 -2143 0 +-2114 -2144 0 +-2115 -2145 0 +-2116 -2146 0 +-2117 -2147 0 +-2118 -2148 0 +-2113 -2137 0 +-2114 -2138 0 +-2115 -2139 0 +-2116 -2140 0 +-2117 -2141 0 +-2118 -2142 0 +-2113 -2131 0 +-2114 -2132 0 +-2115 -2133 0 +-2116 -2134 0 +-2117 -2135 0 +-2118 -2136 0 +-2113 -2125 0 +-2114 -2126 0 +-2115 -2127 0 +-2116 -2128 0 +-2117 -2129 0 +-2118 -2130 0 +-2113 -2119 0 +-2114 -2120 0 +-2115 -2121 0 +-2116 -2122 0 +-2117 -2123 0 +-2118 -2124 0 +-2107 -2137 0 +-2108 -2138 0 +-2109 -2139 0 +-2110 -2140 0 +-2111 -2141 0 +-2112 -2142 0 +-2107 -2131 0 +-2108 -2132 0 +-2109 -2133 0 +-2110 -2134 0 +-2111 -2135 0 +-2112 -2136 0 +-2107 -2125 0 +-2108 -2126 0 +-2109 -2127 0 +-2110 -2128 0 +-2111 -2129 0 +-2112 -2130 0 +-2107 -2119 0 +-2108 -2120 0 +-2109 -2121 0 +-2110 -2122 0 +-2111 -2123 0 +-2112 -2124 0 +-2107 -2113 0 +-2108 -2114 0 +-2109 -2115 0 +-2110 -2116 0 +-2111 -2117 0 +-2112 -2118 0 +-2101 -2131 0 +-2102 -2132 0 +-2103 -2133 0 +-2104 -2134 0 +-2105 -2135 0 +-2106 -2136 0 +-2101 -2125 0 +-2102 -2126 0 +-2103 -2127 0 +-2104 -2128 0 +-2105 -2129 0 +-2106 -2130 0 +-2101 -2119 0 +-2102 -2120 0 +-2103 -2121 0 +-2104 -2122 0 +-2105 -2123 0 +-2106 -2124 0 +-2101 -2113 0 +-2102 -2114 0 +-2103 -2115 0 +-2104 -2116 0 +-2105 -2117 0 +-2106 -2118 0 +-2101 -2107 0 +-2102 -2108 0 +-2103 -2109 0 +-2104 -2110 0 +-2105 -2111 0 +-2106 -2112 0 +-2095 -2125 0 +-2096 -2126 0 +-2097 -2127 0 +-2098 -2128 0 +-2099 -2129 0 +-2100 -2130 0 +-2095 -2119 0 +-2096 -2120 0 +-2097 -2121 0 +-2098 -2122 0 +-2099 -2123 0 +-2100 -2124 0 +-2095 -2113 0 +-2096 -2114 0 +-2097 -2115 0 +-2098 -2116 0 +-2099 -2117 0 +-2100 -2118 0 +-2095 -2107 0 +-2096 -2108 0 +-2097 -2109 0 +-2098 -2110 0 +-2099 -2111 0 +-2100 -2112 0 +-2095 -2101 0 +-2096 -2102 0 +-2097 -2103 0 +-2098 -2104 0 +-2099 -2105 0 +-2100 -2106 0 +-2089 -2119 0 +-2090 -2120 0 +-2091 -2121 0 +-2092 -2122 0 +-2093 -2123 0 +-2094 -2124 0 +-2089 -2113 0 +-2090 -2114 0 +-2091 -2115 0 +-2092 -2116 0 +-2093 -2117 0 +-2094 -2118 0 +-2089 -2107 0 +-2090 -2108 0 +-2091 -2109 0 +-2092 -2110 0 +-2093 -2111 0 +-2094 -2112 0 +-2089 -2101 0 +-2090 -2102 0 +-2091 -2103 0 +-2092 -2104 0 +-2093 -2105 0 +-2094 -2106 0 +-2089 -2095 0 +-2090 -2096 0 +-2091 -2097 0 +-2092 -2098 0 +-2093 -2099 0 +-2094 -2100 0 +-2083 -2113 0 +-2084 -2114 0 +-2085 -2115 0 +-2086 -2116 0 +-2087 -2117 0 +-2088 -2118 0 +-2083 -2107 0 +-2084 -2108 0 +-2085 -2109 0 +-2086 -2110 0 +-2087 -2111 0 +-2088 -2112 0 +-2083 -2101 0 +-2084 -2102 0 +-2085 -2103 0 +-2086 -2104 0 +-2087 -2105 0 +-2088 -2106 0 +-2083 -2095 0 +-2084 -2096 0 +-2085 -2097 0 +-2086 -2098 0 +-2087 -2099 0 +-2088 -2100 0 +-2083 -2089 0 +-2084 -2090 0 +-2085 -2091 0 +-2086 -2092 0 +-2087 -2093 0 +-2088 -2094 0 +-2077 -2107 0 +-2078 -2108 0 +-2079 -2109 0 +-2080 -2110 0 +-2081 -2111 0 +-2082 -2112 0 +-2077 -2101 0 +-2078 -2102 0 +-2079 -2103 0 +-2080 -2104 0 +-2081 -2105 0 +-2082 -2106 0 +-2077 -2095 0 +-2078 -2096 0 +-2079 -2097 0 +-2080 -2098 0 +-2081 -2099 0 +-2082 -2100 0 +-2077 -2089 0 +-2078 -2090 0 +-2079 -2091 0 +-2080 -2092 0 +-2081 -2093 0 +-2082 -2094 0 +-2077 -2083 0 +-2078 -2084 0 +-2079 -2085 0 +-2080 -2086 0 +-2081 -2087 0 +-2082 -2088 0 +-2071 -2101 0 +-2072 -2102 0 +-2073 -2103 0 +-2074 -2104 0 +-2075 -2105 0 +-2076 -2106 0 +-2071 -2095 0 +-2072 -2096 0 +-2073 -2097 0 +-2074 -2098 0 +-2075 -2099 0 +-2076 -2100 0 +-2071 -2089 0 +-2072 -2090 0 +-2073 -2091 0 +-2074 -2092 0 +-2075 -2093 0 +-2076 -2094 0 +-2071 -2083 0 +-2072 -2084 0 +-2073 -2085 0 +-2074 -2086 0 +-2075 -2087 0 +-2076 -2088 0 +-2071 -2077 0 +-2072 -2078 0 +-2073 -2079 0 +-2074 -2080 0 +-2075 -2081 0 +-2076 -2082 0 +-2065 -2095 0 +-2066 -2096 0 +-2067 -2097 0 +-2068 -2098 0 +-2069 -2099 0 +-2070 -2100 0 +-2065 -2089 0 +-2066 -2090 0 +-2067 -2091 0 +-2068 -2092 0 +-2069 -2093 0 +-2070 -2094 0 +-2065 -2083 0 +-2066 -2084 0 +-2067 -2085 0 +-2068 -2086 0 +-2069 -2087 0 +-2070 -2088 0 +-2065 -2077 0 +-2066 -2078 0 +-2067 -2079 0 +-2068 -2080 0 +-2069 -2081 0 +-2070 -2082 0 +-2065 -2071 0 +-2066 -2072 0 +-2067 -2073 0 +-2068 -2074 0 +-2069 -2075 0 +-2070 -2076 0 +-2059 -2089 0 +-2060 -2090 0 +-2061 -2091 0 +-2062 -2092 0 +-2063 -2093 0 +-2064 -2094 0 +-2059 -2083 0 +-2060 -2084 0 +-2061 -2085 0 +-2062 -2086 0 +-2063 -2087 0 +-2064 -2088 0 +-2059 -2077 0 +-2060 -2078 0 +-2061 -2079 0 +-2062 -2080 0 +-2063 -2081 0 +-2064 -2082 0 +-2059 -2071 0 +-2060 -2072 0 +-2061 -2073 0 +-2062 -2074 0 +-2063 -2075 0 +-2064 -2076 0 +-2059 -2065 0 +-2060 -2066 0 +-2061 -2067 0 +-2062 -2068 0 +-2063 -2069 0 +-2064 -2070 0 +-2053 -2083 0 +-2054 -2084 0 +-2055 -2085 0 +-2056 -2086 0 +-2057 -2087 0 +-2058 -2088 0 +-2053 -2077 0 +-2054 -2078 0 +-2055 -2079 0 +-2056 -2080 0 +-2057 -2081 0 +-2058 -2082 0 +-2053 -2071 0 +-2054 -2072 0 +-2055 -2073 0 +-2056 -2074 0 +-2057 -2075 0 +-2058 -2076 0 +-2053 -2065 0 +-2054 -2066 0 +-2055 -2067 0 +-2056 -2068 0 +-2057 -2069 0 +-2058 -2070 0 +-2047 -2077 0 +-2048 -2078 0 +-2049 -2079 0 +-2050 -2080 0 +-2051 -2081 0 +-2052 -2082 0 +-2047 -2071 0 +-2048 -2072 0 +-2049 -2073 0 +-2050 -2074 0 +-2051 -2075 0 +-2052 -2076 0 +-2047 -2065 0 +-2048 -2066 0 +-2049 -2067 0 +-2050 -2068 0 +-2051 -2069 0 +-2052 -2070 0 +-2047 -2059 0 +-2048 -2060 0 +-2049 -2061 0 +-2050 -2062 0 +-2051 -2063 0 +-2052 -2064 0 +-2047 -2053 0 +-2048 -2054 0 +-2049 -2055 0 +-2050 -2056 0 +-2051 -2057 0 +-2052 -2058 0 +-2041 -2071 0 +-2042 -2072 0 +-2043 -2073 0 +-2044 -2074 0 +-2045 -2075 0 +-2046 -2076 0 +-2041 -2065 0 +-2042 -2066 0 +-2043 -2067 0 +-2044 -2068 0 +-2045 -2069 0 +-2046 -2070 0 +-2041 -2059 0 +-2042 -2060 0 +-2043 -2061 0 +-2044 -2062 0 +-2045 -2063 0 +-2046 -2064 0 +-2041 -2053 0 +-2042 -2054 0 +-2043 -2055 0 +-2044 -2056 0 +-2045 -2057 0 +-2046 -2058 0 +-2041 -2047 0 +-2042 -2048 0 +-2043 -2049 0 +-2044 -2050 0 +-2045 -2051 0 +-2046 -2052 0 +-2035 -2065 0 +-2036 -2066 0 +-2037 -2067 0 +-2038 -2068 0 +-2039 -2069 0 +-2040 -2070 0 +-2035 -2059 0 +-2036 -2060 0 +-2037 -2061 0 +-2038 -2062 0 +-2039 -2063 0 +-2040 -2064 0 +-2035 -2053 0 +-2036 -2054 0 +-2037 -2055 0 +-2038 -2056 0 +-2039 -2057 0 +-2040 -2058 0 +-2035 -2047 0 +-2036 -2048 0 +-2037 -2049 0 +-2038 -2050 0 +-2039 -2051 0 +-2040 -2052 0 +-2035 -2041 0 +-2036 -2042 0 +-2037 -2043 0 +-2038 -2044 0 +-2039 -2045 0 +-2040 -2046 0 +-2029 -2059 0 +-2030 -2060 0 +-2031 -2061 0 +-2032 -2062 0 +-2033 -2063 0 +-2034 -2064 0 +-2029 -2053 0 +-2030 -2054 0 +-2031 -2055 0 +-2032 -2056 0 +-2033 -2057 0 +-2034 -2058 0 +-2029 -2047 0 +-2030 -2048 0 +-2031 -2049 0 +-2032 -2050 0 +-2033 -2051 0 +-2034 -2052 0 +-2029 -2041 0 +-2030 -2042 0 +-2031 -2043 0 +-2032 -2044 0 +-2033 -2045 0 +-2034 -2046 0 +-2029 -2035 0 +-2030 -2036 0 +-2031 -2037 0 +-2032 -2038 0 +-2033 -2039 0 +-2034 -2040 0 +-2023 -2053 0 +-2024 -2054 0 +-2025 -2055 0 +-2026 -2056 0 +-2027 -2057 0 +-2028 -2058 0 +-2023 -2047 0 +-2024 -2048 0 +-2025 -2049 0 +-2026 -2050 0 +-2027 -2051 0 +-2028 -2052 0 +-2023 -2041 0 +-2024 -2042 0 +-2025 -2043 0 +-2026 -2044 0 +-2027 -2045 0 +-2028 -2046 0 +-2023 -2035 0 +-2024 -2036 0 +-2025 -2037 0 +-2026 -2038 0 +-2027 -2039 0 +-2028 -2040 0 +-2023 -2029 0 +-2024 -2030 0 +-2025 -2031 0 +-2026 -2032 0 +-2027 -2033 0 +-2028 -2034 0 +-2017 -2047 0 +-2018 -2048 0 +-2019 -2049 0 +-2020 -2050 0 +-2021 -2051 0 +-2022 -2052 0 +-2017 -2041 0 +-2018 -2042 0 +-2019 -2043 0 +-2020 -2044 0 +-2021 -2045 0 +-2022 -2046 0 +-2017 -2035 0 +-2018 -2036 0 +-2019 -2037 0 +-2020 -2038 0 +-2021 -2039 0 +-2022 -2040 0 +-2017 -2029 0 +-2018 -2030 0 +-2019 -2031 0 +-2020 -2032 0 +-2021 -2033 0 +-2022 -2034 0 +-2017 -2023 0 +-2018 -2024 0 +-2019 -2025 0 +-2020 -2026 0 +-2021 -2027 0 +-2022 -2028 0 +-2011 -2041 0 +-2012 -2042 0 +-2013 -2043 0 +-2014 -2044 0 +-2015 -2045 0 +-2016 -2046 0 +-2011 -2035 0 +-2012 -2036 0 +-2013 -2037 0 +-2014 -2038 0 +-2015 -2039 0 +-2016 -2040 0 +-2011 -2029 0 +-2012 -2030 0 +-2013 -2031 0 +-2014 -2032 0 +-2015 -2033 0 +-2016 -2034 0 +-2011 -2023 0 +-2012 -2024 0 +-2013 -2025 0 +-2014 -2026 0 +-2015 -2027 0 +-2016 -2028 0 +-2011 -2017 0 +-2012 -2018 0 +-2013 -2019 0 +-2014 -2020 0 +-2015 -2021 0 +-2016 -2022 0 +-2005 -2035 0 +-2006 -2036 0 +-2007 -2037 0 +-2008 -2038 0 +-2009 -2039 0 +-2010 -2040 0 +-2005 -2029 0 +-2006 -2030 0 +-2007 -2031 0 +-2008 -2032 0 +-2009 -2033 0 +-2010 -2034 0 +-2005 -2023 0 +-2006 -2024 0 +-2007 -2025 0 +-2008 -2026 0 +-2009 -2027 0 +-2010 -2028 0 +-2005 -2017 0 +-2006 -2018 0 +-2007 -2019 0 +-2008 -2020 0 +-2009 -2021 0 +-2010 -2022 0 +-2005 -2011 0 +-2006 -2012 0 +-2007 -2013 0 +-2008 -2014 0 +-2009 -2015 0 +-2010 -2016 0 +-1999 -2029 0 +-2000 -2030 0 +-2001 -2031 0 +-2002 -2032 0 +-2003 -2033 0 +-2004 -2034 0 +-1999 -2023 0 +-2000 -2024 0 +-2001 -2025 0 +-2002 -2026 0 +-2003 -2027 0 +-2004 -2028 0 +-1999 -2017 0 +-2000 -2018 0 +-2001 -2019 0 +-2002 -2020 0 +-2003 -2021 0 +-2004 -2022 0 +-1999 -2011 0 +-2000 -2012 0 +-2001 -2013 0 +-2002 -2014 0 +-2003 -2015 0 +-2004 -2016 0 +-1999 -2005 0 +-2000 -2006 0 +-2001 -2007 0 +-2002 -2008 0 +-2003 -2009 0 +-2004 -2010 0 +-1993 -2023 0 +-1994 -2024 0 +-1995 -2025 0 +-1996 -2026 0 +-1997 -2027 0 +-1998 -2028 0 +-1993 -2017 0 +-1994 -2018 0 +-1995 -2019 0 +-1996 -2020 0 +-1997 -2021 0 +-1998 -2022 0 +-1993 -2011 0 +-1994 -2012 0 +-1995 -2013 0 +-1996 -2014 0 +-1997 -2015 0 +-1998 -2016 0 +-1993 -2005 0 +-1994 -2006 0 +-1995 -2007 0 +-1996 -2008 0 +-1997 -2009 0 +-1998 -2010 0 +-1993 -1999 0 +-1994 -2000 0 +-1995 -2001 0 +-1996 -2002 0 +-1997 -2003 0 +-1998 -2004 0 +-1987 -2017 0 +-1988 -2018 0 +-1989 -2019 0 +-1990 -2020 0 +-1991 -2021 0 +-1992 -2022 0 +-1987 -2011 0 +-1988 -2012 0 +-1989 -2013 0 +-1990 -2014 0 +-1991 -2015 0 +-1992 -2016 0 +-1987 -2005 0 +-1988 -2006 0 +-1989 -2007 0 +-1990 -2008 0 +-1991 -2009 0 +-1992 -2010 0 +-1987 -1999 0 +-1988 -2000 0 +-1989 -2001 0 +-1990 -2002 0 +-1991 -2003 0 +-1992 -2004 0 +-1987 -1993 0 +-1988 -1994 0 +-1989 -1995 0 +-1990 -1996 0 +-1991 -1997 0 +-1992 -1998 0 +-1981 -2011 0 +-1982 -2012 0 +-1983 -2013 0 +-1984 -2014 0 +-1985 -2015 0 +-1986 -2016 0 +-1981 -2005 0 +-1982 -2006 0 +-1983 -2007 0 +-1984 -2008 0 +-1985 -2009 0 +-1986 -2010 0 +-1981 -1999 0 +-1982 -2000 0 +-1983 -2001 0 +-1984 -2002 0 +-1985 -2003 0 +-1986 -2004 0 +-1981 -1993 0 +-1982 -1994 0 +-1983 -1995 0 +-1984 -1996 0 +-1985 -1997 0 +-1986 -1998 0 +-1981 -1987 0 +-1982 -1988 0 +-1983 -1989 0 +-1984 -1990 0 +-1985 -1991 0 +-1986 -1992 0 +-1975 -2005 0 +-1976 -2006 0 +-1977 -2007 0 +-1978 -2008 0 +-1979 -2009 0 +-1980 -2010 0 +-1975 -1999 0 +-1976 -2000 0 +-1977 -2001 0 +-1978 -2002 0 +-1979 -2003 0 +-1980 -2004 0 +-1975 -1993 0 +-1976 -1994 0 +-1977 -1995 0 +-1978 -1996 0 +-1979 -1997 0 +-1980 -1998 0 +-1975 -1987 0 +-1976 -1988 0 +-1977 -1989 0 +-1978 -1990 0 +-1979 -1991 0 +-1980 -1992 0 +-1975 -1981 0 +-1976 -1982 0 +-1977 -1983 0 +-1978 -1984 0 +-1979 -1985 0 +-1980 -1986 0 +-1969 -1999 0 +-1970 -2000 0 +-1971 -2001 0 +-1972 -2002 0 +-1973 -2003 0 +-1974 -2004 0 +-1969 -1993 0 +-1970 -1994 0 +-1971 -1995 0 +-1972 -1996 0 +-1973 -1997 0 +-1974 -1998 0 +-1969 -1987 0 +-1970 -1988 0 +-1971 -1989 0 +-1972 -1990 0 +-1973 -1991 0 +-1974 -1992 0 +-1969 -1981 0 +-1970 -1982 0 +-1971 -1983 0 +-1972 -1984 0 +-1973 -1985 0 +-1974 -1986 0 +-1969 -1975 0 +-1970 -1976 0 +-1971 -1977 0 +-1972 -1978 0 +-1973 -1979 0 +-1974 -1980 0 +-1963 -1993 0 +-1964 -1994 0 +-1965 -1995 0 +-1966 -1996 0 +-1967 -1997 0 +-1968 -1998 0 +-1963 -1987 0 +-1964 -1988 0 +-1965 -1989 0 +-1966 -1990 0 +-1967 -1991 0 +-1968 -1992 0 +-1963 -1981 0 +-1964 -1982 0 +-1965 -1983 0 +-1966 -1984 0 +-1967 -1985 0 +-1968 -1986 0 +-1963 -1975 0 +-1964 -1976 0 +-1965 -1977 0 +-1966 -1978 0 +-1967 -1979 0 +-1968 -1980 0 +-1963 -1969 0 +-1964 -1970 0 +-1965 -1971 0 +-1966 -1972 0 +-1967 -1973 0 +-1968 -1974 0 +-1957 -1987 0 +-1958 -1988 0 +-1959 -1989 0 +-1960 -1990 0 +-1961 -1991 0 +-1962 -1992 0 +-1957 -1981 0 +-1958 -1982 0 +-1959 -1983 0 +-1960 -1984 0 +-1961 -1985 0 +-1962 -1986 0 +-1957 -1975 0 +-1958 -1976 0 +-1959 -1977 0 +-1960 -1978 0 +-1961 -1979 0 +-1962 -1980 0 +-1957 -1969 0 +-1958 -1970 0 +-1959 -1971 0 +-1960 -1972 0 +-1961 -1973 0 +-1962 -1974 0 +-1957 -1963 0 +-1958 -1964 0 +-1959 -1965 0 +-1960 -1966 0 +-1961 -1967 0 +-1962 -1968 0 +-1951 -1981 0 +-1952 -1982 0 +-1953 -1983 0 +-1954 -1984 0 +-1955 -1985 0 +-1956 -1986 0 +-1951 -1975 0 +-1952 -1976 0 +-1953 -1977 0 +-1954 -1978 0 +-1955 -1979 0 +-1956 -1980 0 +-1951 -1969 0 +-1952 -1970 0 +-1953 -1971 0 +-1954 -1972 0 +-1955 -1973 0 +-1956 -1974 0 +-1951 -1963 0 +-1952 -1964 0 +-1953 -1965 0 +-1954 -1966 0 +-1955 -1967 0 +-1956 -1968 0 +-1951 -1957 0 +-1952 -1958 0 +-1953 -1959 0 +-1954 -1960 0 +-1955 -1961 0 +-1956 -1962 0 +-1945 -1975 0 +-1946 -1976 0 +-1947 -1977 0 +-1948 -1978 0 +-1949 -1979 0 +-1950 -1980 0 +-1945 -1969 0 +-1946 -1970 0 +-1947 -1971 0 +-1948 -1972 0 +-1949 -1973 0 +-1950 -1974 0 +-1945 -1963 0 +-1946 -1964 0 +-1947 -1965 0 +-1948 -1966 0 +-1949 -1967 0 +-1950 -1968 0 +-1945 -1957 0 +-1946 -1958 0 +-1947 -1959 0 +-1948 -1960 0 +-1949 -1961 0 +-1950 -1962 0 +-1939 -1969 0 +-1940 -1970 0 +-1941 -1971 0 +-1942 -1972 0 +-1943 -1973 0 +-1944 -1974 0 +-1939 -1963 0 +-1940 -1964 0 +-1941 -1965 0 +-1942 -1966 0 +-1943 -1967 0 +-1944 -1968 0 +-1939 -1957 0 +-1940 -1958 0 +-1941 -1959 0 +-1942 -1960 0 +-1943 -1961 0 +-1944 -1962 0 +-1939 -1951 0 +-1940 -1952 0 +-1941 -1953 0 +-1942 -1954 0 +-1943 -1955 0 +-1944 -1956 0 +-1939 -1945 0 +-1940 -1946 0 +-1941 -1947 0 +-1942 -1948 0 +-1943 -1949 0 +-1944 -1950 0 +-1933 -1963 0 +-1934 -1964 0 +-1935 -1965 0 +-1936 -1966 0 +-1937 -1967 0 +-1938 -1968 0 +-1933 -1957 0 +-1934 -1958 0 +-1935 -1959 0 +-1936 -1960 0 +-1937 -1961 0 +-1938 -1962 0 +-1933 -1951 0 +-1934 -1952 0 +-1935 -1953 0 +-1936 -1954 0 +-1937 -1955 0 +-1938 -1956 0 +-1933 -1945 0 +-1934 -1946 0 +-1935 -1947 0 +-1936 -1948 0 +-1937 -1949 0 +-1938 -1950 0 +-1933 -1939 0 +-1934 -1940 0 +-1935 -1941 0 +-1936 -1942 0 +-1937 -1943 0 +-1938 -1944 0 +-1927 -1951 0 +-1928 -1952 0 +-1929 -1953 0 +-1930 -1954 0 +-1931 -1955 0 +-1932 -1956 0 +-1927 -1945 0 +-1928 -1946 0 +-1929 -1947 0 +-1930 -1948 0 +-1931 -1949 0 +-1932 -1950 0 +-1927 -1939 0 +-1928 -1940 0 +-1929 -1941 0 +-1930 -1942 0 +-1931 -1943 0 +-1932 -1944 0 +-1927 -1933 0 +-1928 -1934 0 +-1929 -1935 0 +-1930 -1936 0 +-1931 -1937 0 +-1932 -1938 0 +-1921 -1951 0 +-1922 -1952 0 +-1923 -1953 0 +-1924 -1954 0 +-1925 -1955 0 +-1926 -1956 0 +-1921 -1945 0 +-1922 -1946 0 +-1923 -1947 0 +-1924 -1948 0 +-1925 -1949 0 +-1926 -1950 0 +-1921 -1939 0 +-1922 -1940 0 +-1923 -1941 0 +-1924 -1942 0 +-1925 -1943 0 +-1926 -1944 0 +-1921 -1933 0 +-1922 -1934 0 +-1923 -1935 0 +-1924 -1936 0 +-1925 -1937 0 +-1926 -1938 0 +-1921 -1927 0 +-1922 -1928 0 +-1923 -1929 0 +-1924 -1930 0 +-1925 -1931 0 +-1926 -1932 0 +-1915 -1945 0 +-1916 -1946 0 +-1917 -1947 0 +-1918 -1948 0 +-1919 -1949 0 +-1920 -1950 0 +-1915 -1939 0 +-1916 -1940 0 +-1917 -1941 0 +-1918 -1942 0 +-1919 -1943 0 +-1920 -1944 0 +-1915 -1933 0 +-1916 -1934 0 +-1917 -1935 0 +-1918 -1936 0 +-1919 -1937 0 +-1920 -1938 0 +-1915 -1921 0 +-1916 -1922 0 +-1917 -1923 0 +-1918 -1924 0 +-1919 -1925 0 +-1920 -1926 0 +-1909 -1939 0 +-1910 -1940 0 +-1911 -1941 0 +-1912 -1942 0 +-1913 -1943 0 +-1914 -1944 0 +-1909 -1933 0 +-1910 -1934 0 +-1911 -1935 0 +-1912 -1936 0 +-1913 -1937 0 +-1914 -1938 0 +-1909 -1927 0 +-1910 -1928 0 +-1911 -1929 0 +-1912 -1930 0 +-1913 -1931 0 +-1914 -1932 0 +-1909 -1921 0 +-1910 -1922 0 +-1911 -1923 0 +-1912 -1924 0 +-1913 -1925 0 +-1914 -1926 0 +-1909 -1915 0 +-1910 -1916 0 +-1911 -1917 0 +-1912 -1918 0 +-1913 -1919 0 +-1914 -1920 0 +-1903 -1933 0 +-1904 -1934 0 +-1905 -1935 0 +-1906 -1936 0 +-1907 -1937 0 +-1908 -1938 0 +-1903 -1927 0 +-1904 -1928 0 +-1905 -1929 0 +-1906 -1930 0 +-1907 -1931 0 +-1908 -1932 0 +-1903 -1921 0 +-1904 -1922 0 +-1905 -1923 0 +-1906 -1924 0 +-1907 -1925 0 +-1908 -1926 0 +-1903 -1915 0 +-1904 -1916 0 +-1905 -1917 0 +-1906 -1918 0 +-1907 -1919 0 +-1908 -1920 0 +-1903 -1909 0 +-1904 -1910 0 +-1905 -1911 0 +-1906 -1912 0 +-1907 -1913 0 +-1908 -1914 0 +-1897 -1927 0 +-1898 -1928 0 +-1899 -1929 0 +-1900 -1930 0 +-1901 -1931 0 +-1902 -1932 0 +-1897 -1921 0 +-1898 -1922 0 +-1899 -1923 0 +-1900 -1924 0 +-1901 -1925 0 +-1902 -1926 0 +-1897 -1915 0 +-1898 -1916 0 +-1899 -1917 0 +-1900 -1918 0 +-1901 -1919 0 +-1902 -1920 0 +-1897 -1909 0 +-1898 -1910 0 +-1899 -1911 0 +-1900 -1912 0 +-1901 -1913 0 +-1902 -1914 0 +-1897 -1903 0 +-1898 -1904 0 +-1899 -1905 0 +-1900 -1906 0 +-1901 -1907 0 +-1902 -1908 0 +-1891 -1921 0 +-1892 -1922 0 +-1893 -1923 0 +-1894 -1924 0 +-1895 -1925 0 +-1896 -1926 0 +-1891 -1915 0 +-1892 -1916 0 +-1893 -1917 0 +-1894 -1918 0 +-1895 -1919 0 +-1896 -1920 0 +-1891 -1903 0 +-1892 -1904 0 +-1893 -1905 0 +-1894 -1906 0 +-1895 -1907 0 +-1896 -1908 0 +-1891 -1897 0 +-1892 -1898 0 +-1893 -1899 0 +-1894 -1900 0 +-1895 -1901 0 +-1896 -1902 0 +-1885 -1915 0 +-1886 -1916 0 +-1887 -1917 0 +-1888 -1918 0 +-1889 -1919 0 +-1890 -1920 0 +-1885 -1909 0 +-1886 -1910 0 +-1887 -1911 0 +-1888 -1912 0 +-1889 -1913 0 +-1890 -1914 0 +-1885 -1903 0 +-1886 -1904 0 +-1887 -1905 0 +-1888 -1906 0 +-1889 -1907 0 +-1890 -1908 0 +-1885 -1897 0 +-1886 -1898 0 +-1887 -1899 0 +-1888 -1900 0 +-1889 -1901 0 +-1890 -1902 0 +-1885 -1891 0 +-1886 -1892 0 +-1887 -1893 0 +-1888 -1894 0 +-1889 -1895 0 +-1890 -1896 0 +-1879 -1909 0 +-1880 -1910 0 +-1881 -1911 0 +-1882 -1912 0 +-1883 -1913 0 +-1884 -1914 0 +-1879 -1903 0 +-1880 -1904 0 +-1881 -1905 0 +-1882 -1906 0 +-1883 -1907 0 +-1884 -1908 0 +-1879 -1897 0 +-1880 -1898 0 +-1881 -1899 0 +-1882 -1900 0 +-1883 -1901 0 +-1884 -1902 0 +-1879 -1891 0 +-1880 -1892 0 +-1881 -1893 0 +-1882 -1894 0 +-1883 -1895 0 +-1884 -1896 0 +-1873 -1903 0 +-1874 -1904 0 +-1875 -1905 0 +-1876 -1906 0 +-1877 -1907 0 +-1878 -1908 0 +-1873 -1897 0 +-1874 -1898 0 +-1875 -1899 0 +-1876 -1900 0 +-1877 -1901 0 +-1878 -1902 0 +-1873 -1891 0 +-1874 -1892 0 +-1875 -1893 0 +-1876 -1894 0 +-1877 -1895 0 +-1878 -1896 0 +-1873 -1885 0 +-1874 -1886 0 +-1875 -1887 0 +-1876 -1888 0 +-1877 -1889 0 +-1878 -1890 0 +-1873 -1879 0 +-1874 -1880 0 +-1875 -1881 0 +-1876 -1882 0 +-1877 -1883 0 +-1878 -1884 0 +-1867 -1897 0 +-1868 -1898 0 +-1869 -1899 0 +-1870 -1900 0 +-1871 -1901 0 +-1872 -1902 0 +-1867 -1891 0 +-1868 -1892 0 +-1869 -1893 0 +-1870 -1894 0 +-1871 -1895 0 +-1872 -1896 0 +-1867 -1885 0 +-1868 -1886 0 +-1869 -1887 0 +-1870 -1888 0 +-1871 -1889 0 +-1872 -1890 0 +-1867 -1879 0 +-1868 -1880 0 +-1869 -1881 0 +-1870 -1882 0 +-1871 -1883 0 +-1872 -1884 0 +-1867 -1873 0 +-1868 -1874 0 +-1869 -1875 0 +-1870 -1876 0 +-1871 -1877 0 +-1872 -1878 0 +-1861 -1891 0 +-1862 -1892 0 +-1863 -1893 0 +-1864 -1894 0 +-1865 -1895 0 +-1866 -1896 0 +-1861 -1885 0 +-1862 -1886 0 +-1863 -1887 0 +-1864 -1888 0 +-1865 -1889 0 +-1866 -1890 0 +-1861 -1879 0 +-1862 -1880 0 +-1863 -1881 0 +-1864 -1882 0 +-1865 -1883 0 +-1866 -1884 0 +-1861 -1873 0 +-1862 -1874 0 +-1863 -1875 0 +-1864 -1876 0 +-1865 -1877 0 +-1866 -1878 0 +-1861 -1867 0 +-1862 -1868 0 +-1863 -1869 0 +-1864 -1870 0 +-1865 -1871 0 +-1866 -1872 0 +-1855 -1885 0 +-1856 -1886 0 +-1857 -1887 0 +-1858 -1888 0 +-1859 -1889 0 +-1860 -1890 0 +-1855 -1879 0 +-1856 -1880 0 +-1857 -1881 0 +-1858 -1882 0 +-1859 -1883 0 +-1860 -1884 0 +-1855 -1873 0 +-1856 -1874 0 +-1857 -1875 0 +-1858 -1876 0 +-1859 -1877 0 +-1860 -1878 0 +-1855 -1867 0 +-1856 -1868 0 +-1857 -1869 0 +-1858 -1870 0 +-1859 -1871 0 +-1860 -1872 0 +-1855 -1861 0 +-1856 -1862 0 +-1857 -1863 0 +-1858 -1864 0 +-1859 -1865 0 +-1860 -1866 0 +-1849 -1879 0 +-1850 -1880 0 +-1851 -1881 0 +-1852 -1882 0 +-1853 -1883 0 +-1854 -1884 0 +-1849 -1873 0 +-1850 -1874 0 +-1851 -1875 0 +-1852 -1876 0 +-1853 -1877 0 +-1854 -1878 0 +-1849 -1867 0 +-1850 -1868 0 +-1851 -1869 0 +-1852 -1870 0 +-1853 -1871 0 +-1854 -1872 0 +-1849 -1861 0 +-1850 -1862 0 +-1851 -1863 0 +-1852 -1864 0 +-1853 -1865 0 +-1854 -1866 0 +-1849 -1855 0 +-1850 -1856 0 +-1851 -1857 0 +-1852 -1858 0 +-1853 -1859 0 +-1854 -1860 0 +-1843 -1873 0 +-1844 -1874 0 +-1845 -1875 0 +-1846 -1876 0 +-1847 -1877 0 +-1848 -1878 0 +-1843 -1867 0 +-1844 -1868 0 +-1845 -1869 0 +-1846 -1870 0 +-1847 -1871 0 +-1848 -1872 0 +-1843 -1861 0 +-1844 -1862 0 +-1845 -1863 0 +-1846 -1864 0 +-1847 -1865 0 +-1848 -1866 0 +-1843 -1855 0 +-1844 -1856 0 +-1845 -1857 0 +-1846 -1858 0 +-1847 -1859 0 +-1848 -1860 0 +-1843 -1849 0 +-1844 -1850 0 +-1845 -1851 0 +-1846 -1852 0 +-1847 -1853 0 +-1848 -1854 0 +-1837 -1867 0 +-1838 -1868 0 +-1839 -1869 0 +-1840 -1870 0 +-1841 -1871 0 +-1842 -1872 0 +-1837 -1861 0 +-1838 -1862 0 +-1839 -1863 0 +-1840 -1864 0 +-1841 -1865 0 +-1842 -1866 0 +-1837 -1855 0 +-1838 -1856 0 +-1839 -1857 0 +-1840 -1858 0 +-1841 -1859 0 +-1842 -1860 0 +-1837 -1849 0 +-1838 -1850 0 +-1839 -1851 0 +-1840 -1852 0 +-1841 -1853 0 +-1842 -1854 0 +-1837 -1843 0 +-1838 -1844 0 +-1839 -1845 0 +-1840 -1846 0 +-1841 -1847 0 +-1842 -1848 0 +-1831 -1861 0 +-1832 -1862 0 +-1833 -1863 0 +-1834 -1864 0 +-1835 -1865 0 +-1836 -1866 0 +-1831 -1855 0 +-1832 -1856 0 +-1833 -1857 0 +-1834 -1858 0 +-1835 -1859 0 +-1836 -1860 0 +-1831 -1849 0 +-1832 -1850 0 +-1833 -1851 0 +-1834 -1852 0 +-1835 -1853 0 +-1836 -1854 0 +-1831 -1843 0 +-1832 -1844 0 +-1833 -1845 0 +-1834 -1846 0 +-1835 -1847 0 +-1836 -1848 0 +-1831 -1837 0 +-1832 -1838 0 +-1833 -1839 0 +-1834 -1840 0 +-1835 -1841 0 +-1836 -1842 0 +-1825 -1855 0 +-1826 -1856 0 +-1827 -1857 0 +-1828 -1858 0 +-1829 -1859 0 +-1830 -1860 0 +-1825 -1849 0 +-1826 -1850 0 +-1827 -1851 0 +-1828 -1852 0 +-1829 -1853 0 +-1830 -1854 0 +-1825 -1843 0 +-1826 -1844 0 +-1827 -1845 0 +-1828 -1846 0 +-1829 -1847 0 +-1830 -1848 0 +-1825 -1837 0 +-1826 -1838 0 +-1827 -1839 0 +-1828 -1840 0 +-1829 -1841 0 +-1830 -1842 0 +-1825 -1831 0 +-1826 -1832 0 +-1827 -1833 0 +-1828 -1834 0 +-1829 -1835 0 +-1830 -1836 0 +-1819 -1849 0 +-1820 -1850 0 +-1821 -1851 0 +-1822 -1852 0 +-1823 -1853 0 +-1824 -1854 0 +-1819 -1843 0 +-1820 -1844 0 +-1821 -1845 0 +-1822 -1846 0 +-1823 -1847 0 +-1824 -1848 0 +-1819 -1837 0 +-1820 -1838 0 +-1821 -1839 0 +-1822 -1840 0 +-1823 -1841 0 +-1824 -1842 0 +-1819 -1831 0 +-1820 -1832 0 +-1821 -1833 0 +-1822 -1834 0 +-1823 -1835 0 +-1824 -1836 0 +-1819 -1825 0 +-1820 -1826 0 +-1821 -1827 0 +-1822 -1828 0 +-1823 -1829 0 +-1824 -1830 0 +-1813 -1843 0 +-1814 -1844 0 +-1815 -1845 0 +-1816 -1846 0 +-1817 -1847 0 +-1818 -1848 0 +-1813 -1837 0 +-1814 -1838 0 +-1815 -1839 0 +-1816 -1840 0 +-1817 -1841 0 +-1818 -1842 0 +-1813 -1831 0 +-1814 -1832 0 +-1815 -1833 0 +-1816 -1834 0 +-1817 -1835 0 +-1818 -1836 0 +-1813 -1825 0 +-1814 -1826 0 +-1815 -1827 0 +-1816 -1828 0 +-1817 -1829 0 +-1818 -1830 0 +-1813 -1819 0 +-1814 -1820 0 +-1815 -1821 0 +-1816 -1822 0 +-1817 -1823 0 +-1818 -1824 0 +-1807 -1837 0 +-1808 -1838 0 +-1809 -1839 0 +-1810 -1840 0 +-1811 -1841 0 +-1812 -1842 0 +-1807 -1831 0 +-1808 -1832 0 +-1809 -1833 0 +-1810 -1834 0 +-1811 -1835 0 +-1812 -1836 0 +-1807 -1825 0 +-1808 -1826 0 +-1809 -1827 0 +-1810 -1828 0 +-1811 -1829 0 +-1812 -1830 0 +-1807 -1819 0 +-1808 -1820 0 +-1809 -1821 0 +-1810 -1822 0 +-1811 -1823 0 +-1812 -1824 0 +-1807 -1813 0 +-1808 -1814 0 +-1809 -1815 0 +-1810 -1816 0 +-1811 -1817 0 +-1812 -1818 0 +-1801 -1831 0 +-1802 -1832 0 +-1803 -1833 0 +-1804 -1834 0 +-1805 -1835 0 +-1806 -1836 0 +-1801 -1825 0 +-1802 -1826 0 +-1803 -1827 0 +-1804 -1828 0 +-1805 -1829 0 +-1806 -1830 0 +-1801 -1819 0 +-1802 -1820 0 +-1803 -1821 0 +-1804 -1822 0 +-1805 -1823 0 +-1806 -1824 0 +-1801 -1813 0 +-1802 -1814 0 +-1803 -1815 0 +-1804 -1816 0 +-1805 -1817 0 +-1806 -1818 0 +-1801 -1807 0 +-1802 -1808 0 +-1803 -1809 0 +-1804 -1810 0 +-1805 -1811 0 +-1806 -1812 0 +-1795 -1825 0 +-1796 -1826 0 +-1797 -1827 0 +-1798 -1828 0 +-1799 -1829 0 +-1800 -1830 0 +-1795 -1819 0 +-1796 -1820 0 +-1797 -1821 0 +-1798 -1822 0 +-1799 -1823 0 +-1800 -1824 0 +-1795 -1813 0 +-1796 -1814 0 +-1797 -1815 0 +-1798 -1816 0 +-1799 -1817 0 +-1800 -1818 0 +-1795 -1807 0 +-1796 -1808 0 +-1797 -1809 0 +-1798 -1810 0 +-1799 -1811 0 +-1800 -1812 0 +-1795 -1801 0 +-1796 -1802 0 +-1797 -1803 0 +-1798 -1804 0 +-1799 -1805 0 +-1800 -1806 0 +-1789 -1819 0 +-1790 -1820 0 +-1791 -1821 0 +-1792 -1822 0 +-1793 -1823 0 +-1794 -1824 0 +-1789 -1813 0 +-1790 -1814 0 +-1791 -1815 0 +-1792 -1816 0 +-1793 -1817 0 +-1794 -1818 0 +-1789 -1807 0 +-1790 -1808 0 +-1791 -1809 0 +-1792 -1810 0 +-1793 -1811 0 +-1794 -1812 0 +-1789 -1801 0 +-1790 -1802 0 +-1791 -1803 0 +-1792 -1804 0 +-1793 -1805 0 +-1794 -1806 0 +-1789 -1795 0 +-1790 -1796 0 +-1791 -1797 0 +-1792 -1798 0 +-1793 -1799 0 +-1794 -1800 0 +-1783 -1813 0 +-1784 -1814 0 +-1785 -1815 0 +-1786 -1816 0 +-1787 -1817 0 +-1788 -1818 0 +-1783 -1807 0 +-1784 -1808 0 +-1785 -1809 0 +-1786 -1810 0 +-1787 -1811 0 +-1788 -1812 0 +-1783 -1801 0 +-1784 -1802 0 +-1785 -1803 0 +-1786 -1804 0 +-1787 -1805 0 +-1788 -1806 0 +-1783 -1795 0 +-1784 -1796 0 +-1785 -1797 0 +-1786 -1798 0 +-1787 -1799 0 +-1788 -1800 0 +-1783 -1789 0 +-1784 -1790 0 +-1785 -1791 0 +-1786 -1792 0 +-1787 -1793 0 +-1788 -1794 0 +-1777 -1807 0 +-1778 -1808 0 +-1779 -1809 0 +-1780 -1810 0 +-1781 -1811 0 +-1782 -1812 0 +-1777 -1801 0 +-1778 -1802 0 +-1779 -1803 0 +-1780 -1804 0 +-1781 -1805 0 +-1782 -1806 0 +-1777 -1795 0 +-1778 -1796 0 +-1779 -1797 0 +-1780 -1798 0 +-1781 -1799 0 +-1782 -1800 0 +-1777 -1789 0 +-1778 -1790 0 +-1779 -1791 0 +-1780 -1792 0 +-1781 -1793 0 +-1782 -1794 0 +-1777 -1783 0 +-1778 -1784 0 +-1779 -1785 0 +-1780 -1786 0 +-1781 -1787 0 +-1782 -1788 0 +-1771 -1801 0 +-1772 -1802 0 +-1773 -1803 0 +-1774 -1804 0 +-1775 -1805 0 +-1776 -1806 0 +-1771 -1795 0 +-1772 -1796 0 +-1773 -1797 0 +-1774 -1798 0 +-1775 -1799 0 +-1776 -1800 0 +-1771 -1789 0 +-1772 -1790 0 +-1773 -1791 0 +-1774 -1792 0 +-1775 -1793 0 +-1776 -1794 0 +-1771 -1783 0 +-1772 -1784 0 +-1773 -1785 0 +-1774 -1786 0 +-1775 -1787 0 +-1776 -1788 0 +-1771 -1777 0 +-1772 -1778 0 +-1773 -1779 0 +-1774 -1780 0 +-1775 -1781 0 +-1776 -1782 0 +-1765 -1795 0 +-1766 -1796 0 +-1767 -1797 0 +-1768 -1798 0 +-1769 -1799 0 +-1770 -1800 0 +-1765 -1789 0 +-1766 -1790 0 +-1767 -1791 0 +-1768 -1792 0 +-1769 -1793 0 +-1770 -1794 0 +-1765 -1783 0 +-1766 -1784 0 +-1767 -1785 0 +-1768 -1786 0 +-1769 -1787 0 +-1770 -1788 0 +-1765 -1777 0 +-1766 -1778 0 +-1767 -1779 0 +-1768 -1780 0 +-1769 -1781 0 +-1770 -1782 0 +-1765 -1771 0 +-1766 -1772 0 +-1767 -1773 0 +-1768 -1774 0 +-1769 -1775 0 +-1770 -1776 0 +-1759 -1789 0 +-1760 -1790 0 +-1761 -1791 0 +-1762 -1792 0 +-1763 -1793 0 +-1764 -1794 0 +-1759 -1777 0 +-1760 -1778 0 +-1761 -1779 0 +-1762 -1780 0 +-1763 -1781 0 +-1764 -1782 0 +-1759 -1771 0 +-1760 -1772 0 +-1761 -1773 0 +-1762 -1774 0 +-1763 -1775 0 +-1764 -1776 0 +-1759 -1765 0 +-1760 -1766 0 +-1761 -1767 0 +-1762 -1768 0 +-1763 -1769 0 +-1764 -1770 0 +-1753 -1783 0 +-1754 -1784 0 +-1755 -1785 0 +-1756 -1786 0 +-1757 -1787 0 +-1758 -1788 0 +-1753 -1777 0 +-1754 -1778 0 +-1755 -1779 0 +-1756 -1780 0 +-1757 -1781 0 +-1758 -1782 0 +-1753 -1771 0 +-1754 -1772 0 +-1755 -1773 0 +-1756 -1774 0 +-1757 -1775 0 +-1758 -1776 0 +-1753 -1765 0 +-1754 -1766 0 +-1755 -1767 0 +-1756 -1768 0 +-1757 -1769 0 +-1758 -1770 0 +-1753 -1759 0 +-1754 -1760 0 +-1755 -1761 0 +-1756 -1762 0 +-1757 -1763 0 +-1758 -1764 0 +-1747 -1777 0 +-1748 -1778 0 +-1749 -1779 0 +-1750 -1780 0 +-1751 -1781 0 +-1752 -1782 0 +-1747 -1771 0 +-1748 -1772 0 +-1749 -1773 0 +-1750 -1774 0 +-1751 -1775 0 +-1752 -1776 0 +-1747 -1765 0 +-1748 -1766 0 +-1749 -1767 0 +-1750 -1768 0 +-1751 -1769 0 +-1752 -1770 0 +-1747 -1759 0 +-1748 -1760 0 +-1749 -1761 0 +-1750 -1762 0 +-1751 -1763 0 +-1752 -1764 0 +-1747 -1753 0 +-1748 -1754 0 +-1749 -1755 0 +-1750 -1756 0 +-1751 -1757 0 +-1752 -1758 0 +-1741 -1771 0 +-1742 -1772 0 +-1743 -1773 0 +-1744 -1774 0 +-1745 -1775 0 +-1746 -1776 0 +-1741 -1765 0 +-1742 -1766 0 +-1743 -1767 0 +-1744 -1768 0 +-1745 -1769 0 +-1746 -1770 0 +-1741 -1759 0 +-1742 -1760 0 +-1743 -1761 0 +-1744 -1762 0 +-1745 -1763 0 +-1746 -1764 0 +-1741 -1753 0 +-1742 -1754 0 +-1743 -1755 0 +-1744 -1756 0 +-1745 -1757 0 +-1746 -1758 0 +-1741 -1747 0 +-1742 -1748 0 +-1743 -1749 0 +-1744 -1750 0 +-1745 -1751 0 +-1746 -1752 0 +-1735 -1765 0 +-1736 -1766 0 +-1737 -1767 0 +-1738 -1768 0 +-1739 -1769 0 +-1740 -1770 0 +-1735 -1759 0 +-1736 -1760 0 +-1737 -1761 0 +-1738 -1762 0 +-1739 -1763 0 +-1740 -1764 0 +-1735 -1753 0 +-1736 -1754 0 +-1737 -1755 0 +-1738 -1756 0 +-1739 -1757 0 +-1740 -1758 0 +-1735 -1747 0 +-1736 -1748 0 +-1737 -1749 0 +-1738 -1750 0 +-1739 -1751 0 +-1740 -1752 0 +-1735 -1741 0 +-1736 -1742 0 +-1737 -1743 0 +-1738 -1744 0 +-1739 -1745 0 +-1740 -1746 0 +-1729 -1759 0 +-1730 -1760 0 +-1731 -1761 0 +-1732 -1762 0 +-1733 -1763 0 +-1734 -1764 0 +-1729 -1753 0 +-1730 -1754 0 +-1731 -1755 0 +-1732 -1756 0 +-1733 -1757 0 +-1734 -1758 0 +-1729 -1747 0 +-1730 -1748 0 +-1731 -1749 0 +-1732 -1750 0 +-1733 -1751 0 +-1734 -1752 0 +-1729 -1741 0 +-1730 -1742 0 +-1731 -1743 0 +-1732 -1744 0 +-1733 -1745 0 +-1734 -1746 0 +-1729 -1735 0 +-1730 -1736 0 +-1731 -1737 0 +-1732 -1738 0 +-1733 -1739 0 +-1734 -1740 0 +-1723 -1753 0 +-1724 -1754 0 +-1725 -1755 0 +-1726 -1756 0 +-1727 -1757 0 +-1728 -1758 0 +-1723 -1747 0 +-1724 -1748 0 +-1725 -1749 0 +-1726 -1750 0 +-1727 -1751 0 +-1728 -1752 0 +-1723 -1741 0 +-1724 -1742 0 +-1725 -1743 0 +-1726 -1744 0 +-1727 -1745 0 +-1728 -1746 0 +-1723 -1735 0 +-1724 -1736 0 +-1725 -1737 0 +-1726 -1738 0 +-1727 -1739 0 +-1728 -1740 0 +-1723 -1729 0 +-1724 -1730 0 +-1725 -1731 0 +-1726 -1732 0 +-1727 -1733 0 +-1728 -1734 0 +-1717 -1747 0 +-1718 -1748 0 +-1719 -1749 0 +-1720 -1750 0 +-1721 -1751 0 +-1722 -1752 0 +-1717 -1741 0 +-1718 -1742 0 +-1719 -1743 0 +-1720 -1744 0 +-1721 -1745 0 +-1722 -1746 0 +-1717 -1735 0 +-1718 -1736 0 +-1719 -1737 0 +-1720 -1738 0 +-1721 -1739 0 +-1722 -1740 0 +-1717 -1729 0 +-1718 -1730 0 +-1719 -1731 0 +-1720 -1732 0 +-1721 -1733 0 +-1722 -1734 0 +-1717 -1723 0 +-1718 -1724 0 +-1719 -1725 0 +-1720 -1726 0 +-1721 -1727 0 +-1722 -1728 0 +-1711 -1741 0 +-1712 -1742 0 +-1713 -1743 0 +-1714 -1744 0 +-1715 -1745 0 +-1716 -1746 0 +-1711 -1735 0 +-1712 -1736 0 +-1713 -1737 0 +-1714 -1738 0 +-1715 -1739 0 +-1716 -1740 0 +-1711 -1729 0 +-1712 -1730 0 +-1713 -1731 0 +-1714 -1732 0 +-1715 -1733 0 +-1716 -1734 0 +-1711 -1723 0 +-1712 -1724 0 +-1713 -1725 0 +-1714 -1726 0 +-1715 -1727 0 +-1716 -1728 0 +-1711 -1717 0 +-1712 -1718 0 +-1713 -1719 0 +-1714 -1720 0 +-1715 -1721 0 +-1716 -1722 0 +-1705 -1735 0 +-1706 -1736 0 +-1707 -1737 0 +-1708 -1738 0 +-1709 -1739 0 +-1710 -1740 0 +-1705 -1729 0 +-1706 -1730 0 +-1707 -1731 0 +-1708 -1732 0 +-1709 -1733 0 +-1710 -1734 0 +-1705 -1723 0 +-1706 -1724 0 +-1707 -1725 0 +-1708 -1726 0 +-1709 -1727 0 +-1710 -1728 0 +-1705 -1717 0 +-1706 -1718 0 +-1707 -1719 0 +-1708 -1720 0 +-1709 -1721 0 +-1710 -1722 0 +-1705 -1711 0 +-1706 -1712 0 +-1707 -1713 0 +-1708 -1714 0 +-1709 -1715 0 +-1710 -1716 0 +-1699 -1729 0 +-1700 -1730 0 +-1701 -1731 0 +-1702 -1732 0 +-1703 -1733 0 +-1704 -1734 0 +-1699 -1723 0 +-1700 -1724 0 +-1701 -1725 0 +-1702 -1726 0 +-1703 -1727 0 +-1704 -1728 0 +-1699 -1717 0 +-1700 -1718 0 +-1701 -1719 0 +-1702 -1720 0 +-1703 -1721 0 +-1704 -1722 0 +-1699 -1711 0 +-1700 -1712 0 +-1701 -1713 0 +-1702 -1714 0 +-1703 -1715 0 +-1704 -1716 0 +-1699 -1705 0 +-1700 -1706 0 +-1701 -1707 0 +-1702 -1708 0 +-1703 -1709 0 +-1704 -1710 0 +-1693 -1723 0 +-1694 -1724 0 +-1695 -1725 0 +-1696 -1726 0 +-1697 -1727 0 +-1698 -1728 0 +-1693 -1717 0 +-1694 -1718 0 +-1695 -1719 0 +-1696 -1720 0 +-1697 -1721 0 +-1698 -1722 0 +-1693 -1711 0 +-1694 -1712 0 +-1695 -1713 0 +-1696 -1714 0 +-1697 -1715 0 +-1698 -1716 0 +-1693 -1705 0 +-1694 -1706 0 +-1695 -1707 0 +-1696 -1708 0 +-1697 -1709 0 +-1698 -1710 0 +-1687 -1717 0 +-1688 -1718 0 +-1689 -1719 0 +-1690 -1720 0 +-1691 -1721 0 +-1692 -1722 0 +-1687 -1711 0 +-1688 -1712 0 +-1689 -1713 0 +-1690 -1714 0 +-1691 -1715 0 +-1692 -1716 0 +-1687 -1705 0 +-1688 -1706 0 +-1689 -1707 0 +-1690 -1708 0 +-1691 -1709 0 +-1692 -1710 0 +-1687 -1699 0 +-1688 -1700 0 +-1689 -1701 0 +-1690 -1702 0 +-1691 -1703 0 +-1692 -1704 0 +-1687 -1693 0 +-1688 -1694 0 +-1689 -1695 0 +-1690 -1696 0 +-1691 -1697 0 +-1692 -1698 0 +-1681 -1711 0 +-1682 -1712 0 +-1683 -1713 0 +-1684 -1714 0 +-1685 -1715 0 +-1686 -1716 0 +-1681 -1705 0 +-1682 -1706 0 +-1683 -1707 0 +-1684 -1708 0 +-1685 -1709 0 +-1686 -1710 0 +-1681 -1699 0 +-1682 -1700 0 +-1683 -1701 0 +-1684 -1702 0 +-1685 -1703 0 +-1686 -1704 0 +-1681 -1693 0 +-1682 -1694 0 +-1683 -1695 0 +-1684 -1696 0 +-1685 -1697 0 +-1686 -1698 0 +-1681 -1687 0 +-1682 -1688 0 +-1683 -1689 0 +-1684 -1690 0 +-1685 -1691 0 +-1686 -1692 0 +-1675 -1705 0 +-1676 -1706 0 +-1677 -1707 0 +-1678 -1708 0 +-1679 -1709 0 +-1680 -1710 0 +-1675 -1699 0 +-1676 -1700 0 +-1677 -1701 0 +-1678 -1702 0 +-1679 -1703 0 +-1680 -1704 0 +-1675 -1693 0 +-1676 -1694 0 +-1677 -1695 0 +-1678 -1696 0 +-1679 -1697 0 +-1680 -1698 0 +-1675 -1687 0 +-1676 -1688 0 +-1677 -1689 0 +-1678 -1690 0 +-1679 -1691 0 +-1680 -1692 0 +-1675 -1681 0 +-1676 -1682 0 +-1677 -1683 0 +-1678 -1684 0 +-1679 -1685 0 +-1680 -1686 0 +-1669 -1693 0 +-1670 -1694 0 +-1671 -1695 0 +-1672 -1696 0 +-1673 -1697 0 +-1674 -1698 0 +-1669 -1681 0 +-1670 -1682 0 +-1671 -1683 0 +-1672 -1684 0 +-1673 -1685 0 +-1674 -1686 0 +-1669 -1675 0 +-1670 -1676 0 +-1671 -1677 0 +-1672 -1678 0 +-1673 -1679 0 +-1674 -1680 0 +-1663 -1693 0 +-1664 -1694 0 +-1665 -1695 0 +-1666 -1696 0 +-1667 -1697 0 +-1668 -1698 0 +-1663 -1687 0 +-1664 -1688 0 +-1665 -1689 0 +-1666 -1690 0 +-1667 -1691 0 +-1668 -1692 0 +-1663 -1681 0 +-1664 -1682 0 +-1665 -1683 0 +-1666 -1684 0 +-1667 -1685 0 +-1668 -1686 0 +-1663 -1675 0 +-1664 -1676 0 +-1665 -1677 0 +-1666 -1678 0 +-1667 -1679 0 +-1668 -1680 0 +-1663 -1669 0 +-1664 -1670 0 +-1665 -1671 0 +-1666 -1672 0 +-1667 -1673 0 +-1668 -1674 0 +-1657 -1687 0 +-1658 -1688 0 +-1659 -1689 0 +-1660 -1690 0 +-1661 -1691 0 +-1662 -1692 0 +-1657 -1681 0 +-1658 -1682 0 +-1659 -1683 0 +-1660 -1684 0 +-1661 -1685 0 +-1662 -1686 0 +-1657 -1675 0 +-1658 -1676 0 +-1659 -1677 0 +-1660 -1678 0 +-1661 -1679 0 +-1662 -1680 0 +-1657 -1669 0 +-1658 -1670 0 +-1659 -1671 0 +-1660 -1672 0 +-1661 -1673 0 +-1662 -1674 0 +-1657 -1663 0 +-1658 -1664 0 +-1659 -1665 0 +-1660 -1666 0 +-1661 -1667 0 +-1662 -1668 0 +-1651 -1681 0 +-1652 -1682 0 +-1653 -1683 0 +-1654 -1684 0 +-1655 -1685 0 +-1656 -1686 0 +-1651 -1669 0 +-1652 -1670 0 +-1653 -1671 0 +-1654 -1672 0 +-1655 -1673 0 +-1656 -1674 0 +-1651 -1663 0 +-1652 -1664 0 +-1653 -1665 0 +-1654 -1666 0 +-1655 -1667 0 +-1656 -1668 0 +-1651 -1657 0 +-1652 -1658 0 +-1653 -1659 0 +-1654 -1660 0 +-1655 -1661 0 +-1656 -1662 0 +-1645 -1675 0 +-1646 -1676 0 +-1647 -1677 0 +-1648 -1678 0 +-1649 -1679 0 +-1650 -1680 0 +-1645 -1669 0 +-1646 -1670 0 +-1647 -1671 0 +-1648 -1672 0 +-1649 -1673 0 +-1650 -1674 0 +-1645 -1663 0 +-1646 -1664 0 +-1647 -1665 0 +-1648 -1666 0 +-1649 -1667 0 +-1650 -1668 0 +-1645 -1657 0 +-1646 -1658 0 +-1647 -1659 0 +-1648 -1660 0 +-1649 -1661 0 +-1650 -1662 0 +-1639 -1669 0 +-1640 -1670 0 +-1641 -1671 0 +-1642 -1672 0 +-1643 -1673 0 +-1644 -1674 0 +-1639 -1663 0 +-1640 -1664 0 +-1641 -1665 0 +-1642 -1666 0 +-1643 -1667 0 +-1644 -1668 0 +-1639 -1651 0 +-1640 -1652 0 +-1641 -1653 0 +-1642 -1654 0 +-1643 -1655 0 +-1644 -1656 0 +-1639 -1645 0 +-1640 -1646 0 +-1641 -1647 0 +-1642 -1648 0 +-1643 -1649 0 +-1644 -1650 0 +-1633 -1663 0 +-1634 -1664 0 +-1635 -1665 0 +-1636 -1666 0 +-1637 -1667 0 +-1638 -1668 0 +-1633 -1657 0 +-1634 -1658 0 +-1635 -1659 0 +-1636 -1660 0 +-1637 -1661 0 +-1638 -1662 0 +-1633 -1651 0 +-1634 -1652 0 +-1635 -1653 0 +-1636 -1654 0 +-1637 -1655 0 +-1638 -1656 0 +-1633 -1645 0 +-1634 -1646 0 +-1635 -1647 0 +-1636 -1648 0 +-1637 -1649 0 +-1638 -1650 0 +-1633 -1639 0 +-1634 -1640 0 +-1635 -1641 0 +-1636 -1642 0 +-1637 -1643 0 +-1638 -1644 0 +-1627 -1657 0 +-1628 -1658 0 +-1629 -1659 0 +-1630 -1660 0 +-1631 -1661 0 +-1632 -1662 0 +-1627 -1651 0 +-1628 -1652 0 +-1629 -1653 0 +-1630 -1654 0 +-1631 -1655 0 +-1632 -1656 0 +-1627 -1645 0 +-1628 -1646 0 +-1629 -1647 0 +-1630 -1648 0 +-1631 -1649 0 +-1632 -1650 0 +-1627 -1633 0 +-1628 -1634 0 +-1629 -1635 0 +-1630 -1636 0 +-1631 -1637 0 +-1632 -1638 0 +-1621 -1645 0 +-1622 -1646 0 +-1623 -1647 0 +-1624 -1648 0 +-1625 -1649 0 +-1626 -1650 0 +-1621 -1639 0 +-1622 -1640 0 +-1623 -1641 0 +-1624 -1642 0 +-1625 -1643 0 +-1626 -1644 0 +-1621 -1633 0 +-1622 -1634 0 +-1623 -1635 0 +-1624 -1636 0 +-1625 -1637 0 +-1626 -1638 0 +-1621 -1627 0 +-1622 -1628 0 +-1623 -1629 0 +-1624 -1630 0 +-1625 -1631 0 +-1626 -1632 0 +-1615 -1645 0 +-1616 -1646 0 +-1617 -1647 0 +-1618 -1648 0 +-1619 -1649 0 +-1620 -1650 0 +-1615 -1639 0 +-1616 -1640 0 +-1617 -1641 0 +-1618 -1642 0 +-1619 -1643 0 +-1620 -1644 0 +-1615 -1633 0 +-1616 -1634 0 +-1617 -1635 0 +-1618 -1636 0 +-1619 -1637 0 +-1620 -1638 0 +-1615 -1627 0 +-1616 -1628 0 +-1617 -1629 0 +-1618 -1630 0 +-1619 -1631 0 +-1620 -1632 0 +-1615 -1621 0 +-1616 -1622 0 +-1617 -1623 0 +-1618 -1624 0 +-1619 -1625 0 +-1620 -1626 0 +-1609 -1639 0 +-1610 -1640 0 +-1611 -1641 0 +-1612 -1642 0 +-1613 -1643 0 +-1614 -1644 0 +-1609 -1633 0 +-1610 -1634 0 +-1611 -1635 0 +-1612 -1636 0 +-1613 -1637 0 +-1614 -1638 0 +-1609 -1627 0 +-1610 -1628 0 +-1611 -1629 0 +-1612 -1630 0 +-1613 -1631 0 +-1614 -1632 0 +-1609 -1621 0 +-1610 -1622 0 +-1611 -1623 0 +-1612 -1624 0 +-1613 -1625 0 +-1614 -1626 0 +-1603 -1633 0 +-1604 -1634 0 +-1605 -1635 0 +-1606 -1636 0 +-1607 -1637 0 +-1608 -1638 0 +-1603 -1627 0 +-1604 -1628 0 +-1605 -1629 0 +-1606 -1630 0 +-1607 -1631 0 +-1608 -1632 0 +-1603 -1621 0 +-1604 -1622 0 +-1605 -1623 0 +-1606 -1624 0 +-1607 -1625 0 +-1608 -1626 0 +-1603 -1615 0 +-1604 -1616 0 +-1605 -1617 0 +-1606 -1618 0 +-1607 -1619 0 +-1608 -1620 0 +-1603 -1609 0 +-1604 -1610 0 +-1605 -1611 0 +-1606 -1612 0 +-1607 -1613 0 +-1608 -1614 0 +-1597 -1627 0 +-1598 -1628 0 +-1599 -1629 0 +-1600 -1630 0 +-1601 -1631 0 +-1602 -1632 0 +-1597 -1621 0 +-1598 -1622 0 +-1599 -1623 0 +-1600 -1624 0 +-1601 -1625 0 +-1602 -1626 0 +-1597 -1615 0 +-1598 -1616 0 +-1599 -1617 0 +-1600 -1618 0 +-1601 -1619 0 +-1602 -1620 0 +-1597 -1609 0 +-1598 -1610 0 +-1599 -1611 0 +-1600 -1612 0 +-1601 -1613 0 +-1602 -1614 0 +-1597 -1603 0 +-1598 -1604 0 +-1599 -1605 0 +-1600 -1606 0 +-1601 -1607 0 +-1602 -1608 0 +-1591 -1621 0 +-1592 -1622 0 +-1593 -1623 0 +-1594 -1624 0 +-1595 -1625 0 +-1596 -1626 0 +-1591 -1615 0 +-1592 -1616 0 +-1593 -1617 0 +-1594 -1618 0 +-1595 -1619 0 +-1596 -1620 0 +-1591 -1609 0 +-1592 -1610 0 +-1593 -1611 0 +-1594 -1612 0 +-1595 -1613 0 +-1596 -1614 0 +-1591 -1603 0 +-1592 -1604 0 +-1593 -1605 0 +-1594 -1606 0 +-1595 -1607 0 +-1596 -1608 0 +-1591 -1597 0 +-1592 -1598 0 +-1593 -1599 0 +-1594 -1600 0 +-1595 -1601 0 +-1596 -1602 0 +-1585 -1615 0 +-1586 -1616 0 +-1587 -1617 0 +-1588 -1618 0 +-1589 -1619 0 +-1590 -1620 0 +-1585 -1609 0 +-1586 -1610 0 +-1587 -1611 0 +-1588 -1612 0 +-1589 -1613 0 +-1590 -1614 0 +-1585 -1603 0 +-1586 -1604 0 +-1587 -1605 0 +-1588 -1606 0 +-1589 -1607 0 +-1590 -1608 0 +-1585 -1597 0 +-1586 -1598 0 +-1587 -1599 0 +-1588 -1600 0 +-1589 -1601 0 +-1590 -1602 0 +-1585 -1591 0 +-1586 -1592 0 +-1587 -1593 0 +-1588 -1594 0 +-1589 -1595 0 +-1590 -1596 0 +-1579 -1609 0 +-1580 -1610 0 +-1581 -1611 0 +-1582 -1612 0 +-1583 -1613 0 +-1584 -1614 0 +-1579 -1603 0 +-1580 -1604 0 +-1581 -1605 0 +-1582 -1606 0 +-1583 -1607 0 +-1584 -1608 0 +-1579 -1597 0 +-1580 -1598 0 +-1581 -1599 0 +-1582 -1600 0 +-1583 -1601 0 +-1584 -1602 0 +-1579 -1591 0 +-1580 -1592 0 +-1581 -1593 0 +-1582 -1594 0 +-1583 -1595 0 +-1584 -1596 0 +-1579 -1585 0 +-1580 -1586 0 +-1581 -1587 0 +-1582 -1588 0 +-1583 -1589 0 +-1584 -1590 0 +-1573 -1603 0 +-1574 -1604 0 +-1575 -1605 0 +-1576 -1606 0 +-1577 -1607 0 +-1578 -1608 0 +-1573 -1597 0 +-1574 -1598 0 +-1575 -1599 0 +-1576 -1600 0 +-1577 -1601 0 +-1578 -1602 0 +-1573 -1591 0 +-1574 -1592 0 +-1575 -1593 0 +-1576 -1594 0 +-1577 -1595 0 +-1578 -1596 0 +-1573 -1585 0 +-1574 -1586 0 +-1575 -1587 0 +-1576 -1588 0 +-1577 -1589 0 +-1578 -1590 0 +-1573 -1579 0 +-1574 -1580 0 +-1575 -1581 0 +-1576 -1582 0 +-1577 -1583 0 +-1578 -1584 0 +-1567 -1597 0 +-1568 -1598 0 +-1569 -1599 0 +-1570 -1600 0 +-1571 -1601 0 +-1572 -1602 0 +-1567 -1591 0 +-1568 -1592 0 +-1569 -1593 0 +-1570 -1594 0 +-1571 -1595 0 +-1572 -1596 0 +-1567 -1585 0 +-1568 -1586 0 +-1569 -1587 0 +-1570 -1588 0 +-1571 -1589 0 +-1572 -1590 0 +-1567 -1579 0 +-1568 -1580 0 +-1569 -1581 0 +-1570 -1582 0 +-1571 -1583 0 +-1572 -1584 0 +-1567 -1573 0 +-1568 -1574 0 +-1569 -1575 0 +-1570 -1576 0 +-1571 -1577 0 +-1572 -1578 0 +-1561 -1591 0 +-1562 -1592 0 +-1563 -1593 0 +-1564 -1594 0 +-1565 -1595 0 +-1566 -1596 0 +-1561 -1585 0 +-1562 -1586 0 +-1563 -1587 0 +-1564 -1588 0 +-1565 -1589 0 +-1566 -1590 0 +-1561 -1579 0 +-1562 -1580 0 +-1563 -1581 0 +-1564 -1582 0 +-1565 -1583 0 +-1566 -1584 0 +-1561 -1573 0 +-1562 -1574 0 +-1563 -1575 0 +-1564 -1576 0 +-1565 -1577 0 +-1566 -1578 0 +-1561 -1567 0 +-1562 -1568 0 +-1563 -1569 0 +-1564 -1570 0 +-1565 -1571 0 +-1566 -1572 0 +-1555 -1585 0 +-1556 -1586 0 +-1557 -1587 0 +-1558 -1588 0 +-1559 -1589 0 +-1560 -1590 0 +-1555 -1579 0 +-1556 -1580 0 +-1557 -1581 0 +-1558 -1582 0 +-1559 -1583 0 +-1560 -1584 0 +-1555 -1573 0 +-1556 -1574 0 +-1557 -1575 0 +-1558 -1576 0 +-1559 -1577 0 +-1560 -1578 0 +-1555 -1567 0 +-1556 -1568 0 +-1557 -1569 0 +-1558 -1570 0 +-1559 -1571 0 +-1560 -1572 0 +-1555 -1561 0 +-1556 -1562 0 +-1557 -1563 0 +-1558 -1564 0 +-1559 -1565 0 +-1560 -1566 0 +-1549 -1579 0 +-1550 -1580 0 +-1551 -1581 0 +-1552 -1582 0 +-1553 -1583 0 +-1554 -1584 0 +-1549 -1573 0 +-1550 -1574 0 +-1551 -1575 0 +-1552 -1576 0 +-1553 -1577 0 +-1554 -1578 0 +-1549 -1561 0 +-1550 -1562 0 +-1551 -1563 0 +-1552 -1564 0 +-1553 -1565 0 +-1554 -1566 0 +-1549 -1555 0 +-1550 -1556 0 +-1551 -1557 0 +-1552 -1558 0 +-1553 -1559 0 +-1554 -1560 0 +-1543 -1573 0 +-1544 -1574 0 +-1545 -1575 0 +-1546 -1576 0 +-1547 -1577 0 +-1548 -1578 0 +-1543 -1567 0 +-1544 -1568 0 +-1545 -1569 0 +-1546 -1570 0 +-1547 -1571 0 +-1548 -1572 0 +-1543 -1561 0 +-1544 -1562 0 +-1545 -1563 0 +-1546 -1564 0 +-1547 -1565 0 +-1548 -1566 0 +-1543 -1555 0 +-1544 -1556 0 +-1545 -1557 0 +-1546 -1558 0 +-1547 -1559 0 +-1548 -1560 0 +-1543 -1549 0 +-1544 -1550 0 +-1545 -1551 0 +-1546 -1552 0 +-1547 -1553 0 +-1548 -1554 0 +-1537 -1567 0 +-1538 -1568 0 +-1539 -1569 0 +-1540 -1570 0 +-1541 -1571 0 +-1542 -1572 0 +-1537 -1561 0 +-1538 -1562 0 +-1539 -1563 0 +-1540 -1564 0 +-1541 -1565 0 +-1542 -1566 0 +-1537 -1555 0 +-1538 -1556 0 +-1539 -1557 0 +-1540 -1558 0 +-1541 -1559 0 +-1542 -1560 0 +-1537 -1549 0 +-1538 -1550 0 +-1539 -1551 0 +-1540 -1552 0 +-1541 -1553 0 +-1542 -1554 0 +-1537 -1543 0 +-1538 -1544 0 +-1539 -1545 0 +-1540 -1546 0 +-1541 -1547 0 +-1542 -1548 0 +-1531 -1561 0 +-1532 -1562 0 +-1533 -1563 0 +-1534 -1564 0 +-1535 -1565 0 +-1536 -1566 0 +-1531 -1555 0 +-1532 -1556 0 +-1533 -1557 0 +-1534 -1558 0 +-1535 -1559 0 +-1536 -1560 0 +-1531 -1549 0 +-1532 -1550 0 +-1533 -1551 0 +-1534 -1552 0 +-1535 -1553 0 +-1536 -1554 0 +-1531 -1543 0 +-1532 -1544 0 +-1533 -1545 0 +-1534 -1546 0 +-1535 -1547 0 +-1536 -1548 0 +-1531 -1537 0 +-1532 -1538 0 +-1533 -1539 0 +-1534 -1540 0 +-1535 -1541 0 +-1536 -1542 0 +-1525 -1549 0 +-1526 -1550 0 +-1527 -1551 0 +-1528 -1552 0 +-1529 -1553 0 +-1530 -1554 0 +-1525 -1543 0 +-1526 -1544 0 +-1527 -1545 0 +-1528 -1546 0 +-1529 -1547 0 +-1530 -1548 0 +-1525 -1537 0 +-1526 -1538 0 +-1527 -1539 0 +-1528 -1540 0 +-1529 -1541 0 +-1530 -1542 0 +-1525 -1531 0 +-1526 -1532 0 +-1527 -1533 0 +-1528 -1534 0 +-1529 -1535 0 +-1530 -1536 0 +-1519 -1549 0 +-1520 -1550 0 +-1521 -1551 0 +-1522 -1552 0 +-1523 -1553 0 +-1524 -1554 0 +-1519 -1543 0 +-1520 -1544 0 +-1521 -1545 0 +-1522 -1546 0 +-1523 -1547 0 +-1524 -1548 0 +-1519 -1537 0 +-1520 -1538 0 +-1521 -1539 0 +-1522 -1540 0 +-1523 -1541 0 +-1524 -1542 0 +-1519 -1531 0 +-1520 -1532 0 +-1521 -1533 0 +-1522 -1534 0 +-1523 -1535 0 +-1524 -1536 0 +-1519 -1525 0 +-1520 -1526 0 +-1521 -1527 0 +-1522 -1528 0 +-1523 -1529 0 +-1524 -1530 0 +-1513 -1543 0 +-1514 -1544 0 +-1515 -1545 0 +-1516 -1546 0 +-1517 -1547 0 +-1518 -1548 0 +-1513 -1537 0 +-1514 -1538 0 +-1515 -1539 0 +-1516 -1540 0 +-1517 -1541 0 +-1518 -1542 0 +-1513 -1531 0 +-1514 -1532 0 +-1515 -1533 0 +-1516 -1534 0 +-1517 -1535 0 +-1518 -1536 0 +-1513 -1525 0 +-1514 -1526 0 +-1515 -1527 0 +-1516 -1528 0 +-1517 -1529 0 +-1518 -1530 0 +-1513 -1519 0 +-1514 -1520 0 +-1515 -1521 0 +-1516 -1522 0 +-1517 -1523 0 +-1518 -1524 0 +-1507 -1531 0 +-1508 -1532 0 +-1509 -1533 0 +-1510 -1534 0 +-1511 -1535 0 +-1512 -1536 0 +-1507 -1525 0 +-1508 -1526 0 +-1509 -1527 0 +-1510 -1528 0 +-1511 -1529 0 +-1512 -1530 0 +-1507 -1519 0 +-1508 -1520 0 +-1509 -1521 0 +-1510 -1522 0 +-1511 -1523 0 +-1512 -1524 0 +-1507 -1513 0 +-1508 -1514 0 +-1509 -1515 0 +-1510 -1516 0 +-1511 -1517 0 +-1512 -1518 0 +-1501 -1531 0 +-1502 -1532 0 +-1503 -1533 0 +-1504 -1534 0 +-1505 -1535 0 +-1506 -1536 0 +-1501 -1525 0 +-1502 -1526 0 +-1503 -1527 0 +-1504 -1528 0 +-1505 -1529 0 +-1506 -1530 0 +-1501 -1519 0 +-1502 -1520 0 +-1503 -1521 0 +-1504 -1522 0 +-1505 -1523 0 +-1506 -1524 0 +-1501 -1513 0 +-1502 -1514 0 +-1503 -1515 0 +-1504 -1516 0 +-1505 -1517 0 +-1506 -1518 0 +-1501 -1507 0 +-1502 -1508 0 +-1503 -1509 0 +-1504 -1510 0 +-1505 -1511 0 +-1506 -1512 0 +-1495 -1525 0 +-1496 -1526 0 +-1497 -1527 0 +-1498 -1528 0 +-1499 -1529 0 +-1500 -1530 0 +-1495 -1519 0 +-1496 -1520 0 +-1497 -1521 0 +-1498 -1522 0 +-1499 -1523 0 +-1500 -1524 0 +-1495 -1513 0 +-1496 -1514 0 +-1497 -1515 0 +-1498 -1516 0 +-1499 -1517 0 +-1500 -1518 0 +-1495 -1507 0 +-1496 -1508 0 +-1497 -1509 0 +-1498 -1510 0 +-1499 -1511 0 +-1500 -1512 0 +-1495 -1501 0 +-1496 -1502 0 +-1497 -1503 0 +-1498 -1504 0 +-1499 -1505 0 +-1500 -1506 0 +-1489 -1519 0 +-1490 -1520 0 +-1491 -1521 0 +-1492 -1522 0 +-1493 -1523 0 +-1494 -1524 0 +-1489 -1513 0 +-1490 -1514 0 +-1491 -1515 0 +-1492 -1516 0 +-1493 -1517 0 +-1494 -1518 0 +-1489 -1507 0 +-1490 -1508 0 +-1491 -1509 0 +-1492 -1510 0 +-1493 -1511 0 +-1494 -1512 0 +-1489 -1501 0 +-1490 -1502 0 +-1491 -1503 0 +-1492 -1504 0 +-1493 -1505 0 +-1494 -1506 0 +-1489 -1495 0 +-1490 -1496 0 +-1491 -1497 0 +-1492 -1498 0 +-1493 -1499 0 +-1494 -1500 0 +-1483 -1513 0 +-1484 -1514 0 +-1485 -1515 0 +-1486 -1516 0 +-1487 -1517 0 +-1488 -1518 0 +-1483 -1507 0 +-1484 -1508 0 +-1485 -1509 0 +-1486 -1510 0 +-1487 -1511 0 +-1488 -1512 0 +-1483 -1501 0 +-1484 -1502 0 +-1485 -1503 0 +-1486 -1504 0 +-1487 -1505 0 +-1488 -1506 0 +-1483 -1495 0 +-1484 -1496 0 +-1485 -1497 0 +-1486 -1498 0 +-1487 -1499 0 +-1488 -1500 0 +-1483 -1489 0 +-1484 -1490 0 +-1485 -1491 0 +-1486 -1492 0 +-1487 -1493 0 +-1488 -1494 0 +-1477 -1507 0 +-1478 -1508 0 +-1479 -1509 0 +-1480 -1510 0 +-1481 -1511 0 +-1482 -1512 0 +-1477 -1501 0 +-1478 -1502 0 +-1479 -1503 0 +-1480 -1504 0 +-1481 -1505 0 +-1482 -1506 0 +-1477 -1495 0 +-1478 -1496 0 +-1479 -1497 0 +-1480 -1498 0 +-1481 -1499 0 +-1482 -1500 0 +-1477 -1489 0 +-1478 -1490 0 +-1479 -1491 0 +-1480 -1492 0 +-1481 -1493 0 +-1482 -1494 0 +-1477 -1483 0 +-1478 -1484 0 +-1479 -1485 0 +-1480 -1486 0 +-1481 -1487 0 +-1482 -1488 0 +-1471 -1495 0 +-1472 -1496 0 +-1473 -1497 0 +-1474 -1498 0 +-1475 -1499 0 +-1476 -1500 0 +-1471 -1489 0 +-1472 -1490 0 +-1473 -1491 0 +-1474 -1492 0 +-1475 -1493 0 +-1476 -1494 0 +-1471 -1483 0 +-1472 -1484 0 +-1473 -1485 0 +-1474 -1486 0 +-1475 -1487 0 +-1476 -1488 0 +-1471 -1477 0 +-1472 -1478 0 +-1473 -1479 0 +-1474 -1480 0 +-1475 -1481 0 +-1476 -1482 0 +-1465 -1495 0 +-1466 -1496 0 +-1467 -1497 0 +-1468 -1498 0 +-1469 -1499 0 +-1470 -1500 0 +-1465 -1489 0 +-1466 -1490 0 +-1467 -1491 0 +-1468 -1492 0 +-1469 -1493 0 +-1470 -1494 0 +-1465 -1483 0 +-1466 -1484 0 +-1467 -1485 0 +-1468 -1486 0 +-1469 -1487 0 +-1470 -1488 0 +-1465 -1477 0 +-1466 -1478 0 +-1467 -1479 0 +-1468 -1480 0 +-1469 -1481 0 +-1470 -1482 0 +-1465 -1471 0 +-1466 -1472 0 +-1467 -1473 0 +-1468 -1474 0 +-1469 -1475 0 +-1470 -1476 0 +-1459 -1489 0 +-1460 -1490 0 +-1461 -1491 0 +-1462 -1492 0 +-1463 -1493 0 +-1464 -1494 0 +-1459 -1483 0 +-1460 -1484 0 +-1461 -1485 0 +-1462 -1486 0 +-1463 -1487 0 +-1464 -1488 0 +-1459 -1477 0 +-1460 -1478 0 +-1461 -1479 0 +-1462 -1480 0 +-1463 -1481 0 +-1464 -1482 0 +-1459 -1471 0 +-1460 -1472 0 +-1461 -1473 0 +-1462 -1474 0 +-1463 -1475 0 +-1464 -1476 0 +-1459 -1465 0 +-1460 -1466 0 +-1461 -1467 0 +-1462 -1468 0 +-1463 -1469 0 +-1464 -1470 0 +-1453 -1483 0 +-1454 -1484 0 +-1455 -1485 0 +-1456 -1486 0 +-1457 -1487 0 +-1458 -1488 0 +-1453 -1477 0 +-1454 -1478 0 +-1455 -1479 0 +-1456 -1480 0 +-1457 -1481 0 +-1458 -1482 0 +-1453 -1471 0 +-1454 -1472 0 +-1455 -1473 0 +-1456 -1474 0 +-1457 -1475 0 +-1458 -1476 0 +-1453 -1465 0 +-1454 -1466 0 +-1455 -1467 0 +-1456 -1468 0 +-1457 -1469 0 +-1458 -1470 0 +-1453 -1459 0 +-1454 -1460 0 +-1455 -1461 0 +-1456 -1462 0 +-1457 -1463 0 +-1458 -1464 0 +-1447 -1477 0 +-1448 -1478 0 +-1449 -1479 0 +-1450 -1480 0 +-1451 -1481 0 +-1452 -1482 0 +-1447 -1471 0 +-1448 -1472 0 +-1449 -1473 0 +-1450 -1474 0 +-1451 -1475 0 +-1452 -1476 0 +-1447 -1465 0 +-1448 -1466 0 +-1449 -1467 0 +-1450 -1468 0 +-1451 -1469 0 +-1452 -1470 0 +-1447 -1459 0 +-1448 -1460 0 +-1449 -1461 0 +-1450 -1462 0 +-1451 -1463 0 +-1452 -1464 0 +-1447 -1453 0 +-1448 -1454 0 +-1449 -1455 0 +-1450 -1456 0 +-1451 -1457 0 +-1452 -1458 0 +-1441 -1471 0 +-1442 -1472 0 +-1443 -1473 0 +-1444 -1474 0 +-1445 -1475 0 +-1446 -1476 0 +-1441 -1465 0 +-1442 -1466 0 +-1443 -1467 0 +-1444 -1468 0 +-1445 -1469 0 +-1446 -1470 0 +-1441 -1459 0 +-1442 -1460 0 +-1443 -1461 0 +-1444 -1462 0 +-1445 -1463 0 +-1446 -1464 0 +-1441 -1453 0 +-1442 -1454 0 +-1443 -1455 0 +-1444 -1456 0 +-1445 -1457 0 +-1446 -1458 0 +-1441 -1447 0 +-1442 -1448 0 +-1443 -1449 0 +-1444 -1450 0 +-1445 -1451 0 +-1446 -1452 0 +-1435 -1465 0 +-1436 -1466 0 +-1437 -1467 0 +-1438 -1468 0 +-1439 -1469 0 +-1440 -1470 0 +-1435 -1459 0 +-1436 -1460 0 +-1437 -1461 0 +-1438 -1462 0 +-1439 -1463 0 +-1440 -1464 0 +-1435 -1453 0 +-1436 -1454 0 +-1437 -1455 0 +-1438 -1456 0 +-1439 -1457 0 +-1440 -1458 0 +-1435 -1447 0 +-1436 -1448 0 +-1437 -1449 0 +-1438 -1450 0 +-1439 -1451 0 +-1440 -1452 0 +-1435 -1441 0 +-1436 -1442 0 +-1437 -1443 0 +-1438 -1444 0 +-1439 -1445 0 +-1440 -1446 0 +-1429 -1459 0 +-1430 -1460 0 +-1431 -1461 0 +-1432 -1462 0 +-1433 -1463 0 +-1434 -1464 0 +-1429 -1453 0 +-1430 -1454 0 +-1431 -1455 0 +-1432 -1456 0 +-1433 -1457 0 +-1434 -1458 0 +-1429 -1447 0 +-1430 -1448 0 +-1431 -1449 0 +-1432 -1450 0 +-1433 -1451 0 +-1434 -1452 0 +-1429 -1441 0 +-1430 -1442 0 +-1431 -1443 0 +-1432 -1444 0 +-1433 -1445 0 +-1434 -1446 0 +-1429 -1435 0 +-1430 -1436 0 +-1431 -1437 0 +-1432 -1438 0 +-1433 -1439 0 +-1434 -1440 0 +-1423 -1453 0 +-1424 -1454 0 +-1425 -1455 0 +-1426 -1456 0 +-1427 -1457 0 +-1428 -1458 0 +-1423 -1447 0 +-1424 -1448 0 +-1425 -1449 0 +-1426 -1450 0 +-1427 -1451 0 +-1428 -1452 0 +-1423 -1441 0 +-1424 -1442 0 +-1425 -1443 0 +-1426 -1444 0 +-1427 -1445 0 +-1428 -1446 0 +-1423 -1435 0 +-1424 -1436 0 +-1425 -1437 0 +-1426 -1438 0 +-1427 -1439 0 +-1428 -1440 0 +-1423 -1429 0 +-1424 -1430 0 +-1425 -1431 0 +-1426 -1432 0 +-1427 -1433 0 +-1428 -1434 0 +-1417 -1447 0 +-1418 -1448 0 +-1419 -1449 0 +-1420 -1450 0 +-1421 -1451 0 +-1422 -1452 0 +-1417 -1441 0 +-1418 -1442 0 +-1419 -1443 0 +-1420 -1444 0 +-1421 -1445 0 +-1422 -1446 0 +-1417 -1435 0 +-1418 -1436 0 +-1419 -1437 0 +-1420 -1438 0 +-1421 -1439 0 +-1422 -1440 0 +-1417 -1429 0 +-1418 -1430 0 +-1419 -1431 0 +-1420 -1432 0 +-1421 -1433 0 +-1422 -1434 0 +-1417 -1423 0 +-1418 -1424 0 +-1419 -1425 0 +-1420 -1426 0 +-1421 -1427 0 +-1422 -1428 0 +-1411 -1441 0 +-1412 -1442 0 +-1413 -1443 0 +-1414 -1444 0 +-1415 -1445 0 +-1416 -1446 0 +-1411 -1435 0 +-1412 -1436 0 +-1413 -1437 0 +-1414 -1438 0 +-1415 -1439 0 +-1416 -1440 0 +-1411 -1429 0 +-1412 -1430 0 +-1413 -1431 0 +-1414 -1432 0 +-1415 -1433 0 +-1416 -1434 0 +-1411 -1423 0 +-1412 -1424 0 +-1413 -1425 0 +-1414 -1426 0 +-1415 -1427 0 +-1416 -1428 0 +-1411 -1417 0 +-1412 -1418 0 +-1413 -1419 0 +-1414 -1420 0 +-1415 -1421 0 +-1416 -1422 0 +-1405 -1435 0 +-1406 -1436 0 +-1407 -1437 0 +-1408 -1438 0 +-1409 -1439 0 +-1410 -1440 0 +-1405 -1429 0 +-1406 -1430 0 +-1407 -1431 0 +-1408 -1432 0 +-1409 -1433 0 +-1410 -1434 0 +-1405 -1423 0 +-1406 -1424 0 +-1407 -1425 0 +-1408 -1426 0 +-1409 -1427 0 +-1410 -1428 0 +-1405 -1417 0 +-1406 -1418 0 +-1407 -1419 0 +-1408 -1420 0 +-1409 -1421 0 +-1410 -1422 0 +-1405 -1411 0 +-1406 -1412 0 +-1407 -1413 0 +-1408 -1414 0 +-1409 -1415 0 +-1410 -1416 0 +-1399 -1429 0 +-1400 -1430 0 +-1401 -1431 0 +-1402 -1432 0 +-1403 -1433 0 +-1404 -1434 0 +-1399 -1423 0 +-1400 -1424 0 +-1401 -1425 0 +-1402 -1426 0 +-1403 -1427 0 +-1404 -1428 0 +-1399 -1417 0 +-1400 -1418 0 +-1401 -1419 0 +-1402 -1420 0 +-1403 -1421 0 +-1404 -1422 0 +-1399 -1411 0 +-1400 -1412 0 +-1401 -1413 0 +-1402 -1414 0 +-1403 -1415 0 +-1404 -1416 0 +-1399 -1405 0 +-1400 -1406 0 +-1401 -1407 0 +-1402 -1408 0 +-1403 -1409 0 +-1404 -1410 0 +-1393 -1423 0 +-1394 -1424 0 +-1395 -1425 0 +-1396 -1426 0 +-1397 -1427 0 +-1398 -1428 0 +-1393 -1417 0 +-1394 -1418 0 +-1395 -1419 0 +-1396 -1420 0 +-1397 -1421 0 +-1398 -1422 0 +-1393 -1411 0 +-1394 -1412 0 +-1395 -1413 0 +-1396 -1414 0 +-1397 -1415 0 +-1398 -1416 0 +-1393 -1405 0 +-1394 -1406 0 +-1395 -1407 0 +-1396 -1408 0 +-1397 -1409 0 +-1398 -1410 0 +-1393 -1399 0 +-1394 -1400 0 +-1395 -1401 0 +-1396 -1402 0 +-1397 -1403 0 +-1398 -1404 0 +-1387 -1417 0 +-1388 -1418 0 +-1389 -1419 0 +-1390 -1420 0 +-1391 -1421 0 +-1392 -1422 0 +-1387 -1411 0 +-1388 -1412 0 +-1389 -1413 0 +-1390 -1414 0 +-1391 -1415 0 +-1392 -1416 0 +-1387 -1405 0 +-1388 -1406 0 +-1389 -1407 0 +-1390 -1408 0 +-1391 -1409 0 +-1392 -1410 0 +-1387 -1399 0 +-1388 -1400 0 +-1389 -1401 0 +-1390 -1402 0 +-1391 -1403 0 +-1392 -1404 0 +-1387 -1393 0 +-1388 -1394 0 +-1389 -1395 0 +-1390 -1396 0 +-1391 -1397 0 +-1392 -1398 0 +-1381 -1405 0 +-1382 -1406 0 +-1383 -1407 0 +-1384 -1408 0 +-1385 -1409 0 +-1386 -1410 0 +-1381 -1399 0 +-1382 -1400 0 +-1383 -1401 0 +-1384 -1402 0 +-1385 -1403 0 +-1386 -1404 0 +-1381 -1393 0 +-1382 -1394 0 +-1383 -1395 0 +-1384 -1396 0 +-1385 -1397 0 +-1386 -1398 0 +-1381 -1387 0 +-1382 -1388 0 +-1383 -1389 0 +-1384 -1390 0 +-1385 -1391 0 +-1386 -1392 0 +-1375 -1405 0 +-1376 -1406 0 +-1377 -1407 0 +-1378 -1408 0 +-1379 -1409 0 +-1380 -1410 0 +-1375 -1399 0 +-1376 -1400 0 +-1377 -1401 0 +-1378 -1402 0 +-1379 -1403 0 +-1380 -1404 0 +-1375 -1393 0 +-1376 -1394 0 +-1377 -1395 0 +-1378 -1396 0 +-1379 -1397 0 +-1380 -1398 0 +-1375 -1387 0 +-1376 -1388 0 +-1377 -1389 0 +-1378 -1390 0 +-1379 -1391 0 +-1380 -1392 0 +-1375 -1381 0 +-1376 -1382 0 +-1377 -1383 0 +-1378 -1384 0 +-1379 -1385 0 +-1380 -1386 0 +-1369 -1399 0 +-1370 -1400 0 +-1371 -1401 0 +-1372 -1402 0 +-1373 -1403 0 +-1374 -1404 0 +-1369 -1393 0 +-1370 -1394 0 +-1371 -1395 0 +-1372 -1396 0 +-1373 -1397 0 +-1374 -1398 0 +-1369 -1387 0 +-1370 -1388 0 +-1371 -1389 0 +-1372 -1390 0 +-1373 -1391 0 +-1374 -1392 0 +-1369 -1381 0 +-1370 -1382 0 +-1371 -1383 0 +-1372 -1384 0 +-1373 -1385 0 +-1374 -1386 0 +-1369 -1375 0 +-1370 -1376 0 +-1371 -1377 0 +-1372 -1378 0 +-1373 -1379 0 +-1374 -1380 0 +-1363 -1393 0 +-1364 -1394 0 +-1365 -1395 0 +-1366 -1396 0 +-1367 -1397 0 +-1368 -1398 0 +-1363 -1387 0 +-1364 -1388 0 +-1365 -1389 0 +-1366 -1390 0 +-1367 -1391 0 +-1368 -1392 0 +-1363 -1381 0 +-1364 -1382 0 +-1365 -1383 0 +-1366 -1384 0 +-1367 -1385 0 +-1368 -1386 0 +-1363 -1375 0 +-1364 -1376 0 +-1365 -1377 0 +-1366 -1378 0 +-1367 -1379 0 +-1368 -1380 0 +-1363 -1369 0 +-1364 -1370 0 +-1365 -1371 0 +-1366 -1372 0 +-1367 -1373 0 +-1368 -1374 0 +-1357 -1387 0 +-1358 -1388 0 +-1359 -1389 0 +-1360 -1390 0 +-1361 -1391 0 +-1362 -1392 0 +-1357 -1381 0 +-1358 -1382 0 +-1359 -1383 0 +-1360 -1384 0 +-1361 -1385 0 +-1362 -1386 0 +-1357 -1375 0 +-1358 -1376 0 +-1359 -1377 0 +-1360 -1378 0 +-1361 -1379 0 +-1362 -1380 0 +-1357 -1369 0 +-1358 -1370 0 +-1359 -1371 0 +-1360 -1372 0 +-1361 -1373 0 +-1362 -1374 0 +-1357 -1363 0 +-1358 -1364 0 +-1359 -1365 0 +-1360 -1366 0 +-1361 -1367 0 +-1362 -1368 0 +-1351 -1381 0 +-1352 -1382 0 +-1353 -1383 0 +-1354 -1384 0 +-1355 -1385 0 +-1356 -1386 0 +-1351 -1375 0 +-1352 -1376 0 +-1353 -1377 0 +-1354 -1378 0 +-1355 -1379 0 +-1356 -1380 0 +-1351 -1369 0 +-1352 -1370 0 +-1353 -1371 0 +-1354 -1372 0 +-1355 -1373 0 +-1356 -1374 0 +-1351 -1363 0 +-1352 -1364 0 +-1353 -1365 0 +-1354 -1366 0 +-1355 -1367 0 +-1356 -1368 0 +-1351 -1357 0 +-1352 -1358 0 +-1353 -1359 0 +-1354 -1360 0 +-1355 -1361 0 +-1356 -1362 0 +-1345 -1375 0 +-1346 -1376 0 +-1347 -1377 0 +-1348 -1378 0 +-1349 -1379 0 +-1350 -1380 0 +-1345 -1369 0 +-1346 -1370 0 +-1347 -1371 0 +-1348 -1372 0 +-1349 -1373 0 +-1350 -1374 0 +-1345 -1363 0 +-1346 -1364 0 +-1347 -1365 0 +-1348 -1366 0 +-1349 -1367 0 +-1350 -1368 0 +-1345 -1357 0 +-1346 -1358 0 +-1347 -1359 0 +-1348 -1360 0 +-1349 -1361 0 +-1350 -1362 0 +-1345 -1351 0 +-1346 -1352 0 +-1347 -1353 0 +-1348 -1354 0 +-1349 -1355 0 +-1350 -1356 0 +-1339 -1369 0 +-1340 -1370 0 +-1341 -1371 0 +-1342 -1372 0 +-1343 -1373 0 +-1344 -1374 0 +-1339 -1363 0 +-1340 -1364 0 +-1341 -1365 0 +-1342 -1366 0 +-1343 -1367 0 +-1344 -1368 0 +-1339 -1357 0 +-1340 -1358 0 +-1341 -1359 0 +-1342 -1360 0 +-1343 -1361 0 +-1344 -1362 0 +-1339 -1351 0 +-1340 -1352 0 +-1341 -1353 0 +-1342 -1354 0 +-1343 -1355 0 +-1344 -1356 0 +-1333 -1357 0 +-1334 -1358 0 +-1335 -1359 0 +-1336 -1360 0 +-1337 -1361 0 +-1338 -1362 0 +-1333 -1351 0 +-1334 -1352 0 +-1335 -1353 0 +-1336 -1354 0 +-1337 -1355 0 +-1338 -1356 0 +-1333 -1345 0 +-1334 -1346 0 +-1335 -1347 0 +-1336 -1348 0 +-1337 -1349 0 +-1338 -1350 0 +-1333 -1339 0 +-1334 -1340 0 +-1335 -1341 0 +-1336 -1342 0 +-1337 -1343 0 +-1338 -1344 0 +-1327 -1351 0 +-1328 -1352 0 +-1329 -1353 0 +-1330 -1354 0 +-1331 -1355 0 +-1332 -1356 0 +-1327 -1345 0 +-1328 -1346 0 +-1329 -1347 0 +-1330 -1348 0 +-1331 -1349 0 +-1332 -1350 0 +-1327 -1339 0 +-1328 -1340 0 +-1329 -1341 0 +-1330 -1342 0 +-1331 -1343 0 +-1332 -1344 0 +-1327 -1333 0 +-1328 -1334 0 +-1329 -1335 0 +-1330 -1336 0 +-1331 -1337 0 +-1332 -1338 0 +-1321 -1351 0 +-1322 -1352 0 +-1323 -1353 0 +-1324 -1354 0 +-1325 -1355 0 +-1326 -1356 0 +-1321 -1345 0 +-1322 -1346 0 +-1323 -1347 0 +-1324 -1348 0 +-1325 -1349 0 +-1326 -1350 0 +-1321 -1339 0 +-1322 -1340 0 +-1323 -1341 0 +-1324 -1342 0 +-1325 -1343 0 +-1326 -1344 0 +-1321 -1333 0 +-1322 -1334 0 +-1323 -1335 0 +-1324 -1336 0 +-1325 -1337 0 +-1326 -1338 0 +-1321 -1327 0 +-1322 -1328 0 +-1323 -1329 0 +-1324 -1330 0 +-1325 -1331 0 +-1326 -1332 0 +-1315 -1345 0 +-1316 -1346 0 +-1317 -1347 0 +-1318 -1348 0 +-1319 -1349 0 +-1320 -1350 0 +-1315 -1339 0 +-1316 -1340 0 +-1317 -1341 0 +-1318 -1342 0 +-1319 -1343 0 +-1320 -1344 0 +-1315 -1333 0 +-1316 -1334 0 +-1317 -1335 0 +-1318 -1336 0 +-1319 -1337 0 +-1320 -1338 0 +-1315 -1327 0 +-1316 -1328 0 +-1317 -1329 0 +-1318 -1330 0 +-1319 -1331 0 +-1320 -1332 0 +-1315 -1321 0 +-1316 -1322 0 +-1317 -1323 0 +-1318 -1324 0 +-1319 -1325 0 +-1320 -1326 0 +-1309 -1339 0 +-1310 -1340 0 +-1311 -1341 0 +-1312 -1342 0 +-1313 -1343 0 +-1314 -1344 0 +-1309 -1333 0 +-1310 -1334 0 +-1311 -1335 0 +-1312 -1336 0 +-1313 -1337 0 +-1314 -1338 0 +-1309 -1327 0 +-1310 -1328 0 +-1311 -1329 0 +-1312 -1330 0 +-1313 -1331 0 +-1314 -1332 0 +-1309 -1321 0 +-1310 -1322 0 +-1311 -1323 0 +-1312 -1324 0 +-1313 -1325 0 +-1314 -1326 0 +-1309 -1315 0 +-1310 -1316 0 +-1311 -1317 0 +-1312 -1318 0 +-1313 -1319 0 +-1314 -1320 0 +-1303 -1333 0 +-1304 -1334 0 +-1305 -1335 0 +-1306 -1336 0 +-1307 -1337 0 +-1308 -1338 0 +-1303 -1327 0 +-1304 -1328 0 +-1305 -1329 0 +-1306 -1330 0 +-1307 -1331 0 +-1308 -1332 0 +-1303 -1321 0 +-1304 -1322 0 +-1305 -1323 0 +-1306 -1324 0 +-1307 -1325 0 +-1308 -1326 0 +-1303 -1315 0 +-1304 -1316 0 +-1305 -1317 0 +-1306 -1318 0 +-1307 -1319 0 +-1308 -1320 0 +-1303 -1309 0 +-1304 -1310 0 +-1305 -1311 0 +-1306 -1312 0 +-1307 -1313 0 +-1308 -1314 0 +-1297 -1327 0 +-1298 -1328 0 +-1299 -1329 0 +-1300 -1330 0 +-1301 -1331 0 +-1302 -1332 0 +-1297 -1321 0 +-1298 -1322 0 +-1299 -1323 0 +-1300 -1324 0 +-1301 -1325 0 +-1302 -1326 0 +-1297 -1315 0 +-1298 -1316 0 +-1299 -1317 0 +-1300 -1318 0 +-1301 -1319 0 +-1302 -1320 0 +-1297 -1309 0 +-1298 -1310 0 +-1299 -1311 0 +-1300 -1312 0 +-1301 -1313 0 +-1302 -1314 0 +-1297 -1303 0 +-1298 -1304 0 +-1299 -1305 0 +-1300 -1306 0 +-1301 -1307 0 +-1302 -1308 0 +-1291 -1321 0 +-1292 -1322 0 +-1293 -1323 0 +-1294 -1324 0 +-1295 -1325 0 +-1296 -1326 0 +-1291 -1315 0 +-1292 -1316 0 +-1293 -1317 0 +-1294 -1318 0 +-1295 -1319 0 +-1296 -1320 0 +-1291 -1309 0 +-1292 -1310 0 +-1293 -1311 0 +-1294 -1312 0 +-1295 -1313 0 +-1296 -1314 0 +-1291 -1303 0 +-1292 -1304 0 +-1293 -1305 0 +-1294 -1306 0 +-1295 -1307 0 +-1296 -1308 0 +-1291 -1297 0 +-1292 -1298 0 +-1293 -1299 0 +-1294 -1300 0 +-1295 -1301 0 +-1296 -1302 0 +-1285 -1309 0 +-1286 -1310 0 +-1287 -1311 0 +-1288 -1312 0 +-1289 -1313 0 +-1290 -1314 0 +-1285 -1297 0 +-1286 -1298 0 +-1287 -1299 0 +-1288 -1300 0 +-1289 -1301 0 +-1290 -1302 0 +-1285 -1291 0 +-1286 -1292 0 +-1287 -1293 0 +-1288 -1294 0 +-1289 -1295 0 +-1290 -1296 0 +-1279 -1309 0 +-1280 -1310 0 +-1281 -1311 0 +-1282 -1312 0 +-1283 -1313 0 +-1284 -1314 0 +-1279 -1303 0 +-1280 -1304 0 +-1281 -1305 0 +-1282 -1306 0 +-1283 -1307 0 +-1284 -1308 0 +-1279 -1297 0 +-1280 -1298 0 +-1281 -1299 0 +-1282 -1300 0 +-1283 -1301 0 +-1284 -1302 0 +-1279 -1291 0 +-1280 -1292 0 +-1281 -1293 0 +-1282 -1294 0 +-1283 -1295 0 +-1284 -1296 0 +-1279 -1285 0 +-1280 -1286 0 +-1281 -1287 0 +-1282 -1288 0 +-1283 -1289 0 +-1284 -1290 0 +-1273 -1303 0 +-1274 -1304 0 +-1275 -1305 0 +-1276 -1306 0 +-1277 -1307 0 +-1278 -1308 0 +-1273 -1297 0 +-1274 -1298 0 +-1275 -1299 0 +-1276 -1300 0 +-1277 -1301 0 +-1278 -1302 0 +-1273 -1291 0 +-1274 -1292 0 +-1275 -1293 0 +-1276 -1294 0 +-1277 -1295 0 +-1278 -1296 0 +-1273 -1285 0 +-1274 -1286 0 +-1275 -1287 0 +-1276 -1288 0 +-1277 -1289 0 +-1278 -1290 0 +-1273 -1279 0 +-1274 -1280 0 +-1275 -1281 0 +-1276 -1282 0 +-1277 -1283 0 +-1278 -1284 0 +-1267 -1297 0 +-1268 -1298 0 +-1269 -1299 0 +-1270 -1300 0 +-1271 -1301 0 +-1272 -1302 0 +-1267 -1291 0 +-1268 -1292 0 +-1269 -1293 0 +-1270 -1294 0 +-1271 -1295 0 +-1272 -1296 0 +-1267 -1285 0 +-1268 -1286 0 +-1269 -1287 0 +-1270 -1288 0 +-1271 -1289 0 +-1272 -1290 0 +-1267 -1279 0 +-1268 -1280 0 +-1269 -1281 0 +-1270 -1282 0 +-1271 -1283 0 +-1272 -1284 0 +-1267 -1273 0 +-1268 -1274 0 +-1269 -1275 0 +-1270 -1276 0 +-1271 -1277 0 +-1272 -1278 0 +-1261 -1291 0 +-1262 -1292 0 +-1263 -1293 0 +-1264 -1294 0 +-1265 -1295 0 +-1266 -1296 0 +-1261 -1285 0 +-1262 -1286 0 +-1263 -1287 0 +-1264 -1288 0 +-1265 -1289 0 +-1266 -1290 0 +-1261 -1279 0 +-1262 -1280 0 +-1263 -1281 0 +-1264 -1282 0 +-1265 -1283 0 +-1266 -1284 0 +-1261 -1273 0 +-1262 -1274 0 +-1263 -1275 0 +-1264 -1276 0 +-1265 -1277 0 +-1266 -1278 0 +-1261 -1267 0 +-1262 -1268 0 +-1263 -1269 0 +-1264 -1270 0 +-1265 -1271 0 +-1266 -1272 0 +-1255 -1285 0 +-1256 -1286 0 +-1257 -1287 0 +-1258 -1288 0 +-1259 -1289 0 +-1260 -1290 0 +-1255 -1279 0 +-1256 -1280 0 +-1257 -1281 0 +-1258 -1282 0 +-1259 -1283 0 +-1260 -1284 0 +-1255 -1273 0 +-1256 -1274 0 +-1257 -1275 0 +-1258 -1276 0 +-1259 -1277 0 +-1260 -1278 0 +-1255 -1267 0 +-1256 -1268 0 +-1257 -1269 0 +-1258 -1270 0 +-1259 -1271 0 +-1260 -1272 0 +-1255 -1261 0 +-1256 -1262 0 +-1257 -1263 0 +-1258 -1264 0 +-1259 -1265 0 +-1260 -1266 0 +-1249 -1273 0 +-1250 -1274 0 +-1251 -1275 0 +-1252 -1276 0 +-1253 -1277 0 +-1254 -1278 0 +-1249 -1267 0 +-1250 -1268 0 +-1251 -1269 0 +-1252 -1270 0 +-1253 -1271 0 +-1254 -1272 0 +-1249 -1261 0 +-1250 -1262 0 +-1251 -1263 0 +-1252 -1264 0 +-1253 -1265 0 +-1254 -1266 0 +-1249 -1255 0 +-1250 -1256 0 +-1251 -1257 0 +-1252 -1258 0 +-1253 -1259 0 +-1254 -1260 0 +-1243 -1273 0 +-1244 -1274 0 +-1245 -1275 0 +-1246 -1276 0 +-1247 -1277 0 +-1248 -1278 0 +-1243 -1267 0 +-1244 -1268 0 +-1245 -1269 0 +-1246 -1270 0 +-1247 -1271 0 +-1248 -1272 0 +-1243 -1261 0 +-1244 -1262 0 +-1245 -1263 0 +-1246 -1264 0 +-1247 -1265 0 +-1248 -1266 0 +-1243 -1255 0 +-1244 -1256 0 +-1245 -1257 0 +-1246 -1258 0 +-1247 -1259 0 +-1248 -1260 0 +-1243 -1249 0 +-1244 -1250 0 +-1245 -1251 0 +-1246 -1252 0 +-1247 -1253 0 +-1248 -1254 0 +-1237 -1267 0 +-1238 -1268 0 +-1239 -1269 0 +-1240 -1270 0 +-1241 -1271 0 +-1242 -1272 0 +-1237 -1261 0 +-1238 -1262 0 +-1239 -1263 0 +-1240 -1264 0 +-1241 -1265 0 +-1242 -1266 0 +-1237 -1255 0 +-1238 -1256 0 +-1239 -1257 0 +-1240 -1258 0 +-1241 -1259 0 +-1242 -1260 0 +-1237 -1249 0 +-1238 -1250 0 +-1239 -1251 0 +-1240 -1252 0 +-1241 -1253 0 +-1242 -1254 0 +-1237 -1243 0 +-1238 -1244 0 +-1239 -1245 0 +-1240 -1246 0 +-1241 -1247 0 +-1242 -1248 0 +-1231 -1261 0 +-1232 -1262 0 +-1233 -1263 0 +-1234 -1264 0 +-1235 -1265 0 +-1236 -1266 0 +-1231 -1255 0 +-1232 -1256 0 +-1233 -1257 0 +-1234 -1258 0 +-1235 -1259 0 +-1236 -1260 0 +-1231 -1249 0 +-1232 -1250 0 +-1233 -1251 0 +-1234 -1252 0 +-1235 -1253 0 +-1236 -1254 0 +-1231 -1243 0 +-1232 -1244 0 +-1233 -1245 0 +-1234 -1246 0 +-1235 -1247 0 +-1236 -1248 0 +-1231 -1237 0 +-1232 -1238 0 +-1233 -1239 0 +-1234 -1240 0 +-1235 -1241 0 +-1236 -1242 0 +-1225 -1255 0 +-1226 -1256 0 +-1227 -1257 0 +-1228 -1258 0 +-1229 -1259 0 +-1230 -1260 0 +-1225 -1249 0 +-1226 -1250 0 +-1227 -1251 0 +-1228 -1252 0 +-1229 -1253 0 +-1230 -1254 0 +-1225 -1243 0 +-1226 -1244 0 +-1227 -1245 0 +-1228 -1246 0 +-1229 -1247 0 +-1230 -1248 0 +-1225 -1237 0 +-1226 -1238 0 +-1227 -1239 0 +-1228 -1240 0 +-1229 -1241 0 +-1230 -1242 0 +-1225 -1231 0 +-1226 -1232 0 +-1227 -1233 0 +-1228 -1234 0 +-1229 -1235 0 +-1230 -1236 0 +-1219 -1249 0 +-1220 -1250 0 +-1221 -1251 0 +-1222 -1252 0 +-1223 -1253 0 +-1224 -1254 0 +-1219 -1243 0 +-1220 -1244 0 +-1221 -1245 0 +-1222 -1246 0 +-1223 -1247 0 +-1224 -1248 0 +-1219 -1237 0 +-1220 -1238 0 +-1221 -1239 0 +-1222 -1240 0 +-1223 -1241 0 +-1224 -1242 0 +-1219 -1231 0 +-1220 -1232 0 +-1221 -1233 0 +-1222 -1234 0 +-1223 -1235 0 +-1224 -1236 0 +-1219 -1225 0 +-1220 -1226 0 +-1221 -1227 0 +-1222 -1228 0 +-1223 -1229 0 +-1224 -1230 0 +-1213 -1243 0 +-1214 -1244 0 +-1215 -1245 0 +-1216 -1246 0 +-1217 -1247 0 +-1218 -1248 0 +-1213 -1237 0 +-1214 -1238 0 +-1215 -1239 0 +-1216 -1240 0 +-1217 -1241 0 +-1218 -1242 0 +-1213 -1231 0 +-1214 -1232 0 +-1215 -1233 0 +-1216 -1234 0 +-1217 -1235 0 +-1218 -1236 0 +-1213 -1225 0 +-1214 -1226 0 +-1215 -1227 0 +-1216 -1228 0 +-1217 -1229 0 +-1218 -1230 0 +-1213 -1219 0 +-1214 -1220 0 +-1215 -1221 0 +-1216 -1222 0 +-1217 -1223 0 +-1218 -1224 0 +-1207 -1237 0 +-1208 -1238 0 +-1209 -1239 0 +-1210 -1240 0 +-1211 -1241 0 +-1212 -1242 0 +-1207 -1231 0 +-1208 -1232 0 +-1209 -1233 0 +-1210 -1234 0 +-1211 -1235 0 +-1212 -1236 0 +-1207 -1225 0 +-1208 -1226 0 +-1209 -1227 0 +-1210 -1228 0 +-1211 -1229 0 +-1212 -1230 0 +-1207 -1219 0 +-1208 -1220 0 +-1209 -1221 0 +-1210 -1222 0 +-1211 -1223 0 +-1212 -1224 0 +-1207 -1213 0 +-1208 -1214 0 +-1209 -1215 0 +-1210 -1216 0 +-1211 -1217 0 +-1212 -1218 0 +-1201 -1231 0 +-1202 -1232 0 +-1203 -1233 0 +-1204 -1234 0 +-1205 -1235 0 +-1206 -1236 0 +-1201 -1225 0 +-1202 -1226 0 +-1203 -1227 0 +-1204 -1228 0 +-1205 -1229 0 +-1206 -1230 0 +-1201 -1219 0 +-1202 -1220 0 +-1203 -1221 0 +-1204 -1222 0 +-1205 -1223 0 +-1206 -1224 0 +-1201 -1213 0 +-1202 -1214 0 +-1203 -1215 0 +-1204 -1216 0 +-1205 -1217 0 +-1206 -1218 0 +-1201 -1207 0 +-1202 -1208 0 +-1203 -1209 0 +-1204 -1210 0 +-1205 -1211 0 +-1206 -1212 0 +-1195 -1225 0 +-1196 -1226 0 +-1197 -1227 0 +-1198 -1228 0 +-1199 -1229 0 +-1200 -1230 0 +-1195 -1219 0 +-1196 -1220 0 +-1197 -1221 0 +-1198 -1222 0 +-1199 -1223 0 +-1200 -1224 0 +-1195 -1213 0 +-1196 -1214 0 +-1197 -1215 0 +-1198 -1216 0 +-1199 -1217 0 +-1200 -1218 0 +-1195 -1207 0 +-1196 -1208 0 +-1197 -1209 0 +-1198 -1210 0 +-1199 -1211 0 +-1200 -1212 0 +-1195 -1201 0 +-1196 -1202 0 +-1197 -1203 0 +-1198 -1204 0 +-1199 -1205 0 +-1200 -1206 0 +-1189 -1219 0 +-1190 -1220 0 +-1191 -1221 0 +-1192 -1222 0 +-1193 -1223 0 +-1194 -1224 0 +-1189 -1213 0 +-1190 -1214 0 +-1191 -1215 0 +-1192 -1216 0 +-1193 -1217 0 +-1194 -1218 0 +-1189 -1207 0 +-1190 -1208 0 +-1191 -1209 0 +-1192 -1210 0 +-1193 -1211 0 +-1194 -1212 0 +-1189 -1201 0 +-1190 -1202 0 +-1191 -1203 0 +-1192 -1204 0 +-1193 -1205 0 +-1194 -1206 0 +-1189 -1195 0 +-1190 -1196 0 +-1191 -1197 0 +-1192 -1198 0 +-1193 -1199 0 +-1194 -1200 0 +-1183 -1213 0 +-1184 -1214 0 +-1185 -1215 0 +-1186 -1216 0 +-1187 -1217 0 +-1188 -1218 0 +-1183 -1207 0 +-1184 -1208 0 +-1185 -1209 0 +-1186 -1210 0 +-1187 -1211 0 +-1188 -1212 0 +-1183 -1201 0 +-1184 -1202 0 +-1185 -1203 0 +-1186 -1204 0 +-1187 -1205 0 +-1188 -1206 0 +-1183 -1195 0 +-1184 -1196 0 +-1185 -1197 0 +-1186 -1198 0 +-1187 -1199 0 +-1188 -1200 0 +-1183 -1189 0 +-1184 -1190 0 +-1185 -1191 0 +-1186 -1192 0 +-1187 -1193 0 +-1188 -1194 0 +-1177 -1207 0 +-1178 -1208 0 +-1179 -1209 0 +-1180 -1210 0 +-1181 -1211 0 +-1182 -1212 0 +-1177 -1201 0 +-1178 -1202 0 +-1179 -1203 0 +-1180 -1204 0 +-1181 -1205 0 +-1182 -1206 0 +-1177 -1195 0 +-1178 -1196 0 +-1179 -1197 0 +-1180 -1198 0 +-1181 -1199 0 +-1182 -1200 0 +-1177 -1189 0 +-1178 -1190 0 +-1179 -1191 0 +-1180 -1192 0 +-1181 -1193 0 +-1182 -1194 0 +-1177 -1183 0 +-1178 -1184 0 +-1179 -1185 0 +-1180 -1186 0 +-1181 -1187 0 +-1182 -1188 0 +-1171 -1201 0 +-1172 -1202 0 +-1173 -1203 0 +-1174 -1204 0 +-1175 -1205 0 +-1176 -1206 0 +-1171 -1195 0 +-1172 -1196 0 +-1173 -1197 0 +-1174 -1198 0 +-1175 -1199 0 +-1176 -1200 0 +-1171 -1189 0 +-1172 -1190 0 +-1173 -1191 0 +-1174 -1192 0 +-1175 -1193 0 +-1176 -1194 0 +-1171 -1183 0 +-1172 -1184 0 +-1173 -1185 0 +-1174 -1186 0 +-1175 -1187 0 +-1176 -1188 0 +-1171 -1177 0 +-1172 -1178 0 +-1173 -1179 0 +-1174 -1180 0 +-1175 -1181 0 +-1176 -1182 0 +-1165 -1195 0 +-1166 -1196 0 +-1167 -1197 0 +-1168 -1198 0 +-1169 -1199 0 +-1170 -1200 0 +-1165 -1189 0 +-1166 -1190 0 +-1167 -1191 0 +-1168 -1192 0 +-1169 -1193 0 +-1170 -1194 0 +-1165 -1183 0 +-1166 -1184 0 +-1167 -1185 0 +-1168 -1186 0 +-1169 -1187 0 +-1170 -1188 0 +-1165 -1177 0 +-1166 -1178 0 +-1167 -1179 0 +-1168 -1180 0 +-1169 -1181 0 +-1170 -1182 0 +-1165 -1171 0 +-1166 -1172 0 +-1167 -1173 0 +-1168 -1174 0 +-1169 -1175 0 +-1170 -1176 0 +-1159 -1189 0 +-1160 -1190 0 +-1161 -1191 0 +-1162 -1192 0 +-1163 -1193 0 +-1164 -1194 0 +-1159 -1183 0 +-1160 -1184 0 +-1161 -1185 0 +-1162 -1186 0 +-1163 -1187 0 +-1164 -1188 0 +-1159 -1177 0 +-1160 -1178 0 +-1161 -1179 0 +-1162 -1180 0 +-1163 -1181 0 +-1164 -1182 0 +-1159 -1171 0 +-1160 -1172 0 +-1161 -1173 0 +-1162 -1174 0 +-1163 -1175 0 +-1164 -1176 0 +-1153 -1183 0 +-1154 -1184 0 +-1155 -1185 0 +-1156 -1186 0 +-1157 -1187 0 +-1158 -1188 0 +-1153 -1177 0 +-1154 -1178 0 +-1155 -1179 0 +-1156 -1180 0 +-1157 -1181 0 +-1158 -1182 0 +-1153 -1171 0 +-1154 -1172 0 +-1155 -1173 0 +-1156 -1174 0 +-1157 -1175 0 +-1158 -1176 0 +-1153 -1165 0 +-1154 -1166 0 +-1155 -1167 0 +-1156 -1168 0 +-1157 -1169 0 +-1158 -1170 0 +-1153 -1159 0 +-1154 -1160 0 +-1155 -1161 0 +-1156 -1162 0 +-1157 -1163 0 +-1158 -1164 0 +-1147 -1177 0 +-1148 -1178 0 +-1149 -1179 0 +-1150 -1180 0 +-1151 -1181 0 +-1152 -1182 0 +-1147 -1171 0 +-1148 -1172 0 +-1149 -1173 0 +-1150 -1174 0 +-1151 -1175 0 +-1152 -1176 0 +-1147 -1165 0 +-1148 -1166 0 +-1149 -1167 0 +-1150 -1168 0 +-1151 -1169 0 +-1152 -1170 0 +-1147 -1159 0 +-1148 -1160 0 +-1149 -1161 0 +-1150 -1162 0 +-1151 -1163 0 +-1152 -1164 0 +-1147 -1153 0 +-1148 -1154 0 +-1149 -1155 0 +-1150 -1156 0 +-1151 -1157 0 +-1152 -1158 0 +-1141 -1171 0 +-1142 -1172 0 +-1143 -1173 0 +-1144 -1174 0 +-1145 -1175 0 +-1146 -1176 0 +-1141 -1165 0 +-1142 -1166 0 +-1143 -1167 0 +-1144 -1168 0 +-1145 -1169 0 +-1146 -1170 0 +-1141 -1159 0 +-1142 -1160 0 +-1143 -1161 0 +-1144 -1162 0 +-1145 -1163 0 +-1146 -1164 0 +-1141 -1153 0 +-1142 -1154 0 +-1143 -1155 0 +-1144 -1156 0 +-1145 -1157 0 +-1146 -1158 0 +-1141 -1147 0 +-1142 -1148 0 +-1143 -1149 0 +-1144 -1150 0 +-1145 -1151 0 +-1146 -1152 0 +-1135 -1165 0 +-1136 -1166 0 +-1137 -1167 0 +-1138 -1168 0 +-1139 -1169 0 +-1140 -1170 0 +-1135 -1159 0 +-1136 -1160 0 +-1137 -1161 0 +-1138 -1162 0 +-1139 -1163 0 +-1140 -1164 0 +-1135 -1147 0 +-1136 -1148 0 +-1137 -1149 0 +-1138 -1150 0 +-1139 -1151 0 +-1140 -1152 0 +-1135 -1141 0 +-1136 -1142 0 +-1137 -1143 0 +-1138 -1144 0 +-1139 -1145 0 +-1140 -1146 0 +-1129 -1159 0 +-1130 -1160 0 +-1131 -1161 0 +-1132 -1162 0 +-1133 -1163 0 +-1134 -1164 0 +-1129 -1153 0 +-1130 -1154 0 +-1131 -1155 0 +-1132 -1156 0 +-1133 -1157 0 +-1134 -1158 0 +-1129 -1147 0 +-1130 -1148 0 +-1131 -1149 0 +-1132 -1150 0 +-1133 -1151 0 +-1134 -1152 0 +-1129 -1141 0 +-1130 -1142 0 +-1131 -1143 0 +-1132 -1144 0 +-1133 -1145 0 +-1134 -1146 0 +-1129 -1135 0 +-1130 -1136 0 +-1131 -1137 0 +-1132 -1138 0 +-1133 -1139 0 +-1134 -1140 0 +-1123 -1153 0 +-1124 -1154 0 +-1125 -1155 0 +-1126 -1156 0 +-1127 -1157 0 +-1128 -1158 0 +-1123 -1147 0 +-1124 -1148 0 +-1125 -1149 0 +-1126 -1150 0 +-1127 -1151 0 +-1128 -1152 0 +-1123 -1141 0 +-1124 -1142 0 +-1125 -1143 0 +-1126 -1144 0 +-1127 -1145 0 +-1128 -1146 0 +-1123 -1135 0 +-1124 -1136 0 +-1125 -1137 0 +-1126 -1138 0 +-1127 -1139 0 +-1128 -1140 0 +-1123 -1129 0 +-1124 -1130 0 +-1125 -1131 0 +-1126 -1132 0 +-1127 -1133 0 +-1128 -1134 0 +-1117 -1147 0 +-1118 -1148 0 +-1119 -1149 0 +-1120 -1150 0 +-1121 -1151 0 +-1122 -1152 0 +-1117 -1141 0 +-1118 -1142 0 +-1119 -1143 0 +-1120 -1144 0 +-1121 -1145 0 +-1122 -1146 0 +-1117 -1135 0 +-1118 -1136 0 +-1119 -1137 0 +-1120 -1138 0 +-1121 -1139 0 +-1122 -1140 0 +-1117 -1129 0 +-1118 -1130 0 +-1119 -1131 0 +-1120 -1132 0 +-1121 -1133 0 +-1122 -1134 0 +-1117 -1123 0 +-1118 -1124 0 +-1119 -1125 0 +-1120 -1126 0 +-1121 -1127 0 +-1122 -1128 0 +-1111 -1141 0 +-1112 -1142 0 +-1113 -1143 0 +-1114 -1144 0 +-1115 -1145 0 +-1116 -1146 0 +-1111 -1135 0 +-1112 -1136 0 +-1113 -1137 0 +-1114 -1138 0 +-1115 -1139 0 +-1116 -1140 0 +-1111 -1129 0 +-1112 -1130 0 +-1113 -1131 0 +-1114 -1132 0 +-1115 -1133 0 +-1116 -1134 0 +-1111 -1123 0 +-1112 -1124 0 +-1113 -1125 0 +-1114 -1126 0 +-1115 -1127 0 +-1116 -1128 0 +-1111 -1117 0 +-1112 -1118 0 +-1113 -1119 0 +-1114 -1120 0 +-1115 -1121 0 +-1116 -1122 0 +-1105 -1135 0 +-1106 -1136 0 +-1107 -1137 0 +-1108 -1138 0 +-1109 -1139 0 +-1110 -1140 0 +-1105 -1129 0 +-1106 -1130 0 +-1107 -1131 0 +-1108 -1132 0 +-1109 -1133 0 +-1110 -1134 0 +-1105 -1123 0 +-1106 -1124 0 +-1107 -1125 0 +-1108 -1126 0 +-1109 -1127 0 +-1110 -1128 0 +-1105 -1117 0 +-1106 -1118 0 +-1107 -1119 0 +-1108 -1120 0 +-1109 -1121 0 +-1110 -1122 0 +-1105 -1111 0 +-1106 -1112 0 +-1107 -1113 0 +-1108 -1114 0 +-1109 -1115 0 +-1110 -1116 0 +-1099 -1129 0 +-1100 -1130 0 +-1101 -1131 0 +-1102 -1132 0 +-1103 -1133 0 +-1104 -1134 0 +-1099 -1123 0 +-1100 -1124 0 +-1101 -1125 0 +-1102 -1126 0 +-1103 -1127 0 +-1104 -1128 0 +-1099 -1117 0 +-1100 -1118 0 +-1101 -1119 0 +-1102 -1120 0 +-1103 -1121 0 +-1104 -1122 0 +-1099 -1111 0 +-1100 -1112 0 +-1101 -1113 0 +-1102 -1114 0 +-1103 -1115 0 +-1104 -1116 0 +-1099 -1105 0 +-1100 -1106 0 +-1101 -1107 0 +-1102 -1108 0 +-1103 -1109 0 +-1104 -1110 0 +-1093 -1123 0 +-1094 -1124 0 +-1095 -1125 0 +-1096 -1126 0 +-1097 -1127 0 +-1098 -1128 0 +-1093 -1117 0 +-1094 -1118 0 +-1095 -1119 0 +-1096 -1120 0 +-1097 -1121 0 +-1098 -1122 0 +-1093 -1111 0 +-1094 -1112 0 +-1095 -1113 0 +-1096 -1114 0 +-1097 -1115 0 +-1098 -1116 0 +-1093 -1105 0 +-1094 -1106 0 +-1095 -1107 0 +-1096 -1108 0 +-1097 -1109 0 +-1098 -1110 0 +-1093 -1099 0 +-1094 -1100 0 +-1095 -1101 0 +-1096 -1102 0 +-1097 -1103 0 +-1098 -1104 0 +-1087 -1117 0 +-1088 -1118 0 +-1089 -1119 0 +-1090 -1120 0 +-1091 -1121 0 +-1092 -1122 0 +-1087 -1111 0 +-1088 -1112 0 +-1089 -1113 0 +-1090 -1114 0 +-1091 -1115 0 +-1092 -1116 0 +-1087 -1105 0 +-1088 -1106 0 +-1089 -1107 0 +-1090 -1108 0 +-1091 -1109 0 +-1092 -1110 0 +-1087 -1099 0 +-1088 -1100 0 +-1089 -1101 0 +-1090 -1102 0 +-1091 -1103 0 +-1092 -1104 0 +-1087 -1093 0 +-1088 -1094 0 +-1089 -1095 0 +-1090 -1096 0 +-1091 -1097 0 +-1092 -1098 0 +-1081 -1111 0 +-1082 -1112 0 +-1083 -1113 0 +-1084 -1114 0 +-1085 -1115 0 +-1086 -1116 0 +-1081 -1105 0 +-1082 -1106 0 +-1083 -1107 0 +-1084 -1108 0 +-1085 -1109 0 +-1086 -1110 0 +-1081 -1099 0 +-1082 -1100 0 +-1083 -1101 0 +-1084 -1102 0 +-1085 -1103 0 +-1086 -1104 0 +-1081 -1093 0 +-1082 -1094 0 +-1083 -1095 0 +-1084 -1096 0 +-1085 -1097 0 +-1086 -1098 0 +-1081 -1087 0 +-1082 -1088 0 +-1083 -1089 0 +-1084 -1090 0 +-1085 -1091 0 +-1086 -1092 0 +-1075 -1105 0 +-1076 -1106 0 +-1077 -1107 0 +-1078 -1108 0 +-1079 -1109 0 +-1080 -1110 0 +-1075 -1099 0 +-1076 -1100 0 +-1077 -1101 0 +-1078 -1102 0 +-1079 -1103 0 +-1080 -1104 0 +-1075 -1093 0 +-1076 -1094 0 +-1077 -1095 0 +-1078 -1096 0 +-1079 -1097 0 +-1080 -1098 0 +-1075 -1081 0 +-1076 -1082 0 +-1077 -1083 0 +-1078 -1084 0 +-1079 -1085 0 +-1080 -1086 0 +-1069 -1099 0 +-1070 -1100 0 +-1071 -1101 0 +-1072 -1102 0 +-1073 -1103 0 +-1074 -1104 0 +-1069 -1093 0 +-1070 -1094 0 +-1071 -1095 0 +-1072 -1096 0 +-1073 -1097 0 +-1074 -1098 0 +-1069 -1087 0 +-1070 -1088 0 +-1071 -1089 0 +-1072 -1090 0 +-1073 -1091 0 +-1074 -1092 0 +-1069 -1081 0 +-1070 -1082 0 +-1071 -1083 0 +-1072 -1084 0 +-1073 -1085 0 +-1074 -1086 0 +-1069 -1075 0 +-1070 -1076 0 +-1071 -1077 0 +-1072 -1078 0 +-1073 -1079 0 +-1074 -1080 0 +-1063 -1093 0 +-1064 -1094 0 +-1065 -1095 0 +-1066 -1096 0 +-1067 -1097 0 +-1068 -1098 0 +-1063 -1087 0 +-1064 -1088 0 +-1065 -1089 0 +-1066 -1090 0 +-1067 -1091 0 +-1068 -1092 0 +-1063 -1081 0 +-1064 -1082 0 +-1065 -1083 0 +-1066 -1084 0 +-1067 -1085 0 +-1068 -1086 0 +-1063 -1075 0 +-1064 -1076 0 +-1065 -1077 0 +-1066 -1078 0 +-1067 -1079 0 +-1068 -1080 0 +-1063 -1069 0 +-1064 -1070 0 +-1065 -1071 0 +-1066 -1072 0 +-1067 -1073 0 +-1068 -1074 0 +-1057 -1087 0 +-1058 -1088 0 +-1059 -1089 0 +-1060 -1090 0 +-1061 -1091 0 +-1062 -1092 0 +-1057 -1081 0 +-1058 -1082 0 +-1059 -1083 0 +-1060 -1084 0 +-1061 -1085 0 +-1062 -1086 0 +-1057 -1075 0 +-1058 -1076 0 +-1059 -1077 0 +-1060 -1078 0 +-1061 -1079 0 +-1062 -1080 0 +-1057 -1069 0 +-1058 -1070 0 +-1059 -1071 0 +-1060 -1072 0 +-1061 -1073 0 +-1062 -1074 0 +-1057 -1063 0 +-1058 -1064 0 +-1059 -1065 0 +-1060 -1066 0 +-1061 -1067 0 +-1062 -1068 0 +-1051 -1081 0 +-1052 -1082 0 +-1053 -1083 0 +-1054 -1084 0 +-1055 -1085 0 +-1056 -1086 0 +-1051 -1075 0 +-1052 -1076 0 +-1053 -1077 0 +-1054 -1078 0 +-1055 -1079 0 +-1056 -1080 0 +-1051 -1069 0 +-1052 -1070 0 +-1053 -1071 0 +-1054 -1072 0 +-1055 -1073 0 +-1056 -1074 0 +-1051 -1063 0 +-1052 -1064 0 +-1053 -1065 0 +-1054 -1066 0 +-1055 -1067 0 +-1056 -1068 0 +-1045 -1075 0 +-1046 -1076 0 +-1047 -1077 0 +-1048 -1078 0 +-1049 -1079 0 +-1050 -1080 0 +-1045 -1069 0 +-1046 -1070 0 +-1047 -1071 0 +-1048 -1072 0 +-1049 -1073 0 +-1050 -1074 0 +-1045 -1063 0 +-1046 -1064 0 +-1047 -1065 0 +-1048 -1066 0 +-1049 -1067 0 +-1050 -1068 0 +-1045 -1057 0 +-1046 -1058 0 +-1047 -1059 0 +-1048 -1060 0 +-1049 -1061 0 +-1050 -1062 0 +-1045 -1051 0 +-1046 -1052 0 +-1047 -1053 0 +-1048 -1054 0 +-1049 -1055 0 +-1050 -1056 0 +-1039 -1069 0 +-1040 -1070 0 +-1041 -1071 0 +-1042 -1072 0 +-1043 -1073 0 +-1044 -1074 0 +-1039 -1063 0 +-1040 -1064 0 +-1041 -1065 0 +-1042 -1066 0 +-1043 -1067 0 +-1044 -1068 0 +-1039 -1057 0 +-1040 -1058 0 +-1041 -1059 0 +-1042 -1060 0 +-1043 -1061 0 +-1044 -1062 0 +-1039 -1045 0 +-1040 -1046 0 +-1041 -1047 0 +-1042 -1048 0 +-1043 -1049 0 +-1044 -1050 0 +-1033 -1063 0 +-1034 -1064 0 +-1035 -1065 0 +-1036 -1066 0 +-1037 -1067 0 +-1038 -1068 0 +-1033 -1057 0 +-1034 -1058 0 +-1035 -1059 0 +-1036 -1060 0 +-1037 -1061 0 +-1038 -1062 0 +-1033 -1051 0 +-1034 -1052 0 +-1035 -1053 0 +-1036 -1054 0 +-1037 -1055 0 +-1038 -1056 0 +-1033 -1045 0 +-1034 -1046 0 +-1035 -1047 0 +-1036 -1048 0 +-1037 -1049 0 +-1038 -1050 0 +-1033 -1039 0 +-1034 -1040 0 +-1035 -1041 0 +-1036 -1042 0 +-1037 -1043 0 +-1038 -1044 0 +-1027 -1057 0 +-1028 -1058 0 +-1029 -1059 0 +-1030 -1060 0 +-1031 -1061 0 +-1032 -1062 0 +-1027 -1051 0 +-1028 -1052 0 +-1029 -1053 0 +-1030 -1054 0 +-1031 -1055 0 +-1032 -1056 0 +-1027 -1045 0 +-1028 -1046 0 +-1029 -1047 0 +-1030 -1048 0 +-1031 -1049 0 +-1032 -1050 0 +-1027 -1039 0 +-1028 -1040 0 +-1029 -1041 0 +-1030 -1042 0 +-1031 -1043 0 +-1032 -1044 0 +-1027 -1033 0 +-1028 -1034 0 +-1029 -1035 0 +-1030 -1036 0 +-1031 -1037 0 +-1032 -1038 0 +-1021 -1051 0 +-1022 -1052 0 +-1023 -1053 0 +-1024 -1054 0 +-1025 -1055 0 +-1026 -1056 0 +-1021 -1039 0 +-1022 -1040 0 +-1023 -1041 0 +-1024 -1042 0 +-1025 -1043 0 +-1026 -1044 0 +-1021 -1033 0 +-1022 -1034 0 +-1023 -1035 0 +-1024 -1036 0 +-1025 -1037 0 +-1026 -1038 0 +-1021 -1027 0 +-1022 -1028 0 +-1023 -1029 0 +-1024 -1030 0 +-1025 -1031 0 +-1026 -1032 0 +-1015 -1045 0 +-1016 -1046 0 +-1017 -1047 0 +-1018 -1048 0 +-1019 -1049 0 +-1020 -1050 0 +-1015 -1039 0 +-1016 -1040 0 +-1017 -1041 0 +-1018 -1042 0 +-1019 -1043 0 +-1020 -1044 0 +-1015 -1033 0 +-1016 -1034 0 +-1017 -1035 0 +-1018 -1036 0 +-1019 -1037 0 +-1020 -1038 0 +-1015 -1027 0 +-1016 -1028 0 +-1017 -1029 0 +-1018 -1030 0 +-1019 -1031 0 +-1020 -1032 0 +-1015 -1021 0 +-1016 -1022 0 +-1017 -1023 0 +-1018 -1024 0 +-1019 -1025 0 +-1020 -1026 0 +-1009 -1039 0 +-1010 -1040 0 +-1011 -1041 0 +-1012 -1042 0 +-1013 -1043 0 +-1014 -1044 0 +-1009 -1033 0 +-1010 -1034 0 +-1011 -1035 0 +-1012 -1036 0 +-1013 -1037 0 +-1014 -1038 0 +-1009 -1027 0 +-1010 -1028 0 +-1011 -1029 0 +-1012 -1030 0 +-1013 -1031 0 +-1014 -1032 0 +-1009 -1021 0 +-1010 -1022 0 +-1011 -1023 0 +-1012 -1024 0 +-1013 -1025 0 +-1014 -1026 0 +-1009 -1015 0 +-1010 -1016 0 +-1011 -1017 0 +-1012 -1018 0 +-1013 -1019 0 +-1014 -1020 0 +-1003 -1033 0 +-1004 -1034 0 +-1005 -1035 0 +-1006 -1036 0 +-1007 -1037 0 +-1008 -1038 0 +-1003 -1027 0 +-1004 -1028 0 +-1005 -1029 0 +-1006 -1030 0 +-1007 -1031 0 +-1008 -1032 0 +-1003 -1021 0 +-1004 -1022 0 +-1005 -1023 0 +-1006 -1024 0 +-1007 -1025 0 +-1008 -1026 0 +-1003 -1015 0 +-1004 -1016 0 +-1005 -1017 0 +-1006 -1018 0 +-1007 -1019 0 +-1008 -1020 0 +-1003 -1009 0 +-1004 -1010 0 +-1005 -1011 0 +-1006 -1012 0 +-1007 -1013 0 +-1008 -1014 0 +-997 -1027 0 +-998 -1028 0 +-999 -1029 0 +-1000 -1030 0 +-1001 -1031 0 +-1002 -1032 0 +-997 -1021 0 +-998 -1022 0 +-999 -1023 0 +-1000 -1024 0 +-1001 -1025 0 +-1002 -1026 0 +-997 -1015 0 +-998 -1016 0 +-999 -1017 0 +-1000 -1018 0 +-1001 -1019 0 +-1002 -1020 0 +-997 -1009 0 +-998 -1010 0 +-999 -1011 0 +-1000 -1012 0 +-1001 -1013 0 +-1002 -1014 0 +-997 -1003 0 +-998 -1004 0 +-999 -1005 0 +-1000 -1006 0 +-1001 -1007 0 +-1002 -1008 0 +-991 -1021 0 +-992 -1022 0 +-993 -1023 0 +-994 -1024 0 +-995 -1025 0 +-996 -1026 0 +-991 -1015 0 +-992 -1016 0 +-993 -1017 0 +-994 -1018 0 +-995 -1019 0 +-996 -1020 0 +-991 -1009 0 +-992 -1010 0 +-993 -1011 0 +-994 -1012 0 +-995 -1013 0 +-996 -1014 0 +-991 -1003 0 +-992 -1004 0 +-993 -1005 0 +-994 -1006 0 +-995 -1007 0 +-996 -1008 0 +-991 -997 0 +-992 -998 0 +-993 -999 0 +-994 -1000 0 +-995 -1001 0 +-996 -1002 0 +-985 -1015 0 +-986 -1016 0 +-987 -1017 0 +-988 -1018 0 +-989 -1019 0 +-990 -1020 0 +-985 -1009 0 +-986 -1010 0 +-987 -1011 0 +-988 -1012 0 +-989 -1013 0 +-990 -1014 0 +-985 -1003 0 +-986 -1004 0 +-987 -1005 0 +-988 -1006 0 +-989 -1007 0 +-990 -1008 0 +-985 -997 0 +-986 -998 0 +-987 -999 0 +-988 -1000 0 +-989 -1001 0 +-990 -1002 0 +-985 -991 0 +-986 -992 0 +-987 -993 0 +-988 -994 0 +-989 -995 0 +-990 -996 0 +-979 -1009 0 +-980 -1010 0 +-981 -1011 0 +-982 -1012 0 +-983 -1013 0 +-984 -1014 0 +-979 -1003 0 +-980 -1004 0 +-981 -1005 0 +-982 -1006 0 +-983 -1007 0 +-984 -1008 0 +-979 -997 0 +-980 -998 0 +-981 -999 0 +-982 -1000 0 +-983 -1001 0 +-984 -1002 0 +-979 -991 0 +-980 -992 0 +-981 -993 0 +-982 -994 0 +-983 -995 0 +-984 -996 0 +-979 -985 0 +-980 -986 0 +-981 -987 0 +-982 -988 0 +-983 -989 0 +-984 -990 0 +-973 -997 0 +-974 -998 0 +-975 -999 0 +-976 -1000 0 +-977 -1001 0 +-978 -1002 0 +-973 -991 0 +-974 -992 0 +-975 -993 0 +-976 -994 0 +-977 -995 0 +-978 -996 0 +-973 -985 0 +-974 -986 0 +-975 -987 0 +-976 -988 0 +-977 -989 0 +-978 -990 0 +-973 -979 0 +-974 -980 0 +-975 -981 0 +-976 -982 0 +-977 -983 0 +-978 -984 0 +-967 -997 0 +-968 -998 0 +-969 -999 0 +-970 -1000 0 +-971 -1001 0 +-972 -1002 0 +-967 -991 0 +-968 -992 0 +-969 -993 0 +-970 -994 0 +-971 -995 0 +-972 -996 0 +-967 -985 0 +-968 -986 0 +-969 -987 0 +-970 -988 0 +-971 -989 0 +-972 -990 0 +-967 -979 0 +-968 -980 0 +-969 -981 0 +-970 -982 0 +-971 -983 0 +-972 -984 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-961 -991 0 +-962 -992 0 +-963 -993 0 +-964 -994 0 +-965 -995 0 +-966 -996 0 +-961 -985 0 +-962 -986 0 +-963 -987 0 +-964 -988 0 +-965 -989 0 +-966 -990 0 +-961 -979 0 +-962 -980 0 +-963 -981 0 +-964 -982 0 +-965 -983 0 +-966 -984 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-955 -985 0 +-956 -986 0 +-957 -987 0 +-958 -988 0 +-959 -989 0 +-960 -990 0 +-955 -979 0 +-956 -980 0 +-957 -981 0 +-958 -982 0 +-959 -983 0 +-960 -984 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -967 0 +-956 -968 0 +-957 -969 0 +-958 -970 0 +-959 -971 0 +-960 -972 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-949 -979 0 +-950 -980 0 +-951 -981 0 +-952 -982 0 +-953 -983 0 +-954 -984 0 +-949 -973 0 +-950 -974 0 +-951 -975 0 +-952 -976 0 +-953 -977 0 +-954 -978 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -919 0 +-890 -920 0 +-891 -921 0 +-892 -922 0 +-893 -923 0 +-894 -924 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-409 -2017 0 +-410 -2018 0 +-411 -2019 0 +-412 -2020 0 +-413 -2021 0 +-414 -2022 0 +-817 -1945 0 +-818 -1946 0 +-819 -1947 0 +-820 -1948 0 +-821 -1949 0 +-822 -1950 0 +-541 -1243 0 +-542 -1244 0 +-543 -1245 0 +-544 -1246 0 +-545 -1247 0 +-546 -1248 0 +-61 -1555 0 +-62 -1556 0 +-63 -1557 0 +-64 -1558 0 +-65 -1559 0 +-66 -1560 0 +-565 -1729 0 +-566 -1730 0 +-567 -1731 0 +-568 -1732 0 +-569 -1733 0 +-570 -1734 0 +-1291 -1939 0 +-1292 -1940 0 +-1293 -1941 0 +-1294 -1942 0 +-1295 -1943 0 +-1296 -1944 0 +-79 -241 0 +-80 -242 0 +-81 -243 0 +-82 -244 0 +-83 -245 0 +-84 -246 0 +-1891 -2029 0 +-1892 -2030 0 +-1893 -2031 0 +-1894 -2032 0 +-1895 -2033 0 +-1896 -2034 0 +-781 -1291 0 +-782 -1292 0 +-783 -1293 0 +-784 -1294 0 +-785 -1295 0 +-786 -1296 0 +-1939 -2131 0 +-1940 -2132 0 +-1941 -2133 0 +-1942 -2134 0 +-1943 -2135 0 +-1944 -2136 0 +-739 -1249 0 +-740 -1250 0 +-741 -1251 0 +-742 -1252 0 +-743 -1253 0 +-744 -1254 0 +-1849 -2149 0 +-1850 -2150 0 +-1851 -2151 0 +-1852 -2152 0 +-1853 -2153 0 +-1854 -2154 0 +-535 -1873 0 +-536 -1874 0 +-537 -1875 0 +-538 -1876 0 +-539 -1877 0 +-540 -1878 0 +-427 -889 0 +-428 -890 0 +-429 -891 0 +-430 -892 0 +-431 -893 0 +-432 -894 0 +-49 -2131 0 +-50 -2132 0 +-51 -2133 0 +-52 -2134 0 +-53 -2135 0 +-54 -2136 0 +-949 -1879 0 +-950 -1880 0 +-951 -1881 0 +-952 -1882 0 +-953 -1883 0 +-954 -1884 0 diff --git a/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf new file mode 100644 index 000000000..16d3a8916 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf @@ -0,0 +1,7730 @@ +c created by edge2cnf +p cnf 1008 7728 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-979 -980 0 +-979 -981 0 +-979 -982 0 +-979 -983 0 +-979 -984 0 +-980 -981 0 +-980 -982 0 +-980 -983 0 +-980 -984 0 +-981 -982 0 +-981 -983 0 +-981 -984 0 +-982 -983 0 +-982 -984 0 +-983 -984 0 +979 980 981 982 983 984 0 +-985 -986 0 +-985 -987 0 +-985 -988 0 +-985 -989 0 +-985 -990 0 +-986 -987 0 +-986 -988 0 +-986 -989 0 +-986 -990 0 +-987 -988 0 +-987 -989 0 +-987 -990 0 +-988 -989 0 +-988 -990 0 +-989 -990 0 +985 986 987 988 989 990 0 +-991 -992 0 +-991 -993 0 +-991 -994 0 +-991 -995 0 +-991 -996 0 +-992 -993 0 +-992 -994 0 +-992 -995 0 +-992 -996 0 +-993 -994 0 +-993 -995 0 +-993 -996 0 +-994 -995 0 +-994 -996 0 +-995 -996 0 +991 992 993 994 995 996 0 +-997 -998 0 +-997 -999 0 +-997 -1000 0 +-997 -1001 0 +-997 -1002 0 +-998 -999 0 +-998 -1000 0 +-998 -1001 0 +-998 -1002 0 +-999 -1000 0 +-999 -1001 0 +-999 -1002 0 +-1000 -1001 0 +-1000 -1002 0 +-1001 -1002 0 +997 998 999 1000 1001 1002 0 +-1003 -1004 0 +-1003 -1005 0 +-1003 -1006 0 +-1003 -1007 0 +-1003 -1008 0 +-1004 -1005 0 +-1004 -1006 0 +-1004 -1007 0 +-1004 -1008 0 +-1005 -1006 0 +-1005 -1007 0 +-1005 -1008 0 +-1006 -1007 0 +-1006 -1008 0 +-1007 -1008 0 +1003 1004 1005 1006 1007 1008 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-7 -991 0 +-8 -992 0 +-9 -993 0 +-10 -994 0 +-11 -995 0 +-12 -996 0 +-25 -1003 0 +-26 -1004 0 +-27 -1005 0 +-28 -1006 0 +-29 -1007 0 +-30 -1008 0 +-19 -1003 0 +-20 -1004 0 +-21 -1005 0 +-22 -1006 0 +-23 -1007 0 +-24 -1008 0 +-13 -1003 0 +-14 -1004 0 +-15 -1005 0 +-16 -1006 0 +-17 -1007 0 +-18 -1008 0 +-7 -1003 0 +-8 -1004 0 +-9 -1005 0 +-10 -1006 0 +-11 -1007 0 +-12 -1008 0 +-1 -1003 0 +-2 -1004 0 +-3 -1005 0 +-4 -1006 0 +-5 -1007 0 +-6 -1008 0 +-19 -997 0 +-20 -998 0 +-21 -999 0 +-22 -1000 0 +-23 -1001 0 +-24 -1002 0 +-13 -997 0 +-14 -998 0 +-15 -999 0 +-16 -1000 0 +-17 -1001 0 +-18 -1002 0 +-7 -997 0 +-8 -998 0 +-9 -999 0 +-10 -1000 0 +-11 -1001 0 +-12 -1002 0 +-1 -997 0 +-2 -998 0 +-3 -999 0 +-4 -1000 0 +-5 -1001 0 +-6 -1002 0 +-997 -1003 0 +-998 -1004 0 +-999 -1005 0 +-1000 -1006 0 +-1001 -1007 0 +-1002 -1008 0 +-13 -991 0 +-14 -992 0 +-15 -993 0 +-16 -994 0 +-17 -995 0 +-18 -996 0 +-1 -991 0 +-2 -992 0 +-3 -993 0 +-4 -994 0 +-5 -995 0 +-6 -996 0 +-991 -1003 0 +-992 -1004 0 +-993 -1005 0 +-994 -1006 0 +-995 -1007 0 +-996 -1008 0 +-991 -997 0 +-992 -998 0 +-993 -999 0 +-994 -1000 0 +-995 -1001 0 +-996 -1002 0 +-7 -985 0 +-8 -986 0 +-9 -987 0 +-10 -988 0 +-11 -989 0 +-12 -990 0 +-1 -985 0 +-2 -986 0 +-3 -987 0 +-4 -988 0 +-5 -989 0 +-6 -990 0 +-985 -1003 0 +-986 -1004 0 +-987 -1005 0 +-988 -1006 0 +-989 -1007 0 +-990 -1008 0 +-985 -997 0 +-986 -998 0 +-987 -999 0 +-988 -1000 0 +-989 -1001 0 +-990 -1002 0 +-985 -991 0 +-986 -992 0 +-987 -993 0 +-988 -994 0 +-989 -995 0 +-990 -996 0 +-1 -979 0 +-2 -980 0 +-3 -981 0 +-4 -982 0 +-5 -983 0 +-6 -984 0 +-979 -1003 0 +-980 -1004 0 +-981 -1005 0 +-982 -1006 0 +-983 -1007 0 +-984 -1008 0 +-979 -991 0 +-980 -992 0 +-981 -993 0 +-982 -994 0 +-983 -995 0 +-984 -996 0 +-979 -985 0 +-980 -986 0 +-981 -987 0 +-982 -988 0 +-983 -989 0 +-984 -990 0 +-973 -1003 0 +-974 -1004 0 +-975 -1005 0 +-976 -1006 0 +-977 -1007 0 +-978 -1008 0 +-973 -997 0 +-974 -998 0 +-975 -999 0 +-976 -1000 0 +-977 -1001 0 +-978 -1002 0 +-973 -991 0 +-974 -992 0 +-975 -993 0 +-976 -994 0 +-977 -995 0 +-978 -996 0 +-973 -985 0 +-974 -986 0 +-975 -987 0 +-976 -988 0 +-977 -989 0 +-978 -990 0 +-973 -979 0 +-974 -980 0 +-975 -981 0 +-976 -982 0 +-977 -983 0 +-978 -984 0 +-967 -997 0 +-968 -998 0 +-969 -999 0 +-970 -1000 0 +-971 -1001 0 +-972 -1002 0 +-967 -991 0 +-968 -992 0 +-969 -993 0 +-970 -994 0 +-971 -995 0 +-972 -996 0 +-967 -985 0 +-968 -986 0 +-969 -987 0 +-970 -988 0 +-971 -989 0 +-972 -990 0 +-967 -979 0 +-968 -980 0 +-969 -981 0 +-970 -982 0 +-971 -983 0 +-972 -984 0 +-961 -991 0 +-962 -992 0 +-963 -993 0 +-964 -994 0 +-965 -995 0 +-966 -996 0 +-961 -985 0 +-962 -986 0 +-963 -987 0 +-964 -988 0 +-965 -989 0 +-966 -990 0 +-961 -979 0 +-962 -980 0 +-963 -981 0 +-964 -982 0 +-965 -983 0 +-966 -984 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-955 -985 0 +-956 -986 0 +-957 -987 0 +-958 -988 0 +-959 -989 0 +-960 -990 0 +-955 -979 0 +-956 -980 0 +-957 -981 0 +-958 -982 0 +-959 -983 0 +-960 -984 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -967 0 +-956 -968 0 +-957 -969 0 +-958 -970 0 +-959 -971 0 +-960 -972 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-949 -979 0 +-950 -980 0 +-951 -981 0 +-952 -982 0 +-953 -983 0 +-954 -984 0 +-949 -973 0 +-950 -974 0 +-951 -975 0 +-952 -976 0 +-953 -977 0 +-954 -978 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -919 0 +-890 -920 0 +-891 -921 0 +-892 -922 0 +-893 -923 0 +-894 -924 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-721 -895 0 +-722 -896 0 +-723 -897 0 +-724 -898 0 +-725 -899 0 +-726 -900 0 +-649 -943 0 +-650 -944 0 +-651 -945 0 +-652 -946 0 +-653 -947 0 +-654 -948 0 +-157 -919 0 +-158 -920 0 +-159 -921 0 +-160 -922 0 +-161 -923 0 +-162 -924 0 +-49 -919 0 +-50 -920 0 +-51 -921 0 +-52 -922 0 +-53 -923 0 +-54 -924 0 +-229 -325 0 +-230 -326 0 +-231 -327 0 +-232 -328 0 +-233 -329 0 +-234 -330 0 +-379 -745 0 +-380 -746 0 +-381 -747 0 +-382 -748 0 +-383 -749 0 +-384 -750 0 diff --git a/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf new file mode 100644 index 000000000..5a7066807 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf @@ -0,0 +1,7500 @@ +c created by edge2cnf +p cnf 978 7498 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-7 -955 0 +-8 -956 0 +-9 -957 0 +-10 -958 0 +-11 -959 0 +-12 -960 0 +-25 -973 0 +-26 -974 0 +-27 -975 0 +-28 -976 0 +-29 -977 0 +-30 -978 0 +-19 -973 0 +-20 -974 0 +-21 -975 0 +-22 -976 0 +-23 -977 0 +-24 -978 0 +-13 -973 0 +-14 -974 0 +-15 -975 0 +-16 -976 0 +-17 -977 0 +-18 -978 0 +-7 -973 0 +-8 -974 0 +-9 -975 0 +-10 -976 0 +-11 -977 0 +-12 -978 0 +-1 -973 0 +-2 -974 0 +-3 -975 0 +-4 -976 0 +-5 -977 0 +-6 -978 0 +-19 -967 0 +-20 -968 0 +-21 -969 0 +-22 -970 0 +-23 -971 0 +-24 -972 0 +-13 -967 0 +-14 -968 0 +-15 -969 0 +-16 -970 0 +-17 -971 0 +-18 -972 0 +-7 -967 0 +-8 -968 0 +-9 -969 0 +-10 -970 0 +-11 -971 0 +-12 -972 0 +-1 -967 0 +-2 -968 0 +-3 -969 0 +-4 -970 0 +-5 -971 0 +-6 -972 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-13 -961 0 +-14 -962 0 +-15 -963 0 +-16 -964 0 +-17 -965 0 +-18 -966 0 +-7 -961 0 +-8 -962 0 +-9 -963 0 +-10 -964 0 +-11 -965 0 +-12 -966 0 +-1 -961 0 +-2 -962 0 +-3 -963 0 +-4 -964 0 +-5 -965 0 +-6 -966 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-1 -955 0 +-2 -956 0 +-3 -957 0 +-4 -958 0 +-5 -959 0 +-6 -960 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -967 0 +-956 -968 0 +-957 -969 0 +-958 -970 0 +-959 -971 0 +-960 -972 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-1 -949 0 +-2 -950 0 +-3 -951 0 +-4 -952 0 +-5 -953 0 +-6 -954 0 +-949 -973 0 +-950 -974 0 +-951 -975 0 +-952 -976 0 +-953 -977 0 +-954 -978 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -919 0 +-890 -920 0 +-891 -921 0 +-892 -922 0 +-893 -923 0 +-894 -924 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-205 -859 0 +-206 -860 0 +-207 -861 0 +-208 -862 0 +-209 -863 0 +-210 -864 0 +-349 -397 0 +-350 -398 0 +-351 -399 0 +-352 -400 0 +-353 -401 0 +-354 -402 0 +-643 -709 0 +-644 -710 0 +-645 -711 0 +-646 -712 0 +-647 -713 0 +-648 -714 0 +-511 -643 0 +-512 -644 0 +-513 -645 0 +-514 -646 0 +-515 -647 0 +-516 -648 0 +-79 -289 0 +-80 -290 0 +-81 -291 0 +-82 -292 0 +-83 -293 0 +-84 -294 0 +-217 -877 0 +-218 -878 0 +-219 -879 0 +-220 -880 0 +-221 -881 0 +-222 -882 0 diff --git a/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-small-test.txt b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-small-test.txt new file mode 100644 index 000000000..21cdfb976 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-small-test.txt @@ -0,0 +1,5 @@ +example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf diff --git a/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-small-train.txt b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-small-train.txt new file mode 100644 index 000000000..eb72f23c9 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/SWGCP-satisfiable-small-train.txt @@ -0,0 +1,5 @@ +example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf diff --git a/sparkle/Components/paramils-v3.0.0/example_data/qwh-single-inst.txt b/sparkle/Components/paramils-v3.0.0/example_data/qwh-single-inst.txt new file mode 100644 index 000000000..2cc3d85a3 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/qwh-single-inst.txt @@ -0,0 +1 @@ +example_data/qwh_instance/000549.cnf diff --git a/sparkle/Components/paramils-v3.0.0/example_data/qwh_instance/000549.cnf b/sparkle/Components/paramils-v3.0.0/example_data/qwh_instance/000549.cnf new file mode 100644 index 000000000..474f7d24b --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_data/qwh_instance/000549.cnf @@ -0,0 +1,7828 @@ +p cnf 1077 7827 + -1 -2 0 + -1 -3 0 + -1 -4 0 + -1 -5 0 + -1 -6 0 + -1 -7 0 + -2 -3 0 + -2 -4 0 + -2 -5 0 + -2 -6 0 + -2 -7 0 + -3 -4 0 + -3 -5 0 + -3 -6 0 + -3 -7 0 + -4 -5 0 + -4 -6 0 + -4 -7 0 + -5 -6 0 + -5 -7 0 + -6 -7 0 + -8 -9 0 + -8 -10 0 + -8 -11 0 + -8 -12 0 + -9 -10 0 + -9 -11 0 + -9 -12 0 + -10 -11 0 + -10 -12 0 + -11 -12 0 + -13 -14 0 + -13 -15 0 + -13 -16 0 + -14 -15 0 + -14 -16 0 + -15 -16 0 + -17 -18 0 + -17 -19 0 + -17 -20 0 + -17 -21 0 + -17 -22 0 + -17 -23 0 + -18 -19 0 + -18 -20 0 + -18 -21 0 + -18 -22 0 + -18 -23 0 + -19 -20 0 + -19 -21 0 + -19 -22 0 + -19 -23 0 + -20 -21 0 + -20 -22 0 + -20 -23 0 + -21 -22 0 + -21 -23 0 + -22 -23 0 + -24 -25 0 + -24 -26 0 + -24 -27 0 + -25 -26 0 + -25 -27 0 + -26 -27 0 + -28 -29 0 + -28 -30 0 + -28 -31 0 + -29 -30 0 + -29 -31 0 + -30 -31 0 + -32 -33 0 + -32 -34 0 + -32 -35 0 + -32 -36 0 + -33 -34 0 + -33 -35 0 + -33 -36 0 + -34 -35 0 + -34 -36 0 + -35 -36 0 + -37 -38 0 + -37 -39 0 + -37 -40 0 + -38 -39 0 + -38 -40 0 + -39 -40 0 + -41 -42 0 + -41 -43 0 + -41 -44 0 + -42 -43 0 + -42 -44 0 + -43 -44 0 + -45 -46 0 + -45 -47 0 + -45 -48 0 + -45 -49 0 + -46 -47 0 + -46 -48 0 + -46 -49 0 + -47 -48 0 + -47 -49 0 + -48 -49 0 + -50 -51 0 + -50 -52 0 + -50 -53 0 + -51 -52 0 + -51 -53 0 + -52 -53 0 + -54 -55 0 + -54 -56 0 + -55 -56 0 + -57 -58 0 + -57 -59 0 + -58 -59 0 + -60 -61 0 + -60 -62 0 + -60 -63 0 + -60 -64 0 + -61 -62 0 + -61 -63 0 + -61 -64 0 + -62 -63 0 + -62 -64 0 + -63 -64 0 + -65 -66 0 + -65 -67 0 + -65 -68 0 + -66 -67 0 + -66 -68 0 + -67 -68 0 + -69 -70 0 + -69 -71 0 + -69 -72 0 + -70 -71 0 + -70 -72 0 + -71 -72 0 + -73 -74 0 + -73 -75 0 + -73 -76 0 + -74 -75 0 + -74 -76 0 + -75 -76 0 + -77 -78 0 + -77 -79 0 + -77 -80 0 + -77 -81 0 + -77 -82 0 + -78 -79 0 + -78 -80 0 + -78 -81 0 + -78 -82 0 + -79 -80 0 + -79 -81 0 + -79 -82 0 + -80 -81 0 + -80 -82 0 + -81 -82 0 + -83 -84 0 + -85 -86 0 + -85 -87 0 + -85 -88 0 + -85 -89 0 + -86 -87 0 + -86 -88 0 + -86 -89 0 + -87 -88 0 + -87 -89 0 + -88 -89 0 + -90 -91 0 + -90 -92 0 + -90 -93 0 + -90 -94 0 + -91 -92 0 + -91 -93 0 + -91 -94 0 + -92 -93 0 + -92 -94 0 + -93 -94 0 + -95 -96 0 + -95 -97 0 + -95 -98 0 + -95 -99 0 + -96 -97 0 + -96 -98 0 + -96 -99 0 + -97 -98 0 + -97 -99 0 + -98 -99 0 + -100 -101 0 + -100 -102 0 + -101 -102 0 + -103 -104 0 + -103 -105 0 + -103 -106 0 + -103 -107 0 + -103 -108 0 + -103 -109 0 + -104 -105 0 + -104 -106 0 + -104 -107 0 + -104 -108 0 + -104 -109 0 + -105 -106 0 + -105 -107 0 + -105 -108 0 + -105 -109 0 + -106 -107 0 + -106 -108 0 + -106 -109 0 + -107 -108 0 + -107 -109 0 + -108 -109 0 + -110 -111 0 + -110 -112 0 + -110 -113 0 + -110 -114 0 + -111 -112 0 + -111 -113 0 + -111 -114 0 + -112 -113 0 + -112 -114 0 + -113 -114 0 + -115 -116 0 + -115 -117 0 + -115 -118 0 + -115 -119 0 + -115 -120 0 + -115 -121 0 + -115 -122 0 + -115 -123 0 + -116 -117 0 + -116 -118 0 + -116 -119 0 + -116 -120 0 + -116 -121 0 + -116 -122 0 + -116 -123 0 + -117 -118 0 + -117 -119 0 + -117 -120 0 + -117 -121 0 + -117 -122 0 + -117 -123 0 + -118 -119 0 + -118 -120 0 + -118 -121 0 + -118 -122 0 + -118 -123 0 + -119 -120 0 + -119 -121 0 + -119 -122 0 + -119 -123 0 + -120 -121 0 + -120 -122 0 + -120 -123 0 + -121 -122 0 + -121 -123 0 + -122 -123 0 + -124 -125 0 + -124 -126 0 + -124 -127 0 + -124 -128 0 + -124 -129 0 + -125 -126 0 + -125 -127 0 + -125 -128 0 + -125 -129 0 + -126 -127 0 + -126 -128 0 + -126 -129 0 + -127 -128 0 + -127 -129 0 + -128 -129 0 + -130 -131 0 + -130 -132 0 + -130 -133 0 + -131 -132 0 + -131 -133 0 + -132 -133 0 + -134 -135 0 + -134 -136 0 + -134 -137 0 + -134 -138 0 + -134 -139 0 + -134 -140 0 + -135 -136 0 + -135 -137 0 + -135 -138 0 + -135 -139 0 + -135 -140 0 + -136 -137 0 + -136 -138 0 + -136 -139 0 + -136 -140 0 + -137 -138 0 + -137 -139 0 + -137 -140 0 + -138 -139 0 + -138 -140 0 + -139 -140 0 + -141 -142 0 + -141 -143 0 + -141 -144 0 + -141 -145 0 + -141 -146 0 + -141 -147 0 + -142 -143 0 + -142 -144 0 + -142 -145 0 + -142 -146 0 + -142 -147 0 + -143 -144 0 + -143 -145 0 + -143 -146 0 + -143 -147 0 + -144 -145 0 + -144 -146 0 + -144 -147 0 + -145 -146 0 + -145 -147 0 + -146 -147 0 + -148 -149 0 + -148 -150 0 + -148 -151 0 + -148 -152 0 + -148 -153 0 + -148 -154 0 + -149 -150 0 + -149 -151 0 + -149 -152 0 + -149 -153 0 + -149 -154 0 + -150 -151 0 + -150 -152 0 + -150 -153 0 + -150 -154 0 + -151 -152 0 + -151 -153 0 + -151 -154 0 + -152 -153 0 + -152 -154 0 + -153 -154 0 + -155 -156 0 + -155 -157 0 + -155 -158 0 + -155 -159 0 + -155 -160 0 + -156 -157 0 + -156 -158 0 + -156 -159 0 + -156 -160 0 + -157 -158 0 + -157 -159 0 + -157 -160 0 + -158 -159 0 + -158 -160 0 + -159 -160 0 + -161 -162 0 + -161 -163 0 + -161 -164 0 + -161 -165 0 + -162 -163 0 + -162 -164 0 + -162 -165 0 + -163 -164 0 + -163 -165 0 + -164 -165 0 + -166 -167 0 + -166 -168 0 + -166 -169 0 + -167 -168 0 + -167 -169 0 + -168 -169 0 + -170 -171 0 + -170 -172 0 + -170 -173 0 + -170 -174 0 + -170 -175 0 + -170 -176 0 + -170 -177 0 + -170 -178 0 + -171 -172 0 + -171 -173 0 + -171 -174 0 + -171 -175 0 + -171 -176 0 + -171 -177 0 + -171 -178 0 + -172 -173 0 + -172 -174 0 + -172 -175 0 + -172 -176 0 + -172 -177 0 + -172 -178 0 + -173 -174 0 + -173 -175 0 + -173 -176 0 + -173 -177 0 + -173 -178 0 + -174 -175 0 + -174 -176 0 + -174 -177 0 + -174 -178 0 + -175 -176 0 + -175 -177 0 + -175 -178 0 + -176 -177 0 + -176 -178 0 + -177 -178 0 + -179 -180 0 + -179 -181 0 + -179 -182 0 + -179 -183 0 + -179 -184 0 + -180 -181 0 + -180 -182 0 + -180 -183 0 + -180 -184 0 + -181 -182 0 + -181 -183 0 + -181 -184 0 + -182 -183 0 + -182 -184 0 + -183 -184 0 + -185 -186 0 + -185 -187 0 + -185 -188 0 + -185 -189 0 + -185 -190 0 + -186 -187 0 + -186 -188 0 + -186 -189 0 + -186 -190 0 + -187 -188 0 + -187 -189 0 + -187 -190 0 + -188 -189 0 + -188 -190 0 + -189 -190 0 + -191 -192 0 + -191 -193 0 + -191 -194 0 + -191 -195 0 + -191 -196 0 + -191 -197 0 + -191 -198 0 + -192 -193 0 + -192 -194 0 + -192 -195 0 + -192 -196 0 + -192 -197 0 + -192 -198 0 + -193 -194 0 + -193 -195 0 + -193 -196 0 + -193 -197 0 + -193 -198 0 + -194 -195 0 + -194 -196 0 + -194 -197 0 + -194 -198 0 + -195 -196 0 + -195 -197 0 + -195 -198 0 + -196 -197 0 + -196 -198 0 + -197 -198 0 + -199 -200 0 + -199 -201 0 + -199 -202 0 + -199 -203 0 + -199 -204 0 + -200 -201 0 + -200 -202 0 + -200 -203 0 + -200 -204 0 + -201 -202 0 + -201 -203 0 + -201 -204 0 + -202 -203 0 + -202 -204 0 + -203 -204 0 + -205 -206 0 + -205 -207 0 + -205 -208 0 + -205 -209 0 + -205 -210 0 + -206 -207 0 + -206 -208 0 + -206 -209 0 + -206 -210 0 + -207 -208 0 + -207 -209 0 + -207 -210 0 + -208 -209 0 + -208 -210 0 + -209 -210 0 + -211 -212 0 + -211 -213 0 + -211 -214 0 + -212 -213 0 + -212 -214 0 + -213 -214 0 + -215 -216 0 + -215 -217 0 + -215 -218 0 + -215 -219 0 + -215 -220 0 + -215 -221 0 + -215 -222 0 + -215 -223 0 + -216 -217 0 + -216 -218 0 + -216 -219 0 + -216 -220 0 + -216 -221 0 + -216 -222 0 + -216 -223 0 + -217 -218 0 + -217 -219 0 + -217 -220 0 + -217 -221 0 + -217 -222 0 + -217 -223 0 + -218 -219 0 + -218 -220 0 + -218 -221 0 + -218 -222 0 + -218 -223 0 + -219 -220 0 + -219 -221 0 + -219 -222 0 + -219 -223 0 + -220 -221 0 + -220 -222 0 + -220 -223 0 + -221 -222 0 + -221 -223 0 + -222 -223 0 + -224 -225 0 + -224 -226 0 + -224 -227 0 + -224 -228 0 + -224 -229 0 + -224 -230 0 + -225 -226 0 + -225 -227 0 + -225 -228 0 + -225 -229 0 + -225 -230 0 + -226 -227 0 + -226 -228 0 + -226 -229 0 + -226 -230 0 + -227 -228 0 + -227 -229 0 + -227 -230 0 + -228 -229 0 + -228 -230 0 + -229 -230 0 + -231 -232 0 + -231 -233 0 + -231 -234 0 + -231 -235 0 + -231 -236 0 + -232 -233 0 + -232 -234 0 + -232 -235 0 + -232 -236 0 + -233 -234 0 + -233 -235 0 + -233 -236 0 + -234 -235 0 + -234 -236 0 + -235 -236 0 + -237 -238 0 + -237 -239 0 + -237 -240 0 + -238 -239 0 + -238 -240 0 + -239 -240 0 + -241 -242 0 + -241 -243 0 + -241 -244 0 + -241 -245 0 + -242 -243 0 + -242 -244 0 + -242 -245 0 + -243 -244 0 + -243 -245 0 + -244 -245 0 + -246 -247 0 + -246 -248 0 + -246 -249 0 + -246 -250 0 + -246 -251 0 + -247 -248 0 + -247 -249 0 + -247 -250 0 + -247 -251 0 + -248 -249 0 + -248 -250 0 + -248 -251 0 + -249 -250 0 + -249 -251 0 + -250 -251 0 + -252 -253 0 + -252 -254 0 + -252 -255 0 + -252 -256 0 + -253 -254 0 + -253 -255 0 + -253 -256 0 + -254 -255 0 + -254 -256 0 + -255 -256 0 + -257 -258 0 + -257 -259 0 + -257 -260 0 + -257 -261 0 + -257 -262 0 + -257 -263 0 + -257 -264 0 + -257 -265 0 + -258 -259 0 + -258 -260 0 + -258 -261 0 + -258 -262 0 + -258 -263 0 + -258 -264 0 + -258 -265 0 + -259 -260 0 + -259 -261 0 + -259 -262 0 + -259 -263 0 + -259 -264 0 + -259 -265 0 + -260 -261 0 + -260 -262 0 + -260 -263 0 + -260 -264 0 + -260 -265 0 + -261 -262 0 + -261 -263 0 + -261 -264 0 + -261 -265 0 + -262 -263 0 + -262 -264 0 + -262 -265 0 + -263 -264 0 + -263 -265 0 + -264 -265 0 + -266 -267 0 + -266 -268 0 + -266 -269 0 + -266 -270 0 + -267 -268 0 + -267 -269 0 + -267 -270 0 + -268 -269 0 + -268 -270 0 + -269 -270 0 + -271 -272 0 + -271 -273 0 + -271 -274 0 + -271 -275 0 + -271 -276 0 + -271 -277 0 + -272 -273 0 + -272 -274 0 + -272 -275 0 + -272 -276 0 + -272 -277 0 + -273 -274 0 + -273 -275 0 + -273 -276 0 + -273 -277 0 + -274 -275 0 + -274 -276 0 + -274 -277 0 + -275 -276 0 + -275 -277 0 + -276 -277 0 + -278 -279 0 + -278 -280 0 + -278 -281 0 + -278 -282 0 + -279 -280 0 + -279 -281 0 + -279 -282 0 + -280 -281 0 + -280 -282 0 + -281 -282 0 + -283 -284 0 + -283 -285 0 + -283 -286 0 + -283 -287 0 + -283 -288 0 + -283 -289 0 + -284 -285 0 + -284 -286 0 + -284 -287 0 + -284 -288 0 + -284 -289 0 + -285 -286 0 + -285 -287 0 + -285 -288 0 + -285 -289 0 + -286 -287 0 + -286 -288 0 + -286 -289 0 + -287 -288 0 + -287 -289 0 + -288 -289 0 + -290 -291 0 + -290 -292 0 + -290 -293 0 + -290 -294 0 + -291 -292 0 + -291 -293 0 + -291 -294 0 + -292 -293 0 + -292 -294 0 + -293 -294 0 + -295 -296 0 + -295 -297 0 + -295 -298 0 + -295 -299 0 + -295 -300 0 + -296 -297 0 + -296 -298 0 + -296 -299 0 + -296 -300 0 + -297 -298 0 + -297 -299 0 + -297 -300 0 + -298 -299 0 + -298 -300 0 + -299 -300 0 + -301 -302 0 + -301 -303 0 + -301 -304 0 + -301 -305 0 + -302 -303 0 + -302 -304 0 + -302 -305 0 + -303 -304 0 + -303 -305 0 + -304 -305 0 + -306 -307 0 + -306 -308 0 + -306 -309 0 + -306 -310 0 + -306 -311 0 + -306 -312 0 + -307 -308 0 + -307 -309 0 + -307 -310 0 + -307 -311 0 + -307 -312 0 + -308 -309 0 + -308 -310 0 + -308 -311 0 + -308 -312 0 + -309 -310 0 + -309 -311 0 + -309 -312 0 + -310 -311 0 + -310 -312 0 + -311 -312 0 + -313 -314 0 + -313 -315 0 + -313 -316 0 + -313 -317 0 + -314 -315 0 + -314 -316 0 + -314 -317 0 + -315 -316 0 + -315 -317 0 + -316 -317 0 + -318 -319 0 + -318 -320 0 + -318 -321 0 + -318 -322 0 + -318 -323 0 + -319 -320 0 + -319 -321 0 + -319 -322 0 + -319 -323 0 + -320 -321 0 + -320 -322 0 + -320 -323 0 + -321 -322 0 + -321 -323 0 + -322 -323 0 + -324 -325 0 + -324 -326 0 + -324 -327 0 + -324 -328 0 + -324 -329 0 + -325 -326 0 + -325 -327 0 + -325 -328 0 + -325 -329 0 + -326 -327 0 + -326 -328 0 + -326 -329 0 + -327 -328 0 + -327 -329 0 + -328 -329 0 + -330 -331 0 + -330 -332 0 + -330 -333 0 + -330 -334 0 + -330 -335 0 + -330 -336 0 + -330 -337 0 + -330 -338 0 + -331 -332 0 + -331 -333 0 + -331 -334 0 + -331 -335 0 + -331 -336 0 + -331 -337 0 + -331 -338 0 + -332 -333 0 + -332 -334 0 + -332 -335 0 + -332 -336 0 + -332 -337 0 + -332 -338 0 + -333 -334 0 + -333 -335 0 + -333 -336 0 + -333 -337 0 + -333 -338 0 + -334 -335 0 + -334 -336 0 + -334 -337 0 + -334 -338 0 + -335 -336 0 + -335 -337 0 + -335 -338 0 + -336 -337 0 + -336 -338 0 + -337 -338 0 + -339 -340 0 + -339 -341 0 + -339 -342 0 + -339 -343 0 + -339 -344 0 + -339 -345 0 + -340 -341 0 + -340 -342 0 + -340 -343 0 + -340 -344 0 + -340 -345 0 + -341 -342 0 + -341 -343 0 + -341 -344 0 + -341 -345 0 + -342 -343 0 + -342 -344 0 + -342 -345 0 + -343 -344 0 + -343 -345 0 + -344 -345 0 + -346 -347 0 + -346 -348 0 + -346 -349 0 + -346 -350 0 + -346 -351 0 + -347 -348 0 + -347 -349 0 + -347 -350 0 + -347 -351 0 + -348 -349 0 + -348 -350 0 + -348 -351 0 + -349 -350 0 + -349 -351 0 + -350 -351 0 + -352 -353 0 + -352 -354 0 + -352 -355 0 + -352 -356 0 + -352 -357 0 + -352 -358 0 + -353 -354 0 + -353 -355 0 + -353 -356 0 + -353 -357 0 + -353 -358 0 + -354 -355 0 + -354 -356 0 + -354 -357 0 + -354 -358 0 + -355 -356 0 + -355 -357 0 + -355 -358 0 + -356 -357 0 + -356 -358 0 + -357 -358 0 + -359 -360 0 + -359 -361 0 + -359 -362 0 + -359 -363 0 + -360 -361 0 + -360 -362 0 + -360 -363 0 + -361 -362 0 + -361 -363 0 + -362 -363 0 + -364 -365 0 + -364 -366 0 + -364 -367 0 + -364 -368 0 + -364 -369 0 + -364 -370 0 + -365 -366 0 + -365 -367 0 + -365 -368 0 + -365 -369 0 + -365 -370 0 + -366 -367 0 + -366 -368 0 + -366 -369 0 + -366 -370 0 + -367 -368 0 + -367 -369 0 + -367 -370 0 + -368 -369 0 + -368 -370 0 + -369 -370 0 + -371 -372 0 + -371 -373 0 + -371 -374 0 + -371 -375 0 + -372 -373 0 + -372 -374 0 + -372 -375 0 + -373 -374 0 + -373 -375 0 + -374 -375 0 + -376 -377 0 + -376 -378 0 + -376 -379 0 + -376 -380 0 + -376 -381 0 + -377 -378 0 + -377 -379 0 + -377 -380 0 + -377 -381 0 + -378 -379 0 + -378 -380 0 + -378 -381 0 + -379 -380 0 + -379 -381 0 + -380 -381 0 + -382 -383 0 + -382 -384 0 + -383 -384 0 + -385 -386 0 + -385 -387 0 + -385 -388 0 + -385 -389 0 + -385 -390 0 + -385 -391 0 + -386 -387 0 + -386 -388 0 + -386 -389 0 + -386 -390 0 + -386 -391 0 + -387 -388 0 + -387 -389 0 + -387 -390 0 + -387 -391 0 + -388 -389 0 + -388 -390 0 + -388 -391 0 + -389 -390 0 + -389 -391 0 + -390 -391 0 + -392 -393 0 + -392 -394 0 + -392 -395 0 + -393 -394 0 + -393 -395 0 + -394 -395 0 + -396 -397 0 + -396 -398 0 + -396 -399 0 + -396 -400 0 + -396 -401 0 + -397 -398 0 + -397 -399 0 + -397 -400 0 + -397 -401 0 + -398 -399 0 + -398 -400 0 + -398 -401 0 + -399 -400 0 + -399 -401 0 + -400 -401 0 + -402 -403 0 + -402 -404 0 + -402 -405 0 + -403 -404 0 + -403 -405 0 + -404 -405 0 + -406 -407 0 + -406 -408 0 + -406 -409 0 + -407 -408 0 + -407 -409 0 + -408 -409 0 + -410 -411 0 + -410 -412 0 + -410 -413 0 + -411 -412 0 + -411 -413 0 + -412 -413 0 + -414 -415 0 + -414 -416 0 + -414 -417 0 + -415 -416 0 + -415 -417 0 + -416 -417 0 + -418 -419 0 + -418 -420 0 + -418 -421 0 + -419 -420 0 + -419 -421 0 + -420 -421 0 + -422 -423 0 + -422 -424 0 + -423 -424 0 + -425 -426 0 + -425 -427 0 + -425 -428 0 + -425 -429 0 + -426 -427 0 + -426 -428 0 + -426 -429 0 + -427 -428 0 + -427 -429 0 + -428 -429 0 + -430 -431 0 + -430 -432 0 + -431 -432 0 + -433 -434 0 + -433 -435 0 + -433 -436 0 + -434 -435 0 + -434 -436 0 + -435 -436 0 + -437 -438 0 + -437 -439 0 + -437 -440 0 + -438 -439 0 + -438 -440 0 + -439 -440 0 + -441 -442 0 + -441 -443 0 + -441 -444 0 + -442 -443 0 + -442 -444 0 + -443 -444 0 + -445 -446 0 + -445 -447 0 + -445 -448 0 + -446 -447 0 + -446 -448 0 + -447 -448 0 + -449 -450 0 + -449 -451 0 + -449 -452 0 + -449 -453 0 + -449 -454 0 + -450 -451 0 + -450 -452 0 + -450 -453 0 + -450 -454 0 + -451 -452 0 + -451 -453 0 + -451 -454 0 + -452 -453 0 + -452 -454 0 + -453 -454 0 + -455 -456 0 + -455 -457 0 + -455 -458 0 + -455 -459 0 + -456 -457 0 + -456 -458 0 + -456 -459 0 + -457 -458 0 + -457 -459 0 + -458 -459 0 + -460 -461 0 + -460 -462 0 + -460 -463 0 + -460 -464 0 + -461 -462 0 + -461 -463 0 + -461 -464 0 + -462 -463 0 + -462 -464 0 + -463 -464 0 + -465 -466 0 + -465 -467 0 + -465 -468 0 + -465 -469 0 + -466 -467 0 + -466 -468 0 + -466 -469 0 + -467 -468 0 + -467 -469 0 + -468 -469 0 + -470 -471 0 + -470 -472 0 + -470 -473 0 + -470 -474 0 + -470 -475 0 + -470 -476 0 + -470 -477 0 + -471 -472 0 + -471 -473 0 + -471 -474 0 + -471 -475 0 + -471 -476 0 + -471 -477 0 + -472 -473 0 + -472 -474 0 + -472 -475 0 + -472 -476 0 + -472 -477 0 + -473 -474 0 + -473 -475 0 + -473 -476 0 + -473 -477 0 + -474 -475 0 + -474 -476 0 + -474 -477 0 + -475 -476 0 + -475 -477 0 + -476 -477 0 + -478 -479 0 + -478 -480 0 + -478 -481 0 + -479 -480 0 + -479 -481 0 + -480 -481 0 + -482 -483 0 + -482 -484 0 + -482 -485 0 + -483 -484 0 + -483 -485 0 + -484 -485 0 + -486 -487 0 + -486 -488 0 + -486 -489 0 + -486 -490 0 + -486 -491 0 + -487 -488 0 + -487 -489 0 + -487 -490 0 + -487 -491 0 + -488 -489 0 + -488 -490 0 + -488 -491 0 + -489 -490 0 + -489 -491 0 + -490 -491 0 + -492 -493 0 + -492 -494 0 + -492 -495 0 + -492 -496 0 + -493 -494 0 + -493 -495 0 + -493 -496 0 + -494 -495 0 + -494 -496 0 + -495 -496 0 + -497 -498 0 + -497 -499 0 + -497 -500 0 + -497 -501 0 + -497 -502 0 + -497 -503 0 + -498 -499 0 + -498 -500 0 + -498 -501 0 + -498 -502 0 + -498 -503 0 + -499 -500 0 + -499 -501 0 + -499 -502 0 + -499 -503 0 + -500 -501 0 + -500 -502 0 + -500 -503 0 + -501 -502 0 + -501 -503 0 + -502 -503 0 + -504 -505 0 + -504 -506 0 + -504 -507 0 + -504 -508 0 + -505 -506 0 + -505 -507 0 + -505 -508 0 + -506 -507 0 + -506 -508 0 + -507 -508 0 + -509 -510 0 + -509 -511 0 + -509 -512 0 + -509 -513 0 + -509 -514 0 + -510 -511 0 + -510 -512 0 + -510 -513 0 + -510 -514 0 + -511 -512 0 + -511 -513 0 + -511 -514 0 + -512 -513 0 + -512 -514 0 + -513 -514 0 + -515 -516 0 + -515 -517 0 + -515 -518 0 + -515 -519 0 + -515 -520 0 + -515 -521 0 + -516 -517 0 + -516 -518 0 + -516 -519 0 + -516 -520 0 + -516 -521 0 + -517 -518 0 + -517 -519 0 + -517 -520 0 + -517 -521 0 + -518 -519 0 + -518 -520 0 + -518 -521 0 + -519 -520 0 + -519 -521 0 + -520 -521 0 + -522 -523 0 + -522 -524 0 + -522 -525 0 + -522 -526 0 + -522 -527 0 + -522 -528 0 + -523 -524 0 + -523 -525 0 + -523 -526 0 + -523 -527 0 + -523 -528 0 + -524 -525 0 + -524 -526 0 + -524 -527 0 + -524 -528 0 + -525 -526 0 + -525 -527 0 + -525 -528 0 + -526 -527 0 + -526 -528 0 + -527 -528 0 + -529 -530 0 + -529 -531 0 + -529 -532 0 + -529 -533 0 + -529 -534 0 + -529 -535 0 + -530 -531 0 + -530 -532 0 + -530 -533 0 + -530 -534 0 + -530 -535 0 + -531 -532 0 + -531 -533 0 + -531 -534 0 + -531 -535 0 + -532 -533 0 + -532 -534 0 + -532 -535 0 + -533 -534 0 + -533 -535 0 + -534 -535 0 + -536 -537 0 + -536 -538 0 + -536 -539 0 + -536 -540 0 + -536 -541 0 + -537 -538 0 + -537 -539 0 + -537 -540 0 + -537 -541 0 + -538 -539 0 + -538 -540 0 + -538 -541 0 + -539 -540 0 + -539 -541 0 + -540 -541 0 + -542 -543 0 + -542 -544 0 + -542 -545 0 + -542 -546 0 + -542 -547 0 + -543 -544 0 + -543 -545 0 + -543 -546 0 + -543 -547 0 + -544 -545 0 + -544 -546 0 + -544 -547 0 + -545 -546 0 + -545 -547 0 + -546 -547 0 + -548 -549 0 + -548 -550 0 + -548 -551 0 + -548 -552 0 + -549 -550 0 + -549 -551 0 + -549 -552 0 + -550 -551 0 + -550 -552 0 + -551 -552 0 + -553 -554 0 + -553 -555 0 + -553 -556 0 + -553 -557 0 + -554 -555 0 + -554 -556 0 + -554 -557 0 + -555 -556 0 + -555 -557 0 + -556 -557 0 + -558 -559 0 + -558 -560 0 + -558 -561 0 + -558 -562 0 + -558 -563 0 + -558 -564 0 + -559 -560 0 + -559 -561 0 + -559 -562 0 + -559 -563 0 + -559 -564 0 + -560 -561 0 + -560 -562 0 + -560 -563 0 + -560 -564 0 + -561 -562 0 + -561 -563 0 + -561 -564 0 + -562 -563 0 + -562 -564 0 + -563 -564 0 + -565 -566 0 + -565 -567 0 + -565 -568 0 + -566 -567 0 + -566 -568 0 + -567 -568 0 + -569 -570 0 + -569 -571 0 + -569 -572 0 + -569 -573 0 + -570 -571 0 + -570 -572 0 + -570 -573 0 + -571 -572 0 + -571 -573 0 + -572 -573 0 + -574 -575 0 + -574 -576 0 + -574 -577 0 + -575 -576 0 + -575 -577 0 + -576 -577 0 + -578 -579 0 + -578 -580 0 + -578 -581 0 + -579 -580 0 + -579 -581 0 + -580 -581 0 + -582 -583 0 + -582 -584 0 + -583 -584 0 + -585 -586 0 + -585 -587 0 + -585 -588 0 + -585 -589 0 + -586 -587 0 + -586 -588 0 + -586 -589 0 + -587 -588 0 + -587 -589 0 + -588 -589 0 + -590 -591 0 + -590 -592 0 + -591 -592 0 + -593 -594 0 + -593 -595 0 + -593 -596 0 + -593 -597 0 + -594 -595 0 + -594 -596 0 + -594 -597 0 + -595 -596 0 + -595 -597 0 + -596 -597 0 + -598 -599 0 + -598 -600 0 + -598 -601 0 + -599 -600 0 + -599 -601 0 + -600 -601 0 + -602 -603 0 + -602 -604 0 + -603 -604 0 + -605 -606 0 + -605 -607 0 + -605 -608 0 + -605 -609 0 + -605 -610 0 + -606 -607 0 + -606 -608 0 + -606 -609 0 + -606 -610 0 + -607 -608 0 + -607 -609 0 + -607 -610 0 + -608 -609 0 + -608 -610 0 + -609 -610 0 + -611 -612 0 + -611 -613 0 + -611 -614 0 + -611 -615 0 + -611 -616 0 + -611 -617 0 + -612 -613 0 + -612 -614 0 + -612 -615 0 + -612 -616 0 + -612 -617 0 + -613 -614 0 + -613 -615 0 + -613 -616 0 + -613 -617 0 + -614 -615 0 + -614 -616 0 + -614 -617 0 + -615 -616 0 + -615 -617 0 + -616 -617 0 + -618 -619 0 + -618 -620 0 + -618 -621 0 + -619 -620 0 + -619 -621 0 + -620 -621 0 + -622 -623 0 + -622 -624 0 + -622 -625 0 + -623 -624 0 + -623 -625 0 + -624 -625 0 + -626 -627 0 + -626 -628 0 + -626 -629 0 + -626 -630 0 + -626 -631 0 + -627 -628 0 + -627 -629 0 + -627 -630 0 + -627 -631 0 + -628 -629 0 + -628 -630 0 + -628 -631 0 + -629 -630 0 + -629 -631 0 + -630 -631 0 + -632 -633 0 + -632 -634 0 + -632 -635 0 + -632 -636 0 + -632 -637 0 + -633 -634 0 + -633 -635 0 + -633 -636 0 + -633 -637 0 + -634 -635 0 + -634 -636 0 + -634 -637 0 + -635 -636 0 + -635 -637 0 + -636 -637 0 + -638 -639 0 + -638 -640 0 + -638 -641 0 + -638 -642 0 + -638 -643 0 + -638 -644 0 + -639 -640 0 + -639 -641 0 + -639 -642 0 + -639 -643 0 + -639 -644 0 + -640 -641 0 + -640 -642 0 + -640 -643 0 + -640 -644 0 + -641 -642 0 + -641 -643 0 + -641 -644 0 + -642 -643 0 + -642 -644 0 + -643 -644 0 + -645 -646 0 + -645 -647 0 + -645 -648 0 + -645 -649 0 + -646 -647 0 + -646 -648 0 + -646 -649 0 + -647 -648 0 + -647 -649 0 + -648 -649 0 + -650 -651 0 + -650 -652 0 + -650 -653 0 + -650 -654 0 + -650 -655 0 + -650 -656 0 + -651 -652 0 + -651 -653 0 + -651 -654 0 + -651 -655 0 + -651 -656 0 + -652 -653 0 + -652 -654 0 + -652 -655 0 + -652 -656 0 + -653 -654 0 + -653 -655 0 + -653 -656 0 + -654 -655 0 + -654 -656 0 + -655 -656 0 + -657 -658 0 + -657 -659 0 + -657 -660 0 + -658 -659 0 + -658 -660 0 + -659 -660 0 + -661 -662 0 + -661 -663 0 + -661 -664 0 + -661 -665 0 + -662 -663 0 + -662 -664 0 + -662 -665 0 + -663 -664 0 + -663 -665 0 + -664 -665 0 + -666 -667 0 + -666 -668 0 + -667 -668 0 + -669 -670 0 + -669 -671 0 + -670 -671 0 + -672 -673 0 + -674 -675 0 + -676 -677 0 + -676 -678 0 + -677 -678 0 + -679 -680 0 + -679 -681 0 + -680 -681 0 + -682 -683 0 + -682 -684 0 + -682 -685 0 + -683 -684 0 + -683 -685 0 + -684 -685 0 + -686 -687 0 + -686 -688 0 + -686 -689 0 + -686 -690 0 + -686 -691 0 + -687 -688 0 + -687 -689 0 + -687 -690 0 + -687 -691 0 + -688 -689 0 + -688 -690 0 + -688 -691 0 + -689 -690 0 + -689 -691 0 + -690 -691 0 + -692 -693 0 + -692 -694 0 + -692 -695 0 + -693 -694 0 + -693 -695 0 + -694 -695 0 + -696 -697 0 + -696 -698 0 + -696 -699 0 + -697 -698 0 + -697 -699 0 + -698 -699 0 + -700 -701 0 + -700 -702 0 + -700 -703 0 + -700 -704 0 + -700 -705 0 + -701 -702 0 + -701 -703 0 + -701 -704 0 + -701 -705 0 + -702 -703 0 + -702 -704 0 + -702 -705 0 + -703 -704 0 + -703 -705 0 + -704 -705 0 + -706 -707 0 + -706 -708 0 + -706 -709 0 + -706 -710 0 + -707 -708 0 + -707 -709 0 + -707 -710 0 + -708 -709 0 + -708 -710 0 + -709 -710 0 + -711 -712 0 + -711 -713 0 + -711 -714 0 + -711 -715 0 + -712 -713 0 + -712 -714 0 + -712 -715 0 + -713 -714 0 + -713 -715 0 + -714 -715 0 + -716 -717 0 + -716 -718 0 + -716 -719 0 + -717 -718 0 + -717 -719 0 + -718 -719 0 + -720 -721 0 + -720 -722 0 + -720 -723 0 + -720 -724 0 + -720 -725 0 + -721 -722 0 + -721 -723 0 + -721 -724 0 + -721 -725 0 + -722 -723 0 + -722 -724 0 + -722 -725 0 + -723 -724 0 + -723 -725 0 + -724 -725 0 + -726 -727 0 + -726 -728 0 + -726 -729 0 + -726 -730 0 + -727 -728 0 + -727 -729 0 + -727 -730 0 + -728 -729 0 + -728 -730 0 + -729 -730 0 + -731 -732 0 + -731 -733 0 + -731 -734 0 + -731 -735 0 + -731 -736 0 + -732 -733 0 + -732 -734 0 + -732 -735 0 + -732 -736 0 + -733 -734 0 + -733 -735 0 + -733 -736 0 + -734 -735 0 + -734 -736 0 + -735 -736 0 + -737 -738 0 + -737 -739 0 + -737 -740 0 + -737 -741 0 + -737 -742 0 + -738 -739 0 + -738 -740 0 + -738 -741 0 + -738 -742 0 + -739 -740 0 + -739 -741 0 + -739 -742 0 + -740 -741 0 + -740 -742 0 + -741 -742 0 + -743 -744 0 + -743 -745 0 + -743 -746 0 + -743 -747 0 + -743 -748 0 + -744 -745 0 + -744 -746 0 + -744 -747 0 + -744 -748 0 + -745 -746 0 + -745 -747 0 + -745 -748 0 + -746 -747 0 + -746 -748 0 + -747 -748 0 + -749 -750 0 + -749 -751 0 + -749 -752 0 + -749 -753 0 + -750 -751 0 + -750 -752 0 + -750 -753 0 + -751 -752 0 + -751 -753 0 + -752 -753 0 + -754 -755 0 + -754 -756 0 + -754 -757 0 + -754 -758 0 + -754 -759 0 + -754 -760 0 + -755 -756 0 + -755 -757 0 + -755 -758 0 + -755 -759 0 + -755 -760 0 + -756 -757 0 + -756 -758 0 + -756 -759 0 + -756 -760 0 + -757 -758 0 + -757 -759 0 + -757 -760 0 + -758 -759 0 + -758 -760 0 + -759 -760 0 + -761 -762 0 + -761 -763 0 + -761 -764 0 + -761 -765 0 + -762 -763 0 + -762 -764 0 + -762 -765 0 + -763 -764 0 + -763 -765 0 + -764 -765 0 + -766 -767 0 + -766 -768 0 + -766 -769 0 + -766 -770 0 + -767 -768 0 + -767 -769 0 + -767 -770 0 + -768 -769 0 + -768 -770 0 + -769 -770 0 + -771 -772 0 + -773 -774 0 + -773 -775 0 + -774 -775 0 + -776 -777 0 + -776 -778 0 + -776 -779 0 + -776 -780 0 + -777 -778 0 + -777 -779 0 + -777 -780 0 + -778 -779 0 + -778 -780 0 + -779 -780 0 + -781 -782 0 + -781 -783 0 + -781 -784 0 + -781 -785 0 + -781 -786 0 + -782 -783 0 + -782 -784 0 + -782 -785 0 + -782 -786 0 + -783 -784 0 + -783 -785 0 + -783 -786 0 + -784 -785 0 + -784 -786 0 + -785 -786 0 + -787 -788 0 + -787 -789 0 + -787 -790 0 + -788 -789 0 + -788 -790 0 + -789 -790 0 + -791 -792 0 + -791 -793 0 + -791 -794 0 + -791 -795 0 + -791 -796 0 + -791 -797 0 + -792 -793 0 + -792 -794 0 + -792 -795 0 + -792 -796 0 + -792 -797 0 + -793 -794 0 + -793 -795 0 + -793 -796 0 + -793 -797 0 + -794 -795 0 + -794 -796 0 + -794 -797 0 + -795 -796 0 + -795 -797 0 + -796 -797 0 + -798 -799 0 + -798 -800 0 + -798 -801 0 + -798 -802 0 + -799 -800 0 + -799 -801 0 + -799 -802 0 + -800 -801 0 + -800 -802 0 + -801 -802 0 + -803 -804 0 + -803 -805 0 + -803 -806 0 + -803 -807 0 + -803 -808 0 + -804 -805 0 + -804 -806 0 + -804 -807 0 + -804 -808 0 + -805 -806 0 + -805 -807 0 + -805 -808 0 + -806 -807 0 + -806 -808 0 + -807 -808 0 + -809 -810 0 + -809 -811 0 + -809 -812 0 + -809 -813 0 + -810 -811 0 + -810 -812 0 + -810 -813 0 + -811 -812 0 + -811 -813 0 + -812 -813 0 + -814 -815 0 + -814 -816 0 + -814 -817 0 + -815 -816 0 + -815 -817 0 + -816 -817 0 + -818 -819 0 + -818 -820 0 + -818 -821 0 + -819 -820 0 + -819 -821 0 + -820 -821 0 + -822 -823 0 + -822 -824 0 + -822 -825 0 + -822 -826 0 + -823 -824 0 + -823 -825 0 + -823 -826 0 + -824 -825 0 + -824 -826 0 + -825 -826 0 + -827 -828 0 + -827 -829 0 + -828 -829 0 + -830 -831 0 + -830 -832 0 + -831 -832 0 + -833 -834 0 + -833 -835 0 + -834 -835 0 + -836 -837 0 + -836 -838 0 + -836 -839 0 + -836 -840 0 + -836 -841 0 + -837 -838 0 + -837 -839 0 + -837 -840 0 + -837 -841 0 + -838 -839 0 + -838 -840 0 + -838 -841 0 + -839 -840 0 + -839 -841 0 + -840 -841 0 + -842 -843 0 + -842 -844 0 + -842 -845 0 + -842 -846 0 + -842 -847 0 + -842 -848 0 + -843 -844 0 + -843 -845 0 + -843 -846 0 + -843 -847 0 + -843 -848 0 + -844 -845 0 + -844 -846 0 + -844 -847 0 + -844 -848 0 + -845 -846 0 + -845 -847 0 + -845 -848 0 + -846 -847 0 + -846 -848 0 + -847 -848 0 + -849 -850 0 + -849 -851 0 + -850 -851 0 + -852 -853 0 + -852 -854 0 + -852 -855 0 + -852 -856 0 + -852 -857 0 + -853 -854 0 + -853 -855 0 + -853 -856 0 + -853 -857 0 + -854 -855 0 + -854 -856 0 + -854 -857 0 + -855 -856 0 + -855 -857 0 + -856 -857 0 + -858 -859 0 + -858 -860 0 + -858 -861 0 + -859 -860 0 + -859 -861 0 + -860 -861 0 + -862 -863 0 + -862 -864 0 + -862 -865 0 + -862 -866 0 + -862 -867 0 + -863 -864 0 + -863 -865 0 + -863 -866 0 + -863 -867 0 + -864 -865 0 + -864 -866 0 + -864 -867 0 + -865 -866 0 + -865 -867 0 + -866 -867 0 + -868 -869 0 + -868 -870 0 + -868 -871 0 + -869 -870 0 + -869 -871 0 + -870 -871 0 + -872 -873 0 + -872 -874 0 + -873 -874 0 + -875 -876 0 + -875 -877 0 + -875 -878 0 + -875 -879 0 + -876 -877 0 + -876 -878 0 + -876 -879 0 + -877 -878 0 + -877 -879 0 + -878 -879 0 + -880 -881 0 + -880 -882 0 + -880 -883 0 + -880 -884 0 + -881 -882 0 + -881 -883 0 + -881 -884 0 + -882 -883 0 + -882 -884 0 + -883 -884 0 + -885 -886 0 + -885 -887 0 + -885 -888 0 + -885 -889 0 + -886 -887 0 + -886 -888 0 + -886 -889 0 + -887 -888 0 + -887 -889 0 + -888 -889 0 + -890 -891 0 + -890 -892 0 + -890 -893 0 + -890 -894 0 + -891 -892 0 + -891 -893 0 + -891 -894 0 + -892 -893 0 + -892 -894 0 + -893 -894 0 + -895 -896 0 + -895 -897 0 + -895 -898 0 + -896 -897 0 + -896 -898 0 + -897 -898 0 + -899 -900 0 + -899 -901 0 + -899 -902 0 + -900 -901 0 + -900 -902 0 + -901 -902 0 + -903 -904 0 + -903 -905 0 + -903 -906 0 + -903 -907 0 + -903 -908 0 + -903 -909 0 + -904 -905 0 + -904 -906 0 + -904 -907 0 + -904 -908 0 + -904 -909 0 + -905 -906 0 + -905 -907 0 + -905 -908 0 + -905 -909 0 + -906 -907 0 + -906 -908 0 + -906 -909 0 + -907 -908 0 + -907 -909 0 + -908 -909 0 + -910 -911 0 + -910 -912 0 + -910 -913 0 + -911 -912 0 + -911 -913 0 + -912 -913 0 + -914 -915 0 + -914 -916 0 + -915 -916 0 + -917 -918 0 + -917 -919 0 + -917 -920 0 + -917 -921 0 + -918 -919 0 + -918 -920 0 + -918 -921 0 + -919 -920 0 + -919 -921 0 + -920 -921 0 + -922 -923 0 + -922 -924 0 + -922 -925 0 + -923 -924 0 + -923 -925 0 + -924 -925 0 + -926 -927 0 + -926 -928 0 + -926 -929 0 + -927 -928 0 + -927 -929 0 + -928 -929 0 + -930 -931 0 + -930 -932 0 + -931 -932 0 + -933 -934 0 + -933 -935 0 + -933 -936 0 + -933 -937 0 + -934 -935 0 + -934 -936 0 + -934 -937 0 + -935 -936 0 + -935 -937 0 + -936 -937 0 + -938 -939 0 + -938 -940 0 + -938 -941 0 + -938 -942 0 + -938 -943 0 + -939 -940 0 + -939 -941 0 + -939 -942 0 + -939 -943 0 + -940 -941 0 + -940 -942 0 + -940 -943 0 + -941 -942 0 + -941 -943 0 + -942 -943 0 + -944 -945 0 + -944 -946 0 + -945 -946 0 + -947 -948 0 + -947 -949 0 + -947 -950 0 + -947 -951 0 + -948 -949 0 + -948 -950 0 + -948 -951 0 + -949 -950 0 + -949 -951 0 + -950 -951 0 + -952 -953 0 + -952 -954 0 + -952 -955 0 + -952 -956 0 + -952 -957 0 + -952 -958 0 + -953 -954 0 + -953 -955 0 + -953 -956 0 + -953 -957 0 + -953 -958 0 + -954 -955 0 + -954 -956 0 + -954 -957 0 + -954 -958 0 + -955 -956 0 + -955 -957 0 + -955 -958 0 + -956 -957 0 + -956 -958 0 + -957 -958 0 + -959 -960 0 + -959 -961 0 + -959 -962 0 + -959 -963 0 + -960 -961 0 + -960 -962 0 + -960 -963 0 + -961 -962 0 + -961 -963 0 + -962 -963 0 + -964 -965 0 + -964 -966 0 + -964 -967 0 + -964 -968 0 + -964 -969 0 + -965 -966 0 + -965 -967 0 + -965 -968 0 + -965 -969 0 + -966 -967 0 + -966 -968 0 + -966 -969 0 + -967 -968 0 + -967 -969 0 + -968 -969 0 + -970 -971 0 + -970 -972 0 + -970 -973 0 + -971 -972 0 + -971 -973 0 + -972 -973 0 + -974 -975 0 + -974 -976 0 + -974 -977 0 + -975 -976 0 + -975 -977 0 + -976 -977 0 + -978 -979 0 + -978 -980 0 + -978 -981 0 + -978 -982 0 + -979 -980 0 + -979 -981 0 + -979 -982 0 + -980 -981 0 + -980 -982 0 + -981 -982 0 + -983 -984 0 + -983 -985 0 + -983 -986 0 + -983 -987 0 + -984 -985 0 + -984 -986 0 + -984 -987 0 + -985 -986 0 + -985 -987 0 + -986 -987 0 + -988 -989 0 + -988 -990 0 + -988 -991 0 + -988 -992 0 + -989 -990 0 + -989 -991 0 + -989 -992 0 + -990 -991 0 + -990 -992 0 + -991 -992 0 + -993 -994 0 + -993 -995 0 + -993 -996 0 + -994 -995 0 + -994 -996 0 + -995 -996 0 + -997 -998 0 + -997 -999 0 + -997 -1000 0 + -998 -999 0 + -998 -1000 0 + -999 -1000 0 + -1001 -1002 0 + -1001 -1003 0 + -1001 -1004 0 + -1001 -1005 0 + -1002 -1003 0 + -1002 -1004 0 + -1002 -1005 0 + -1003 -1004 0 + -1003 -1005 0 + -1004 -1005 0 + -1006 -1007 0 + -1006 -1008 0 + -1006 -1009 0 + -1006 -1010 0 + -1006 -1011 0 + -1006 -1012 0 + -1007 -1008 0 + -1007 -1009 0 + -1007 -1010 0 + -1007 -1011 0 + -1007 -1012 0 + -1008 -1009 0 + -1008 -1010 0 + -1008 -1011 0 + -1008 -1012 0 + -1009 -1010 0 + -1009 -1011 0 + -1009 -1012 0 + -1010 -1011 0 + -1010 -1012 0 + -1011 -1012 0 + -1013 -1014 0 + -1013 -1015 0 + -1013 -1016 0 + -1013 -1017 0 + -1014 -1015 0 + -1014 -1016 0 + -1014 -1017 0 + -1015 -1016 0 + -1015 -1017 0 + -1016 -1017 0 + -1018 -1019 0 + -1018 -1020 0 + -1018 -1021 0 + -1019 -1020 0 + -1019 -1021 0 + -1020 -1021 0 + -1022 -1023 0 + -1024 -1025 0 + -1024 -1026 0 + -1024 -1027 0 + -1024 -1028 0 + -1025 -1026 0 + -1025 -1027 0 + -1025 -1028 0 + -1026 -1027 0 + -1026 -1028 0 + -1027 -1028 0 + -1029 -1030 0 + -1029 -1031 0 + -1030 -1031 0 + -1032 -1033 0 + -1034 -1035 0 + -1034 -1036 0 + -1034 -1037 0 + -1034 -1038 0 + -1035 -1036 0 + -1035 -1037 0 + -1035 -1038 0 + -1036 -1037 0 + -1036 -1038 0 + -1037 -1038 0 + -1039 -1040 0 + -1039 -1041 0 + -1039 -1042 0 + -1039 -1043 0 + -1040 -1041 0 + -1040 -1042 0 + -1040 -1043 0 + -1041 -1042 0 + -1041 -1043 0 + -1042 -1043 0 + -1044 -1045 0 + -1044 -1046 0 + -1044 -1047 0 + -1044 -1048 0 + -1045 -1046 0 + -1045 -1047 0 + -1045 -1048 0 + -1046 -1047 0 + -1046 -1048 0 + -1047 -1048 0 + -1049 -1050 0 + -1049 -1051 0 + -1049 -1052 0 + -1049 -1053 0 + -1050 -1051 0 + -1050 -1052 0 + -1050 -1053 0 + -1051 -1052 0 + -1051 -1053 0 + -1052 -1053 0 + -1054 -1055 0 + -1054 -1056 0 + -1054 -1057 0 + -1055 -1056 0 + -1055 -1057 0 + -1056 -1057 0 + -1058 -1059 0 + -1058 -1060 0 + -1059 -1060 0 + -1061 -1062 0 + -1061 -1063 0 + -1061 -1064 0 + -1061 -1065 0 + -1062 -1063 0 + -1062 -1064 0 + -1062 -1065 0 + -1063 -1064 0 + -1063 -1065 0 + -1064 -1065 0 + -1066 -1067 0 + -1066 -1068 0 + -1066 -1069 0 + -1066 -1070 0 + -1066 -1071 0 + -1066 -1072 0 + -1067 -1068 0 + -1067 -1069 0 + -1067 -1070 0 + -1067 -1071 0 + -1067 -1072 0 + -1068 -1069 0 + -1068 -1070 0 + -1068 -1071 0 + -1068 -1072 0 + -1069 -1070 0 + -1069 -1071 0 + -1069 -1072 0 + -1070 -1071 0 + -1070 -1072 0 + -1071 -1072 0 + -1073 -1074 0 + -1073 -1075 0 + -1073 -1076 0 + -1073 -1077 0 + -1074 -1075 0 + -1074 -1076 0 + -1074 -1077 0 + -1075 -1076 0 + -1075 -1077 0 + -1076 -1077 0 + -1 -77 0 + -1 -134 0 + -1 -215 0 + -1 -611 0 + -1 -827 0 + -1 -903 0 + -1 -938 0 + -77 -134 0 + -77 -215 0 + -77 -611 0 + -77 -827 0 + -77 -903 0 + -77 -938 0 + -134 -215 0 + -134 -611 0 + -134 -827 0 + -134 -903 0 + -134 -938 0 + -215 -611 0 + -215 -827 0 + -215 -903 0 + -215 -938 0 + -611 -827 0 + -611 -903 0 + -611 -938 0 + -827 -903 0 + -827 -938 0 + -903 -938 0 + -50 -135 0 + -50 -216 0 + -50 -612 0 + -50 -868 0 + -50 -904 0 + -135 -216 0 + -135 -612 0 + -135 -868 0 + -135 -904 0 + -216 -612 0 + -216 -868 0 + -216 -904 0 + -612 -868 0 + -612 -904 0 + -868 -904 0 + -78 -295 0 + -78 -613 0 + -78 -869 0 + -78 -905 0 + -78 -939 0 + -295 -613 0 + -295 -869 0 + -295 -905 0 + -295 -939 0 + -613 -869 0 + -613 -905 0 + -613 -939 0 + -869 -905 0 + -869 -939 0 + -905 -939 0 + -2 -51 0 + -2 -79 0 + -2 -136 0 + -2 -376 0 + -2 -870 0 + -51 -79 0 + -51 -136 0 + -51 -376 0 + -51 -870 0 + -79 -136 0 + -79 -376 0 + -79 -870 0 + -136 -376 0 + -136 -870 0 + -376 -870 0 + -3 -137 0 + -3 -217 0 + -3 -296 0 + -3 -377 0 + -3 -614 0 + -3 -906 0 + -137 -217 0 + -137 -296 0 + -137 -377 0 + -137 -614 0 + -137 -906 0 + -217 -296 0 + -217 -377 0 + -217 -614 0 + -217 -906 0 + -296 -377 0 + -296 -614 0 + -296 -906 0 + -377 -614 0 + -377 -906 0 + -614 -906 0 + -4 -218 0 + -4 -297 0 + -4 -378 0 + -4 -615 0 + -4 -907 0 + -4 -940 0 + -218 -297 0 + -218 -378 0 + -218 -615 0 + -218 -907 0 + -218 -940 0 + -297 -378 0 + -297 -615 0 + -297 -907 0 + -297 -940 0 + -378 -615 0 + -378 -907 0 + -378 -940 0 + -615 -907 0 + -615 -940 0 + -907 -940 0 + -52 -80 0 + -52 -219 0 + -52 -298 0 + -52 -379 0 + -52 -941 0 + -80 -219 0 + -80 -298 0 + -80 -379 0 + -80 -941 0 + -219 -298 0 + -219 -379 0 + -219 -941 0 + -298 -379 0 + -298 -941 0 + -379 -941 0 + -138 -220 0 + -138 -299 0 + -138 -380 0 + -138 -616 0 + -138 -828 0 + -138 -871 0 + -138 -908 0 + -220 -299 0 + -220 -380 0 + -220 -616 0 + -220 -828 0 + -220 -871 0 + -220 -908 0 + -299 -380 0 + -299 -616 0 + -299 -828 0 + -299 -871 0 + -299 -908 0 + -380 -616 0 + -380 -828 0 + -380 -871 0 + -380 -908 0 + -616 -828 0 + -616 -871 0 + -616 -908 0 + -828 -871 0 + -828 -908 0 + -871 -908 0 + -5 -139 0 + -5 -221 0 + -5 -381 0 + -5 -909 0 + -5 -942 0 + -139 -221 0 + -139 -381 0 + -139 -909 0 + -139 -942 0 + -221 -381 0 + -221 -909 0 + -221 -942 0 + -381 -909 0 + -381 -942 0 + -909 -942 0 + -53 -81 0 + -53 -140 0 + -53 -222 0 + -81 -140 0 + -81 -222 0 + -140 -222 0 + -6 -82 0 + -6 -829 0 + -6 -943 0 + -82 -829 0 + -82 -943 0 + -829 -943 0 + -7 -223 0 + -7 -300 0 + -7 -617 0 + -223 -300 0 + -223 -617 0 + -300 -617 0 + -141 -224 0 + -141 -504 0 + -141 -830 0 + -141 -910 0 + -141 -944 0 + -224 -504 0 + -224 -830 0 + -224 -910 0 + -224 -944 0 + -504 -830 0 + -504 -910 0 + -504 -944 0 + -830 -910 0 + -830 -944 0 + -910 -944 0 + -142 -225 0 + -142 -505 0 + -142 -679 0 + -142 -776 0 + -142 -911 0 + -225 -505 0 + -225 -679 0 + -225 -776 0 + -225 -911 0 + -505 -679 0 + -505 -776 0 + -505 -911 0 + -679 -776 0 + -679 -911 0 + -776 -911 0 + -143 -422 0 + -143 -506 0 + -143 -777 0 + -422 -506 0 + -422 -777 0 + -506 -777 0 + -144 -226 0 + -144 -423 0 + -144 -507 0 + -144 -680 0 + -144 -778 0 + -144 -831 0 + -226 -423 0 + -226 -507 0 + -226 -680 0 + -226 -778 0 + -226 -831 0 + -423 -507 0 + -423 -680 0 + -423 -778 0 + -423 -831 0 + -507 -680 0 + -507 -778 0 + -507 -831 0 + -680 -778 0 + -680 -831 0 + -778 -831 0 + -145 -227 0 + -145 -779 0 + -145 -912 0 + -227 -779 0 + -227 -912 0 + -779 -912 0 + -228 -913 0 + -228 -945 0 + -913 -945 0 + -146 -229 0 + -146 -681 0 + -146 -780 0 + -146 -946 0 + -229 -681 0 + -229 -780 0 + -229 -946 0 + -681 -780 0 + -681 -946 0 + -780 -946 0 + -147 -832 0 + -230 -424 0 + -230 -508 0 + -424 -508 0 + -83 -148 0 + -83 -231 0 + -83 -574 0 + -83 -720 0 + -83 -947 0 + -83 -1034 0 + -148 -231 0 + -148 -574 0 + -148 -720 0 + -148 -947 0 + -148 -1034 0 + -231 -574 0 + -231 -720 0 + -231 -947 0 + -231 -1034 0 + -574 -720 0 + -574 -947 0 + -574 -1034 0 + -720 -947 0 + -720 -1034 0 + -947 -1034 0 + -149 -232 0 + -149 -721 0 + -232 -721 0 + -150 -233 0 + -150 -301 0 + -150 -575 0 + -150 -1035 0 + -233 -301 0 + -233 -575 0 + -233 -1035 0 + -301 -575 0 + -301 -1035 0 + -575 -1035 0 + -151 -234 0 + -151 -302 0 + -151 -722 0 + -151 -1036 0 + -234 -302 0 + -234 -722 0 + -234 -1036 0 + -302 -722 0 + -302 -1036 0 + -722 -1036 0 + -303 -723 0 + -303 -948 0 + -303 -1037 0 + -723 -948 0 + -723 -1037 0 + -948 -1037 0 + -152 -235 0 + -152 -576 0 + -152 -949 0 + -235 -576 0 + -235 -949 0 + -576 -949 0 + -84 -153 0 + -84 -236 0 + -84 -304 0 + -84 -577 0 + -84 -724 0 + -84 -950 0 + -84 -1038 0 + -153 -236 0 + -153 -304 0 + -153 -577 0 + -153 -724 0 + -153 -950 0 + -153 -1038 0 + -236 -304 0 + -236 -577 0 + -236 -724 0 + -236 -950 0 + -236 -1038 0 + -304 -577 0 + -304 -724 0 + -304 -950 0 + -304 -1038 0 + -577 -724 0 + -577 -950 0 + -577 -1038 0 + -724 -950 0 + -724 -1038 0 + -950 -1038 0 + -154 -305 0 + -154 -725 0 + -154 -951 0 + -305 -725 0 + -305 -951 0 + -725 -951 0 + -306 -578 0 + -306 -618 0 + -578 -618 0 + -155 -237 0 + -155 -307 0 + -155 -509 0 + -155 -579 0 + -155 -781 0 + -155 -833 0 + -237 -307 0 + -237 -509 0 + -237 -579 0 + -237 -781 0 + -237 -833 0 + -307 -509 0 + -307 -579 0 + -307 -781 0 + -307 -833 0 + -509 -579 0 + -509 -781 0 + -509 -833 0 + -579 -781 0 + -579 -833 0 + -781 -833 0 + -156 -308 0 + -156 -382 0 + -156 -510 0 + -156 -782 0 + -156 -834 0 + -308 -382 0 + -308 -510 0 + -308 -782 0 + -308 -834 0 + -382 -510 0 + -382 -782 0 + -382 -834 0 + -510 -782 0 + -510 -834 0 + -782 -834 0 + -309 -383 0 + -309 -511 0 + -309 -619 0 + -383 -511 0 + -383 -619 0 + -511 -619 0 + -157 -238 0 + -157 -310 0 + -157 -580 0 + -157 -783 0 + -238 -310 0 + -238 -580 0 + -238 -783 0 + -310 -580 0 + -310 -783 0 + -580 -783 0 + -158 -239 0 + -158 -784 0 + -239 -784 0 + -159 -311 0 + -159 -384 0 + -159 -512 0 + -159 -620 0 + -159 -785 0 + -159 -835 0 + -311 -384 0 + -311 -512 0 + -311 -620 0 + -311 -785 0 + -311 -835 0 + -384 -512 0 + -384 -620 0 + -384 -785 0 + -384 -835 0 + -512 -620 0 + -512 -785 0 + -512 -835 0 + -620 -785 0 + -620 -835 0 + -785 -835 0 + -160 -513 0 + -160 -581 0 + -160 -786 0 + -513 -581 0 + -513 -786 0 + -581 -786 0 + -240 -312 0 + -240 -514 0 + -240 -621 0 + -312 -514 0 + -312 -621 0 + -514 -621 0 + -54 -85 0 + -54 -161 0 + -54 -726 0 + -54 -993 0 + -85 -161 0 + -85 -726 0 + -85 -993 0 + -161 -726 0 + -161 -993 0 + -726 -993 0 + -162 -313 0 + -162 -727 0 + -162 -994 0 + -313 -727 0 + -313 -994 0 + -727 -994 0 + -314 -582 0 + -314 -728 0 + -314 -1039 0 + -582 -728 0 + -582 -1039 0 + -728 -1039 0 + -86 -163 0 + -86 -315 0 + -86 -1040 0 + -163 -315 0 + -163 -1040 0 + -315 -1040 0 + -164 -316 0 + -164 -682 0 + -164 -729 0 + -164 -1041 0 + -316 -682 0 + -316 -729 0 + -316 -1041 0 + -682 -729 0 + -682 -1041 0 + -729 -1041 0 + -55 -317 0 + -55 -683 0 + -55 -730 0 + -55 -1042 0 + -317 -683 0 + -317 -730 0 + -317 -1042 0 + -683 -730 0 + -683 -1042 0 + -730 -1042 0 + -56 -87 0 + -56 -583 0 + -56 -995 0 + -56 -1043 0 + -87 -583 0 + -87 -995 0 + -87 -1043 0 + -583 -995 0 + -583 -1043 0 + -995 -1043 0 + -88 -684 0 + -89 -165 0 + -89 -584 0 + -89 -685 0 + -89 -996 0 + -165 -584 0 + -165 -685 0 + -165 -996 0 + -584 -685 0 + -584 -996 0 + -685 -996 0 + -385 -425 0 + -385 -449 0 + -385 -515 0 + -385 -872 0 + -385 -997 0 + -425 -449 0 + -425 -515 0 + -425 -872 0 + -425 -997 0 + -449 -515 0 + -449 -872 0 + -449 -997 0 + -515 -872 0 + -515 -997 0 + -872 -997 0 + -241 -318 0 + -241 -386 0 + -241 -450 0 + -241 -998 0 + -241 -1044 0 + -318 -386 0 + -318 -450 0 + -318 -998 0 + -318 -1044 0 + -386 -450 0 + -386 -998 0 + -386 -1044 0 + -450 -998 0 + -450 -1044 0 + -998 -1044 0 + -319 -387 0 + -319 -451 0 + -319 -516 0 + -319 -873 0 + -319 -1045 0 + -387 -451 0 + -387 -516 0 + -387 -873 0 + -387 -1045 0 + -451 -516 0 + -451 -873 0 + -451 -1045 0 + -516 -873 0 + -516 -1045 0 + -873 -1045 0 + -242 -320 0 + -242 -388 0 + -242 -622 0 + -242 -874 0 + -242 -1046 0 + -320 -388 0 + -320 -622 0 + -320 -874 0 + -320 -1046 0 + -388 -622 0 + -388 -874 0 + -388 -1046 0 + -622 -874 0 + -622 -1046 0 + -874 -1046 0 + -321 -389 0 + -321 -452 0 + -321 -517 0 + -321 -623 0 + -321 -1047 0 + -389 -452 0 + -389 -517 0 + -389 -623 0 + -389 -1047 0 + -452 -517 0 + -452 -623 0 + -452 -1047 0 + -517 -623 0 + -517 -1047 0 + -623 -1047 0 + -243 -390 0 + -243 -426 0 + -243 -518 0 + -390 -426 0 + -390 -518 0 + -426 -518 0 + -244 -427 0 + -244 -453 0 + -244 -999 0 + -244 -1048 0 + -427 -453 0 + -427 -999 0 + -427 -1048 0 + -453 -999 0 + -453 -1048 0 + -999 -1048 0 + -322 -391 0 + -322 -519 0 + -322 -624 0 + -322 -1000 0 + -391 -519 0 + -391 -624 0 + -391 -1000 0 + -519 -624 0 + -519 -1000 0 + -624 -1000 0 + -428 -454 0 + -428 -520 0 + -454 -520 0 + -245 -323 0 + -245 -429 0 + -245 -521 0 + -245 -625 0 + -323 -429 0 + -323 -521 0 + -323 -625 0 + -429 -521 0 + -429 -625 0 + -521 -625 0 + -8 -246 0 + -8 -522 0 + -8 -626 0 + -8 -952 0 + -8 -1049 0 + -246 -522 0 + -246 -626 0 + -246 -952 0 + -246 -1049 0 + -522 -626 0 + -522 -952 0 + -522 -1049 0 + -626 -952 0 + -626 -1049 0 + -952 -1049 0 + -57 -247 0 + -57 -523 0 + -57 -627 0 + -57 -787 0 + -247 -523 0 + -247 -627 0 + -247 -787 0 + -523 -627 0 + -523 -787 0 + -627 -787 0 + -324 -628 0 + -324 -953 0 + -324 -1001 0 + -628 -953 0 + -628 -1001 0 + -953 -1001 0 + -9 -248 0 + -9 -325 0 + -9 -524 0 + -9 -788 0 + -9 -1050 0 + -248 -325 0 + -248 -524 0 + -248 -788 0 + -248 -1050 0 + -325 -524 0 + -325 -788 0 + -325 -1050 0 + -524 -788 0 + -524 -1050 0 + -788 -1050 0 + -10 -249 0 + -10 -326 0 + -10 -629 0 + -10 -954 0 + -10 -1002 0 + -249 -326 0 + -249 -629 0 + -249 -954 0 + -249 -1002 0 + -326 -629 0 + -326 -954 0 + -326 -1002 0 + -629 -954 0 + -629 -1002 0 + -954 -1002 0 + -58 -250 0 + -58 -327 0 + -58 -669 0 + -58 -955 0 + -58 -1003 0 + -58 -1051 0 + -250 -327 0 + -250 -669 0 + -250 -955 0 + -250 -1003 0 + -250 -1051 0 + -327 -669 0 + -327 -955 0 + -327 -1003 0 + -327 -1051 0 + -669 -955 0 + -669 -1003 0 + -669 -1051 0 + -955 -1003 0 + -955 -1051 0 + -1003 -1051 0 + -328 -525 0 + -328 -789 0 + -328 -1052 0 + -525 -789 0 + -525 -1052 0 + -789 -1052 0 + -59 -329 0 + -59 -526 0 + -59 -630 0 + -59 -670 0 + -59 -956 0 + -59 -1053 0 + -329 -526 0 + -329 -630 0 + -329 -670 0 + -329 -956 0 + -329 -1053 0 + -526 -630 0 + -526 -670 0 + -526 -956 0 + -526 -1053 0 + -630 -670 0 + -630 -956 0 + -630 -1053 0 + -670 -956 0 + -670 -1053 0 + -956 -1053 0 + -11 -251 0 + -11 -527 0 + -11 -957 0 + -251 -527 0 + -251 -957 0 + -527 -957 0 + -12 -631 0 + -12 -1004 0 + -631 -1004 0 + -528 -671 0 + -528 -790 0 + -528 -958 0 + -528 -1005 0 + -671 -790 0 + -671 -958 0 + -671 -1005 0 + -790 -958 0 + -790 -1005 0 + -958 -1005 0 + -13 -60 0 + -13 -166 0 + -13 -392 0 + -13 -430 0 + -13 -455 0 + -60 -166 0 + -60 -392 0 + -60 -430 0 + -60 -455 0 + -166 -392 0 + -166 -430 0 + -166 -455 0 + -392 -430 0 + -392 -455 0 + -430 -455 0 + -14 -167 0 + -14 -252 0 + -14 -393 0 + -167 -252 0 + -167 -393 0 + -252 -393 0 + -61 -253 0 + -61 -394 0 + -61 -456 0 + -61 -1054 0 + -253 -394 0 + -253 -456 0 + -253 -1054 0 + -394 -456 0 + -394 -1054 0 + -456 -1054 0 + -62 -395 0 + -62 -457 0 + -62 -1055 0 + -395 -457 0 + -395 -1055 0 + -457 -1055 0 + -168 -254 0 + -168 -1056 0 + -254 -1056 0 + -15 -63 0 + -15 -255 0 + -15 -431 0 + -15 -458 0 + -15 -1057 0 + -63 -255 0 + -63 -431 0 + -63 -458 0 + -63 -1057 0 + -255 -431 0 + -255 -458 0 + -255 -1057 0 + -431 -458 0 + -431 -1057 0 + -458 -1057 0 + -64 -169 0 + -64 -256 0 + -169 -256 0 + -16 -432 0 + -16 -459 0 + -432 -459 0 + -90 -396 0 + -90 -433 0 + -90 -460 0 + -90 -791 0 + -90 -875 0 + -396 -433 0 + -396 -460 0 + -396 -791 0 + -396 -875 0 + -433 -460 0 + -433 -791 0 + -433 -875 0 + -460 -791 0 + -460 -875 0 + -791 -875 0 + -330 -434 0 + -330 -792 0 + -330 -836 0 + -330 -876 0 + -434 -792 0 + -434 -836 0 + -434 -876 0 + -792 -836 0 + -792 -876 0 + -836 -876 0 + -331 -397 0 + -331 -632 0 + -331 -793 0 + -331 -914 0 + -397 -632 0 + -397 -793 0 + -397 -914 0 + -632 -793 0 + -632 -914 0 + -793 -914 0 + -332 -398 0 + -332 -461 0 + -332 -633 0 + -332 -915 0 + -332 -959 0 + -398 -461 0 + -398 -633 0 + -398 -915 0 + -398 -959 0 + -461 -633 0 + -461 -915 0 + -461 -959 0 + -633 -915 0 + -633 -959 0 + -915 -959 0 + -91 -333 0 + -91 -399 0 + -91 -462 0 + -91 -794 0 + -91 -837 0 + -91 -877 0 + -91 -916 0 + -333 -399 0 + -333 -462 0 + -333 -794 0 + -333 -837 0 + -333 -877 0 + -333 -916 0 + -399 -462 0 + -399 -794 0 + -399 -837 0 + -399 -877 0 + -399 -916 0 + -462 -794 0 + -462 -837 0 + -462 -877 0 + -462 -916 0 + -794 -837 0 + -794 -877 0 + -794 -916 0 + -837 -877 0 + -837 -916 0 + -877 -916 0 + -334 -400 0 + -334 -463 0 + -334 -634 0 + -334 -672 0 + -334 -960 0 + -400 -463 0 + -400 -634 0 + -400 -672 0 + -400 -960 0 + -463 -634 0 + -463 -672 0 + -463 -960 0 + -634 -672 0 + -634 -960 0 + -672 -960 0 + -92 -335 0 + -92 -673 0 + -92 -795 0 + -92 -878 0 + -92 -961 0 + -335 -673 0 + -335 -795 0 + -335 -878 0 + -335 -961 0 + -673 -795 0 + -673 -878 0 + -673 -961 0 + -795 -878 0 + -795 -961 0 + -878 -961 0 + -93 -435 0 + -93 -464 0 + -93 -838 0 + -93 -962 0 + -435 -464 0 + -435 -838 0 + -435 -962 0 + -464 -838 0 + -464 -962 0 + -838 -962 0 + -635 -839 0 + -635 -879 0 + -839 -879 0 + -336 -401 0 + -336 -636 0 + -336 -796 0 + -336 -840 0 + -336 -963 0 + -401 -636 0 + -401 -796 0 + -401 -840 0 + -401 -963 0 + -636 -796 0 + -636 -840 0 + -636 -963 0 + -796 -840 0 + -796 -963 0 + -840 -963 0 + -94 -337 0 + -94 -797 0 + -94 -841 0 + -337 -797 0 + -337 -841 0 + -797 -841 0 + -338 -436 0 + -338 -637 0 + -436 -637 0 + -65 -170 0 + -65 -257 0 + -65 -465 0 + -65 -529 0 + -65 -638 0 + -65 -686 0 + -65 -731 0 + -170 -257 0 + -170 -465 0 + -170 -529 0 + -170 -638 0 + -170 -686 0 + -170 -731 0 + -257 -465 0 + -257 -529 0 + -257 -638 0 + -257 -686 0 + -257 -731 0 + -465 -529 0 + -465 -638 0 + -465 -686 0 + -465 -731 0 + -529 -638 0 + -529 -686 0 + -529 -731 0 + -638 -686 0 + -638 -731 0 + -686 -731 0 + -17 -171 0 + -17 -258 0 + -17 -339 0 + -17 -530 0 + -17 -687 0 + -17 -842 0 + -171 -258 0 + -171 -339 0 + -171 -530 0 + -171 -687 0 + -171 -842 0 + -258 -339 0 + -258 -530 0 + -258 -687 0 + -258 -842 0 + -339 -530 0 + -339 -687 0 + -339 -842 0 + -530 -687 0 + -530 -842 0 + -687 -842 0 + -18 -172 0 + -18 -259 0 + -18 -340 0 + -18 -639 0 + -18 -732 0 + -18 -1006 0 + -172 -259 0 + -172 -340 0 + -172 -639 0 + -172 -732 0 + -172 -1006 0 + -259 -340 0 + -259 -639 0 + -259 -732 0 + -259 -1006 0 + -340 -639 0 + -340 -732 0 + -340 -1006 0 + -639 -732 0 + -639 -1006 0 + -732 -1006 0 + -19 -260 0 + -19 -341 0 + -19 -466 0 + -19 -640 0 + -19 -964 0 + -19 -1007 0 + -260 -341 0 + -260 -466 0 + -260 -640 0 + -260 -964 0 + -260 -1007 0 + -341 -466 0 + -341 -640 0 + -341 -964 0 + -341 -1007 0 + -466 -640 0 + -466 -964 0 + -466 -1007 0 + -640 -964 0 + -640 -1007 0 + -964 -1007 0 + -261 -342 0 + -261 -467 0 + -261 -531 0 + -261 -641 0 + -261 -733 0 + -342 -467 0 + -342 -531 0 + -342 -641 0 + -342 -733 0 + -467 -531 0 + -467 -641 0 + -467 -733 0 + -531 -641 0 + -531 -733 0 + -641 -733 0 + -173 -262 0 + -173 -343 0 + -173 -642 0 + -173 -688 0 + -173 -734 0 + -173 -843 0 + -262 -343 0 + -262 -642 0 + -262 -688 0 + -262 -734 0 + -262 -843 0 + -343 -642 0 + -343 -688 0 + -343 -734 0 + -343 -843 0 + -642 -688 0 + -642 -734 0 + -642 -843 0 + -688 -734 0 + -688 -843 0 + -734 -843 0 + -20 -174 0 + -20 -263 0 + -20 -532 0 + -20 -965 0 + -174 -263 0 + -174 -532 0 + -174 -965 0 + -263 -532 0 + -263 -965 0 + -532 -965 0 + -21 -66 0 + -21 -95 0 + -21 -264 0 + -21 -468 0 + -21 -844 0 + -21 -966 0 + -21 -1008 0 + -66 -95 0 + -66 -264 0 + -66 -468 0 + -66 -844 0 + -66 -966 0 + -66 -1008 0 + -95 -264 0 + -95 -468 0 + -95 -844 0 + -95 -966 0 + -95 -1008 0 + -264 -468 0 + -264 -844 0 + -264 -966 0 + -264 -1008 0 + -468 -844 0 + -468 -966 0 + -468 -1008 0 + -844 -966 0 + -844 -1008 0 + -966 -1008 0 + -67 -96 0 + -67 -175 0 + -67 -265 0 + -67 -735 0 + -96 -175 0 + -96 -265 0 + -96 -735 0 + -175 -265 0 + -175 -735 0 + -265 -735 0 + -22 -176 0 + -22 -643 0 + -22 -845 0 + -22 -1009 0 + -176 -643 0 + -176 -845 0 + -176 -1009 0 + -643 -845 0 + -643 -1009 0 + -845 -1009 0 + -177 -344 0 + -177 -533 0 + -177 -644 0 + -177 -689 0 + -177 -736 0 + -177 -846 0 + -177 -967 0 + -177 -1010 0 + -344 -533 0 + -344 -644 0 + -344 -689 0 + -344 -736 0 + -344 -846 0 + -344 -967 0 + -344 -1010 0 + -533 -644 0 + -533 -689 0 + -533 -736 0 + -533 -846 0 + -533 -967 0 + -533 -1010 0 + -644 -689 0 + -644 -736 0 + -644 -846 0 + -644 -967 0 + -644 -1010 0 + -689 -736 0 + -689 -846 0 + -689 -967 0 + -689 -1010 0 + -736 -846 0 + -736 -967 0 + -736 -1010 0 + -846 -967 0 + -846 -1010 0 + -967 -1010 0 + -68 -97 0 + -68 -345 0 + -68 -847 0 + -68 -1011 0 + -97 -345 0 + -97 -847 0 + -97 -1011 0 + -345 -847 0 + -345 -1011 0 + -847 -1011 0 + -23 -98 0 + -23 -469 0 + -23 -534 0 + -23 -690 0 + -23 -848 0 + -23 -968 0 + -98 -469 0 + -98 -534 0 + -98 -690 0 + -98 -848 0 + -98 -968 0 + -469 -534 0 + -469 -690 0 + -469 -848 0 + -469 -968 0 + -534 -690 0 + -534 -848 0 + -534 -968 0 + -690 -848 0 + -690 -968 0 + -848 -968 0 + -99 -178 0 + -99 -535 0 + -99 -691 0 + -99 -969 0 + -99 -1012 0 + -178 -535 0 + -178 -691 0 + -178 -969 0 + -178 -1012 0 + -535 -691 0 + -535 -969 0 + -535 -1012 0 + -691 -969 0 + -691 -1012 0 + -969 -1012 0 + -24 -100 0 + -24 -266 0 + -24 -849 0 + -24 -970 0 + -24 -1058 0 + -100 -266 0 + -100 -849 0 + -100 -970 0 + -100 -1058 0 + -266 -849 0 + -266 -970 0 + -266 -1058 0 + -849 -970 0 + -849 -1058 0 + -970 -1058 0 + -101 -346 0 + -101 -971 0 + -101 -1013 0 + -346 -971 0 + -346 -1013 0 + -971 -1013 0 + -25 -102 0 + -25 -1014 0 + -102 -1014 0 + -26 -267 0 + -26 -347 0 + -26 -1015 0 + -267 -347 0 + -267 -1015 0 + -347 -1015 0 + -27 -268 0 + -27 -348 0 + -27 -972 0 + -27 -1016 0 + -268 -348 0 + -268 -972 0 + -268 -1016 0 + -348 -972 0 + -348 -1016 0 + -972 -1016 0 + -269 -349 0 + -269 -1059 0 + -349 -1059 0 + -270 -350 0 + -270 -850 0 + -270 -1060 0 + -350 -850 0 + -350 -1060 0 + -850 -1060 0 + -351 -851 0 + -351 -973 0 + -351 -1017 0 + -851 -973 0 + -851 -1017 0 + -973 -1017 0 + -28 -103 0 + -28 -179 0 + -28 -470 0 + -28 -536 0 + -28 -737 0 + -28 -917 0 + -103 -179 0 + -103 -470 0 + -103 -536 0 + -103 -737 0 + -103 -917 0 + -179 -470 0 + -179 -536 0 + -179 -737 0 + -179 -917 0 + -470 -536 0 + -470 -737 0 + -470 -917 0 + -536 -737 0 + -536 -917 0 + -737 -917 0 + -69 -180 0 + -69 -471 0 + -69 -537 0 + -69 -692 0 + -69 -738 0 + -69 -798 0 + -69 -880 0 + -69 -918 0 + -180 -471 0 + -180 -537 0 + -180 -692 0 + -180 -738 0 + -180 -798 0 + -180 -880 0 + -180 -918 0 + -471 -537 0 + -471 -692 0 + -471 -738 0 + -471 -798 0 + -471 -880 0 + -471 -918 0 + -537 -692 0 + -537 -738 0 + -537 -798 0 + -537 -880 0 + -537 -918 0 + -692 -738 0 + -692 -798 0 + -692 -880 0 + -692 -918 0 + -738 -798 0 + -738 -880 0 + -738 -918 0 + -798 -880 0 + -798 -918 0 + -880 -918 0 + -104 -693 0 + -104 -881 0 + -104 -919 0 + -693 -881 0 + -693 -919 0 + -881 -919 0 + -29 -70 0 + -29 -105 0 + -29 -181 0 + -29 -472 0 + -29 -538 0 + -29 -739 0 + -29 -799 0 + -29 -882 0 + -70 -105 0 + -70 -181 0 + -70 -472 0 + -70 -538 0 + -70 -739 0 + -70 -799 0 + -70 -882 0 + -105 -181 0 + -105 -472 0 + -105 -538 0 + -105 -739 0 + -105 -799 0 + -105 -882 0 + -181 -472 0 + -181 -538 0 + -181 -739 0 + -181 -799 0 + -181 -882 0 + -472 -538 0 + -472 -739 0 + -472 -799 0 + -472 -882 0 + -538 -739 0 + -538 -799 0 + -538 -882 0 + -739 -799 0 + -739 -882 0 + -799 -882 0 + -30 -473 0 + -30 -920 0 + -473 -920 0 + -474 -539 0 + -474 -740 0 + -539 -740 0 + -71 -106 0 + -71 -475 0 + -106 -475 0 + -107 -182 0 + -107 -476 0 + -107 -540 0 + -107 -800 0 + -107 -883 0 + -107 -921 0 + -182 -476 0 + -182 -540 0 + -182 -800 0 + -182 -883 0 + -182 -921 0 + -476 -540 0 + -476 -800 0 + -476 -883 0 + -476 -921 0 + -540 -800 0 + -540 -883 0 + -540 -921 0 + -800 -883 0 + -800 -921 0 + -883 -921 0 + -108 -183 0 + -108 -694 0 + -108 -741 0 + -108 -801 0 + -108 -884 0 + -183 -694 0 + -183 -741 0 + -183 -801 0 + -183 -884 0 + -694 -741 0 + -694 -801 0 + -694 -884 0 + -741 -801 0 + -741 -884 0 + -801 -884 0 + -31 -72 0 + -31 -109 0 + -31 -477 0 + -72 -109 0 + -72 -477 0 + -109 -477 0 + -184 -541 0 + -184 -695 0 + -184 -742 0 + -184 -802 0 + -541 -695 0 + -541 -742 0 + -541 -802 0 + -695 -742 0 + -695 -802 0 + -742 -802 0 + -32 -110 0 + -32 -542 0 + -32 -645 0 + -32 -743 0 + -32 -974 0 + -110 -542 0 + -110 -645 0 + -110 -743 0 + -110 -974 0 + -542 -645 0 + -542 -743 0 + -542 -974 0 + -645 -743 0 + -645 -974 0 + -743 -974 0 + -111 -352 0 + -111 -646 0 + -111 -696 0 + -111 -885 0 + -111 -975 0 + -352 -646 0 + -352 -696 0 + -352 -885 0 + -352 -975 0 + -646 -696 0 + -646 -885 0 + -646 -975 0 + -696 -885 0 + -696 -975 0 + -885 -975 0 + -33 -112 0 + -33 -543 0 + -33 -744 0 + -33 -886 0 + -112 -543 0 + -112 -744 0 + -112 -886 0 + -543 -744 0 + -543 -886 0 + -744 -886 0 + -34 -353 0 + -34 -544 0 + -34 -697 0 + -34 -887 0 + -353 -544 0 + -353 -697 0 + -353 -887 0 + -544 -697 0 + -544 -887 0 + -697 -887 0 + -35 -354 0 + -35 -647 0 + -35 -745 0 + -354 -647 0 + -354 -745 0 + -647 -745 0 + -113 -355 0 + -113 -545 0 + -113 -888 0 + -355 -545 0 + -355 -888 0 + -545 -888 0 + -356 -546 0 + -356 -648 0 + -356 -698 0 + -356 -746 0 + -356 -976 0 + -546 -648 0 + -546 -698 0 + -546 -746 0 + -546 -976 0 + -648 -698 0 + -648 -746 0 + -648 -976 0 + -698 -746 0 + -698 -976 0 + -746 -976 0 + -114 -357 0 + -114 -699 0 + -114 -747 0 + -114 -889 0 + -114 -977 0 + -357 -699 0 + -357 -747 0 + -357 -889 0 + -357 -977 0 + -699 -747 0 + -699 -889 0 + -699 -977 0 + -747 -889 0 + -747 -977 0 + -889 -977 0 + -36 -358 0 + -36 -547 0 + -36 -649 0 + -36 -748 0 + -358 -547 0 + -358 -649 0 + -358 -748 0 + -547 -649 0 + -547 -748 0 + -649 -748 0 + -185 -478 0 + -185 -548 0 + -185 -700 0 + -185 -749 0 + -185 -922 0 + -478 -548 0 + -478 -700 0 + -478 -749 0 + -478 -922 0 + -548 -700 0 + -548 -749 0 + -548 -922 0 + -700 -749 0 + -700 -922 0 + -749 -922 0 + -585 -701 0 + -585 -923 0 + -585 -978 0 + -701 -923 0 + -701 -978 0 + -923 -978 0 + -186 -549 0 + -186 -586 0 + -186 -702 0 + -186 -1061 0 + -549 -586 0 + -549 -702 0 + -549 -1061 0 + -586 -702 0 + -586 -1061 0 + -702 -1061 0 + -187 -750 0 + -187 -924 0 + -750 -924 0 + -479 -550 0 + -479 -587 0 + -479 -751 0 + -479 -1062 0 + -550 -587 0 + -550 -751 0 + -550 -1062 0 + -587 -751 0 + -587 -1062 0 + -751 -1062 0 + -480 -674 0 + -480 -979 0 + -480 -1063 0 + -674 -979 0 + -674 -1063 0 + -979 -1063 0 + -188 -703 0 + -188 -752 0 + -188 -925 0 + -188 -1064 0 + -703 -752 0 + -703 -925 0 + -703 -1064 0 + -752 -925 0 + -752 -1064 0 + -925 -1064 0 + -481 -588 0 + -481 -980 0 + -481 -1065 0 + -588 -980 0 + -588 -1065 0 + -980 -1065 0 + -189 -551 0 + -189 -704 0 + -189 -753 0 + -189 -981 0 + -551 -704 0 + -551 -753 0 + -551 -981 0 + -704 -753 0 + -704 -981 0 + -753 -981 0 + -190 -552 0 + -190 -589 0 + -190 -675 0 + -190 -705 0 + -190 -982 0 + -552 -589 0 + -552 -675 0 + -552 -705 0 + -552 -982 0 + -589 -675 0 + -589 -705 0 + -589 -982 0 + -675 -705 0 + -675 -982 0 + -705 -982 0 + -191 -271 0 + -191 -482 0 + -191 -553 0 + -191 -590 0 + -191 -650 0 + -191 -754 0 + -271 -482 0 + -271 -553 0 + -271 -590 0 + -271 -650 0 + -271 -754 0 + -482 -553 0 + -482 -590 0 + -482 -650 0 + -482 -754 0 + -553 -590 0 + -553 -650 0 + -553 -754 0 + -590 -650 0 + -590 -754 0 + -650 -754 0 + -192 -272 0 + -192 -483 0 + -192 -554 0 + -192 -651 0 + -192 -755 0 + -192 -803 0 + -192 -890 0 + -272 -483 0 + -272 -554 0 + -272 -651 0 + -272 -755 0 + -272 -803 0 + -272 -890 0 + -483 -554 0 + -483 -651 0 + -483 -755 0 + -483 -803 0 + -483 -890 0 + -554 -651 0 + -554 -755 0 + -554 -803 0 + -554 -890 0 + -651 -755 0 + -651 -803 0 + -651 -890 0 + -755 -803 0 + -755 -890 0 + -803 -890 0 + -273 -402 0 + -273 -484 0 + -273 -591 0 + -273 -652 0 + -273 -1018 0 + -402 -484 0 + -402 -591 0 + -402 -652 0 + -402 -1018 0 + -484 -591 0 + -484 -652 0 + -484 -1018 0 + -591 -652 0 + -591 -1018 0 + -652 -1018 0 + -193 -403 0 + -193 -485 0 + -193 -555 0 + -193 -804 0 + -193 -891 0 + -403 -485 0 + -403 -555 0 + -403 -804 0 + -403 -891 0 + -485 -555 0 + -485 -804 0 + -485 -891 0 + -555 -804 0 + -555 -891 0 + -804 -891 0 + -194 -274 0 + -194 -404 0 + -194 -653 0 + -194 -756 0 + -194 -892 0 + -274 -404 0 + -274 -653 0 + -274 -756 0 + -274 -892 0 + -404 -653 0 + -404 -756 0 + -404 -892 0 + -653 -756 0 + -653 -892 0 + -756 -892 0 + -195 -275 0 + -195 -592 0 + -195 -757 0 + -195 -805 0 + -195 -893 0 + -275 -592 0 + -275 -757 0 + -275 -805 0 + -275 -893 0 + -592 -757 0 + -592 -805 0 + -592 -893 0 + -757 -805 0 + -757 -893 0 + -805 -893 0 + -196 -276 0 + -196 -758 0 + -196 -806 0 + -276 -758 0 + -276 -806 0 + -758 -806 0 + -197 -654 0 + -197 -894 0 + -197 -1019 0 + -654 -894 0 + -654 -1019 0 + -894 -1019 0 + -198 -405 0 + -198 -556 0 + -198 -655 0 + -198 -759 0 + -198 -807 0 + -198 -1020 0 + -405 -556 0 + -405 -655 0 + -405 -759 0 + -405 -807 0 + -405 -1020 0 + -556 -655 0 + -556 -759 0 + -556 -807 0 + -556 -1020 0 + -655 -759 0 + -655 -807 0 + -655 -1020 0 + -759 -807 0 + -759 -1020 0 + -807 -1020 0 + -808 -1021 0 + -277 -557 0 + -277 -656 0 + -277 -760 0 + -557 -656 0 + -557 -760 0 + -656 -760 0 + -37 -115 0 + -37 -486 0 + -37 -593 0 + -37 -761 0 + -37 -852 0 + -37 -926 0 + -37 -983 0 + -115 -486 0 + -115 -593 0 + -115 -761 0 + -115 -852 0 + -115 -926 0 + -115 -983 0 + -486 -593 0 + -486 -761 0 + -486 -852 0 + -486 -926 0 + -486 -983 0 + -593 -761 0 + -593 -852 0 + -593 -926 0 + -593 -983 0 + -761 -852 0 + -761 -926 0 + -761 -983 0 + -852 -926 0 + -852 -983 0 + -926 -983 0 + -116 -359 0 + -116 -594 0 + -116 -927 0 + -116 -984 0 + -359 -594 0 + -359 -927 0 + -359 -984 0 + -594 -927 0 + -594 -984 0 + -927 -984 0 + -38 -117 0 + -38 -406 0 + -38 -437 0 + -38 -487 0 + -38 -762 0 + -117 -406 0 + -117 -437 0 + -117 -487 0 + -117 -762 0 + -406 -437 0 + -406 -487 0 + -406 -762 0 + -437 -487 0 + -437 -762 0 + -487 -762 0 + -360 -407 0 + -360 -438 0 + -360 -488 0 + -360 -595 0 + -360 -763 0 + -407 -438 0 + -407 -488 0 + -407 -595 0 + -407 -763 0 + -438 -488 0 + -438 -595 0 + -438 -763 0 + -488 -595 0 + -488 -763 0 + -595 -763 0 + -118 -361 0 + -118 -408 0 + -118 -489 0 + -118 -853 0 + -118 -928 0 + -361 -408 0 + -361 -489 0 + -361 -853 0 + -361 -928 0 + -408 -489 0 + -408 -853 0 + -408 -928 0 + -489 -853 0 + -489 -928 0 + -853 -928 0 + -362 -409 0 + -362 -764 0 + -362 -854 0 + -362 -929 0 + -409 -764 0 + -409 -854 0 + -409 -929 0 + -764 -854 0 + -764 -929 0 + -854 -929 0 + -39 -119 0 + -39 -439 0 + -39 -490 0 + -39 -596 0 + -39 -855 0 + -39 -985 0 + -119 -439 0 + -119 -490 0 + -119 -596 0 + -119 -855 0 + -119 -985 0 + -439 -490 0 + -439 -596 0 + -439 -855 0 + -439 -985 0 + -490 -596 0 + -490 -855 0 + -490 -985 0 + -596 -855 0 + -596 -985 0 + -855 -985 0 + -120 -765 0 + -121 -363 0 + -121 -856 0 + -363 -856 0 + -40 -122 0 + -40 -440 0 + -40 -491 0 + -40 -857 0 + -40 -986 0 + -122 -440 0 + -122 -491 0 + -122 -857 0 + -122 -986 0 + -440 -491 0 + -440 -857 0 + -440 -986 0 + -491 -857 0 + -491 -986 0 + -857 -986 0 + -123 -597 0 + -123 -987 0 + -597 -987 0 + -124 -199 0 + -124 -657 0 + -124 -988 0 + -199 -657 0 + -199 -988 0 + -657 -988 0 + -200 -658 0 + -200 -706 0 + -200 -809 0 + -658 -706 0 + -658 -809 0 + -706 -809 0 + -125 -201 0 + -125 -410 0 + -125 -810 0 + -125 -1022 0 + -201 -410 0 + -201 -810 0 + -201 -1022 0 + -410 -810 0 + -410 -1022 0 + -810 -1022 0 + -411 -659 0 + -126 -202 0 + -126 -412 0 + -126 -811 0 + -202 -412 0 + -202 -811 0 + -412 -811 0 + -413 -660 0 + -413 -676 0 + -413 -707 0 + -413 -989 0 + -660 -676 0 + -660 -707 0 + -660 -989 0 + -676 -707 0 + -676 -989 0 + -707 -989 0 + -127 -203 0 + -127 -677 0 + -127 -708 0 + -127 -812 0 + -127 -990 0 + -203 -677 0 + -203 -708 0 + -203 -812 0 + -203 -990 0 + -677 -708 0 + -677 -812 0 + -677 -990 0 + -708 -812 0 + -708 -990 0 + -812 -990 0 + -128 -709 0 + -128 -991 0 + -709 -991 0 + -129 -204 0 + -129 -678 0 + -129 -710 0 + -129 -813 0 + -129 -992 0 + -129 -1023 0 + -204 -678 0 + -204 -710 0 + -204 -813 0 + -204 -992 0 + -204 -1023 0 + -678 -710 0 + -678 -813 0 + -678 -992 0 + -678 -1023 0 + -710 -813 0 + -710 -992 0 + -710 -1023 0 + -813 -992 0 + -813 -1023 0 + -992 -1023 0 + -41 -205 0 + -41 -492 0 + -41 -558 0 + -41 -766 0 + -41 -930 0 + -205 -492 0 + -205 -558 0 + -205 -766 0 + -205 -930 0 + -492 -558 0 + -492 -766 0 + -492 -930 0 + -558 -766 0 + -558 -930 0 + -766 -930 0 + -42 -206 0 + -42 -364 0 + -42 -441 0 + -42 -559 0 + -42 -711 0 + -42 -814 0 + -206 -364 0 + -206 -441 0 + -206 -559 0 + -206 -711 0 + -206 -814 0 + -364 -441 0 + -364 -559 0 + -364 -711 0 + -364 -814 0 + -441 -559 0 + -441 -711 0 + -441 -814 0 + -559 -711 0 + -559 -814 0 + -711 -814 0 + -365 -442 0 + -365 -493 0 + -365 -560 0 + -365 -767 0 + -442 -493 0 + -442 -560 0 + -442 -767 0 + -493 -560 0 + -493 -767 0 + -560 -767 0 + -366 -494 0 + -366 -1024 0 + -494 -1024 0 + -207 -367 0 + -207 -712 0 + -207 -768 0 + -207 -931 0 + -367 -712 0 + -367 -768 0 + -367 -931 0 + -712 -768 0 + -712 -931 0 + -768 -931 0 + -368 -495 0 + -368 -561 0 + -368 -713 0 + -368 -769 0 + -495 -561 0 + -495 -713 0 + -495 -769 0 + -561 -713 0 + -561 -769 0 + -713 -769 0 + -43 -208 0 + -43 -443 0 + -43 -562 0 + -43 -932 0 + -208 -443 0 + -208 -562 0 + -208 -932 0 + -443 -562 0 + -443 -932 0 + -562 -932 0 + -44 -444 0 + -44 -496 0 + -44 -1025 0 + -444 -496 0 + -444 -1025 0 + -496 -1025 0 + -209 -369 0 + -209 -563 0 + -209 -714 0 + -209 -770 0 + -209 -815 0 + -209 -1026 0 + -369 -563 0 + -369 -714 0 + -369 -770 0 + -369 -815 0 + -369 -1026 0 + -563 -714 0 + -563 -770 0 + -563 -815 0 + -563 -1026 0 + -714 -770 0 + -714 -815 0 + -714 -1026 0 + -770 -815 0 + -770 -1026 0 + -815 -1026 0 + -370 -816 0 + -370 -1027 0 + -816 -1027 0 + -210 -564 0 + -210 -715 0 + -210 -817 0 + -210 -1028 0 + -564 -715 0 + -564 -817 0 + -564 -1028 0 + -715 -817 0 + -715 -1028 0 + -817 -1028 0 + -497 -565 0 + -497 -598 0 + -497 -661 0 + -497 -858 0 + -497 -933 0 + -497 -1066 0 + -565 -598 0 + -565 -661 0 + -565 -858 0 + -565 -933 0 + -565 -1066 0 + -598 -661 0 + -598 -858 0 + -598 -933 0 + -598 -1066 0 + -661 -858 0 + -661 -933 0 + -661 -1066 0 + -858 -933 0 + -858 -1066 0 + -933 -1066 0 + -498 -566 0 + -498 -662 0 + -498 -895 0 + -498 -934 0 + -566 -662 0 + -566 -895 0 + -566 -934 0 + -662 -895 0 + -662 -934 0 + -895 -934 0 + -499 -599 0 + -499 -663 0 + -499 -935 0 + -499 -1029 0 + -599 -663 0 + -599 -935 0 + -599 -1029 0 + -663 -935 0 + -663 -1029 0 + -935 -1029 0 + -500 -1030 0 + -500 -1067 0 + -1030 -1067 0 + -501 -567 0 + -501 -859 0 + -501 -896 0 + -501 -936 0 + -501 -1068 0 + -567 -859 0 + -567 -896 0 + -567 -936 0 + -567 -1068 0 + -859 -896 0 + -859 -936 0 + -859 -1068 0 + -896 -936 0 + -896 -1068 0 + -936 -1068 0 + -664 -860 0 + -664 -897 0 + -664 -937 0 + -664 -1069 0 + -860 -897 0 + -860 -937 0 + -860 -1069 0 + -897 -937 0 + -897 -1069 0 + -937 -1069 0 + -502 -568 0 + -502 -665 0 + -502 -1070 0 + -568 -665 0 + -568 -1070 0 + -665 -1070 0 + -600 -898 0 + -600 -1071 0 + -898 -1071 0 + -503 -601 0 + -503 -861 0 + -503 -1031 0 + -503 -1072 0 + -601 -861 0 + -601 -1031 0 + -601 -1072 0 + -861 -1031 0 + -861 -1072 0 + -1031 -1072 0 + -73 -278 0 + -73 -569 0 + -73 -771 0 + -73 -818 0 + -278 -569 0 + -278 -771 0 + -278 -818 0 + -569 -771 0 + -569 -818 0 + -771 -818 0 + -45 -279 0 + -45 -570 0 + -45 -602 0 + -45 -819 0 + -45 -862 0 + -279 -570 0 + -279 -602 0 + -279 -819 0 + -279 -862 0 + -570 -602 0 + -570 -819 0 + -570 -862 0 + -602 -819 0 + -602 -862 0 + -819 -862 0 + -74 -130 0 + -74 -280 0 + -130 -280 0 + -46 -281 0 + -46 -571 0 + -46 -603 0 + -281 -571 0 + -281 -603 0 + -571 -603 0 + -47 -75 0 + -47 -131 0 + -47 -282 0 + -47 -604 0 + -47 -863 0 + -75 -131 0 + -75 -282 0 + -75 -604 0 + -75 -863 0 + -131 -282 0 + -131 -604 0 + -131 -863 0 + -282 -604 0 + -282 -863 0 + -604 -863 0 + -48 -864 0 + -572 -772 0 + -572 -820 0 + -572 -865 0 + -772 -820 0 + -772 -865 0 + -820 -865 0 + -76 -132 0 + -76 -821 0 + -76 -866 0 + -132 -821 0 + -132 -866 0 + -821 -866 0 + -49 -133 0 + -49 -573 0 + -49 -867 0 + -133 -573 0 + -133 -867 0 + -573 -867 0 + -211 -283 0 + -211 -773 0 + -211 -1073 0 + -283 -773 0 + -283 -1073 0 + -773 -1073 0 + -212 -284 0 + -212 -371 0 + -212 -1074 0 + -284 -371 0 + -284 -1074 0 + -371 -1074 0 + -285 -372 0 + -285 -414 0 + -285 -1032 0 + -372 -414 0 + -372 -1032 0 + -414 -1032 0 + -286 -373 0 + -286 -415 0 + -286 -774 0 + -286 -1075 0 + -373 -415 0 + -373 -774 0 + -373 -1075 0 + -415 -774 0 + -415 -1075 0 + -774 -1075 0 + -287 -374 0 + -287 -416 0 + -287 -1033 0 + -287 -1076 0 + -374 -416 0 + -374 -1033 0 + -374 -1076 0 + -416 -1033 0 + -416 -1076 0 + -1033 -1076 0 + -213 -288 0 + -213 -417 0 + -288 -417 0 + -214 -289 0 + -214 -375 0 + -214 -775 0 + -214 -1077 0 + -289 -375 0 + -289 -775 0 + -289 -1077 0 + -375 -775 0 + -375 -1077 0 + -775 -1077 0 + -605 -666 0 + -605 -716 0 + -605 -899 0 + -666 -716 0 + -666 -899 0 + -716 -899 0 + -418 -445 0 + -418 -822 0 + -418 -900 0 + -445 -822 0 + -445 -900 0 + -822 -900 0 + -290 -446 0 + -290 -606 0 + -290 -717 0 + -290 -823 0 + -290 -901 0 + -446 -606 0 + -446 -717 0 + -446 -823 0 + -446 -901 0 + -606 -717 0 + -606 -823 0 + -606 -901 0 + -717 -823 0 + -717 -901 0 + -823 -901 0 + -291 -419 0 + -291 -667 0 + -291 -824 0 + -419 -667 0 + -419 -824 0 + -667 -824 0 + -292 -420 0 + -292 -447 0 + -292 -607 0 + -292 -668 0 + -420 -447 0 + -420 -607 0 + -420 -668 0 + -447 -607 0 + -447 -668 0 + -607 -668 0 + -293 -421 0 + -293 -448 0 + -293 -608 0 + -421 -448 0 + -421 -608 0 + -448 -608 0 + -294 -609 0 + -294 -718 0 + -294 -825 0 + -294 -902 0 + -609 -718 0 + -609 -825 0 + -609 -902 0 + -718 -825 0 + -718 -902 0 + -825 -902 0 + -610 -719 0 + -610 -826 0 + -719 -826 0 + -1 -8 0 + -1 -24 0 + -1 -28 0 + -1 -32 0 + -1 -37 0 + -1 -41 0 + -8 -24 0 + -8 -28 0 + -8 -32 0 + -8 -37 0 + -8 -41 0 + -24 -28 0 + -24 -32 0 + -24 -37 0 + -24 -41 0 + -28 -32 0 + -28 -37 0 + -28 -41 0 + -32 -37 0 + -32 -41 0 + -37 -41 0 + -2 -13 0 + -2 -25 0 + -2 -29 0 + -2 -33 0 + -2 -38 0 + -13 -25 0 + -13 -29 0 + -13 -33 0 + -13 -38 0 + -25 -29 0 + -25 -33 0 + -25 -38 0 + -29 -33 0 + -29 -38 0 + -33 -38 0 + -9 -17 0 + -9 -34 0 + -9 -42 0 + -9 -45 0 + -17 -34 0 + -17 -42 0 + -17 -45 0 + -34 -42 0 + -34 -45 0 + -42 -45 0 + -3 -14 0 + -3 -18 0 + -3 -26 0 + -3 -35 0 + -14 -18 0 + -14 -26 0 + -14 -35 0 + -18 -26 0 + -18 -35 0 + -26 -35 0 + -4 -10 0 + -4 -19 0 + -4 -27 0 + -4 -30 0 + -10 -19 0 + -10 -27 0 + -10 -30 0 + -19 -27 0 + -19 -30 0 + -27 -30 0 + -5 -11 0 + -5 -20 0 + -5 -43 0 + -5 -46 0 + -11 -20 0 + -11 -43 0 + -11 -46 0 + -20 -43 0 + -20 -46 0 + -43 -46 0 + -15 -21 0 + -15 -31 0 + -15 -39 0 + -15 -44 0 + -15 -47 0 + -21 -31 0 + -21 -39 0 + -21 -44 0 + -21 -47 0 + -31 -39 0 + -31 -44 0 + -31 -47 0 + -39 -44 0 + -39 -47 0 + -44 -47 0 + -12 -22 0 + -12 -48 0 + -22 -48 0 + -6 -16 0 + -6 -23 0 + -6 -40 0 + -6 -49 0 + -16 -23 0 + -16 -40 0 + -16 -49 0 + -23 -40 0 + -23 -49 0 + -40 -49 0 + -7 -36 0 + -50 -57 0 + -50 -65 0 + -50 -69 0 + -50 -73 0 + -57 -65 0 + -57 -69 0 + -57 -73 0 + -65 -69 0 + -65 -73 0 + -69 -73 0 + -51 -54 0 + -51 -60 0 + -51 -70 0 + -54 -60 0 + -54 -70 0 + -60 -70 0 + -52 -58 0 + -52 -61 0 + -52 -71 0 + -52 -74 0 + -58 -61 0 + -58 -71 0 + -58 -74 0 + -61 -71 0 + -61 -74 0 + -71 -74 0 + -55 -59 0 + -55 -62 0 + -59 -62 0 + -56 -63 0 + -56 -66 0 + -56 -72 0 + -56 -75 0 + -63 -66 0 + -63 -72 0 + -63 -75 0 + -66 -72 0 + -66 -75 0 + -72 -75 0 + -53 -64 0 + -53 -67 0 + -64 -67 0 + -68 -76 0 + -77 -83 0 + -77 -100 0 + -77 -103 0 + -77 -110 0 + -77 -115 0 + -77 -124 0 + -83 -100 0 + -83 -103 0 + -83 -110 0 + -83 -115 0 + -83 -124 0 + -100 -103 0 + -100 -110 0 + -100 -115 0 + -100 -124 0 + -103 -110 0 + -103 -115 0 + -103 -124 0 + -110 -115 0 + -110 -124 0 + -115 -124 0 + -78 -101 0 + -78 -104 0 + -78 -111 0 + -78 -116 0 + -101 -104 0 + -101 -111 0 + -101 -116 0 + -104 -111 0 + -104 -116 0 + -111 -116 0 + -79 -85 0 + -79 -90 0 + -79 -102 0 + -79 -105 0 + -79 -112 0 + -79 -117 0 + -79 -125 0 + -85 -90 0 + -85 -102 0 + -85 -105 0 + -85 -112 0 + -85 -117 0 + -85 -125 0 + -90 -102 0 + -90 -105 0 + -90 -112 0 + -90 -117 0 + -90 -125 0 + -102 -105 0 + -102 -112 0 + -102 -117 0 + -102 -125 0 + -105 -112 0 + -105 -117 0 + -105 -125 0 + -112 -117 0 + -112 -125 0 + -117 -125 0 + -80 -106 0 + -80 -130 0 + -106 -130 0 + -86 -91 0 + -86 -107 0 + -86 -113 0 + -86 -118 0 + -86 -126 0 + -91 -107 0 + -91 -113 0 + -91 -118 0 + -91 -126 0 + -107 -113 0 + -107 -118 0 + -107 -126 0 + -113 -118 0 + -113 -126 0 + -118 -126 0 + -84 -92 0 + -84 -108 0 + -84 -114 0 + -84 -127 0 + -92 -108 0 + -92 -114 0 + -92 -127 0 + -108 -114 0 + -108 -127 0 + -114 -127 0 + -87 -93 0 + -87 -95 0 + -87 -109 0 + -87 -119 0 + -87 -131 0 + -93 -95 0 + -93 -109 0 + -93 -119 0 + -93 -131 0 + -95 -109 0 + -95 -119 0 + -95 -131 0 + -109 -119 0 + -109 -131 0 + -119 -131 0 + -81 -96 0 + -81 -120 0 + -96 -120 0 + -94 -97 0 + -94 -121 0 + -94 -132 0 + -97 -121 0 + -97 -132 0 + -121 -132 0 + -82 -88 0 + -82 -98 0 + -82 -122 0 + -82 -128 0 + -82 -133 0 + -88 -98 0 + -88 -122 0 + -88 -128 0 + -88 -133 0 + -98 -122 0 + -98 -128 0 + -98 -133 0 + -122 -128 0 + -122 -133 0 + -128 -133 0 + -89 -99 0 + -89 -123 0 + -89 -129 0 + -99 -123 0 + -99 -129 0 + -123 -129 0 + -134 -141 0 + -134 -148 0 + -134 -179 0 + -134 -191 0 + -134 -199 0 + -134 -205 0 + -134 -211 0 + -141 -148 0 + -141 -179 0 + -141 -191 0 + -141 -199 0 + -141 -205 0 + -141 -211 0 + -148 -179 0 + -148 -191 0 + -148 -199 0 + -148 -205 0 + -148 -211 0 + -179 -191 0 + -179 -199 0 + -179 -205 0 + -179 -211 0 + -191 -199 0 + -191 -205 0 + -191 -211 0 + -199 -205 0 + -199 -211 0 + -205 -211 0 + -135 -142 0 + -135 -149 0 + -135 -170 0 + -135 -180 0 + -135 -185 0 + -135 -192 0 + -135 -200 0 + -142 -149 0 + -142 -170 0 + -142 -180 0 + -142 -185 0 + -142 -192 0 + -142 -200 0 + -149 -170 0 + -149 -180 0 + -149 -185 0 + -149 -192 0 + -149 -200 0 + -170 -180 0 + -170 -185 0 + -170 -192 0 + -170 -200 0 + -180 -185 0 + -180 -192 0 + -180 -200 0 + -185 -192 0 + -185 -200 0 + -192 -200 0 + -136 -143 0 + -136 -161 0 + -136 -166 0 + -136 -181 0 + -136 -201 0 + -143 -161 0 + -143 -166 0 + -143 -181 0 + -143 -201 0 + -161 -166 0 + -161 -181 0 + -161 -201 0 + -166 -181 0 + -166 -201 0 + -181 -201 0 + -144 -150 0 + -144 -155 0 + -144 -171 0 + -144 -186 0 + -144 -206 0 + -144 -212 0 + -150 -155 0 + -150 -171 0 + -150 -186 0 + -150 -206 0 + -150 -212 0 + -155 -171 0 + -155 -186 0 + -155 -206 0 + -155 -212 0 + -171 -186 0 + -171 -206 0 + -171 -212 0 + -186 -206 0 + -186 -212 0 + -206 -212 0 + -137 -145 0 + -137 -162 0 + -137 -167 0 + -137 -172 0 + -137 -187 0 + -145 -162 0 + -145 -167 0 + -145 -172 0 + -145 -187 0 + -162 -167 0 + -162 -172 0 + -162 -187 0 + -167 -172 0 + -167 -187 0 + -172 -187 0 + -156 -163 0 + -156 -182 0 + -156 -193 0 + -156 -202 0 + -163 -182 0 + -163 -193 0 + -163 -202 0 + -182 -193 0 + -182 -202 0 + -193 -202 0 + -138 -151 0 + -138 -164 0 + -138 -173 0 + -138 -188 0 + -138 -194 0 + -138 -207 0 + -151 -164 0 + -151 -173 0 + -151 -188 0 + -151 -194 0 + -151 -207 0 + -164 -173 0 + -164 -188 0 + -164 -194 0 + -164 -207 0 + -173 -188 0 + -173 -194 0 + -173 -207 0 + -188 -194 0 + -188 -207 0 + -194 -207 0 + -139 -152 0 + -139 -174 0 + -139 -208 0 + -139 -213 0 + -152 -174 0 + -152 -208 0 + -152 -213 0 + -174 -208 0 + -174 -213 0 + -208 -213 0 + -146 -153 0 + -146 -157 0 + -146 -168 0 + -146 -183 0 + -146 -195 0 + -146 -203 0 + -146 -214 0 + -153 -157 0 + -153 -168 0 + -153 -183 0 + -153 -195 0 + -153 -203 0 + -153 -214 0 + -157 -168 0 + -157 -183 0 + -157 -195 0 + -157 -203 0 + -157 -214 0 + -168 -183 0 + -168 -195 0 + -168 -203 0 + -168 -214 0 + -183 -195 0 + -183 -203 0 + -183 -214 0 + -195 -203 0 + -195 -214 0 + -203 -214 0 + -140 -158 0 + -140 -169 0 + -140 -175 0 + -140 -196 0 + -158 -169 0 + -158 -175 0 + -158 -196 0 + -169 -175 0 + -169 -196 0 + -175 -196 0 + -147 -176 0 + -147 -197 0 + -176 -197 0 + -154 -159 0 + -154 -177 0 + -154 -184 0 + -154 -189 0 + -154 -198 0 + -154 -209 0 + -159 -177 0 + -159 -184 0 + -159 -189 0 + -159 -198 0 + -159 -209 0 + -177 -184 0 + -177 -189 0 + -177 -198 0 + -177 -209 0 + -184 -189 0 + -184 -198 0 + -184 -209 0 + -189 -198 0 + -189 -209 0 + -198 -209 0 + -160 -165 0 + -160 -178 0 + -160 -190 0 + -160 -204 0 + -160 -210 0 + -165 -178 0 + -165 -190 0 + -165 -204 0 + -165 -210 0 + -178 -190 0 + -178 -204 0 + -178 -210 0 + -190 -204 0 + -190 -210 0 + -204 -210 0 + -215 -224 0 + -215 -231 0 + -215 -246 0 + -215 -266 0 + -215 -271 0 + -215 -283 0 + -224 -231 0 + -224 -246 0 + -224 -266 0 + -224 -271 0 + -224 -283 0 + -231 -246 0 + -231 -266 0 + -231 -271 0 + -231 -283 0 + -246 -266 0 + -246 -271 0 + -246 -283 0 + -266 -271 0 + -266 -283 0 + -271 -283 0 + -216 -225 0 + -216 -232 0 + -216 -247 0 + -216 -257 0 + -216 -272 0 + -216 -278 0 + -225 -232 0 + -225 -247 0 + -225 -257 0 + -225 -272 0 + -225 -278 0 + -232 -247 0 + -232 -257 0 + -232 -272 0 + -232 -278 0 + -247 -257 0 + -247 -272 0 + -247 -278 0 + -257 -272 0 + -257 -278 0 + -272 -278 0 + -226 -233 0 + -226 -237 0 + -226 -248 0 + -226 -258 0 + -226 -279 0 + -226 -284 0 + -226 -290 0 + -233 -237 0 + -233 -248 0 + -233 -258 0 + -233 -279 0 + -233 -284 0 + -233 -290 0 + -237 -248 0 + -237 -258 0 + -237 -279 0 + -237 -284 0 + -237 -290 0 + -248 -258 0 + -248 -279 0 + -248 -284 0 + -248 -290 0 + -258 -279 0 + -258 -284 0 + -258 -290 0 + -279 -284 0 + -279 -290 0 + -284 -290 0 + -217 -227 0 + -217 -252 0 + -217 -259 0 + -217 -267 0 + -217 -291 0 + -227 -252 0 + -227 -259 0 + -227 -267 0 + -227 -291 0 + -252 -259 0 + -252 -267 0 + -252 -291 0 + -259 -267 0 + -259 -291 0 + -267 -291 0 + -218 -228 0 + -218 -249 0 + -218 -260 0 + -218 -268 0 + -218 -273 0 + -218 -285 0 + -228 -249 0 + -228 -260 0 + -228 -268 0 + -228 -273 0 + -228 -285 0 + -249 -260 0 + -249 -268 0 + -249 -273 0 + -249 -285 0 + -260 -268 0 + -260 -273 0 + -260 -285 0 + -268 -273 0 + -268 -285 0 + -273 -285 0 + -261 -269 0 + -261 -286 0 + -261 -292 0 + -269 -286 0 + -269 -292 0 + -286 -292 0 + -219 -241 0 + -219 -250 0 + -219 -253 0 + -219 -280 0 + -219 -287 0 + -241 -250 0 + -241 -253 0 + -241 -280 0 + -241 -287 0 + -250 -253 0 + -250 -280 0 + -250 -287 0 + -253 -280 0 + -253 -287 0 + -280 -287 0 + -220 -234 0 + -220 -242 0 + -220 -262 0 + -220 -270 0 + -220 -274 0 + -234 -242 0 + -234 -262 0 + -234 -270 0 + -234 -274 0 + -242 -262 0 + -242 -270 0 + -242 -274 0 + -262 -270 0 + -262 -274 0 + -270 -274 0 + -221 -235 0 + -221 -243 0 + -221 -251 0 + -221 -263 0 + -221 -281 0 + -221 -288 0 + -221 -293 0 + -235 -243 0 + -235 -251 0 + -235 -263 0 + -235 -281 0 + -235 -288 0 + -235 -293 0 + -243 -251 0 + -243 -263 0 + -243 -281 0 + -243 -288 0 + -243 -293 0 + -251 -263 0 + -251 -281 0 + -251 -288 0 + -251 -293 0 + -263 -281 0 + -263 -288 0 + -263 -293 0 + -281 -288 0 + -281 -293 0 + -288 -293 0 + -229 -236 0 + -229 -238 0 + -229 -254 0 + -229 -275 0 + -229 -289 0 + -229 -294 0 + -236 -238 0 + -236 -254 0 + -236 -275 0 + -236 -289 0 + -236 -294 0 + -238 -254 0 + -238 -275 0 + -238 -289 0 + -238 -294 0 + -254 -275 0 + -254 -289 0 + -254 -294 0 + -275 -289 0 + -275 -294 0 + -289 -294 0 + -244 -255 0 + -244 -264 0 + -244 -282 0 + -255 -264 0 + -255 -282 0 + -264 -282 0 + -222 -239 0 + -222 -256 0 + -222 -265 0 + -222 -276 0 + -239 -256 0 + -239 -265 0 + -239 -276 0 + -256 -265 0 + -256 -276 0 + -265 -276 0 + -223 -230 0 + -223 -240 0 + -223 -245 0 + -223 -277 0 + -230 -240 0 + -230 -245 0 + -230 -277 0 + -240 -245 0 + -240 -277 0 + -245 -277 0 + -295 -306 0 + -295 -324 0 + -295 -346 0 + -295 -352 0 + -295 -359 0 + -306 -324 0 + -306 -346 0 + -306 -352 0 + -306 -359 0 + -324 -346 0 + -324 -352 0 + -324 -359 0 + -346 -352 0 + -346 -359 0 + -352 -359 0 + -301 -307 0 + -301 -325 0 + -301 -330 0 + -301 -339 0 + -301 -353 0 + -301 -364 0 + -301 -371 0 + -307 -325 0 + -307 -330 0 + -307 -339 0 + -307 -353 0 + -307 -364 0 + -307 -371 0 + -325 -330 0 + -325 -339 0 + -325 -353 0 + -325 -364 0 + -325 -371 0 + -330 -339 0 + -330 -353 0 + -330 -364 0 + -330 -371 0 + -339 -353 0 + -339 -364 0 + -339 -371 0 + -353 -364 0 + -353 -371 0 + -364 -371 0 + -296 -313 0 + -296 -331 0 + -296 -340 0 + -296 -347 0 + -296 -354 0 + -313 -331 0 + -313 -340 0 + -313 -347 0 + -313 -354 0 + -331 -340 0 + -331 -347 0 + -331 -354 0 + -340 -347 0 + -340 -354 0 + -347 -354 0 + -297 -326 0 + -297 -332 0 + -297 -341 0 + -297 -348 0 + -297 -372 0 + -326 -332 0 + -326 -341 0 + -326 -348 0 + -326 -372 0 + -332 -341 0 + -332 -348 0 + -332 -372 0 + -341 -348 0 + -341 -372 0 + -348 -372 0 + -314 -342 0 + -314 -349 0 + -314 -360 0 + -314 -365 0 + -314 -373 0 + -342 -349 0 + -342 -360 0 + -342 -365 0 + -342 -373 0 + -349 -360 0 + -349 -365 0 + -349 -373 0 + -360 -365 0 + -360 -373 0 + -365 -373 0 + -298 -318 0 + -298 -327 0 + -298 -366 0 + -298 -374 0 + -318 -327 0 + -318 -366 0 + -318 -374 0 + -327 -366 0 + -327 -374 0 + -366 -374 0 + -308 -315 0 + -308 -319 0 + -308 -328 0 + -308 -333 0 + -308 -355 0 + -308 -361 0 + -315 -319 0 + -315 -328 0 + -315 -333 0 + -315 -355 0 + -315 -361 0 + -319 -328 0 + -319 -333 0 + -319 -355 0 + -319 -361 0 + -328 -333 0 + -328 -355 0 + -328 -361 0 + -333 -355 0 + -333 -361 0 + -355 -361 0 + -299 -302 0 + -299 -316 0 + -299 -320 0 + -299 -343 0 + -299 -350 0 + -299 -362 0 + -299 -367 0 + -302 -316 0 + -302 -320 0 + -302 -343 0 + -302 -350 0 + -302 -362 0 + -302 -367 0 + -316 -320 0 + -316 -343 0 + -316 -350 0 + -316 -362 0 + -316 -367 0 + -320 -343 0 + -320 -350 0 + -320 -362 0 + -320 -367 0 + -343 -350 0 + -343 -362 0 + -343 -367 0 + -350 -362 0 + -350 -367 0 + -362 -367 0 + -303 -309 0 + -303 -317 0 + -303 -321 0 + -303 -329 0 + -303 -334 0 + -303 -356 0 + -303 -368 0 + -309 -317 0 + -309 -321 0 + -309 -329 0 + -309 -334 0 + -309 -356 0 + -309 -368 0 + -317 -321 0 + -317 -329 0 + -317 -334 0 + -317 -356 0 + -317 -368 0 + -321 -329 0 + -321 -334 0 + -321 -356 0 + -321 -368 0 + -329 -334 0 + -329 -356 0 + -329 -368 0 + -334 -356 0 + -334 -368 0 + -356 -368 0 + -304 -310 0 + -304 -335 0 + -304 -357 0 + -304 -375 0 + -310 -335 0 + -310 -357 0 + -310 -375 0 + -335 -357 0 + -335 -375 0 + -357 -375 0 + -305 -311 0 + -305 -322 0 + -305 -336 0 + -305 -344 0 + -305 -351 0 + -305 -369 0 + -311 -322 0 + -311 -336 0 + -311 -344 0 + -311 -351 0 + -311 -369 0 + -322 -336 0 + -322 -344 0 + -322 -351 0 + -322 -369 0 + -336 -344 0 + -336 -351 0 + -336 -369 0 + -344 -351 0 + -344 -369 0 + -351 -369 0 + -337 -345 0 + -337 -363 0 + -337 -370 0 + -345 -363 0 + -345 -370 0 + -363 -370 0 + -300 -312 0 + -300 -323 0 + -300 -338 0 + -300 -358 0 + -312 -323 0 + -312 -338 0 + -312 -358 0 + -323 -338 0 + -323 -358 0 + -338 -358 0 + -376 -385 0 + -376 -392 0 + -376 -396 0 + -376 -406 0 + -376 -410 0 + -376 -418 0 + -385 -392 0 + -385 -396 0 + -385 -406 0 + -385 -410 0 + -385 -418 0 + -392 -396 0 + -392 -406 0 + -392 -410 0 + -392 -418 0 + -396 -406 0 + -396 -410 0 + -396 -418 0 + -406 -410 0 + -406 -418 0 + -410 -418 0 + -377 -393 0 + -377 -397 0 + -377 -419 0 + -393 -397 0 + -393 -419 0 + -397 -419 0 + -378 -398 0 + -378 -402 0 + -378 -414 0 + -398 -402 0 + -398 -414 0 + -402 -414 0 + -407 -411 0 + -407 -415 0 + -407 -420 0 + -411 -415 0 + -411 -420 0 + -415 -420 0 + -379 -386 0 + -379 -394 0 + -379 -416 0 + -386 -394 0 + -386 -416 0 + -394 -416 0 + -382 -387 0 + -382 -399 0 + -382 -403 0 + -382 -408 0 + -382 -412 0 + -387 -399 0 + -387 -403 0 + -387 -408 0 + -387 -412 0 + -399 -403 0 + -399 -408 0 + -399 -412 0 + -403 -408 0 + -403 -412 0 + -408 -412 0 + -380 -388 0 + -380 -404 0 + -380 -409 0 + -388 -404 0 + -388 -409 0 + -404 -409 0 + -383 -389 0 + -383 -395 0 + -383 -400 0 + -383 -413 0 + -389 -395 0 + -389 -400 0 + -389 -413 0 + -395 -400 0 + -395 -413 0 + -400 -413 0 + -381 -390 0 + -381 -417 0 + -381 -421 0 + -390 -417 0 + -390 -421 0 + -417 -421 0 + -384 -391 0 + -384 -401 0 + -384 -405 0 + -391 -401 0 + -391 -405 0 + -401 -405 0 + -422 -425 0 + -422 -430 0 + -422 -433 0 + -422 -437 0 + -422 -445 0 + -425 -430 0 + -425 -433 0 + -425 -437 0 + -425 -445 0 + -430 -433 0 + -430 -437 0 + -430 -445 0 + -433 -437 0 + -433 -445 0 + -437 -445 0 + -423 -434 0 + -423 -441 0 + -423 -446 0 + -434 -441 0 + -434 -446 0 + -441 -446 0 + -438 -442 0 + -438 -447 0 + -442 -447 0 + -426 -443 0 + -426 -448 0 + -443 -448 0 + -427 -431 0 + -427 -435 0 + -427 -439 0 + -427 -444 0 + -431 -435 0 + -431 -439 0 + -431 -444 0 + -435 -439 0 + -435 -444 0 + -439 -444 0 + -428 -432 0 + -428 -440 0 + -432 -440 0 + -424 -429 0 + -424 -436 0 + -429 -436 0 + -470 -482 0 + -470 -486 0 + -470 -492 0 + -470 -497 0 + -482 -486 0 + -482 -492 0 + -482 -497 0 + -486 -492 0 + -486 -497 0 + -492 -497 0 + -465 -471 0 + -465 -478 0 + -465 -483 0 + -465 -498 0 + -471 -478 0 + -471 -483 0 + -471 -498 0 + -478 -483 0 + -478 -498 0 + -483 -498 0 + -449 -455 0 + -449 -460 0 + -449 -472 0 + -449 -487 0 + -455 -460 0 + -455 -472 0 + -455 -487 0 + -460 -472 0 + -460 -487 0 + -472 -487 0 + -461 -466 0 + -461 -473 0 + -461 -484 0 + -461 -499 0 + -466 -473 0 + -466 -484 0 + -466 -499 0 + -473 -484 0 + -473 -499 0 + -484 -499 0 + -467 -474 0 + -467 -479 0 + -467 -488 0 + -467 -493 0 + -474 -479 0 + -474 -488 0 + -474 -493 0 + -479 -488 0 + -479 -493 0 + -488 -493 0 + -450 -456 0 + -450 -475 0 + -450 -480 0 + -450 -494 0 + -450 -500 0 + -456 -475 0 + -456 -480 0 + -456 -494 0 + -456 -500 0 + -475 -480 0 + -475 -494 0 + -475 -500 0 + -480 -494 0 + -480 -500 0 + -494 -500 0 + -451 -462 0 + -451 -476 0 + -451 -485 0 + -451 -489 0 + -451 -501 0 + -462 -476 0 + -462 -485 0 + -462 -489 0 + -462 -501 0 + -476 -485 0 + -476 -489 0 + -476 -501 0 + -485 -489 0 + -485 -501 0 + -489 -501 0 + -452 -457 0 + -452 -463 0 + -452 -495 0 + -452 -502 0 + -457 -463 0 + -457 -495 0 + -457 -502 0 + -463 -495 0 + -463 -502 0 + -495 -502 0 + -453 -458 0 + -453 -464 0 + -453 -468 0 + -453 -477 0 + -453 -481 0 + -453 -490 0 + -453 -496 0 + -453 -503 0 + -458 -464 0 + -458 -468 0 + -458 -477 0 + -458 -481 0 + -458 -490 0 + -458 -496 0 + -458 -503 0 + -464 -468 0 + -464 -477 0 + -464 -481 0 + -464 -490 0 + -464 -496 0 + -464 -503 0 + -468 -477 0 + -468 -481 0 + -468 -490 0 + -468 -496 0 + -468 -503 0 + -477 -481 0 + -477 -490 0 + -477 -496 0 + -477 -503 0 + -481 -490 0 + -481 -496 0 + -481 -503 0 + -490 -496 0 + -490 -503 0 + -496 -503 0 + -454 -459 0 + -454 -469 0 + -454 -491 0 + -459 -469 0 + -459 -491 0 + -469 -491 0 + -504 -522 0 + -504 -536 0 + -504 -542 0 + -504 -553 0 + -504 -558 0 + -504 -565 0 + -522 -536 0 + -522 -542 0 + -522 -553 0 + -522 -558 0 + -522 -565 0 + -536 -542 0 + -536 -553 0 + -536 -558 0 + -536 -565 0 + -542 -553 0 + -542 -558 0 + -542 -565 0 + -553 -558 0 + -553 -565 0 + -558 -565 0 + -505 -523 0 + -505 -529 0 + -505 -537 0 + -505 -548 0 + -505 -554 0 + -505 -566 0 + -505 -569 0 + -523 -529 0 + -523 -537 0 + -523 -548 0 + -523 -554 0 + -523 -566 0 + -523 -569 0 + -529 -537 0 + -529 -548 0 + -529 -554 0 + -529 -566 0 + -529 -569 0 + -537 -548 0 + -537 -554 0 + -537 -566 0 + -537 -569 0 + -548 -554 0 + -548 -566 0 + -548 -569 0 + -554 -566 0 + -554 -569 0 + -566 -569 0 + -506 -515 0 + -506 -538 0 + -506 -543 0 + -515 -538 0 + -515 -543 0 + -538 -543 0 + -507 -509 0 + -507 -524 0 + -507 -530 0 + -507 -544 0 + -507 -549 0 + -507 -559 0 + -507 -570 0 + -509 -524 0 + -509 -530 0 + -509 -544 0 + -509 -549 0 + -509 -559 0 + -509 -570 0 + -524 -530 0 + -524 -544 0 + -524 -549 0 + -524 -559 0 + -524 -570 0 + -530 -544 0 + -530 -549 0 + -530 -559 0 + -530 -570 0 + -544 -549 0 + -544 -559 0 + -544 -570 0 + -549 -559 0 + -549 -570 0 + -559 -570 0 + -531 -539 0 + -531 -550 0 + -531 -560 0 + -539 -550 0 + -539 -560 0 + -550 -560 0 + -510 -516 0 + -510 -525 0 + -510 -540 0 + -510 -545 0 + -510 -555 0 + -510 -567 0 + -516 -525 0 + -516 -540 0 + -516 -545 0 + -516 -555 0 + -516 -567 0 + -525 -540 0 + -525 -545 0 + -525 -555 0 + -525 -567 0 + -540 -545 0 + -540 -555 0 + -540 -567 0 + -545 -555 0 + -545 -567 0 + -555 -567 0 + -511 -517 0 + -511 -526 0 + -511 -546 0 + -511 -561 0 + -511 -568 0 + -517 -526 0 + -517 -546 0 + -517 -561 0 + -517 -568 0 + -526 -546 0 + -526 -561 0 + -526 -568 0 + -546 -561 0 + -546 -568 0 + -561 -568 0 + -518 -527 0 + -518 -532 0 + -518 -562 0 + -518 -571 0 + -527 -532 0 + -527 -562 0 + -527 -571 0 + -532 -562 0 + -532 -571 0 + -562 -571 0 + -512 -519 0 + -512 -533 0 + -512 -541 0 + -512 -551 0 + -512 -556 0 + -512 -563 0 + -512 -572 0 + -519 -533 0 + -519 -541 0 + -519 -551 0 + -519 -556 0 + -519 -563 0 + -519 -572 0 + -533 -541 0 + -533 -551 0 + -533 -556 0 + -533 -563 0 + -533 -572 0 + -541 -551 0 + -541 -556 0 + -541 -563 0 + -541 -572 0 + -551 -556 0 + -551 -563 0 + -551 -572 0 + -556 -563 0 + -556 -572 0 + -563 -572 0 + -520 -534 0 + -520 -573 0 + -534 -573 0 + -513 -528 0 + -513 -535 0 + -513 -552 0 + -513 -564 0 + -528 -535 0 + -528 -552 0 + -528 -564 0 + -535 -552 0 + -535 -564 0 + -552 -564 0 + -508 -514 0 + -508 -521 0 + -508 -547 0 + -508 -557 0 + -514 -521 0 + -514 -547 0 + -514 -557 0 + -521 -547 0 + -521 -557 0 + -547 -557 0 + -574 -590 0 + -574 -593 0 + -574 -598 0 + -590 -593 0 + -590 -598 0 + -593 -598 0 + -578 -585 0 + -578 -594 0 + -578 -605 0 + -585 -594 0 + -585 -605 0 + -594 -605 0 + -575 -579 0 + -575 -586 0 + -575 -602 0 + -575 -606 0 + -579 -586 0 + -579 -602 0 + -579 -606 0 + -586 -602 0 + -586 -606 0 + -602 -606 0 + -591 -599 0 + -582 -587 0 + -582 -595 0 + -582 -607 0 + -587 -595 0 + -587 -607 0 + -595 -607 0 + -576 -603 0 + -576 -608 0 + -603 -608 0 + -577 -580 0 + -577 -592 0 + -577 -600 0 + -577 -609 0 + -580 -592 0 + -580 -600 0 + -580 -609 0 + -592 -600 0 + -592 -609 0 + -600 -609 0 + -583 -588 0 + -583 -596 0 + -583 -601 0 + -583 -604 0 + -588 -596 0 + -588 -601 0 + -588 -604 0 + -596 -601 0 + -596 -604 0 + -601 -604 0 + -581 -584 0 + -581 -589 0 + -581 -597 0 + -581 -610 0 + -584 -589 0 + -584 -597 0 + -584 -610 0 + -589 -597 0 + -589 -610 0 + -597 -610 0 + -611 -626 0 + -611 -645 0 + -611 -650 0 + -611 -657 0 + -611 -661 0 + -626 -645 0 + -626 -650 0 + -626 -657 0 + -626 -661 0 + -645 -650 0 + -645 -657 0 + -645 -661 0 + -650 -657 0 + -650 -661 0 + -657 -661 0 + -612 -627 0 + -612 -638 0 + -612 -651 0 + -612 -658 0 + -612 -662 0 + -627 -638 0 + -627 -651 0 + -627 -658 0 + -627 -662 0 + -638 -651 0 + -638 -658 0 + -638 -662 0 + -651 -658 0 + -651 -662 0 + -658 -662 0 + -613 -618 0 + -613 -628 0 + -613 -646 0 + -613 -666 0 + -618 -628 0 + -618 -646 0 + -618 -666 0 + -628 -646 0 + -628 -666 0 + -646 -666 0 + -614 -632 0 + -614 -639 0 + -614 -647 0 + -614 -667 0 + -632 -639 0 + -632 -647 0 + -632 -667 0 + -639 -647 0 + -639 -667 0 + -647 -667 0 + -615 -629 0 + -615 -633 0 + -615 -640 0 + -615 -652 0 + -615 -663 0 + -629 -633 0 + -629 -640 0 + -629 -652 0 + -629 -663 0 + -633 -640 0 + -633 -652 0 + -633 -663 0 + -640 -652 0 + -640 -663 0 + -652 -663 0 + -641 -659 0 + -641 -668 0 + -659 -668 0 + -616 -622 0 + -616 -642 0 + -616 -653 0 + -616 -664 0 + -622 -642 0 + -622 -653 0 + -622 -664 0 + -642 -653 0 + -642 -664 0 + -653 -664 0 + -619 -623 0 + -619 -630 0 + -619 -634 0 + -619 -648 0 + -619 -660 0 + -619 -665 0 + -623 -630 0 + -623 -634 0 + -623 -648 0 + -623 -660 0 + -623 -665 0 + -630 -634 0 + -630 -648 0 + -630 -660 0 + -630 -665 0 + -634 -648 0 + -634 -660 0 + -634 -665 0 + -648 -660 0 + -648 -665 0 + -660 -665 0 + -631 -635 0 + -631 -643 0 + -631 -654 0 + -635 -643 0 + -635 -654 0 + -643 -654 0 + -620 -624 0 + -620 -636 0 + -620 -644 0 + -620 -655 0 + -624 -636 0 + -624 -644 0 + -624 -655 0 + -636 -644 0 + -636 -655 0 + -644 -655 0 + -617 -621 0 + -617 -625 0 + -617 -637 0 + -617 -649 0 + -617 -656 0 + -621 -625 0 + -621 -637 0 + -621 -649 0 + -621 -656 0 + -625 -637 0 + -625 -649 0 + -625 -656 0 + -637 -649 0 + -637 -656 0 + -649 -656 0 + -669 -674 0 + -670 -672 0 + -670 -676 0 + -672 -676 0 + -673 -677 0 + -671 -675 0 + -671 -678 0 + -675 -678 0 + -679 -686 0 + -679 -692 0 + -679 -700 0 + -679 -706 0 + -686 -692 0 + -686 -700 0 + -686 -706 0 + -692 -700 0 + -692 -706 0 + -700 -706 0 + -693 -696 0 + -693 -701 0 + -693 -716 0 + -696 -701 0 + -696 -716 0 + -701 -716 0 + -680 -687 0 + -680 -697 0 + -680 -702 0 + -680 -711 0 + -680 -717 0 + -687 -697 0 + -687 -702 0 + -687 -711 0 + -687 -717 0 + -697 -702 0 + -697 -711 0 + -697 -717 0 + -702 -711 0 + -702 -717 0 + -711 -717 0 + -682 -688 0 + -682 -703 0 + -682 -712 0 + -688 -703 0 + -688 -712 0 + -703 -712 0 + -683 -698 0 + -683 -707 0 + -683 -713 0 + -698 -707 0 + -698 -713 0 + -707 -713 0 + -681 -694 0 + -681 -699 0 + -681 -708 0 + -681 -718 0 + -694 -699 0 + -694 -708 0 + -694 -718 0 + -699 -708 0 + -699 -718 0 + -708 -718 0 + -689 -695 0 + -689 -704 0 + -689 -714 0 + -695 -704 0 + -695 -714 0 + -704 -714 0 + -684 -690 0 + -684 -709 0 + -690 -709 0 + -685 -691 0 + -685 -705 0 + -685 -710 0 + -685 -715 0 + -685 -719 0 + -691 -705 0 + -691 -710 0 + -691 -715 0 + -691 -719 0 + -705 -710 0 + -705 -715 0 + -705 -719 0 + -710 -715 0 + -710 -719 0 + -715 -719 0 + -720 -737 0 + -720 -743 0 + -720 -754 0 + -720 -761 0 + -720 -766 0 + -720 -773 0 + -737 -743 0 + -737 -754 0 + -737 -761 0 + -737 -766 0 + -737 -773 0 + -743 -754 0 + -743 -761 0 + -743 -766 0 + -743 -773 0 + -754 -761 0 + -754 -766 0 + -754 -773 0 + -761 -766 0 + -761 -773 0 + -766 -773 0 + -721 -731 0 + -721 -738 0 + -721 -749 0 + -721 -755 0 + -721 -771 0 + -731 -738 0 + -731 -749 0 + -731 -755 0 + -731 -771 0 + -738 -749 0 + -738 -755 0 + -738 -771 0 + -749 -755 0 + -749 -771 0 + -755 -771 0 + -726 -739 0 + -726 -744 0 + -726 -762 0 + -739 -744 0 + -739 -762 0 + -744 -762 0 + -727 -732 0 + -727 -745 0 + -727 -750 0 + -732 -745 0 + -732 -750 0 + -745 -750 0 + -728 -733 0 + -728 -740 0 + -728 -751 0 + -728 -763 0 + -728 -767 0 + -728 -774 0 + -733 -740 0 + -733 -751 0 + -733 -763 0 + -733 -767 0 + -733 -774 0 + -740 -751 0 + -740 -763 0 + -740 -767 0 + -740 -774 0 + -751 -763 0 + -751 -767 0 + -751 -774 0 + -763 -767 0 + -763 -774 0 + -767 -774 0 + -722 -729 0 + -722 -734 0 + -722 -752 0 + -722 -756 0 + -722 -764 0 + -722 -768 0 + -729 -734 0 + -729 -752 0 + -729 -756 0 + -729 -764 0 + -729 -768 0 + -734 -752 0 + -734 -756 0 + -734 -764 0 + -734 -768 0 + -752 -756 0 + -752 -764 0 + -752 -768 0 + -756 -764 0 + -756 -768 0 + -764 -768 0 + -723 -730 0 + -723 -746 0 + -723 -769 0 + -730 -746 0 + -730 -769 0 + -746 -769 0 + -724 -741 0 + -724 -747 0 + -724 -757 0 + -724 -775 0 + -741 -747 0 + -741 -757 0 + -741 -775 0 + -747 -757 0 + -747 -775 0 + -757 -775 0 + -735 -758 0 + -735 -765 0 + -758 -765 0 + -725 -736 0 + -725 -742 0 + -725 -753 0 + -725 -759 0 + -725 -770 0 + -725 -772 0 + -736 -742 0 + -736 -753 0 + -736 -759 0 + -736 -770 0 + -736 -772 0 + -742 -753 0 + -742 -759 0 + -742 -770 0 + -742 -772 0 + -753 -759 0 + -753 -770 0 + -753 -772 0 + -759 -770 0 + -759 -772 0 + -770 -772 0 + -748 -760 0 + -776 -787 0 + -776 -798 0 + -776 -803 0 + -776 -809 0 + -776 -818 0 + -787 -798 0 + -787 -803 0 + -787 -809 0 + -787 -818 0 + -798 -803 0 + -798 -809 0 + -798 -818 0 + -803 -809 0 + -803 -818 0 + -809 -818 0 + -777 -791 0 + -777 -799 0 + -777 -810 0 + -777 -822 0 + -791 -799 0 + -791 -810 0 + -791 -822 0 + -799 -810 0 + -799 -822 0 + -810 -822 0 + -778 -781 0 + -778 -788 0 + -778 -792 0 + -778 -814 0 + -778 -819 0 + -778 -823 0 + -781 -788 0 + -781 -792 0 + -781 -814 0 + -781 -819 0 + -781 -823 0 + -788 -792 0 + -788 -814 0 + -788 -819 0 + -788 -823 0 + -792 -814 0 + -792 -819 0 + -792 -823 0 + -814 -819 0 + -814 -823 0 + -819 -823 0 + -779 -793 0 + -779 -824 0 + -793 -824 0 + -782 -789 0 + -782 -794 0 + -782 -800 0 + -782 -804 0 + -782 -811 0 + -789 -794 0 + -789 -800 0 + -789 -804 0 + -789 -811 0 + -794 -800 0 + -794 -804 0 + -794 -811 0 + -800 -804 0 + -800 -811 0 + -804 -811 0 + -780 -783 0 + -780 -795 0 + -780 -801 0 + -780 -805 0 + -780 -812 0 + -780 -825 0 + -783 -795 0 + -783 -801 0 + -783 -805 0 + -783 -812 0 + -783 -825 0 + -795 -801 0 + -795 -805 0 + -795 -812 0 + -795 -825 0 + -801 -805 0 + -801 -812 0 + -801 -825 0 + -805 -812 0 + -805 -825 0 + -812 -825 0 + -784 -806 0 + -785 -796 0 + -785 -802 0 + -785 -807 0 + -785 -815 0 + -785 -820 0 + -796 -802 0 + -796 -807 0 + -796 -815 0 + -796 -820 0 + -802 -807 0 + -802 -815 0 + -802 -820 0 + -807 -815 0 + -807 -820 0 + -815 -820 0 + -797 -808 0 + -797 -816 0 + -797 -821 0 + -808 -816 0 + -808 -821 0 + -816 -821 0 + -786 -790 0 + -786 -813 0 + -786 -817 0 + -786 -826 0 + -790 -813 0 + -790 -817 0 + -790 -826 0 + -813 -817 0 + -813 -826 0 + -817 -826 0 + -827 -830 0 + -827 -849 0 + -827 -852 0 + -827 -858 0 + -830 -849 0 + -830 -852 0 + -830 -858 0 + -849 -852 0 + -849 -858 0 + -852 -858 0 + -831 -833 0 + -831 -836 0 + -831 -842 0 + -831 -862 0 + -833 -836 0 + -833 -842 0 + -833 -862 0 + -836 -842 0 + -836 -862 0 + -842 -862 0 + -834 -837 0 + -834 -853 0 + -834 -859 0 + -837 -853 0 + -837 -859 0 + -853 -859 0 + -828 -843 0 + -828 -850 0 + -828 -854 0 + -828 -860 0 + -843 -850 0 + -843 -854 0 + -843 -860 0 + -850 -854 0 + -850 -860 0 + -854 -860 0 + -838 -844 0 + -838 -855 0 + -838 -861 0 + -838 -863 0 + -844 -855 0 + -844 -861 0 + -844 -863 0 + -855 -861 0 + -855 -863 0 + -861 -863 0 + -832 -839 0 + -832 -845 0 + -832 -864 0 + -839 -845 0 + -839 -864 0 + -845 -864 0 + -835 -840 0 + -835 -846 0 + -835 -851 0 + -835 -865 0 + -840 -846 0 + -840 -851 0 + -840 -865 0 + -846 -851 0 + -846 -865 0 + -851 -865 0 + -841 -847 0 + -841 -856 0 + -841 -866 0 + -847 -856 0 + -847 -866 0 + -856 -866 0 + -829 -848 0 + -829 -857 0 + -829 -867 0 + -848 -857 0 + -848 -867 0 + -857 -867 0 + -868 -880 0 + -868 -890 0 + -868 -895 0 + -880 -890 0 + -880 -895 0 + -890 -895 0 + -869 -881 0 + -869 -885 0 + -869 -899 0 + -881 -885 0 + -881 -899 0 + -885 -899 0 + -870 -872 0 + -870 -875 0 + -870 -882 0 + -870 -886 0 + -870 -900 0 + -872 -875 0 + -872 -882 0 + -872 -886 0 + -872 -900 0 + -875 -882 0 + -875 -886 0 + -875 -900 0 + -882 -886 0 + -882 -900 0 + -886 -900 0 + -876 -887 0 + -876 -901 0 + -887 -901 0 + -873 -877 0 + -873 -883 0 + -873 -888 0 + -873 -891 0 + -873 -896 0 + -877 -883 0 + -877 -888 0 + -877 -891 0 + -877 -896 0 + -883 -888 0 + -883 -891 0 + -883 -896 0 + -888 -891 0 + -888 -896 0 + -891 -896 0 + -871 -874 0 + -871 -892 0 + -871 -897 0 + -874 -892 0 + -874 -897 0 + -892 -897 0 + -878 -884 0 + -878 -889 0 + -878 -893 0 + -878 -898 0 + -878 -902 0 + -884 -889 0 + -884 -893 0 + -884 -898 0 + -884 -902 0 + -889 -893 0 + -889 -898 0 + -889 -902 0 + -893 -898 0 + -893 -902 0 + -898 -902 0 + -879 -894 0 + -903 -910 0 + -903 -917 0 + -903 -926 0 + -903 -930 0 + -903 -933 0 + -910 -917 0 + -910 -926 0 + -910 -930 0 + -910 -933 0 + -917 -926 0 + -917 -930 0 + -917 -933 0 + -926 -930 0 + -926 -933 0 + -930 -933 0 + -904 -911 0 + -904 -918 0 + -904 -922 0 + -904 -934 0 + -911 -918 0 + -911 -922 0 + -911 -934 0 + -918 -922 0 + -918 -934 0 + -922 -934 0 + -905 -919 0 + -905 -923 0 + -905 -927 0 + -919 -923 0 + -919 -927 0 + -923 -927 0 + -906 -912 0 + -906 -914 0 + -906 -924 0 + -912 -914 0 + -912 -924 0 + -914 -924 0 + -907 -913 0 + -907 -915 0 + -907 -920 0 + -907 -935 0 + -913 -915 0 + -913 -920 0 + -913 -935 0 + -915 -920 0 + -915 -935 0 + -920 -935 0 + -916 -921 0 + -916 -928 0 + -916 -936 0 + -921 -928 0 + -921 -936 0 + -928 -936 0 + -908 -925 0 + -908 -929 0 + -908 -931 0 + -908 -937 0 + -925 -929 0 + -925 -931 0 + -925 -937 0 + -929 -931 0 + -929 -937 0 + -931 -937 0 + -909 -932 0 + -938 -944 0 + -938 -947 0 + -938 -952 0 + -938 -970 0 + -938 -974 0 + -938 -983 0 + -938 -988 0 + -944 -947 0 + -944 -952 0 + -944 -970 0 + -944 -974 0 + -944 -983 0 + -944 -988 0 + -947 -952 0 + -947 -970 0 + -947 -974 0 + -947 -983 0 + -947 -988 0 + -952 -970 0 + -952 -974 0 + -952 -983 0 + -952 -988 0 + -970 -974 0 + -970 -983 0 + -970 -988 0 + -974 -983 0 + -974 -988 0 + -983 -988 0 + -939 -953 0 + -939 -971 0 + -939 -975 0 + -939 -978 0 + -939 -984 0 + -953 -971 0 + -953 -975 0 + -953 -978 0 + -953 -984 0 + -971 -975 0 + -971 -978 0 + -971 -984 0 + -975 -978 0 + -975 -984 0 + -978 -984 0 + -940 -945 0 + -940 -954 0 + -940 -959 0 + -940 -964 0 + -940 -972 0 + -945 -954 0 + -945 -959 0 + -945 -964 0 + -945 -972 0 + -954 -959 0 + -954 -964 0 + -954 -972 0 + -959 -964 0 + -959 -972 0 + -964 -972 0 + -941 -955 0 + -941 -979 0 + -955 -979 0 + -948 -956 0 + -948 -960 0 + -948 -976 0 + -948 -989 0 + -956 -960 0 + -956 -976 0 + -956 -989 0 + -960 -976 0 + -960 -989 0 + -976 -989 0 + -942 -949 0 + -942 -957 0 + -942 -965 0 + -949 -957 0 + -949 -965 0 + -957 -965 0 + -946 -950 0 + -946 -961 0 + -946 -977 0 + -946 -990 0 + -950 -961 0 + -950 -977 0 + -950 -990 0 + -961 -977 0 + -961 -990 0 + -977 -990 0 + -962 -966 0 + -962 -980 0 + -962 -985 0 + -966 -980 0 + -966 -985 0 + -980 -985 0 + -951 -963 0 + -951 -967 0 + -951 -973 0 + -951 -981 0 + -963 -967 0 + -963 -973 0 + -963 -981 0 + -967 -973 0 + -967 -981 0 + -973 -981 0 + -943 -968 0 + -943 -986 0 + -943 -991 0 + -968 -986 0 + -968 -991 0 + -986 -991 0 + -958 -969 0 + -958 -982 0 + -958 -987 0 + -958 -992 0 + -969 -982 0 + -969 -987 0 + -969 -992 0 + -982 -987 0 + -982 -992 0 + -987 -992 0 + -1001 -1013 0 + -993 -997 0 + -993 -1014 0 + -993 -1022 0 + -997 -1014 0 + -997 -1022 0 + -1014 -1022 0 + -994 -1006 0 + -994 -1015 0 + -1006 -1015 0 + -1002 -1007 0 + -1002 -1016 0 + -1002 -1018 0 + -1002 -1029 0 + -1002 -1032 0 + -1007 -1016 0 + -1007 -1018 0 + -1007 -1029 0 + -1007 -1032 0 + -1016 -1018 0 + -1016 -1029 0 + -1016 -1032 0 + -1018 -1029 0 + -1018 -1032 0 + -1029 -1032 0 + -998 -1003 0 + -998 -1024 0 + -998 -1030 0 + -998 -1033 0 + -1003 -1024 0 + -1003 -1030 0 + -1003 -1033 0 + -1024 -1030 0 + -1024 -1033 0 + -1030 -1033 0 + -995 -999 0 + -995 -1008 0 + -995 -1025 0 + -995 -1031 0 + -999 -1008 0 + -999 -1025 0 + -999 -1031 0 + -1008 -1025 0 + -1008 -1031 0 + -1025 -1031 0 + -1004 -1009 0 + -1004 -1019 0 + -1009 -1019 0 + -1000 -1010 0 + -1000 -1017 0 + -1000 -1020 0 + -1000 -1026 0 + -1010 -1017 0 + -1010 -1020 0 + -1010 -1026 0 + -1017 -1020 0 + -1017 -1026 0 + -1020 -1026 0 + -1011 -1021 0 + -1011 -1027 0 + -1021 -1027 0 + -996 -1005 0 + -996 -1012 0 + -996 -1023 0 + -996 -1028 0 + -1005 -1012 0 + -1005 -1023 0 + -1005 -1028 0 + -1012 -1023 0 + -1012 -1028 0 + -1023 -1028 0 + -1034 -1049 0 + -1034 -1058 0 + -1034 -1066 0 + -1034 -1073 0 + -1049 -1058 0 + -1049 -1066 0 + -1049 -1073 0 + -1058 -1066 0 + -1058 -1073 0 + -1066 -1073 0 + -1035 -1050 0 + -1035 -1061 0 + -1035 -1074 0 + -1050 -1061 0 + -1050 -1074 0 + -1061 -1074 0 + -1039 -1059 0 + -1039 -1062 0 + -1039 -1075 0 + -1059 -1062 0 + -1059 -1075 0 + -1062 -1075 0 + -1044 -1051 0 + -1044 -1054 0 + -1044 -1063 0 + -1044 -1067 0 + -1044 -1076 0 + -1051 -1054 0 + -1051 -1063 0 + -1051 -1067 0 + -1051 -1076 0 + -1054 -1063 0 + -1054 -1067 0 + -1054 -1076 0 + -1063 -1067 0 + -1063 -1076 0 + -1067 -1076 0 + -1040 -1045 0 + -1040 -1052 0 + -1040 -1068 0 + -1045 -1052 0 + -1045 -1068 0 + -1052 -1068 0 + -1036 -1041 0 + -1036 -1046 0 + -1036 -1060 0 + -1036 -1064 0 + -1036 -1069 0 + -1041 -1046 0 + -1041 -1060 0 + -1041 -1064 0 + -1041 -1069 0 + -1046 -1060 0 + -1046 -1064 0 + -1046 -1069 0 + -1060 -1064 0 + -1060 -1069 0 + -1064 -1069 0 + -1037 -1042 0 + -1037 -1047 0 + -1037 -1053 0 + -1037 -1055 0 + -1037 -1070 0 + -1042 -1047 0 + -1042 -1053 0 + -1042 -1055 0 + -1042 -1070 0 + -1047 -1053 0 + -1047 -1055 0 + -1047 -1070 0 + -1053 -1055 0 + -1053 -1070 0 + -1055 -1070 0 + -1038 -1056 0 + -1038 -1071 0 + -1038 -1077 0 + -1056 -1071 0 + -1056 -1077 0 + -1071 -1077 0 + -1043 -1048 0 + -1043 -1057 0 + -1043 -1065 0 + -1043 -1072 0 + -1048 -1057 0 + -1048 -1065 0 + -1048 -1072 0 + -1057 -1065 0 + -1057 -1072 0 + -1065 -1072 0 + 1 2 3 4 5 6 7 0 + 8 9 10 11 12 0 + 13 14 15 16 0 + 17 18 19 20 21 22 23 0 + 24 25 26 27 0 + 28 29 30 31 0 + 32 33 34 35 36 0 + 37 38 39 40 0 + 41 42 43 44 0 + 45 46 47 48 49 0 + 50 51 52 53 0 + 54 55 56 0 + 57 58 59 0 + 60 61 62 63 64 0 + 65 66 67 68 0 + 69 70 71 72 0 + 73 74 75 76 0 + 77 78 79 80 81 82 0 + 83 84 0 + 85 86 87 88 89 0 + 90 91 92 93 94 0 + 95 96 97 98 99 0 + 100 101 102 0 + 103 104 105 106 107 108 109 0 + 110 111 112 113 114 0 + 115 116 117 118 119 120 121 122 123 0 + 124 125 126 127 128 129 0 + 130 131 132 133 0 + 134 135 136 137 138 139 140 0 + 141 142 143 144 145 146 147 0 + 148 149 150 151 152 153 154 0 + 155 156 157 158 159 160 0 + 161 162 163 164 165 0 + 166 167 168 169 0 + 170 171 172 173 174 175 176 177 178 0 + 179 180 181 182 183 184 0 + 185 186 187 188 189 190 0 + 191 192 193 194 195 196 197 198 0 + 199 200 201 202 203 204 0 + 205 206 207 208 209 210 0 + 211 212 213 214 0 + 215 216 217 218 219 220 221 222 223 0 + 224 225 226 227 228 229 230 0 + 231 232 233 234 235 236 0 + 237 238 239 240 0 + 241 242 243 244 245 0 + 246 247 248 249 250 251 0 + 252 253 254 255 256 0 + 257 258 259 260 261 262 263 264 265 0 + 266 267 268 269 270 0 + 271 272 273 274 275 276 277 0 + 278 279 280 281 282 0 + 283 284 285 286 287 288 289 0 + 290 291 292 293 294 0 + 295 296 297 298 299 300 0 + 301 302 303 304 305 0 + 306 307 308 309 310 311 312 0 + 313 314 315 316 317 0 + 318 319 320 321 322 323 0 + 324 325 326 327 328 329 0 + 330 331 332 333 334 335 336 337 338 0 + 339 340 341 342 343 344 345 0 + 346 347 348 349 350 351 0 + 352 353 354 355 356 357 358 0 + 359 360 361 362 363 0 + 364 365 366 367 368 369 370 0 + 371 372 373 374 375 0 + 376 377 378 379 380 381 0 + 382 383 384 0 + 385 386 387 388 389 390 391 0 + 392 393 394 395 0 + 396 397 398 399 400 401 0 + 402 403 404 405 0 + 406 407 408 409 0 + 410 411 412 413 0 + 414 415 416 417 0 + 418 419 420 421 0 + 422 423 424 0 + 425 426 427 428 429 0 + 430 431 432 0 + 433 434 435 436 0 + 437 438 439 440 0 + 441 442 443 444 0 + 445 446 447 448 0 + 449 450 451 452 453 454 0 + 455 456 457 458 459 0 + 460 461 462 463 464 0 + 465 466 467 468 469 0 + 470 471 472 473 474 475 476 477 0 + 478 479 480 481 0 + 482 483 484 485 0 + 486 487 488 489 490 491 0 + 492 493 494 495 496 0 + 497 498 499 500 501 502 503 0 + 504 505 506 507 508 0 + 509 510 511 512 513 514 0 + 515 516 517 518 519 520 521 0 + 522 523 524 525 526 527 528 0 + 529 530 531 532 533 534 535 0 + 536 537 538 539 540 541 0 + 542 543 544 545 546 547 0 + 548 549 550 551 552 0 + 553 554 555 556 557 0 + 558 559 560 561 562 563 564 0 + 565 566 567 568 0 + 569 570 571 572 573 0 + 574 575 576 577 0 + 578 579 580 581 0 + 582 583 584 0 + 585 586 587 588 589 0 + 590 591 592 0 + 593 594 595 596 597 0 + 598 599 600 601 0 + 602 603 604 0 + 605 606 607 608 609 610 0 + 611 612 613 614 615 616 617 0 + 618 619 620 621 0 + 622 623 624 625 0 + 626 627 628 629 630 631 0 + 632 633 634 635 636 637 0 + 638 639 640 641 642 643 644 0 + 645 646 647 648 649 0 + 650 651 652 653 654 655 656 0 + 657 658 659 660 0 + 661 662 663 664 665 0 + 666 667 668 0 + 669 670 671 0 + 672 673 0 + 674 675 0 + 676 677 678 0 + 679 680 681 0 + 682 683 684 685 0 + 686 687 688 689 690 691 0 + 692 693 694 695 0 + 696 697 698 699 0 + 700 701 702 703 704 705 0 + 706 707 708 709 710 0 + 711 712 713 714 715 0 + 716 717 718 719 0 + 720 721 722 723 724 725 0 + 726 727 728 729 730 0 + 731 732 733 734 735 736 0 + 737 738 739 740 741 742 0 + 743 744 745 746 747 748 0 + 749 750 751 752 753 0 + 754 755 756 757 758 759 760 0 + 761 762 763 764 765 0 + 766 767 768 769 770 0 + 771 772 0 + 773 774 775 0 + 776 777 778 779 780 0 + 781 782 783 784 785 786 0 + 787 788 789 790 0 + 791 792 793 794 795 796 797 0 + 798 799 800 801 802 0 + 803 804 805 806 807 808 0 + 809 810 811 812 813 0 + 814 815 816 817 0 + 818 819 820 821 0 + 822 823 824 825 826 0 + 827 828 829 0 + 830 831 832 0 + 833 834 835 0 + 836 837 838 839 840 841 0 + 842 843 844 845 846 847 848 0 + 849 850 851 0 + 852 853 854 855 856 857 0 + 858 859 860 861 0 + 862 863 864 865 866 867 0 + 868 869 870 871 0 + 872 873 874 0 + 875 876 877 878 879 0 + 880 881 882 883 884 0 + 885 886 887 888 889 0 + 890 891 892 893 894 0 + 895 896 897 898 0 + 899 900 901 902 0 + 903 904 905 906 907 908 909 0 + 910 911 912 913 0 + 914 915 916 0 + 917 918 919 920 921 0 + 922 923 924 925 0 + 926 927 928 929 0 + 930 931 932 0 + 933 934 935 936 937 0 + 938 939 940 941 942 943 0 + 944 945 946 0 + 947 948 949 950 951 0 + 952 953 954 955 956 957 958 0 + 959 960 961 962 963 0 + 964 965 966 967 968 969 0 + 970 971 972 973 0 + 974 975 976 977 0 + 978 979 980 981 982 0 + 983 984 985 986 987 0 + 988 989 990 991 992 0 + 993 994 995 996 0 + 997 998 999 1000 0 + 1001 1002 1003 1004 1005 0 + 1006 1007 1008 1009 1010 1011 1012 0 + 1013 1014 1015 1016 1017 0 + 1018 1019 1020 1021 0 + 1022 1023 0 + 1024 1025 1026 1027 1028 0 + 1029 1030 1031 0 + 1032 1033 0 + 1034 1035 1036 1037 1038 0 + 1039 1040 1041 1042 1043 0 + 1044 1045 1046 1047 1048 0 + 1049 1050 1051 1052 1053 0 + 1054 1055 1056 1057 0 + 1058 1059 1060 0 + 1061 1062 1063 1064 1065 0 + 1066 1067 1068 1069 1070 1071 1072 0 + 1073 1074 1075 1076 1077 0 + 1 77 134 215 611 827 903 938 0 + 50 135 216 612 868 904 0 + 78 295 613 869 905 939 0 + 2 51 79 136 376 870 0 + 3 137 217 296 377 614 906 0 + 4 218 297 378 615 907 940 0 + 52 80 219 298 379 941 0 + 138 220 299 380 616 828 871 908 0 + 5 139 221 381 909 942 0 + 53 81 140 222 0 + 6 82 829 943 0 + 7 223 300 617 0 + 141 224 504 830 910 944 0 + 142 225 505 679 776 911 0 + 143 422 506 777 0 + 144 226 423 507 680 778 831 0 + 145 227 779 912 0 + 228 913 945 0 + 146 229 681 780 946 0 + 147 832 0 + 230 424 508 0 + 83 148 231 574 720 947 1034 0 + 149 232 721 0 + 150 233 301 575 1035 0 + 151 234 302 722 1036 0 + 303 723 948 1037 0 + 152 235 576 949 0 + 84 153 236 304 577 724 950 1038 0 + 154 305 725 951 0 + 306 578 618 0 + 155 237 307 509 579 781 833 0 + 156 308 382 510 782 834 0 + 309 383 511 619 0 + 157 238 310 580 783 0 + 158 239 784 0 + 159 311 384 512 620 785 835 0 + 160 513 581 786 0 + 240 312 514 621 0 + 54 85 161 726 993 0 + 162 313 727 994 0 + 314 582 728 1039 0 + 86 163 315 1040 0 + 164 316 682 729 1041 0 + 55 317 683 730 1042 0 + 56 87 583 995 1043 0 + 88 684 0 + 89 165 584 685 996 0 + 385 425 449 515 872 997 0 + 241 318 386 450 998 1044 0 + 319 387 451 516 873 1045 0 + 242 320 388 622 874 1046 0 + 321 389 452 517 623 1047 0 + 243 390 426 518 0 + 244 427 453 999 1048 0 + 322 391 519 624 1000 0 + 428 454 520 0 + 245 323 429 521 625 0 + 8 246 522 626 952 1049 0 + 57 247 523 627 787 0 + 324 628 953 1001 0 + 9 248 325 524 788 1050 0 + 10 249 326 629 954 1002 0 + 58 250 327 669 955 1003 1051 0 + 328 525 789 1052 0 + 59 329 526 630 670 956 1053 0 + 11 251 527 957 0 + 12 631 1004 0 + 528 671 790 958 1005 0 + 13 60 166 392 430 455 0 + 14 167 252 393 0 + 61 253 394 456 1054 0 + 62 395 457 1055 0 + 168 254 1056 0 + 15 63 255 431 458 1057 0 + 64 169 256 0 + 16 432 459 0 + 90 396 433 460 791 875 0 + 330 434 792 836 876 0 + 331 397 632 793 914 0 + 332 398 461 633 915 959 0 + 91 333 399 462 794 837 877 916 0 + 334 400 463 634 672 960 0 + 92 335 673 795 878 961 0 + 93 435 464 838 962 0 + 635 839 879 0 + 336 401 636 796 840 963 0 + 94 337 797 841 0 + 338 436 637 0 + 65 170 257 465 529 638 686 731 0 + 17 171 258 339 530 687 842 0 + 18 172 259 340 639 732 1006 0 + 19 260 341 466 640 964 1007 0 + 261 342 467 531 641 733 0 + 173 262 343 642 688 734 843 0 + 20 174 263 532 965 0 + 21 66 95 264 468 844 966 1008 0 + 67 96 175 265 735 0 + 22 176 643 845 1009 0 + 177 344 533 644 689 736 846 967 1010 0 + 68 97 345 847 1011 0 + 23 98 469 534 690 848 968 0 + 99 178 535 691 969 1012 0 + 24 100 266 849 970 1058 0 + 101 346 971 1013 0 + 25 102 1014 0 + 26 267 347 1015 0 + 27 268 348 972 1016 0 + 269 349 1059 0 + 270 350 850 1060 0 + 351 851 973 1017 0 + 28 103 179 470 536 737 917 0 + 69 180 471 537 692 738 798 880 918 0 + 104 693 881 919 0 + 29 70 105 181 472 538 739 799 882 0 + 30 473 920 0 + 474 539 740 0 + 71 106 475 0 + 107 182 476 540 800 883 921 0 + 108 183 694 741 801 884 0 + 31 72 109 477 0 + 184 541 695 742 802 0 + 32 110 542 645 743 974 0 + 111 352 646 696 885 975 0 + 33 112 543 744 886 0 + 34 353 544 697 887 0 + 35 354 647 745 0 + 113 355 545 888 0 + 356 546 648 698 746 976 0 + 114 357 699 747 889 977 0 + 36 358 547 649 748 0 + 185 478 548 700 749 922 0 + 585 701 923 978 0 + 186 549 586 702 1061 0 + 187 750 924 0 + 479 550 587 751 1062 0 + 480 674 979 1063 0 + 188 703 752 925 1064 0 + 481 588 980 1065 0 + 189 551 704 753 981 0 + 190 552 589 675 705 982 0 + 191 271 482 553 590 650 754 0 + 192 272 483 554 651 755 803 890 0 + 273 402 484 591 652 1018 0 + 193 403 485 555 804 891 0 + 194 274 404 653 756 892 0 + 195 275 592 757 805 893 0 + 196 276 758 806 0 + 197 654 894 1019 0 + 198 405 556 655 759 807 1020 0 + 808 1021 0 + 277 557 656 760 0 + 37 115 486 593 761 852 926 983 0 + 116 359 594 927 984 0 + 38 117 406 437 487 762 0 + 360 407 438 488 595 763 0 + 118 361 408 489 853 928 0 + 362 409 764 854 929 0 + 39 119 439 490 596 855 985 0 + 120 765 0 + 121 363 856 0 + 40 122 440 491 857 986 0 + 123 597 987 0 + 124 199 657 988 0 + 200 658 706 809 0 + 125 201 410 810 1022 0 + 411 659 0 + 126 202 412 811 0 + 413 660 676 707 989 0 + 127 203 677 708 812 990 0 + 128 709 991 0 + 129 204 678 710 813 992 1023 0 + 41 205 492 558 766 930 0 + 42 206 364 441 559 711 814 0 + 365 442 493 560 767 0 + 366 494 1024 0 + 207 367 712 768 931 0 + 368 495 561 713 769 0 + 43 208 443 562 932 0 + 44 444 496 1025 0 + 209 369 563 714 770 815 1026 0 + 370 816 1027 0 + 210 564 715 817 1028 0 + 497 565 598 661 858 933 1066 0 + 498 566 662 895 934 0 + 499 599 663 935 1029 0 + 500 1030 1067 0 + 501 567 859 896 936 1068 0 + 664 860 897 937 1069 0 + 502 568 665 1070 0 + 600 898 1071 0 + 503 601 861 1031 1072 0 + 73 278 569 771 818 0 + 45 279 570 602 819 862 0 + 74 130 280 0 + 46 281 571 603 0 + 47 75 131 282 604 863 0 + 48 864 0 + 572 772 820 865 0 + 76 132 821 866 0 + 49 133 573 867 0 + 211 283 773 1073 0 + 212 284 371 1074 0 + 285 372 414 1032 0 + 286 373 415 774 1075 0 + 287 374 416 1033 1076 0 + 213 288 417 0 + 214 289 375 775 1077 0 + 605 666 716 899 0 + 418 445 822 900 0 + 290 446 606 717 823 901 0 + 291 419 667 824 0 + 292 420 447 607 668 0 + 293 421 448 608 0 + 294 609 718 825 902 0 + 610 719 826 0 + 1 8 24 28 32 37 41 0 + 2 13 25 29 33 38 0 + 9 17 34 42 45 0 + 3 14 18 26 35 0 + 4 10 19 27 30 0 + 5 11 20 43 46 0 + 15 21 31 39 44 47 0 + 12 22 48 0 + 6 16 23 40 49 0 + 7 36 0 + 50 57 65 69 73 0 + 51 54 60 70 0 + 52 58 61 71 74 0 + 55 59 62 0 + 56 63 66 72 75 0 + 53 64 67 0 + 68 76 0 + 77 83 100 103 110 115 124 0 + 78 101 104 111 116 0 + 79 85 90 102 105 112 117 125 0 + 80 106 130 0 + 86 91 107 113 118 126 0 + 84 92 108 114 127 0 + 87 93 95 109 119 131 0 + 81 96 120 0 + 94 97 121 132 0 + 82 88 98 122 128 133 0 + 89 99 123 129 0 + 134 141 148 179 191 199 205 211 0 + 135 142 149 170 180 185 192 200 0 + 136 143 161 166 181 201 0 + 144 150 155 171 186 206 212 0 + 137 145 162 167 172 187 0 + 156 163 182 193 202 0 + 138 151 164 173 188 194 207 0 + 139 152 174 208 213 0 + 146 153 157 168 183 195 203 214 0 + 140 158 169 175 196 0 + 147 176 197 0 + 154 159 177 184 189 198 209 0 + 160 165 178 190 204 210 0 + 215 224 231 246 266 271 283 0 + 216 225 232 247 257 272 278 0 + 226 233 237 248 258 279 284 290 0 + 217 227 252 259 267 291 0 + 218 228 249 260 268 273 285 0 + 261 269 286 292 0 + 219 241 250 253 280 287 0 + 220 234 242 262 270 274 0 + 221 235 243 251 263 281 288 293 0 + 229 236 238 254 275 289 294 0 + 244 255 264 282 0 + 222 239 256 265 276 0 + 223 230 240 245 277 0 + 295 306 324 346 352 359 0 + 301 307 325 330 339 353 364 371 0 + 296 313 331 340 347 354 0 + 297 326 332 341 348 372 0 + 314 342 349 360 365 373 0 + 298 318 327 366 374 0 + 308 315 319 328 333 355 361 0 + 299 302 316 320 343 350 362 367 0 + 303 309 317 321 329 334 356 368 0 + 304 310 335 357 375 0 + 305 311 322 336 344 351 369 0 + 337 345 363 370 0 + 300 312 323 338 358 0 + 376 385 392 396 406 410 418 0 + 377 393 397 419 0 + 378 398 402 414 0 + 407 411 415 420 0 + 379 386 394 416 0 + 382 387 399 403 408 412 0 + 380 388 404 409 0 + 383 389 395 400 413 0 + 381 390 417 421 0 + 384 391 401 405 0 + 422 425 430 433 437 445 0 + 423 434 441 446 0 + 438 442 447 0 + 426 443 448 0 + 427 431 435 439 444 0 + 428 432 440 0 + 424 429 436 0 + 470 482 486 492 497 0 + 465 471 478 483 498 0 + 449 455 460 472 487 0 + 461 466 473 484 499 0 + 467 474 479 488 493 0 + 450 456 475 480 494 500 0 + 451 462 476 485 489 501 0 + 452 457 463 495 502 0 + 453 458 464 468 477 481 490 496 503 0 + 454 459 469 491 0 + 504 522 536 542 553 558 565 0 + 505 523 529 537 548 554 566 569 0 + 506 515 538 543 0 + 507 509 524 530 544 549 559 570 0 + 531 539 550 560 0 + 510 516 525 540 545 555 567 0 + 511 517 526 546 561 568 0 + 518 527 532 562 571 0 + 512 519 533 541 551 556 563 572 0 + 520 534 573 0 + 513 528 535 552 564 0 + 508 514 521 547 557 0 + 574 590 593 598 0 + 578 585 594 605 0 + 575 579 586 602 606 0 + 591 599 0 + 582 587 595 607 0 + 576 603 608 0 + 577 580 592 600 609 0 + 583 588 596 601 604 0 + 581 584 589 597 610 0 + 611 626 645 650 657 661 0 + 612 627 638 651 658 662 0 + 613 618 628 646 666 0 + 614 632 639 647 667 0 + 615 629 633 640 652 663 0 + 641 659 668 0 + 616 622 642 653 664 0 + 619 623 630 634 648 660 665 0 + 631 635 643 654 0 + 620 624 636 644 655 0 + 617 621 625 637 649 656 0 + 669 674 0 + 670 672 676 0 + 673 677 0 + 671 675 678 0 + 679 686 692 700 706 0 + 693 696 701 716 0 + 680 687 697 702 711 717 0 + 682 688 703 712 0 + 683 698 707 713 0 + 681 694 699 708 718 0 + 689 695 704 714 0 + 684 690 709 0 + 685 691 705 710 715 719 0 + 720 737 743 754 761 766 773 0 + 721 731 738 749 755 771 0 + 726 739 744 762 0 + 727 732 745 750 0 + 728 733 740 751 763 767 774 0 + 722 729 734 752 756 764 768 0 + 723 730 746 769 0 + 724 741 747 757 775 0 + 735 758 765 0 + 725 736 742 753 759 770 772 0 + 748 760 0 + 776 787 798 803 809 818 0 + 777 791 799 810 822 0 + 778 781 788 792 814 819 823 0 + 779 793 824 0 + 782 789 794 800 804 811 0 + 780 783 795 801 805 812 825 0 + 784 806 0 + 785 796 802 807 815 820 0 + 797 808 816 821 0 + 786 790 813 817 826 0 + 827 830 849 852 858 0 + 831 833 836 842 862 0 + 834 837 853 859 0 + 828 843 850 854 860 0 + 838 844 855 861 863 0 + 832 839 845 864 0 + 835 840 846 851 865 0 + 841 847 856 866 0 + 829 848 857 867 0 + 868 880 890 895 0 + 869 881 885 899 0 + 870 872 875 882 886 900 0 + 876 887 901 0 + 873 877 883 888 891 896 0 + 871 874 892 897 0 + 878 884 889 893 898 902 0 + 879 894 0 + 903 910 917 926 930 933 0 + 904 911 918 922 934 0 + 905 919 923 927 0 + 906 912 914 924 0 + 907 913 915 920 935 0 + 916 921 928 936 0 + 908 925 929 931 937 0 + 909 932 0 + 938 944 947 952 970 974 983 988 0 + 939 953 971 975 978 984 0 + 940 945 954 959 964 972 0 + 941 955 979 0 + 948 956 960 976 989 0 + 942 949 957 965 0 + 946 950 961 977 990 0 + 962 966 980 985 0 + 951 963 967 973 981 0 + 943 968 986 991 0 + 958 969 982 987 992 0 + 1001 1013 0 + 993 997 1014 1022 0 + 994 1006 1015 0 + 1002 1007 1016 1018 1029 1032 0 + 998 1003 1024 1030 1033 0 + 995 999 1008 1025 1031 0 + 1004 1009 1019 0 + 1000 1010 1017 1020 1026 0 + 1011 1021 1027 0 + 996 1005 1012 1023 1028 0 + 1034 1049 1058 1066 1073 0 + 1035 1050 1061 1074 0 + 1039 1059 1062 1075 0 + 1044 1051 1054 1063 1067 1076 0 + 1040 1045 1052 1068 0 + 1036 1041 1046 1060 1064 1069 0 + 1037 1042 1047 1053 1055 1070 0 + 1038 1056 1071 1077 0 + 1043 1048 1057 1065 1072 0 diff --git a/sparkle/Components/paramils-v3.0.0/example_quickstart/my_algo.rb b/sparkle/Components/paramils-v3.0.0/example_quickstart/my_algo.rb new file mode 100644 index 000000000..2c798c290 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_quickstart/my_algo.rb @@ -0,0 +1,35 @@ +#!/usr/bin/ruby + +# parse all parameters +instance = ARGV[0] +runtime = ARGV[2].to_f +seed = ARGV[4].to_i +params = ARGV[5..-1].each_slice(2).map {|k,v| [k[1..-1], v]}.to_h + +# show the value of the parameter "a" +puts params['a'] + +# mock the execution of the target algorithm +srand(seed) +quality = Array.new(4) { rand } # 4 random values +time = runtime # fake true runtime +status = 'SUCCESS' + +# # write here how your algorithm must be executed +# cmd = "./my_complicated_target_algorithm %s --seed=%d"%[instance, seed] +# cmd += ' --param_a="+params['a'] + +# # execute cmd and returns the list of lines for the output +# output = `#{cmd}`.split("\n") + +# # and how to parse its output +# quality = [] +# quality << $1 if output.any? {|line| line =~ /final quality is (.*)/} +# if output.include?("finished successfully') +# status = 'SUCCESS' +# else +# status = 'CRASHED' +# end + +# print final result +puts 'Result: %s, %f, %s, %d'%[status, time, quality.inspect, seed] diff --git a/sparkle/Components/paramils-v3.0.0/example_quickstart/my_params.txt b/sparkle/Components/paramils-v3.0.0/example_quickstart/my_params.txt new file mode 100644 index 000000000..73ff28882 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_quickstart/my_params.txt @@ -0,0 +1,18 @@ +# any list of arbitrary values +a {0,1,2,3,4,5}[0] +b {1.0, 1.1, 1.2, 1.3, 1.4, 1.5}[1.0] +c {foo, bar, baz}[bar] +d {none,10,25,50,all}[10] + +# automatic expension +e {0,2..10}[6] # expends to {0,2,4,6,8,10} +f {1.0,1.1..1.5}[1.0] # same as above + +# no restriction on parameter and values +my_parameter {my_first_value, 0, -1, 99.99}[0] + +# conditional parameter +c | b in {1.0, 1.1} # c only exists if b is 1.0 or 1.1 + +# forbidden combinations +{a=0,b=1.0,c=foo} # will avoid matching configurations diff --git a/sparkle/Components/paramils-v3.0.0/example_quickstart/my_scenario.txt b/sparkle/Components/paramils-v3.0.0/example_quickstart/my_scenario.txt new file mode 100644 index 000000000..b546839c3 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_quickstart/my_scenario.txt @@ -0,0 +1,25 @@ +# algorithm path +execdir = example_quickstart +# any output is put in the "output" folder +outdir = output + +# algorithm command line +algo = ruby my_algo.rb +# parameters are detailed here +paramfile = my_params.txt + +# instance files +instance_file = my_training_list.txt +test_instance_file = my_test_list.txt +# if the algorithm is not deterministic, seeding is used +# 1=true ; 0=false +deterministic = 1 + +# quality | time +run_obj = quality +# use arithmetic mean +overall_obj = mean +# target algorithms maximum runtime +cutoff_time = 1 +# configurator stops after 10 seconds +tunerTimeout = 10 diff --git a/sparkle/Components/paramils-v3.0.0/example_quickstart/my_seeded_training_list.txt b/sparkle/Components/paramils-v3.0.0/example_quickstart/my_seeded_training_list.txt new file mode 100644 index 000000000..4ea23bd14 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_quickstart/my_seeded_training_list.txt @@ -0,0 +1,4 @@ +0 an_instance +1 an_instance +41 another_instance +43 another_instance diff --git a/sparkle/Components/paramils-v3.0.0/example_quickstart/my_test_list.txt b/sparkle/Components/paramils-v3.0.0/example_quickstart/my_test_list.txt new file mode 100644 index 000000000..ee1ad6569 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_quickstart/my_test_list.txt @@ -0,0 +1,3 @@ +an_instance +another_instance +path/to/third/instance diff --git a/sparkle/Components/paramils-v3.0.0/example_quickstart/my_training_list.txt b/sparkle/Components/paramils-v3.0.0/example_quickstart/my_training_list.txt new file mode 100644 index 000000000..ee1ad6569 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_quickstart/my_training_list.txt @@ -0,0 +1,3 @@ +an_instance +another_instance +path/to/third/instance diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/configs179917088.txt b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/configs179917088.txt new file mode 100644 index 000000000..e69de29bb diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/detailed-traj-run-179917088.csv b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/detailed-traj-run-179917088.csv new file mode 100644 index 000000000..3f44a3a36 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/detailed-traj-run-179917088.csv @@ -0,0 +1,2 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Full Configuration" +"0.0"," 1.7976931348623157E308","0.0","1","0.0", " alpha='1.189', ps='0.1', rho='0.5', wp='0.03'" diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/detailed-traj-run-48223336.csv b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/detailed-traj-run-48223336.csv new file mode 100644 index 000000000..3f44a3a36 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/detailed-traj-run-48223336.csv @@ -0,0 +1,2 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Full Configuration" +"0.0"," 1.7976931348623157E308","0.0","1","0.0", " alpha='1.189', ps='0.1', rho='0.5', wp='0.03'" diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-err179917088.txt b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-err179917088.txt new file mode 100644 index 000000000..42c131402 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-err179917088.txt @@ -0,0 +1,15 @@ +17:15:30.106 [CLI TAE (Master Thread - #0)] ERROR c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - The following algorithm call failed: cd "/home/aymeric/git/paramils_example/example_saps" ; ruby example_saps/saps_wrapper.rb example_data/qwh_instance/000549.cnf 0 5.0 2147483647 16158672 -alpha '1.189' -ps '0.1' -rho '0.5' -wp '0.03' +17:15:30.109 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - Message: Wrapper did not output anything that matched the expected output ("Result of algorithm run:..."). Please try executing the wrapper directly +17:15:30.112 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - A serious problem occured during target algorithm execution and we are aborting execution +ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.exceptions.TargetAlgorithmAbortException: Wrapper did not output anything that matched the expected output ("Result of algorithm run:..."). Please try executing the wrapper directly + at ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.decorators.safety.AbortOnFirstRunCrashTargetAlgorithmEvaluator.validate(AbortOnFirstRunCrashTargetAlgorithmEvaluator.java:55) ~[aeatk.jar:na] + at ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.decorators.safety.AbortOnFirstRunCrashTargetAlgorithmEvaluator.access$000(AbortOnFirstRunCrashTargetAlgorithmEvaluator.java:23) ~[aeatk.jar:na] + at ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.decorators.safety.AbortOnFirstRunCrashTargetAlgorithmEvaluator$1.onSuccess(AbortOnFirstRunCrashTargetAlgorithmEvaluator.java:80) ~[aeatk.jar:na] + at ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.base.cli.CommandLineTargetAlgorithmEvaluator$1$1.run(CommandLineTargetAlgorithmEvaluator.java:164) ~[aeatk.jar:na] + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) ~[na:1.8.0_121] + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) ~[na:1.8.0_121] + at java.lang.Thread.run(Thread.java:745) ~[na:1.8.0_121] +17:15:30.112 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - We tried to call the target algorithm wrapper, but this call failed. +17:15:30.112 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - The problem is (most likely) somewhere in the wrapper or with the arguments to ParamILS. +17:15:30.113 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - The easiest way to debug this problem is to manually execute the call we tried and see why it did not return the correct result +17:15:30.113 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - The required output of the wrapper is something like "Result for ParamILS: x,x,x,x,x".); diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-err48223336.txt b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-err48223336.txt new file mode 100644 index 000000000..710311f9e --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-err48223336.txt @@ -0,0 +1 @@ +17:15:16.979 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - Message: Cannot optimize RUNTIME runObj without a --runtime parameter diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-run179917088.txt b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-run179917088.txt new file mode 100644 index 000000000..979fc1f09 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-run179917088.txt @@ -0,0 +1,350 @@ +17:15:29.919 [main] INFO c.u.c.b.a.l.ComplexLoggingOptions - Logging to: /home/aymeric/git/paramils_example/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-run179917088.txt +17:15:29.927 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of Java Runtime Environment is OpenJDK 64-Bit Server VM (1.8.0_121) +17:15:29.927 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of OS is Linux 4.10.13-1-ARCH (amd64) +17:15:29.927 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of ParamILS is 3.0.0 +17:15:29.927 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of Random Forest Library is v1.05.01-master-106 (7fba58fe4271) +17:15:29.927 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of SMAC is ERROR LOADING VERSION INFORMATION +17:15:29.928 [main] INFO c.u.c.b.a.m.j.JCommanderHelper - Call String: paramils --scenario-file example_saps/scenario-Saps-single-QWH-instance.txt --tunerTimeout 100 +17:15:29.928 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ********** The next bit of output can be ignored, it is merely useful for debugging ********** +17:15:29.928 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ==========Environment Variables=========== +COLORFGBG=default;default +COLORTERM=rxvt +DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus +DISPLAY=:0 +EDITOR=emacs +FT2_SUBPIXEL_HINTING=0 +HISTFILE=/home/aymeric/.history +HISTIGNORE=ls:ll:bg:fg:exit:reset:clear:cd:cd ..:cd..:..:...:make:m +HISTSIZE=10000 +HOME=/home/aymeric +LANG=en_US.UTF-8 +LOGNAME=aymeric +MAIL=/var/spool/mail/aymeric +MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins +NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat +OLDPWD=/home/aymeric/git +PATH=/home/aymeric/bin:/home/aymeric/.gem/ruby/2.4.0/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl +PWD=/home/aymeric/git/paramils_example +SAVEHIST=1000 +SHELL=/bin/zsh +SHLVL=3 +TERM=rxvt-unicode-256color +USER=aymeric +USE_EDITOR=emacs +VISUAL=emacs +WINDOWID=52428809 +WINDOWPATH=1 +XAUTHORITY=/home/aymeric/.Xauthority +XDG_RUNTIME_DIR=/run/user/1000 +XDG_SEAT=seat0 +XDG_SESSION_ID=c1 +XDG_VTNR=1 +XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt +_JAVA_AWT_WM_NONREPARENTING=1 + +17:15:29.936 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - Hostname:[UNABLE TO DETERMINE HOSTNAME] +17:15:29.936 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ==========System Properties============== +ERRLOG=/home/aymeric/git/paramils_example/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-err179917088.txt +NUMRUN=179917088 +OUTPUTDIR=/home/aymeric/git/paramils_example/example_saps/paramils-out/scenario-Saps-single-QWH-instance +ROOT-LEVEL=INFO +RUNLOG=/home/aymeric/git/paramils_example/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-run179917088.txt +STDOUT-LEVEL=INFO +WARNLOG=/home/aymeric/git/paramils_example/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-warn179917088.txt +awt.toolkit=sun.awt.X11.XToolkit +file.encoding=UTF-8 +file.encoding.pkg=sun.io +file.separator=/ +java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment +java.awt.printerjob=sun.print.PSPrinterJob +java.class.path=./lib/jcip-annotations.jar:./lib/smac.jar:./lib/aeatk.jar:./lib/jackson-databind-2.3.1.jar:./lib/jcommander.jar:./lib/jackson-annotations-2.3.1.jar:./lib/exp4j-0.3.10.jar:./lib/paramils.jar:./lib/logback-classic-1.1.2.jar:./lib/jackson-core-2.3.1.jar:./lib/opencsv-2.3.jar:./lib/slf4j-api-1.7.5.jar:./lib/numerics4j-1.3.jar:./lib/guava-14.0.1.jar:./lib/DomainInter.jar:./lib/logback-access-1.1.2.jar:./lib/commons-math3-3.2.jar:./lib/logback-core-1.1.2.jar:./lib/Jama-1.0.2.jar:./lib/commons-io-2.1.jar:./lib/commons-collections-3.2.1.jar:./lib/fastrf.jar:./lib/commons-math-2.2.jar:./lib/jmatharray.jar:./lib/spi-0.2.4.jar +java.class.version=52.0 +java.endorsed.dirs=/usr/lib/jvm/java-8-openjdk/jre/lib/endorsed +java.ext.dirs=/usr/lib/jvm/java-8-openjdk/jre/lib/ext:/usr/java/packages/lib/ext +java.home=/usr/lib/jvm/java-8-openjdk/jre +java.io.tmpdir=/tmp +java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib +java.runtime.name=OpenJDK Runtime Environment +java.runtime.version=1.8.0_121-b13 +java.specification.name=Java Platform API Specification +java.specification.vendor=Oracle Corporation +java.specification.version=1.8 +java.vendor=Oracle Corporation +java.vendor.url=http://java.oracle.com/ +java.vendor.url.bug=http://bugreport.sun.com/bugreport/ +java.version=1.8.0_121 +java.vm.info=mixed mode +java.vm.name=OpenJDK 64-Bit Server VM +java.vm.specification.name=Java Virtual Machine Specification +java.vm.specification.vendor=Oracle Corporation +java.vm.specification.version=1.8 +java.vm.vendor=Oracle Corporation +java.vm.version=25.121-b13 +line.separator= + +logback.configurationFile=ca/ubc/cs/beta/aeatk/logging/complex-logback.xml +os.arch=amd64 +os.name=Linux +os.version=4.10.13-1-ARCH +path.separator=: +sun.arch.data.model=64 +sun.boot.class.path=/usr/lib/jvm/java-8-openjdk/jre/lib/resources.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/rt.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/jsse.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/jce.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/charsets.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/jfr.jar:/usr/lib/jvm/java-8-openjdk/jre/classes +sun.boot.library.path=/usr/lib/jvm/java-8-openjdk/jre/lib/amd64 +sun.cpu.endian=little +sun.cpu.isalist= +sun.io.unicode.encoding=UnicodeLittle +sun.java.command=ca.ubc.cs.beta.aeatk.ant.execscript.Launcher ca.ubc.cs.beta.paramils.executors.ParamILSExecutor --scenario-file example_saps/scenario-Saps-single-QWH-instance.txt --tunerTimeout 100 +sun.java.launcher=SUN_STANDARD +sun.jnu.encoding=UTF-8 +sun.management.compiler=HotSpot 64-Bit Tiered Compilers +sun.os.patch.level=unknown +user.country=US +user.dir=/home/aymeric/git/paramils_example +user.home=/home/aymeric +user.language=en +user.name=aymeric +user.timezone=Europe/Paris + +17:15:29.937 [main] INFO c.u.c.b.a.m.j.JCommanderHelper - ==========Configuration Options========== +[ParamILSOptions] + multiObjective = false + initialIncumbent = DEFAULT + initialIncumbentFile = + minRuns = 1 + maxRuns = 2000 + R = 10 + perturbationLength = 3 + randomRestartProbability = 0.05 + approach = FOCUSED + bonusRunsMode = INTENSIFY + cappingMode = AUTO + aggressiveCapping = true + aggressiveCappingFactor = 2.0 + cutoffThreshold = 0.1 + cappingMinValue = 0.0 + doValidation = true + validationRuns = 1000 + compareInitialConfiguration = false + validateOnTrainingSet = false + logDetails = false + alwaysRunInitialConfiguration = false + deterministicInstanceOrdering = false + experimentDir = /home/aymeric/git/paramils_example/ +help = [HelpOptions] + showHiddenParameters = false + showHelp = false + helpLevel = BASIC + showVersion = false + helpDefaults = /home/aymeric/.aeatk/help.opt + +logOptions = [ComplexLoggingOptions] + consoleLogLevel = INFO + logLevel = INFO + + optionFile = null + optionFile2 = null +runGroupOptions = [RunGroupOptions] + runGroupName = %SCENARIO_NAME + runGroupExit = false + replacementChar = % + +scenarioConfig = [ScenarioOptions] + _runObj = RUNTIME + intraInstanceObj = MEAN + interInstanceObj = MEAN + limitOptions = [TerminationCriteriaOptions] + tunerTimeout = 100 + numIterations = 2147483647 + runtimeLimit = 2147483647 + totalNumRunsLimit = 9223372036854775807 + countSMACTimeAsTunerTime = false + challengeIncumbentAttempts = 1000 + fileToWatch = null + + instanceOptions = [ProblemInstanceOptions] + instanceFile = example_data/qwh-single-inst.txt + instanceFeatureFile = null + testInstanceFile = example_data/qwh-single-inst.txt + checkInstanceFilesExist = false + useInstances = true + instanceSuffix = null + testInstanceSuffix = null + ignoreFeatures = false + + scenarioFile = /home/aymeric/git/paramils_example/example_saps/scenario-Saps-single-QWH-instance.txt + outputDirectory = example_saps/paramils-out + invalidScenarioReason = null + algoExecOptions = [AlgorithmExecutionOptions] + algoExec = ruby example_saps/saps_wrapper.rb + algoExecDir = example_saps + deterministic = false + cutoffTime = 5.0 + cutoffLength = 1.7976931348623157E308 + additionalContext = {} + taeOpts = [TargetAlgorithmEvaluatorOptions] + targetAlgorithmEvaluator = CLI + abortOnCrash = false + abortOnFirstRunCrash = true + retryCount = 0 + cacheRuns = false + cacheDebug = false + useDynamicCappingExclusively = false + reportStrictlyIncreasingRuntimes = false + boundRuns = false + maxConcurrentAlgoExecs = 1 + exitOnFailure = false + runHashCodeFile = null + leakMemory = false + leakMemoryAmount = 1024 + verifySAT = null + checkSATConsistency = true + checkSATConsistencyException = true + callObserverBeforeCompletion = true + prePostOptions = [PrePostCommandOptions] + preCommand = null + postCommand = null + exceptionOnError = false + logOutput = true + directory = /home/aymeric/git/paramils_example/. + + checkResultOrderConsistent = false + skipOutstandingEvaluationsTAE = false + logRequestResponses = false + logRequestResponsesRCOnly = false + trackRunsScheduled = false + trackRunsScheduledResolution = 1.0 + uncleanShutdownCheck = true + killCaptimeExceedingRun = true + killCaptimeExceedingRunFactor = 10.0 + checkRunConfigsUnique = true + checkRunConfigsUniqueException = true + observeWalltimeIfNoRuntime = true + observeWalltimeScale = 0.95 + observeWalltimeDelay = 5.0 + synchronousObserver = true + taeDefaults = /home/aymeric/.aeatk/tae.opt + ttaedo = [TransformTargetAlgorithmEvaluatorDecoratorOptions] + transform = false + transformValidValuesOnly = true + SAT_runtime_transform = R + SAT_quality_transform = Q + UNSAT_runtime_transform = R + UNSAT_quality_transform = Q + TIMEOUT_runtime_transform = R + TIMEOUT_quality_transform = Q + other_runtime_transform = R + other_quality_transform = Q + + tForkOptions = [ForkingTargetAlgorithmEvaluatorDecoratorOptions] + forkToTAE = null + fPolicyOptions = [ForkingTargetAlgorithmEvaluatorDecoratorPolicyOptions] + fPolicy = null + duplicateOnSlaveQuickTimeout = 5 + + + fileToWatch = null + warnIfNoResponseFromTAE = 120 + taeStopProcessingOnShutdown = true + filecache = false + fileCacheSource = null + fileCacheOutput = null + fileCacheCrashOnMiss = false + + paramFileDelegate = [ParamConfigurationSpaceOptions] + paramFile = example_saps/saps-params.txt + searchSubspace = null + searchSubspaceFile = null + continuousNeighbours = 4 + + + +seedOptions = [SeedOptions] + seedOffset = 0 + numRun = 179917088 + initialSeedMap = {} + + paramilsDefaults = /home/aymeric/.aeatk/paramils.opt +trackingOptions = [ParamConfigurationOriginTrackingOptions] + configTracking = false + + validationSeed = 0 + +[AnalyticTargetAlgorithmEvaluatorOptions] + simulateDelay = false + cores = 0 + observerFrequency = 100 + func = CAMELBACK + scaleDelay = 1.0 + +[BlackHoleTargetAlgorithmEvaluatorOptions] + warnings = true + +[CommandLineTargetAlgorithmEvaluatorOptions] + observerFrequency = 500 + concurrentExecution = true + cores = 1 + logAllCallStrings = false + logAllResultLines = false + logAllCallsAndResultLines = false + logAllProcessOutput = false + listenForUpdates = true + paramArgumentsContainQuotes = false + pgEnvKillCommand = null + pgNiceKillCommand = bash -c "kill -s TERM -%pid" + pgForceKillCommand = bash -c "kill -s KILL -%pid" + procNiceKillCommand = kill -s TERM %pid + procForceKillCommand = kill -s KILL %pid + smacDefaults = /home/aymeric/.aeatk/cli-tae.opt + +[IPCTargetAlgorithmEvaluatorOptions] + persistent = false + ipcMechanism = UDP + encodingMechanism = CALL_STRING + remoteHost = 127.0.0.1 + remotePort = 5050 + udpPacketSize = 4096 + localPort = 0 + execScript = null + execScriptOutput = false + poolConnections = false + ipcDefaults = /home/aymeric/.aeatk/ipc-tae.opt + asyncThreads = 5 + +[PreloadedResponseTargetAlgorithmEvaluatorOptions] + preloadedResponses = + runLength = -1.0 + quality = 0.0 + additionalRunData = + +[RandomResponseTargetAlgorithmEvaluatorOptions] + simulateDelay = false + additionalRunData = + cores = 0 + maxResponse = 10.0 + minResponse = 0.0 + observerFrequency = 500 + trendCoefficient = 0.0 + seed = 1498058129607 + persistent = false + scaleDelay = 1.0 + + +17:15:29.987 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - ParamILS started at: Jun 21, 2017 5:15:29 PM. Minimizing mean runtime. +17:15:30.098 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] ruby: No such file or directory -- example_saps/saps_wrapper.rb (LoadError) +17:15:30.106 [CLI TAE (Master Thread - #0)] ERROR c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - The following algorithm call failed: cd "/home/aymeric/git/paramils_example/example_saps" ; ruby example_saps/saps_wrapper.rb example_data/qwh_instance/000549.cnf 0 5.0 2147483647 16158672 -alpha '1.189' -ps '0.1' -rho '0.5' -wp '0.03' +17:15:30.109 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - Message: Wrapper did not output anything that matched the expected output ("Result of algorithm run:..."). Please try executing the wrapper directly +17:15:30.112 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - A serious problem occured during target algorithm execution and we are aborting execution +ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.exceptions.TargetAlgorithmAbortException: Wrapper did not output anything that matched the expected output ("Result of algorithm run:..."). Please try executing the wrapper directly + at ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.decorators.safety.AbortOnFirstRunCrashTargetAlgorithmEvaluator.validate(AbortOnFirstRunCrashTargetAlgorithmEvaluator.java:55) ~[aeatk.jar:na] + at ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.decorators.safety.AbortOnFirstRunCrashTargetAlgorithmEvaluator.access$000(AbortOnFirstRunCrashTargetAlgorithmEvaluator.java:23) ~[aeatk.jar:na] + at ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.decorators.safety.AbortOnFirstRunCrashTargetAlgorithmEvaluator$1.onSuccess(AbortOnFirstRunCrashTargetAlgorithmEvaluator.java:80) ~[aeatk.jar:na] + at ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.base.cli.CommandLineTargetAlgorithmEvaluator$1$1.run(CommandLineTargetAlgorithmEvaluator.java:164) ~[aeatk.jar:na] + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) ~[na:1.8.0_121] + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) ~[na:1.8.0_121] + at java.lang.Thread.run(Thread.java:745) ~[na:1.8.0_121] +17:15:30.112 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - We tried to call the target algorithm wrapper, but this call failed. +17:15:30.112 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - The problem is (most likely) somewhere in the wrapper or with the arguments to ParamILS. +17:15:30.113 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - The easiest way to debug this problem is to manually execute the call we tried and see why it did not return the correct result +17:15:30.113 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - The required output of the wrapper is something like "Result for ParamILS: x,x,x,x,x".); +17:15:30.113 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - Exiting ParamILS with failure. Log: /home/aymeric/git/paramils_example/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-run179917088.txt +17:15:30.113 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - For a list of available commands use: --help diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-run48223336.txt b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-run48223336.txt new file mode 100644 index 000000000..0f19dad85 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-run48223336.txt @@ -0,0 +1,335 @@ +17:15:16.916 [main] INFO c.u.c.b.a.l.ComplexLoggingOptions - Logging to: /home/aymeric/git/paramils_example/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-run48223336.txt +17:15:16.923 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of Java Runtime Environment is OpenJDK 64-Bit Server VM (1.8.0_121) +17:15:16.923 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of OS is Linux 4.10.13-1-ARCH (amd64) +17:15:16.923 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of ParamILS is 3.0.0 +17:15:16.923 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of Random Forest Library is v1.05.01-master-106 (7fba58fe4271) +17:15:16.924 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of SMAC is ERROR LOADING VERSION INFORMATION +17:15:16.924 [main] INFO c.u.c.b.a.m.j.JCommanderHelper - Call String: paramils --MO TRUE --scenario-file example_saps/scenario-Saps-single-QWH-instance.txt --tunerTimeout 100 +17:15:16.925 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ********** The next bit of output can be ignored, it is merely useful for debugging ********** +17:15:16.925 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ==========Environment Variables=========== +COLORFGBG=default;default +COLORTERM=rxvt +DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus +DISPLAY=:0 +EDITOR=emacs +FT2_SUBPIXEL_HINTING=0 +HISTFILE=/home/aymeric/.history +HISTIGNORE=ls:ll:bg:fg:exit:reset:clear:cd:cd ..:cd..:..:...:make:m +HISTSIZE=10000 +HOME=/home/aymeric +LANG=en_US.UTF-8 +LOGNAME=aymeric +MAIL=/var/spool/mail/aymeric +MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins +NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat +OLDPWD=/home/aymeric/git +PATH=/home/aymeric/bin:/home/aymeric/.gem/ruby/2.4.0/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl +PWD=/home/aymeric/git/paramils_example +SAVEHIST=1000 +SHELL=/bin/zsh +SHLVL=3 +TERM=rxvt-unicode-256color +USER=aymeric +USE_EDITOR=emacs +VISUAL=emacs +WINDOWID=52428809 +WINDOWPATH=1 +XAUTHORITY=/home/aymeric/.Xauthority +XDG_RUNTIME_DIR=/run/user/1000 +XDG_SEAT=seat0 +XDG_SESSION_ID=c1 +XDG_VTNR=1 +XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt +_JAVA_AWT_WM_NONREPARENTING=1 + +17:15:16.928 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - Hostname:[UNABLE TO DETERMINE HOSTNAME] +17:15:16.928 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ==========System Properties============== +ERRLOG=/home/aymeric/git/paramils_example/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-err48223336.txt +NUMRUN=48223336 +OUTPUTDIR=/home/aymeric/git/paramils_example/example_saps/paramils-out/scenario-Saps-single-QWH-instance +ROOT-LEVEL=INFO +RUNLOG=/home/aymeric/git/paramils_example/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-run48223336.txt +STDOUT-LEVEL=INFO +WARNLOG=/home/aymeric/git/paramils_example/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-warn48223336.txt +awt.toolkit=sun.awt.X11.XToolkit +file.encoding=UTF-8 +file.encoding.pkg=sun.io +file.separator=/ +java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment +java.awt.printerjob=sun.print.PSPrinterJob +java.class.path=./lib/jcip-annotations.jar:./lib/smac.jar:./lib/aeatk.jar:./lib/jackson-databind-2.3.1.jar:./lib/jcommander.jar:./lib/jackson-annotations-2.3.1.jar:./lib/exp4j-0.3.10.jar:./lib/paramils.jar:./lib/logback-classic-1.1.2.jar:./lib/jackson-core-2.3.1.jar:./lib/opencsv-2.3.jar:./lib/slf4j-api-1.7.5.jar:./lib/numerics4j-1.3.jar:./lib/guava-14.0.1.jar:./lib/DomainInter.jar:./lib/logback-access-1.1.2.jar:./lib/commons-math3-3.2.jar:./lib/logback-core-1.1.2.jar:./lib/Jama-1.0.2.jar:./lib/commons-io-2.1.jar:./lib/commons-collections-3.2.1.jar:./lib/fastrf.jar:./lib/commons-math-2.2.jar:./lib/jmatharray.jar:./lib/spi-0.2.4.jar +java.class.version=52.0 +java.endorsed.dirs=/usr/lib/jvm/java-8-openjdk/jre/lib/endorsed +java.ext.dirs=/usr/lib/jvm/java-8-openjdk/jre/lib/ext:/usr/java/packages/lib/ext +java.home=/usr/lib/jvm/java-8-openjdk/jre +java.io.tmpdir=/tmp +java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib +java.runtime.name=OpenJDK Runtime Environment +java.runtime.version=1.8.0_121-b13 +java.specification.name=Java Platform API Specification +java.specification.vendor=Oracle Corporation +java.specification.version=1.8 +java.vendor=Oracle Corporation +java.vendor.url=http://java.oracle.com/ +java.vendor.url.bug=http://bugreport.sun.com/bugreport/ +java.version=1.8.0_121 +java.vm.info=mixed mode +java.vm.name=OpenJDK 64-Bit Server VM +java.vm.specification.name=Java Virtual Machine Specification +java.vm.specification.vendor=Oracle Corporation +java.vm.specification.version=1.8 +java.vm.vendor=Oracle Corporation +java.vm.version=25.121-b13 +line.separator= + +logback.configurationFile=ca/ubc/cs/beta/aeatk/logging/complex-logback.xml +os.arch=amd64 +os.name=Linux +os.version=4.10.13-1-ARCH +path.separator=: +sun.arch.data.model=64 +sun.boot.class.path=/usr/lib/jvm/java-8-openjdk/jre/lib/resources.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/rt.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/jsse.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/jce.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/charsets.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/jfr.jar:/usr/lib/jvm/java-8-openjdk/jre/classes +sun.boot.library.path=/usr/lib/jvm/java-8-openjdk/jre/lib/amd64 +sun.cpu.endian=little +sun.cpu.isalist= +sun.io.unicode.encoding=UnicodeLittle +sun.java.command=ca.ubc.cs.beta.aeatk.ant.execscript.Launcher ca.ubc.cs.beta.paramils.executors.ParamILSExecutor --MO TRUE --scenario-file example_saps/scenario-Saps-single-QWH-instance.txt --tunerTimeout 100 +sun.java.launcher=SUN_STANDARD +sun.jnu.encoding=UTF-8 +sun.management.compiler=HotSpot 64-Bit Tiered Compilers +sun.os.patch.level=unknown +user.country=US +user.dir=/home/aymeric/git/paramils_example +user.home=/home/aymeric +user.language=en +user.name=aymeric +user.timezone=Europe/Paris + +17:15:16.930 [main] INFO c.u.c.b.a.m.j.JCommanderHelper - ==========Configuration Options========== +[ParamILSOptions] + multiObjective = true + initialIncumbent = DEFAULT + initialIncumbentFile = + minRuns = 1 + maxRuns = 2000 + R = 10 + perturbationLength = 3 + randomRestartProbability = 0.05 + approach = FOCUSED + bonusRunsMode = INTENSIFY + cappingMode = AUTO + aggressiveCapping = true + aggressiveCappingFactor = 2.0 + cutoffThreshold = 0.1 + cappingMinValue = 0.0 + doValidation = true + validationRuns = 1000 + compareInitialConfiguration = false + validateOnTrainingSet = false + logDetails = false + alwaysRunInitialConfiguration = false + deterministicInstanceOrdering = false + experimentDir = /home/aymeric/git/paramils_example/ +help = [HelpOptions] + showHiddenParameters = false + showHelp = false + helpLevel = BASIC + showVersion = false + helpDefaults = /home/aymeric/.aeatk/help.opt + +logOptions = [ComplexLoggingOptions] + consoleLogLevel = INFO + logLevel = INFO + + optionFile = null + optionFile2 = null +runGroupOptions = [RunGroupOptions] + runGroupName = %SCENARIO_NAME + runGroupExit = false + replacementChar = % + +scenarioConfig = [ScenarioOptions] + _runObj = RUNTIME + intraInstanceObj = MEAN + interInstanceObj = MEAN + limitOptions = [TerminationCriteriaOptions] + tunerTimeout = 100 + numIterations = 2147483647 + runtimeLimit = 2147483647 + totalNumRunsLimit = 9223372036854775807 + countSMACTimeAsTunerTime = false + challengeIncumbentAttempts = 1000 + fileToWatch = null + + instanceOptions = [ProblemInstanceOptions] + instanceFile = example_data/qwh-single-inst.txt + instanceFeatureFile = null + testInstanceFile = example_data/qwh-single-inst.txt + checkInstanceFilesExist = false + useInstances = true + instanceSuffix = null + testInstanceSuffix = null + ignoreFeatures = false + + scenarioFile = /home/aymeric/git/paramils_example/example_saps/scenario-Saps-single-QWH-instance.txt + outputDirectory = example_saps/paramils-out + invalidScenarioReason = null + algoExecOptions = [AlgorithmExecutionOptions] + algoExec = ruby example_saps/saps_wrapper.rb + algoExecDir = example_saps + deterministic = false + cutoffTime = 5.0 + cutoffLength = 1.7976931348623157E308 + additionalContext = {} + taeOpts = [TargetAlgorithmEvaluatorOptions] + targetAlgorithmEvaluator = CLI + abortOnCrash = false + abortOnFirstRunCrash = true + retryCount = 0 + cacheRuns = false + cacheDebug = false + useDynamicCappingExclusively = false + reportStrictlyIncreasingRuntimes = false + boundRuns = false + maxConcurrentAlgoExecs = 1 + exitOnFailure = false + runHashCodeFile = null + leakMemory = false + leakMemoryAmount = 1024 + verifySAT = null + checkSATConsistency = true + checkSATConsistencyException = true + callObserverBeforeCompletion = true + prePostOptions = [PrePostCommandOptions] + preCommand = null + postCommand = null + exceptionOnError = false + logOutput = true + directory = /home/aymeric/git/paramils_example/. + + checkResultOrderConsistent = false + skipOutstandingEvaluationsTAE = false + logRequestResponses = false + logRequestResponsesRCOnly = false + trackRunsScheduled = false + trackRunsScheduledResolution = 1.0 + uncleanShutdownCheck = true + killCaptimeExceedingRun = true + killCaptimeExceedingRunFactor = 10.0 + checkRunConfigsUnique = true + checkRunConfigsUniqueException = true + observeWalltimeIfNoRuntime = true + observeWalltimeScale = 0.95 + observeWalltimeDelay = 5.0 + synchronousObserver = true + taeDefaults = /home/aymeric/.aeatk/tae.opt + ttaedo = [TransformTargetAlgorithmEvaluatorDecoratorOptions] + transform = false + transformValidValuesOnly = true + SAT_runtime_transform = R + SAT_quality_transform = Q + UNSAT_runtime_transform = R + UNSAT_quality_transform = Q + TIMEOUT_runtime_transform = R + TIMEOUT_quality_transform = Q + other_runtime_transform = R + other_quality_transform = Q + + tForkOptions = [ForkingTargetAlgorithmEvaluatorDecoratorOptions] + forkToTAE = null + fPolicyOptions = [ForkingTargetAlgorithmEvaluatorDecoratorPolicyOptions] + fPolicy = null + duplicateOnSlaveQuickTimeout = 5 + + + fileToWatch = null + warnIfNoResponseFromTAE = 120 + taeStopProcessingOnShutdown = true + filecache = false + fileCacheSource = null + fileCacheOutput = null + fileCacheCrashOnMiss = false + + paramFileDelegate = [ParamConfigurationSpaceOptions] + paramFile = example_saps/saps-params.txt + searchSubspace = null + searchSubspaceFile = null + continuousNeighbours = 4 + + + +seedOptions = [SeedOptions] + seedOffset = 0 + numRun = 48223336 + initialSeedMap = {} + + paramilsDefaults = /home/aymeric/.aeatk/paramils.opt +trackingOptions = [ParamConfigurationOriginTrackingOptions] + configTracking = false + + validationSeed = 0 + +[AnalyticTargetAlgorithmEvaluatorOptions] + simulateDelay = false + cores = 0 + observerFrequency = 100 + func = CAMELBACK + scaleDelay = 1.0 + +[BlackHoleTargetAlgorithmEvaluatorOptions] + warnings = true + +[CommandLineTargetAlgorithmEvaluatorOptions] + observerFrequency = 500 + concurrentExecution = true + cores = 1 + logAllCallStrings = false + logAllResultLines = false + logAllCallsAndResultLines = false + logAllProcessOutput = false + listenForUpdates = true + paramArgumentsContainQuotes = false + pgEnvKillCommand = null + pgNiceKillCommand = bash -c "kill -s TERM -%pid" + pgForceKillCommand = bash -c "kill -s KILL -%pid" + procNiceKillCommand = kill -s TERM %pid + procForceKillCommand = kill -s KILL %pid + smacDefaults = /home/aymeric/.aeatk/cli-tae.opt + +[IPCTargetAlgorithmEvaluatorOptions] + persistent = false + ipcMechanism = UDP + encodingMechanism = CALL_STRING + remoteHost = 127.0.0.1 + remotePort = 5050 + udpPacketSize = 4096 + localPort = 0 + execScript = null + execScriptOutput = false + poolConnections = false + ipcDefaults = /home/aymeric/.aeatk/ipc-tae.opt + asyncThreads = 5 + +[PreloadedResponseTargetAlgorithmEvaluatorOptions] + preloadedResponses = + runLength = -1.0 + quality = 0.0 + additionalRunData = + +[RandomResponseTargetAlgorithmEvaluatorOptions] + simulateDelay = false + additionalRunData = + cores = 0 + maxResponse = 10.0 + minResponse = 0.0 + observerFrequency = 500 + trendCoefficient = 0.0 + seed = 1498058116603 + persistent = false + scaleDelay = 1.0 + + +17:15:16.979 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - Message: Cannot optimize RUNTIME runObj without a --runtime parameter +17:15:16.980 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - Note that some options are read from files in ~/.aeatk/ +17:15:16.980 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - Exiting ParamILS with failure. Log: /home/aymeric/git/paramils_example/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-run48223336.txt +17:15:16.980 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - For a list of available commands use: --help diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-warn179917088.txt b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-warn179917088.txt new file mode 100644 index 000000000..138273f27 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-warn179917088.txt @@ -0,0 +1,16 @@ +17:15:30.098 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] ruby: No such file or directory -- example_saps/saps_wrapper.rb (LoadError) +17:15:30.106 [CLI TAE (Master Thread - #0)] ERROR c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - The following algorithm call failed: cd "/home/aymeric/git/paramils_example/example_saps" ; ruby example_saps/saps_wrapper.rb example_data/qwh_instance/000549.cnf 0 5.0 2147483647 16158672 -alpha '1.189' -ps '0.1' -rho '0.5' -wp '0.03' +17:15:30.109 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - Message: Wrapper did not output anything that matched the expected output ("Result of algorithm run:..."). Please try executing the wrapper directly +17:15:30.112 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - A serious problem occured during target algorithm execution and we are aborting execution +ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.exceptions.TargetAlgorithmAbortException: Wrapper did not output anything that matched the expected output ("Result of algorithm run:..."). Please try executing the wrapper directly + at ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.decorators.safety.AbortOnFirstRunCrashTargetAlgorithmEvaluator.validate(AbortOnFirstRunCrashTargetAlgorithmEvaluator.java:55) ~[aeatk.jar:na] + at ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.decorators.safety.AbortOnFirstRunCrashTargetAlgorithmEvaluator.access$000(AbortOnFirstRunCrashTargetAlgorithmEvaluator.java:23) ~[aeatk.jar:na] + at ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.decorators.safety.AbortOnFirstRunCrashTargetAlgorithmEvaluator$1.onSuccess(AbortOnFirstRunCrashTargetAlgorithmEvaluator.java:80) ~[aeatk.jar:na] + at ca.ubc.cs.beta.aeatk.targetalgorithmevaluator.base.cli.CommandLineTargetAlgorithmEvaluator$1$1.run(CommandLineTargetAlgorithmEvaluator.java:164) ~[aeatk.jar:na] + at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1142) ~[na:1.8.0_121] + at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:617) ~[na:1.8.0_121] + at java.lang.Thread.run(Thread.java:745) ~[na:1.8.0_121] +17:15:30.112 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - We tried to call the target algorithm wrapper, but this call failed. +17:15:30.112 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - The problem is (most likely) somewhere in the wrapper or with the arguments to ParamILS. +17:15:30.113 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - The easiest way to debug this problem is to manually execute the call we tried and see why it did not return the correct result +17:15:30.113 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - The required output of the wrapper is something like "Result for ParamILS: x,x,x,x,x".); diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-warn48223336.txt b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-warn48223336.txt new file mode 100644 index 000000000..710311f9e --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/log-warn48223336.txt @@ -0,0 +1 @@ +17:15:16.979 [main] ERROR c.u.c.b.p.executors.ParamILSExecutor - Message: Cannot optimize RUNTIME runObj without a --runtime parameter diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/traj-run-179917088.txt b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/traj-run-179917088.txt new file mode 100644 index 000000000..0329176b6 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/traj-run-179917088.txt @@ -0,0 +1,2 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." +0.0, 1.7976931348623157E308, 0.0, 1, 0.0, alpha='1.189', ps='0.1', rho='0.5', wp='0.03' diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/traj-run-48223336.txt b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/traj-run-48223336.txt new file mode 100644 index 000000000..0329176b6 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/paramils-out/scenario-Saps-single-QWH-instance/traj-run-48223336.txt @@ -0,0 +1,2 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." +0.0, 1.7976931348623157E308, 0.0, 1, 0.0, alpha='1.189', ps='0.1', rho='0.5', wp='0.03' diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/saps-params.txt b/sparkle/Components/paramils-v3.0.0/example_saps/saps-params.txt new file mode 100644 index 000000000..5dcfe12fb --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/saps-params.txt @@ -0,0 +1,4 @@ +alpha {1.01, 1.066, 1.126, 1.189, 1.256, 1.326, 1.4} [1.189] #uniform on log scale between 1.01 and 1.4 +rho {0, 0.17, 0.333, 0.5, 0.666, 0.83, 1} [0.5] #uniform +ps {0, 0.033, 0.066, 0.1, 0.133, 0.166, 0.2} [0.1] #uniform +wp {0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06} [0.03] #uniform \ No newline at end of file diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/saps_wrapper.rb b/sparkle/Components/paramils-v3.0.0/example_saps/saps_wrapper.rb new file mode 100644 index 000000000..4501231e8 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/saps_wrapper.rb @@ -0,0 +1,59 @@ +#=== Deal with inputs. +if ARGV.length < 5 + puts "saps_wrapper.rb is a wrapper for the SAPS algorithm." + puts "Usage: ruby saps_wrapper.rb ." + exit -1 +end +cnf_filename = ARGV[0] +instance_specifics = ARGV[1] +cutoff_time = ARGV[2].to_f +cutoff_length = ARGV[3].to_i +seed = ARGV[4].to_i + +#=== Here I assume instance_specifics only contains the desired target quality or nothing at all for the instance, but it could contain more (to be specified in the instance_file or instance_seed_file) +if instance_specifics == "" + qual = 0 +else + qual = instance_specifics.split[0] +end + +paramstring = ARGV[5...ARGV.length].join(" ") + +#=== Build algorithm command and execute it. +cmd = "./example_saps/ubcsat -alg saps #{paramstring} -inst #{cnf_filename} -cutoff #{cutoff_length} -timeout #{cutoff_time} -target #{qual} -seed #{seed} -r stats stdout default,best" + +filename = "./example_saps/ubcsat_output#{rand}.txt" +exec_cmd = "#{cmd} > #{filename}" + +puts "Calling: #{exec_cmd}" +system exec_cmd + +#=== Parse algorithm output to extract relevant information for ParamILS. +solved = nil +runtime = nil +runlength = nil +best_sol = nil + +File.open(filename){|file| + while line = file.gets + if line =~ /SuccessfulRuns = (\d+)/ + numsolved = $1.to_i + if numsolved > 0 + solved = "SAT" + else + solved = "TIMEOUT" + end + end + if line =~ /CPUTime_Mean = (.*)$/ + runtime = $1.to_f + end + if line =~ /Steps_Mean = (\d+)/ + runlength = $1.to_i + end + if line =~ /BestSolution_Mean = (\d+)/ + best_sol = $1.to_i + end + end +} +File.delete(filename) +puts "Result for ParamILS: #{solved}, #{runtime}, #{runlength}, #{best_sol}, #{seed}" diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/scenario-Saps-SWGCP-sat-small-train-small-test.txt b/sparkle/Components/paramils-v3.0.0/example_saps/scenario-Saps-SWGCP-sat-small-train-small-test.txt new file mode 100644 index 000000000..8b175a48a --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/scenario-Saps-SWGCP-sat-small-train-small-test.txt @@ -0,0 +1,12 @@ +algo = ruby example_saps/saps_wrapper.rb +execdir = . +deterministic = 0 +run_obj = runtime +overall_obj = mean +cutoff_time = 5 +cutoff_length = max +tunerTimeout = 30 +paramfile = example_saps/saps-params.txt +outdir = output +instance_file = example_data/SWGCP-satisfiable-small-train.txt +test_instance_file = example_data/SWGCP-satisfiable-small-test.txt diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/scenario-Saps-single-QWH-instance.txt b/sparkle/Components/paramils-v3.0.0/example_saps/scenario-Saps-single-QWH-instance.txt new file mode 100644 index 000000000..311c345c5 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/scenario-Saps-single-QWH-instance.txt @@ -0,0 +1,12 @@ +algo = ruby example_saps/saps_wrapper.rb +execdir = . +deterministic = 0 +run_obj = runtime +overall_obj = mean +cutoff_time = 5 +cutoff_length = max +tunerTimeout = 30 +paramfile = example_saps/saps-params.txt +outdir = output +instance_file = example_data/qwh-single-inst.txt +test_instance_file = example_data/qwh-single-inst.txt diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/scenario-win-Saps-SWGCP-sat-small-train-small-test.txt b/sparkle/Components/paramils-v3.0.0/example_saps/scenario-win-Saps-SWGCP-sat-small-train-small-test.txt new file mode 100644 index 000000000..187d5143a --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/scenario-win-Saps-SWGCP-sat-small-train-small-test.txt @@ -0,0 +1,12 @@ +algo = ruby example_saps/win_saps_wrapper.rb +execdir = . +deterministic = 0 +run_obj = runtime +overall_obj = mean +cutoff_time = 5 +cutoff_length = max +tunerTimeout = 30 +paramfile = paramils-out/saps-params.txt +outdir = output +instance_file = example_data/SWGCP-satisfiable-small-train.txt +test_instance_file = example_data/SWGCP-satisfiable-small-test.txt diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/tmp.txt b/sparkle/Components/paramils-v3.0.0/example_saps/tmp.txt new file mode 100644 index 000000000..60a6371c8 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/tmp.txt @@ -0,0 +1,2 @@ +Calling: ubcsat.exe -alg saps -alpha 1.189 -wp 0.03 -rho 0.5 -ps 0.1 -inst C:/ParamILS/paramils2.3.2-source/paramils2.3.2-source/example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf -cutoff 2147483647 -timeout 5.0 -target 0 -seed 524453158 -r stats stdout default,best > ubcsat_output0.365904820908691.txt +Result for ParamILS: TIMEOUT, 5.0150001049, 1068773, 1, 524453158 diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat b/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat new file mode 100644 index 000000000..0ac6bb998 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat differ diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat-legal.txt b/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat-legal.txt new file mode 100644 index 000000000..221e03779 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat-legal.txt @@ -0,0 +1,75 @@ + ## ## ##### ##### $$$$$ $$$$ $$$$$$ + ## ## ## ## ## $$ $$ $$ $$ + ## ## ##### ## $$$$ $$$$$$ $$ + ## ## ## ## ## $$ $$ $$ $$ + #### ##### ##### $$$$$ $$ $$ $$ + ====================================================== + SLS SAT Solver from The University of British Columbia + ====================================================== + ...Developed by Dave Tompkins (davet [@] cs.ubc.ca)... + ------------------------------------------------------ + ... project website: http://www.satlib.org/ubcsat .... + ------------------------------------------------------ + +FRIENDLY VERSION: + +For academic puposes, you may use the software as you wish + +We respectfully request that you notify us if you: + * modify / improve upon the software + * re-distribute the software + +If you use UBCSAT in your research, we would appreciate a citation in your publication(s). + +(this is a very verbose bibtex entry -- feel free to abbreviate) + +@inproceedings{ubcsat, + author = "Dave A. D. Tompkins and Holger H. Hoos", + title = "{UBCSAT}: An Implementation and Experimentation Environment for {SLS} Algorithms for {SAT} and {MAX-SAT}", + booktitle = "Theory and Applications of Satisfiability Testing: Revised Selected Papers of the Seventh International Conference (SAT 2004, Vancouver, BC, Canada, May 10--13, 2004)", + year = "2005", + pages = "306--320", + editor = "Holger H. Hoos and David G. Mitchell", + series = "Lecture Notes in Computer Science", + volume = "3542", + publisher = "Springer Verlag", + address = "Berlin, Germany" +} + + +If you wish to use this software for commercial applications, obtain the prior +permission of Dr. Holger hoos (hoos@cs.ubc.ca). + +Thanks, and enjoy. + +-The UBCSAT Team + + + +LEGAL VERSION: + +Copyright (c) 2003. The University of British Columbia + +Under no circumstances shall this software and associated documenation +(the "Software") be used in a commercial endeavour without the prior +expressed permission of Dr. Holger Hoos (hoos@cs.ubc.ca) or another designated +faculty member of The University of British Columbia. + +Excluding the above provision, permission is hereby granted, free of charge, +to any person obtaining a copy of the Software, to deal in the Software for +non-commercial applicaitons without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and to permit +persons to whom the Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. + diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat.exe b/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat.exe new file mode 100644 index 000000000..7876661eb Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat.exe differ diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat_output0.030597255098425036.txt b/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat_output0.030597255098425036.txt new file mode 100644 index 000000000..e69de29bb diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat_output0.4128778073427747.txt b/sparkle/Components/paramils-v3.0.0/example_saps/ubcsat_output0.4128778073427747.txt new file mode 100644 index 000000000..e69de29bb diff --git a/sparkle/Components/paramils-v3.0.0/example_saps/win_saps_wrapper.rb b/sparkle/Components/paramils-v3.0.0/example_saps/win_saps_wrapper.rb new file mode 100644 index 000000000..3e673aae1 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_saps/win_saps_wrapper.rb @@ -0,0 +1,59 @@ +#=== Deal with inputs. +if ARGV.length < 5 + puts "saps_wrapper.rb is a wrapper for the SAPS algorithm." + puts "Usage: ruby saps_wrapper.rb ." + exit -1 +end +cnf_filename = ARGV[0] +instance_specifics = ARGV[1] +cutoff_time = ARGV[2].to_f +cutoff_length = ARGV[3].to_i +seed = ARGV[4].to_i + +#=== Here I assume instance_specifics only contains the desired target quality or nothing at all for the instance, but it could contain more (to be specified in the instance_file or instance_seed_file) +if instance_specifics == "" + qual = 0 +else + qual = instance_specifics.split[0] +end + +paramstring = ARGV[5...ARGV.length].join(" ") + +#=== Build algorithm command and execute it. +cmd = "example_saps/ubcsat.exe -alg saps #{paramstring} -inst #{cnf_filename} -cutoff #{cutoff_length} -timeout #{cutoff_time} -target #{qual} -seed #{seed} -r stats stdout default,best" + +filename = "example_saps/ubcsat_output#{rand}.txt" +exec_cmd = "#{cmd} > #{filename}" + +puts "Calling: #{exec_cmd}" +system exec_cmd + +#=== Parse algorithm output to extract relevant information for ParamILS. +solved = nil +runtime = nil +runlength = nil +best_sol = nil + +File.open(filename){|file| + while line = file.gets + if line =~ /SuccessfulRuns = (\d+)/ + numsolved = $1.to_i + if numsolved > 0 + solved = "SAT" + else + solved = "TIMEOUT" + end + end + if line =~ /CPUTime_Mean = (.*)$/ + runtime = $1.to_f + end + if line =~ /Steps_Mean = (\d+)/ + runlength = $1.to_i + end + if line =~ /BestSolution_Mean = (\d+)/ + best_sol = $1.to_i + end + end +} +File.delete(filename) +puts "Result for ParamILS: #{solved}, #{runtime}, #{runlength}, #{best_sol}, #{seed}" diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/Spear-32_1.2.1 b/sparkle/Components/paramils-v3.0.0/example_spear/Spear-32_1.2.1 new file mode 100644 index 000000000..3c13aaf51 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/example_spear/Spear-32_1.2.1 differ diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/configs183749155.txt b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/configs183749155.txt new file mode 100644 index 000000000..26d74a0c4 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/configs183749155.txt @@ -0,0 +1 @@ +-sp-clause-activity-inc '1' -sp-clause-decay '1.4' -sp-clause-del-heur '2' -sp-first-restart '100' -sp-learned-clause-sort-heur '0' -sp-learned-clauses-inc '1.3' -sp-learned-size-factor '0.4' -sp-max-res-lit-inc '1' -sp-max-res-runs '4' -sp-orig-clause-sort-heur '0' -sp-phase-dec-heur '5' -sp-rand-phase-dec-freq '0.001' -sp-rand-phase-scaling '1' -sp-rand-var-dec-freq '0.001' -sp-rand-var-dec-scaling '1' -sp-res-cutoff-cls '8' -sp-res-cutoff-lits '400' -sp-res-order-heur '0' -sp-resolution '1' -sp-restart-inc '1.5' -sp-update-dec-queue '1' -sp-use-pure-literal-rule '1' -sp-var-activity-inc '1' -sp-var-dec-heur '16' -sp-variable-decay '1.4' diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/configs725701097.txt b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/configs725701097.txt new file mode 100644 index 000000000..e69de29bb diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/detailed-traj-run-183749155.csv b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/detailed-traj-run-183749155.csv new file mode 100644 index 000000000..c61fe2ae5 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/detailed-traj-run-183749155.csv @@ -0,0 +1,9 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Full Configuration" +"0.0"," 1.7976931348623157E308","0.0","1","0.0", " sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4'" +"0.42"," 0.42","0.615","1","0.133524168", " sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4'" +"0.6900000000000001"," 0.295","0.939","1","0.14355682000000003", " sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4'" +"5.579999999999997"," 0.14","4.675","1","0.28444386499999996", " sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4'" +"5.579999999999997"," 0.049999999999999996","4.676","35","0.28529017", " sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='16', sp-variable-decay='1.4'" +"20.18000000000002"," 0.043333333333333335","13.467","35","0.6432045879999998", " sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='16', sp-variable-decay='1.4'" +"20.280000000000022"," 0.037142857142857144","13.571","35","0.6472371500000001", " sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='16', sp-variable-decay='1.4'" +"29.51000000000015"," 0.03375","19.673","35","0.832815311", " sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='16', sp-variable-decay='1.4'" diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/detailed-traj-run-725701097.csv b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/detailed-traj-run-725701097.csv new file mode 100644 index 000000000..dab9819c1 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/detailed-traj-run-725701097.csv @@ -0,0 +1,4 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Full Configuration" +"0.0"," 1.7976931348623157E308","0.0","1","0.0", " sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4'" +"0.34"," 0.34","0.53","1","0.101958369", " sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4'" +"0.54"," 0.17","0.648","1","0.11161180300000006", " sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4'" diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-err183749155.txt b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-err183749155.txt new file mode 100644 index 000000000..e69de29bb diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-err725701097.txt b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-err725701097.txt new file mode 100644 index 000000000..e69de29bb diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-run183749155.txt b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-run183749155.txt new file mode 100644 index 000000000..cfdfbf1ab --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-run183749155.txt @@ -0,0 +1,668 @@ +18:46:08.057 [main] INFO c.u.c.b.a.l.ComplexLoggingOptions - Logging to: /home/aymeric/git/paramils_example/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-run183749155.txt +18:46:08.064 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of Java Runtime Environment is OpenJDK 64-Bit Server VM (1.8.0_112) +18:46:08.064 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of OS is Linux 4.8.13-1-ARCH (amd64) +18:46:08.064 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of ParamILS is 3.0.0 +18:46:08.064 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of Random Forest Library is v1.05.01-master-106 (7fba58fe4271) +18:46:08.064 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of SMAC is ERROR LOADING VERSION INFORMATION +18:46:08.065 [main] INFO c.u.c.b.a.m.j.JCommanderHelper - Call String: paramils --scenario-file example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt --validation FALSE +18:46:08.065 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ********** The next bit of output can be ignored, it is merely useful for debugging ********** +18:46:08.066 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ==========Environment Variables=========== +COLORFGBG=default;default +COLORTERM=rxvt +DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus +DISPLAY=:0 +EDITOR=emacs +FT2_SUBPIXEL_HINTING=0 +HISTFILE=/home/aymeric/.history +HISTIGNORE=ls:ll:bg:fg:exit:reset:clear:cd:cd ..:cd..:..:... +HISTSIZE=5000 +HOME=/home/aymeric +LANG=en_US.UTF-8 +LOGNAME=aymeric +MAIL=/var/spool/mail/aymeric +MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins +NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat +OLDPWD=/home/aymeric +PATH=/home/aymeric/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl +PWD=/home/aymeric/git/paramils_example +SAVEHIST=1000 +SHELL=/bin/zsh +SHLVL=3 +TERM=rxvt-unicode-256color +USER=aymeric +USE_EDITOR=emacs +VISUAL=emacs +WINDOWID=65011721 +WINDOWPATH=1 +XAUTHORITY=/home/aymeric/.Xauthority +XDG_RUNTIME_DIR=/run/user/1000 +XDG_SEAT=seat0 +XDG_SESSION_ID=c1 +XDG_VTNR=1 +XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt +_JAVA_AWT_WM_NONREPARENTING=1 + +18:46:08.069 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - Hostname:[UNABLE TO DETERMINE HOSTNAME] +18:46:08.070 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ==========System Properties============== +ERRLOG=/home/aymeric/git/paramils_example/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-err183749155.txt +NUMRUN=183749155 +OUTPUTDIR=/home/aymeric/git/paramils_example/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test +ROOT-LEVEL=INFO +RUNLOG=/home/aymeric/git/paramils_example/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-run183749155.txt +STDOUT-LEVEL=INFO +WARNLOG=/home/aymeric/git/paramils_example/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-warn183749155.txt +awt.toolkit=sun.awt.X11.XToolkit +file.encoding=UTF-8 +file.encoding.pkg=sun.io +file.separator=/ +java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment +java.awt.printerjob=sun.print.PSPrinterJob +java.class.path=./lib/jcip-annotations.jar:./lib/smac.jar:./lib/aeatk.jar:./lib/jackson-databind-2.3.1.jar:./lib/jcommander.jar:./lib/jackson-annotations-2.3.1.jar:./lib/exp4j-0.3.10.jar:./lib/paramils.jar:./lib/logback-classic-1.1.2.jar:./lib/jackson-core-2.3.1.jar:./lib/opencsv-2.3.jar:./lib/slf4j-api-1.7.5.jar:./lib/numerics4j-1.3.jar:./lib/guava-14.0.1.jar:./lib/DomainInter.jar:./lib/logback-access-1.1.2.jar:./lib/commons-math3-3.2.jar:./lib/logback-core-1.1.2.jar:./lib/Jama-1.0.2.jar:./lib/commons-io-2.1.jar:./lib/commons-collections-3.2.1.jar:./lib/fastrf.jar:./lib/commons-math-2.2.jar:./lib/jmatharray.jar:./lib/spi-0.2.4.jar +java.class.version=52.0 +java.endorsed.dirs=/usr/lib/jvm/java-8-openjdk/jre/lib/endorsed +java.ext.dirs=/usr/lib/jvm/java-8-openjdk/jre/lib/ext:/usr/java/packages/lib/ext +java.home=/usr/lib/jvm/java-8-openjdk/jre +java.io.tmpdir=/tmp +java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib +java.runtime.name=OpenJDK Runtime Environment +java.runtime.version=1.8.0_112-b15 +java.specification.name=Java Platform API Specification +java.specification.vendor=Oracle Corporation +java.specification.version=1.8 +java.vendor=Oracle Corporation +java.vendor.url=http://java.oracle.com/ +java.vendor.url.bug=http://bugreport.sun.com/bugreport/ +java.version=1.8.0_112 +java.vm.info=mixed mode +java.vm.name=OpenJDK 64-Bit Server VM +java.vm.specification.name=Java Virtual Machine Specification +java.vm.specification.vendor=Oracle Corporation +java.vm.specification.version=1.8 +java.vm.vendor=Oracle Corporation +java.vm.version=25.112-b15 +line.separator= + +logback.configurationFile=ca/ubc/cs/beta/aeatk/logging/complex-logback.xml +os.arch=amd64 +os.name=Linux +os.version=4.8.13-1-ARCH +path.separator=: +sun.arch.data.model=64 +sun.boot.class.path=/usr/lib/jvm/java-8-openjdk/jre/lib/resources.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/rt.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/jsse.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/jce.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/charsets.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/jfr.jar:/usr/lib/jvm/java-8-openjdk/jre/classes +sun.boot.library.path=/usr/lib/jvm/java-8-openjdk/jre/lib/amd64 +sun.cpu.endian=little +sun.cpu.isalist= +sun.io.unicode.encoding=UnicodeLittle +sun.java.command=ca.ubc.cs.beta.aeatk.ant.execscript.Launcher ca.ubc.cs.beta.paramils.executors.ParamILSExecutor --scenario-file example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt --validation FALSE +sun.java.launcher=SUN_STANDARD +sun.jnu.encoding=UTF-8 +sun.management.compiler=HotSpot 64-Bit Tiered Compilers +sun.os.patch.level=unknown +user.country=US +user.dir=/home/aymeric/git/paramils_example +user.home=/home/aymeric +user.language=en +user.name=aymeric +user.timezone=Europe/Paris + +18:46:08.071 [main] INFO c.u.c.b.a.m.j.JCommanderHelper - ==========Configuration Options========== +[ParamILSOptions] + multiObjective = false + initialIncumbent = DEFAULT + initialIncumbentFile = + minRuns = 1 + maxRuns = 2000 + R = 10 + perturbationLength = 3 + randomRestartProbability = 0.05 + approach = FOCUSED + bonusRunsMode = INTENSIFY + cappingMode = AUTO + aggressiveCapping = true + aggressiveCappingFactor = 2.0 + cutoffThreshold = 0.1 + cappingMinValue = 0.0 + doValidation = false + validationRuns = 1000 + compareInitialConfiguration = false + validateOnTrainingSet = false + logDetails = false + alwaysRunInitialConfiguration = false + deterministicInstanceOrdering = false + experimentDir = /home/aymeric/git/paramils_example/ +help = [HelpOptions] + showHiddenParameters = false + showHelp = false + helpLevel = BASIC + showVersion = false + helpDefaults = /home/aymeric/.aeatk/help.opt + +logOptions = [ComplexLoggingOptions] + consoleLogLevel = INFO + logLevel = INFO + + optionFile = null + optionFile2 = null +runGroupOptions = [RunGroupOptions] + runGroupName = %SCENARIO_NAME + runGroupExit = false + replacementChar = % + +scenarioConfig = [ScenarioOptions] + _runObj = RUNTIME + intraInstanceObj = MEAN + interInstanceObj = MEAN + limitOptions = [TerminationCriteriaOptions] + tunerTimeout = 30 + numIterations = 2147483647 + runtimeLimit = 2147483647 + totalNumRunsLimit = 9223372036854775807 + countSMACTimeAsTunerTime = false + challengeIncumbentAttempts = 1000 + fileToWatch = null + + instanceOptions = [ProblemInstanceOptions] + instanceFile = example_data/SWGCP-satisfiable-small-train.txt + instanceFeatureFile = null + testInstanceFile = example_data/SWGCP-satisfiable-small-test.txt + checkInstanceFilesExist = false + useInstances = true + instanceSuffix = null + testInstanceSuffix = null + ignoreFeatures = false + + scenarioFile = /home/aymeric/git/paramils_example/example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt + outputDirectory = example_spear/paramils-out + invalidScenarioReason = null + algoExecOptions = [AlgorithmExecutionOptions] + algoExec = ruby example_spear/spear_wrapper.rb + algoExecDir = . + deterministic = false + cutoffTime = 5.0 + cutoffLength = 1.7976931348623157E308 + additionalContext = {} + taeOpts = [TargetAlgorithmEvaluatorOptions] + targetAlgorithmEvaluator = CLI + abortOnCrash = false + abortOnFirstRunCrash = true + retryCount = 0 + cacheRuns = false + cacheDebug = false + useDynamicCappingExclusively = false + reportStrictlyIncreasingRuntimes = false + boundRuns = false + maxConcurrentAlgoExecs = 1 + exitOnFailure = false + runHashCodeFile = null + leakMemory = false + leakMemoryAmount = 1024 + verifySAT = null + checkSATConsistency = true + checkSATConsistencyException = true + callObserverBeforeCompletion = true + prePostOptions = [PrePostCommandOptions] + preCommand = null + postCommand = null + exceptionOnError = false + logOutput = true + directory = /home/aymeric/git/paramils_example/. + + checkResultOrderConsistent = false + skipOutstandingEvaluationsTAE = false + logRequestResponses = false + logRequestResponsesRCOnly = false + trackRunsScheduled = false + trackRunsScheduledResolution = 1.0 + uncleanShutdownCheck = true + killCaptimeExceedingRun = true + killCaptimeExceedingRunFactor = 10.0 + checkRunConfigsUnique = true + checkRunConfigsUniqueException = true + observeWalltimeIfNoRuntime = true + observeWalltimeScale = 0.95 + observeWalltimeDelay = 5.0 + synchronousObserver = true + taeDefaults = /home/aymeric/.aeatk/tae.opt + ttaedo = [TransformTargetAlgorithmEvaluatorDecoratorOptions] + transform = false + transformValidValuesOnly = true + SAT_runtime_transform = R + SAT_quality_transform = Q + UNSAT_runtime_transform = R + UNSAT_quality_transform = Q + TIMEOUT_runtime_transform = R + TIMEOUT_quality_transform = Q + other_runtime_transform = R + other_quality_transform = Q + + tForkOptions = [ForkingTargetAlgorithmEvaluatorDecoratorOptions] + forkToTAE = null + fPolicyOptions = [ForkingTargetAlgorithmEvaluatorDecoratorPolicyOptions] + fPolicy = null + duplicateOnSlaveQuickTimeout = 5 + + + fileToWatch = null + warnIfNoResponseFromTAE = 120 + taeStopProcessingOnShutdown = true + filecache = false + fileCacheSource = null + fileCacheOutput = null + fileCacheCrashOnMiss = false + + paramFileDelegate = [ParamConfigurationSpaceOptions] + paramFile = example_spear/spear-params.txt + searchSubspace = null + searchSubspaceFile = null + continuousNeighbours = 4 + + + +seedOptions = [SeedOptions] + seedOffset = 0 + numRun = 183749155 + initialSeedMap = {} + + paramilsDefaults = /home/aymeric/.aeatk/paramils.opt +trackingOptions = [ParamConfigurationOriginTrackingOptions] + configTracking = false + + validationSeed = 0 + +[AnalyticTargetAlgorithmEvaluatorOptions] + simulateDelay = false + cores = 0 + observerFrequency = 100 + func = CAMELBACK + scaleDelay = 1.0 + +[BlackHoleTargetAlgorithmEvaluatorOptions] + warnings = true + +[CommandLineTargetAlgorithmEvaluatorOptions] + observerFrequency = 500 + concurrentExecution = true + cores = 1 + logAllCallStrings = false + logAllResultLines = false + logAllCallsAndResultLines = false + logAllProcessOutput = false + listenForUpdates = true + paramArgumentsContainQuotes = false + pgEnvKillCommand = null + pgNiceKillCommand = bash -c "kill -s TERM -%pid" + pgForceKillCommand = bash -c "kill -s KILL -%pid" + procNiceKillCommand = kill -s TERM %pid + procForceKillCommand = kill -s KILL %pid + smacDefaults = /home/aymeric/.aeatk/cli-tae.opt + +[IPCTargetAlgorithmEvaluatorOptions] + persistent = false + ipcMechanism = UDP + encodingMechanism = CALL_STRING + remoteHost = 127.0.0.1 + remotePort = 5050 + udpPacketSize = 4096 + localPort = 0 + execScript = null + execScriptOutput = false + poolConnections = false + ipcDefaults = /home/aymeric/.aeatk/ipc-tae.opt + asyncThreads = 5 + +[PreloadedResponseTargetAlgorithmEvaluatorOptions] + preloadedResponses = + runLength = -1.0 + quality = 0.0 + additionalRunData = + +[RandomResponseTargetAlgorithmEvaluatorOptions] + simulateDelay = false + additionalRunData = + cores = 0 + maxResponse = 10.0 + minResponse = 0.0 + observerFrequency = 500 + trendCoefficient = 0.0 + seed = 1488908767664 + persistent = false + scaleDelay = 1.0 + + +18:46:08.162 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - ParamILS started at: Mar 7, 2017 6:46:08 PM. Minimizing mean runtime. +18:46:08.295 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 5 --seed 2929725 > ./example_spear/spear_output0.885199264163241.txt +18:46:08.754 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Intensifying #1 (incumbent) ... 1 bonus run +18:46:08.756 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Config #1 (incumbent) updated! +18:46:08.756 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - ∞ -> 0.42 (based on 0 and 1 runs) +18:46:08.756 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Looking for random initial solutions better than the initial incumbent +18:46:08.811 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 2.0 --sp-clause-del-heur 0 --sp-first-restart 800 --sp-learned-clause-sort-heur 9 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 2 --sp-max-res-runs 1 --sp-orig-clause-sort-heur 6 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 0.6 --sp-rand-var-dec-freq 0 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 800 --sp-res-order-heur 4 --sp-resolution 2 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 7 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7079500026742034.txt +18:46:08.871 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 5 --seed 8672913 > ./example_spear/spear_output0.2832553490818075.txt +18:46:09.079 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Intensifying #1 (incumbent) ... 1 bonus run +18:46:09.080 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Config #1 (incumbent) updated! +18:46:09.080 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - 0.42 -> 0.295 (based on 1 and 2 runs) +18:46:09.138 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 2.0 --sp-clause-del-heur 0 --sp-first-restart 800 --sp-learned-clause-sort-heur 9 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 2 --sp-max-res-runs 1 --sp-orig-clause-sort-heur 6 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 0.6 --sp-rand-var-dec-freq 0 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 800 --sp-res-order-heur 4 --sp-resolution 2 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 7 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 5 --seed 2929725 > ./example_spear/spear_output0.9714455957038048.txt +18:46:09.998 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 1 --sp-first-restart 25 --sp-learned-clause-sort-heur 8 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.2 --sp-max-res-lit-inc 1 --sp-max-res-runs 32 --sp-orig-clause-sort-heur 6 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1.1 --sp-rand-var-dec-freq 0.005 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 1600 --sp-res-order-heur 17 --sp-resolution 2 --sp-restart-inc 1.3 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.25027302727265655.txt +18:46:10.066 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 1.1 --sp-clause-del-heur 0 --sp-first-restart 100 --sp-learned-clause-sort-heur 7 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.1 --sp-max-res-lit-inc 1 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 1 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0 --sp-rand-var-dec-freq 0.01 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 16 --sp-res-cutoff-lits 100 --sp-res-order-heur 1 --sp-resolution 1 --sp-restart-inc 1.7 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1 --sp-var-dec-heur 1 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2230554594911187.txt +18:46:10.121 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 2.0 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 7 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.1 --sp-max-res-lit-inc 2 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 7 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.005 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 100 --sp-res-order-heur 2 --sp-resolution 2 --sp-restart-inc 1.1 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 8 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7048580600683196.txt +18:46:10.177 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 400 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 1.6 --sp-orig-clause-sort-heur 17 --sp-phase-dec-heur 4 --sp-rand-phase-dec-freq 0.05 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1.1 --sp-resolution 0 --sp-restart-inc 1.3 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 0.5 --sp-var-dec-heur 18 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.13927483984509148.txt +18:46:10.232 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 1.4 --sp-clause-del-heur 0 --sp-first-restart 50 --sp-learned-clause-sort-heur 2 --sp-learned-clauses-inc 1.1 --sp-learned-size-factor 0.1 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-resolution 0 --sp-restart-inc 1.7 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 18 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.0985838009197012.txt +18:46:10.288 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 1.4 --sp-clause-del-heur 1 --sp-first-restart 1600 --sp-learned-clause-sort-heur 8 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 2 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 18 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.01 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 16 --sp-res-cutoff-lits 800 --sp-res-order-heur 14 --sp-resolution 1 --sp-restart-inc 1.7 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 1 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4384326333262354.txt +18:46:10.344 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 0 --sp-first-restart 800 --sp-learned-clause-sort-heur 16 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.8 --sp-orig-clause-sort-heur 3 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.05 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.0001 --sp-rand-var-dec-scaling 0.6 --sp-resolution 0 --sp-restart-inc 1.1 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 15 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3024260618928142.txt +18:46:10.400 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 2.0 --sp-clause-del-heur 1 --sp-clause-inversion 1 --sp-first-restart 200 --sp-learned-clause-sort-heur 19 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.1 --sp-max-res-lit-inc 4 --sp-max-res-runs 1 --sp-orig-clause-sort-heur 18 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.3 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 100 --sp-res-order-heur 5 --sp-resolution 2 --sp-restart-inc 1.9 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 11 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7544324825110371.txt +18:46:10.405 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - == Starting Iteration 1 == +18:46:10.406 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Tuner time: 2.26s elapsed +18:46:10.406 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Initial configuration (#1 (incumbent)) +18:46:10.406 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - -> 0.295 (based on 2 runs) +18:46:10.458 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 13 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.48598648226354446.txt +18:46:10.514 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 13 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.084422933896531.txt +18:46:10.569 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9206265559574295.txt +18:46:10.673 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.049815518630189515.txt +18:46:10.731 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.09533298802542822.txt +18:46:10.794 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5486409297625271.txt +18:46:10.850 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 8 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.14686129494139144.txt +18:46:10.906 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9671403019561056.txt +18:46:10.963 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.6 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4375123794866078.txt +18:46:11.019 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.005 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2727995283370318.txt +18:46:11.076 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8624073364381405.txt +18:46:11.132 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 12 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.07637965229901578.txt +18:46:11.188 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 6 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.19333188094244358.txt +18:46:11.245 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9943825948812228.txt +18:46:11.301 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 17 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.26218161004937657.txt +18:46:11.357 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 12 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2148067306613457.txt +18:46:11.415 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 11 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8160234164942024.txt +18:46:11.473 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 4 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8365177071217589.txt +18:46:11.534 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3298163646262746.txt +18:46:11.591 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.25 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6253277377844348.txt +18:46:11.647 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.1 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.055276439823224166.txt +18:46:11.703 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 11 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9259278248506496.txt +18:46:11.771 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 12 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5683741255701207.txt +18:46:11.831 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 3 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.46081819741782126.txt +18:46:11.895 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3850646897377259.txt +18:46:11.968 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.4407548270327696.txt +18:46:12.027 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 5 --seed 3794522 > ./example_spear/spear_output0.6593454176399656.txt +18:46:12.137 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 5 --seed 14716352 > ./example_spear/spear_output0.6509161021268743.txt +18:46:12.441 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf --tmout 5 --seed 11546807 > ./example_spear/spear_output0.10391418014973786.txt +18:46:12.444 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Intensifying #35 ... 3 bonus runs +18:46:12.501 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 5 --seed 3794522 > ./example_spear/spear_output0.6835430884004106.txt +18:46:12.610 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 5 --seed 14716352 > ./example_spear/spear_output0.8182619236479199.txt +18:46:12.764 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf --tmout 5 --seed 11546807 > ./example_spear/spear_output0.813925910285936.txt +18:46:12.816 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Config #1 (incumbent) updated! +18:46:12.816 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - 0.295 -> 0.14 (based on 2 and 5 runs) +18:46:12.817 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - New incumbent! (#35) +18:46:12.817 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - sp-var-dec-heur: 0 -> 16 +18:46:12.817 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - 0.14 -> 0.05 (based on 5 and 5 runs) +18:46:12.875 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-resolution 0 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.019931265532197484.txt +18:46:12.938 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 10 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.14274198941649296.txt +18:46:13.001 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4889252281931845.txt +18:46:13.061 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 7 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.27308192604342096.txt +18:46:13.117 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 25 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6435550394193149.txt +18:46:13.180 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1.1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.49102287035207226.txt +18:46:13.240 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 9 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.14708473219252693.txt +18:46:13.294 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 3200 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7519252790284007.txt +18:46:13.363 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.1 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.16889406749473035.txt +18:46:13.423 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6861882254326046.txt +18:46:13.485 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 4 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.1610559785606578.txt +18:46:13.551 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 400 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5536938742657184.txt +18:46:13.605 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 11 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3071843604849642.txt +18:46:13.664 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 12 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6913523704015345.txt +18:46:13.720 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4867802552489441.txt +18:46:13.777 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 11 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.38134391282673763.txt +18:46:13.844 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3444986754959466.txt +18:46:13.900 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 7 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.006134217577851264.txt +18:46:13.967 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 6 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5566335948856828.txt +18:46:14.027 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 14 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6890615258806946.txt +18:46:14.080 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9013457853330868.txt +18:46:14.149 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5509150287825887.txt +18:46:14.205 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.6 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.20782789034874694.txt +18:46:14.265 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.005 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7157481830357366.txt +18:46:14.320 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 13 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.598205573047491.txt +18:46:14.384 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 7 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4406180793457122.txt +18:46:14.446 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 100 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9870640592044279.txt +18:46:14.508 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 2 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8881400545728722.txt +18:46:14.567 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 16 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5839983352506923.txt +18:46:14.621 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.2 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.1769649480106893.txt +18:46:14.689 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 14 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8320040746961292.txt +18:46:14.745 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 16 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9287593853189338.txt +18:46:14.801 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.1694919979084799.txt +18:46:14.859 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 18 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2930691654016365.txt +18:46:14.915 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 17 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.19650058500698675.txt +18:46:14.971 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 3 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.05534065152657852.txt +18:46:15.074 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6178498040857013.txt +18:46:15.130 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 8 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7013375711247085.txt +18:46:15.186 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2403756224245378.txt +18:46:15.242 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 6 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.0700661715715919.txt +18:46:15.297 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 1 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8064022700486908.txt +18:46:15.352 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 5 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8679896932567511.txt +18:46:15.407 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9380573674422151.txt +18:46:15.467 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 200 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.803477267844542.txt +18:46:15.540 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 8 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4261370580627326.txt +18:46:15.595 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 2.0 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.43294867472639365.txt +18:46:15.650 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 800 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9351626698986518.txt +18:46:15.753 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 2 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.021747718758423518.txt +18:46:15.814 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6791496722432507.txt +18:46:15.870 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 0 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.696191186714229.txt +18:46:15.972 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.9 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9389942178367827.txt +18:46:16.027 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.3 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.005126235424308123.txt +18:46:16.083 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 16 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.49781399779323443.txt +18:46:16.138 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 4 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.18541156817914772.txt +18:46:16.194 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 12 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7794030157605634.txt +18:46:16.250 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.1 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.07450500322190734.txt +18:46:16.306 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 18 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7190141576606548.txt +18:46:16.361 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 14 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5163706339210296.txt +18:46:16.416 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 19 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5365513778946865.txt +18:46:16.474 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 9 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.19486353118865574.txt +18:46:16.532 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.0001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3233854492741687.txt +18:46:16.634 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 16 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.706343523746745.txt +18:46:16.689 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 18 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.08642366753658359.txt +18:46:16.745 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 2 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.27337339735716604.txt +18:46:16.799 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 2 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.19196698113516197.txt +18:46:16.854 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.1 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.29189720519025064.txt +18:46:16.910 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 5 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6099304123800046.txt +18:46:16.966 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8119813804849672.txt +18:46:17.021 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 1 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9314335569054057.txt +18:46:17.077 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 2 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3502610422019742.txt +18:46:17.132 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2135314174110602.txt +18:46:17.187 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 17 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6504782683962179.txt +18:46:17.242 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 2 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.44493653066338257.txt +18:46:17.297 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 1 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6335926621151586.txt +18:46:17.352 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.727635698660248.txt +18:46:17.408 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-clause-inversion 1 --sp-first-restart 100 --sp-learned-clause-sort-heur 19 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.39840423814185855.txt +18:46:17.467 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5247987033711946.txt +18:46:17.524 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 9 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.10645081962054959.txt +18:46:17.626 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 20 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.004496489945643223.txt +18:46:17.681 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 19 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.487711094000722.txt +18:46:17.738 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.005 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.25018930284862495.txt +18:46:17.795 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 200 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2111059462134759.txt +18:46:17.850 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 1600 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9415977277960946.txt +18:46:17.906 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 32 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5895393355234666.txt +18:46:17.962 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4550635626206979.txt +18:46:18.018 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 1600 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3713003252505074.txt +18:46:18.074 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 15 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8618328967163645.txt +18:46:18.129 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.07370067661645874.txt +18:46:18.184 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 15 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8522585983205389.txt +18:46:18.239 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.3 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.24242954614644496.txt +18:46:18.294 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 17 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.33026883372028404.txt +18:46:18.352 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 4 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6667581678302278.txt +18:46:18.411 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 15 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3866382693160474.txt +18:46:18.466 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 19 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.13532587054171008.txt +18:46:18.529 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 13 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7692136008156356.txt +18:46:18.584 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 4 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6691454932571139.txt +18:46:18.644 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 18 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.419818733414986.txt +18:46:18.699 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.7 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4168249390415655.txt +18:46:18.754 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.5 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3305343422291277.txt +18:46:18.809 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 2 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.1323164673854048.txt +18:46:18.864 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 6 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7621414379096761.txt +18:46:18.967 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.1 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.17798543907012754.txt +18:46:19.021 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 3 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5882175625629458.txt +18:46:19.076 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 11 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6234651476700583.txt +18:46:19.131 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 5 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8427433878300046.txt +18:46:19.186 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 10 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9624631426111254.txt +18:46:19.268 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 9 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.11900200645507475.txt +18:46:19.320 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 12 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3973660106349144.txt +18:46:19.375 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 3 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.46294262011860776.txt +18:46:19.430 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 1 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.37573208904808275.txt +18:46:19.485 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 11 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7087292516699496.txt +18:46:19.539 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.024302970436244964.txt +18:46:19.642 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 3 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5243890270884612.txt +18:46:19.696 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 4 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.16318671252136607.txt +18:46:19.759 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 14 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6963619721523604.txt +18:46:19.814 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 2 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8079461215682981.txt +18:46:19.874 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 50 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4164220455432396.txt +18:46:19.941 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 800 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2993960156454262.txt +18:46:19.996 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.9 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9701885076354445.txt +18:46:20.050 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 3 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2625535522290814.txt +18:46:20.105 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 1 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7915240061700559.txt +18:46:20.160 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 8 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2230862649487424.txt +18:46:20.215 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 15 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2761762290033739.txt +18:46:20.270 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.28763674158787333.txt +18:46:20.331 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 1 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.06708314782139191.txt +18:46:20.386 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.07060229082884384.txt +18:46:20.442 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 5 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.37921140492861716.txt +18:46:20.497 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 10 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9144660512471378.txt +18:46:20.552 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 16 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9260710181815294.txt +18:46:20.608 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.03695507957249322.txt +18:46:20.710 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7506582688339519.txt +18:46:20.768 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 7 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.30188725111338544.txt +18:46:20.823 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 10 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.35950222778086527.txt +18:46:20.884 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.558423899680014.txt +18:46:20.944 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.6 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.954225762887175.txt +18:46:21.011 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 1 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6048754638186965.txt +18:46:21.071 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 6 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3308354140363947.txt +18:46:21.126 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.25 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.05395487647855868.txt +18:46:21.188 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 2 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.39826046741674004.txt +18:46:21.247 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 13 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2848593044959755.txt +18:46:21.308 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 0.5 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9708119495079701.txt +18:46:21.371 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.01 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.05791102962352623.txt +18:46:21.426 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 1.6 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.24707271758491278.txt +18:46:21.488 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.05 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6063494358481168.txt +18:46:21.547 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4610442581704235.txt +18:46:21.603 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 5 --seed 12213286 > ./example_spear/spear_output0.792989826073303.txt +18:46:21.607 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Intensifying #35 (incumbent) ... 1 bonus run +18:46:21.608 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Config #35 (incumbent) updated! +18:46:21.608 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - 0.05 -> 0.0433 (based on 5 and 6 runs) +18:46:21.660 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 5 --seed 313116 > ./example_spear/spear_output0.36008169883622476.txt +18:46:21.711 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Intensifying #35 (incumbent) ... 1 bonus run +18:46:21.712 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Config #35 (incumbent) updated! +18:46:21.712 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - 0.0433 -> 0.0371 (based on 6 and 7 runs) +18:46:21.712 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Local optima #35 (incumbent) accepted +18:46:21.712 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - 0.14 -> 0.0371 (based on 5 and 7 runs) +18:46:21.712 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - == Starting Iteration 2 == +18:46:21.712 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Tuner time: 20.28s elapsed +18:46:21.712 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Perturbing +18:46:21.714 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - sp-orig-clause-sort-heur: 0 -> 4 +18:46:21.765 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 5 --seed 8672913 > ./example_spear/spear_output0.3015146609908389.txt +18:46:21.824 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 5 --seed 3794522 > ./example_spear/spear_output0.3558234519844151.txt +18:46:21.926 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 5 --seed 14716352 > ./example_spear/spear_output0.38474111886557427.txt +18:46:22.231 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf --tmout 5 --seed 11546807 > ./example_spear/spear_output0.46186665009023486.txt +18:46:22.234 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Intensifying #68 ... 4 bonus runs +18:46:22.234 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Initial configuration (#68) +18:46:22.234 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - -> 0.054 (based on 5 runs) +18:46:22.286 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 12 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7864413037458684.txt +18:46:22.340 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 13 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.732611358218475.txt +18:46:22.395 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 13 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.21435462466663957.txt +18:46:22.449 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7425444465906164.txt +18:46:22.504 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.051038602026620805.txt +18:46:22.561 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 3 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.37996161285048524.txt +18:46:22.669 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 3 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.432896139490889.txt +18:46:22.772 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.18822006847841477.txt +18:46:22.827 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 7 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7544405968062349.txt +18:46:22.884 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.19594150491515527.txt +18:46:22.946 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.6 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5491174366206693.txt +18:46:23.049 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.005 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4269380596567849.txt +18:46:23.151 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4242976018362772.txt +18:46:23.253 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 11 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9801726180765227.txt +18:46:23.355 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 6 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7790253597296646.txt +18:46:23.410 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2528874218987862.txt +18:46:23.465 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 17 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.13885038368946434.txt +18:46:23.520 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 12 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.01745201754779946.txt +18:46:23.574 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 11 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6160365039485708.txt +18:46:23.631 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 4 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4370960581228974.txt +18:46:23.737 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9218055634664265.txt +18:46:23.792 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.25 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9361143288502904.txt +18:46:23.846 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.1 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.13896383874619112.txt +18:46:23.901 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 11 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.1780764138758012.txt +18:46:23.956 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 11 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.3311856293569322.txt +18:46:24.010 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 12 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.930036960297209.txt +18:46:24.065 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 12 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.351214958062958.txt +18:46:24.123 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 3 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9149071046563085.txt +18:46:24.187 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 15 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2204835981391272.txt +18:46:24.242 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 17 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8938271277946618.txt +18:46:24.297 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 1600 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.0633665611491746.txt +18:46:24.407 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 3 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.0703551562560144.txt +18:46:24.464 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 15 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5942235082479703.txt +18:46:24.524 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 8 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.42288463423018785.txt +18:46:24.579 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 3 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.038662025304109005.txt +18:46:24.634 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 1600 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.442091397548235.txt +18:46:24.694 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 2 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.1346445276162952.txt +18:46:24.751 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.28737473146631143.txt +18:46:24.805 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 13 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9578098429975521.txt +18:46:24.907 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 15 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7673579282003968.txt +18:46:24.963 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 3200 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.07848934281373243.txt +18:46:25.019 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.0001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7312217312509437.txt +18:46:25.084 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 6 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.32255156030284116.txt +18:46:25.139 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.26129254958702286.txt +18:46:25.199 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 12 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.531971005321134.txt +18:46:25.253 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.5 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5266428781286828.txt +18:46:25.308 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 1 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9249704914561871.txt +18:46:25.363 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.3 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.29408946457228324.txt +18:46:25.426 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 6 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9591292330748723.txt +18:46:25.481 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 14 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8002013333967362.txt +18:46:25.541 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 17 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.6642521930337708.txt +18:46:25.595 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 17 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.4540976902164574.txt +18:46:25.650 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.13060121960960014.txt +18:46:25.707 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 15 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.9461168707252917.txt +18:46:25.761 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 15 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.21098609285705217.txt +18:46:25.816 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 4 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6671059997962564.txt +18:46:25.871 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7338127999366887.txt +18:46:25.973 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 13 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.847774593317223.txt +18:46:26.029 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.6 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7244674166771831.txt +18:46:26.085 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-clause-inversion 1 --sp-first-restart 100 --sp-learned-clause-sort-heur 19 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9354612156867772.txt +18:46:26.154 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 16 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.6720169591198196.txt +18:46:26.207 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 16 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.07059017127295009.txt +18:46:26.311 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 800 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2831375108830132.txt +18:46:26.365 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 5 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.45782068838368395.txt +18:46:26.420 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 2 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.908783403068579.txt +18:46:26.474 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.156808510556947.txt +18:46:26.529 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6594219319720316.txt +18:46:26.584 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 7 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.01640330002263579.txt +18:46:26.643 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 7 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.4924115052201954.txt +18:46:26.698 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 1 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4095884273533684.txt +18:46:26.758 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 9 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.34518504934508987.txt +18:46:26.812 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 5 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7458592145510661.txt +18:46:26.869 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 1 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.11041927320515155.txt +18:46:26.931 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6680657745423637.txt +18:46:26.986 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 14 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4032257514124371.txt +18:46:27.040 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 1 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5537013668871891.txt +18:46:27.095 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 200 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.05165247866979117.txt +18:46:27.155 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 20 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2850000838029715.txt +18:46:27.213 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.9 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9941284129781404.txt +18:46:27.271 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 2 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3858141411398851.txt +18:46:27.373 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 4 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.16717648609743907.txt +18:46:27.431 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 100 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.47161594080645586.txt +18:46:27.537 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5015638312360536.txt +18:46:27.594 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 1 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.025634882917328072.txt +18:46:27.649 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1.1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.12104160641088513.txt +18:46:27.703 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 18 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5039379065549625.txt +18:46:27.762 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 5 --seed 13778780 > ./example_spear/spear_output0.9017708622169602.txt +18:46:27.813 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Intensifying #35 (incumbent) ... 1 bonus run +18:46:27.814 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Config #35 (incumbent) updated! +18:46:27.814 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - 0.0371 -> 0.0338 (based on 7 and 8 runs) +18:46:27.866 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-resolution 0 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.8647325177749406.txt +18:46:27.967 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 10 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.8415094265920439.txt +18:46:28.022 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.8530729175183221.txt +18:46:28.088 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 7 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 5 --seed 2929725 > ./example_spear/spear_output0.2015946653981614.txt +18:46:28.540 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - ParamILS completed +18:46:28.540 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ======================================================================== +18:46:28.540 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ParamILS has finished. Reason: total CPU time limit (30.0 s) has been reached. +18:46:28.541 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Total number of runs performed: 286 (284), total configurations tried: 250 +18:46:28.541 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Total CPU time used: 30 s, total wallclock time used: 20 s +18:46:28.541 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - ParamILS's final incumbent found iteration 1, ID #35 +18:46:28.541 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Estimated mean runtime of final incumbent on training set: 0.0338 +18:46:28.541 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Estimation based on 8 runs on 5 training instances +18:46:28.541 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Sample call for final incumbent: +cd /home/aymeric/git/paramils_example/.; ruby example_spear/spear_wrapper.rb example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf 0 5.0 2147483647 2929725 -sp-clause-activity-inc '1' -sp-clause-decay '1.4' -sp-clause-del-heur '2' -sp-first-restart '100' -sp-learned-clause-sort-heur '0' -sp-learned-clauses-inc '1.3' -sp-learned-size-factor '0.4' -sp-max-res-lit-inc '1' -sp-max-res-runs '4' -sp-orig-clause-sort-heur '0' -sp-phase-dec-heur '5' -sp-rand-phase-dec-freq '0.001' -sp-rand-phase-scaling '1' -sp-rand-var-dec-freq '0.001' -sp-rand-var-dec-scaling '1' -sp-res-cutoff-cls '8' -sp-res-cutoff-lits '400' -sp-res-order-heur '0' -sp-resolution '1' -sp-restart-inc '1.5' -sp-update-dec-queue '1' -sp-use-pure-literal-rule '1' -sp-var-activity-inc '1' -sp-var-dec-heur '0' -sp-variable-decay '1.4' +18:46:28.542 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - ------------------------------------------------------------------------ +18:46:28.542 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Differences with initial configuration: + sp-var-dec-heur: 0 -> 16 +18:46:28.542 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ======================================================================== +18:46:28.542 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - Additional information about run 183749155 in: /home/aymeric/git/paramils_example/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-run725701097.txt b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-run725701097.txt new file mode 100644 index 000000000..ec3f5c351 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-run725701097.txt @@ -0,0 +1,480 @@ +18:45:01.145 [main] INFO c.u.c.b.a.l.ComplexLoggingOptions - Logging to: /home/aymeric/git/paramils_example/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-run725701097.txt +18:45:01.151 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of Java Runtime Environment is OpenJDK 64-Bit Server VM (1.8.0_112) +18:45:01.151 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of OS is Linux 4.8.13-1-ARCH (amd64) +18:45:01.151 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of ParamILS is 3.0.0 +18:45:01.151 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of Random Forest Library is v1.05.01-master-106 (7fba58fe4271) +18:45:01.151 [main] INFO c.u.c.b.a.m.version.VersionTracker - Version of SMAC is ERROR LOADING VERSION INFORMATION +18:45:01.152 [main] INFO c.u.c.b.a.m.j.JCommanderHelper - Call String: paramils --scenario-file example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt --validation FALSE +18:45:01.152 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ********** The next bit of output can be ignored, it is merely useful for debugging ********** +18:45:01.152 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ==========Environment Variables=========== +COLORFGBG=default;default +COLORTERM=rxvt +DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus +DISPLAY=:0 +EDITOR=emacs +FT2_SUBPIXEL_HINTING=0 +HISTFILE=/home/aymeric/.history +HISTIGNORE=ls:ll:bg:fg:exit:reset:clear:cd:cd ..:cd..:..:... +HISTSIZE=5000 +HOME=/home/aymeric +LANG=en_US.UTF-8 +LOGNAME=aymeric +MAIL=/var/spool/mail/aymeric +MOZ_PLUGIN_PATH=/usr/lib/mozilla/plugins +NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat +OLDPWD=/home/aymeric +PATH=/home/aymeric/bin:/usr/local/sbin:/usr/local/bin:/usr/bin:/usr/lib/jvm/default/bin:/usr/bin/site_perl:/usr/bin/vendor_perl:/usr/bin/core_perl +PWD=/home/aymeric/git/paramils_example +SAVEHIST=1000 +SHELL=/bin/zsh +SHLVL=3 +TERM=rxvt-unicode-256color +USER=aymeric +USE_EDITOR=emacs +VISUAL=emacs +WINDOWID=65011721 +WINDOWPATH=1 +XAUTHORITY=/home/aymeric/.Xauthority +XDG_RUNTIME_DIR=/run/user/1000 +XDG_SEAT=seat0 +XDG_SESSION_ID=c1 +XDG_VTNR=1 +XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt +_JAVA_AWT_WM_NONREPARENTING=1 + +18:45:01.156 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - Hostname:[UNABLE TO DETERMINE HOSTNAME] +18:45:01.156 [main] INFO c.u.c.b.p.executors.ParamILSExecutor - ==========System Properties============== +ERRLOG=/home/aymeric/git/paramils_example/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-err725701097.txt +NUMRUN=725701097 +OUTPUTDIR=/home/aymeric/git/paramils_example/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test +ROOT-LEVEL=INFO +RUNLOG=/home/aymeric/git/paramils_example/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-run725701097.txt +STDOUT-LEVEL=INFO +WARNLOG=/home/aymeric/git/paramils_example/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-warn725701097.txt +awt.toolkit=sun.awt.X11.XToolkit +file.encoding=UTF-8 +file.encoding.pkg=sun.io +file.separator=/ +java.awt.graphicsenv=sun.awt.X11GraphicsEnvironment +java.awt.printerjob=sun.print.PSPrinterJob +java.class.path=./lib/jcip-annotations.jar:./lib/smac.jar:./lib/aeatk.jar:./lib/jackson-databind-2.3.1.jar:./lib/jcommander.jar:./lib/jackson-annotations-2.3.1.jar:./lib/exp4j-0.3.10.jar:./lib/paramils.jar:./lib/logback-classic-1.1.2.jar:./lib/jackson-core-2.3.1.jar:./lib/opencsv-2.3.jar:./lib/slf4j-api-1.7.5.jar:./lib/numerics4j-1.3.jar:./lib/guava-14.0.1.jar:./lib/DomainInter.jar:./lib/logback-access-1.1.2.jar:./lib/commons-math3-3.2.jar:./lib/logback-core-1.1.2.jar:./lib/Jama-1.0.2.jar:./lib/commons-io-2.1.jar:./lib/commons-collections-3.2.1.jar:./lib/fastrf.jar:./lib/commons-math-2.2.jar:./lib/jmatharray.jar:./lib/spi-0.2.4.jar +java.class.version=52.0 +java.endorsed.dirs=/usr/lib/jvm/java-8-openjdk/jre/lib/endorsed +java.ext.dirs=/usr/lib/jvm/java-8-openjdk/jre/lib/ext:/usr/java/packages/lib/ext +java.home=/usr/lib/jvm/java-8-openjdk/jre +java.io.tmpdir=/tmp +java.library.path=/usr/java/packages/lib/amd64:/usr/lib64:/lib64:/lib:/usr/lib +java.runtime.name=OpenJDK Runtime Environment +java.runtime.version=1.8.0_112-b15 +java.specification.name=Java Platform API Specification +java.specification.vendor=Oracle Corporation +java.specification.version=1.8 +java.vendor=Oracle Corporation +java.vendor.url=http://java.oracle.com/ +java.vendor.url.bug=http://bugreport.sun.com/bugreport/ +java.version=1.8.0_112 +java.vm.info=mixed mode +java.vm.name=OpenJDK 64-Bit Server VM +java.vm.specification.name=Java Virtual Machine Specification +java.vm.specification.vendor=Oracle Corporation +java.vm.specification.version=1.8 +java.vm.vendor=Oracle Corporation +java.vm.version=25.112-b15 +line.separator= + +logback.configurationFile=ca/ubc/cs/beta/aeatk/logging/complex-logback.xml +os.arch=amd64 +os.name=Linux +os.version=4.8.13-1-ARCH +path.separator=: +sun.arch.data.model=64 +sun.boot.class.path=/usr/lib/jvm/java-8-openjdk/jre/lib/resources.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/rt.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/sunrsasign.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/jsse.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/jce.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/charsets.jar:/usr/lib/jvm/java-8-openjdk/jre/lib/jfr.jar:/usr/lib/jvm/java-8-openjdk/jre/classes +sun.boot.library.path=/usr/lib/jvm/java-8-openjdk/jre/lib/amd64 +sun.cpu.endian=little +sun.cpu.isalist= +sun.io.unicode.encoding=UnicodeLittle +sun.java.command=ca.ubc.cs.beta.aeatk.ant.execscript.Launcher ca.ubc.cs.beta.paramils.executors.ParamILSExecutor --scenario-file example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt --validation FALSE +sun.java.launcher=SUN_STANDARD +sun.jnu.encoding=UTF-8 +sun.management.compiler=HotSpot 64-Bit Tiered Compilers +sun.os.patch.level=unknown +user.country=US +user.dir=/home/aymeric/git/paramils_example +user.home=/home/aymeric +user.language=en +user.name=aymeric +user.timezone=Europe/Paris + +18:45:01.157 [main] INFO c.u.c.b.a.m.j.JCommanderHelper - ==========Configuration Options========== +[ParamILSOptions] + multiObjective = false + initialIncumbent = DEFAULT + initialIncumbentFile = + minRuns = 1 + maxRuns = 2000 + R = 10 + perturbationLength = 3 + randomRestartProbability = 0.05 + approach = FOCUSED + bonusRunsMode = INTENSIFY + cappingMode = AUTO + aggressiveCapping = true + aggressiveCappingFactor = 2.0 + cutoffThreshold = 0.1 + cappingMinValue = 0.0 + doValidation = false + validationRuns = 1000 + compareInitialConfiguration = false + validateOnTrainingSet = false + logDetails = false + alwaysRunInitialConfiguration = false + deterministicInstanceOrdering = false + experimentDir = /home/aymeric/git/paramils_example/ +help = [HelpOptions] + showHiddenParameters = false + showHelp = false + helpLevel = BASIC + showVersion = false + helpDefaults = /home/aymeric/.aeatk/help.opt + +logOptions = [ComplexLoggingOptions] + consoleLogLevel = INFO + logLevel = INFO + + optionFile = null + optionFile2 = null +runGroupOptions = [RunGroupOptions] + runGroupName = %SCENARIO_NAME + runGroupExit = false + replacementChar = % + +scenarioConfig = [ScenarioOptions] + _runObj = RUNTIME + intraInstanceObj = MEAN + interInstanceObj = MEAN + limitOptions = [TerminationCriteriaOptions] + tunerTimeout = 30 + numIterations = 2147483647 + runtimeLimit = 2147483647 + totalNumRunsLimit = 9223372036854775807 + countSMACTimeAsTunerTime = false + challengeIncumbentAttempts = 1000 + fileToWatch = null + + instanceOptions = [ProblemInstanceOptions] + instanceFile = example_data/SWGCP-satisfiable-small-train.txt + instanceFeatureFile = null + testInstanceFile = example_data/SWGCP-satisfiable-small-test.txt + checkInstanceFilesExist = false + useInstances = true + instanceSuffix = null + testInstanceSuffix = null + ignoreFeatures = false + + scenarioFile = /home/aymeric/git/paramils_example/example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt + outputDirectory = example_spear/paramils-out + invalidScenarioReason = null + algoExecOptions = [AlgorithmExecutionOptions] + algoExec = ruby example_spear/spear_wrapper.rb + algoExecDir = . + deterministic = false + cutoffTime = 5.0 + cutoffLength = 1.7976931348623157E308 + additionalContext = {} + taeOpts = [TargetAlgorithmEvaluatorOptions] + targetAlgorithmEvaluator = CLI + abortOnCrash = false + abortOnFirstRunCrash = true + retryCount = 0 + cacheRuns = false + cacheDebug = false + useDynamicCappingExclusively = false + reportStrictlyIncreasingRuntimes = false + boundRuns = false + maxConcurrentAlgoExecs = 1 + exitOnFailure = false + runHashCodeFile = null + leakMemory = false + leakMemoryAmount = 1024 + verifySAT = null + checkSATConsistency = true + checkSATConsistencyException = true + callObserverBeforeCompletion = true + prePostOptions = [PrePostCommandOptions] + preCommand = null + postCommand = null + exceptionOnError = false + logOutput = true + directory = /home/aymeric/git/paramils_example/. + + checkResultOrderConsistent = false + skipOutstandingEvaluationsTAE = false + logRequestResponses = false + logRequestResponsesRCOnly = false + trackRunsScheduled = false + trackRunsScheduledResolution = 1.0 + uncleanShutdownCheck = true + killCaptimeExceedingRun = true + killCaptimeExceedingRunFactor = 10.0 + checkRunConfigsUnique = true + checkRunConfigsUniqueException = true + observeWalltimeIfNoRuntime = true + observeWalltimeScale = 0.95 + observeWalltimeDelay = 5.0 + synchronousObserver = true + taeDefaults = /home/aymeric/.aeatk/tae.opt + ttaedo = [TransformTargetAlgorithmEvaluatorDecoratorOptions] + transform = false + transformValidValuesOnly = true + SAT_runtime_transform = R + SAT_quality_transform = Q + UNSAT_runtime_transform = R + UNSAT_quality_transform = Q + TIMEOUT_runtime_transform = R + TIMEOUT_quality_transform = Q + other_runtime_transform = R + other_quality_transform = Q + + tForkOptions = [ForkingTargetAlgorithmEvaluatorDecoratorOptions] + forkToTAE = null + fPolicyOptions = [ForkingTargetAlgorithmEvaluatorDecoratorPolicyOptions] + fPolicy = null + duplicateOnSlaveQuickTimeout = 5 + + + fileToWatch = null + warnIfNoResponseFromTAE = 120 + taeStopProcessingOnShutdown = true + filecache = false + fileCacheSource = null + fileCacheOutput = null + fileCacheCrashOnMiss = false + + paramFileDelegate = [ParamConfigurationSpaceOptions] + paramFile = example_spear/spear-params.txt + searchSubspace = null + searchSubspaceFile = null + continuousNeighbours = 4 + + + +seedOptions = [SeedOptions] + seedOffset = 0 + numRun = 725701097 + initialSeedMap = {} + + paramilsDefaults = /home/aymeric/.aeatk/paramils.opt +trackingOptions = [ParamConfigurationOriginTrackingOptions] + configTracking = false + + validationSeed = 0 + +[AnalyticTargetAlgorithmEvaluatorOptions] + simulateDelay = false + cores = 0 + observerFrequency = 100 + func = CAMELBACK + scaleDelay = 1.0 + +[BlackHoleTargetAlgorithmEvaluatorOptions] + warnings = true + +[CommandLineTargetAlgorithmEvaluatorOptions] + observerFrequency = 500 + concurrentExecution = true + cores = 1 + logAllCallStrings = false + logAllResultLines = false + logAllCallsAndResultLines = false + logAllProcessOutput = false + listenForUpdates = true + paramArgumentsContainQuotes = false + pgEnvKillCommand = null + pgNiceKillCommand = bash -c "kill -s TERM -%pid" + pgForceKillCommand = bash -c "kill -s KILL -%pid" + procNiceKillCommand = kill -s TERM %pid + procForceKillCommand = kill -s KILL %pid + smacDefaults = /home/aymeric/.aeatk/cli-tae.opt + +[IPCTargetAlgorithmEvaluatorOptions] + persistent = false + ipcMechanism = UDP + encodingMechanism = CALL_STRING + remoteHost = 127.0.0.1 + remotePort = 5050 + udpPacketSize = 4096 + localPort = 0 + execScript = null + execScriptOutput = false + poolConnections = false + ipcDefaults = /home/aymeric/.aeatk/ipc-tae.opt + asyncThreads = 5 + +[PreloadedResponseTargetAlgorithmEvaluatorOptions] + preloadedResponses = + runLength = -1.0 + quality = 0.0 + additionalRunData = + +[RandomResponseTargetAlgorithmEvaluatorOptions] + simulateDelay = false + additionalRunData = + cores = 0 + maxResponse = 10.0 + minResponse = 0.0 + observerFrequency = 500 + trendCoefficient = 0.0 + seed = 1488908700858 + persistent = false + scaleDelay = 1.0 + + +18:45:01.221 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - ParamILS started at: Mar 7, 2017 6:45:01 PM. Minimizing mean runtime. +18:45:01.326 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 5 --seed 15693701 > ./example_spear/spear_output0.5487335667559146.txt +18:45:01.737 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Intensifying #1 (incumbent) ... 1 bonus run +18:45:01.739 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Config #1 (incumbent) updated! +18:45:01.739 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - ∞ -> 0.34 (based on 0 and 1 runs) +18:45:01.739 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Looking for random initial solutions better than the initial incumbent +18:45:01.794 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 1.1 --sp-clause-del-heur 0 --sp-first-restart 400 --sp-learned-clause-sort-heur 11 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.8 --sp-orig-clause-sort-heur 18 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-resolution 0 --sp-restart-inc 1.3 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 0.5 --sp-var-dec-heur 4 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.308331309491062.txt +18:45:01.851 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 5 --seed 16704006 > ./example_spear/spear_output0.09498189726129669.txt +18:45:01.856 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Intensifying #1 (incumbent) ... 1 bonus run +18:45:01.857 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Config #1 (incumbent) updated! +18:45:01.857 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - 0.34 -> 0.17 (based on 1 and 2 runs) +18:45:01.909 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 1.1 --sp-clause-del-heur 0 --sp-first-restart 400 --sp-learned-clause-sort-heur 11 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.8 --sp-orig-clause-sort-heur 18 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-resolution 0 --sp-restart-inc 1.3 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 0.5 --sp-var-dec-heur 4 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 5 --seed 15693701 > ./example_spear/spear_output0.8503951451175371.txt +18:45:03.064 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 50 --sp-learned-clause-sort-heur 2 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 1.6 --sp-orig-clause-sort-heur 10 --sp-phase-dec-heur 4 --sp-rand-phase-dec-freq 0 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.6 --sp-resolution 0 --sp-restart-inc 1.7 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 0 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.15410848343914885.txt +18:45:03.128 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 2.0 --sp-clause-del-heur 0 --sp-first-restart 3200 --sp-learned-clause-sort-heur 7 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.2 --sp-orig-clause-sort-heur 3 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 0.9 --sp-resolution 0 --sp-restart-inc 1.7 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 0.5 --sp-var-dec-heur 2 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.18837958751345785.txt +18:45:03.183 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 3200 --sp-learned-clause-sort-heur 16 --sp-learned-clauses-inc 1.1 --sp-learned-size-factor 1.6 --sp-orig-clause-sort-heur 6 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 0.6 --sp-resolution 0 --sp-restart-inc 1.1 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 18 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.21423757973455093.txt +18:45:03.239 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 2.0 --sp-clause-del-heur 0 --sp-first-restart 50 --sp-learned-clause-sort-heur 2 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 0.5 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 17 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0.005 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 14 --sp-resolution 2 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 15 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5121563227610604.txt +18:45:03.295 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 1.4 --sp-clause-del-heur 0 --sp-first-restart 400 --sp-learned-clause-sort-heur 16 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.1 --sp-max-res-lit-inc 0.5 --sp-max-res-runs 32 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 4 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.01 --sp-rand-var-dec-scaling 0.3 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 100 --sp-res-order-heur 16 --sp-resolution 1 --sp-restart-inc 1.7 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 15 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8836258454885068.txt +18:45:03.351 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 2.0 --sp-clause-del-heur 2 --sp-first-restart 25 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.2 --sp-max-res-lit-inc 0.5 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 10 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 0.9 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 1600 --sp-res-order-heur 2 --sp-resolution 2 --sp-restart-inc 1.1 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 2 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.21953131011548088.txt +18:45:03.407 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 2.0 --sp-clause-del-heur 0 --sp-first-restart 50 --sp-learned-clause-sort-heur 13 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.1 --sp-max-res-lit-inc 0.25 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.005 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 0.3 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 100 --sp-res-order-heur 19 --sp-resolution 2 --sp-restart-inc 1.9 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 0.5 --sp-var-dec-heur 2 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8788870479125208.txt +18:45:03.462 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 1.4 --sp-clause-del-heur 0 --sp-first-restart 100 --sp-learned-clause-sort-heur 1 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 2 --sp-max-res-runs 1 --sp-orig-clause-sort-heur 13 --sp-phase-dec-heur 2 --sp-rand-var-dec-freq 0.005 --sp-rand-var-dec-scaling 0.3 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 1600 --sp-res-order-heur 2 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 11 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.09466517063617008.txt +18:45:03.466 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - == Starting Iteration 1 == +18:45:03.467 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Tuner time: 2.37s elapsed +18:45:03.467 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - Initial configuration (#1 (incumbent)) +18:45:03.467 [main] INFO c.u.c.b.p.configurator.SOFocusedILS - -> 0.17 (based on 2 runs) +18:45:03.519 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.25 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.3602622616951259.txt +18:45:03.575 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1.1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6682627804800267.txt +18:45:03.631 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 14 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9337173402131652.txt +18:45:03.688 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 3 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7436137049591253.txt +18:45:03.744 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 1.6 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.33090253366012534.txt +18:45:03.800 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.18573942852643743.txt +18:45:03.855 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 8 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.025218603062555522.txt +18:45:03.911 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 4 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5178409066199433.txt +18:45:03.966 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.1 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.1898685010791623.txt +18:45:04.022 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 200 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6436761954151996.txt +18:45:04.081 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 32 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7320732213176177.txt +18:45:04.136 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-clause-inversion 1 --sp-first-restart 100 --sp-learned-clause-sort-heur 19 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9678097255876364.txt +18:45:04.192 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 16 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.019248930321480562.txt +18:45:04.247 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9673234067692138.txt +18:45:04.303 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.06559767465738764.txt +18:45:04.358 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 19 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.25008650012547484.txt +18:45:04.415 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.2751173329186549.txt +18:45:04.470 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 8 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.1423980301635973.txt +18:45:04.526 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.527316605237745.txt +18:45:04.582 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.0001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5957164787957688.txt +18:45:04.638 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 9 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6425776291092199.txt +18:45:04.698 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 18 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5258319727234473.txt +18:45:04.756 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 200 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7390061748918758.txt +18:45:04.812 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 14 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.3561123118426951.txt +18:45:04.873 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 13 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5922918985779572.txt +18:45:04.929 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.19030737221653593.txt +18:45:04.989 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.5 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7279170216758221.txt +18:45:05.045 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 11 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.16674056974673523.txt +18:45:05.108 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.40931789411388697.txt +18:45:05.166 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 16 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8836709091660236.txt +18:45:05.222 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 3200 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8013808454566576.txt +18:45:05.278 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 5 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.81611575723414.txt +18:45:05.340 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 14 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.038707828506418185.txt +18:45:05.397 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 15 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.23669469054915582.txt +18:45:05.458 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 1600 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8888991700417177.txt +18:45:05.514 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 4 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.06094660596851775.txt +18:45:05.580 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.20312861576444152.txt +18:45:05.637 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5443693288494119.txt +18:45:05.694 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 3 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5545410318705613.txt +18:45:05.750 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.1575135394748226.txt +18:45:05.805 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 1 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5406590073086621.txt +18:45:05.864 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 7 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6811098784635023.txt +18:45:05.919 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 7 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.08456076207002783.txt +18:45:05.975 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 0 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6476140307325547.txt +18:45:06.031 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 6 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5579698103237803.txt +18:45:06.086 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.7 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.806131163424388.txt +18:45:06.148 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.06627277644520324.txt +18:45:06.203 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 1 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.031071148120109027.txt +18:45:06.267 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.09607460027304993.txt +18:45:06.324 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 2.0 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.21320911255772923.txt +18:45:06.380 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 11 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7598605385301543.txt +18:45:06.438 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 7 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7179624485650611.txt +18:45:06.493 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.3 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4704774288568907.txt +18:45:06.548 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 2 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.07786417800701839.txt +18:45:06.604 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 13 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.30215516564868594.txt +18:45:06.659 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 50 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.31302506206536496.txt +18:45:06.717 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 10 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4413486497193859.txt +18:45:06.777 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.3 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9821869811872587.txt +18:45:06.880 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7320064367918853.txt +18:45:06.935 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7373719880687292.txt +18:45:06.991 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.9 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6388407228742997.txt +18:45:07.051 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.05 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4233011222373897.txt +18:45:07.106 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 10 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9138601861096876.txt +18:45:07.162 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.3952572915346654.txt +18:45:07.217 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 5 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5136551654687467.txt +18:45:07.273 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 1 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5495618791336558.txt +18:45:07.331 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 3 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5989295478554932.txt +18:45:07.384 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.9 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4350341883989385.txt +18:45:07.439 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 17 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.1492781505358074.txt +18:45:07.494 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 18 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9834106713769875.txt +18:45:07.549 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 800 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9589005964003274.txt +18:45:07.605 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 19 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6967107271187974.txt +18:45:07.664 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 16 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.33221506013679214.txt +18:45:07.720 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 3 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7920799279434153.txt +18:45:07.776 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 11 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7248909470318233.txt +18:45:07.834 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 5 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8570611019185922.txt +18:45:07.889 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 1 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.10637910177992449.txt +18:45:07.944 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 15 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.3920693728475929.txt +18:45:08.003 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 16 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6520399172700827.txt +18:45:08.058 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 15 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5388439105843094.txt +18:45:08.113 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8220745339542262.txt +18:45:08.168 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 0.5 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.27316193120489507.txt +18:45:08.223 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 5 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4938108198253408.txt +18:45:08.281 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 1 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8467547493744019.txt +18:45:08.336 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 10 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.08976207691831806.txt +18:45:08.391 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8199066495384443.txt +18:45:08.447 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9511912639314448.txt +18:45:08.502 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 1 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.915184984427647.txt +18:45:08.557 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 10 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.1955362242568971.txt +18:45:08.613 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 2 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.13480053966901506.txt +18:45:08.668 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 9 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.24364833662113772.txt +18:45:08.723 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 2 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7035809117978638.txt +18:45:08.782 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 9 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.06151922526225051.txt +18:45:08.838 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7753299053853694.txt +18:45:08.894 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 8 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6409566041718643.txt +18:45:08.950 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 12 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.15924983376673174.txt +18:45:09.005 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 13 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5283674856767061.txt +18:45:09.060 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 2 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.13110932520989838.txt +18:45:09.116 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5181863200188503.txt +18:45:09.172 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9027341435501697.txt +18:45:09.227 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.1 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4223731967212917.txt +18:45:09.330 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 4 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5663213836615674.txt +18:45:09.385 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 6 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7257354270509364.txt +18:45:09.440 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 17 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7144093853400482.txt +18:45:09.495 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 8 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.29049513444979624.txt +18:45:09.552 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 13 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.31502118021577297.txt +18:45:09.607 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 18 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4589209454421601.txt +18:45:09.666 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 6 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9687368958496545.txt +18:45:09.722 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-resolution 0 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.962189599129716.txt +18:45:09.779 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 2 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.3067847436085872.txt +18:45:09.834 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8151448273270789.txt +18:45:09.891 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 100 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7382622877134377.txt +18:45:09.947 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 9 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5570885868611573.txt +18:45:10.004 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 2 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4363056939227349.txt +18:45:10.059 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.10689976904244014.txt +18:45:10.116 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.6 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.24784841643620192.txt +18:45:10.171 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 17 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.41464155950861303.txt +18:45:10.227 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 25 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7291855119126913.txt +18:45:10.283 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.2881641972037693.txt +18:45:10.338 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 18 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9072782637791458.txt +18:45:10.393 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 7 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.12504919435179784.txt +18:45:10.454 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.6 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.30703498727474865.txt +18:45:10.509 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 2 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7693262371361341.txt +18:45:10.566 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.005 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6474502059119396.txt +18:45:10.631 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 17 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.12090365232979472.txt diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-warn183749155.txt b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-warn183749155.txt new file mode 100644 index 000000000..881787982 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-warn183749155.txt @@ -0,0 +1,286 @@ +18:46:08.295 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 5 --seed 2929725 > ./example_spear/spear_output0.885199264163241.txt +18:46:08.811 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 2.0 --sp-clause-del-heur 0 --sp-first-restart 800 --sp-learned-clause-sort-heur 9 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 2 --sp-max-res-runs 1 --sp-orig-clause-sort-heur 6 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 0.6 --sp-rand-var-dec-freq 0 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 800 --sp-res-order-heur 4 --sp-resolution 2 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 7 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7079500026742034.txt +18:46:08.871 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 5 --seed 8672913 > ./example_spear/spear_output0.2832553490818075.txt +18:46:09.138 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 2.0 --sp-clause-del-heur 0 --sp-first-restart 800 --sp-learned-clause-sort-heur 9 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 2 --sp-max-res-runs 1 --sp-orig-clause-sort-heur 6 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 0.6 --sp-rand-var-dec-freq 0 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 800 --sp-res-order-heur 4 --sp-resolution 2 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 7 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 5 --seed 2929725 > ./example_spear/spear_output0.9714455957038048.txt +18:46:09.998 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 1 --sp-first-restart 25 --sp-learned-clause-sort-heur 8 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.2 --sp-max-res-lit-inc 1 --sp-max-res-runs 32 --sp-orig-clause-sort-heur 6 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1.1 --sp-rand-var-dec-freq 0.005 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 1600 --sp-res-order-heur 17 --sp-resolution 2 --sp-restart-inc 1.3 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.25027302727265655.txt +18:46:10.066 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 1.1 --sp-clause-del-heur 0 --sp-first-restart 100 --sp-learned-clause-sort-heur 7 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.1 --sp-max-res-lit-inc 1 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 1 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0 --sp-rand-var-dec-freq 0.01 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 16 --sp-res-cutoff-lits 100 --sp-res-order-heur 1 --sp-resolution 1 --sp-restart-inc 1.7 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1 --sp-var-dec-heur 1 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2230554594911187.txt +18:46:10.121 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 2.0 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 7 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.1 --sp-max-res-lit-inc 2 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 7 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.005 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 100 --sp-res-order-heur 2 --sp-resolution 2 --sp-restart-inc 1.1 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 8 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7048580600683196.txt +18:46:10.177 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 400 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 1.6 --sp-orig-clause-sort-heur 17 --sp-phase-dec-heur 4 --sp-rand-phase-dec-freq 0.05 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1.1 --sp-resolution 0 --sp-restart-inc 1.3 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 0.5 --sp-var-dec-heur 18 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.13927483984509148.txt +18:46:10.232 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 1.4 --sp-clause-del-heur 0 --sp-first-restart 50 --sp-learned-clause-sort-heur 2 --sp-learned-clauses-inc 1.1 --sp-learned-size-factor 0.1 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-resolution 0 --sp-restart-inc 1.7 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 18 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.0985838009197012.txt +18:46:10.288 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 1.4 --sp-clause-del-heur 1 --sp-first-restart 1600 --sp-learned-clause-sort-heur 8 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 2 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 18 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.01 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 16 --sp-res-cutoff-lits 800 --sp-res-order-heur 14 --sp-resolution 1 --sp-restart-inc 1.7 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 1 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4384326333262354.txt +18:46:10.344 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 0 --sp-first-restart 800 --sp-learned-clause-sort-heur 16 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.8 --sp-orig-clause-sort-heur 3 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.05 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.0001 --sp-rand-var-dec-scaling 0.6 --sp-resolution 0 --sp-restart-inc 1.1 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 15 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3024260618928142.txt +18:46:10.400 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 2.0 --sp-clause-del-heur 1 --sp-clause-inversion 1 --sp-first-restart 200 --sp-learned-clause-sort-heur 19 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.1 --sp-max-res-lit-inc 4 --sp-max-res-runs 1 --sp-orig-clause-sort-heur 18 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.3 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 100 --sp-res-order-heur 5 --sp-resolution 2 --sp-restart-inc 1.9 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 11 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7544324825110371.txt +18:46:10.458 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 13 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.48598648226354446.txt +18:46:10.514 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 13 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.084422933896531.txt +18:46:10.569 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9206265559574295.txt +18:46:10.673 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.049815518630189515.txt +18:46:10.731 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.09533298802542822.txt +18:46:10.794 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5486409297625271.txt +18:46:10.850 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 8 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.14686129494139144.txt +18:46:10.906 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9671403019561056.txt +18:46:10.963 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.6 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4375123794866078.txt +18:46:11.019 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.005 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2727995283370318.txt +18:46:11.076 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8624073364381405.txt +18:46:11.132 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 12 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.07637965229901578.txt +18:46:11.188 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 6 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.19333188094244358.txt +18:46:11.245 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9943825948812228.txt +18:46:11.301 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 17 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.26218161004937657.txt +18:46:11.357 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 12 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2148067306613457.txt +18:46:11.415 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 11 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8160234164942024.txt +18:46:11.473 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 4 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8365177071217589.txt +18:46:11.534 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3298163646262746.txt +18:46:11.591 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.25 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6253277377844348.txt +18:46:11.647 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.1 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.055276439823224166.txt +18:46:11.703 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 11 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9259278248506496.txt +18:46:11.771 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 12 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5683741255701207.txt +18:46:11.831 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 3 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.46081819741782126.txt +18:46:11.895 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3850646897377259.txt +18:46:11.968 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.4407548270327696.txt +18:46:12.027 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 5 --seed 3794522 > ./example_spear/spear_output0.6593454176399656.txt +18:46:12.137 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 5 --seed 14716352 > ./example_spear/spear_output0.6509161021268743.txt +18:46:12.441 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf --tmout 5 --seed 11546807 > ./example_spear/spear_output0.10391418014973786.txt +18:46:12.501 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 5 --seed 3794522 > ./example_spear/spear_output0.6835430884004106.txt +18:46:12.610 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 5 --seed 14716352 > ./example_spear/spear_output0.8182619236479199.txt +18:46:12.764 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf --tmout 5 --seed 11546807 > ./example_spear/spear_output0.813925910285936.txt +18:46:12.875 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-resolution 0 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.019931265532197484.txt +18:46:12.938 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 10 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.14274198941649296.txt +18:46:13.001 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4889252281931845.txt +18:46:13.061 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 7 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.27308192604342096.txt +18:46:13.117 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 25 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6435550394193149.txt +18:46:13.180 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1.1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.49102287035207226.txt +18:46:13.240 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 9 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.14708473219252693.txt +18:46:13.294 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 3200 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7519252790284007.txt +18:46:13.363 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.1 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.16889406749473035.txt +18:46:13.423 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6861882254326046.txt +18:46:13.485 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 4 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.1610559785606578.txt +18:46:13.551 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 400 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5536938742657184.txt +18:46:13.605 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 11 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3071843604849642.txt +18:46:13.664 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 12 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6913523704015345.txt +18:46:13.720 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4867802552489441.txt +18:46:13.777 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 11 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.38134391282673763.txt +18:46:13.844 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3444986754959466.txt +18:46:13.900 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 7 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.006134217577851264.txt +18:46:13.967 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 6 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5566335948856828.txt +18:46:14.027 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 14 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6890615258806946.txt +18:46:14.080 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9013457853330868.txt +18:46:14.149 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5509150287825887.txt +18:46:14.205 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.6 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.20782789034874694.txt +18:46:14.265 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.005 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7157481830357366.txt +18:46:14.320 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 13 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.598205573047491.txt +18:46:14.384 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 7 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4406180793457122.txt +18:46:14.446 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 100 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9870640592044279.txt +18:46:14.508 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 2 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8881400545728722.txt +18:46:14.567 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 16 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5839983352506923.txt +18:46:14.621 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.2 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.1769649480106893.txt +18:46:14.689 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 14 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8320040746961292.txt +18:46:14.745 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 16 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9287593853189338.txt +18:46:14.801 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.1694919979084799.txt +18:46:14.859 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 18 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2930691654016365.txt +18:46:14.915 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 17 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.19650058500698675.txt +18:46:14.971 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 3 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.05534065152657852.txt +18:46:15.074 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6178498040857013.txt +18:46:15.130 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 8 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7013375711247085.txt +18:46:15.186 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2403756224245378.txt +18:46:15.242 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 6 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.0700661715715919.txt +18:46:15.297 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 1 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8064022700486908.txt +18:46:15.352 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 5 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8679896932567511.txt +18:46:15.407 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9380573674422151.txt +18:46:15.467 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 200 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.803477267844542.txt +18:46:15.540 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 8 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4261370580627326.txt +18:46:15.595 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 2.0 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.43294867472639365.txt +18:46:15.650 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 800 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9351626698986518.txt +18:46:15.753 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 2 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.021747718758423518.txt +18:46:15.814 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6791496722432507.txt +18:46:15.870 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 0 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.696191186714229.txt +18:46:15.972 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.9 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9389942178367827.txt +18:46:16.027 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.3 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.005126235424308123.txt +18:46:16.083 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 16 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.49781399779323443.txt +18:46:16.138 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 4 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.18541156817914772.txt +18:46:16.194 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 12 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7794030157605634.txt +18:46:16.250 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.1 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.07450500322190734.txt +18:46:16.306 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 18 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7190141576606548.txt +18:46:16.361 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 14 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5163706339210296.txt +18:46:16.416 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 19 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5365513778946865.txt +18:46:16.474 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 9 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.19486353118865574.txt +18:46:16.532 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.0001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3233854492741687.txt +18:46:16.634 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 16 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.706343523746745.txt +18:46:16.689 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 18 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.08642366753658359.txt +18:46:16.745 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 2 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.27337339735716604.txt +18:46:16.799 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 2 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.19196698113516197.txt +18:46:16.854 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.1 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.29189720519025064.txt +18:46:16.910 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 5 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6099304123800046.txt +18:46:16.966 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8119813804849672.txt +18:46:17.021 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 1 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9314335569054057.txt +18:46:17.077 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 2 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3502610422019742.txt +18:46:17.132 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2135314174110602.txt +18:46:17.187 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 17 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6504782683962179.txt +18:46:17.242 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 2 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.44493653066338257.txt +18:46:17.297 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 1 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6335926621151586.txt +18:46:17.352 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.727635698660248.txt +18:46:17.408 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-clause-inversion 1 --sp-first-restart 100 --sp-learned-clause-sort-heur 19 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.39840423814185855.txt +18:46:17.467 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5247987033711946.txt +18:46:17.524 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 9 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.10645081962054959.txt +18:46:17.626 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 20 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.004496489945643223.txt +18:46:17.681 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 19 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.487711094000722.txt +18:46:17.738 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.005 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.25018930284862495.txt +18:46:17.795 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 200 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2111059462134759.txt +18:46:17.850 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 1600 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9415977277960946.txt +18:46:17.906 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 32 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5895393355234666.txt +18:46:17.962 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4550635626206979.txt +18:46:18.018 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 1600 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3713003252505074.txt +18:46:18.074 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 15 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8618328967163645.txt +18:46:18.129 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.07370067661645874.txt +18:46:18.184 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 15 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8522585983205389.txt +18:46:18.239 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.3 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.24242954614644496.txt +18:46:18.294 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 17 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.33026883372028404.txt +18:46:18.352 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 4 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6667581678302278.txt +18:46:18.411 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 15 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3866382693160474.txt +18:46:18.466 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 19 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.13532587054171008.txt +18:46:18.529 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 13 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7692136008156356.txt +18:46:18.584 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 4 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6691454932571139.txt +18:46:18.644 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 18 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.419818733414986.txt +18:46:18.699 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.7 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4168249390415655.txt +18:46:18.754 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.5 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3305343422291277.txt +18:46:18.809 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 2 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.1323164673854048.txt +18:46:18.864 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 6 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7621414379096761.txt +18:46:18.967 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.1 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.17798543907012754.txt +18:46:19.021 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 3 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5882175625629458.txt +18:46:19.076 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 11 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6234651476700583.txt +18:46:19.131 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 5 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8427433878300046.txt +18:46:19.186 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 10 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9624631426111254.txt +18:46:19.268 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 9 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.11900200645507475.txt +18:46:19.320 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 12 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3973660106349144.txt +18:46:19.375 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 3 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.46294262011860776.txt +18:46:19.430 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 1 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.37573208904808275.txt +18:46:19.485 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 11 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7087292516699496.txt +18:46:19.539 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.024302970436244964.txt +18:46:19.642 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 3 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5243890270884612.txt +18:46:19.696 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 4 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.16318671252136607.txt +18:46:19.759 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 14 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6963619721523604.txt +18:46:19.814 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 2 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8079461215682981.txt +18:46:19.874 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 50 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4164220455432396.txt +18:46:19.941 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 800 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2993960156454262.txt +18:46:19.996 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.9 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9701885076354445.txt +18:46:20.050 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 3 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2625535522290814.txt +18:46:20.105 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 1 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7915240061700559.txt +18:46:20.160 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 8 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2230862649487424.txt +18:46:20.215 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 15 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2761762290033739.txt +18:46:20.270 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.28763674158787333.txt +18:46:20.331 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 1 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.06708314782139191.txt +18:46:20.386 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.07060229082884384.txt +18:46:20.442 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 5 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.37921140492861716.txt +18:46:20.497 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 10 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9144660512471378.txt +18:46:20.552 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 16 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9260710181815294.txt +18:46:20.608 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.03695507957249322.txt +18:46:20.710 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7506582688339519.txt +18:46:20.768 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 7 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.30188725111338544.txt +18:46:20.823 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 10 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.35950222778086527.txt +18:46:20.884 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.558423899680014.txt +18:46:20.944 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.6 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.954225762887175.txt +18:46:21.011 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 1 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6048754638186965.txt +18:46:21.071 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 6 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3308354140363947.txt +18:46:21.126 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.25 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.05395487647855868.txt +18:46:21.188 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 2 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.39826046741674004.txt +18:46:21.247 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 13 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2848593044959755.txt +18:46:21.308 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 0.5 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9708119495079701.txt +18:46:21.371 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.01 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.05791102962352623.txt +18:46:21.426 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 1.6 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.24707271758491278.txt +18:46:21.488 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.05 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6063494358481168.txt +18:46:21.547 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4610442581704235.txt +18:46:21.603 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 5 --seed 12213286 > ./example_spear/spear_output0.792989826073303.txt +18:46:21.660 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 5 --seed 313116 > ./example_spear/spear_output0.36008169883622476.txt +18:46:21.765 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 5 --seed 8672913 > ./example_spear/spear_output0.3015146609908389.txt +18:46:21.824 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 5 --seed 3794522 > ./example_spear/spear_output0.3558234519844151.txt +18:46:21.926 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 5 --seed 14716352 > ./example_spear/spear_output0.38474111886557427.txt +18:46:22.231 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf --tmout 5 --seed 11546807 > ./example_spear/spear_output0.46186665009023486.txt +18:46:22.286 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 12 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7864413037458684.txt +18:46:22.340 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 13 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.732611358218475.txt +18:46:22.395 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 13 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.21435462466663957.txt +18:46:22.449 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7425444465906164.txt +18:46:22.504 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.051038602026620805.txt +18:46:22.561 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 3 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.37996161285048524.txt +18:46:22.669 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 3 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.432896139490889.txt +18:46:22.772 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.18822006847841477.txt +18:46:22.827 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 7 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7544405968062349.txt +18:46:22.884 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.19594150491515527.txt +18:46:22.946 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.6 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5491174366206693.txt +18:46:23.049 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.005 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4269380596567849.txt +18:46:23.151 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4242976018362772.txt +18:46:23.253 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 11 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9801726180765227.txt +18:46:23.355 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 6 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7790253597296646.txt +18:46:23.410 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2528874218987862.txt +18:46:23.465 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 17 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.13885038368946434.txt +18:46:23.520 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 12 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.01745201754779946.txt +18:46:23.574 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 11 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6160365039485708.txt +18:46:23.631 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 4 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4370960581228974.txt +18:46:23.737 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9218055634664265.txt +18:46:23.792 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.25 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9361143288502904.txt +18:46:23.846 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.1 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.13896383874619112.txt +18:46:23.901 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 11 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.1780764138758012.txt +18:46:23.956 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 11 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.3311856293569322.txt +18:46:24.010 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 12 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.930036960297209.txt +18:46:24.065 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 12 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.351214958062958.txt +18:46:24.123 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 3 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9149071046563085.txt +18:46:24.187 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 15 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2204835981391272.txt +18:46:24.242 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 17 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8938271277946618.txt +18:46:24.297 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 1600 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.0633665611491746.txt +18:46:24.407 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 3 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.0703551562560144.txt +18:46:24.464 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 15 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5942235082479703.txt +18:46:24.524 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 8 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.42288463423018785.txt +18:46:24.579 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 3 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.038662025304109005.txt +18:46:24.634 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 1600 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.442091397548235.txt +18:46:24.694 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 2 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.1346445276162952.txt +18:46:24.751 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.28737473146631143.txt +18:46:24.805 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 13 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9578098429975521.txt +18:46:24.907 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 15 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7673579282003968.txt +18:46:24.963 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 3200 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.07848934281373243.txt +18:46:25.019 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.0001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7312217312509437.txt +18:46:25.084 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 6 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.32255156030284116.txt +18:46:25.139 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.26129254958702286.txt +18:46:25.199 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 12 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.531971005321134.txt +18:46:25.253 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.5 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5266428781286828.txt +18:46:25.308 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 1 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9249704914561871.txt +18:46:25.363 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.3 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.29408946457228324.txt +18:46:25.426 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 6 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9591292330748723.txt +18:46:25.481 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 14 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.8002013333967362.txt +18:46:25.541 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 17 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.6642521930337708.txt +18:46:25.595 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 17 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.4540976902164574.txt +18:46:25.650 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.13060121960960014.txt +18:46:25.707 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 15 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.9461168707252917.txt +18:46:25.761 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 15 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.21098609285705217.txt +18:46:25.816 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 4 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6671059997962564.txt +18:46:25.871 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7338127999366887.txt +18:46:25.973 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 13 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.847774593317223.txt +18:46:26.029 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.6 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7244674166771831.txt +18:46:26.085 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-clause-inversion 1 --sp-first-restart 100 --sp-learned-clause-sort-heur 19 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9354612156867772.txt +18:46:26.154 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 16 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.6720169591198196.txt +18:46:26.207 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 16 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.07059017127295009.txt +18:46:26.311 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 800 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2831375108830132.txt +18:46:26.365 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 5 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.45782068838368395.txt +18:46:26.420 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 2 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.908783403068579.txt +18:46:26.474 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.156808510556947.txt +18:46:26.529 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6594219319720316.txt +18:46:26.584 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 7 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.01640330002263579.txt +18:46:26.643 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 7 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 0 --seed 3794522 > ./example_spear/spear_output0.4924115052201954.txt +18:46:26.698 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 1 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4095884273533684.txt +18:46:26.758 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 9 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.34518504934508987.txt +18:46:26.812 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 5 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.7458592145510661.txt +18:46:26.869 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 1 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.11041927320515155.txt +18:46:26.931 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.6680657745423637.txt +18:46:26.986 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 14 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.4032257514124371.txt +18:46:27.040 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 1 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5537013668871891.txt +18:46:27.095 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 200 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.05165247866979117.txt +18:46:27.155 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 20 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.2850000838029715.txt +18:46:27.213 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.9 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.9941284129781404.txt +18:46:27.271 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 2 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.3858141411398851.txt +18:46:27.373 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 4 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.16717648609743907.txt +18:46:27.431 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 100 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.47161594080645586.txt +18:46:27.537 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5015638312360536.txt +18:46:27.594 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 1 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.025634882917328072.txt +18:46:27.649 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1.1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.12104160641088513.txt +18:46:27.703 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 18 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 0 --seed 2929725 > ./example_spear/spear_output0.5039379065549625.txt +18:46:27.762 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 5 --seed 13778780 > ./example_spear/spear_output0.9017708622169602.txt +18:46:27.866 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-resolution 0 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.8647325177749406.txt +18:46:27.967 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 10 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.8415094265920439.txt +18:46:28.022 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf --tmout 0 --seed 8672913 > ./example_spear/spear_output0.8530729175183221.txt +18:46:28.088 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 7 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf --tmout 5 --seed 2929725 > ./example_spear/spear_output0.2015946653981614.txt diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-warn725701097.txt b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-warn725701097.txt new file mode 100644 index 000000000..a23e16cff --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/log-warn725701097.txt @@ -0,0 +1,137 @@ +18:45:01.326 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 5 --seed 15693701 > ./example_spear/spear_output0.5487335667559146.txt +18:45:01.794 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 1.1 --sp-clause-del-heur 0 --sp-first-restart 400 --sp-learned-clause-sort-heur 11 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.8 --sp-orig-clause-sort-heur 18 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-resolution 0 --sp-restart-inc 1.3 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 0.5 --sp-var-dec-heur 4 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.308331309491062.txt +18:45:01.851 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf --tmout 5 --seed 16704006 > ./example_spear/spear_output0.09498189726129669.txt +18:45:01.909 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 1.1 --sp-clause-del-heur 0 --sp-first-restart 400 --sp-learned-clause-sort-heur 11 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.8 --sp-orig-clause-sort-heur 18 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-resolution 0 --sp-restart-inc 1.3 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 0.5 --sp-var-dec-heur 4 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 5 --seed 15693701 > ./example_spear/spear_output0.8503951451175371.txt +18:45:03.064 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 50 --sp-learned-clause-sort-heur 2 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 1.6 --sp-orig-clause-sort-heur 10 --sp-phase-dec-heur 4 --sp-rand-phase-dec-freq 0 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.6 --sp-resolution 0 --sp-restart-inc 1.7 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 0 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.15410848343914885.txt +18:45:03.128 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 2.0 --sp-clause-del-heur 0 --sp-first-restart 3200 --sp-learned-clause-sort-heur 7 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.2 --sp-orig-clause-sort-heur 3 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 0.9 --sp-resolution 0 --sp-restart-inc 1.7 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 0.5 --sp-var-dec-heur 2 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.18837958751345785.txt +18:45:03.183 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 3200 --sp-learned-clause-sort-heur 16 --sp-learned-clauses-inc 1.1 --sp-learned-size-factor 1.6 --sp-orig-clause-sort-heur 6 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 0.6 --sp-resolution 0 --sp-restart-inc 1.1 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 18 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.21423757973455093.txt +18:45:03.239 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 2.0 --sp-clause-del-heur 0 --sp-first-restart 50 --sp-learned-clause-sort-heur 2 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 0.5 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 17 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0.005 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 14 --sp-resolution 2 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 15 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5121563227610604.txt +18:45:03.295 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 1.4 --sp-clause-del-heur 0 --sp-first-restart 400 --sp-learned-clause-sort-heur 16 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.1 --sp-max-res-lit-inc 0.5 --sp-max-res-runs 32 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 4 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.01 --sp-rand-var-dec-scaling 0.3 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 100 --sp-res-order-heur 16 --sp-resolution 1 --sp-restart-inc 1.7 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1.5 --sp-var-dec-heur 15 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8836258454885068.txt +18:45:03.351 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 2.0 --sp-clause-del-heur 2 --sp-first-restart 25 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.2 --sp-max-res-lit-inc 0.5 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 10 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 0.9 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 1600 --sp-res-order-heur 2 --sp-resolution 2 --sp-restart-inc 1.1 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 2 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.21953131011548088.txt +18:45:03.407 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 2.0 --sp-clause-del-heur 0 --sp-first-restart 50 --sp-learned-clause-sort-heur 13 --sp-learned-clauses-inc 1.4 --sp-learned-size-factor 0.1 --sp-max-res-lit-inc 0.25 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.005 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 0.3 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 100 --sp-res-order-heur 19 --sp-resolution 2 --sp-restart-inc 1.9 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 0.5 --sp-var-dec-heur 2 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8788870479125208.txt +18:45:03.462 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 1.4 --sp-clause-del-heur 0 --sp-first-restart 100 --sp-learned-clause-sort-heur 1 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 2 --sp-max-res-runs 1 --sp-orig-clause-sort-heur 13 --sp-phase-dec-heur 2 --sp-rand-var-dec-freq 0.005 --sp-rand-var-dec-scaling 0.3 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 1600 --sp-res-order-heur 2 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 11 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.09466517063617008.txt +18:45:03.519 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.25 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.3602622616951259.txt +18:45:03.575 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1.1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6682627804800267.txt +18:45:03.631 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 14 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9337173402131652.txt +18:45:03.688 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 3 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7436137049591253.txt +18:45:03.744 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 1.6 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.33090253366012534.txt +18:45:03.800 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.9 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.18573942852643743.txt +18:45:03.855 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 8 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.025218603062555522.txt +18:45:03.911 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 4 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5178409066199433.txt +18:45:03.966 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.1 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.1898685010791623.txt +18:45:04.022 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 200 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6436761954151996.txt +18:45:04.081 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 32 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7320732213176177.txt +18:45:04.136 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-clause-inversion 1 --sp-first-restart 100 --sp-learned-clause-sort-heur 19 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9678097255876364.txt +18:45:04.192 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 16 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.019248930321480562.txt +18:45:04.247 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.2 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9673234067692138.txt +18:45:04.303 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.5 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.06559767465738764.txt +18:45:04.358 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 19 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.25008650012547484.txt +18:45:04.415 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 4 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.2751173329186549.txt +18:45:04.470 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 8 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.1423980301635973.txt +18:45:04.526 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 8 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.527316605237745.txt +18:45:04.582 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.0001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5957164787957688.txt +18:45:04.638 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 9 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6425776291092199.txt +18:45:04.698 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 18 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5258319727234473.txt +18:45:04.756 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 200 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7390061748918758.txt +18:45:04.812 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 14 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.3561123118426951.txt +18:45:04.873 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 13 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5922918985779572.txt +18:45:04.929 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.1 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.19030737221653593.txt +18:45:04.989 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 0.5 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7279170216758221.txt +18:45:05.045 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 11 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.16674056974673523.txt +18:45:05.108 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 0 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.40931789411388697.txt +18:45:05.166 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 16 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8836709091660236.txt +18:45:05.222 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 3200 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8013808454566576.txt +18:45:05.278 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 5 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.81611575723414.txt +18:45:05.340 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 14 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.038707828506418185.txt +18:45:05.397 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 15 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.23669469054915582.txt +18:45:05.458 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 1600 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8888991700417177.txt +18:45:05.514 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 4 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.06094660596851775.txt +18:45:05.580 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 0 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.20312861576444152.txt +18:45:05.637 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 4 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5443693288494119.txt +18:45:05.694 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 3 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5545410318705613.txt +18:45:05.750 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 16 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.1575135394748226.txt +18:45:05.805 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 1 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5406590073086621.txt +18:45:05.864 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 7 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6811098784635023.txt +18:45:05.919 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 7 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.08456076207002783.txt +18:45:05.975 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 0 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6476140307325547.txt +18:45:06.031 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 6 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5579698103237803.txt +18:45:06.086 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.7 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.806131163424388.txt +18:45:06.148 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 6 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.06627277644520324.txt +18:45:06.203 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 1 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.031071148120109027.txt +18:45:06.267 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.01 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.09607460027304993.txt +18:45:06.324 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 2.0 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.21320911255772923.txt +18:45:06.380 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 11 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7598605385301543.txt +18:45:06.438 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 7 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7179624485650611.txt +18:45:06.493 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.3 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4704774288568907.txt +18:45:06.548 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 2 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.07786417800701839.txt +18:45:06.604 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 13 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.30215516564868594.txt +18:45:06.659 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 50 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.31302506206536496.txt +18:45:06.717 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 10 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4413486497193859.txt +18:45:06.777 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.3 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9821869811872587.txt +18:45:06.880 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1.1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7320064367918853.txt +18:45:06.935 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.0001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7373719880687292.txt +18:45:06.991 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.9 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6388407228742997.txt +18:45:07.051 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.05 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4233011222373897.txt +18:45:07.106 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 10 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9138601861096876.txt +18:45:07.162 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 0 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.3952572915346654.txt +18:45:07.217 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 5 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5136551654687467.txt +18:45:07.273 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 1 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5495618791336558.txt +18:45:07.331 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 3 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5989295478554932.txt +18:45:07.384 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.9 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4350341883989385.txt +18:45:07.439 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 17 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.1492781505358074.txt +18:45:07.494 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 18 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9834106713769875.txt +18:45:07.549 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 800 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9589005964003274.txt +18:45:07.605 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 19 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6967107271187974.txt +18:45:07.664 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 16 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.33221506013679214.txt +18:45:07.720 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 3 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7920799279434153.txt +18:45:07.776 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 11 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7248909470318233.txt +18:45:07.834 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 5 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8570611019185922.txt +18:45:07.889 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 1 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.10637910177992449.txt +18:45:07.944 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 15 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.3920693728475929.txt +18:45:08.003 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 16 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6520399172700827.txt +18:45:08.058 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 15 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5388439105843094.txt +18:45:08.113 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.8 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8220745339542262.txt +18:45:08.168 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 0.5 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.27316193120489507.txt +18:45:08.223 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 5 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4938108198253408.txt +18:45:08.281 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 1 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8467547493744019.txt +18:45:08.336 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 10 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.08976207691831806.txt +18:45:08.391 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 2.0 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8199066495384443.txt +18:45:08.447 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9511912639314448.txt +18:45:08.502 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 1 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.915184984427647.txt +18:45:08.557 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 10 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.1955362242568971.txt +18:45:08.613 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 2 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.13480053966901506.txt +18:45:08.668 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 9 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.24364833662113772.txt +18:45:08.723 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 2 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7035809117978638.txt +18:45:08.782 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 9 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.06151922526225051.txt +18:45:08.838 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.3 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7753299053853694.txt +18:45:08.894 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 8 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6409566041718643.txt +18:45:08.950 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 12 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.15924983376673174.txt +18:45:09.005 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 13 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5283674856767061.txt +18:45:09.060 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 2 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.13110932520989838.txt +18:45:09.116 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 0.5 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5181863200188503.txt +18:45:09.172 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1.5 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9027341435501697.txt +18:45:09.227 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.1 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4223731967212917.txt +18:45:09.330 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 4 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5663213836615674.txt +18:45:09.385 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 6 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7257354270509364.txt +18:45:09.440 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 17 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7144093853400482.txt +18:45:09.495 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 8 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.29049513444979624.txt +18:45:09.552 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 13 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.31502118021577297.txt +18:45:09.607 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 18 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4589209454421601.txt +18:45:09.666 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 6 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9687368958496545.txt +18:45:09.722 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-resolution 0 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.962189599129716.txt +18:45:09.779 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 2 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.3067847436085872.txt +18:45:09.834 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.8151448273270789.txt +18:45:09.891 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 100 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7382622877134377.txt +18:45:09.947 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 9 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.5570885868611573.txt +18:45:10.004 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 2 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.4363056939227349.txt +18:45:10.059 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1.5 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.10689976904244014.txt +18:45:10.116 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 0.6 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.24784841643620192.txt +18:45:10.171 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 17 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.41464155950861303.txt +18:45:10.227 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 25 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7291855119126913.txt +18:45:10.283 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.05 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.2881641972037693.txt +18:45:10.338 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 18 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.9072782637791458.txt +18:45:10.393 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 7 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.12504919435179784.txt +18:45:10.454 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 0.6 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.30703498727474865.txt +18:45:10.509 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 2 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.7693262371361341.txt +18:45:10.566 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 0 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.005 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.6474502059119396.txt +18:45:10.631 [CLI TAE (STDERR Thread - #0)] WARN c.u.c.b.a.t.b.c.CommandLineAlgorithmRun - [PROCESS-ERR] Calling: ./example_spear/Spear-32_1.2.1 --nosplash --time --sp-clause-activity-inc 1 --sp-clause-decay 1.4 --sp-clause-del-heur 2 --sp-first-restart 100 --sp-learned-clause-sort-heur 17 --sp-learned-clauses-inc 1.3 --sp-learned-size-factor 0.4 --sp-max-res-lit-inc 1 --sp-max-res-runs 4 --sp-orig-clause-sort-heur 0 --sp-phase-dec-heur 5 --sp-rand-phase-dec-freq 0.001 --sp-rand-phase-scaling 1 --sp-rand-var-dec-freq 0.001 --sp-rand-var-dec-scaling 1 --sp-res-cutoff-cls 8 --sp-res-cutoff-lits 400 --sp-res-order-heur 0 --sp-resolution 1 --sp-restart-inc 1.5 --sp-update-dec-queue 1 --sp-use-pure-literal-rule 1 --sp-var-activity-inc 1 --sp-var-dec-heur 0 --sp-variable-decay 1.4 --dimacs example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf --tmout 0 --seed 15693701 > ./example_spear/spear_output0.12090365232979472.txt diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/traj-run-183749155.txt b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/traj-run-183749155.txt new file mode 100644 index 000000000..d94a89f08 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/traj-run-183749155.txt @@ -0,0 +1,9 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." +0.0, 1.7976931348623157E308, 0.0, 1, 0.0, sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4' +0.42, 0.42, 0.615, 1, 0.133524168, sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4' +0.6900000000000001, 0.295, 0.939, 1, 0.14355682000000003, sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4' +5.579999999999997, 0.14, 4.675, 1, 0.28444386499999996, sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4' +5.579999999999997, 0.049999999999999996, 4.676, 35, 0.28529017, sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='16', sp-variable-decay='1.4' +20.18000000000002, 0.043333333333333335, 13.467, 35, 0.6432045879999998, sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='16', sp-variable-decay='1.4' +20.280000000000022, 0.037142857142857144, 13.571, 35, 0.6472371500000001, sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='16', sp-variable-decay='1.4' +29.51000000000015, 0.03375, 19.673, 35, 0.832815311, sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='16', sp-variable-decay='1.4' diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/traj-run-725701097.txt b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/traj-run-725701097.txt new file mode 100644 index 000000000..fc3804608 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_spear/paramils-out/scenario-Spear-SWGCP-sat-small-train-small-test/traj-run-725701097.txt @@ -0,0 +1,4 @@ +"CPU Time Used","Estimated Training Performance","Wallclock Time","Incumbent ID","Automatic Configurator (CPU) Time","Configuration..." +0.0, 1.7976931348623157E308, 0.0, 1, 0.0, sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4' +0.34, 0.34, 0.53, 1, 0.101958369, sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4' +0.54, 0.17, 0.648, 1, 0.11161180300000006, sp-clause-activity-inc='1', sp-clause-decay='1.4', sp-clause-del-heur='2', sp-clause-inversion='1', sp-first-restart='100', sp-learned-clause-sort-heur='0', sp-learned-clauses-inc='1.3', sp-learned-size-factor='0.4', sp-max-res-lit-inc='1', sp-max-res-runs='4', sp-orig-clause-sort-heur='0', sp-phase-dec-heur='5', sp-rand-phase-dec-freq='0.001', sp-rand-phase-scaling='1', sp-rand-var-dec-freq='0.001', sp-rand-var-dec-scaling='1', sp-res-cutoff-cls='8', sp-res-cutoff-lits='400', sp-res-order-heur='0', sp-resolution='1', sp-restart-inc='1.5', sp-update-dec-queue='1', sp-use-pure-literal-rule='1', sp-var-activity-inc='1', sp-var-dec-heur='0', sp-variable-decay='1.4' diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt b/sparkle/Components/paramils-v3.0.0/example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt new file mode 100644 index 000000000..8de0ee884 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt @@ -0,0 +1,12 @@ +algo = ruby example_spear/spear_wrapper.rb +execdir = . +deterministic = 0 +run_obj = runtime +overall_obj = mean +cutoff_time = 5 +cutoff_length = max +tunerTimeout = 30 +paramfile = example_spear/spear-params.txt +outdir = example_spear/paramils-out +instance_file = example_data/SWGCP-satisfiable-small-train.txt +test_instance_file = example_data/SWGCP-satisfiable-small-test.txt diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/spear-params.txt b/sparkle/Components/paramils-v3.0.0/example_spear/spear-params.txt new file mode 100644 index 000000000..28f586006 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_spear/spear-params.txt @@ -0,0 +1,38 @@ +sp-var-dec-heur {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19}[0] # Originally, 3,4,9,10 not used following Domgoj's advice. 20 requires modular arithmetic input format +sp-learned-clause-sort-heur {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19}[0] # All values make sense here. 20 requires modular arithmetic input format +sp-orig-clause-sort-heur {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19}[0] # All values make sense here. 20 requires modular arithmetic input format +sp-res-order-heur {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19}[0] # All values make sense here. 20 requires modular arithmetic input format +sp-clause-del-heur {0,1,2}[2] # All values make sense here. +sp-phase-dec-heur {0,1,2,3,4,5,6}[5] # All values make sense here. +sp-resolution {0,1,2}[1] # 0 renders a whole bunch of conditionals irrelevant. +sp-variable-decay {1.1,1.4,2.0}[1.4] # Should be bigger than 1 (o/w increase not decay). +sp-clause-decay {1.1,1.4,2.0}[1.4] # Same thing. +sp-restart-inc {1.1,1.3,1.5,1.7,1.9}[1.5] # 1.3 and 1.7 were introduced later. Uniform because multiplicative. +sp-learned-size-factor {0.1,0.2,0.4,0.8,1.6}[0.4] # 0.2 and 0.8 were introduced later. Uniform on logarithmic scale (starting value). +sp-learned-clauses-inc {1.1,1.2,1.3,1.4,1.5}[1.3] # 1.2 and 1.4 were introduced later. Uniform because multiplicative +sp-clause-activity-inc {0.5,1,1.5}[1] # Domagoj says these make sense. +sp-var-activity-inc {0.5,1,1.5}[1] # Same thing. +sp-rand-phase-dec-freq{0, 0.0001, 0.001, 0.005, 0.01, 0.05}[0.001] # Never picked 0.05 in previous experiments, always zero. +sp-rand-var-dec-freq {0, 0.0001, 0.001, 0.005, 0.01, 0.05}[0.001] # Never picked 0.05 in previous experiments, always zero. +sp-rand-var-dec-scaling {0.3,0.6,0.9,1,1.1}[1] # 0.5 and 2 were introduced later. Domagoj said those are too coarse, so new values. +sp-rand-phase-scaling {0.3,0.6,0.9,1,1.1}[1] # Same thing. +sp-max-res-lit-inc {0.25,0.5,1,2,4}[1] # 0.5 and 2 were introduced later. +sp-first-restart {25,50,100,200,400,800,1600,3200}[100] # Uniform on logarithmic scale (starting value). +sp-res-cutoff-cls {2,4,8,16,20}[8] # 4 and 20 were introduced later. Only 20 allowed, would've used 32. +sp-res-cutoff-lits {100,200,400,800,1600}[400] # 200 and 800 were introduced later. +sp-max-res-runs {1,2,4,8,16,32}[4] # 2, 8, and 32 were introduced later. +sp-update-dec-queue {0,1}[1] # Enable by default. +sp-use-pure-literal-rule {0,1}[1] # Enable by default. No clue what this does +sp-clause-inversion {0,1}[1] # Enable by default. Enable reversion of learned clauses if fixed order (sp-learned-clause-sort-heur=19) + +Conditionals: +sp-rand-phase-dec-freq|sp-phase-dec-heur in {0,1,3,4,5,6} # when heuristic is random, then additional random steps don't change anything +sp-rand-var-dec-scaling|sp-rand-var-dec-freq in {0.0001, 0.001, 0.005, 0.01, 0.05} # not 0 +sp-rand-phase-scaling|sp-rand-phase-dec-freq in {0.0001, 0.001, 0.005, 0.01, 0.05} # not 0 +sp-clause-inversion|sp-learned-clause-sort-heur in {19} + +sp-res-order-heur|sp-resolution in {1,2} +sp-max-res-lit-inc|sp-resolution in {1,2} +sp-res-cutoff-cls|sp-resolution in {1,2} +sp-res-cutoff-lits|sp-resolution in {1,2} +sp-max-res-runs|sp-resolution in {1,2} diff --git a/sparkle/Components/paramils-v3.0.0/example_spear/spear_wrapper.rb b/sparkle/Components/paramils-v3.0.0/example_spear/spear_wrapper.rb new file mode 100644 index 000000000..d04c0ac5c --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/example_spear/spear_wrapper.rb @@ -0,0 +1,61 @@ +# $Id$ +# +# ParamILS wrapper for Spear theorem prover. + +# Deal with inputs. +if ARGV.length < 5 + puts "spear_wrapper.rb is a wrapper for the Spear theorem prover." + puts "Usage: ruby spear_wrapper.rb + ." + exit -1 +end + +input_file = ARGV[0] +#=== Here instance_specifics are not used - but you can put any information into this string you wish ... +instance_specifics = ARGV[1] +timeout = ARGV[2].to_i +cutoff_length = ARGV[3].to_i +seed = ARGV[4].to_i + +# By default, ParamILS builds parameters as -param, but Spear requires +# --param. The following line fixes that. +tmpparams = ARGV[5...ARGV.length].collect{|x| x.sub(/^-sp/, "--sp")} + +# Concatenate all params. +paramstring = tmpparams.join(" ") + +# Build algorithm command and execute it. +# +# Change --dimacs according to your input (--sf for modular arithmetic) +cmd = "./example_spear/Spear-32_1.2.1 --nosplash --time #{paramstring} --dimacs #{input_file} --tmout #{timeout} --seed #{seed}" + +tmp_file = "./example_spear/spear_output#{rand}.txt" +exec_cmd = "#{cmd} > #{tmp_file}" + +STDERR.puts "Calling: #{exec_cmd}" +system exec_cmd + +#=== Parse algorithm output to extract relevant information for ParamILS. +solved = nil +runtime = nil + +solved = "CRASHED" +File.open(tmp_file){|file| + while line = file.gets + if line =~ /s UNSATISFIABLE/ + solved = "UNSAT" + end + if line =~ /s SATISFIABLE/ + solved = "SAT" + end + if line =~ /s UNKNOWN/ + solved = "TIMEOUT" + end + if line =~ /runtime (\d+\.\d+)/ + runtime = $1.to_f + end + end +} +File.delete(tmp_file) +puts "Result for ParamILS: #{solved}, #{runtime}, 0, 0, #{seed}" diff --git a/sparkle/Components/paramils-v3.0.0/lib/DomainInter.jar b/sparkle/Components/paramils-v3.0.0/lib/DomainInter.jar new file mode 100644 index 000000000..80c261038 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/DomainInter.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/Jama-1.0.2.jar b/sparkle/Components/paramils-v3.0.0/lib/Jama-1.0.2.jar new file mode 100644 index 000000000..824d13338 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/Jama-1.0.2.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/aeatk.jar b/sparkle/Components/paramils-v3.0.0/lib/aeatk.jar new file mode 100644 index 000000000..3546218ad Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/aeatk.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/commons-collections-3.2.1.jar b/sparkle/Components/paramils-v3.0.0/lib/commons-collections-3.2.1.jar new file mode 100644 index 000000000..c35fa1fee Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/commons-collections-3.2.1.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/commons-io-2.1.jar b/sparkle/Components/paramils-v3.0.0/lib/commons-io-2.1.jar new file mode 100644 index 000000000..b5c7d692f Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/commons-io-2.1.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/commons-math-2.2.jar b/sparkle/Components/paramils-v3.0.0/lib/commons-math-2.2.jar new file mode 100644 index 000000000..b29a39c54 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/commons-math-2.2.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/commons-math3-3.2.jar b/sparkle/Components/paramils-v3.0.0/lib/commons-math3-3.2.jar new file mode 100644 index 000000000..f8b7db295 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/commons-math3-3.2.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/exp4j-0.3.10.jar b/sparkle/Components/paramils-v3.0.0/lib/exp4j-0.3.10.jar new file mode 100644 index 000000000..cb0ceb081 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/exp4j-0.3.10.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/fastrf.jar b/sparkle/Components/paramils-v3.0.0/lib/fastrf.jar new file mode 100644 index 000000000..30d50947d Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/fastrf.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/guava-14.0.1.jar b/sparkle/Components/paramils-v3.0.0/lib/guava-14.0.1.jar new file mode 100644 index 000000000..3a3d9258e Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/guava-14.0.1.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/jackson-annotations-2.3.1.jar b/sparkle/Components/paramils-v3.0.0/lib/jackson-annotations-2.3.1.jar new file mode 100644 index 000000000..f06b7915d Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/jackson-annotations-2.3.1.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/jackson-core-2.3.1.jar b/sparkle/Components/paramils-v3.0.0/lib/jackson-core-2.3.1.jar new file mode 100644 index 000000000..6ae318c3d Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/jackson-core-2.3.1.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/jackson-databind-2.3.1.jar b/sparkle/Components/paramils-v3.0.0/lib/jackson-databind-2.3.1.jar new file mode 100644 index 000000000..a8d35c06a Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/jackson-databind-2.3.1.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/jcip-annotations.jar b/sparkle/Components/paramils-v3.0.0/lib/jcip-annotations.jar new file mode 100644 index 000000000..ea263af05 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/jcip-annotations.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/jcommander.jar b/sparkle/Components/paramils-v3.0.0/lib/jcommander.jar new file mode 100644 index 000000000..bf1185dda Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/jcommander.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/jmatharray.jar b/sparkle/Components/paramils-v3.0.0/lib/jmatharray.jar new file mode 100644 index 000000000..b766e861c Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/jmatharray.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/logback-access-1.1.2.jar b/sparkle/Components/paramils-v3.0.0/lib/logback-access-1.1.2.jar new file mode 100644 index 000000000..1796c5558 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/logback-access-1.1.2.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/logback-classic-1.1.2.jar b/sparkle/Components/paramils-v3.0.0/lib/logback-classic-1.1.2.jar new file mode 100644 index 000000000..3d5d0fff1 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/logback-classic-1.1.2.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/logback-core-1.1.2.jar b/sparkle/Components/paramils-v3.0.0/lib/logback-core-1.1.2.jar new file mode 100644 index 000000000..575aec5ea Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/logback-core-1.1.2.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/numerics4j-1.3.jar b/sparkle/Components/paramils-v3.0.0/lib/numerics4j-1.3.jar new file mode 100644 index 000000000..5db34b56a Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/numerics4j-1.3.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/opencsv-2.3.jar b/sparkle/Components/paramils-v3.0.0/lib/opencsv-2.3.jar new file mode 100644 index 000000000..32b00f927 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/opencsv-2.3.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/paramils.jar b/sparkle/Components/paramils-v3.0.0/lib/paramils.jar new file mode 100644 index 000000000..9b5a2da4b Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/paramils.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/slf4j-api-1.7.5.jar b/sparkle/Components/paramils-v3.0.0/lib/slf4j-api-1.7.5.jar new file mode 100644 index 000000000..8766455d8 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/slf4j-api-1.7.5.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/smac.jar b/sparkle/Components/paramils-v3.0.0/lib/smac.jar new file mode 100644 index 000000000..a59526516 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/smac.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/lib/spi-0.2.4.jar b/sparkle/Components/paramils-v3.0.0/lib/spi-0.2.4.jar new file mode 100644 index 000000000..399990929 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/lib/spi-0.2.4.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/moparamils b/sparkle/Components/paramils-v3.0.0/moparamils new file mode 100755 index 000000000..4dc6dabb8 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/moparamils @@ -0,0 +1,6 @@ +#!/bin/sh +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +if [ ! -d "$DIR/lib" ]; then + DIR="$(dirname "$DIR")" +fi +exec $DIR/paramils --MO TRUE "$@" diff --git a/sparkle/Components/paramils-v3.0.0/movalidate b/sparkle/Components/paramils-v3.0.0/movalidate new file mode 100755 index 000000000..3c42025bf --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/movalidate @@ -0,0 +1,6 @@ +#!/bin/sh +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +if [ ! -d "$DIR/lib" ]; then + DIR="$(dirname "$DIR")" +fi +exec $DIR/validate --MO TRUE "$@" diff --git a/sparkle/Components/paramils-v3.0.0/paramils b/sparkle/Components/paramils-v3.0.0/paramils new file mode 100755 index 000000000..70515d05d --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/paramils @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +ParamILS_MEMORY_INPUT=$ParamILS_MEMORY +ParamILSMEM=1024 +test "$ParamILS_MEMORY_INPUT" -ge 1 2>&- && ParamILSMEM=$ParamILS_MEMORY_INPUT +EXEC=ca.ubc.cs.beta.paramils.executors.ParamILSExecutor +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +if [ ! -d "$DIR/lib" ]; then + DIR="$(dirname "$DIR")" +fi + +exec java -Xmx"$ParamILSMEM"m -cp "./lib/*" ca.ubc.cs.beta.aeatk.ant.execscript.Launcher $EXEC "$@" diff --git a/sparkle/Components/paramils-v3.0.0/paramils.jar b/sparkle/Components/paramils-v3.0.0/paramils.jar new file mode 100644 index 000000000..7d3eb6e77 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/paramils.jar differ diff --git a/sparkle/Components/paramils-v3.0.0/quickstart.pdf b/sparkle/Components/paramils-v3.0.0/quickstart.pdf new file mode 100644 index 000000000..e1c9f0b30 Binary files /dev/null and b/sparkle/Components/paramils-v3.0.0/quickstart.pdf differ diff --git a/sparkle/Components/paramils-v3.0.0/validate b/sparkle/Components/paramils-v3.0.0/validate new file mode 100755 index 000000000..854580fb8 --- /dev/null +++ b/sparkle/Components/paramils-v3.0.0/validate @@ -0,0 +1,11 @@ +#!/usr/bin/env bash +ParamILS_MEMORY_INPUT=$ParamILS_MEMORY +ParamILSMEM=1024 +test "$ParamILS_MEMORY_INPUT" -ge 1 2>&- && ParamILSMEM=$ParamILS_MEMORY_INPUT +EXEC=ca.ubc.cs.beta.paramils.executors.ValidatorExecutor +DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" +if [ ! -d "$DIR/lib" ]; then + DIR="$(dirname "$DIR")" +fi + +exec java -Xmx"$ParamILSMEM"m -cp "./lib/*" ca.ubc.cs.beta.aeatk.ant.execscript.Launcher $EXEC "$@" diff --git a/sparkle/Components/paramils2.3.8-source.tgz b/sparkle/Components/paramils2.3.8-source.tgz new file mode 100644 index 000000000..442b7d967 Binary files /dev/null and b/sparkle/Components/paramils2.3.8-source.tgz differ diff --git a/sparkle/Components/paramils2.3.8-source/algo_specifics.rb b/sparkle/Components/paramils2.3.8-source/algo_specifics.rb new file mode 100755 index 000000000..eacc34d50 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/algo_specifics.rb @@ -0,0 +1,826 @@ +# Put them all here when creating executable, so they are included. +require "stats_ils.rb" +#require "spear_reader.rb" +#require "sat4j_reader.rb" +#require "ubcsat_reader.rb" +#require "cplex_reader.rb" + +class Object + def deep_clone + Marshal::load(Marshal.dump(self)) + end + end + + +########################################################################### +# Simple pseudo-random number generator using system time. From: http://gnuvince.net/?p=134 +# I'm using it to create temporary file names etc. Don't use rand for repeatability of runs when reading saved results from the DB instead. +########################################################################### +def random_number_without_rand + t = Time.now.to_f / (Time.now.to_f % Time.now.to_i) + random_seed = t * 1103515245 + 12345; + a=(random_seed / 65536) % 32768; + return a/32768 +end + + +$max_objective = 100000000000000 + +########################################################################### +#Build algorun_cmd +########################################################################### +def buildAlgorunCmd(algo, stripped_state_int, instance_relname, desired_solqual, cutoff_time, cutoff_length, db=true) + algo_config_id = 0 + raise "when getting to buildAlgorunCmd, stripped_state_int has to be an Integer. It is #{stripped_state_int}" unless stripped_state_int.is_a?(Integer) + params = $stripped_int_to_stripped_state[stripped_state_int] + if algo == "saps" + #=== Define default parameters that are used unless specifed differently. +# defaults = {"alpha"=>1.3, "rho"=>0.8, "ps"=>0.05, "wp"=>0.01} + + executable = "./ubcsat -alg saps" + cutoff_length = "max" if cutoff_length == "-1" #Want to save an integer in the DB + cmd_suffix = "-inst #{instance_relname} -cutoff #{cutoff_length} -timeout #{cutoff_time} -r out stdout run,found,seed,best,beststep,steps,time" + cutoff_length = 2147483647 if cutoff_length == "max" #Want to save an integer in the DB + if params["param_string"] == "default-params" + param_string = "" + else + param_string = params.keys.sort.map{|key| "-#{key} #{params[key]}"}.join(" ") + end + elsif algo == "novelty+" + executable = "./ubcsat -alg novelty+" + cutoff_length = "max" if cutoff_length == "-1" #Want to save an integer in the DB + cmd_suffix = "-inst #{instance_relname} -cutoff #{cutoff_length} -timeout #{cutoff_time} -r out stdout run,found,seed,best,beststep,steps,time" + cutoff_length = 2147483647 if cutoff_length == "max" #Want to save an integer in the DB + param_string = params.keys.sort.map{|key| "-#{key} #{params[key]}"}.join(" ") + + elsif algo == "cplex" + #=== CPLEX is a special case: I'm calling a ruby script that in turn calls the command line interpreter. + executable = "ruby ../scripts/cplex_wrapper.rb #{instance_relname} #{cutoff_time}" + if params["param_string"] + param_string = params["param_string"] + param_string = "" if params["param_string"] == "default-params" + else + param_string = params.keys.sort.map{|key| value = params[key]; value = "'#{params[key]}'" unless params[key].include?("'"); "-#{key} #{value}"}.join(" ") + end + cmd_suffix = "" + + elsif algo == "branin_function" + #=== Define default parameters that are used unless specifed differently. +# defaults = {"x"=>2.5, "y"=>7.5} + executable = "ruby exponential_function_with_branin_fucntion_as_median.rb" + cmd_suffix = "#{cutoff_time}" + param_string = params.keys.sort.map{|key| "-#{key} #{params[key]}"}.join(" ") + + elsif algo == "sls4mpe" or algo == "gls4mpe" + #=== Define default parameters that are used unless specifed differently. + defaults = {} # I think this is redundant ! + executable = "./sls4mpe" +# cmd_suffix = "-i #{instance_relname} --optimalLogMPE #{desired_solqual} -t #{cutoff_time}" + cmd_suffix = "-i #{instance_relname} -t #{cutoff_time}" # Do NOT stop if best known qual achieved, may improve ! + if params["param_string"] == "default-params" + param_string = "" + else + param_string = params.keys.sort.map{|key| "-#{key} #{params[key]}"}.join(" ") + end + elsif algo == "sat4j" + #=== Prepare SAT4J command line parameters. + executable = "/usr/bin/java -Xms300M -Xmx300M -jar sat4j.jar" + cmd_suffix = "-t #{cutoff_time.ceil.to_i} #{instance_relname}" + + if params["param_string"] == "default-params" +# if params["default-params"] == true + param_string = "" + else + params = strip_state(params) + + param_string = "-S DSF=#{params["DSF"]},LEARNING=#{params["LEARNING"]}" + param_string += "/activityPercent:#{params["activityPercent"]}" if params.key?("activityPercent") + param_string += "/maxLength:#{params["maxLength"]}" if params.key?("maxLength") + param_string += "/limit:#{params["limit"]}" if params.key?("limit") + param_string += ",ORDER=#{params["ORDER"]}" + param_string += "/period:#{params["period"]}" if params.key?("period") + param_string += ",SIMP=#{params["SIMP"]}" + param_string += ",PARAMS=org.sat4j.minisat.core.SearchParams/varDecay:#{params["varDecay"]}/claDecay:#{params["claDecay"]}/conflictBoundIncFactor:#{params["conflictBoundIncFactor"]}/initConflictBound:#{params["initConflictBound"]}" + end + + elsif algo == "spear0.9" or algo == "spear" + executable = "./Spear-32" + cmd_suffix = "--nosplash --stats --version --tmout #{cutoff_time.to_i} --dimacs #{instance_relname}" + if params["param_string"] == "default-params" +# if params["default-params"] == true + param_string = "" + else + param_string = params.keys.sort.map{|key| "--#{key} #{params[key]}"}.join(" ") + end + + elsif algo == "spear1.2.1" or algo == "spear1.2.1.1" + executable = "./Spear-32_1.2.1" + cmd_suffix = "--nosplash --stats --version --tmout #{cutoff_time.ceil.to_i} --dimacs #{instance_relname}" + if params["param_string"] + param_string = params["param_string"] + param_string = "" if params["param_string"] == "default-params" + else + param_string = params.keys.sort.map{|key| "--#{key} #{params[key]}"}.join(" ") + end + + elsif algo == "spear2.2" + executable = "./Spear_v2.2_xeon" + cmd_suffix = "--nosplash --stats --version --tmout #{cutoff_time.ceil.to_i} --dimacs #{instance_relname}" + if params["param_string"] + param_string = params["param_string"] + param_string = "" if params["param_string"] == "default-params" + else + param_string = params.keys.sort.map{|key| "--#{key} #{params[key]}"}.join(" ") + end + + elsif algo == "spear2.3" + executable = "./Spear_v2.3" + cmd_suffix = "--nosplash --stats --version --tmout #{cutoff_time.ceil.to_i} --dimacs #{instance_relname}" + if params["param_string"] + param_string = params["param_string"] + param_string = "" if params["param_string"] == "default-params" + else + param_string = params.keys.sort.map{|key| "--#{key} #{params[key]}"}.join(" ") + end + + elsif algo == "smt" + executable = "./Spear_i586_32_Linux-07-06-19" + cmd_suffix = "--nosplash --stats --tmout #{cutoff_time.ceil.to_i} --sf #{instance_relname}" +# cmd = "./Spear --nosplash --time #{paramstring} --sf #{input_file} --tmout #{timeout} --seed #{seed}" + + if params["param_string"] + param_string = params["param_string"] + param_string = "" if params["param_string"] == "default-params" + else + param_string = params.keys.sort.map{|key| "--#{key} #{params[key]}"}.join(" ") + end + + elsif algo == "spear1.2" + executable = "./Spear-32_1.2" + cmd_suffix = "--nosplash --stats --version --tmout #{cutoff_time.to_i} --dimacs #{instance_relname}" + if params["param_string"] + param_string = params["param_string"] + param_string = "" if params["param_string"] == "default-params" + else + param_string = params.keys.sort.map{|key| "--#{key} #{params[key]}"}.join(" ") + end + + elsif algo == "param_ils_metatune" + #=== CPLEX is a special case: I'm calling a ruby script that sends a bunch of tuning jobs off to the cluster, waits for them to finish, and then returns their performance. + #=== instance_relname here stands for the seed I'm passing to the base tuner (normally, I'd use the seed for that, but that doesn't work since it's unknown at this point and the scripts are set up for it to be passed here). + #=== A run of all tuning scenarios together is treated as a single run. + #=== desired_solqual encodes training (0) or test performance (1) +## executable = "ruby ../param_ils_metatune/param_ils_caller_for_metatuning.rb #{instance_relname} #{desired_solqual} #{cutoff_time} not_used_cutoff_length not_used_seed" +# executable = "ruby ../param_ils_metatune/param_ils_caller_for_metatuning.rb #{instance_relname} not_used_qual #{cutoff_time} not_used_cutoff_length placeholder_for_seed" + executable = "ruby ../param_ils_metatune/new_param_ils_caller_for_metatuning.rb #{instance_relname} not_used_qual #{cutoff_time} not_used_cutoff_length placeholder_for_seed" + if params["param_string"] + param_string = params["param_string"] + param_string = "" if params["param_string"] == "default-params" + else + param_string = params.keys.sort.map{|key| value = params[key]; value = "'#{params[key]}'" unless params[key].include?("'"); "-#{key} #{value}"}.join(" ") + end + cmd_suffix = "" + + elsif algo == "satenstein" + executable = "./ubcsat -alg satenstein" + cutoff_length = "max" if cutoff_length == "-1" #Want to save an integer in the DB + cmd_suffix = "-inst #{instance_relname} -cutoff #{cutoff_length} -timeout #{cutoff_time} -r out stdout run,found,seed,best,beststep,steps,time" + cutoff_length = 2147483647 if cutoff_length == "max" #Want to save an integer in the DB + if params["param_string"] == "default-params" + param_string = "" + else + param_string = params.keys.sort.map{|key| "-#{key} #{params[key]}"}.join(" ") + end + + else + p algo + raise "Need to specify executable and default parameters for algo #{algo} in function buildAlgorunCmd of algo_specifics.rb" + end + +# if params.key?("param_string") +# param_string = params["param_string"] +# end + + +=begin +#=== Generic treatment for each algo: check parameters and fill unspecified parameters with their default settings. + for key in params.keys + raise "Unknown parameter #{key} for #{algo}" unless defaults.key?(key) + end + for key in defaults.keys + params[key] = defaults[key] unless params.key?(key) + end +=end + + algorun_cmd = "#{executable} #{param_string} #{cmd_suffix}" +# puts algorun_cmd + + if db + if algo == "saps" + algo_config_id = get_saps_config_id(params) + elsif algo == "novelty+" + algo_config_id = get_novelty_plus_config_id([params["novnoise"], params["wp"]]) + elsif algo == "sat4j" + algo_config_id = get_sat4j_config_id(params) + elsif algo == "spear0.9" + algo_config_id = get_spear_1_0_config_id(params) + elsif algo == "spear1.2.1" or algo == "spear1.2" or algo == "spear1.2.1.1" + algo_config_id = get_algo_config_id(params, "SPEAR_CONFIGURATION_1_2") + elsif algo == "spear2.2" + algo_config_id = get_algo_config_id(params, "SPEAR_CONFIGURATION_2_2") + elsif algo == "spear2.3" + algo_config_id = get_algo_config_id(params, "SPEAR_CONFIGURATION_2_3") + elsif algo == "spear-orig" + algo_config_id = get_orig_spear_config_id(params) + elsif algo == "gls4mpe" + algo_config_id = get_gls4mpe_config_id(params) + elsif algo == "cplex" + algo_config_id = get_algo_config_id(params, "CPLEX_CONFIGURATION_10_1_1") +# get_cplex_10_1_1_config_id(params) + elsif algo == "smt" + algo_config_id = get_algo_config_id(params, "SPEAR_CONFIGURATION_1_8") + elsif algo == "param_ils_metatune" + algo_config_id = get_algo_config_id(params, "PARAM_ILS_METATUNE_1_0") + #raise "ParamILS Metatuner should NOT use the DB." + elsif algo == "satenstein" + algo_config_id = get_algo_config_id(params, "SATENSTEIN_CONFIGURATION_FH") + else + #algo_config_id = get_general_algorithm_config_id(algo, param_string) + raise "Need to implement method to get algo_config_id for algo #{algo} in function buildAlgorunCmd of global_helper.rb" + end + end + + #=== Build command to run. (concat pairs of "-param param_value") + return [algorun_cmd, cutoff_length, algo_config_id] +end + + +########################################################################### +# Run algorithm and save its result to DB. +########################################################################### +def runalgo(algorun_config_id, seed) + require "dbi_ils_accessor.rb" + host = nil + File.popen("echo $HOSTNAME"){|file| + while line = file.gets + host = line.chomp + puts line + end +# host = file.gets.chomp + } + algo, algorun_cmd = get_algo_and_runcmd_for_algorunconfig(algorun_config_id) +# File.popen("pwd"){|file| puts "Dir = #{file.gets.chomp}"} + + t = Time.now + datetime = t.strftime("%Y-%m-%d %H:%M:%S") # YYYY-MM-DD HH:MM:SS + algo_output_file = "#{tmpdir}/tmp-#{datetime}-#{random_number_without_rand}".gsub(/ /,"") + + numTries = 5 + + if algo == "saps" + #4294967295 +# puts "SAPS seed = #{seed}" + raise "seed too big: #{seed}" if seed >= 2147483647 + + #=== SAPS -> Call special code to parse non-trivial UBCSAT output. We also want to keep track of the whole output file. + run_cmd = "#{algorun_cmd} -seed #{seed} > #{algo_output_file}" #-runs 1 + run_cmd = "./" + run_cmd unless run_cmd =~/^\.\// + require "ubcsat_reader.rb" + i = 0 + begin + puts " Trial #{i} for calling: #{run_cmd}" + system run_cmd + readUbcsatAndWriteToDB(algo_output_file, algorun_config_id, host) + File.delete(algo_output_file) if File.file?(algo_output_file) + rescue #=== Catch error due to files disappearing + if $!.to_s =~ /No such file or directory/ or $!.to_s =~ /Input\output error/ or $!.to_s =~ /Stale NFS file handle/ + i += 1 + retry if i < numTries + else + raise + end + end + + elsif algo == "satenstein" +# puts "SAPS seed = #{seed}" + raise "seed too big: #{seed}" if seed >= 2147483647 + + #=== SATENSTEIN -> Call special code to parse non-trivial UBCSAT output. We also want to keep track of the whole output file. + run_cmd = "#{algorun_cmd} -seed #{seed} > #{algo_output_file}" #-runs 1 + run_cmd = "./" + run_cmd unless run_cmd =~/^\.\// + require "ubcsat_reader.rb" + i = 0 + begin + puts " Trial #{i} for calling: #{run_cmd}" + system run_cmd + readUbcsatAndWriteToDB(algo_output_file, algorun_config_id, host) + File.delete(algo_output_file) if File.file?(algo_output_file) + rescue #=== Catch error due to files disappearing + if $!.to_s =~ /No such file or directory/ or $!.to_s =~ /Input\output error/ or $!.to_s =~ /Stale NFS file handle/ + i += 1 + retry if i < numTries + else + raise + end + end + + + elsif algo == "novelty+" + raise "seed too big: #{seed}" if seed >= 2147483647 + + #=== Novelty+ -> Call special code to parse non-trivial UBCSAT output. We also want to keep track of the whole output file. + run_cmd = "#{algorun_cmd} -seed #{seed} > #{algo_output_file}" #-runs 1 + run_cmd = "./" + run_cmd unless run_cmd =~/^\.\// + require "ubcsat_reader.rb" + i = 0 + begin + puts " Trial #{i} for calling: #{run_cmd}" + system run_cmd + readUbcsatAndWriteToDB(algo_output_file, algorun_config_id, host) + File.delete(algo_output_file) if File.file?(algo_output_file) + rescue #=== Catch error due to files disappearing + if $!.to_s =~ /No such file or directory/ or $!.to_s =~ /Input\output error/ or $!.to_s =~ /Stale NFS file handle/ + i += 1 + retry if i < numTries + else + raise + end + end + + elsif algo == "cplex" + raise "CPLEX is deterministic. The seed value has to be zero for deterministic algorithms, probably there is a bug somewhere." unless seed==-1 + + #=== CPLEX -> Parse fairly simple output from our wrapper. We also want to keep track of the whole output file. + run_cmd = "#{algorun_cmd} #{algo_output_file}" + puts " Calling #{run_cmd}" + require "cplex_reader.rb" + #=== Keep on trying to run until we get a license. + i = 0 + begin + puts " Trial #{i} for calling: #{run_cmd}" + system run_cmd + readCPLEXAndWriteToDB(algo_output_file, algorun_config_id, host) + File.delete(algo_output_file) if File.file?(algo_output_file) + rescue #=== Catch error due to files disappearing + if $!.to_s =~ /No such file or directory/ or $!.to_s =~ /Input\output error/ or $!.to_s =~ /Stale NFS file handle/ + i += 1 + sleep(10) + File.delete(algo_output_file) if File.file?(algo_output_file) + retry + else + raise + end + end + + elsif algo == "param_ils_metatune" + run_cmd = "#{algorun_cmd.sub(/placeholder_for_seed/, "#{seed}")} > #{algo_output_file}" + puts "Calling: #{run_cmd}" + system run_cmd + + content="" + File.open(algo_output_file, "r"){|algo_output| + content = algo_output.gets(nil) + } + add_algo_output_cmd = "insert into FH_OUTPUT (OUTPUT_TEXT) values (\"#{content.gsub(/\"/,"")}\")" + algo_output_id = execute_cmd_with_quotes_one_autoincrement(add_algo_output_cmd, true) + + File.open(algo_output_file){|file| + while line = file.gets + if line =~ /Final Result for ParamILS: / + line = line.sub(/Final Result for ParamILS: /,"") + puts "Result: #{line.strip}" + solved, runtime, runlength, best_sol, tmpseed = line.split(",").map!{|x|x.strip} + p [solved, runtime, runlength, best_sol, seed] + writeResultToDB(algorun_config_id, seed, runtime, runlength, best_sol, 0, 'SAT', algo_output_id, host) + break + end + end + } + + elsif algo == "param_ils_metatune" + run_cmd = "#{algorun_cmd.sub(/placeholder_for_seed/, "#{seed}")} > #{algo_output_file}" + puts "Calling: #{run_cmd}" + system run_cmd + + content="" + File.open(algo_output_file, "r"){|algo_output| + content = algo_output.gets(nil) + } + add_algo_output_cmd = "insert into FH_OUTPUT (OUTPUT_TEXT) values (\"#{content.gsub(/\"/,"")}\")" + algo_output_id = execute_cmd_with_quotes_one_autoincrement(add_algo_output_cmd, true) + + File.open(algo_output_file){|file| + while line = file.gets + if line =~ /Final Result for ParamILS: / + line = line.sub(/Final Result for ParamILS: /,"") + puts "Result: #{line.strip}" + solved, runtime, runlength, best_sol, tmpseed = line.split(",").map!{|x|x.strip} + p [solved, runtime, runlength, best_sol, seed] + writeResultToDB(algorun_config_id, seed, runtime, runlength, best_sol, 0, 'SAT', algo_output_id, host) + break + end + end + } + + elsif algo == "sat4j" + raise "SAT4J is deterministic. The seed value has to be zero for deterministic algorithms, probably there is a bug somewhere." unless seed==-1 + + #=== SAT4J -> Parse fairly simple output. We also want to keep track of the whole output file. + run_cmd = "#{algorun_cmd} > #{algo_output_file}" + require "sat4j_reader.rb" + i = 0 + begin + puts " Trial #{i} for calling: #{run_cmd}" + system run_cmd + readSAT4JAndWriteToDB(algo_output_file, algorun_config_id, host) + exit_code = $? + p exit_code.to_s + if exit_code.to_s =~ /33280/ # /exited\(1\)/ + raise "SAT4J was terminated by user (exit code #{exit_code}" + end + File.delete(algo_output_file) if File.file?(algo_output_file) + rescue #=== Catch error due to files disappearing + if $!.to_s =~ /No such file or directory/ or $!.to_s =~ /Input\output error/ or $!.to_s =~ /Stale NFS file handle/ + i += 1 + retry if i < numTries + else + raise + end + end + +elsif algo == "sls4mpe" or algo == "gls4mpe" + seed = (seed-1).divmod(2147483647)[1]+1 # can't use seed=0 for this implementation + puts "SLS4MPE seed = #{seed}" + + #=== SLS4MPE -> Call special code to parse non-trivial output. We also want to keep track of the whole output file. + run_cmd = "#{algorun_cmd} --seed #{seed} -x 1 > #{algo_output_file}" + run_cmd = "./" + run_cmd unless run_cmd =~/^\.\// + require "sls4mpe_reader.rb" + i = 0 + begin + puts " Trial #{i} for calling: #{run_cmd}" + system run_cmd + readSLS4MPEAndWriteToDB(algo_output_file, algorun_config_id, host) + File.delete(algo_output_file) if File.file?(algo_output_file) + rescue #=== Catch error due to files disappearing + if $!.to_s =~ /No such file or directory/ or $!.to_s =~ /Input\output error/ or $!.to_s =~ /Stale NFS file handle/ + i += 1 + retry if i < numTries + else + raise + end + end + + elsif algo == "spear0.9" + run_cmd = "#{algorun_cmd} > #{algo_output_file}" + puts " Calling #{run_cmd}" + system run_cmd + + require "spear_reader.rb" + readSpearAndWriteToDB(algo_output_file, algorun_config_id, seed, host) + File.delete(algo_output_file) + elsif algo == "spear1.2.1" or algo == "spear1.2" or algo == "spear1.2.1.1" + run_cmd = "#{algorun_cmd} --seed #{seed} > #{algo_output_file}" + require "spear_reader.rb" + + i = 0 + begin + puts " Trial #{i} for calling: #{run_cmd}" + system run_cmd + readSpearAndWriteToDB(algo_output_file, algorun_config_id, seed, host) + File.delete(algo_output_file) if File.file?(algo_output_file) + rescue #=== Catch error due to files disappearing + if $!.to_s =~ /No such file or directory/ or $!.to_s =~ /Input\output error/ or $!.to_s =~ /Stale NFS file handle/ + i += 1 + retry if i < numTries + else + raise + end + end + + elsif algo == "spear2.2" or algo == "spear2.3" + run_cmd = "#{algorun_cmd} --seed #{seed} > #{algo_output_file}" + require "spear_reader.rb" + + i = 0 + begin + puts " Trial #{i} for calling: #{run_cmd}" + system run_cmd + readSpearAndWriteToDB(algo_output_file, algorun_config_id, seed, host) + File.delete(algo_output_file) if File.file?(algo_output_file) + rescue #=== Catch error due to files disappearing + if $!.to_s =~ /No such file or directory/ or $!.to_s =~ /Input\output error/ or $!.to_s =~ /Stale NFS file handle/ + i += 1 + retry if i < numTries + else + raise + end + end + + elsif algo == "smt" + run_cmd = "#{algorun_cmd} --seed #{seed} > #{algo_output_file}" + require "spear_reader.rb" + + i = 0 + begin + puts " Trial #{i} for calling: #{run_cmd}" + system run_cmd + readSpearAndWriteToDB(algo_output_file, algorun_config_id, seed, host) + File.delete(algo_output_file) if File.file?(algo_output_file) + rescue #=== Catch error due to files disappearing + if $!.to_s =~ /No such file or directory/ or $!.to_s =~ /Input\output error/ or $!.to_s =~ /Stale NFS file handle/ + i += 1 + retry if i < numTries + else + raise + end + end + elsif algo == "branin_function" + #=== Branin function script -> simple output, just parse here. Possibly pass seed on to noise from exponential distribution. + run_cmd = "#{algorun_cmd} #{numRuns}" + puts "Calling: #{run_cmd}" + mysql_cmds = [] + File.popen(run_cmd){|file| + while line = file.gets + puts line + if line =~/Observed value (#{float_regexp})./ + result = $1 + if line =~ /Solved./ + solved = "SAT" + else + solved = "TIMEOUT" + end + mysql_cmds << "insert into ALGORUN (ALGORUN_CONFIG_ID,MEASURED_RUNTIME,SOLVED, DATE) VALUES (#{algorun_config_id}, #{result}, '#{solved}', now());" + end + end + } + raise "No branin_function run generated by command #{run_cmd}}" unless mysql_cmds.length > 0 + execute_cmds(mysql_cmds) + else + raise "Algo #{algo} not implemented yet." + end +end + + + +########################################################################### +# Outputs the objective function values for each of the instances -- mainly for CALIBRA. +# An instanceHash is a Hash {instance_name=>{"desired_qual"=>optqual, "result"=>[res_1, res_2, ..., res_numLsRuns]}} where res_i = [time, steps, solqual_found] +########################################################################### +def outputObjectives(instances_sorted, objectives) + raise "not a result for each instance: #{instances_sorted}, #{objectives}" unless instances_sorted.length == objectives.length + + for i in 0...objectives.length + puts "#{instances_sorted[i]}: #{objectives[i][0]}\t\t[based on #{objectives[i][1]} runs]" + end +end + + +def outputCalibraObjectivesFairEval(algo, within_obj, obj_function, instances_sorted, objectives) + raise "not a result for each instance: #{instances_sorted}, #{objectives}" unless instances_sorted.length == objectives.length + + for i in 0...objectives.length + if within_obj == "runtime" or within_obj == "median_runtime" + obj = objectives[i][0]+1 + obj = 1000 if obj > 1000 + elsif within_obj == "runlength" or within_obj == "median_runlength" + if 1+objectives[i][0] > 1000000*1000 + obj = 1000 + else + obj = 1 + objectives[i][0].to_f / 1000000 + end + elsif algo == "branin_function" + obj = 1 + objectives[i][0] + elsif algo == "sls4mpe" + obj = 1 + objectives[i][0] + elsif algo == "gls4mpe" + obj = 1 + objectives[i][0] + else + raise "Need to implement calibra output function for algorithm #{algo}." + end + + puts "Calibra objective: #{obj}\n [based on #{objectives[i][1]} runs for #{instances_sorted[i]}]" + end + puts "Total runtime: #{$total_cputime}" +end + + +########################################################################### +# Extract the appropriate value for the algorithm from the result [runtime, runlength, qual_found, des_qual] +########################################################################### +def singleRunObjective(algo, run_obj, result, qual, rest, cutoff_time=100, cutoff_length=2147483647) + raise "singleRunObjective: result = #{result}" unless result + eps = 0.0001 + solved, runtime, runlength, found_qual, seed = result #.map{|x|x.to_f} + + + if run_obj == "SATRace08" + t = 900 + score = 0 +# p result +# p runtime + unless solved == "TIMEOUT" or runtime.to_f > t + score = score + 1 + x = 1.3 # that's what this constant worked out to be in the SAT Race 2006 + numsuccesful = 1 +# p qual +# p rest + if qual + other_runtimes = [qual] + else + other_runtimes = [] + end + other_runtimes += rest +# p other_runtimes + for other_runtime in other_runtimes + if other_runtime.to_f < 10000 + numsuccesful = numsuccesful + 1 + end + end + p_max = x/numsuccesful; + score = score + p_max * (1-runtime.to_f/t) + end +# p result +# p runtime +# p other_runtimes +# p score + return -score + end + + if solved == "TIMEOUT" + #=== Break ties by solution quality (negative quality counted as 0). + runtime = cutoff_time + 1e-5 + [0.001, [0, found_qual.to_f/1e5].max].min # replaced [0.001, found_qual.abs.to_f/1e5].min. The 1e-5 is there to avoid numerical problem, so this is > cutoff_time for sure. The min(0.001, ...) is such that it really only acts as a tie breaker, and the max(0, ...) is such that negative qualities don't screw us up. + runlength = runlength + [0.001, found_qual.abs.to_f/1e5].min # just for tie-breaking. I am NOT using cutoff_length anymore. + score = 0 + elsif solved == "WRONG ANSWER" || solved == "WRONG" || solved == "CRASHED" + runtime = cutoff_time + [0.001, found_qual.abs.to_f/1e5].min + runlength = runlength + [0.001, found_qual.abs.to_f/1e5].min + score = 0 + elsif solved == "ABORT" + puts "Got an ABORT message from the wrapper command. ABORTING PARAMILS." + exit -1 + else + runtime = runlength.to_f/100000 if runtime.to_f < 0.0001 # to break ties when all runtimes are 0 + runtime = runtime.to_f + runlength = runlength.to_i + score = -1.0/(1.0+runtime.to_f) + found_qual = found_qual.to_f + end + + return found_qual if run_obj == "qual" + return runlength if run_obj == "runlength" or run_obj == "median_runlength" + return runtime if run_obj == "runtime" or run_obj == "median_runtime" + return score if run_obj == "score" + if run_obj == "approx" + approx_qual = qual.to_f/found_qual # <= 1, want to max + return 1 - approx_qual + end + if run_obj == "prob" +# p reference +# p found_qual +# p result + diff = qual.to_f-found_qual # average only over runs on this instance. + return 10 ** diff + end + if run_obj == "speedup" + ref = rest[0].to_f + ref = 0.01 if ref < 0.00001 + ref = 10000 if ref > 999.99999 #timeout + runtime=0.01 if runtime < 0.00001 + runtime = 10000 if runtime == $max_objective #timeout + speedup = runtime/ref +# puts "#{runtime} / #{ref} = #{speedup}" + return speedup + end + raise "Need to define run_obj #{run_obj} in singleRunObjective in algo_specifics." +end + + +def getObjectivesForComputedInstances(algo, within_obj, instances, instances_sorted, state_as_string) + #=== Results are stored directly in the instances array. Just extract them. + runsWithResults = [] + resultsCanExist = true + for entry in instances + if entry["resultForState"].key?(state_as_string) + raise "@instances array has no result for early instance but result for latter one: state #{state_as_string}, @instances #{@instances}" unless resultsCanExist + runsWithResults << entry + else + resultsCanExist = false #=== Just as a safety check. + end + end + return getAllObjectives(algo, within_obj, runsWithResults, instances_sorted, state_as_string) +end + +def getGlobalObjective(algo, within_obj, obj_function, instances, state_as_string, cutoff_time=100, cutoff_length=2147483647) +# require "stats_ils.rb" + results = [] + for entry in instances + if entry["resultForState"].key?(state_as_string) + if entry["resultForState"][state_as_string].key?(cutoff_time) + result = entry["resultForState"][state_as_string][cutoff_time] + else + cutoff_times = entry["resultForState"][state_as_string].keys + result = entry["resultForState"][state_as_string][cutoff_times.max] + end + #results << singleInstanceObjective(algo, within_obj, [result], entry["qual"], entry["reference"]) + results << singleRunObjective(algo, within_obj, result, entry["desired_qual"], entry["rest"], cutoff_time, cutoff_length) + end + end +# return [results.avg, results.length] + return [combinationOfObjectiveFunctions(algo, obj_function, results, within_obj, cutoff_time, cutoff_length), results.length] +end + +########################################################################### +# Extract the appropriate value for the algorithm from the result [runtime, runlength, qual_found, des_qual] +########################################################################### +def getAllObjectives(algo, within_obj, instances, instances_sorted, stripped_state_int, cutoff_time=100, cutoff_length=2147483647) + instanceHash = makeStandardInstanceHash(instances, stripped_state_int) + + objectives = [] + for inst in instances_sorted + if instanceHash.key?(inst) + result = instanceHash[inst]["result"] + p result + qual = instanceHash[inst]["desired_qual"] + rest = instanceHash[inst]["rest"] + results = [] + for res in result + results << singleRunObjective(algo, within_obj, res, qual, rest, cutoff_time, cutoff_length) + end +# require "stats_ils.rb" + objectives << [results.median, results.length] +# objectives << [singleInstanceObjective(algo, within_obj, result, qual, reference), result.length] + else + objectives << [nil, 0] + end + end + return objectives +end + +########################################################################### +# Summarize the results as one float. +########################################################################### +def combinationOfObjectiveFunctions(algo, obj_function, instanceObjectives, within_obj = "runtime", cutoff_time=100, cutoff_length=2147483647) + return $max_objective * 10000 if instanceObjectives.empty? + + maxOK = cutoff_time + if within_obj == "runlength" or within_obj == "median_runlength" + maxOK = cutoff_length + end + +# require "stats_ils.rb" + return instanceObjectives.quantile(0.9) if obj_function == "q90" +# return instanceObjectives.median if obj_function == "median" + return instanceObjectives.quantile(0.5) if obj_function == "median" + return instanceObjectives.avg if obj_function == "mean" + if obj_function == "mean1000" + mod_obj = [] + for obj in instanceObjectives + if obj > maxOK + mod_obj << obj*1000 # FH: replaced maxOK by obj to enable tie breaking by solution quality (obj has a small additive term from the solution quality in there). + else + mod_obj << obj + end + end + return mod_obj.avg + end + if obj_function == "mean10" + mod_obj = [] + for obj in instanceObjectives + if obj > maxOK + mod_obj << obj*10 # FH: replaced maxOK by obj to enable tie breaking by solution quality (obj has a small additive term from the solution quality in there). + else + mod_obj << obj + end + end + return mod_obj.avg + end + return instanceObjectives.avg if obj_function == "avg" + if obj_function == "geomean" + sum=0 +# puts instanceObjectives + for obj in instanceObjectives + sum += Math.log10(obj) + end + avg = sum/instanceObjectives.length + return 10 ** avg + end + if obj_function == "adj_mean" + sum = 0 + numSucc = 0 + for obj in instanceObjectives + if obj, where is the path to a text file with instances (see README.TXT for details)" + out.puts "-ordered , where in {0,1} [#{@ordered_instances}]. When this is 1, preserve the order of re-sampled instances (e.g. easy first)." + out.puts "-numRepetitions , where is a positive integer [#{@numRepetitions}]" + out.puts "-deterministic , where is in {0,1}[#{@deterministic_algorithm}]" +end + +# ========================================= +# MAIN +# ========================================= + +@instanceset_filename = "SW-saps-1M-to2M-scrambled-first100.txt" +@ordered_instances = 0 +@numRepetitions = 100 +@deterministic_algorithm = 0 +@stratified = 1 +meta = false +@ordered = false + +if ARGV.length < 1 + output_help($stdout) + exit +end + +# ========================================= +# Read in command line options. +# ========================================= +passedArgIndices = [] +0.step(ARGV.length-1, 2){|i| + case ARGV[i] + when "-instanceFile" + @instanceset_filename = ARGV[i+1] + when "-stratified" + @stratified = ARGV[i+1] + when "-ordered" + @ordered_instances = ARGV[i+1] + when "-numRepetitions" + @numRepetitions = ARGV[i+1].to_i + when "-deterministic" + @deterministic_algorithm = ARGV[i+1] + when "-meta" + meta = ARGV[i+1] + else + output_help($stdout) + puts "\n\n" + raise "Unknown argument: #{ARGV[i]}" + end +} + +@ordered_instances = false if @ordered_instances == "0" or @ordered_instances == 0 +@deterministic_algorithm= false if @deterministic_algorithm == "0" or @deterministic_algorithm == 0 +@stratified = false if @stratified == "0" or @stratified == 0 + +#=== Read instance names, solution qualities and references from file. +i_Hash, orig_instances_sorted = getInstanceHash(@instanceset_filename) + +# ========================================= +# Set up the seeded instance files. +# ========================================= +@order_str = "" +@order_str = "-ordered" if @ordered_instances + +@det_str = "" +@det_str = "-det_algo" if @deterministic_algorithm + +@strat_str = "" +@strat_str = "-strat" if @stratified + +#=== If we go through in the original order, stratified is not needed (and actually not wanted). +if @ordered_instances + @stratified = false +end + +subdir = "#{@instanceset_filename.sub(/\.txt/,"")}#{@strat_str}#{@det_str}#{@order_str}" +system "mkdir #{subdir}" unless File.exist?(subdir) + +seed = 1234 +srand(seed) + +#=== @numRepetitions times, take 2000 samples , with replacement. +for repetition in 0...@numRepetitions + @inst_seeds = [] + strat_instances = orig_instances_sorted.dup + for i in 0...2000 + if @stratified + break if @deterministic_algorithm and strat_instances.empty? + strat_instances = orig_instances_sorted.dup if strat_instances.empty? + inst = strat_instances[rand(strat_instances.length)] + strat_instances.delete(inst) + elsif @ordered_instances + inst = orig_instances_sorted[i.divmod(orig_instances_sorted.length)[1]] + else + inst = orig_instances_sorted[rand(orig_instances_sorted.length)] + end + algoseed = rand(2147483646)+1 # Let's not use zero, some algos don't accept that as a seed. + algoseed = i / (orig_instances_sorted.length) if meta # meta-tuning for ParamILS - the seed is the run number. + + algoseed = -1 if @deterministic_algorithm + #algoseed = 1851696952 if @deterministic_algorithm # -- only for Spear when using fixed seed + + @inst_seeds << [inst, algoseed] + end + +# if @ordered_instances +# @inst_seeds.sort!{|x,y| orig_instances_sorted.index(x[0])<=>orig_instances_sorted.index(y[0])} +# end + + filename = "#{subdir}/instance_list_#{repetition}.txt" + File.open(filename, "w"){|file| + for inst_seed in @inst_seeds + inst, algoseed = inst_seed + i_Hash[inst]["reference"] = [] unless i_Hash[inst]["reference"] + file.puts "#{algoseed} #{inst} #{i_Hash[inst]["desired_qual"]} #{i_Hash[inst]["reference"].join(" ")}" + end + } +end \ No newline at end of file diff --git a/sparkle/Components/paramils2.3.8-source/doc/ParamILS1.0-Quickstart.pdf b/sparkle/Components/paramils2.3.8-source/doc/ParamILS1.0-Quickstart.pdf new file mode 100755 index 000000000..85fb34755 Binary files /dev/null and b/sparkle/Components/paramils2.3.8-source/doc/ParamILS1.0-Quickstart.pdf differ diff --git a/sparkle/Components/paramils2.3.8-source/doc/ParamILS2.2-Quickstart.pdf b/sparkle/Components/paramils2.3.8-source/doc/ParamILS2.2-Quickstart.pdf new file mode 100755 index 000000000..c27cab13f Binary files /dev/null and b/sparkle/Components/paramils2.3.8-source/doc/ParamILS2.2-Quickstart.pdf differ diff --git a/sparkle/Components/paramils2.3.8-source/doc/ParamILS2.3-Quickstart.pdf b/sparkle/Components/paramils2.3.8-source/doc/ParamILS2.3-Quickstart.pdf new file mode 100755 index 000000000..67641830f Binary files /dev/null and b/sparkle/Components/paramils2.3.8-source/doc/ParamILS2.3-Quickstart.pdf differ diff --git a/sparkle/Components/paramils2.3.8-source/example_cplex/cplex-params.txt b/sparkle/Components/paramils2.3.8-source/example_cplex/cplex-params.txt new file mode 100755 index 000000000..47c9fdbd6 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_cplex/cplex-params.txt @@ -0,0 +1,90 @@ +advance {1}[1] #ADVIND. No auto. Normally {0,1,2}, but requires a basis supplied by user, so N/A. Cat. +barrier_algorithm {0,1,2,3}[0] #BARALG. No auto. Some numerical issues. Cat. +barrier_colnonzeros {0}[0] #BARCOLNZ. 0=Auto, poorly informed. N+. {0,5,20,80,320,1280} +barrier_convergetol {1e-08}[1e-08] #BAREPCOMP. No auto. Numerical, left at default. R+, >= 1e-12 +barrier_crossover {-1,0,1,2}[0] #BARCROSSALG. 0=Auto. Cat. +barrier_limits_corrections {-1}[-1] #BARMAXCOR. -1=Auto. Numerical, left at default. {-1,0,N+} +barrier_limits_growth {1e+6,1e+8,1e+10,1e+12,1e+14}[1e+12] #BARGROWTH. No auto. Somewhat numerical. R+, >=1.0 +barrier_ordering {0,1,2,3} [0] #BARORDER. 0=Auto. Cat. +barrier_qcpconvergetol {1e-07}[1e-07] #BARQCPEPCOMP. No auto. Numerical, left at default. R+, >= 1e-12 +barrier_startalg {1,2,3,4}[1] #BARSTARTALG. No auto. Cat. +emphasis_memory {yes,no}[no] #MEMORYEMPHASIS. No auto. Binary. +emphasis_mip {0,1,2,3,4}[0] #MIPEMPHASIS. No auto. Binary. +emphasis_numerical {yes,no}[no] #NUMERICALEMPHASIS. No auto. Binary. +feasopt_mode{0,1,2,3,4,5}[0] #FEASOPTMODE. No auto. Cat. +feasopt_tolerance{1e-04,1e-06,1e-08}[1e-06] #EPRELAX. Not sure if this is a tuning parameter. R+, >1e-8 +lpmethod {0,1,3,4,5,6}[0] #LPMETHOD. 0=Auto. Cat. If threads = 1 (for us always) 2 is the same as 0. +mip_cuts_cliques {-1,0,1,2,3}[0] # CLIQUES. 0=Auto. Cat. +mip_cuts_covers {-1,0,1,2,3}[0] #COVERS. 0=Auto. Cat. +mip_cuts_disjunctive {-1,0,1,2,3}[0] #DISJCUTS. 0=Auto. Cat. +mip_cuts_flowcovers {-1,0,1,2}[0] #FLOWCOVERS. 0=Auto. Cat. +mip_cuts_gomory {-1,0,1,2}[0] #FRACCUTS. 0=Auto. Cat. +mip_cuts_gubcovers {-1,0,1,2}[0] #GUBCOVERS. 0=Auto. Cat. +mip_cuts_implied {-1,0,1,2}[0] #IMPLBD. 0=Auto. Cat. +mip_cuts_mircut {-1,0,1,2}[0] #MIRCUTS. 0=Auto. Cat. +mip_cuts_pathcut {-1,0,1,2}[0] #FLOWPATHS. 0=Auto. Cat. +mip_limits_aggforcut {0,1,2,3,5,10} [3] #AGGCUTLIM. No auto. +mip_limits_cutpasses {0}[0] #CUTPASS. 0=Auto. Poorly informed. {-1,0,1,4,16,64} +mip_limits_cutsfactor {1,2,4,8,16}[4] #CUTSFACTOR. No auto. R+ +mip_limits_gomorycand {50,100,200,400,800}[200] #FRACCAND. No auto. N+ +mip_limits_gomorypass {0}[0] #FRACPASS. 0=Auto. poorly informed. N+. {0,1,4,16,64} +mip_limits_polishtime {0}[0] #POLISHTIME. This is an important parameter, but only for optimization problems, not for prooving optimality. It should also be set relative to allowed runtime. +mip_limits_probetime {2,5,10,100,1e+75}[1e+75] #PROBETIME. No auto. R+. Setting this fairly low should allow us to use aggressive probing up to a cutoff time. +mip_limits_repairtries {0}[0] #REPAIRTRIES. Only if user provides MIP starting solution. No auto. N+. N/A +mip_limits_strongcand {2,5,10,20,40}[10] #STRONGCANDLIM. No auto. N+ +mip_limits_strongit {0}[0] #STRONGITLIM. 0=Auto. N+. Poorly informed. {0,5,10,20,40,80} +mip_limits_submipnodelim {125,250,500,1000,2000}[500] #SUBMIPNODELIM. No auto. N+ +mip_ordertype {0,1,2,3}[0] #MIPORDIND. No auto. Cat. +mip_strategy_backtrack {0.99, 0.999, 0.9999, 0.99999, 0.999999}[0.9999] #BTTOL. No auto. R+ in interval 0 to 1. +mip_strategy_bbinterval {0,2,4,7,15,30}[7] #BBINTERVAL. N+_0. No auto. +mip_strategy_branch {-1,0,1}[0] #BRDIR. 0=Auto. Cat. +mip_strategy_dive {0,1,2,3}[0] #DIVETYPE. 0=Auto. Cat. +mip_strategy_file {0,1}[1] #NODEFILEIND. No auto. Cat. DISALLOW values 2 and 3 => they write files to disk (stuff will break and we run out of space) +mip_strategy_heuristicfreq {-1,0,5,10,20,40,80}[0] #HEURFREQ. 0=Auto. 20 may be good setting. N+ +mip_strategy_lbheur {yes,no} [no] #LBHEUR. No auto. Binary. +mip_strategy_nodeselect {0,1,2,3}[1] #NODESEL. No auto. Cat. +mip_strategy_order{yes,no}[yes] #MIPORDIND. No auto. Binary. +mip_strategy_presolvenode {-1,0,1,2}[0] #PRESLVND. 0=Auto. Cat. +mip_strategy_probe {-1,0,1,2,3}[0] #PROBE. 0=Auto. Cat. But if I remember correctly, this is one of the most important tuning params. +mip_strategy_rinsheur {-1,0,5,10,20,40,80}[0] #RINSHEUR. 0=Auto. N+. 20 might be a good value. +mip_strategy_startalgorithm {0,1,2,3,4,5,6}[0] #STARTALG. 0=Auto. Cat. +mip_strategy_subalgorithm {0,1,2,3,4,5}[0] #SUBALG. 0=Auto. Cat. +mip_strategy_variableselect {-1,0,1,2,3,4}[0] #VARSEL. 0=Auto. Cat. +network_netfind {1,2,3}[2] #NETFIND. No auto. Cat. +network_pricing {0,1,2}[0] #NETPPRIIND. 0=Auto, but currently equivalent to (now thus hidden) option 3. Cat. +preprocessing_aggregator {-1}[-1] #AGGIND. -1=Auto. poorly informed. N+ {-1,0,1,4,16} +preprocessing_boundstrength {-1,0,1}[-1] #BNDSTRENIND. -1=Auto. Cat. +preprocessing_coeffreduce {0,1,2}[2] #COEREDIND. No auto. Cat. +preprocessing_dependency {-1,0,1,2,3}[-1] #DEPIND. -1=Auto. Cat. +preprocessing_dual {-1,0,1}[0] #PREDUAL. 0=Auto. Cat. +preprocessing_fill {2,5,10,20,40}[10] #AGGFILL. No auto. +preprocessing_numpass {-1}[-1] #PREPASS. -1=Auto. N+. Poorly informed. 0 is redundant (no preproc)) {-1,1,2,4,8,16} +preprocessing_presolve {yes,no}[yes] #PREIND. No auto. Binary. +preprocessing_qpmakepsd {yes,no}[yes] #QPMAKEPSDIND. No auto. Binary. +preprocessing_reduce {0,1,2,3}[3] #REDUCE. No auto. Cat. +preprocessing_relax {-1,0,1}[-1] #RELAXPREIND. -1=Auto. Cat. +preprocessing_repeatpresolve {-1,0,1,2,3}[-1] #REPEATPRESOLVE. -1=Auto. Cat. +preprocessing_symmetry {-1,0,1,2,3}[-1] #SYMMETRY. -1=Auto. Cat. +qpmethod {0,1,2,3,4}[0] #QPMETHOD. 0=Automatic. Cat. +read_scale {-1,0,1}[0] #SCAIND. No auto. Cat. +sifting_algorithm {0,1,2,3,4}[0] #SIFTALG. 0=Auto. Cat. +simplex_crash {-1,0,1}[1] #CRAIND. No auto. Cat. +simplex_dgradient {0,1,2,3,4,5}[0] #DPRIIND. 0=Auto. Cat. +simplex_limits_perturbation {0}[0] #PERLIM. 0=Auto. Poorly informed. N+ {0,10,100,1000} +simplex_limits_singularity {2,5,10,20,40}[10] #SINGLIM. No auto. N+ +simplex_perturbation {no 1e-06, yes 1e-06}[no 1e-06] #PERIND. Very annoying, two variables in one! PERIND is the indicator, leave the constant at its value. No auto. Binary & R+ for the two params. +simplex_pgradient {-1,0,1,2,3,4}[0] #PPRIIND. No auto. Cat. +simplex_pricing {0}[0] #PRICELIM. 0=Auto. N+. Size of simplex pricing candidate list. Poorly informed. {0,5,10,20,40,80} +simplex_refactor {0} [0] #REINV. 0=Auto. N+. Simplex refactorization interval. Hoyt's LP notes say Chvtal suggests an optimal refactorization interval of 16. {0,4,8,16,32,64} +simplex_tolerances_feasibility {1e-06}[1e-06] # EPINT. Numerical - use default for now. R+, > 1e-5 +simplex_tolerances_markowitz {0.01}[0.01] # EPMRK. No auto. Numerical - use default for now. R+ in interval 0.0001 to 0.99999. +simplex_tolerances_optimality {1e-06}[1e-06] # EPOPT. Numerical - use default for now. R+, > 1e-5 + +Conditionals: +mip_limits_gomorycand | mip_cuts_gomory in {0,1,2} # mip_cuts_gomory just can't be -1 +mip_limits_strongcand | mip_strategy_variableselect in {3} +mip_limits_strongit | mip_strategy_variableselect in {3} +mip_limits_submipnodelim | mip_strategy_rinsheur in {0,5,10,20,40,80} # RINSHEUR not -1 +mip_strategy_bbinterval | mip_strategy_nodeselect in {2} +preprocessing_numpass | preprocessing_presolve in {yes} +mip_strategy_order | mip_ordertype in {1,2,3} diff --git a/sparkle/Components/paramils2.3.8-source/example_cplex/cplex_wrapper.rb b/sparkle/Components/paramils2.3.8-source/example_cplex/cplex_wrapper.rb new file mode 100755 index 000000000..4355b8a16 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_cplex/cplex_wrapper.rb @@ -0,0 +1,197 @@ +require "param_reader.rb" +#=== This wrapper reads in some parameters, sets up a call to CPLEX, performs it, reads the result, and outputs it in a nice format for ParamILS. + +#=== Deal with inputs. +if ARGV.length < 5 + puts "CPLEX wrapper is a wrapper around CPLEX, so it can be tuned with ParamILS." + puts "Usage: ruby cplex_wrapper.rb ." + exit -1 +end +instance_relname = ARGV[0] +instance_specifics = ARGV[1] # ignored in all cases so far +cutoff_time = ARGV[2].to_f +cutoff_length = ARGV[3].to_i +seed = ARGV[4].to_i # ignored + +if cutoff_length > 2100000000 + cutoff_length = 2100000000 +end + +t = Time.now +datetime = t.strftime("%Y-%m-%d %H:%M:%S") # YYYY-MM-DD HH:MM:SS +#outfile = "cplex-out-#{datetime}-#{rand}".gsub(/ /,"") +outfile = "./example_cplex/cplex-out-tmp-#{rand}" + +param_lines = [] +i=5 +while i #{outfile}" +system("#{cmd} > #{outfile}") + +=begin +inner_exit = $? +puts "inner exit: #{inner_exit}" +puts "Outfile: #{outfile}" +=end + +=begin +File.open(outfile, "w"){|out| +# puts "Calling cmd: #{cmd}" + File.popen(cmd){|file| + while line = file.gets +# puts line + out.puts line + end + } +} +=end + + + +######################################################################### +#=== Reading output. +######################################################################### + +#=== Setting up variables for run output. +solved = "CRASHED" +seed = -1 +best_sol = -1 +best_length = -1 +measured_runlength = -1 +measured_runtime = -1 + +gap = 1e10 + +File.open(outfile){|file| + while line = file.gets +# puts "Read line: #{line}" + + ######################################################################### + #=== Parsing CPLEX run output + ######################################################################### + if line =~/(#{float_regexp})%/ + gap = $1.to_f + end + + if line =~ /MIP\s*-\s*Integer optimal solution:\s*Objective\s*=\s*(#{float_regexp})/ + best_sol = $1 + solved = 'SAT' + end + + if line =~ /MIP\s*-\s*Integer optimal,\s*tolerance\s*\(#{float_regexp}\/#{float_regexp}\):\s*Objective\s*=\s*(#{float_regexp})/ + best_sol = $1 + solved = 'SAT' + end + + + if line =~ /Solution time\s*=\s*(#{float_regexp})\s*sec\.\s*Iterations\s*=\s*(\d+)\s*Nodes\s*=\s*(\d+)/ + measured_runtime = $1 + iterations = $2 + measured_runlength = $3 + end + + if line =~ /Solution time\s*=\s*(#{float_regexp}) sec\.\s*Iterations =\s*(\d+)/ +# solved = 'SAT' + measured_runtime = $1 + iterations = $2 + end + + if line =~ /Solution time =\s*(#{float_regexp}) sec\./ + #solved = 'SAT' + measured_runtime = $1 + iterations = 0 + end + + if line =~ /Optimal:\s*Objective =\s*#{float_regexp}/ + solved = 'SAT' + end + + if line =~ /Infeasible/ + solved = 'UNSAT' + end + + if line =~ /MIP\s*-\s*Time limit exceeded, integer feasible:\s*Objective\s*=\s*(#{float_regexp})/ + best_sol = $1 + solved = 'TIMEOUT' + end + + if line =~ /MIP - Time limit exceeded, no integer solution./ + solved = 'TIMEOUT' + end + + if line =~ /CPLEX Error 1001: Out of memory./ + solved = 'TIMEOUT' + end + + if line =~ /CPLEX Error 3019: Failure to solve MIP subproblem./ + solved = 'TIMEOUT' + end + + if line =~ /CPLEX Error/ + solved = 'TIMEOUT' + end + + if line =~ /Time limit exceeded/ + solved = 'TIMEOUT' + end + +# if line =~ /Filesize limit exceeded/ +# solved = 'TIMEOUT' +# end + + if line =~ /Solution time =\s*(#{float_regexp})\s*sec\.\s*Iterations\s*=\s*(\d+)\s*Nodes\s*=\s*\((\d+)\)\s*\((\d+)\)/ + measured_runtime = $1 + iterations = $2 + measured_runlength = $3 + end + + raise "Error: Failed to initialize CPLEX environment" if line =~ /Failed to initialize CPLEX environment./ + end + best_sol = gap # This is really what we want to minimize. + +# raise "Error: solved neither TIMEOUT nor SAT - probably parsing problem. Here's the complete output: #{content}" + + if solved == "CRASHED" + puts "\n\n==============================================\n\nWARNING: CPLEX crashed -> most likely file not found or no license\n\n=======================\n" + #=== You may want to catch this exception and try a rerun once a license frees up - that's what I do in my own experiments. + raise "No such file or directory: CPLEX crashed -> most likely file not found or no license\n\n=======================" + else + puts "Result for ParamILS: #{solved}, #{measured_runtime}, #{measured_runlength}, #{best_sol}, #{seed}" + end +} +File.delete(outfile) diff --git a/sparkle/Components/paramils2.3.8-source/example_cplex/param_reader.rb b/sparkle/Components/paramils2.3.8-source/example_cplex/param_reader.rb new file mode 100755 index 000000000..068913b95 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_cplex/param_reader.rb @@ -0,0 +1,292 @@ +def float_regexp() + return '[+-]?\d+(?:\.\d+)?(?:[eE][+-]\d+)?'; +end + +# ================================================ +# Read parameters from executable. +# ================================================ +def read_params(paramfile) + params = [] + domain = Hash.new + default = Hash.new + conditionals = Hash.new + forbidden_combos = [] + + File.open(paramfile){|file| + #=== Match parameter format: param_name {value1,value2,...}[default_value] + while line = file.gets and line =~ /^(.*)\s*\{(.*)\}\s*\[(.*)\]/ or line =~ /^\s*(#.*)?\n$/ + next if line =~ /^\s*(#.*)?\n$/ # deal with empty and comment lines + line =~ /^(.*)\s*\{(.*)\}\s*\[(.*)\]/ + parname, vals, default_val = $1.strip, $2.strip, $3.strip + values = vals.strip.split(",").map{|x|x.strip} #Match values. + #=== Check whether possible values include default - deal with possible different number formats. + unless values.include?(default_val) + if default =~ /(#{float_regexp})/ + def_f = $1.to_f + for val in values + default = $1 if val =~ /(#{float_regexp})/ and $1.to_f == def_f + end + end + raise "default value #{default_val} is not a possible value for #{parname}. Only #{values.join(",")} are ok." unless values.include?(default_val) + end + domain[parname] = values + default[parname] = default_val + end +# p line +# p domain + params = domain.keys.sort + + #=== Deal with conditional parameters. + #=== Already read line "Conditionals" (since it's the first line not matching the above) + #=== Example: parameter a is only relevant if c=1 or c=2: "a|c in {1,2}" + + #=== Match lines with conditional rules. + while line=file.gets and line =~ /^(.*)\|(.*) in \{(.*)\}/ or line =~ /^\s*(#.*)?\n$/ + next if line =~ /^\s*(#.*)?\n$/ # deal with empty and comment lines + line =~ /^(.*)\|(.*) in \{(.*)\}/ + conditional_param, deciding_param, deciding_vals = $1, $2, $3 + conditional_param.strip! + deciding_param.strip! + deciding_vals = deciding_vals.strip.split(",").map{|x|x.strip} + + #=== Make sure there are no errors. + puts "WARNING. Conditional parameter #{conditional_param} does not exist." unless params.include?(conditional_param) + puts "WARNING. Variable #{deciding_param} which #{conditional_param} is conditional on does not exist." unless params.include?(deciding_param) + deciding_vals.each{|x| +# puts "WARNING. Value #{x} of variable #{deciding_param} which #{conditional_param} is conditional on does not exist." unless domain[deciding_param].include?(x) + } +# deciding_vals.map!{|x| domain[deciding_param].index(x)} + conditionals[conditional_param] = Hash.new unless conditionals.key?(conditional_param) + conditionals[conditional_param][deciding_param] = deciding_vals + end +# puts line + + while line=file.gets + next if line =~ /^\s*(#.*)?\n$/ # deal with empty and comment lines + line =~ /\{(.*)\}/ + combo =$1 + #TODO: implement debugging info in case specified values don't exist. + forbidden_combos << combo.split(",").map{|x|x.strip.split("=")} # One entry: "a=1,b=2,c=3" => ["a=1","b=2","c=3"] => [[a,1],[b,2],[c,3]] + end + + combos = 1 + num_params = 0 + for param in params + num_params += 1 if domain[param].length>1 + combos *= domain[param].length + end + +# puts "Number of parameters with >1 value: #{num_params}" +# puts "Number of parameter configurations (less forbidden ones): #{combos}" + } + return [params, domain, default, conditionals, forbidden_combos] +end + +# ========================================= +# Remove all irrelevant conditional parameters from state. When one is removed that may trigger others to be removed, too. +# ========================================= +def strip_state(state) + removedParam = true + activeParams = state.keys.sort.dup + while removedParam +# p activeParams + removedParam = false + paramsForLoop = activeParams.dup + for param in paramsForLoop + if $conditionals.key?(param) + for parent in $conditionals[param].keys + if (not $conditionals[param][parent].index(state[parent])) or (not activeParams.include?(parent)) +# p $conditionals[param][parent] + activeParams.delete(param) + removedParam = true + next + end + end + end + end + end + result = Hash.new + for param in activeParams + result[param] = state[param] + end + return result +end + +# ========================================= +# state as string +# ========================================= +def state_string(state) + return state["param_string"] if state.key?("param_string") + stripped_state = strip_state(state) + stripped_state.keys.sort.map{|param| param + "=" + stripped_state[param].to_s}.join(" ") +end + + +def output_to_s(params, domain, default, conditionals, forbidden_combos) + output = [] + output << "======================================================\nparameters begin: " + for param in params + output << " #{param}: domain=#{domain[param].join(",")}, default=#{default[param]}" + end + output << "parameters end.\n======================================================" + + output << "======================================================\nconditionals begin: " + for key in conditionals.keys.sort + output << " #{key}| #{conditionals[key].to_a.join(" ")}" + end + output << "conditionals end.\n======================================================" + + output << "======================================================\nforbidden begin: " + for forbidden_combo in forbidden_combos + output << " #{forbidden_combo.map{|x|x.join("=")}.join(", ")}" + end + output << "forbidden end.\n======================================================" + return output.join("\n") +end + + +# ========================================= +# Returns true iff state is forbidden by $forbidden_combos. +# ========================================= +def forbidden(state, forbidden_combos) + forbidden = false + for forbidden_combo in forbidden_combos + #A combo is satisfied if all its assignments are satisfied. + match = true + for assignment in forbidden_combo + param, forbidden_value = assignment + match = false unless state[param] == forbidden_value +# puts "#{param}, #{forbidden_value}" +# puts "#{param}, #{state[param]}" + end + return true if match # a forbidden combo is matched. + end + return false +end + + +# ========================================= +# Binary counter for increasing the state one at a time. Return value true/false, changing state itself! +# ========================================= +def increase_state(state, domain, sorted_params, fixed_ass) +# p $conditionals +# err + for param in sorted_params + next if fixed_ass.key?(param) + + #=== If parameter is conditional, skip it if it is inactive. + if $conditionals.key?(param) + active = true +# puts "param" +# p param + for deciding_param in $conditionals[param].keys +# puts "deciding_param" +# p deciding_param + good_vals= $conditionals[param][deciding_param] +# puts good_vals +# p good_vals + active = false unless good_vals.include?(state[deciding_param]) + end + next unless active + end + + idx = domain[param].index(state[param]) + raise "idx can't be nil but it is for state #{state} and param #{param} with domain #{$domain[param]} and value state[param]" if idx == nil + + if idx == domain[param].length-1 + state[param] = domain[param][0] + else + state[param] = domain[param][idx+1] + return true + end + end + return false # can't increase state anymore +end + +# ========================================= +# Return true if y is (indirectly) dependent on x. (Recursive procedure to determine) +# ========================================= +def predecessor(x,y) + return false if not $conditionals.key?(y) + return true if $conditionals[y].key?(x) + for pred in $conditionals[y].keys + return true if predecessor(x,pred) + end + return false +end + +########################################################################### +#=== Build array containing all possible parameter settings. +#=== Internally also build hash for quick checks if an equivalent state is already in there. +########################################################################### +def get_all_distinct_states(params, domain, forbidden_combos, out, fixed_ass) + sorted_params = params.sort{|x,y| predecessor(x,y) ? -1 :1} + + all_distinct_states = [] + all_states = Hash.new + curr_state = Hash.new + sorted_params.map{|x| curr_state[x] = domain[x][0]} + fixed_ass.keys.map{|x| curr_state[x] = fixed_ass[x]} + + all_states = {} + count = 0 + allcount = 0 + nonforbidden_count = 0 + loop do + allcount += 1 + unless forbidden(curr_state, forbidden_combos) + nonforbidden_count +=1 + + stripped_state = strip_state(curr_state) + state_as_string = state_string(curr_state) + unless all_states.key?(state_as_string) + count += 1 +# puts "#{count} (#{nonforbidden_count}, #{allcount}): #{state_as_string}" + puts "#{count} (#{nonforbidden_count}, #{allcount})" if count.modulo(1000)[1]==1 +# out.puts "#{count} (#{allcount}): #{state_as_string}" + + all_distinct_states << [stripped_state, state_as_string] + all_states[state_as_string] = 0 + end + end + break unless increase_state(curr_state, domain, sorted_params, fixed_ass) + end + puts "nonforbidden count: #{nonforbidden_count}" + return all_distinct_states +end + + +# ================================================ +# Build string of fixed parameters. +# ================================================ +def fixed_string(fixed_ass) + fixed_string = "" + for param in fixed_ass.keys + fixed_string << "#{param}=#{fixed_ass[param]} " + end + return fixed_string +end + +# ================================================ +# Build Hash of fixed parameters. +# ================================================ +def set_fixed_params(fix_input, domain, params, out) + fixed_ass = Hash.new + #=== Parse fix and remember them in hash. + if fix_input + # p fix_input + fix_input = fix_input.split.map! {|x| x.strip.to_s} +# p fix_input + 0.step(fix_input.length-1,2){|i| + param = fix_input[i] + value = fix_input[i+1] + # p [param, value] + out.puts "*************************** WARNING *****************************\nparam #{param} set to fixed value #{value}, which is not included in its domain #{domain[param].join(", ")}\n*****************************************************************" unless domain[param].include?(value) + puts "*************************** WARNING *****************************\nparam #{param} set to fixed value #{value}, which is not included in its domain #{domain[param].join(", ")}\n*****************************************************************" unless domain[param].include?(value) + fixed_ass[param] = value + } + end +# out.puts "manually fixed: #{fixed_string(fixed_ass)}" +# puts "manually fixed: #{fixed_string(fixed_ass)}" + return fixed_ass +end \ No newline at end of file diff --git a/sparkle/Components/paramils2.3.8-source/example_cplex/scenario-Cplex-CATS-smalltrain-smalltest.txt b/sparkle/Components/paramils2.3.8-source/example_cplex/scenario-Cplex-CATS-smalltrain-smalltest.txt new file mode 100755 index 000000000..a2237c4f9 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_cplex/scenario-Cplex-CATS-smalltrain-smalltest.txt @@ -0,0 +1,12 @@ +algo = ruby example_cplex/cplex_wrapper.rb +execdir = . +deterministic = 1 +run_obj = runtime +overall_obj = mean +cutoff_time = 5 +cutoff_length = max +tunerTimeout = 30 +paramfile = example_cplex/cplex-params.txt +outdir = example_cplex/paramils-out +instance_file = example_data/CATS100-small-train.txt +test_instance_file = example_data/CATS100-small-test.txt diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0000.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0000.lp new file mode 100755 index 000000000..fa9b8baee --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0000.lp @@ -0,0 +1,1071 @@ +max + +112.327x0 + 75.1158x1 + 1841.18x2 + 2536.39x3 + 2447.29x4 + 2414.72x5 + 2355.96x6 + 2313.63x7 + 654.21x8 + 667.846x9 + +637.818x10 + 516.924x11 + 496.98x12 + 482.399x13 + 61.1921x14 + 144.147x15 + 170.845x16 + 195.693x17 + 173.52x18 + 200.372x19 + +155.95x20 + 113.474x21 + 54.7926x22 + 1728.31x23 + 2504.99x24 + 2445.27x25 + 2429.72x26 + 2349.38x27 + 2321.47x28 + 727.98x29 + +830.076x30 + 759.588x31 + 722.12x32 + 713.11x33 + 690.867x34 + 670.294x35 + 574.13x36 + 567.378x37 + 563.011x38 + 534.987x39 + +495.003x40 + 476.744x41 + 549.885x42 + 480.696x43 + 437.268x44 + 421.918x45 + 182.458x46 + 399.807x47 + 571.536x48 + 505.043x49 + +472.332x50 + 440.85x51 + 334.15x52 + 2348.94x53 + 2640.54x54 + 2582.65x55 + 2556.77x56 + 2541.01x57 + 2522.3x58 + 712.016x59 + +711.481x60 + 693.927x61 + 653.742x62 + 652.377x63 + 637.528x64 + 542.902x65 + 550.381x66 + 464.586x67 + 370.291x68 + 268.735x69 + +874.986x70 + 1154.97x71 + 1076.07x72 + 1061.87x73 + 1025.74x74 + 1007.46x75 + 932.881x76 + 1147.81x77 + 1120.18x78 + 1118.61x79 + +1098.26x80 + 1070.42x81 + 284.98x82 + 254.212x83 + 245.219x84 + 208.956x85 + 150.156x86 + 250.684x87 + 306.977x88 + 205.051x89 + +195.65x90 + 808.733x91 + 1211.32x92 + 1181.87x93 + 1167.58x94 + 1165.88x95 + 1137.14x96 + 396.02x97 + 523.823x98 + 453.21x99 + +424.041x100 + 328.768x101 + 271.12x102 + 693.253x103 + 923.282x104 + 811.351x105 + 801.298x106 + 788.856x107 + 726.869x108 + 866.646x109 + +1155.19x110 + 973.627x111 + 970.422x112 + 945.46x113 + 930.456x114 + 526.139x115 + 753.195x116 + 635.71x117 + 630.505x118 + 589.389x119 + +587.578x120 + 531.109x121 + 572.77x122 + 546.53x123 + 513.442x124 + 493.415x125 + 177.425x126 + 122.446x127 + 108.004x128 + 560.955x129 + +804.284x130 + 730.091x131 + 656.219x132 + 618.136x133 + 598.526x134 + 277.782x135 + 264.988x136 + 204.219x137 + 171.461x138 + 411.021x139 + +413.88x140 + 404.779x141 + 568.748x142 + 704.347x143 + 692.401x144 + 646.556x145 + 616.271x146 + 552.217x147 + 293.758x148 + 367.084x149 + +330.218x150 + 235.159x151 + 341.773x152 + 368.327x153 + 290.455x154 + 260.607x155 + 186.285x156 + 129.368x157 + 1628.75x158 + 2365.53x159 + +2280.03x160 + 2155.35x161 + 2054.34x162 + 2054.04x163 + 471.581x164 + 585.628x165 + 564.005x166 + 515.055x167 + 512.609x168 + 498.582x169 + +701.472x170 + 732.951x171 + 618.24x172 + 617.817x173 + 572.839x174 + 549.841x175 + 724.381x176 + 1069.13x177 + 1061.6x178 + 1017.81x179 + +988.963x180 + 932.049x181 + 42.5379x182 + 276.722x183 + 324.85x184 + 312.371x185 + 257.373x186 + 169.447x187 + 167.846x188 + 436.126x189 + +568.923x190 + 537.154x191 + 527x192 + 524.28x193 + 409.365x194 + 228.274x195 + 308.072x196 + 237.145x197 + 410.272x198 + 544.326x199 + +517.223x200 + 488.359x201 + 458.547x202 + 439.108x203 + 1570.84x204 + 1850.05x205 + 1782.22x206 + 1778.49x207 + 1735.73x208 + 1638.64x209 + +660.965x210 + 678.295x211 + 651.042x212 + 642.288x213 + 636.096x214 + 499.391x215 + 1359.25x216 + 1913.32x217 + 1900.55x218 + 1868.83x219 + +1822.72x220 + 1770.85x221 + 466.092x222 + 503.934x223 + 484.787x224 + 471.017x225 + 437.693x226 + 403.066x227 + 2.90136x228 + 3594.59x229 + +4091.28x230 + 4075.39x231 + 3916.54x232 + 3828.63x233 + 3783.97x234 + 75.562x235 + 76.8694x236 + 644.901x237 + 666.504x238 + 572.37x239 + +542.963x240 + 518.918x241 + 515.966x242 + 20.9492x243 + 1689.12x244 + 2205.62x245 + 1995.57x246 + 1969.76x247 + 1949.45x248 + 1927.89x249 + +887.726x250 + 1075.52x251 + 1040.82x252 + 975.805x253 + 961.462x254 + 855.581x255 + 82.1105x256 + 85.6923x257 + 33.9318x258 + 492.684x259 + +553.507x260 + 540.989x261 + 513.683x262 + 399.818x263 + 386.368x264 + 305.876x265 + 337.577x266 + 295.682x267 + 291.608x268 + 157.485x269 + +269.84x270 + 261.974x271 + 161.936x272 + 348.151x273 + 503.916x274 + 355.491x275 + 350.841x276 + 497.903x277 + 513.382x278 + 492.971x279 + +459.22x280 + 434.772x281 + 387.23x282 + 236.619x283 + 270.597x284 + 87.9475x285 + 3212.1x286 + 3957.02x287 + 3806.75x288 + 3774.59x289 + +3770.58x290 + 3700.95x291 + 1380.7x292 + 1868.6x293 + 1814.93x294 + 1738.59x295 + 1703.29x296 + 1663.75x297 + 1003.74x298 + 1055.14x299 + +1013.61x300 + 975.166x301 + 972.053x302 + 967.58x303 + 1356.7x304 + 1627.33x305 + 1564.11x306 + 1542.08x307 + 1457.12x308 + 1455.84x309 + +143.232x310 + 117.373x311 + 442.828x312 + 573.14x313 + 480.07x314 + 467.95x315 + 337.591x316 + 324.465x317 + 714.07x318 + 1041.07x319 + +1037.4x320 + 1035.36x321 + 987.394x322 + 961.949x323 + 765.57x324 + 1033.2x325 + 1004.43x326 + 949.238x327 + 913.04x328 + 887.298x329 + +596.876x330 + 814.941x331 + 782.381x332 + 751.532x333 + 707.714x334 + 682.844x335 + 35.7773x336 + 797.142x337 + 1001.07x338 + 962.465x339 + +918.367x340 + 798.129x341 + 781.83x342 + 45.5162x343 + 283.567x344 + 351.478x345 + 321.021x346 + 2887.26x347 + 3478.06x348 + 3381.13x349 + +3224.83x350 + 3193.12x351 + 3177.72x352 + 270.494x353 + 402.539x354 + 310.516x355 + 247.025x356 + 191.12x357 + 1209.99x358 + 1312.7x359 + +1284.26x360 + 1277.55x361 + 1213.3x362 + 1190.8x363 + 67.5437x364 + 1324.84x365 + 1467.65x366 + 1420.57x367 + 1377.07x368 + 1325.38x369 + +1311.7x370 + 1303.64x371 + 1596.55x372 + 1581.82x373 + 1510.18x374 + 1499.63x375 + 1463.37x376 + 601.379x377 + 631.773x378 + 608.197x379 + +566.565x380 + 563.451x381 + 543.633x382 + 1019.97x383 + 1036.26x384 + 1032.19x385 + 949.175x386 + 917.213x387 + 905.293x388 + 466.848x389 + +666.199x390 + 581.83x391 + 540.287x392 + 532.525x393 + 503.091x394 + 690.445x395 + 834.405x396 + 803.466x397 + 760.044x398 + 751.36x399 + +738.724x400 + 656.195x401 + 725.776x402 + 724.46x403 + 719.263x404 + 635.467x405 + 611.973x406 + 345.146x407 + 372.235x408 + 231.61x409 + +218.279x410 + 76.4535x411 + 1662.03x412 + 1709.87x413 + 1699.17x414 + 1672.96x415 + 1603.85x416 + 1586.73x417 + 339.685x418 + 426.673x419 + +339.063x420 + 268.41x421 + 251.424x422 + 565.839x423 + 731.899x424 + 684.3x425 + 668.273x426 + 661.682x427 + 605.662x428 + 525.782x429 + +646.856x430 + 626.311x431 + 549.734x432 + 511.1x433 + 427.474x434 + 1185.2x435 + 1496.28x436 + 1422.37x437 + 1415.57x438 + 1372.23x439 + +1365.09x440 + 37.5906x441 + 718.093x442 + 909.562x443 + 831.004x444 + 784.544x445 + 754.002x446 + 693.868x447 + 139.187x448 + 178.63x449 + +173.807x450 + 449.446x451 + 496.661x452 + 446.363x453 + 431.988x454 + 397.861x455 + 769.069x456 + 964.876x457 + 798.776x458 + 774.943x459 + +729.217x460 + 688.021x461 + 883.12x462 + 1005.3x463 + 960.606x464 + 957.423x465 + 920.918x466 + 870.537x467 + 27.0902x468 + 172.419x469 + +244.74x470 + 104.794x471 + 591.064x472 + 863.634x473 + 812.321x474 + 793.612x475 + 734.512x476 + 732.016x477 + 129.787x478 + 799.673x479 + +809.491x480 + 747.751x481 + 745.961x482 + 727.271x483 + 653.376x484 + 1649.14x485 + 1998.52x486 + 1973.76x487 + 1913.89x488 + 1879.97x489 + +1828.4x490 + 1637.15x491 + 2009.93x492 + 1933.26x493 + 1861.86x494 + 1858.37x495 + 1855.98x496 + 120.827x497 + 9.05156x498 + 299.718x499 + +405.771x500 + 333.846x501 + 310.365x502 + 269.644x503 + 166.621x504 + +st + +x6 + x25 + x26 + x60 + x61 + x63 + x154 + x155 + x158 + x167 ++ x169 + x179 + x180 + x181 + x189 + x190 + x204 + x206 + x207 + x209 ++ x232 + x243 + x286 + x287 + x291 + x292 + x318 + x319 + x320 + x321 ++ x323 + x332 + x371 + x376 + x434 <= 1 + +x6 + x23 + x25 + x26 + x59 + x60 + x61 + x63 + x64 + x154 ++ x158 + x164 + x166 + x167 + x168 + x169 + x179 + x180 + x181 + x189 ++ x190 + x191 + x192 + x204 + x206 + x207 + x209 + x286 + x287 + x288 ++ x290 + x291 + x292 + x297 + x309 + x318 + x319 + x320 + x321 + x323 ++ x332 + x347 + x351 + x371 + x376 + x434 + x493 <= 1 + +x23 + x25 + x26 + x59 + x60 + x61 + x63 + x64 + x158 + x164 ++ x166 + x167 + x168 + x169 + x176 + x179 + x180 + x181 + x189 + x190 ++ x191 + x192 + x204 + x206 + x207 + x209 + x214 + x216 + x217 + x221 ++ x223 + x229 + x230 + x233 + x286 + x287 + x288 + x291 + x320 + x321 ++ x323 + x344 + x347 + x351 + x371 + x376 + x386 + x492 + x493 + x494 ++ x495 + x496 <= 1 + +x23 + x25 + x26 + x59 + x61 + x63 + x64 + x147 + x163 + x164 ++ x179 + x180 + x181 + x191 + x192 + x204 + x206 + x208 + x214 + x216 ++ x217 + x218 + x223 + x229 + x230 + x231 + x233 + x241 + x257 + x286 ++ x288 + x320 + x321 + x347 + x376 + x491 + x492 + x493 + x494 + x495 ++ x496 <= 1 + +x23 + x25 + x26 + x27 + x28 + x61 + x64 + x93 + x147 + x163 ++ x179 + x204 + x206 + x216 + x223 + x229 + x233 + x241 + x286 + x291 ++ x320 + x347 + x361 + x447 + x491 + x492 + x493 + x494 + x495 + x496 + <= 1 + +x23 + x27 + x28 + x46 + x57 + x58 + x64 + x93 + x94 + x163 ++ x188 + x204 + x206 + x216 + x223 + x229 + x233 + x241 + x244 + x247 ++ x286 + x291 + x294 + x296 + x327 + x334 + x335 + x341 + x347 + x353 ++ x355 + x356 + x357 + x360 + x361 + x373 + x402 + x417 + x447 + x459 ++ x491 + x492 + x493 + x494 + x495 + x496 <= 1 + +x23 + x27 + x28 + x45 + x57 + x94 + x163 + x195 + x197 + x204 ++ x210 + x214 + x229 + x230 + x231 + x233 + x234 + x237 + x238 + x242 ++ x247 + x248 + x286 + x294 + x296 + x327 + x328 + x330 + x334 + x335 ++ x341 + x347 + x353 + x355 + x356 + x357 + x360 + x361 + x368 + x373 ++ x383 + x387 + x388 + x396 + x402 + x425 + x457 + x459 + x491 + x492 ++ x493 + x494 + x495 + x496 <= 1 + +x4 + x5 + x23 + x28 + x44 + x49 + x57 + x94 + x104 + x163 ++ x195 + x196 + x204 + x214 + x229 + x230 + x231 + x232 + x233 + x234 ++ x238 + x242 + x247 + x248 + x286 + x296 + x327 + x330 + x334 + x335 ++ x339 + x341 + x347 + x348 + x353 + x354 + x355 + x360 + x361 + x368 ++ x373 + x383 + x387 + x388 + x396 + x401 + x402 + x403 + x457 + x459 ++ x486 + x488 + x489 + x492 + x493 + x494 + x496 + x497 <= 1 + +x4 + x5 + x23 + x28 + x57 + x104 + x145 + x163 + x204 + x229 ++ x230 + x231 + x232 + x233 + x234 + x238 + x245 + x247 + x248 + x286 ++ x330 + x335 + x337 + x338 + x339 + x340 + x341 + x342 + x347 + x348 ++ x353 + x354 + x355 + x360 + x388 + x402 + x444 + x456 + x457 + x486 ++ x488 + x489 + x490 + x492 + x497 + x498 <= 1 + +x4 + x5 + x23 + x28 + x230 + x231 + x232 + x233 + x247 + x248 ++ x330 + x335 + x337 + x338 + x339 + x340 + x348 + x355 + x402 + x444 ++ x457 + x486 + x489 + x490 + x492 + x498 <= 1 + +x6 + x23 + x25 + x26 + x60 + x61 + x63 + x92 + x152 + x154 ++ x155 + x158 + x167 + x168 + x169 + x179 + x180 + x189 + x190 + x206 ++ x207 + x217 + x219 + x220 + x248 + x286 + x288 + x290 + x291 + x292 ++ x309 + x318 + x319 + x320 + x321 + x323 + x330 + x332 + x347 + x351 ++ x359 + x376 + x429 + x434 + x493 <= 1 + +x23 + x25 + x26 + x59 + x60 + x61 + x62 + x63 + x96 + x152 ++ x153 + x154 + x155 + x158 + x164 + x165 + x166 + x167 + x168 + x169 ++ x176 + x179 + x180 + x181 + x189 + x190 + x192 + x204 + x206 + x207 ++ x209 + x217 + x218 + x219 + x220 + x221 + x233 + x241 + x257 + x286 ++ x287 + x288 + x289 + x290 + x291 + x292 + x295 + x296 + x297 + x309 ++ x318 + x319 + x320 + x321 + x323 + x330 + x332 + x344 + x345 + x346 ++ x347 + x350 + x351 + x359 + x372 + x376 + x432 + x434 + x439 + x462 ++ x491 + x493 + x494 + x495 <= 1 + +x5 + x23 + x25 + x26 + x59 + x63 + x77 + x78 + x96 + x152 ++ x153 + x158 + x160 + x164 + x166 + x167 + x168 + x169 + x176 + x179 ++ x180 + x181 + x190 + x191 + x192 + x204 + x206 + x209 + x216 + x217 ++ x219 + x220 + x221 + x229 + x230 + x233 + x237 + x241 + x257 + x286 ++ x287 + x288 + x289 + x291 + x292 + x295 + x296 + x309 + x319 + x320 ++ x321 + x323 + x332 + x344 + x345 + x346 + x347 + x350 + x351 + x359 ++ x376 + x386 + x389 + x472 + x477 + x491 + x492 + x493 + x494 + x495 ++ x496 <= 1 + +x6 + x23 + x27 + x63 + x92 + x94 + x158 + x160 + x163 + x166 ++ x168 + x179 + x180 + x181 + x190 + x191 + x192 + x204 + x206 + x208 ++ x209 + x216 + x217 + x218 + x219 + x220 + x221 + x229 + x230 + x233 ++ x241 + x257 + x286 + x289 + x292 + x296 + x311 + x320 + x321 + x323 ++ x346 + x347 + x350 + x351 + x362 + x376 + x386 + x472 + x491 + x493 ++ x494 + x495 + x496 <= 1 + +x23 + x24 + x27 + x28 + x64 + x94 + x158 + x163 + x179 + x180 ++ x190 + x191 + x204 + x208 + x209 + x216 + x227 + x229 + x230 + x231 ++ x233 + x234 + x257 + x286 + x292 + x294 + x296 + x297 + x310 + x311 ++ x320 + x321 + x347 + x350 + x351 + x356 + x357 + x372 + x373 + x375 ++ x417 + x443 + x465 + x491 + x492 + x494 + x495 + x496 <= 1 + +x23 + x27 + x28 + x46 + x93 + x94 + x188 + x210 + x212 + x216 ++ x227 + x229 + x230 + x231 + x233 + x234 + x235 + x244 + x247 + x286 ++ x294 + x296 + x297 + x304 + x320 + x347 + x353 + x356 + x357 + x373 ++ x388 + x417 + x489 + x490 + x491 + x492 + x494 + x495 + x496 <= 1 + +x5 + x23 + x27 + x28 + x41 + x44 + x45 + x46 + x57 + x64 ++ x94 + x163 + x195 + x196 + x197 + x210 + x211 + x212 + x214 + x229 ++ x230 + x231 + x232 + x233 + x234 + x235 + x237 + x238 + x242 + x244 ++ x247 + x284 + x286 + x294 + x296 + x306 + x327 + x330 + x334 + x341 ++ x347 + x357 + x358 + x360 + x361 + x373 + x382 + x383 + x384 + x387 ++ x388 + x402 + x403 + x405 + x457 + x459 + x486 + x488 + x490 + x491 ++ x492 + x494 + x495 + x496 <= 1 + +x4 + x5 + x23 + x28 + x41 + x44 + x45 + x46 + x57 + x93 ++ x94 + x196 + x210 + x211 + x212 + x214 + x229 + x230 + x231 + x232 ++ x233 + x234 + x238 + x247 + x283 + x284 + x286 + x293 + x294 + x327 ++ x330 + x334 + x340 + x341 + x342 + x347 + x354 + x360 + x361 + x376 ++ x383 + x384 + x385 + x386 + x387 + x388 + x396 + x401 + x403 + x457 ++ x459 + x486 + x487 + x488 + x489 + x490 + x491 + x492 <= 1 + +x4 + x5 + x22 + x23 + x28 + x41 + x42 + x44 + x45 + x57 ++ x204 + x229 + x230 + x231 + x232 + x233 + x234 + x238 + x244 + x247 ++ x248 + x262 + x283 + x285 + x293 + x294 + x305 + x335 + x337 + x338 ++ x339 + x340 + x341 + x342 + x349 + x354 + x360 + x383 + x384 + x385 ++ x386 + x388 + x396 + x402 + x403 + x404 + x457 + x459 + x477 + x486 ++ x487 + x488 + x490 + x491 <= 1 + +x4 + x23 + x28 + x184 + x204 + x230 + x231 + x232 + x233 + x244 ++ x245 + x247 + x248 + x291 + x330 + x333 + x335 + x337 + x338 + x339 ++ x340 + x341 + x348 + x354 + x402 + x444 + x457 + x479 + x487 + x488 ++ x489 + x491 + x492 <= 1 + +x6 + x23 + x25 + x26 + x60 + x158 + x161 + x164 + x166 + x167 ++ x168 + x179 + x180 + x181 + x206 + x209 + x215 + x216 + x217 + x218 ++ x219 + x220 + x221 + x241 + x256 + x286 + x288 + x289 + x290 + x291 ++ x292 + x293 + x295 + x297 + x309 + x318 + x319 + x320 + x321 + x323 ++ x330 + x332 + x345 + x347 + x348 + x349 + x351 + x376 + x429 + x432 ++ x434 + x446 + x462 + x464 + x493 + x494 <= 1 + +x3 + x23 + x25 + x26 + x60 + x61 + x62 + x63 + x96 + x113 ++ x152 + x155 + x156 + x158 + x160 + x164 + x165 + x166 + x167 + x168 ++ x176 + x178 + x179 + x180 + x181 + x205 + x208 + x209 + x215 + x216 ++ x217 + x218 + x219 + x220 + x221 + x239 + x257 + x286 + x287 + x288 ++ x289 + x290 + x291 + x292 + x295 + x307 + x309 + x318 + x319 + x320 ++ x321 + x323 + x332 + x347 + x349 + x351 + x352 + x359 + x376 + x429 ++ x432 + x434 + x435 + x439 + x446 + x464 + x472 + x491 + x493 + x494 ++ x495 <= 1 + +x3 + x5 + x23 + x25 + x26 + x27 + x59 + x60 + x61 + x62 ++ x76 + x77 + x78 + x96 + x110 + x113 + x134 + x153 + x158 + x160 ++ x162 + x164 + x169 + x176 + x178 + x180 + x181 + x191 + x192 + x204 ++ x205 + x207 + x208 + x209 + x216 + x217 + x218 + x219 + x220 + x221 ++ x230 + x237 + x286 + x287 + x288 + x289 + x290 + x291 + x292 + x295 ++ x296 + x318 + x321 + x323 + x347 + x349 + x350 + x351 + x352 + x359 ++ x376 + x389 + x393 + x394 + x435 + x439 + x447 + x460 + x472 + x476 ++ x477 + x493 + x494 <= 1 + +x6 + x23 + x25 + x26 + x27 + x59 + x62 + x77 + x92 + x94 ++ x96 + x110 + x111 + x113 + x114 + x134 + x153 + x158 + x160 + x163 ++ x166 + x176 + x181 + x190 + x191 + x192 + x204 + x205 + x206 + x207 ++ x208 + x209 + x213 + x216 + x217 + x218 + x219 + x220 + x221 + x230 ++ x233 + x275 + x286 + x287 + x288 + x289 + x290 + x292 + x295 + x296 ++ x347 + x348 + x349 + x350 + x351 + x352 + x362 + x389 + x391 + x392 ++ x472 + x473 + x476 + x493 + x494 + x495 <= 1 + +x23 + x24 + x27 + x28 + x94 + x96 + x158 + x177 + x179 + x206 ++ x207 + x210 + x211 + x216 + x229 + x231 + x233 + x234 + x236 + x244 ++ x249 + x286 + x293 + x294 + x296 + x297 + x305 + x310 + x347 + x350 ++ x356 + x372 + x377 + x379 + x406 + x415 + x465 + x476 + x486 + x493 ++ x495 + x496 <= 1 + +x23 + x24 + x27 + x28 + x58 + x64 + x94 + x210 + x211 + x216 ++ x229 + x230 + x233 + x234 + x236 + x244 + x247 + x286 + x293 + x294 ++ x296 + x297 + x304 + x305 + x306 + x347 + x358 + x360 + x361 + x362 ++ x372 + x377 + x380 + x403 + x404 + x406 + x465 + x486 + x487 + x488 ++ x489 + x490 + x491 + x493 + x494 + x495 + x496 <= 1 + +x23 + x28 + x46 + x53 + x57 + x64 + x91 + x93 + x94 + x95 ++ x197 + x206 + x207 + x211 + x212 + x216 + x229 + x230 + x233 + x234 ++ x235 + x236 + x244 + x247 + x248 + x249 + x286 + x290 + x293 + x294 ++ x296 + x304 + x305 + x306 + x330 + x333 + x334 + x347 + x352 + x358 ++ x360 + x361 + x362 + x369 + x372 + x377 + x382 + x384 + x401 + x403 ++ x404 + x405 + x406 + x465 + x485 + x486 + x487 + x488 + x489 + x490 ++ x491 <= 1 + +x28 + x44 + x45 + x56 + x57 + x91 + x93 + x94 + x95 + x194 ++ x206 + x211 + x212 + x214 + x226 + x229 + x230 + x231 + x233 + x238 ++ x244 + x247 + x248 + x262 + x290 + x293 + x294 + x304 + x305 + x331 ++ x333 + x334 + x339 + x340 + x342 + x347 + x349 + x358 + x360 + x376 ++ x377 + x382 + x384 + x386 + x387 + x388 + x396 + x401 + x403 + x404 ++ x405 + x406 + x449 + x457 + x459 + x461 + x485 + x486 + x487 + x488 ++ x489 + x490 + x491 <= 1 + +x28 + x41 + x42 + x43 + x91 + x93 + x95 + x204 + x206 + x214 ++ x226 + x227 + x230 + x231 + x232 + x233 + x244 + x247 + x248 + x249 ++ x253 + x262 + x294 + x305 + x306 + x309 + x330 + x331 + x333 + x335 ++ x337 + x338 + x339 + x340 + x342 + x349 + x350 + x382 + x383 + x384 ++ x385 + x386 + x387 + x388 + x396 + x401 + x404 + x405 + x448 + x449 ++ x457 + x459 + x485 + x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x28 + x41 + x42 + x43 + x81 + x93 + x184 + x204 + x207 + x231 ++ x232 + x244 + x247 + x248 + x253 + x262 + x291 + x305 + x306 + x330 ++ x331 + x333 + x335 + x337 + x338 + x339 + x340 + x341 + x342 + x350 ++ x384 + x385 + x405 + x457 + x459 + x479 + x485 + x486 + x487 + x488 ++ x489 + x490 + x491 <= 1 + +x3 + x6 + x23 + x25 + x60 + x62 + x123 + x134 + x158 + x176 ++ x178 + x180 + x181 + x209 + x215 + x216 + x217 + x218 + x219 + x220 ++ x221 + x286 + x287 + x288 + x289 + x290 + x291 + x292 + x293 + x295 ++ x297 + x301 + x309 + x319 + x321 + x323 + x347 + x348 + x349 + x351 ++ x352 + x376 + x393 + x394 + x432 + x462 + x464 + x466 + x493 <= 1 + +x3 + x5 + x6 + x7 + x23 + x24 + x25 + x26 + x29 + x33 ++ x59 + x62 + x76 + x78 + x79 + x92 + x109 + x110 + x113 + x123 ++ x124 + x125 + x134 + x148 + x149 + x150 + x151 + x156 + x158 + x160 ++ x174 + x176 + x177 + x178 + x179 + x180 + x181 + x208 + x209 + x215 ++ x216 + x217 + x218 + x219 + x220 + x221 + x239 + x286 + x287 + x288 ++ x289 + x290 + x291 + x292 + x293 + x295 + x297 + x307 + x309 + x318 ++ x319 + x320 + x321 + x323 + x347 + x348 + x349 + x350 + x351 + x352 ++ x359 + x372 + x376 + x389 + x393 + x394 + x426 + x432 + x435 + x439 ++ x440 + x446 + x447 + x462 + x463 + x464 + x466 + x472 + x477 + x493 ++ x494 <= 1 + +x3 + x5 + x6 + x25 + x26 + x29 + x33 + x34 + x59 + x62 ++ x76 + x77 + x78 + x79 + x92 + x94 + x96 + x110 + x113 + x148 ++ x149 + x150 + x156 + x158 + x160 + x162 + x169 + x176 + x177 + x178 ++ x179 + x180 + x181 + x204 + x205 + x207 + x208 + x210 + x213 + x215 ++ x216 + x217 + x218 + x219 + x220 + x221 + x234 + x237 + x239 + x275 ++ x286 + x287 + x288 + x289 + x290 + x291 + x292 + x295 + x297 + x305 ++ x323 + x347 + x348 + x349 + x350 + x351 + x352 + x358 + x359 + x362 ++ x372 + x376 + x379 + x389 + x393 + x424 + x432 + x435 + x439 + x440 ++ x446 + x447 + x460 + x462 + x463 + x464 + x466 + x472 + x475 + x476 ++ x477 + x493 + x494 <= 1 + +x3 + x5 + x6 + x25 + x26 + x29 + x31 + x32 + x33 + x34 ++ x62 + x76 + x77 + x78 + x79 + x92 + x94 + x96 + x111 + x133 ++ x150 + x160 + x163 + x177 + x191 + x204 + x205 + x207 + x208 + x210 ++ x213 + x215 + x216 + x217 + x218 + x219 + x220 + x221 + x230 + x233 ++ x234 + x237 + x239 + x240 + x249 + x275 + x286 + x287 + x288 + x289 ++ x290 + x291 + x292 + x295 + x297 + x305 + x307 + x347 + x348 + x349 ++ x350 + x351 + x352 + x358 + x359 + x362 + x378 + x379 + x391 + x392 ++ x437 + x439 + x460 + x462 + x463 + x464 + x465 + x466 + x472 + x473 ++ x475 + x476 + x477 + x483 + x486 + x493 + x494 + x495 + x496 <= 1 + +x6 + x23 + x24 + x27 + x28 + x39 + x77 + x91 + x94 + x96 ++ x111 + x133 + x177 + x179 + x204 + x205 + x206 + x207 + x210 + x216 ++ x229 + x231 + x233 + x234 + x237 + x240 + x244 + x249 + x273 + x275 ++ x286 + x287 + x292 + x296 + x297 + x300 + x305 + x347 + x348 + x349 ++ x350 + x351 + x358 + x362 + x372 + x377 + x378 + x379 + x380 + x381 ++ x404 + x411 + x415 + x437 + x460 + x461 + x462 + x463 + x464 + x465 ++ x472 + x473 + x475 + x476 + x486 + x493 + x494 + x495 + x496 <= 1 + +x4 + x23 + x24 + x27 + x28 + x39 + x53 + x58 + x91 + x94 ++ x95 + x163 + x205 + x206 + x207 + x211 + x229 + x230 + x233 + x234 ++ x240 + x244 + x247 + x249 + x286 + x290 + x292 + x294 + x296 + x299 ++ x300 + x304 + x305 + x333 + x347 + x348 + x350 + x352 + x358 + x361 ++ x362 + x369 + x372 + x377 + x380 + x381 + x404 + x406 + x460 + x461 ++ x463 + x465 + x473 + x476 + x486 + x487 + x489 + x490 + x491 + x493 ++ x495 + x496 <= 1 + +x23 + x28 + x53 + x55 + x91 + x94 + x95 + x142 + x207 + x211 ++ x212 + x229 + x232 + x233 + x234 + x240 + x244 + x247 + x249 + x290 ++ x294 + x304 + x305 + x306 + x334 + x347 + x348 + x350 + x351 + x352 ++ x358 + x360 + x361 + x362 + x369 + x372 + x380 + x381 + x382 + x383 ++ x406 + x461 + x485 + x487 + x489 + x490 + x491 + x495 + x496 <= 1 + +x3 + x7 + x24 + x28 + x36 + x53 + x67 + x91 + x93 + x94 ++ x95 + x145 + x193 + x229 + x230 + x231 + x232 + x233 + x234 + x244 ++ x247 + x248 + x249 + x288 + x290 + x294 + x304 + x305 + x306 + x334 ++ x342 + x348 + x349 + x350 + x351 + x352 + x358 + x360 + x361 + x382 ++ x386 + x406 + x456 + x461 + x485 + x486 + x487 + x488 + x489 + x490 ++ x495 <= 1 + +x19 + x20 + x24 + x28 + x42 + x43 + x54 + x56 + x57 + x91 ++ x93 + x95 + x144 + x146 + x194 + x203 + x206 + x211 + x222 + x226 ++ x229 + x230 + x231 + x232 + x233 + x244 + x248 + x249 + x262 + x293 ++ x294 + x304 + x306 + x309 + x331 + x333 + x334 + x335 + x340 + x350 ++ x351 + x383 + x384 + x387 + x401 + x403 + x404 + x405 + x406 + x448 ++ x450 + x456 + x459 + x484 + x485 + x486 + x487 + x488 + x489 + x490 + <= 1 + +x20 + x26 + x28 + x42 + x43 + x58 + x91 + x93 + x179 + x192 ++ x203 + x214 + x222 + x223 + x225 + x226 + x227 + x229 + x230 + x231 ++ x232 + x233 + x244 + x253 + x262 + x293 + x305 + x331 + x333 + x335 ++ x337 + x338 + x339 + x342 + x350 + x383 + x384 + x387 + x405 + x446 ++ x450 + x485 + x486 + x487 + x488 + x489 <= 1 + +x2 + x6 + x23 + x24 + x25 + x26 + x27 + x28 + x29 + x30 ++ x31 + x50 + x68 + x78 + x79 + x81 + x92 + x109 + x110 + x112 ++ x116 + x118 + x121 + x122 + x124 + x129 + x130 + x131 + x134 + x139 ++ x151 + x159 + x160 + x161 + x162 + x170 + x174 + x175 + x176 + x177 ++ x178 + x180 + x181 + x205 + x208 + x217 + x218 + x220 + x245 + x248 ++ x254 + x286 + x287 + x288 + x289 + x290 + x291 + x293 + x348 + x349 ++ x351 + x352 + x366 + x367 + x369 + x376 + x394 + x423 + x424 + x425 ++ x426 + x427 + x436 + x438 + x439 + x440 + x442 + x444 + x447 + x466 ++ x467 + x477 <= 1 + +x1 + x2 + x3 + x5 + x6 + x7 + x16 + x23 + x24 + x25 ++ x26 + x28 + x29 + x30 + x31 + x32 + x33 + x50 + x76 + x77 ++ x78 + x79 + x81 + x92 + x96 + x101 + x109 + x110 + x112 + x113 ++ x116 + x118 + x121 + x122 + x123 + x124 + x125 + x129 + x130 + x134 ++ x141 + x148 + x151 + x156 + x158 + x159 + x160 + x161 + x162 + x174 ++ x176 + x177 + x178 + x180 + x181 + x204 + x205 + x207 + x208 + x209 ++ x217 + x218 + x219 + x220 + x221 + x234 + x248 + x254 + x286 + x287 ++ x288 + x289 + x290 + x291 + x293 + x295 + x297 + x347 + x348 + x349 ++ x350 + x351 + x352 + x359 + x376 + x393 + x394 + x414 + x423 + x424 ++ x426 + x427 + x435 + x436 + x437 + x438 + x439 + x440 + x442 + x444 ++ x446 + x447 + x462 + x463 + x466 + x467 + x477 + x480 + x483 + x484 + <= 1 + +x2 + x5 + x6 + x25 + x26 + x29 + x30 + x31 + x33 + x62 ++ x76 + x77 + x78 + x79 + x92 + x96 + x98 + x99 + x100 + x110 ++ x111 + x112 + x113 + x114 + x129 + x132 + x133 + x134 + x149 + x158 ++ x160 + x161 + x162 + x176 + x177 + x178 + x179 + x180 + x181 + x204 ++ x205 + x207 + x208 + x209 + x213 + x217 + x220 + x221 + x239 + x248 ++ x279 + x286 + x287 + x288 + x289 + x290 + x291 + x292 + x293 + x295 ++ x297 + x307 + x318 + x319 + x323 + x329 + x347 + x348 + x349 + x350 ++ x351 + x352 + x359 + x362 + x372 + x376 + x378 + x379 + x389 + x393 ++ x394 + x414 + x424 + x426 + x427 + x435 + x438 + x439 + x440 + x441 ++ x462 + x463 + x464 + x466 + x475 + x476 + x477 + x479 + x480 + x483 ++ x484 <= 1 + +x6 + x29 + x30 + x31 + x32 + x33 + x34 + x72 + x74 + x76 ++ x77 + x78 + x79 + x91 + x92 + x96 + x97 + x98 + x100 + x109 ++ x111 + x113 + x129 + x132 + x133 + x158 + x160 + x176 + x177 + x178 ++ x205 + x207 + x208 + x213 + x215 + x219 + x221 + x234 + x239 + x240 ++ x246 + x249 + x273 + x274 + x275 + x276 + x286 + x287 + x288 + x289 ++ x290 + x291 + x292 + x295 + x296 + x297 + x307 + x318 + x319 + x326 ++ x329 + x343 + x347 + x348 + x349 + x350 + x351 + x352 + x362 + x378 ++ x379 + x381 + x389 + x392 + x435 + x437 + x438 + x439 + x462 + x464 ++ x465 + x472 + x474 + x475 + x476 + x481 + x483 + x484 + x494 + x495 ++ x496 <= 1 + +x4 + x23 + x24 + x27 + x32 + x34 + x39 + x76 + x91 + x94 ++ x96 + x111 + x133 + x158 + x176 + x177 + x204 + x205 + x207 + x208 ++ x213 + x221 + x234 + x240 + x246 + x249 + x273 + x275 + x276 + x286 ++ x296 + x347 + x348 + x349 + x350 + x351 + x352 + x358 + x373 + x377 ++ x378 + x380 + x381 + x392 + x415 + x435 + x462 + x463 + x465 + x472 ++ x473 + x474 + x475 + x476 + x487 + x490 + x491 + x493 + x494 + x495 ++ x496 <= 1 + +x0 + x1 + x4 + x7 + x23 + x24 + x27 + x28 + x35 + x38 ++ x39 + x53 + x58 + x86 + x91 + x95 + x111 + x163 + x177 + x221 ++ x234 + x240 + x244 + x247 + x249 + x273 + x287 + x290 + x291 + x299 ++ x300 + x304 + x347 + x348 + x349 + x350 + x351 + x358 + x362 + x369 ++ x372 + x373 + x378 + x380 + x381 + x392 + x413 + x435 + x460 + x463 ++ x465 + x473 + x474 + x476 + x486 + x487 + x490 + x491 + x492 + x493 ++ x496 <= 1 + +x14 + x24 + x53 + x54 + x55 + x91 + x142 + x143 + x144 + x146 ++ x163 + x232 + x244 + x247 + x249 + x290 + x291 + x294 + x299 + x303 ++ x306 + x334 + x347 + x348 + x349 + x351 + x352 + x360 + x373 + x380 ++ x382 + x395 + x412 + x456 + x458 + x460 + x485 + x486 + x487 + x489 ++ x490 + x495 + x496 <= 1 + +x3 + x7 + x24 + x36 + x53 + x54 + x55 + x57 + x67 + x91 ++ x93 + x95 + x104 + x129 + x142 + x143 + x144 + x145 + x146 + x147 ++ x193 + x222 + x223 + x224 + x225 + x226 + x227 + x229 + x230 + x231 ++ x232 + x233 + x234 + x244 + x247 + x249 + x263 + x287 + x291 + x294 ++ x303 + x305 + x306 + x331 + x334 + x342 + x349 + x351 + x352 + x358 ++ x360 + x386 + x395 + x456 + x458 + x460 + x461 + x485 + x486 + x487 ++ x488 + x489 + x490 + x500 <= 1 + +x19 + x21 + x24 + x27 + x28 + x54 + x55 + x56 + x57 + x91 ++ x93 + x95 + x143 + x144 + x146 + x147 + x193 + x194 + x200 + x203 ++ x217 + x222 + x223 + x224 + x225 + x226 + x227 + x229 + x230 + x231 ++ x232 + x233 + x234 + x244 + x247 + x249 + x260 + x262 + x305 + x306 ++ x309 + x331 + x333 + x334 + x335 + x350 + x358 + x360 + x395 + x396 ++ x397 + x398 + x399 + x401 + x405 + x456 + x458 + x460 + x461 + x470 ++ x485 + x486 + x487 + x488 + x489 + x490 + x500 <= 1 + +x26 + x27 + x28 + x43 + x55 + x91 + x93 + x95 + x143 + x144 ++ x147 + x193 + x194 + x203 + x219 + x222 + x223 + x224 + x225 + x226 ++ x227 + x229 + x230 + x231 + x232 + x234 + x249 + x260 + x262 + x264 ++ x287 + x305 + x309 + x331 + x335 + x337 + x364 + x387 + x396 + x399 ++ x401 + x485 + x486 + x487 + x488 + x489 <= 1 + +x2 + x3 + x6 + x10 + x24 + x25 + x26 + x27 + x28 + x30 ++ x33 + x65 + x68 + x69 + x70 + x92 + x101 + x109 + x110 + x112 ++ x115 + x116 + x118 + x121 + x124 + x125 + x131 + x139 + x140 + x141 ++ x158 + x159 + x160 + x161 + x162 + x170 + x172 + x174 + x175 + x178 ++ x205 + x220 + x230 + x231 + x232 + x245 + x270 + x279 + x281 + x286 ++ x287 + x288 + x289 + x290 + x291 + x293 + x324 + x348 + x349 + x352 ++ x359 + x366 + x367 + x369 + x390 + x423 + x424 + x425 + x426 + x427 ++ x436 + x437 + x438 + x439 + x440 + x442 + x444 + x447 + x466 + x467 ++ x482 <= 1 + +x2 + x3 + x5 + x6 + x24 + x25 + x26 + x27 + x30 + x31 ++ x33 + x65 + x68 + x69 + x76 + x78 + x92 + x96 + x97 + x99 ++ x101 + x109 + x110 + x112 + x113 + x115 + x118 + x121 + x122 + x123 ++ x124 + x125 + x129 + x131 + x132 + x139 + x140 + x141 + x158 + x159 ++ x160 + x161 + x162 + x170 + x172 + x174 + x175 + x178 + x205 + x207 ++ x208 + x218 + x220 + x221 + x232 + x234 + x245 + x246 + x279 + x281 ++ x286 + x287 + x288 + x289 + x290 + x291 + x293 + x295 + x297 + x324 ++ x348 + x349 + x351 + x352 + x359 + x366 + x374 + x393 + x394 + x414 ++ x423 + x424 + x425 + x426 + x427 + x428 + x435 + x437 + x438 + x439 ++ x440 + x442 + x444 + x446 + x447 + x457 + x462 + x464 + x466 + x478 ++ x479 + x480 + x482 + x483 + x484 <= 1 + +x2 + x3 + x5 + x6 + x7 + x15 + x16 + x24 + x25 + x26 ++ x29 + x30 + x31 + x32 + x33 + x48 + x65 + x69 + x76 + x77 ++ x78 + x79 + x81 + x83 + x92 + x96 + x99 + x101 + x109 + x110 ++ x111 + x112 + x113 + x114 + x115 + x129 + x130 + x131 + x132 + x133 ++ x134 + x158 + x159 + x160 + x161 + x162 + x174 + x176 + x177 + x205 ++ x207 + x208 + x209 + x215 + x217 + x218 + x219 + x220 + x221 + x230 ++ x231 + x232 + x234 + x245 + x246 + x248 + x249 + x254 + x274 + x276 ++ x279 + x281 + x285 + x286 + x287 + x288 + x289 + x290 + x291 + x292 ++ x293 + x295 + x297 + x307 + x314 + x316 + x318 + x319 + x325 + x329 ++ x347 + x348 + x349 + x350 + x351 + x352 + x363 + x392 + x393 + x394 ++ x414 + x423 + x425 + x428 + x435 + x436 + x437 + x438 + x439 + x440 ++ x442 + x444 + x446 + x462 + x463 + x464 + x465 + x466 + x467 + x477 ++ x479 + x480 + x481 + x482 + x483 + x484 + x494 <= 1 + +x2 + x3 + x5 + x6 + x7 + x15 + x24 + x25 + x26 + x29 ++ x30 + x31 + x32 + x34 + x54 + x72 + x74 + x76 + x77 + x78 ++ x79 + x80 + x81 + x83 + x84 + x96 + x97 + x98 + x100 + x102 ++ x109 + x111 + x114 + x116 + x117 + x129 + x130 + x132 + x133 + x134 ++ x158 + x159 + x160 + x161 + x162 + x173 + x176 + x205 + x207 + x208 ++ x213 + x215 + x217 + x218 + x219 + x220 + x221 + x230 + x231 + x232 ++ x234 + x242 + x245 + x246 + x248 + x249 + x254 + x268 + x273 + x274 ++ x276 + x286 + x287 + x288 + x289 + x290 + x291 + x295 + x296 + x297 ++ x307 + x312 + x316 + x317 + x319 + x326 + x329 + x348 + x349 + x350 ++ x351 + x352 + x362 + x378 + x392 + x393 + x394 + x415 + x433 + x435 ++ x436 + x438 + x439 + x440 + x442 + x444 + x447 + x462 + x463 + x465 ++ x466 + x467 + x474 + x475 + x479 + x481 + x483 + x484 + x494 + x495 + <= 1 + +x3 + x5 + x6 + x30 + x34 + x53 + x54 + x55 + x77 + x80 ++ x81 + x83 + x84 + x96 + x102 + x105 + x116 + x117 + x120 + x129 ++ x130 + x132 + x133 + x158 + x159 + x160 + x161 + x163 + x205 + x207 ++ x208 + x213 + x216 + x217 + x218 + x230 + x232 + x242 + x245 + x268 ++ x289 + x317 + x319 + x329 + x348 + x349 + x350 + x352 + x363 + x374 ++ x415 + x430 + x435 + x436 + x438 + x440 + x442 + x465 + x467 + x475 ++ x481 + x483 + x502 <= 1 + +x0 + x3 + x4 + x7 + x23 + x24 + x27 + x35 + x38 + x39 ++ x53 + x54 + x55 + x56 + x58 + x81 + x85 + x86 + x91 + x95 ++ x119 + x143 + x161 + x163 + x165 + x177 + x186 + x229 + x232 + x233 ++ x234 + x244 + x249 + x287 + x291 + x298 + x299 + x300 + x302 + x303 ++ x304 + x305 + x308 + x348 + x349 + x350 + x351 + x352 + x358 + x363 ++ x372 + x373 + x413 + x416 + x463 + x471 + x473 + x474 + x491 + x492 ++ x496 + x501 + x502 + x503 <= 1 + +x3 + x4 + x7 + x24 + x35 + x36 + x37 + x38 + x39 + x40 ++ x53 + x56 + x58 + x65 + x66 + x67 + x81 + x95 + x142 + x143 ++ x144 + x145 + x147 + x163 + x165 + x177 + x199 + x229 + x230 + x231 ++ x232 + x233 + x234 + x244 + x247 + x249 + x252 + x259 + x287 + x291 ++ x294 + x298 + x300 + x302 + x303 + x304 + x305 + x306 + x308 + x309 ++ x348 + x363 + x373 + x397 + x413 + x474 + x485 + x488 + x490 + x492 ++ x500 + x501 + x502 <= 1 + +x3 + x7 + x25 + x32 + x35 + x36 + x37 + x38 + x40 + x53 ++ x54 + x55 + x56 + x57 + x58 + x65 + x66 + x67 + x95 + x104 ++ x142 + x143 + x144 + x145 + x146 + x147 + x165 + x189 + x193 + x199 ++ x201 + x222 + x224 + x225 + x226 + x229 + x230 + x231 + x232 + x233 ++ x234 + x244 + x247 + x249 + x252 + x260 + x261 + x263 + x264 + x287 ++ x289 + x294 + x300 + x302 + x303 + x304 + x305 + x306 + x308 + x309 ++ x351 + x352 + x395 + x397 + x398 + x421 + x456 + x460 + x461 + x485 ++ x488 + x489 + x490 + x492 + x499 + x500 + x501 <= 1 + +x4 + x7 + x24 + x25 + x27 + x28 + x32 + x37 + x56 + x57 ++ x66 + x67 + x93 + x95 + x103 + x104 + x107 + x108 + x111 + x142 ++ x143 + x144 + x146 + x147 + x163 + x189 + x193 + x194 + x198 + x199 ++ x200 + x201 + x202 + x203 + x224 + x225 + x229 + x230 + x231 + x232 ++ x233 + x234 + x242 + x259 + x260 + x261 + x262 + x264 + x302 + x308 ++ x309 + x331 + x332 + x350 + x351 + x375 + x395 + x396 + x397 + x398 ++ x399 + x400 + x421 + x456 + x458 + x460 + x485 + x486 + x487 + x488 ++ x489 + x490 + x499 + x500 <= 1 + +x4 + x7 + x25 + x27 + x28 + x56 + x57 + x91 + x103 + x104 ++ x105 + x107 + x108 + x128 + x142 + x146 + x189 + x193 + x194 + x198 ++ x199 + x201 + x203 + x222 + x223 + x224 + x225 + x226 + x227 + x229 ++ x230 + x231 + x232 + x233 + x260 + x262 + x264 + x309 + x331 + x337 ++ x395 + x397 + x399 + x400 + x466 + x485 + x486 + x487 + x488 + x489 + <= 1 + +x2 + x3 + x10 + x26 + x28 + x47 + x48 + x49 + x51 + x58 ++ x68 + x70 + x112 + x130 + x131 + x140 + x158 + x159 + x160 + x162 ++ x170 + x172 + x175 + x178 + x230 + x231 + x232 + x245 + x277 + x279 ++ x281 + x286 + x287 + x288 + x289 + x290 + x291 + x299 + x324 + x348 ++ x349 + x366 + x367 + x368 + x369 + x390 + x424 + x425 + x426 + x427 ++ x428 + x436 + x437 + x438 + x439 + x440 + x444 + x446 + x480 + x482 + <= 1 + +x2 + x3 + x6 + x25 + x26 + x28 + x48 + x68 + x69 + x70 ++ x97 + x99 + x100 + x101 + x112 + x118 + x121 + x123 + x125 + x129 ++ x130 + x131 + x132 + x134 + x158 + x159 + x160 + x162 + x172 + x175 ++ x176 + x178 + x181 + x182 + x208 + x218 + x220 + x230 + x231 + x232 ++ x245 + x246 + x248 + x274 + x277 + x279 + x281 + x286 + x287 + x288 ++ x289 + x291 + x316 + x317 + x324 + x348 + x349 + x350 + x351 + x352 ++ x374 + x385 + x423 + x424 + x425 + x426 + x427 + x428 + x436 + x438 ++ x442 + x444 + x445 + x446 + x447 + x475 + x480 <= 1 + +x3 + x5 + x6 + x7 + x10 + x11 + x24 + x25 + x26 + x31 ++ x34 + x48 + x55 + x58 + x69 + x70 + x75 + x76 + x77 + x78 ++ x79 + x80 + x84 + x96 + x97 + x98 + x99 + x100 + x109 + x112 ++ x114 + x120 + x129 + x130 + x132 + x133 + x134 + x158 + x159 + x160 ++ x161 + x162 + x171 + x173 + x176 + x177 + x178 + x205 + x208 + x209 ++ x212 + x218 + x220 + x221 + x230 + x231 + x232 + x234 + x242 + x244 ++ x245 + x246 + x248 + x249 + x250 + x254 + x273 + x274 + x276 + x281 ++ x286 + x287 + x288 + x289 + x290 + x291 + x295 + x297 + x312 + x314 ++ x316 + x317 + x318 + x322 + x324 + x325 + x326 + x328 + x347 + x348 ++ x349 + x350 + x351 + x352 + x362 + x363 + x365 + x367 + x368 + x371 ++ x374 + x385 + x390 + x392 + x414 + x417 + x423 + x425 + x433 + x435 ++ x436 + x437 + x438 + x439 + x442 + x445 + x446 + x464 + x467 + x474 ++ x475 + x479 + x481 + x482 + x484 + x495 <= 1 + +x2 + x3 + x5 + x7 + x24 + x25 + x26 + x34 + x53 + x54 ++ x55 + x58 + x70 + x71 + x72 + x74 + x76 + x79 + x80 + x81 ++ x82 + x83 + x84 + x96 + x102 + x109 + x114 + x115 + x117 + x120 ++ x130 + x132 + x133 + x159 + x161 + x173 + x205 + x208 + x213 + x218 ++ x219 + x231 + x232 + x234 + x245 + x246 + x250 + x252 + x255 + x274 ++ x286 + x287 + x288 + x289 + x291 + x302 + x312 + x315 + x318 + x348 ++ x349 + x350 + x352 + x362 + x363 + x367 + x374 + x392 + x433 + x435 ++ x436 + x438 + x440 + x465 + x467 + x474 + x475 + x479 + x481 + x492 + <= 1 + +x2 + x3 + x4 + x6 + x24 + x25 + x27 + x53 + x54 + x55 ++ x58 + x70 + x71 + x72 + x76 + x80 + x81 + x82 + x83 + x84 ++ x86 + x95 + x96 + x102 + x105 + x115 + x117 + x120 + x159 + x161 ++ x163 + x186 + x205 + x207 + x229 + x231 + x232 + x234 + x246 + x251 ++ x252 + x255 + x287 + x288 + x289 + x291 + x300 + x302 + x303 + x317 ++ x329 + x349 + x352 + x363 + x371 + x374 + x415 + x429 + x430 + x431 ++ x433 + x435 + x436 + x438 + x440 + x467 + x468 + x470 + x473 + x481 ++ x492 + x502 <= 1 + +x2 + x3 + x4 + x7 + x24 + x27 + x38 + x40 + x53 + x54 ++ x55 + x56 + x58 + x71 + x81 + x82 + x83 + x84 + x85 + x86 ++ x91 + x95 + x105 + x107 + x115 + x119 + x159 + x160 + x161 + x163 ++ x183 + x184 + x186 + x229 + x231 + x232 + x234 + x249 + x251 + x252 ++ x269 + x287 + x291 + x298 + x299 + x300 + x302 + x303 + x304 + x308 ++ x309 + x348 + x351 + x352 + x363 + x371 + x372 + x373 + x413 + x416 ++ x430 + x431 + x436 + x440 + x463 + x469 + x470 + x471 + x473 + x477 ++ x485 + x491 + x492 + x496 + x499 + x502 + x503 <= 1 + +x4 + x7 + x24 + x27 + x35 + x36 + x37 + x38 + x40 + x53 ++ x54 + x55 + x56 + x58 + x71 + x81 + x95 + x119 + x142 + x145 ++ x146 + x159 + x160 + x161 + x163 + x165 + x201 + x229 + x230 + x231 ++ x232 + x233 + x234 + x244 + x247 + x249 + x252 + x259 + x287 + x291 ++ x295 + x298 + x299 + x300 + x301 + x302 + x303 + x304 + x308 + x309 ++ x338 + x352 + x363 + x372 + x373 + x413 + x421 + x461 + x469 + x471 ++ x474 + x490 + x492 + x499 + x500 + x501 + x502 + x503 <= 1 + +x24 + x25 + x27 + x32 + x35 + x36 + x37 + x40 + x53 + x54 ++ x55 + x56 + x57 + x74 + x95 + x142 + x143 + x144 + x145 + x146 ++ x147 + x160 + x165 + x189 + x193 + x199 + x201 + x229 + x230 + x231 ++ x232 + x233 + x234 + x244 + x247 + x249 + x252 + x258 + x259 + x261 ++ x263 + x276 + x289 + x298 + x299 + x301 + x302 + x303 + x305 + x306 ++ x309 + x338 + x351 + x373 + x397 + x413 + x418 + x421 + x460 + x461 ++ x485 + x490 + x492 + x499 + x501 <= 1 + +x25 + x27 + x28 + x56 + x57 + x66 + x103 + x104 + x107 + x108 ++ x128 + x162 + x163 + x194 + x198 + x199 + x200 + x201 + x202 + x203 ++ x222 + x223 + x224 + x225 + x226 + x227 + x229 + x230 + x231 + x232 ++ x233 + x234 + x259 + x260 + x261 + x262 + x264 + x290 + x298 + x301 ++ x308 + x332 + x375 + x395 + x397 + x398 + x399 + x400 + x422 + x456 ++ x458 + x485 + x486 + x488 + x489 <= 1 + +x7 + x21 + x27 + x28 + x53 + x56 + x57 + x66 + x93 + x103 ++ x104 + x105 + x106 + x107 + x108 + x126 + x127 + x128 + x162 + x194 ++ x198 + x200 + x201 + x202 + x203 + x222 + x223 + x224 + x225 + x226 ++ x227 + x229 + x230 + x231 + x232 + x233 + x234 + x259 + x262 + x264 ++ x288 + x298 + x301 + x309 + x331 + x375 + x395 + x397 + x398 + x399 ++ x400 + x456 + x458 + x466 + x485 + x488 + x489 <= 1 + +x2 + x3 + x4 + x5 + x7 + x8 + x9 + x10 + x47 + x48 ++ x49 + x50 + x51 + x52 + x54 + x58 + x112 + x114 + x131 + x159 ++ x160 + x162 + x170 + x171 + x172 + x173 + x178 + x230 + x232 + x245 ++ x246 + x250 + x253 + x277 + x278 + x282 + x286 + x287 + x288 + x289 ++ x290 + x291 + x314 + x324 + x327 + x328 + x348 + x349 + x350 + x352 ++ x365 + x366 + x367 + x368 + x369 + x370 + x374 + x385 + x389 + x390 ++ x391 + x409 + x427 + x428 + x435 + x436 + x437 + x438 + x439 + x440 ++ x443 + x464 + x467 + x480 + x482 <= 1 + +x2 + x3 + x4 + x5 + x7 + x9 + x10 + x26 + x51 + x52 ++ x54 + x58 + x73 + x75 + x114 + x130 + x131 + x132 + x137 + x159 ++ x161 + x162 + x163 + x170 + x171 + x173 + x177 + x178 + x205 + x206 ++ x230 + x245 + x246 + x248 + x250 + x254 + x278 + x282 + x286 + x287 ++ x288 + x289 + x290 + x291 + x314 + x316 + x317 + x322 + x324 + x327 ++ x328 + x347 + x348 + x349 + x350 + x351 + x352 + x365 + x366 + x367 ++ x368 + x369 + x370 + x374 + x381 + x385 + x389 + x390 + x391 + x414 ++ x423 + x428 + x435 + x436 + x437 + x438 + x439 + x440 + x443 + x445 ++ x464 + x467 + x482 <= 1 + +x2 + x3 + x4 + x5 + x7 + x9 + x11 + x12 + x24 + x25 ++ x58 + x70 + x71 + x72 + x73 + x77 + x78 + x79 + x80 + x82 ++ x114 + x159 + x160 + x161 + x162 + x163 + x171 + x173 + x177 + x178 ++ x205 + x206 + x208 + x209 + x212 + x230 + x244 + x245 + x246 + x248 ++ x249 + x250 + x253 + x254 + x280 + x282 + x286 + x287 + x288 + x289 ++ x290 + x291 + x293 + x295 + x297 + x307 + x312 + x314 + x318 + x322 ++ x324 + x325 + x326 + x328 + x347 + x348 + x349 + x350 + x351 + x352 ++ x363 + x365 + x366 + x367 + x368 + x369 + x370 + x371 + x374 + x390 ++ x391 + x417 + x435 + x436 + x437 + x438 + x439 + x442 + x445 <= 1 + +x2 + x3 + x4 + x5 + x6 + x7 + x24 + x25 + x34 + x54 ++ x58 + x70 + x71 + x72 + x73 + x74 + x75 + x80 + x81 + x82 ++ x130 + x133 + x159 + x161 + x177 + x212 + x231 + x232 + x234 + x245 ++ x246 + x248 + x250 + x251 + x287 + x288 + x289 + x290 + x291 + x293 ++ x348 + x349 + x350 + x351 + x352 + x363 + x365 + x366 + x367 + x368 ++ x370 + x371 + x374 + x417 + x436 + x437 + x438 + x445 + x459 + x467 ++ x474 <= 1 + +x2 + x3 + x4 + x6 + x27 + x53 + x54 + x55 + x56 + x58 ++ x71 + x72 + x73 + x74 + x75 + x80 + x85 + x86 + x102 + x105 ++ x115 + x117 + x120 + x159 + x161 + x184 + x186 + x229 + x231 + x232 ++ x239 + x245 + x246 + x251 + x252 + x253 + x255 + x288 + x289 + x290 ++ x299 + x300 + x303 + x304 + x307 + x322 + x329 + x348 + x352 + x363 ++ x365 + x371 + x413 + x415 + x417 + x429 + x430 + x431 + x433 + x436 ++ x440 + x467 + x473 + x481 + x492 <= 1 + +x2 + x3 + x4 + x6 + x7 + x24 + x27 + x53 + x54 + x55 ++ x56 + x58 + x71 + x74 + x85 + x91 + x92 + x119 + x120 + x159 ++ x161 + x183 + x184 + x185 + x186 + x188 + x194 + x229 + x231 + x232 ++ x234 + x245 + x246 + x251 + x252 + x287 + x289 + x291 + x299 + x300 ++ x302 + x304 + x307 + x322 + x351 + x352 + x363 + x371 + x375 + x412 ++ x413 + x414 + x415 + x416 + x417 + x430 + x431 + x433 + x440 + x469 ++ x485 + x492 + x503 <= 1 + +x2 + x4 + x6 + x7 + x24 + x25 + x40 + x53 + x54 + x55 ++ x56 + x57 + x58 + x71 + x81 + x82 + x85 + x95 + x105 + x107 ++ x108 + x119 + x158 + x159 + x160 + x161 + x162 + x229 + x231 + x232 ++ x233 + x234 + x249 + x250 + x251 + x252 + x255 + x263 + x269 + x287 ++ x298 + x299 + x302 + x303 + x307 + x308 + x363 + x371 + x373 + x412 ++ x413 + x414 + x415 + x416 + x420 + x440 + x463 + x496 + x504 <= 1 + +x4 + x24 + x25 + x27 + x53 + x55 + x56 + x57 + x58 + x74 ++ x103 + x105 + x107 + x108 + x119 + x145 + x160 + x162 + x163 + x165 ++ x193 + x224 + x229 + x231 + x232 + x233 + x234 + x247 + x249 + x252 ++ x258 + x259 + x261 + x263 + x289 + x290 + x298 + x299 + x301 + x302 ++ x303 + x306 + x308 + x333 + x412 + x413 + x416 + x417 + x418 + x420 ++ x422 + x437 + x454 + x458 + x461 + x485 + x490 + x496 + x499 + x501 ++ x504 <= 1 + +x18 + x24 + x27 + x53 + x54 + x55 + x56 + x57 + x74 + x93 ++ x103 + x104 + x105 + x107 + x108 + x127 + x145 + x160 + x162 + x163 ++ x198 + x199 + x200 + x201 + x202 + x222 + x224 + x225 + x227 + x229 ++ x230 + x231 + x232 + x233 + x234 + x259 + x260 + x261 + x263 + x264 ++ x272 + x290 + x298 + x301 + x306 + x332 + x333 + x350 + x372 + x375 ++ x395 + x397 + x398 + x399 + x400 + x412 + x416 + x422 + x453 + x454 ++ x456 + x458 + x473 + x485 + x486 + x488 + x489 + x504 <= 1 + +x7 + x27 + x53 + x56 + x57 + x93 + x98 + x103 + x104 + x105 ++ x106 + x107 + x108 + x126 + x127 + x162 + x163 + x198 + x199 + x200 ++ x202 + x222 + x224 + x225 + x229 + x230 + x231 + x232 + x233 + x234 ++ x260 + x261 + x263 + x264 + x288 + x298 + x301 + x306 + x331 + x333 ++ x359 + x398 + x399 + x400 + x412 + x416 + x451 + x454 + x456 + x458 ++ x466 + x485 + x488 + x489 <= 1 + +x2 + x5 + x6 + x7 + x8 + x9 + x10 + x12 + x13 + x26 ++ x47 + x49 + x50 + x51 + x52 + x54 + x58 + x75 + x80 + x87 ++ x88 + x89 + x90 + x131 + x136 + x138 + x159 + x160 + x162 + x172 ++ x175 + x178 + x205 + x219 + x245 + x246 + x253 + x277 + x278 + x280 ++ x282 + x288 + x289 + x290 + x306 + x307 + x308 + x313 + x322 + x324 ++ x325 + x327 + x328 + x329 + x347 + x348 + x349 + x350 + x352 + x361 ++ x365 + x366 + x367 + x368 + x369 + x370 + x390 + x407 + x409 + x428 ++ x443 + x445 + x480 + x482 <= 1 + +x2 + x4 + x5 + x7 + x8 + x9 + x12 + x13 + x26 + x51 ++ x52 + x70 + x73 + x75 + x80 + x87 + x88 + x106 + x114 + x132 ++ x136 + x137 + x159 + x161 + x162 + x205 + x209 + x245 + x246 + x248 ++ x253 + x254 + x277 + x278 + x280 + x282 + x286 + x287 + x288 + x289 ++ x290 + x291 + x307 + x308 + x313 + x314 + x316 + x325 + x326 + x327 ++ x328 + x329 + x347 + x348 + x349 + x350 + x351 + x352 + x361 + x365 ++ x366 + x367 + x368 + x369 + x370 + x385 + x391 + x414 + x415 + x443 ++ x445 + x487 <= 1 + +x2 + x3 + x4 + x5 + x7 + x8 + x11 + x12 + x13 + x26 ++ x70 + x72 + x73 + x75 + x79 + x80 + x106 + x118 + x135 + x136 ++ x137 + x138 + x159 + x161 + x171 + x187 + x205 + x206 + x208 + x209 ++ x245 + x246 + x248 + x250 + x251 + x253 + x254 + x277 + x278 + x280 ++ x286 + x287 + x288 + x289 + x290 + x291 + x295 + x307 + x312 + x313 ++ x315 + x322 + x325 + x326 + x327 + x328 + x329 + x347 + x348 + x349 ++ x350 + x351 + x352 + x365 + x366 + x367 + x368 + x369 + x370 + x371 ++ x374 + x375 + x390 + x408 + x414 + x415 + x416 + x437 + x442 + x443 ++ x445 + x487 <= 1 + +x2 + x3 + x4 + x5 + x6 + x7 + x8 + x11 + x13 + x71 ++ x72 + x73 + x74 + x75 + x80 + x117 + x135 + x137 + x159 + x161 ++ x163 + x171 + x206 + x207 + x209 + x245 + x246 + x250 + x251 + x253 ++ x254 + x255 + x278 + x280 + x287 + x288 + x289 + x290 + x291 + x307 ++ x315 + x322 + x325 + x326 + x332 + x347 + x348 + x349 + x350 + x351 ++ x352 + x366 + x367 + x368 + x369 + x370 + x371 + x374 + x375 + x407 ++ x408 + x410 + x414 + x417 + x437 + x443 + x445 + x487 <= 1 + +x2 + x3 + x4 + x5 + x6 + x7 + x54 + x58 + x70 + x71 ++ x72 + x73 + x74 + x75 + x80 + x86 + x115 + x117 + x120 + x159 ++ x161 + x209 + x229 + x231 + x232 + x233 + x234 + x245 + x246 + x248 ++ x250 + x251 + x253 + x254 + x255 + x267 + x280 + x288 + x290 + x293 ++ x300 + x307 + x308 + x315 + x322 + x325 + x326 + x348 + x349 + x352 ++ x365 + x370 + x371 + x374 + x375 + x412 + x413 + x415 + x416 + x417 ++ x419 + x429 + x430 + x431 + x436 + x438 + x459 + x467 + x503 <= 1 + +x2 + x3 + x4 + x5 + x6 + x7 + x24 + x27 + x53 + x54 ++ x55 + x56 + x71 + x74 + x85 + x92 + x106 + x117 + x159 + x161 ++ x162 + x183 + x185 + x188 + x229 + x232 + x233 + x234 + x245 + x246 ++ x251 + x255 + x265 + x267 + x268 + x288 + x289 + x296 + x304 + x307 ++ x308 + x322 + x363 + x365 + x368 + x370 + x371 + x373 + x374 + x375 ++ x412 + x413 + x414 + x415 + x416 + x417 + x419 + x431 + x436 + x503 ++ x504 <= 1 + +x2 + x4 + x6 + x7 + x53 + x54 + x55 + x56 + x57 + x58 ++ x90 + x92 + x119 + x158 + x159 + x161 + x162 + x183 + x185 + x231 ++ x232 + x233 + x234 + x255 + x263 + x265 + x267 + x268 + x269 + x288 ++ x289 + x304 + x307 + x308 + x371 + x372 + x373 + x374 + x375 + x412 ++ x413 + x414 + x415 + x416 + x417 + x418 + x419 + x420 + x504 <= 1 + +x4 + x6 + x7 + x53 + x54 + x55 + x56 + x57 + x58 + x92 ++ x107 + x108 + x119 + x135 + x160 + x162 + x185 + x231 + x233 + x234 ++ x252 + x255 + x260 + x261 + x263 + x265 + x266 + x269 + x289 + x304 ++ x306 + x307 + x308 + x333 + x349 + x372 + x375 + x379 + x400 + x412 ++ x413 + x416 + x417 + x418 + x419 + x420 + x422 + x437 + x452 + x453 ++ x461 + x487 + x488 + x490 <= 1 + +x4 + x17 + x18 + x53 + x54 + x55 + x56 + x57 + x58 + x92 ++ x93 + x103 + x108 + x162 + x163 + x198 + x202 + x229 + x230 + x231 ++ x233 + x234 + x255 + x259 + x260 + x261 + x263 + x264 + x266 + x270 ++ x271 + x272 + x290 + x298 + x301 + x304 + x308 + x332 + x336 + x350 ++ x372 + x374 + x375 + x398 + x399 + x400 + x412 + x416 + x428 + x452 ++ x453 + x454 + x455 + x485 + x488 <= 1 + +x4 + x17 + x53 + x54 + x55 + x56 + x57 + x93 + x103 + x106 ++ x116 + x126 + x162 + x198 + x200 + x202 + x229 + x230 + x231 + x234 ++ x259 + x260 + x261 + x263 + x264 + x301 + x331 + x350 + x359 + x398 ++ x400 + x412 + x416 + x451 + x453 + x458 + x468 + x485 <= 1 + +x2 + x5 + x12 + x26 + x47 + x49 + x50 + x51 + x52 + x87 ++ x89 + x90 + x120 + x131 + x138 + x159 + x161 + x188 + x219 + x231 ++ x246 + x282 + x290 + x306 + x308 + x313 + x322 + x324 + x325 + x327 ++ x328 + x329 + x348 + x349 + x350 + x352 + x361 + x365 + x366 + x367 ++ x368 + x370 + x409 + x443 <= 1 + +x2 + x5 + x8 + x9 + x12 + x26 + x47 + x49 + x50 + x52 ++ x73 + x75 + x80 + x88 + x89 + x118 + x131 + x136 + x137 + x138 ++ x159 + x161 + x162 + x209 + x219 + x232 + x246 + x248 + x253 + x287 ++ x288 + x289 + x290 + x306 + x308 + x313 + x322 + x324 + x325 + x327 ++ x328 + x329 + x347 + x348 + x349 + x350 + x351 + x352 + x361 + x365 ++ x366 + x367 + x368 + x369 + x370 + x390 + x391 + x414 + x443 + x487 + <= 1 + +x2 + x5 + x13 + x26 + x47 + x70 + x72 + x73 + x75 + x106 ++ x118 + x135 + x136 + x138 + x187 + x206 + x208 + x209 + x232 + x246 ++ x248 + x250 + x251 + x287 + x288 + x290 + x291 + x308 + x312 + x313 ++ x315 + x322 + x324 + x325 + x326 + x328 + x348 + x349 + x350 + x351 ++ x352 + x365 + x366 + x370 + x375 + x408 + x412 + x414 + x415 + x416 ++ x437 + x443 + x445 + x487 <= 1 + +x2 + x5 + x7 + x11 + x13 + x26 + x58 + x72 + x73 + x75 ++ x79 + x106 + x161 + x163 + x187 + x206 + x208 + x209 + x245 + x246 ++ x250 + x251 + x254 + x287 + x288 + x289 + x290 + x291 + x307 + x309 ++ x315 + x322 + x325 + x326 + x328 + x332 + x347 + x348 + x349 + x350 ++ x351 + x352 + x370 + x371 + x375 + x407 + x410 + x412 + x413 + x414 ++ x415 + x416 + x437 + x443 + x445 <= 1 + +x2 + x11 + x55 + x58 + x73 + x106 + x187 + x245 + x246 + x287 ++ x288 + x289 + x290 + x326 + x349 + x352 + x370 + x371 + x373 + x375 ++ x410 + x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x2 + x27 + x55 + x56 + x106 + x183 + x185 + x187 + x218 + x229 ++ x245 + x246 + x255 + x287 + x288 + x289 + x290 + x291 + x326 + x371 ++ x373 + x374 + x375 + x412 + x413 + x414 + x415 + x416 + x504 <= 1 + +x2 + x24 + x48 + x53 + x54 + x55 + x56 + x92 + x232 + x245 ++ x246 + x255 + x267 + x288 + x289 + x304 + x307 + x365 + x412 + x413 ++ x414 + x415 + x416 + x417 <= 1 + +x56 + x57 + x92 + x135 + x162 + x228 + x229 + x233 + x234 + x265 ++ x266 + x289 + x308 + x375 + x391 + x412 + x413 + x417 + x455 <= 1 + +x54 + x55 + x56 + x57 + x103 + x116 + x122 + x229 + x230 + x233 ++ x259 + x261 + x264 + x266 + x270 + x271 + x272 + x289 + x301 + x308 ++ x374 + x375 + x391 + x417 + x451 + x452 + x455 + x458 <= 1 + +x37 + x55 + x56 + x57 + x116 + x122 + x157 + x200 + x202 + x229 ++ x230 + x247 + x259 + x260 + x261 + x263 + x264 + x271 + x301 + x359 ++ x374 + x412 + x417 + x451 + x452 + x455 + x458 + x474 + x485 <= 1 + +x0 + x1 <= 1 + +x2 + x3 + x4 + x5 + x6 + x7 <= 1 + +x8 + x9 + x10 + x11 + x12 + x13 <= 1 + +x15 + x16 <= 1 + +x17 + x18 <= 1 + +x19 + x20 + x21 <= 1 + +x23 + x24 + x25 + x26 + x27 + x28 <= 1 + +x29 + x30 + x31 + x32 + x33 + x34 <= 1 + +x35 + x36 + x37 + x38 + x39 + x40 <= 1 + +x41 + x42 + x43 + x44 + x45 + x46 <= 1 + +x47 + x48 + x49 + x50 + x51 + x52 <= 1 + +x53 + x54 + x55 + x56 + x57 + x58 <= 1 + +x59 + x60 + x61 + x62 + x63 + x64 <= 1 + +x65 + x66 + x67 + x68 + x69 <= 1 + +x70 + x71 + x72 + x73 + x74 + x75 <= 1 + +x76 + x77 + x78 + x79 + x80 + x81 <= 1 + +x82 + x83 + x84 + x85 + x86 <= 1 + +x87 + x88 + x89 + x90 <= 1 + +x91 + x92 + x93 + x94 + x95 + x96 <= 1 + +x97 + x98 + x99 + x100 + x101 + x102 <= 1 + +x103 + x104 + x105 + x106 + x107 + x108 <= 1 + +x109 + x110 + x111 + x112 + x113 + x114 <= 1 + +x115 + x116 + x117 + x118 + x119 + x120 <= 1 + +x121 + x122 + x123 + x124 + x125 <= 1 + +x126 + x127 + x128 <= 1 + +x129 + x130 + x131 + x132 + x133 + x134 <= 1 + +x135 + x136 + x137 + x138 <= 1 + +x139 + x140 + x141 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x148 + x149 + x150 + x151 <= 1 + +x152 + x153 + x154 + x155 + x156 <= 1 + +x158 + x159 + x160 + x161 + x162 + x163 <= 1 + +x164 + x165 + x166 + x167 + x168 + x169 <= 1 + +x170 + x171 + x172 + x173 + x174 + x175 <= 1 + +x176 + x177 + x178 + x179 + x180 + x181 <= 1 + +x183 + x184 + x185 + x186 + x187 + x188 <= 1 + +x189 + x190 + x191 + x192 + x193 + x194 <= 1 + +x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 + x221 <= 1 + +x222 + x223 + x224 + x225 + x226 + x227 <= 1 + +x229 + x230 + x231 + x232 + x233 + x234 <= 1 + +x235 + x236 <= 1 + +x237 + x238 + x239 + x240 + x241 + x242 <= 1 + +x244 + x245 + x246 + x247 + x248 + x249 <= 1 + +x250 + x251 + x252 + x253 + x254 + x255 <= 1 + + <= 1 + +x259 + x260 + x261 + x262 + x263 + x264 <= 1 + +x265 + x266 + x267 + x268 + x269 <= 1 + +x270 + x271 + x272 <= 1 + +x273 + x274 + x275 + x276 <= 1 + +x277 + x278 + x279 + x280 + x281 + x282 <= 1 + +x283 + x284 + x285 <= 1 + +x286 + x287 + x288 + x289 + x290 + x291 <= 1 + +x292 + x293 + x294 + x295 + x296 + x297 <= 1 + +x298 + x299 + x300 + x301 + x302 + x303 <= 1 + +x304 + x305 + x306 + x307 + x308 + x309 <= 1 + +x310 + x311 <= 1 + +x312 + x313 + x314 + x315 + x316 + x317 <= 1 + +x318 + x319 + x320 + x321 + x322 + x323 <= 1 + +x324 + x325 + x326 + x327 + x328 + x329 <= 1 + +x330 + x331 + x332 + x333 + x334 + x335 <= 1 + +x337 + x338 + x339 + x340 + x341 + x342 <= 1 + +x344 + x345 + x346 <= 1 + +x347 + x348 + x349 + x350 + x351 + x352 <= 1 + +x353 + x354 + x355 + x356 + x357 <= 1 + +x358 + x359 + x360 + x361 + x362 + x363 <= 1 + +x365 + x366 + x367 + x368 + x369 + x370 <= 1 + +x371 + x372 + x373 + x374 + x375 + x376 <= 1 + +x377 + x378 + x379 + x380 + x381 + x382 <= 1 + +x383 + x384 + x385 + x386 + x387 + x388 <= 1 + +x389 + x390 + x391 + x392 + x393 + x394 <= 1 + +x395 + x396 + x397 + x398 + x399 + x400 <= 1 + +x401 + x402 + x403 + x404 + x405 + x406 <= 1 + +x407 + x408 + x409 + x410 <= 1 + +x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 + x422 <= 1 + +x423 + x424 + x425 + x426 + x427 + x428 <= 1 + +x429 + x430 + x431 + x432 + x433 + x434 <= 1 + +x435 + x436 + x437 + x438 + x439 + x440 <= 1 + +x442 + x443 + x444 + x445 + x446 + x447 <= 1 + +x448 + x449 + x450 <= 1 + +x451 + x452 + x453 + x454 + x455 <= 1 + +x456 + x457 + x458 + x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x469 + x470 + x471 <= 1 + +x472 + x473 + x474 + x475 + x476 + x477 <= 1 + +x479 + x480 + x481 + x482 + x483 + x484 <= 1 + +x485 + x486 + x487 + x488 + x489 + x490 <= 1 + +x491 + x492 + x493 + x494 + x495 + x496 <= 1 + +x497 + x498 <= 1 + +x499 + x500 + x501 + x502 + x503 + x504 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 x503 x504 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0001.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0001.lp new file mode 100755 index 000000000..228c27f67 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0001.lp @@ -0,0 +1,1105 @@ +max + +322.627x0 + 448.966x1 + 404.674x2 + 386.499x3 + 292.101x4 + 276.459x5 + 1684.07x6 + 1890.66x7 + 1845.75x8 + 1769.11x9 + +1733.45x10 + 1719.61x11 + 2652.31x12 + 2719.77x13 + 2692.28x14 + 2662.06x15 + 2606.87x16 + 2606.72x17 + 1295.4x18 + 1446.07x19 + +1372.17x20 + 1355.58x21 + 1349.9x22 + 1341.18x23 + 93.4606x24 + 228.547x25 + 305.128x26 + 277.002x27 + 274.024x28 + 277.379x29 + +415.863x30 + 340.844x31 + 304.833x32 + 295.517x33 + 289.162x34 + 906.373x35 + 1056.2x36 + 1031.1x37 + 1018.27x38 + 1004.61x39 + +980.32x40 + 452.99x41 + 642.553x42 + 517.138x43 + 473.121x44 + 450.099x45 + 443.215x46 + 1043.99x47 + 1038.42x48 + 1037.69x49 + +1031.64x50 + 1030.95x51 + 982.308x52 + 1227.89x53 + 1188.61x54 + 1182.1x55 + 1150.92x56 + 1070.6x57 + 1055.28x58 + 1077.75x59 + +1222.64x60 + 1188.77x61 + 1160.01x62 + 1147.68x63 + 1141.49x64 + 1046.17x65 + 1163.7x66 + 1136.25x67 + 1132.35x68 + 1121.23x69 + +1097.84x70 + 94.1064x71 + 1483.65x72 + 2026.06x73 + 1977.45x74 + 1948.38x75 + 1941.99x76 + 1940.45x77 + 575.813x78 + 670.148x79 + +649.362x80 + 628.074x81 + 624.829x82 + 613.724x83 + 86.0017x84 + 278.617x85 + 300.778x86 + 261.156x87 + 231.29x88 + 798.181x89 + +976.392x90 + 968.637x91 + 865.885x92 + 859.317x93 + 843.61x94 + 100.34x95 + 482.809x96 + 603.59x97 + 577.289x98 + 554.873x99 + +513.101x100 + 478.286x101 + 893.666x102 + 1205.15x103 + 1190.1x104 + 1173.78x105 + 1172.55x106 + 1125.32x107 + 96.05x108 + 1314.42x109 + +1963.58x110 + 1946.97x111 + 1893.72x112 + 1878.23x113 + 1875.89x114 + 777.277x115 + 957.917x116 + 925.285x117 + 883.478x118 + 833.915x119 + +833.036x120 + 284.73x121 + 310.791x122 + 289.026x123 + 222.664x124 + 214.566x125 + 165.812x126 + 997.241x127 + 1024.73x128 + 1012.22x129 + +1008.06x130 + 978.635x131 + 938.493x132 + 1348.04x133 + 1356.11x134 + 1352.52x135 + 1349.01x136 + 1312.6x137 + 1295.1x138 + 30.1527x139 + +587.981x140 + 661.738x141 + 636.466x142 + 574.645x143 + 562.659x144 + 552.905x145 + 535.93x146 + 759.908x147 + 729.435x148 + 713.984x149 + +666.574x150 + 645.86x151 + 670.823x152 + 744.984x153 + 668.034x154 + 554.951x155 + 523.531x156 + 523.465x157 + 260.047x158 + 307.012x159 + +300.676x160 + 277.858x161 + 226.307x162 + 138.714x163 + 1359.91x164 + 1594.25x165 + 1565.81x166 + 1520.72x167 + 1490.05x168 + 1453.31x169 + +514.255x170 + 729.786x171 + 695.13x172 + 634.63x173 + 590.714x174 + 546.356x175 + 709.815x176 + 726.387x177 + 688.317x178 + 672.61x179 + +667.616x180 + 667.137x181 + 940.62x182 + 1286.84x183 + 1215.52x184 + 1155.47x185 + 1150.15x186 + 1140.74x187 + 207.04x188 + 239.022x189 + +209.322x190 + 169.617x191 + 1642.33x192 + 1949.82x193 + 1928.76x194 + 1842.4x195 + 1828.09x196 + 1822.57x197 + 1296.47x198 + 1482.51x199 + +1460.7x200 + 1368.8x201 + 1365.64x202 + 1360.39x203 + 860.539x204 + 885.155x205 + 882.608x206 + 826.809x207 + 821.02x208 + 817.119x209 + +401.657x210 + 516.522x211 + 500.881x212 + 499.449x213 + 476.618x214 + 467.609x215 + 300.29x216 + 414.509x217 + 358.041x218 + 288.989x219 + +271.368x220 + 628.495x221 + 931.953x222 + 854.568x223 + 848.257x224 + 838.934x225 + 824.916x226 + 681.468x227 + 924.676x228 + 816.771x229 + +813.807x230 + 759.833x231 + 758.275x232 + 2379.57x233 + 3046.01x234 + 2724.36x235 + 2703.28x236 + 2686.62x237 + 2614.24x238 + 252.523x239 + +341.861x240 + 304.885x241 + 300.576x242 + 284.766x243 + 240.327x244 + 422.051x245 + 473.964x246 + 423.875x247 + 335.052x248 + 300.055x249 + +265.223x250 + 1253.13x251 + 1279.71x252 + 1232x253 + 1211.24x254 + 1185.05x255 + 1178.74x256 + 491.988x257 + 610.116x258 + 554.644x259 + +496.955x260 + 475.265x261 + 438.199x262 + 1095.03x263 + 1248.82x264 + 1146.54x265 + 1141.59x266 + 1115.2x267 + 1085.54x268 + 894.101x269 + +863.697x270 + 860.841x271 + 852.417x272 + 839.77x273 + 798.215x274 + 818.416x275 + 977.8x276 + 961.975x277 + 949.28x278 + 934.589x279 + +876.724x280 + 75.0932x281 + 1056.36x282 + 1317.35x283 + 1287.18x284 + 1234.36x285 + 1173.95x286 + 1119.35x287 + 542.318x288 + 729.511x289 + +699.348x290 + 687.906x291 + 664.531x292 + 648.484x293 + 613.686x294 + 698.797x295 + 670.024x296 + 615.802x297 + 585.607x298 + 577.951x299 + +287.707x300 + 386.292x301 + 293.353x302 + 228.951x303 + 207.658x304 + 437.374x305 + 621.943x306 + 549.05x307 + 542.292x308 + 515.917x309 + +453.578x310 + 361.501x311 + 346.983x312 + 330.687x313 + 323.542x314 + 317.15x315 + 404.983x316 + 526.041x317 + 508.564x318 + 497.954x319 + +483.138x320 + 456.64x321 + 691.929x322 + 1023.08x323 + 988.652x324 + 946.761x325 + 935.098x326 + 933.032x327 + 509.728x328 + 619.015x329 + +581.365x330 + 544.818x331 + 527.437x332 + 526.327x333 + 833.851x334 + 871.706x335 + 866.885x336 + 813.473x337 + 809.628x338 + 807.313x339 + +766.804x340 + 817.491x341 + 804.838x342 + 790.966x343 + 744.43x344 + 685.158x345 + 3187.12x346 + 3314.11x347 + 3273.92x348 + 3260.7x349 + +3240.08x350 + 3187.02x351 + 772.179x352 + 986.364x353 + 928.377x354 + 922.941x355 + 914.28x356 + 851.368x357 + 291.891x358 + 437.54x359 + +363.921x360 + 224.418x361 + 816.1x362 + 916.965x363 + 893.372x364 + 817.78x365 + 802.933x366 + 791.807x367 + 180.175x368 + 115.156x369 + +98.4008x370 + 106.165x371 + 94.7481x372 + 135.829x373 + 172.382x374 + 249.659x375 + 222.806x376 + 203.444x377 + 1185.68x378 + 1412.21x379 + +1395.39x380 + 1373.06x381 + 1336.28x382 + 1275.44x383 + 1451.6x384 + 1736.73x385 + 1709.17x386 + 1664.42x387 + 1636.41x388 + 1576.55x389 + +132.502x390 + 162.255x391 + 158.159x392 + 1024.53x393 + 997.16x394 + 992.22x395 + 978.934x396 + 978.181x397 + 911.787x398 + 294.632x399 + +324.489x400 + 312.614x401 + 198.805x402 + 197.181x403 + 1022.95x404 + 1403.91x405 + 1361.56x406 + 1333.1x407 + 1311.95x408 + 1310.43x409 + +1735.75x410 + 1871.29x411 + 1851.15x412 + 1827.4x413 + 1764.32x414 + 1763.92x415 + 297.277x416 + 392.481x417 + 341.488x418 + 330.699x419 + +262.273x420 + 309.58x421 + 324.224x422 + 317.491x423 + 263.054x424 + 254.286x425 + 897.557x426 + 1175.25x427 + 1165.99x428 + 1133.03x429 + +1129.63x430 + 1086.85x431 + 963.739x432 + 1150.24x433 + 1114.65x434 + 1052.62x435 + 1019.12x436 + 1011.56x437 + 479.284x438 + 631.239x439 + +593.577x440 + 545.723x441 + 526.886x442 + 511.105x443 + 174.289x444 + 308.275x445 + 321.763x446 + 308.106x447 + 306.141x448 + 301.403x449 + +1686.94x450 + 2005.3x451 + 1968.2x452 + 1878.21x453 + 1868.25x454 + 1846.79x455 + 1626.03x456 + 2184.65x457 + 1940.06x458 + 1937.69x459 + +1888.06x460 + 1831.67x461 + 386.246x462 + 458.106x463 + 441.782x464 + 369.607x465 + 353.497x466 + 328.384x467 + 773.45x468 + 1056.99x469 + +1008.4x470 + 967.275x471 + 932.829x472 + 911.381x473 + 3786.74x474 + 4115.49x475 + 4104.53x476 + 4103.71x477 + 4092.66x478 + 4038.7x479 + +292.011x480 + 401.579x481 + 388.699x482 + 383.894x483 + 338.298x484 + 321.335x485 + 761.42x486 + 856.231x487 + 838.807x488 + 771.881x489 + +770.548x490 + 717.657x491 + 744.992x492 + 984.391x493 + 981.612x494 + 956.222x495 + 933.905x496 + 932.29x497 + 275.372x498 + 232.765x499 + + +st + +x8 + x10 + x14 + x20 + x59 + x61 + x64 + x72 + x74 + x75 ++ x78 + x80 + x82 + x83 + x111 + x112 + x116 + x133 + x136 + x140 ++ x141 + x143 + x144 + x145 + x164 + x165 + x167 + x169 + x184 + x193 ++ x197 + x212 + x234 + x251 + x252 + x253 + x255 + x256 + x270 + x272 ++ x273 + x284 + x292 + x298 + x305 + x306 + x309 + x310 + x346 + x363 ++ x384 + x386 + x387 + x388 + x389 + x393 + x394 + x395 + x397 + x398 ++ x410 + x411 + x412 + x413 + x414 + x415 + x440 + x442 + x450 + x451 ++ x457 + x469 + x470 + x471 + x474 + x478 + x495 <= 1 + +x8 + x14 + x26 + x47 + x51 + x52 + x59 + x61 + x64 + x72 ++ x73 + x74 + x75 + x77 + x78 + x79 + x80 + x82 + x83 + x90 ++ x96 + x98 + x109 + x111 + x112 + x117 + x133 + x134 + x136 + x143 ++ x164 + x165 + x167 + x168 + x169 + x193 + x199 + x202 + x212 + x222 ++ x223 + x234 + x251 + x252 + x253 + x256 + x270 + x272 + x274 + x284 ++ x292 + x298 + x299 + x306 + x331 + x344 + x346 + x358 + x359 + x360 ++ x362 + x363 + x364 + x367 + x384 + x386 + x387 + x388 + x389 + x393 ++ x394 + x395 + x397 + x410 + x411 + x412 + x413 + x414 + x415 + x432 ++ x438 + x440 + x450 + x451 + x457 + x459 + x467 + x469 + x470 + x471 ++ x474 + x475 + x478 + x494 + x495 <= 1 + +x8 + x9 + x13 + x15 + x47 + x52 + x59 + x61 + x63 + x64 ++ x74 + x75 + x78 + x79 + x80 + x81 + x82 + x83 + x90 + x98 ++ x111 + x112 + x113 + x133 + x134 + x136 + x137 + x164 + x165 + x167 ++ x168 + x169 + x171 + x186 + x192 + x199 + x202 + x206 + x212 + x223 ++ x251 + x252 + x253 + x254 + x256 + x265 + x269 + x270 + x272 + x273 ++ x274 + x284 + x306 + x331 + x332 + x343 + x344 + x346 + x358 + x359 ++ x360 + x362 + x363 + x364 + x366 + x367 + x384 + x387 + x388 + x389 ++ x393 + x394 + x397 + x410 + x411 + x412 + x413 + x414 + x415 + x432 ++ x437 + x438 + x439 + x440 + x441 + x443 + x450 + x451 + x457 + x458 ++ x459 + x465 + x467 + x468 + x469 + x470 + x471 + x474 + x475 + x476 ++ x477 + x478 + x494 <= 1 + +x6 + x7 + x8 + x9 + x10 + x13 + x15 + x28 + x55 + x59 ++ x61 + x63 + x64 + x74 + x75 + x79 + x80 + x81 + x82 + x83 ++ x111 + x112 + x113 + x133 + x134 + x135 + x136 + x137 + x138 + x164 ++ x165 + x167 + x168 + x169 + x171 + x186 + x192 + x199 + x211 + x213 ++ x214 + x218 + x223 + x251 + x252 + x253 + x254 + x255 + x256 + x265 ++ x267 + x268 + x269 + x270 + x272 + x273 + x274 + x328 + x330 + x331 ++ x332 + x341 + x343 + x344 + x346 + x359 + x361 + x362 + x363 + x364 ++ x365 + x366 + x367 + x384 + x387 + x389 + x393 + x394 + x397 + x410 ++ x411 + x412 + x413 + x414 + x415 + x431 + x432 + x437 + x438 + x440 ++ x441 + x443 + x450 + x451 + x455 + x457 + x458 + x459 + x462 + x463 ++ x464 + x465 + x467 + x471 + x474 + x475 + x476 + x478 <= 1 + +x8 + x10 + x13 + x15 + x55 + x59 + x61 + x63 + x82 + x110 ++ x111 + x112 + x113 + x133 + x134 + x135 + x136 + x137 + x138 + x167 ++ x168 + x169 + x182 + x210 + x211 + x213 + x214 + x215 + x223 + x235 ++ x245 + x246 + x251 + x252 + x253 + x254 + x255 + x256 + x265 + x267 ++ x268 + x270 + x272 + x273 + x274 + x281 + x328 + x329 + x330 + x331 ++ x332 + x333 + x341 + x342 + x343 + x344 + x345 + x346 + x362 + x365 ++ x367 + x384 + x389 + x397 + x410 + x411 + x412 + x413 + x414 + x415 ++ x431 + x432 + x434 + x437 + x440 + x451 + x455 + x458 + x462 + x463 ++ x464 + x466 + x474 + x475 + x476 + x478 + x494 <= 1 + +x12 + x13 + x15 + x16 + x19 + x55 + x59 + x63 + x79 + x107 ++ x111 + x113 + x133 + x134 + x135 + x137 + x138 + x165 + x167 + x169 ++ x186 + x192 + x196 + x199 + x201 + x210 + x211 + x213 + x214 + x215 ++ x229 + x235 + x246 + x251 + x252 + x253 + x254 + x255 + x256 + x270 ++ x272 + x273 + x329 + x333 + x340 + x341 + x342 + x343 + x344 + x345 ++ x348 + x356 + x405 + x409 + x411 + x412 + x413 + x432 + x433 + x435 ++ x437 + x451 + x462 + x466 + x474 + x475 + x476 + x478 + x494 <= 1 + +x6 + x9 + x11 + x77 + x171 + x236 + x288 + x289 + x291 + x293 ++ x301 + x352 + x354 + x355 + x378 + x380 + x413 + x459 + x474 + x498 ++ x499 <= 1 + +x6 + x9 + x11 + x12 + x14 + x29 + x30 + x31 + x32 + x33 ++ x34 + x137 + x170 + x171 + x236 + x263 + x266 + x288 + x289 + x291 ++ x293 + x301 + x338 + x352 + x353 + x354 + x355 + x356 + x378 + x380 ++ x405 + x474 + x475 + x498 + x499 <= 1 + +x9 + x11 + x29 + x31 + x32 + x33 + x58 + x115 + x117 + x120 ++ x171 + x187 + x200 + x263 + x266 + x267 + x288 + x292 + x293 + x353 ++ x354 + x355 + x378 + x380 + x382 + x405 + x481 + x484 + x499 <= 1 + +x9 + x29 + x32 + x33 + x58 + x66 + x67 + x68 + x76 + x77 ++ x114 + x115 + x119 + x120 + x135 + x171 + x187 + x233 + x263 + x266 ++ x288 + x292 + x293 + x348 + x350 + x351 + x352 + x353 + x378 + x405 ++ x460 + x474 <= 1 + +x10 + x14 + x26 + x27 + x61 + x64 + x72 + x73 + x74 + x75 ++ x77 + x78 + x80 + x82 + x83 + x90 + x111 + x112 + x116 + x117 ++ x136 + x140 + x141 + x143 + x144 + x145 + x154 + x156 + x157 + x164 ++ x165 + x167 + x168 + x169 + x184 + x198 + x212 + x234 + x251 + x253 ++ x255 + x272 + x273 + x284 + x298 + x305 + x306 + x309 + x310 + x349 ++ x360 + x367 + x386 + x387 + x388 + x389 + x393 + x394 + x395 + x396 ++ x397 + x398 + x410 + x411 + x412 + x413 + x414 + x415 + x442 + x457 ++ x471 + x474 + x478 + x494 + x495 <= 1 + +x10 + x25 + x26 + x27 + x47 + x51 + x52 + x61 + x64 + x72 ++ x73 + x74 + x75 + x77 + x78 + x80 + x82 + x90 + x95 + x109 ++ x111 + x112 + x116 + x117 + x133 + x134 + x136 + x140 + x141 + x143 ++ x144 + x154 + x156 + x164 + x165 + x167 + x168 + x169 + x172 + x182 ++ x192 + x193 + x211 + x212 + x234 + x253 + x255 + x270 + x272 + x273 ++ x274 + x284 + x287 + x298 + x299 + x306 + x346 + x349 + x362 + x363 ++ x367 + x384 + x385 + x386 + x387 + x388 + x389 + x410 + x411 + x412 ++ x413 + x414 + x415 + x432 + x438 + x439 + x441 + x442 + x457 + x465 ++ x468 + x469 + x470 + x471 + x474 + x475 + x477 + x478 + x494 + x495 + <= 1 + +x15 + x25 + x26 + x27 + x28 + x47 + x52 + x59 + x74 + x75 ++ x77 + x78 + x79 + x80 + x81 + x90 + x109 + x111 + x112 + x113 ++ x156 + x164 + x165 + x167 + x168 + x169 + x182 + x186 + x192 + x210 ++ x211 + x212 + x213 + x214 + x215 + x223 + x238 + x251 + x252 + x253 ++ x256 + x268 + x269 + x270 + x272 + x273 + x274 + x306 + x330 + x331 ++ x333 + x344 + x358 + x360 + x362 + x363 + x364 + x366 + x367 + x384 ++ x387 + x389 + x410 + x411 + x412 + x413 + x414 + x415 + x432 + x437 ++ x438 + x439 + x440 + x441 + x443 + x450 + x451 + x454 + x457 + x458 ++ x459 + x465 + x467 + x468 + x469 + x470 + x471 + x474 + x476 + x477 ++ x478 <= 1 + +x4 + x6 + x7 + x8 + x9 + x10 + x11 + x14 + x15 + x25 ++ x28 + x52 + x55 + x59 + x60 + x61 + x63 + x75 + x78 + x79 ++ x80 + x81 + x82 + x90 + x110 + x111 + x112 + x113 + x133 + x134 ++ x135 + x136 + x137 + x138 + x165 + x167 + x168 + x169 + x175 + x182 ++ x186 + x192 + x199 + x210 + x211 + x213 + x214 + x215 + x223 + x235 ++ x251 + x252 + x253 + x254 + x255 + x256 + x265 + x266 + x268 + x269 ++ x270 + x272 + x273 + x274 + x306 + x328 + x330 + x331 + x332 + x333 ++ x340 + x341 + x342 + x343 + x344 + x345 + x346 + x358 + x361 + x362 ++ x363 + x364 + x365 + x366 + x367 + x384 + x387 + x389 + x410 + x411 ++ x412 + x413 + x414 + x415 + x431 + x432 + x434 + x437 + x438 + x441 ++ x443 + x450 + x451 + x455 + x457 + x458 + x459 + x462 + x464 + x465 ++ x466 + x467 <= 1 + +x6 + x8 + x10 + x11 + x14 + x15 + x25 + x28 + x55 + x59 ++ x60 + x61 + x62 + x63 + x74 + x75 + x78 + x79 + x80 + x81 ++ x110 + x111 + x112 + x113 + x133 + x134 + x135 + x136 + x137 + x138 ++ x165 + x167 + x168 + x169 + x177 + x182 + x185 + x186 + x192 + x194 ++ x196 + x201 + x210 + x211 + x213 + x214 + x215 + x234 + x235 + x236 ++ x246 + x251 + x252 + x253 + x254 + x255 + x256 + x258 + x259 + x265 ++ x266 + x267 + x268 + x269 + x328 + x329 + x330 + x331 + x332 + x333 ++ x340 + x341 + x342 + x343 + x344 + x346 + x348 + x362 + x363 + x364 ++ x365 + x366 + x367 + x387 + x405 + x411 + x412 + x413 + x414 + x415 ++ x432 + x433 + x434 + x435 + x437 + x440 + x443 + x450 + x451 + x455 ++ x457 + x458 + x459 + x462 + x463 + x464 + x474 + x475 + x476 + x477 ++ x478 + x494 <= 1 + +x6 + x11 + x12 + x14 + x16 + x19 + x22 + x55 + x56 + x59 ++ x60 + x61 + x62 + x63 + x79 + x112 + x113 + x120 + x133 + x134 ++ x135 + x136 + x137 + x138 + x165 + x167 + x169 + x186 + x192 + x193 ++ x194 + x195 + x196 + x199 + x201 + x202 + x210 + x214 + x215 + x234 ++ x235 + x236 + x246 + x251 + x252 + x253 + x254 + x255 + x256 + x263 ++ x264 + x265 + x266 + x267 + x268 + x328 + x329 + x330 + x331 + x332 ++ x333 + x340 + x341 + x342 + x343 + x344 + x346 + x348 + x356 + x365 ++ x366 + x405 + x409 + x411 + x413 + x432 + x433 + x434 + x435 + x436 ++ x437 + x451 + x455 + x466 + x474 + x475 + x476 + x478 <= 1 + +x6 + x9 + x10 + x11 + x29 + x34 + x51 + x113 + x129 + x137 ++ x171 + x200 + x266 + x267 + x289 + x291 + x297 + x305 + x348 + x352 ++ x354 + x355 + x378 + x380 + x474 + x475 + x498 <= 1 + +x6 + x9 + x10 + x11 + x12 + x14 + x17 + x19 + x29 + x30 ++ x31 + x32 + x34 + x51 + x113 + x115 + x116 + x117 + x118 + x119 ++ x120 + x129 + x137 + x138 + x182 + x186 + x187 + x200 + x201 + x236 ++ x263 + x266 + x267 + x288 + x289 + x291 + x292 + x297 + x320 + x329 ++ x348 + x351 + x352 + x354 + x355 + x356 + x378 + x435 + x436 + x437 ++ x474 + x475 + x476 + x480 + x483 + x487 + x489 + x498 + x499 <= 1 + +x6 + x9 + x11 + x39 + x58 + x66 + x67 + x68 + x69 + x73 ++ x76 + x77 + x114 + x115 + x117 + x118 + x119 + x120 + x138 + x171 ++ x182 + x187 + x200 + x263 + x266 + x267 + x288 + x289 + x290 + x291 ++ x292 + x293 + x321 + x329 + x348 + x350 + x351 + x352 + x355 + x357 ++ x378 + x379 + x380 + x381 + x382 + x405 + x434 + x460 + x472 + x474 ++ x475 + x480 + x481 + x483 + x484 <= 1 + +x9 + x11 + x58 + x66 + x67 + x68 + x69 + x73 + x76 + x77 ++ x115 + x119 + x120 + x171 + x187 + x200 + x233 + x289 + x290 + x291 ++ x292 + x293 + x348 + x350 + x351 + x352 + x353 + x357 + x378 + x405 ++ x434 + x460 + x474 + x475 + x480 + x484 + x485 <= 1 + +x14 + x47 + x51 + x52 + x64 + x72 + x73 + x74 + x75 + x77 ++ x83 + x112 + x124 + x136 + x139 + x140 + x141 + x143 + x144 + x145 ++ x164 + x165 + x167 + x168 + x169 + x198 + x203 + x212 + x250 + x251 ++ x253 + x255 + x256 + x284 + x298 + x305 + x309 + x310 + x337 + x349 ++ x386 + x388 + x389 + x393 + x394 + x395 + x396 + x397 + x398 + x410 ++ x411 + x412 + x413 + x414 + x415 + x442 + x452 + x457 + x469 + x470 ++ x471 + x474 + x478 + x492 + x494 + x495 + x496 <= 1 + +x14 + x27 + x47 + x48 + x50 + x51 + x52 + x61 + x69 + x72 ++ x73 + x74 + x75 + x77 + x78 + x83 + x110 + x111 + x112 + x116 ++ x117 + x124 + x134 + x136 + x140 + x142 + x143 + x144 + x145 + x154 ++ x156 + x157 + x164 + x165 + x167 + x168 + x169 + x172 + x184 + x185 ++ x193 + x198 + x203 + x229 + x250 + x251 + x253 + x255 + x256 + x261 ++ x272 + x273 + x284 + x287 + x294 + x296 + x298 + x309 + x312 + x315 ++ x349 + x363 + x367 + x384 + x385 + x386 + x387 + x388 + x389 + x393 ++ x394 + x395 + x396 + x397 + x398 + x410 + x411 + x412 + x413 + x414 ++ x415 + x438 + x439 + x441 + x442 + x452 + x469 + x470 + x471 + x474 ++ x475 + x477 + x478 + x479 + x492 + x494 + x495 + x496 + x497 <= 1 + +x7 + x8 + x9 + x10 + x11 + x14 + x48 + x50 + x51 + x69 ++ x74 + x75 + x81 + x83 + x110 + x111 + x112 + x116 + x124 + x133 ++ x136 + x144 + x156 + x164 + x167 + x168 + x169 + x172 + x184 + x185 ++ x192 + x193 + x195 + x198 + x199 + x201 + x203 + x229 + x235 + x251 ++ x253 + x255 + x256 + x257 + x258 + x259 + x260 + x261 + x270 + x272 ++ x273 + x274 + x294 + x295 + x296 + x298 + x299 + x312 + x330 + x345 ++ x346 + x347 + x349 + x384 + x385 + x386 + x387 + x388 + x389 + x393 ++ x394 + x398 + x399 + x400 + x401 + x411 + x431 + x439 + x442 + x452 ++ x457 + x459 + x470 + x471 + x474 + x475 + x476 + x477 + x478 + x479 ++ x493 + x494 + x495 + x496 + x497 <= 1 + +x4 + x6 + x7 + x8 + x9 + x10 + x11 + x55 + x59 + x61 ++ x62 + x63 + x69 + x81 + x83 + x90 + x112 + x133 + x135 + x136 ++ x137 + x138 + x144 + x150 + x167 + x169 + x172 + x182 + x192 + x193 ++ x195 + x198 + x199 + x200 + x201 + x203 + x235 + x251 + x253 + x254 ++ x255 + x256 + x257 + x258 + x259 + x261 + x270 + x273 + x274 + x306 ++ x308 + x312 + x322 + x328 + x330 + x331 + x333 + x340 + x341 + x342 ++ x344 + x345 + x346 + x361 + x362 + x363 + x366 + x367 + x384 + x386 ++ x387 + x389 + x391 + x400 + x431 + x443 + x457 + x459 + x461 + x463 ++ x470 + x474 + x475 + x476 + x477 + x478 <= 1 + +x4 + x6 + x7 + x8 + x9 + x10 + x11 + x12 + x14 + x15 ++ x16 + x17 + x39 + x59 + x60 + x61 + x62 + x63 + x74 + x75 ++ x76 + x84 + x110 + x111 + x112 + x113 + x133 + x134 + x135 + x136 ++ x137 + x138 + x150 + x151 + x165 + x167 + x169 + x182 + x185 + x186 ++ x192 + x193 + x195 + x196 + x198 + x199 + x200 + x201 + x202 + x203 ++ x213 + x215 + x222 + x234 + x235 + x236 + x237 + x248 + x254 + x256 ++ x258 + x259 + x261 + x263 + x264 + x265 + x266 + x267 + x268 + x274 ++ x346 + x348 + x356 + x362 + x364 + x390 + x391 + x412 + x413 + x432 ++ x433 + x434 + x435 + x436 + x437 + x443 + x451 + x452 + x455 + x457 ++ x458 + x459 + x461 + x463 + x464 + x474 + x475 + x476 + x477 + x478 ++ x479 + x496 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 + x12 + x13 + x14 + x15 ++ x16 + x17 + x19 + x22 + x34 + x35 + x39 + x56 + x59 + x60 ++ x62 + x63 + x73 + x74 + x75 + x79 + x97 + x112 + x113 + x115 ++ x116 + x118 + x120 + x129 + x133 + x134 + x135 + x136 + x137 + x138 ++ x165 + x186 + x187 + x192 + x193 + x194 + x195 + x196 + x199 + x200 ++ x201 + x202 + x210 + x233 + x234 + x235 + x236 + x237 + x238 + x246 ++ x258 + x259 + x263 + x264 + x265 + x266 + x267 + x268 + x297 + x299 ++ x329 + x330 + x333 + x341 + x342 + x343 + x346 + x348 + x351 + x352 ++ x354 + x356 + x364 + x366 + x385 + x432 + x433 + x434 + x435 + x436 ++ x437 + x451 + x452 + x466 + x476 + x477 + x495 + x497 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 + x12 + x13 + x14 + x16 ++ x18 + x19 + x22 + x31 + x32 + x34 + x36 + x39 + x58 + x60 ++ x62 + x65 + x66 + x68 + x97 + x112 + x113 + x115 + x116 + x117 ++ x118 + x119 + x120 + x127 + x128 + x129 + x130 + x134 + x135 + x136 ++ x137 + x138 + x165 + x182 + x183 + x186 + x187 + x193 + x194 + x199 ++ x201 + x233 + x234 + x235 + x236 + x237 + x238 + x263 + x266 + x267 ++ x289 + x291 + x297 + x320 + x325 + x329 + x333 + x343 + x348 + x351 ++ x352 + x353 + x354 + x355 + x356 + x357 + x378 + x381 + x383 + x385 ++ x433 + x434 + x435 + x436 + x437 + x474 + x476 + x477 + x483 + x487 ++ x489 + x497 <= 1 + +x12 + x13 + x19 + x22 + x36 + x39 + x58 + x65 + x66 + x67 ++ x68 + x76 + x97 + x102 + x112 + x114 + x115 + x116 + x117 + x118 ++ x119 + x120 + x134 + x135 + x137 + x148 + x149 + x165 + x182 + x183 ++ x187 + x233 + x234 + x235 + x236 + x237 + x238 + x263 + x266 + x267 ++ x286 + x288 + x289 + x290 + x317 + x320 + x321 + x325 + x348 + x350 ++ x351 + x354 + x355 + x357 + x378 + x379 + x382 + x383 + x433 + x434 ++ x460 + x474 + x476 + x477 + x479 + x487 <= 1 + +x9 + x10 + x11 + x13 + x24 + x39 + x58 + x65 + x66 + x67 ++ x68 + x69 + x70 + x76 + x77 + x112 + x114 + x119 + x149 + x183 ++ x200 + x233 + x234 + x235 + x236 + x237 + x238 + x263 + x266 + x267 ++ x288 + x289 + x290 + x291 + x292 + x321 + x348 + x350 + x351 + x355 ++ x357 + x378 + x379 + x381 + x382 + x383 + x388 + x405 + x434 + x460 ++ x461 + x472 + x475 + x476 + x479 + x481 + x483 + x484 + x485 <= 1 + +x9 + x58 + x66 + x67 + x68 + x69 + x102 + x115 + x119 + x183 ++ x200 + x233 + x236 + x263 + x288 + x290 + x291 + x292 + x293 + x350 ++ x352 + x357 + x378 + x379 + x382 + x405 + x426 + x460 + x474 + x475 ++ x479 + x480 + x481 + x483 + x484 + x485 <= 1 + +x8 + x14 + x47 + x48 + x50 + x51 + x52 + x72 + x73 + x74 ++ x75 + x77 + x140 + x141 + x142 + x143 + x145 + x153 + x154 + x156 ++ x164 + x165 + x166 + x167 + x168 + x169 + x184 + x189 + x195 + x198 ++ x202 + x203 + x226 + x257 + x260 + x262 + x283 + x284 + x285 + x287 ++ x294 + x295 + x296 + x297 + x298 + x305 + x308 + x309 + x310 + x313 ++ x315 + x337 + x347 + x349 + x384 + x385 + x386 + x387 + x388 + x389 ++ x393 + x394 + x395 + x396 + x397 + x398 + x406 + x407 + x410 + x411 ++ x412 + x413 + x414 + x415 + x428 + x430 + x431 + x452 + x460 + x469 ++ x470 + x471 + x474 + x475 + x477 + x478 + x479 + x490 + x492 + x493 ++ x494 + x495 + x496 <= 1 + +x7 + x8 + x14 + x47 + x48 + x49 + x50 + x51 + x52 + x72 ++ x73 + x74 + x75 + x77 + x81 + x124 + x140 + x142 + x143 + x144 ++ x145 + x152 + x153 + x154 + x156 + x157 + x164 + x184 + x185 + x195 ++ x198 + x201 + x202 + x203 + x250 + x260 + x276 + x283 + x284 + x287 ++ x294 + x295 + x296 + x297 + x305 + x308 + x309 + x310 + x311 + x312 ++ x315 + x335 + x337 + x340 + x346 + x347 + x349 + x384 + x385 + x386 ++ x387 + x393 + x394 + x395 + x396 + x397 + x398 + x407 + x410 + x411 ++ x412 + x413 + x414 + x415 + x427 + x430 + x431 + x439 + x441 + x442 ++ x452 + x455 + x457 + x459 + x460 + x461 + x469 + x470 + x471 + x474 ++ x475 + x477 + x478 + x479 + x490 + x492 + x493 + x494 + x495 + x496 ++ x497 <= 1 + +x5 + x8 + x11 + x14 + x47 + x48 + x50 + x51 + x52 + x69 ++ x72 + x81 + x110 + x111 + x112 + x138 + x140 + x142 + x143 + x144 ++ x145 + x150 + x152 + x153 + x156 + x157 + x164 + x168 + x169 + x182 ++ x184 + x185 + x192 + x193 + x195 + x196 + x198 + x199 + x200 + x201 ++ x202 + x203 + x251 + x253 + x255 + x257 + x258 + x259 + x260 + x261 ++ x274 + x276 + x283 + x294 + x295 + x296 + x299 + x308 + x322 + x335 ++ x340 + x341 + x345 + x347 + x384 + x385 + x386 + x387 + x389 + x393 ++ x394 + x395 + x396 + x398 + x399 + x400 + x401 + x431 + x436 + x439 ++ x457 + x459 + x461 + x470 + x471 + x474 + x475 + x476 + x477 + x478 ++ x479 + x492 + x493 + x494 + x496 + x497 <= 1 + +x4 + x5 + x7 + x8 + x11 + x35 + x47 + x73 + x74 + x75 ++ x76 + x110 + x133 + x134 + x135 + x136 + x137 + x138 + x150 + x151 ++ x182 + x184 + x185 + x186 + x192 + x193 + x195 + x196 + x198 + x199 ++ x200 + x201 + x202 + x203 + x235 + x251 + x254 + x255 + x256 + x257 ++ x259 + x261 + x263 + x264 + x267 + x268 + x270 + x294 + x295 + x296 ++ x299 + x306 + x308 + x322 + x328 + x340 + x341 + x345 + x346 + x356 ++ x362 + x363 + x364 + x366 + x383 + x384 + x385 + x386 + x387 + x389 ++ x399 + x400 + x401 + x402 + x408 + x436 + x457 + x459 + x461 + x470 ++ x474 + x476 + x477 + x478 + x493 + x494 + x496 + x497 <= 1 + +x0 + x3 + x4 + x5 + x6 + x8 + x12 + x14 + x16 + x17 ++ x35 + x39 + x60 + x62 + x63 + x73 + x74 + x75 + x76 + x94 ++ x110 + x111 + x112 + x120 + x133 + x134 + x135 + x136 + x137 + x138 ++ x146 + x150 + x151 + x165 + x166 + x182 + x184 + x185 + x186 + x192 ++ x193 + x194 + x195 + x196 + x199 + x202 + x222 + x225 + x235 + x248 ++ x254 + x255 + x263 + x264 + x267 + x268 + x340 + x346 + x348 + x356 ++ x364 + x383 + x384 + x386 + x387 + x389 + x390 + x392 + x401 + x402 ++ x403 + x408 + x432 + x435 + x436 + x457 + x459 + x461 + x474 + x475 ++ x476 + x477 + x478 + x479 + x496 <= 1 + +x2 + x6 + x7 + x9 + x10 + x11 + x12 + x13 + x14 + x16 ++ x17 + x19 + x22 + x23 + x35 + x39 + x56 + x59 + x60 + x62 ++ x63 + x73 + x74 + x75 + x110 + x111 + x112 + x116 + x118 + x120 ++ x134 + x135 + x137 + x146 + x150 + x151 + x166 + x182 + x184 + x185 ++ x186 + x192 + x193 + x194 + x195 + x196 + x198 + x199 + x201 + x202 ++ x225 + x237 + x252 + x254 + x263 + x264 + x265 + x266 + x267 + x268 ++ x286 + x299 + x320 + x346 + x348 + x356 + x366 + x378 + x383 + x385 ++ x408 + x432 + x435 + x436 + x437 + x452 + x453 + x456 + x474 + x475 ++ x476 + x477 + x478 + x479 <= 1 + +x7 + x10 + x11 + x12 + x13 + x14 + x15 + x16 + x17 + x18 ++ x19 + x22 + x23 + x31 + x36 + x39 + x42 + x53 + x54 + x56 ++ x58 + x60 + x62 + x63 + x102 + x104 + x127 + x128 + x129 + x130 ++ x131 + x134 + x165 + x166 + x178 + x193 + x194 + x195 + x196 + x198 ++ x199 + x201 + x217 + x225 + x233 + x234 + x235 + x236 + x237 + x252 ++ x263 + x264 + x266 + x267 + x268 + x271 + x316 + x320 + x325 + x329 ++ x343 + x347 + x348 + x349 + x350 + x351 + x352 + x353 + x354 + x355 ++ x356 + x357 + x361 + x378 + x379 + x381 + x382 + x383 + x385 + x386 ++ x433 + x435 + x437 + x448 + x453 + x460 + x478 + x483 + x487 + x497 + <= 1 + +x7 + x10 + x11 + x12 + x13 + x14 + x16 + x17 + x18 + x19 ++ x22 + x36 + x39 + x42 + x53 + x54 + x56 + x58 + x60 + x61 ++ x65 + x66 + x67 + x68 + x69 + x70 + x76 + x102 + x104 + x114 ++ x115 + x119 + x127 + x128 + x129 + x130 + x131 + x134 + x148 + x149 ++ x182 + x183 + x193 + x194 + x197 + x208 + x233 + x234 + x235 + x236 ++ x237 + x238 + x252 + x267 + x271 + x286 + x290 + x317 + x320 + x321 ++ x324 + x325 + x326 + x332 + x347 + x348 + x349 + x350 + x351 + x357 ++ x378 + x379 + x381 + x382 + x383 + x405 + x407 + x410 + x417 + x434 ++ x453 + x455 + x461 + x476 + x477 + x479 + x481 <= 1 + +x7 + x9 + x10 + x12 + x13 + x14 + x16 + x53 + x54 + x56 ++ x58 + x65 + x66 + x67 + x68 + x69 + x70 + x76 + x77 + x102 ++ x104 + x115 + x119 + x127 + x128 + x129 + x130 + x131 + x141 + x146 ++ x148 + x149 + x183 + x193 + x194 + x197 + x205 + x207 + x208 + x217 ++ x233 + x234 + x235 + x236 + x237 + x238 + x290 + x321 + x324 + x332 ++ x348 + x350 + x351 + x375 + x379 + x381 + x382 + x388 + x405 + x417 ++ x418 + x433 + x434 + x450 + x453 + x460 + x461 + x479 + x481 + x485 + <= 1 + +x9 + x10 + x58 + x65 + x66 + x67 + x68 + x69 + x76 + x102 ++ x115 + x127 + x129 + x131 + x148 + x149 + x183 + x197 + x200 + x207 ++ x208 + x233 + x234 + x236 + x237 + x321 + x323 + x324 + x351 + x357 ++ x378 + x382 + x388 + x405 + x433 + x452 + x460 + x461 + x475 + x484 ++ x485 <= 1 + +x8 + x47 + x48 + x50 + x51 + x52 + x72 + x73 + x74 + x75 ++ x77 + x142 + x152 + x153 + x154 + x157 + x164 + x168 + x184 + x203 ++ x275 + x276 + x278 + x282 + x283 + x284 + x285 + x287 + x294 + x296 ++ x297 + x298 + x308 + x309 + x335 + x347 + x349 + x386 + x387 + x388 ++ x393 + x395 + x396 + x397 + x398 + x406 + x407 + x410 + x411 + x412 ++ x413 + x414 + x415 + x427 + x428 + x430 + x431 + x452 + x471 + x474 ++ x475 + x476 + x477 + x478 + x479 + x492 + x497 <= 1 + +x7 + x8 + x14 + x47 + x48 + x49 + x50 + x51 + x52 + x72 ++ x73 + x74 + x75 + x77 + x90 + x138 + x142 + x145 + x152 + x153 ++ x154 + x157 + x164 + x165 + x166 + x168 + x169 + x184 + x185 + x189 ++ x192 + x195 + x198 + x200 + x202 + x203 + x226 + x257 + x260 + x262 ++ x275 + x276 + x283 + x284 + x285 + x287 + x296 + x297 + x305 + x307 ++ x308 + x309 + x310 + x311 + x313 + x314 + x315 + x335 + x336 + x337 ++ x349 + x384 + x388 + x389 + x393 + x394 + x395 + x396 + x397 + x398 ++ x406 + x407 + x409 + x410 + x411 + x412 + x413 + x414 + x415 + x427 ++ x428 + x429 + x430 + x431 + x452 + x455 + x460 + x469 + x471 + x473 ++ x474 + x475 + x477 + x478 + x479 + x492 + x493 + x495 + x496 + x497 + <= 1 + +x8 + x14 + x47 + x48 + x49 + x50 + x51 + x52 + x72 + x73 ++ x74 + x75 + x77 + x138 + x140 + x142 + x157 + x164 + x169 + x182 ++ x184 + x185 + x188 + x189 + x192 + x193 + x195 + x198 + x200 + x201 ++ x202 + x203 + x226 + x257 + x258 + x260 + x261 + x262 + x275 + x276 ++ x287 + x296 + x299 + x308 + x310 + x311 + x313 + x314 + x335 + x337 ++ x340 + x345 + x347 + x349 + x407 + x410 + x411 + x412 + x413 + x414 ++ x415 + x431 + x455 + x460 + x470 + x474 + x475 + x477 + x478 + x479 ++ x492 + x493 + x495 + x496 + x497 <= 1 + +x0 + x3 + x4 + x5 + x7 + x8 + x11 + x12 + x14 + x16 ++ x17 + x36 + x37 + x70 + x94 + x108 + x110 + x112 + x133 + x134 ++ x135 + x136 + x137 + x138 + x146 + x150 + x151 + x182 + x184 + x185 ++ x186 + x188 + x190 + x191 + x192 + x193 + x194 + x195 + x196 + x199 ++ x200 + x201 + x202 + x203 + x222 + x225 + x235 + x252 + x256 + x263 ++ x271 + x294 + x295 + x299 + x345 + x346 + x364 + x366 + x383 + x384 ++ x385 + x386 + x387 + x389 + x392 + x399 + x402 + x403 + x408 + x459 ++ x461 + x470 + x474 + x475 + x476 + x477 + x478 + x479 + x497 <= 1 + +x0 + x1 + x2 + x3 + x5 + x7 + x8 + x11 + x12 + x14 ++ x16 + x17 + x35 + x36 + x37 + x40 + x65 + x70 + x73 + x76 ++ x93 + x94 + x133 + x137 + x138 + x150 + x151 + x166 + x184 + x185 ++ x186 + x190 + x192 + x194 + x195 + x196 + x201 + x202 + x207 + x222 ++ x225 + x235 + x254 + x255 + x264 + x268 + x271 + x294 + x295 + x316 ++ x317 + x345 + x346 + x383 + x384 + x387 + x403 + x408 + x435 + x461 ++ x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x0 + x1 + x2 + x3 + x7 + x12 + x14 + x16 + x17 + x18 ++ x19 + x20 + x22 + x23 + x35 + x36 + x37 + x56 + x60 + x62 ++ x65 + x70 + x73 + x76 + x82 + x110 + x111 + x114 + x116 + x118 ++ x120 + x127 + x130 + x131 + x132 + x135 + x138 + x146 + x150 + x166 ++ x183 + x184 + x185 + x186 + x187 + x192 + x194 + x195 + x196 + x198 ++ x216 + x219 + x235 + x254 + x264 + x265 + x271 + x286 + x316 + x317 ++ x346 + x347 + x348 + x351 + x372 + x380 + x383 + x408 + x435 + x436 ++ x448 + x472 + x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x0 + x1 + x2 + x3 + x6 + x9 + x11 + x12 + x13 + x15 ++ x16 + x17 + x18 + x19 + x20 + x21 + x22 + x23 + x35 + x36 ++ x39 + x42 + x43 + x50 + x53 + x54 + x56 + x60 + x62 + x63 ++ x65 + x66 + x70 + x76 + x87 + x88 + x102 + x104 + x105 + x107 ++ x110 + x113 + x114 + x118 + x127 + x130 + x131 + x132 + x135 + x146 ++ x147 + x148 + x166 + x177 + x178 + x183 + x186 + x187 + x192 + x193 ++ x194 + x195 + x196 + x197 + x198 + x216 + x217 + x233 + x234 + x235 ++ x236 + x237 + x238 + x252 + x254 + x263 + x264 + x266 + x269 + x271 ++ x316 + x317 + x318 + x323 + x326 + x346 + x347 + x348 + x349 + x350 ++ x351 + x353 + x354 + x355 + x379 + x382 + x383 + x386 + x388 + x408 ++ x417 + x429 + x435 + x445 + x448 + x452 + x453 + x454 + x455 + x460 ++ x469 + x476 + x477 + x478 + x479 <= 1 + +x1 + x2 + x9 + x10 + x12 + x13 + x14 + x15 + x16 + x17 ++ x18 + x19 + x22 + x35 + x36 + x43 + x65 + x66 + x67 + x68 ++ x69 + x70 + x76 + x85 + x87 + x88 + x102 + x104 + x105 + x110 ++ x114 + x118 + x127 + x128 + x129 + x130 + x131 + x146 + x148 + x178 ++ x183 + x187 + x193 + x194 + x195 + x196 + x197 + x205 + x207 + x208 ++ x217 + x233 + x234 + x235 + x236 + x237 + x238 + x252 + x271 + x290 ++ x316 + x317 + x318 + x320 + x321 + x323 + x326 + x332 + x346 + x347 ++ x348 + x349 + x350 + x351 + x353 + x357 + x379 + x382 + x383 + x388 ++ x405 + x453 + x455 + x460 + x461 + x469 + x476 + x477 + x479 + x485 + <= 1 + +x12 + x13 + x15 + x16 + x17 + x42 + x58 + x76 + x77 + x119 ++ x127 + x128 + x129 + x130 + x131 + x132 + x141 + x149 + x178 + x180 ++ x183 + x193 + x194 + x196 + x197 + x204 + x205 + x207 + x208 + x233 ++ x234 + x236 + x237 + x238 + x274 + x290 + x347 + x348 + x375 + x378 ++ x379 + x380 + x381 + x382 + x416 + x417 + x418 + x420 + x433 + x434 ++ x450 + x452 + x453 + x454 + x455 + x460 + x461 + x476 + x477 + x478 ++ x479 <= 1 + +x16 + x50 + x58 + x67 + x76 + x106 + x127 + x128 + x129 + x130 ++ x131 + x132 + x148 + x149 + x183 + x197 + x208 + x231 + x234 + x236 ++ x323 + x324 + x346 + x347 + x348 + x351 + x357 + x378 + x379 + x380 ++ x381 + x382 + x388 + x404 + x405 + x416 + x418 + x420 + x433 + x450 ++ x452 + x453 + x455 + x460 + x475 + x476 + x477 + x479 <= 1 + +x72 + x74 + x75 + x77 + x90 + x141 + x142 + x153 + x154 + x164 ++ x166 + x168 + x203 + x269 + x278 + x282 + x283 + x284 + x285 + x287 ++ x309 + x349 + x359 + x387 + x388 + x395 + x396 + x397 + x398 + x406 ++ x410 + x411 + x412 + x414 + x415 + x427 + x428 + x430 + x431 + x460 ++ x474 + x475 + x476 + x477 + x478 + x479 + x492 + x496 + x497 <= 1 + +x7 + x8 + x47 + x48 + x49 + x50 + x51 + x72 + x73 + x74 ++ x77 + x90 + x93 + x109 + x145 + x157 + x162 + x164 + x165 + x166 ++ x168 + x202 + x203 + x226 + x227 + x228 + x230 + x231 + x232 + x243 ++ x244 + x260 + x262 + x265 + x282 + x283 + x284 + x285 + x287 + x305 ++ x307 + x334 + x335 + x337 + x338 + x349 + x385 + x389 + x394 + x396 ++ x398 + x406 + x407 + x409 + x410 + x411 + x412 + x414 + x415 + x428 ++ x429 + x430 + x444 + x452 + x460 + x468 + x469 + x473 + x474 + x475 ++ x477 + x478 + x479 + x492 + x493 + x495 + x496 + x497 <= 1 + +x7 + x8 + x14 + x40 + x47 + x48 + x49 + x72 + x74 + x75 ++ x77 + x152 + x153 + x164 + x173 + x203 + x221 + x226 + x227 + x228 ++ x230 + x231 + x242 + x243 + x262 + x275 + x276 + x284 + x285 + x287 ++ x297 + x305 + x307 + x308 + x311 + x313 + x314 + x334 + x335 + x336 ++ x337 + x338 + x339 + x389 + x404 + x406 + x407 + x409 + x410 + x411 ++ x412 + x413 + x414 + x415 + x428 + x429 + x430 + x444 + x460 + x468 ++ x469 + x473 + x474 + x479 + x492 + x493 + x495 + x496 <= 1 + +x0 + x5 + x7 + x11 + x12 + x16 + x17 + x36 + x37 + x40 ++ x48 + x72 + x73 + x75 + x76 + x93 + x94 + x109 + x110 + x112 ++ x132 + x150 + x151 + x188 + x191 + x192 + x193 + x194 + x196 + x201 ++ x202 + x206 + x222 + x225 + x226 + x242 + x334 + x337 + x339 + x350 ++ x381 + x383 + x384 + x386 + x387 + x402 + x404 + x406 + x408 + x451 ++ x461 + x468 + x472 + x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x12 + x16 + x17 + x18 + x35 + x36 + x37 + x40 + x62 + x76 ++ x86 + x94 + x109 + x110 + x132 + x151 + x166 + x170 + x190 + x202 ++ x225 + x271 + x280 + x337 + x346 + x348 + x350 + x351 + x383 + x403 ++ x404 + x423 + x436 + x453 + x456 + x461 + x472 + x474 + x475 + x476 ++ x478 + x479 <= 1 + +x12 + x15 + x16 + x17 + x18 + x35 + x36 + x37 + x53 + x54 ++ x56 + x60 + x62 + x65 + x86 + x105 + x109 + x110 + x111 + x114 ++ x116 + x118 + x128 + x132 + x166 + x169 + x183 + x184 + x185 + x187 ++ x194 + x198 + x216 + x219 + x234 + x237 + x238 + x254 + x264 + x286 ++ x323 + x326 + x346 + x347 + x348 + x349 + x350 + x351 + x372 + x379 ++ x381 + x383 + x408 + x435 + x436 + x453 + x472 + x474 + x476 + x478 ++ x479 + x486 + x487 <= 1 + +x1 + x2 + x3 + x9 + x12 + x15 + x16 + x17 + x18 + x19 ++ x20 + x21 + x22 + x23 + x35 + x36 + x39 + x53 + x54 + x56 ++ x60 + x62 + x65 + x70 + x85 + x86 + x87 + x102 + x103 + x104 ++ x105 + x110 + x113 + x114 + x118 + x128 + x131 + x132 + x135 + x146 ++ x147 + x148 + x166 + x183 + x185 + x198 + x233 + x234 + x235 + x236 ++ x237 + x238 + x252 + x264 + x266 + x271 + x323 + x324 + x326 + x346 ++ x347 + x348 + x349 + x350 + x351 + x353 + x379 + x380 + x383 + x386 ++ x388 + x408 + x429 + x436 + x448 + x452 + x453 + x454 + x455 + x456 ++ x472 + x475 + x476 + x477 + x479 + x487 <= 1 + +x1 + x6 + x7 + x9 + x10 + x12 + x13 + x14 + x15 + x16 ++ x17 + x18 + x19 + x20 + x21 + x22 + x23 + x35 + x36 + x42 ++ x43 + x50 + x53 + x54 + x56 + x66 + x67 + x68 + x69 + x70 ++ x76 + x85 + x88 + x99 + x102 + x103 + x104 + x105 + x107 + x110 ++ x114 + x127 + x128 + x129 + x130 + x131 + x132 + x135 + x166 + x177 ++ x178 + x181 + x183 + x185 + x187 + x193 + x194 + x195 + x196 + x197 ++ x204 + x205 + x207 + x208 + x217 + x228 + x233 + x234 + x236 + x237 ++ x238 + x269 + x271 + x303 + x316 + x317 + x318 + x319 + x323 + x324 ++ x326 + x346 + x347 + x348 + x349 + x350 + x351 + x353 + x354 + x365 ++ x380 + x382 + x383 + x386 + x388 + x405 + x408 + x429 + x445 + x446 ++ x449 + x452 + x453 + x454 + x455 + x456 + x457 + x458 + x460 + x461 ++ x469 + x472 + x476 + x477 + x478 + x479 + x487 + x490 <= 1 + +x6 + x7 + x12 + x13 + x15 + x16 + x17 + x18 + x19 + x20 ++ x21 + x22 + x23 + x42 + x43 + x50 + x57 + x58 + x69 + x102 ++ x104 + x106 + x107 + x110 + x114 + x119 + x127 + x128 + x130 + x131 ++ x132 + x148 + x149 + x176 + x177 + x178 + x180 + x181 + x183 + x194 ++ x195 + x196 + x197 + x204 + x205 + x207 + x208 + x228 + x233 + x234 ++ x236 + x237 + x238 + x269 + x303 + x304 + x316 + x318 + x319 + x322 ++ x323 + x324 + x325 + x326 + x346 + x347 + x348 + x350 + x351 + x365 ++ x374 + x375 + x379 + x380 + x381 + x385 + x388 + x389 + x405 + x416 ++ x420 + x433 + x445 + x446 + x449 + x450 + x451 + x452 + x453 + x454 ++ x455 + x456 + x460 + x475 + x476 + x477 + x478 + x479 <= 1 + +x12 + x13 + x15 + x16 + x50 + x57 + x58 + x102 + x103 + x104 ++ x105 + x106 + x114 + x147 + x148 + x149 + x176 + x178 + x180 + x183 ++ x194 + x196 + x197 + x205 + x207 + x208 + x233 + x234 + x236 + x237 ++ x238 + x300 + x304 + x319 + x323 + x324 + x326 + x346 + x347 + x348 ++ x350 + x351 + x365 + x368 + x378 + x379 + x380 + x381 + x382 + x388 ++ x404 + x405 + x416 + x419 + x433 + x446 + x449 + x450 + x451 + x452 ++ x453 + x454 + x455 + x457 + x460 + x461 + x475 + x477 + x478 + x479 + <= 1 + +x72 + x74 + x77 + x89 + x90 + x92 + x93 + x100 + x141 + x142 ++ x153 + x166 + x175 + x203 + x236 + x265 + x269 + x275 + x278 + x282 ++ x283 + x284 + x285 + x286 + x287 + x349 + x395 + x396 + x406 + x412 ++ x414 + x415 + x426 + x427 + x428 + x429 + x431 + x453 + x475 + x476 ++ x477 + x479 + x492 <= 1 + +x48 + x49 + x51 + x52 + x64 + x72 + x74 + x77 + x89 + x90 ++ x91 + x92 + x93 + x109 + x111 + x158 + x162 + x164 + x166 + x227 ++ x228 + x230 + x231 + x232 + x239 + x243 + x244 + x262 + x265 + x268 ++ x279 + x280 + x282 + x285 + x286 + x307 + x334 + x335 + x337 + x338 ++ x339 + x350 + x385 + x398 + x404 + x406 + x407 + x410 + x414 + x415 ++ x424 + x428 + x430 + x468 + x473 + x474 + x477 + x478 + x479 + x492 ++ x493 <= 1 + +x7 + x40 + x48 + x49 + x52 + x72 + x74 + x75 + x76 + x77 ++ x89 + x91 + x92 + x93 + x94 + x100 + x109 + x111 + x126 + x152 ++ x162 + x164 + x166 + x170 + x173 + x174 + x175 + x203 + x221 + x222 ++ x225 + x226 + x228 + x230 + x231 + x232 + x239 + x241 + x242 + x243 ++ x244 + x275 + x276 + x277 + x278 + x279 + x280 + x282 + x285 + x286 ++ x287 + x307 + x310 + x314 + x334 + x336 + x337 + x338 + x339 + x385 ++ x404 + x406 + x407 + x408 + x409 + x415 + x424 + x426 + x428 + x429 ++ x430 + x454 + x460 + x468 + x473 + x474 + x476 + x477 + x478 + x479 ++ x492 <= 1 + +x17 + x37 + x40 + x72 + x75 + x76 + x92 + x93 + x94 + x126 ++ x150 + x170 + x175 + x187 + x191 + x221 + x222 + x225 + x226 + x228 ++ x229 + x232 + x239 + x241 + x242 + x244 + x277 + x279 + x282 + x287 ++ x307 + x334 + x337 + x339 + x384 + x404 + x406 + x407 + x408 + x409 ++ x423 + x424 + x426 + x429 + x451 + x459 + x468 + x474 + x475 + x476 ++ x477 + x478 + x479 + x480 <= 1 + +x12 + x17 + x18 + x37 + x40 + x45 + x72 + x76 + x109 + x163 ++ x170 + x220 + x221 + x222 + x224 + x225 + x229 + x232 + x334 + x337 ++ x339 + x347 + x383 + x384 + x404 + x406 + x407 + x408 + x409 + x423 ++ x436 + x456 + x459 + x461 + x472 + x474 + x476 + x478 + x479 <= 1 + +x12 + x15 + x17 + x37 + x54 + x56 + x65 + x73 + x105 + x106 ++ x109 + x132 + x185 + x187 + x216 + x218 + x219 + x220 + x233 + x234 ++ x237 + x238 + x254 + x264 + x346 + x347 + x348 + x349 + x350 + x351 ++ x372 + x373 + x381 + x404 + x409 + x468 + x472 + x479 + x482 + x486 + <= 1 + +x12 + x13 + x15 + x16 + x17 + x18 + x19 + x20 + x22 + x53 ++ x54 + x56 + x67 + x68 + x70 + x76 + x97 + x99 + x102 + x103 ++ x104 + x107 + x110 + x113 + x114 + x118 + x133 + x146 + x147 + x166 ++ x233 + x237 + x238 + x249 + x271 + x326 + x347 + x350 + x351 + x376 ++ x379 + x386 + x452 + x453 + x454 + x455 + x456 + x458 + x472 + x475 ++ x476 + x477 + x479 + x487 + x488 + x490 + x491 <= 1 + +x10 + x12 + x13 + x15 + x16 + x17 + x18 + x19 + x20 + x21 ++ x22 + x38 + x41 + x43 + x53 + x56 + x66 + x67 + x68 + x70 ++ x76 + x96 + x99 + x102 + x103 + x105 + x107 + x110 + x114 + x117 ++ x130 + x133 + x147 + x149 + x179 + x183 + x195 + x196 + x197 + x204 ++ x226 + x233 + x236 + x237 + x238 + x245 + x248 + x249 + x271 + x277 ++ x279 + x302 + x324 + x325 + x346 + x347 + x348 + x349 + x350 + x351 ++ x365 + x374 + x376 + x377 + x379 + x380 + x382 + x386 + x445 + x447 ++ x449 + x451 + x452 + x453 + x454 + x455 + x456 + x457 + x458 + x475 ++ x476 + x477 + x478 + x479 + x487 + x488 + x489 + x490 <= 1 + +x6 + x10 + x12 + x13 + x14 + x15 + x16 + x17 + x18 + x20 ++ x21 + x23 + x30 + x33 + x38 + x41 + x42 + x57 + x99 + x102 ++ x103 + x104 + x105 + x106 + x107 + x110 + x114 + x117 + x128 + x147 ++ x148 + x149 + x176 + x177 + x178 + x179 + x180 + x181 + x194 + x195 ++ x197 + x204 + x205 + x206 + x207 + x208 + x228 + x233 + x236 + x247 ++ x248 + x249 + x279 + x300 + x302 + x303 + x304 + x318 + x319 + x322 ++ x323 + x324 + x325 + x326 + x327 + x346 + x347 + x348 + x349 + x350 ++ x351 + x365 + x369 + x374 + x377 + x379 + x380 + x381 + x382 + x419 ++ x420 + x422 + x447 + x450 + x451 + x452 + x453 + x455 + x456 + x457 ++ x458 + x475 + x477 + x478 + x479 + x487 + x488 + x489 + x490 <= 1 + +x16 + x20 + x21 + x23 + x30 + x50 + x55 + x57 + x71 + x102 ++ x103 + x104 + x105 + x106 + x107 + x114 + x117 + x147 + x176 + x177 ++ x178 + x179 + x180 + x181 + x192 + x197 + x204 + x205 + x206 + x207 ++ x208 + x228 + x233 + x234 + x235 + x236 + x237 + x238 + x249 + x300 ++ x301 + x302 + x303 + x304 + x318 + x322 + x323 + x324 + x325 + x326 ++ x327 + x346 + x347 + x348 + x350 + x351 + x365 + x368 + x369 + x377 ++ x379 + x380 + x381 + x382 + x405 + x419 + x446 + x450 + x451 + x452 ++ x453 + x454 + x455 + x456 + x457 + x458 + x460 + x461 + x475 + x477 ++ x478 + x479 <= 1 + +x72 + x74 + x77 + x89 + x90 + x92 + x93 + x94 + x121 + x123 ++ x125 + x126 + x166 + x175 + x184 + x221 + x231 + x265 + x269 + x275 ++ x276 + x278 + x279 + x280 + x282 + x283 + x284 + x285 + x286 + x287 ++ x307 + x336 + x338 + x349 + x395 + x396 + x404 + x406 + x414 + x426 ++ x427 + x428 + x429 + x430 + x431 + x453 + x477 + x479 <= 1 + +x64 + x72 + x74 + x77 + x89 + x90 + x92 + x93 + x94 + x109 ++ x121 + x123 + x125 + x126 + x158 + x159 + x161 + x163 + x166 + x170 ++ x174 + x175 + x196 + x197 + x221 + x223 + x224 + x227 + x229 + x230 ++ x231 + x232 + x243 + x244 + x262 + x265 + x268 + x269 + x275 + x276 ++ x278 + x279 + x280 + x282 + x283 + x284 + x285 + x286 + x287 + x307 ++ x334 + x335 + x336 + x338 + x339 + x349 + x350 + x396 + x404 + x406 ++ x409 + x426 + x427 + x428 + x429 + x430 + x431 + x473 + x474 + x477 ++ x478 + x479 <= 1 + +x13 + x40 + x49 + x64 + x72 + x89 + x93 + x100 + x101 + x109 ++ x111 + x121 + x123 + x125 + x126 + x155 + x160 + x162 + x164 + x170 ++ x172 + x173 + x174 + x175 + x187 + x197 + x221 + x222 + x223 + x224 ++ x225 + x226 + x227 + x229 + x230 + x232 + x275 + x276 + x277 + x278 ++ x279 + x280 + x282 + x286 + x287 + x310 + x324 + x334 + x336 + x338 ++ x339 + x349 + x350 + x385 + x404 + x406 + x407 + x408 + x409 + x421 ++ x423 + x424 + x425 + x426 + x427 + x428 + x429 + x430 + x468 + x473 ++ x474 + x476 + x477 + x478 + x479 <= 1 + +x13 + x15 + x37 + x40 + x64 + x89 + x92 + x93 + x94 + x100 ++ x101 + x106 + x109 + x125 + x151 + x155 + x187 + x221 + x222 + x223 ++ x224 + x225 + x226 + x227 + x229 + x230 + x232 + x235 + x239 + x240 ++ x241 + x242 + x264 + x275 + x277 + x278 + x280 + x282 + x283 + x286 ++ x287 + x334 + x336 + x338 + x339 + x347 + x349 + x350 + x385 + x404 ++ x421 + x423 + x424 + x425 + x426 + x427 + x428 + x429 + x430 + x451 ++ x456 + x459 + x474 + x476 + x477 + x478 + x479 <= 1 + +x12 + x15 + x17 + x39 + x40 + x45 + x89 + x91 + x92 + x94 ++ x96 + x100 + x101 + x106 + x109 + x114 + x151 + x218 + x219 + x220 ++ x222 + x224 + x226 + x230 + x232 + x233 + x236 + x237 + x238 + x240 ++ x264 + x275 + x339 + x347 + x349 + x350 + x373 + x381 + x404 + x407 ++ x408 + x409 + x425 + x450 + x456 + x459 + x461 + x472 + x474 <= 1 + +x6 + x7 + x15 + x21 + x22 + x45 + x54 + x57 + x65 + x73 ++ x94 + x96 + x98 + x100 + x101 + x103 + x106 + x107 + x109 + x113 ++ x114 + x132 + x216 + x218 + x219 + x220 + x222 + x224 + x233 + x236 ++ x237 + x238 + x264 + x347 + x348 + x349 + x350 + x351 + x353 + x373 ++ x381 + x404 + x409 + x454 + x456 + x458 + x459 + x461 + x472 + x486 ++ x491 <= 1 + +x6 + x12 + x15 + x16 + x17 + x21 + x22 + x23 + x41 + x44 ++ x53 + x54 + x55 + x56 + x73 + x96 + x97 + x99 + x103 + x104 ++ x105 + x113 + x114 + x122 + x146 + x147 + x166 + x204 + x224 + x233 ++ x235 + x237 + x238 + x277 + x279 + x347 + x348 + x349 + x350 + x351 ++ x409 + x450 + x454 + x455 + x456 + x458 + x461 + x472 + x475 + x476 ++ x477 + x479 + x491 <= 1 + +x6 + x12 + x13 + x14 + x15 + x16 + x17 + x20 + x21 + x23 ++ x37 + x38 + x41 + x43 + x44 + x46 + x48 + x53 + x54 + x55 ++ x56 + x57 + x70 + x73 + x96 + x97 + x99 + x103 + x104 + x105 ++ x106 + x110 + x113 + x121 + x122 + x146 + x147 + x168 + x171 + x176 ++ x177 + x179 + x180 + x194 + x195 + x197 + x204 + x206 + x209 + x224 ++ x226 + x228 + x233 + x234 + x235 + x236 + x237 + x238 + x245 + x247 ++ x250 + x277 + x279 + x319 + x327 + x346 + x347 + x348 + x349 + x350 ++ x351 + x376 + x380 + x418 + x447 + x450 + x451 + x452 + x453 + x454 ++ x455 + x456 + x457 + x458 + x460 + x472 + x475 + x476 + x477 + x478 ++ x479 + x486 + x488 + x489 + x490 <= 1 + +x6 + x10 + x12 + x13 + x14 + x15 + x16 + x17 + x18 + x20 ++ x21 + x23 + x33 + x38 + x48 + x55 + x57 + x73 + x91 + x97 ++ x99 + x103 + x104 + x105 + x106 + x107 + x113 + x114 + x147 + x176 ++ x177 + x179 + x180 + x181 + x194 + x197 + x204 + x205 + x206 + x207 ++ x208 + x209 + x228 + x233 + x234 + x235 + x236 + x237 + x238 + x245 ++ x247 + x248 + x279 + x319 + x322 + x323 + x325 + x326 + x327 + x346 ++ x347 + x348 + x349 + x350 + x351 + x380 + x422 + x447 + x450 + x451 ++ x452 + x453 + x454 + x455 + x456 + x457 + x458 + x460 + x474 + x475 ++ x477 + x478 + x479 + x482 + x487 + x488 + x489 + x490 + x491 <= 1 + +x12 + x15 + x18 + x20 + x21 + x23 + x30 + x38 + x55 + x57 ++ x103 + x104 + x106 + x107 + x114 + x147 + x176 + x177 + x179 + x180 ++ x181 + x194 + x197 + x199 + x205 + x228 + x233 + x235 + x236 + x237 ++ x238 + x247 + x249 + x300 + x301 + x302 + x318 + x322 + x323 + x324 ++ x325 + x326 + x327 + x346 + x347 + x348 + x350 + x351 + x380 + x382 ++ x405 + x419 + x422 + x450 + x451 + x452 + x453 + x454 + x455 + x456 ++ x457 + x458 + x460 + x475 + x477 + x478 + x479 + x487 + x488 <= 1 + +x49 + x64 + x72 + x75 + x76 + x77 + x89 + x109 + x163 + x174 ++ x221 + x223 + x227 + x229 + x231 + x232 + x276 + x277 + x278 + x280 ++ x282 + x283 + x285 + x286 + x334 + x335 + x338 + x350 + x406 + x407 ++ x409 + x426 + x451 + x459 + x473 + x476 <= 1 + +x8 + x40 + x49 + x64 + x77 + x89 + x92 + x94 + x109 + x155 ++ x158 + x159 + x160 + x161 + x163 + x166 + x170 + x172 + x173 + x174 ++ x175 + x196 + x221 + x223 + x224 + x227 + x229 + x231 + x232 + x238 ++ x265 + x276 + x277 + x278 + x279 + x280 + x282 + x283 + x285 + x286 ++ x293 + x307 + x334 + x335 + x336 + x338 + x339 + x349 + x350 + x385 ++ x406 + x407 + x409 + x421 + x425 + x426 + x427 + x451 + x459 + x468 ++ x473 + x474 + x476 + x477 + x478 + x479 <= 1 + +x13 + x15 + x40 + x49 + x64 + x72 + x89 + x92 + x94 + x103 ++ x106 + x109 + x111 + x123 + x125 + x155 + x158 + x159 + x160 + x161 ++ x162 + x170 + x172 + x173 + x174 + x175 + x196 + x197 + x221 + x223 ++ x224 + x227 + x229 + x230 + x231 + x232 + x238 + x239 + x240 + x241 ++ x275 + x276 + x277 + x278 + x279 + x280 + x282 + x283 + x285 + x286 ++ x334 + x336 + x338 + x339 + x347 + x349 + x385 + x404 + x406 + x407 ++ x408 + x409 + x421 + x425 + x426 + x427 + x428 + x429 + x430 + x451 ++ x459 + x468 + x473 + x474 + x476 + x477 + x478 + x479 <= 1 + +x13 + x14 + x49 + x89 + x92 + x109 + x111 + x123 + x155 + x158 ++ x159 + x160 + x167 + x170 + x172 + x173 + x174 + x197 + x224 + x225 ++ x226 + x230 + x240 + x241 + x264 + x275 + x276 + x277 + x278 + x280 ++ x336 + x338 + x349 + x385 + x404 + x407 + x409 + x426 + x427 + x428 ++ x429 + x430 + x456 + x468 + x473 + x476 + x477 + x478 + x479 <= 1 + +x12 + x15 + x38 + x40 + x45 + x91 + x96 + x98 + x100 + x101 ++ x106 + x107 + x109 + x113 + x114 + x151 + x209 + x218 + x220 + x233 ++ x237 + x238 + x347 + x349 + x350 + x351 + x450 + x454 + x456 + x458 ++ x459 + x461 + x475 + x476 + x477 + x486 <= 1 + +x6 + x7 + x35 + x37 + x38 + x44 + x45 + x46 + x53 + x54 ++ x57 + x73 + x91 + x96 + x98 + x100 + x101 + x103 + x105 + x107 ++ x109 + x113 + x197 + x209 + x222 + x224 + x233 + x264 + x268 + x277 ++ x327 + x336 + x347 + x351 + x381 + x404 + x450 + x454 + x456 + x458 ++ x459 + x461 + x475 + x476 + x477 + x479 + x486 + x489 + x491 + x493 + <= 1 + +x16 + x17 + x20 + x21 + x23 + x37 + x38 + x41 + x43 + x44 ++ x46 + x53 + x54 + x57 + x73 + x91 + x105 + x106 + x110 + x113 ++ x122 + x180 + x197 + x206 + x209 + x234 + x245 + x247 + x277 + x322 ++ x327 + x346 + x347 + x349 + x351 + x370 + x380 + x381 + x408 + x450 ++ x453 + x454 + x455 + x456 + x457 + x458 + x461 + x475 + x476 + x477 ++ x478 + x479 + x486 + x489 + x490 + x491 + x493 <= 1 + +x13 + x15 + x16 + x17 + x20 + x21 + x23 + x37 + x38 + x46 ++ x53 + x54 + x57 + x70 + x73 + x91 + x103 + x105 + x106 + x168 ++ x197 + x200 + x204 + x206 + x209 + x233 + x234 + x235 + x236 + x237 ++ x238 + x250 + x277 + x319 + x322 + x327 + x346 + x347 + x348 + x349 ++ x350 + x351 + x370 + x371 + x408 + x450 + x453 + x454 + x456 + x457 ++ x458 + x474 + x475 + x476 + x477 + x479 + x482 + x486 + x488 + x489 ++ x490 + x491 <= 1 + +x13 + x14 + x15 + x16 + x17 + x20 + x21 + x23 + x38 + x53 ++ x55 + x57 + x73 + x91 + x93 + x97 + x99 + x107 + x114 + x176 ++ x179 + x181 + x200 + x204 + x205 + x206 + x207 + x209 + x233 + x234 ++ x235 + x236 + x237 + x238 + x279 + x322 + x325 + x327 + x336 + x346 ++ x347 + x348 + x349 + x350 + x351 + x450 + x452 + x453 + x454 + x456 ++ x457 + x458 + x474 + x475 + x476 + x482 + x488 + x489 + x491 <= 1 + +x13 + x14 + x15 + x16 + x20 + x21 + x55 + x107 + x205 + x206 ++ x209 + x233 + x234 + x235 + x237 + x238 + x322 + x346 + x347 + x348 ++ x349 + x350 + x351 + x450 + x474 + x475 + x480 + x482 + x488 <= 1 + +x6 + x49 + x72 + x75 + x76 + x109 + x161 + x163 + x168 + x172 ++ x174 + x221 + x224 + x227 + x231 + x265 + x278 + x282 + x283 + x285 ++ x350 + x406 + x407 + x409 + x422 + x426 + x473 <= 1 + +x40 + x72 + x76 + x77 + x89 + x92 + x109 + x161 + x172 + x173 ++ x174 + x175 + x221 + x223 + x224 + x227 + x229 + x231 + x238 + x265 ++ x278 + x282 + x283 + x285 + x286 + x293 + x335 + x339 + x349 + x350 ++ x385 + x406 + x407 + x409 + x421 + x422 + x426 + x427 + x451 + x468 ++ x473 + x476 + x478 + x479 <= 1 + +x72 + x76 + x89 + x92 + x221 + x223 + x227 + x238 + x282 + x283 ++ x285 + x286 + x335 + x349 + x350 + x426 + x427 + x478 <= 1 + +x13 + x14 + x49 + x92 + x111 + x155 + x159 + x160 + x167 + x173 ++ x174 + x225 + x230 + x240 + x275 + x280 + x427 + x456 + x458 + x459 ++ x473 + x478 <= 1 + +x13 + x17 + x38 + x49 + x113 + x152 + x155 + x167 + x173 + x187 ++ x230 + x268 + x280 + x295 + x347 + x351 + x454 + x456 + x458 + x459 ++ x473 + x486 <= 1 + +x13 + x17 + x35 + x38 + x41 + x45 + x46 + x91 + x98 + x101 ++ x103 + x107 + x109 + x113 + x122 + x152 + x155 + x167 + x173 + x209 ++ x268 + x280 + x295 + x328 + x336 + x342 + x347 + x351 + x404 + x454 ++ x456 + x458 + x459 + x461 + x475 + x476 + x477 + x479 + x486 + x491 ++ x493 <= 1 + +x13 + x15 + x16 + x17 + x38 + x41 + x44 + x45 + x46 + x54 ++ x57 + x91 + x98 + x101 + x122 + x209 + x327 + x328 + x342 + x346 ++ x347 + x351 + x450 + x454 + x456 + x458 + x461 + x475 + x489 + x490 ++ x491 + x493 <= 1 + +x13 + x15 + x17 + x39 + x44 + x46 + x57 + x91 + x98 + x168 ++ x206 + x209 + x233 + x234 + x235 + x236 + x237 + x325 + x327 + x342 ++ x346 + x347 + x348 + x349 + x350 + x351 + x371 + x408 + x450 + x454 ++ x458 + x476 + x486 + x488 + x489 + x490 + x491 <= 1 + +x13 + x38 + x44 + x55 + x57 + x91 + x93 + x114 + x179 + x181 ++ x209 + x234 + x235 + x237 + x238 + x322 + x325 + x327 + x346 + x347 ++ x348 + x351 + x410 + x413 + x454 + x475 + x476 + x482 + x488 <= 1 + +x13 + x15 + x16 + x17 + x21 + x23 + x53 + x55 + x57 + x91 ++ x93 + x121 + x124 + x176 + x179 + x181 + x204 + x206 + x234 + x235 ++ x237 + x238 + x327 + x346 + x347 + x348 + x349 + x350 + x351 + x410 ++ x453 + x454 + x456 + x458 + x474 + x475 + x476 + x486 + x488 + x491 + <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 + x22 + x23 <= 1 + +x25 + x26 + x27 + x28 <= 1 + +x29 + x30 + x31 + x32 + x33 + x34 <= 1 + +x35 + x36 + x37 + x38 + x39 + x40 <= 1 + +x41 + x42 + x43 + x44 + x45 + x46 <= 1 + +x47 + x48 + x49 + x50 + x51 + x52 <= 1 + +x53 + x54 + x55 + x56 + x57 + x58 <= 1 + +x59 + x60 + x61 + x62 + x63 + x64 <= 1 + +x65 + x66 + x67 + x68 + x69 + x70 <= 1 + +x72 + x73 + x74 + x75 + x76 + x77 <= 1 + +x78 + x79 + x80 + x81 + x82 + x83 <= 1 + +x85 + x86 + x87 + x88 <= 1 + +x89 + x90 + x91 + x92 + x93 + x94 <= 1 + +x96 + x97 + x98 + x99 + x100 + x101 <= 1 + +x102 + x103 + x104 + x105 + x106 + x107 <= 1 + +x109 + x110 + x111 + x112 + x113 + x114 <= 1 + +x115 + x116 + x117 + x118 + x119 + x120 <= 1 + +x121 + x122 + x123 + x124 + x125 + x126 <= 1 + +x127 + x128 + x129 + x130 + x131 + x132 <= 1 + +x133 + x134 + x135 + x136 + x137 + x138 <= 1 + +x140 + x141 + x142 + x143 + x144 + x145 <= 1 + +x146 + x147 + x148 + x149 + x150 + x151 <= 1 + +x152 + x153 + x154 + x155 + x156 + x157 <= 1 + +x158 + x159 + x160 + x161 + x162 + x163 <= 1 + +x164 + x165 + x166 + x167 + x168 + x169 <= 1 + +x170 + x171 + x172 + x173 + x174 + x175 <= 1 + +x176 + x177 + x178 + x179 + x180 + x181 <= 1 + +x182 + x183 + x184 + x185 + x186 + x187 <= 1 + +x188 + x189 + x190 + x191 <= 1 + +x192 + x193 + x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 <= 1 + +x221 + x222 + x223 + x224 + x225 + x226 <= 1 + +x227 + x228 + x229 + x230 + x231 + x232 <= 1 + +x233 + x234 + x235 + x236 + x237 + x238 <= 1 + +x239 + x240 + x241 + x242 + x243 + x244 <= 1 + +x245 + x246 + x247 + x248 + x249 + x250 <= 1 + +x251 + x252 + x253 + x254 + x255 + x256 <= 1 + +x257 + x258 + x259 + x260 + x261 + x262 <= 1 + +x263 + x264 + x265 + x266 + x267 + x268 <= 1 + +x269 + x270 + x271 + x272 + x273 + x274 <= 1 + +x275 + x276 + x277 + x278 + x279 + x280 <= 1 + +x282 + x283 + x284 + x285 + x286 + x287 <= 1 + +x288 + x289 + x290 + x291 + x292 + x293 <= 1 + +x294 + x295 + x296 + x297 + x298 + x299 <= 1 + +x300 + x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 + x310 <= 1 + +x311 + x312 + x313 + x314 + x315 <= 1 + +x316 + x317 + x318 + x319 + x320 + x321 <= 1 + +x322 + x323 + x324 + x325 + x326 + x327 <= 1 + +x328 + x329 + x330 + x331 + x332 + x333 <= 1 + +x334 + x335 + x336 + x337 + x338 + x339 <= 1 + +x340 + x341 + x342 + x343 + x344 + x345 <= 1 + +x346 + x347 + x348 + x349 + x350 + x351 <= 1 + +x352 + x353 + x354 + x355 + x356 + x357 <= 1 + +x358 + x359 + x360 + x361 <= 1 + +x362 + x363 + x364 + x365 + x366 + x367 <= 1 + +x368 + x369 <= 1 + +x370 + x371 <= 1 + +x372 + x373 <= 1 + +x374 + x375 + x376 + x377 <= 1 + +x378 + x379 + x380 + x381 + x382 + x383 <= 1 + +x384 + x385 + x386 + x387 + x388 + x389 <= 1 + +x390 + x391 + x392 <= 1 + +x393 + x394 + x395 + x396 + x397 + x398 <= 1 + +x399 + x400 + x401 + x402 + x403 <= 1 + +x404 + x405 + x406 + x407 + x408 + x409 <= 1 + +x410 + x411 + x412 + x413 + x414 + x415 <= 1 + +x416 + x417 + x418 + x419 + x420 <= 1 + +x421 + x422 + x423 + x424 + x425 <= 1 + +x426 + x427 + x428 + x429 + x430 + x431 <= 1 + +x432 + x433 + x434 + x435 + x436 + x437 <= 1 + +x438 + x439 + x440 + x441 + x442 + x443 <= 1 + +x445 + x446 + x447 + x448 + x449 <= 1 + +x450 + x451 + x452 + x453 + x454 + x455 <= 1 + +x456 + x457 + x458 + x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x492 + x493 + x494 + x495 + x496 + x497 <= 1 + +x498 + x499 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 + + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0002.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0002.lp new file mode 100755 index 000000000..904f806f5 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0002.lp @@ -0,0 +1,1029 @@ +max + +520.642x0 + 615.951x1 + 611.302x2 + 470.058x3 + 447.766x4 + 436.72x5 + 1211.33x6 + 1327.87x7 + 1320.77x8 + 1286.1x9 + +1243.68x10 + 1233.5x11 + 292.789x12 + 298.75x13 + 245.244x14 + 235.23x15 + 199.1x16 + 767.323x17 + 818.674x18 + 790.697x19 + +768.06x20 + 751.378x21 + 700.682x22 + 868.025x23 + 1108.8x24 + 1057.9x25 + 1040.14x26 + 1000.77x27 + 984.901x28 + 553.021x29 + +577.738x30 + 505.656x31 + 496.48x32 + 481.063x33 + 461.201x34 + 774.601x35 + 1068.67x36 + 1060.76x37 + 996.801x38 + 990.197x39 + +960.298x40 + 1038.37x41 + 1453.83x42 + 1448.25x43 + 1358.8x44 + 1323.57x45 + 1263.03x46 + 161.518x47 + 242.143x48 + 241.653x49 + +230.915x50 + 1090.54x51 + 1573.57x52 + 1511.94x53 + 1469.2x54 + 1386.03x55 + 1380.85x56 + 763.704x57 + 1026.18x58 + 947.28x59 + +895.66x60 + 864.27x61 + 830.977x62 + 363.835x63 + 352.276x64 + 323.838x65 + 250.041x66 + 1063.25x67 + 1309.14x68 + 1262.28x69 + +1244.22x70 + 1170.38x71 + 1168.59x72 + 868.546x73 + 1072.57x74 + 974.811x75 + 948.313x76 + 942.198x77 + 926.191x78 + 126.739x79 + +180.89x80 + 134.241x81 + 302.966x82 + 352.378x83 + 331.849x84 + 323.595x85 + 286.029x86 + 159.673x87 + 181.512x88 + 214.227x89 + +166.377x90 + 162.321x91 + 295.862x92 + 325.521x93 + 321.388x94 + 295.21x95 + 186.958x96 + 224.053x97 + 160.468x98 + 489.146x99 + +593.622x100 + 529.741x101 + 524.638x102 + 434.425x103 + 388.389x104 + 62.9492x105 + 2868.06x106 + 3208.35x107 + 3170.16x108 + 3162.19x109 + +3153.47x110 + 3140.38x111 + 363.307x112 + 475.19x113 + 458.409x114 + 438.319x115 + 394.699x116 + 344.599x117 + 230.314x118 + 172.698x119 + +167.242x120 + 446.705x121 + 579.424x122 + 539.747x123 + 489.335x124 + 443.328x125 + 411.274x126 + 1179.6x127 + 1335.47x128 + 1322.36x129 + +1271.99x130 + 1271.8x131 + 1227.21x132 + 110.884x133 + 1040.65x134 + 1200.87x135 + 1157.59x136 + 1139.01x137 + 1134.21x138 + 1078.94x139 + +349.481x140 + 426.687x141 + 360.181x142 + 311.276x143 + 295.598x144 + 243.336x145 + 711.604x146 + 1033.56x147 + 957.17x148 + 905.92x149 + +877.103x150 + 855.963x151 + 258.47x152 + 373.956x153 + 252.311x154 + 209.302x155 + 191.095x156 + 1861.49x157 + 2416.05x158 + 2350.72x159 + +2343x160 + 2303.91x161 + 2284.47x162 + 597.231x163 + 746.413x164 + 716.945x165 + 672.976x166 + 670.66x167 + 577.697x168 + 2280.25x169 + +2358.31x170 + 2352.73x171 + 2308.92x172 + 2242.89x173 + 2221.13x174 + 105.312x175 + 118.337x176 + 83.0052x177 + 82.5899x178 + 112.628x179 + +605.774x180 + 848.688x181 + 833.76x182 + 808.331x183 + 800.638x184 + 764.436x185 + 1182.69x186 + 1542.5x187 + 1467.11x188 + 1416.37x189 + +1396.29x190 + 1361.37x191 + 571.958x192 + 834.01x193 + 732.912x194 + 700.34x195 + 668.33x196 + 662.146x197 + 152.395x198 + 132.557x199 + +99.6672x200 + 85.8337x201 + 127.369x202 + 186.022x203 + 173.159x204 + 848.596x205 + 1133.29x206 + 907.692x207 + 882.945x208 + 868.614x209 + +866.225x210 + 268.468x211 + 392.802x212 + 376.346x213 + 276.692x214 + 233.902x215 + 222.453x216 + 329.894x217 + 288.026x218 + 269.877x219 + +241.914x220 + 629.958x221 + 701.423x222 + 678.489x223 + 645.075x224 + 619.972x225 + 504.04x226 + 601.008x227 + 689.849x228 + 662.909x229 + +595.89x230 + 510.059x231 + 471.084x232 + 3309.87x233 + 3354x234 + 3297.76x235 + 3285.48x236 + 3190.31x237 + 3162.13x238 + 1742.05x239 + +1906.09x240 + 1817.46x241 + 1780.93x242 + 1747.55x243 + 1726.56x244 + 883.194x245 + 1066.14x246 + 897.972x247 + 879.176x248 + 852.518x249 + +847.103x250 + 125.691x251 + 716.071x252 + 991.274x253 + 840.328x254 + 813.642x255 + 808.713x256 + 788.358x257 + 69.9402x258 + 1162.36x259 + +1471.91x260 + 1353.47x261 + 1319.21x262 + 1305.2x263 + 1305.14x264 + 365.946x265 + 409.316x266 + 395.286x267 + 386.236x268 + 378.638x269 + +348.821x270 + 781.444x271 + 900.746x272 + 832.965x273 + 824.277x274 + 811.615x275 + 802.242x276 + 401.581x277 + 535.886x278 + 494.511x279 + +444.497x280 + 437.159x281 + 415.57x282 + 468.882x283 + 449.749x284 + 445.313x285 + 441.014x286 + 376.753x287 + 322.024x288 + 1526.19x289 + +1886.41x290 + 1802.26x291 + 1799.75x292 + 1729.87x293 + 1723.33x294 + 606.294x295 + 845.978x296 + 781.578x297 + 701.115x298 + 675.62x299 + +671.437x300 + 1010.45x301 + 1250.41x302 + 1243.77x303 + 1223.97x304 + 1220.29x305 + 1209.74x306 + 397.152x307 + 498.577x308 + 488.097x309 + +479.862x310 + 465.942x311 + 429.211x312 + 823.163x313 + 1004.54x314 + 945.693x315 + 934.892x316 + 920.026x317 + 902.998x318 + 164.572x319 + +174.635x320 + 99.213x321 + 397.159x322 + 552.7x323 + 532.894x324 + 501.81x325 + 480.475x326 + 475.29x327 + 514.878x328 + 729.4x329 + +666.891x330 + 562.319x331 + 496.739x332 + 492.253x333 + 273.116x334 + 359.894x335 + 319.396x336 + 274.341x337 + 223.356x338 + 158.457x339 + +191.72x340 + 81.5336x341 + 501.041x342 + 551.991x343 + 525.159x344 + 518.534x345 + 417.856x346 + 213.56x347 + 497.761x348 + 700.472x349 + +667.067x350 + 663.735x351 + 607.763x352 + 604.553x353 + 187.75x354 + 279.381x355 + 146.749x356 + 234.812x357 + 304.581x358 + 254.103x359 + +144.206x360 + 393.812x361 + 463.709x362 + 423.336x363 + 414.475x364 + 412.684x365 + 392.684x366 + 1071.27x367 + 1265.54x368 + 1251.33x369 + +1226.84x370 + 1208.66x371 + 1199.68x372 + 434.058x373 + 400.013x374 + 395.015x375 + 379.052x376 + 348.557x377 + 340.037x378 + 868.601x379 + +934.068x380 + 933.024x381 + 887.317x382 + 871.181x383 + 863.255x384 + 156.113x385 + 2779.15x386 + 2995.92x387 + 2955.94x388 + 2873.2x389 + +2867.73x390 + 2861.71x391 + 89.6766x392 + 133.184x393 + 847.84x394 + 962.544x395 + 942.969x396 + 902.262x397 + 893.035x398 + 885.223x399 + +122.277x400 + 146.863x401 + 118.376x402 + 1704.33x403 + 2229.06x404 + 2185.68x405 + 2129.64x406 + 2114.65x407 + 2023.51x408 + 393.287x409 + +435.389x410 + 406.366x411 + 394.477x412 + 325.731x413 + 279.298x414 + 518.939x415 + 513.508x416 + 500.512x417 + 482.741x418 + 409.198x419 + +396.366x420 + 2096.56x421 + 2040.89x422 + 2021.9x423 + 1972.2x424 + 1970.94x425 + 1950.58x426 + 1212.56x427 + 1349.02x428 + 1327.02x429 + +1320.91x430 + 1277.58x431 + 1231.4x432 + 50.0833x433 + 566.708x434 + 524.042x435 + 505.503x436 + 489.999x437 + 486.972x438 + 447.768x439 + +869.789x440 + 931.949x441 + 883.449x442 + 865.439x443 + 814.293x444 + 794.816x445 + 773.008x446 + 990.778x447 + 920.449x448 + 910.73x449 + +882.477x450 + 858.953x451 + 621.72x452 + 557.049x453 + 549.495x454 + 492.125x455 + 445.527x456 + 411.741x457 + 345.733x458 + 277.441x459 + +268.486x460 + 259.002x461 + 162.033x462 + 358.292x463 + 435.934x464 + 296.94x465 + 293.795x466 + 270.695x467 + 518.059x468 + 707.46x469 + +688.252x470 + 686.346x471 + 630.908x472 + 559.031x473 + 646.749x474 + 789.511x475 + 784.518x476 + 745.597x477 + 719.764x478 + 692.724x479 + +178.689x480 + 225.889x481 + 871.304x482 + 986.252x483 + 945.86x484 + 884.533x485 + 839.223x486 + 811.25x487 + 1935.19x488 + 2121.86x489 + +2038.5x490 + 2031.72x491 + 1995.67x492 + 1993.12x493 + 945.387x494 + 1079.61x495 + 1065.55x496 + 1061.44x497 + 1036.16x498 + 1001.35x499 + + +st + +x58 + x109 + x157 + x210 + x333 + x386 + x388 + x403 + x404 + x406 ++ x419 + x428 + x429 + x430 + x432 + x475 + x478 + x479 <= 1 + +x35 + x41 + x46 + x57 + x135 + x146 + x151 + x210 + x245 + x249 ++ x295 + x296 + x298 + x299 + x332 + x379 + x384 + x387 + x404 + x406 ++ x408 + x415 + x416 + x419 + x420 + x424 + x430 + x478 + x479 <= 1 + +x24 + x25 + x35 + x38 + x40 + x41 + x42 + x43 + x46 + x57 ++ x66 + x134 + x135 + x136 + x137 + x139 + x146 + x149 + x151 + x170 ++ x173 + x208 + x210 + x236 + x245 + x246 + x249 + x250 + x292 + x295 ++ x296 + x297 + x298 + x299 + x300 + x331 + x332 + x379 + x380 + x381 ++ x384 + x386 + x387 + x388 + x404 + x406 + x416 + x418 + x427 + x430 ++ x432 + x474 + x478 + x479 + x484 + x496 <= 1 + +x24 + x25 + x35 + x41 + x42 + x43 + x45 + x46 + x61 + x63 ++ x64 + x66 + x82 + x86 + x134 + x135 + x136 + x137 + x139 + x151 ++ x160 + x161 + x170 + x173 + x210 + x237 + x245 + x246 + x247 + x249 ++ x250 + x263 + x292 + x295 + x296 + x297 + x298 + x299 + x332 + x379 ++ x380 + x381 + x382 + x384 + x386 + x387 + x388 + x389 + x390 + x399 ++ x404 + x407 + x474 + x478 + x484 + x496 <= 1 + +x25 + x41 + x43 + x53 + x54 + x61 + x63 + x66 + x86 + x108 ++ x110 + x134 + x135 + x136 + x137 + x139 + x151 + x160 + x161 + x217 ++ x219 + x233 + x234 + x235 + x236 + x237 + x238 + x245 + x246 + x247 ++ x249 + x250 + x259 + x261 + x263 + x292 + x296 + x332 + x357 + x358 ++ x359 + x375 + x379 + x380 + x381 + x382 + x383 + x384 + x386 + x387 ++ x388 + x389 + x404 + x407 + x496 <= 1 + +x25 + x41 + x42 + x43 + x46 + x60 + x65 + x86 + x110 + x134 ++ x135 + x136 + x137 + x139 + x151 + x159 + x160 + x161 + x206 + x217 ++ x218 + x219 + x235 + x236 + x237 + x238 + x263 + x292 + x296 + x357 ++ x358 + x372 + x379 + x380 + x381 + x382 + x383 + x386 + x387 + x388 ++ x389 + x390 + x407 <= 1 + +x96 + x136 + x137 + x139 + x151 + x160 + x216 + x218 + x219 + x224 ++ x235 + x238 + x259 + x262 + x372 + x381 + x382 + x383 + x386 + x390 ++ x403 + x407 <= 1 + +x136 + x137 + x139 + x160 + x381 + x382 + x383 + x386 + x403 + x407 + <= 1 + +x76 + x100 + x102 + x171 + x176 + x182 + x284 + x302 + x306 + x394 ++ x398 + x399 + x403 + x423 <= 1 + +x175 + x176 + x250 + x284 + x302 + x394 + x398 + x399 + x403 <= 1 + +x35 + x46 + x56 + x58 + x59 + x151 + x157 + x161 + x210 + x249 ++ x295 + x298 + x300 + x328 + x330 + x331 + x333 + x388 + x392 + x403 ++ x404 + x406 + x408 + x415 + x418 + x419 + x420 + x424 + x428 + x429 ++ x430 + x432 + x454 + x464 + x469 + x474 + x475 + x476 + x478 + x479 ++ x494 <= 1 + +x24 + x35 + x41 + x46 + x56 + x57 + x58 + x60 + x127 + x146 ++ x151 + x161 + x210 + x245 + x248 + x249 + x250 + x295 + x296 + x298 ++ x299 + x300 + x328 + x330 + x332 + x379 + x384 + x389 + x392 + x393 ++ x401 + x402 + x403 + x404 + x406 + x408 + x415 + x416 + x418 + x419 ++ x420 + x424 + x429 + x432 + x474 + x475 + x478 + x479 + x497 <= 1 + +x24 + x25 + x35 + x36 + x38 + x40 + x41 + x46 + x56 + x57 ++ x58 + x59 + x60 + x95 + x131 + x134 + x146 + x149 + x151 + x170 ++ x173 + x208 + x210 + x245 + x248 + x249 + x250 + x271 + x292 + x295 ++ x296 + x297 + x298 + x299 + x300 + x328 + x331 + x332 + x384 + x386 ++ x387 + x388 + x391 + x402 + x403 + x404 + x406 + x408 + x415 + x416 ++ x417 + x418 + x420 + x424 + x427 + x429 + x430 + x432 + x471 + x474 ++ x479 + x493 <= 1 + +x25 + x41 + x42 + x43 + x45 + x46 + x61 + x63 + x64 + x65 ++ x106 + x134 + x135 + x136 + x137 + x138 + x139 + x149 + x151 + x160 ++ x161 + x245 + x249 + x250 + x262 + x292 + x297 + x332 + x386 + x387 ++ x388 + x389 + x390 + x404 + x407 + x474 + x478 + x484 <= 1 + +x25 + x41 + x42 + x43 + x45 + x46 + x51 + x53 + x54 + x61 ++ x63 + x64 + x65 + x66 + x86 + x106 + x107 + x108 + x134 + x135 ++ x137 + x138 + x139 + x147 + x149 + x150 + x151 + x159 + x160 + x161 ++ x208 + x233 + x234 + x235 + x236 + x237 + x238 + x259 + x261 + x262 ++ x263 + x357 + x359 + x379 + x380 + x381 + x383 + x384 + x386 + x387 ++ x388 + x389 + x390 + x404 + x406 + x407 + x433 + x482 + x483 + x484 ++ x485 <= 1 + +x23 + x25 + x28 + x39 + x41 + x42 + x43 + x44 + x46 + x53 ++ x54 + x64 + x65 + x76 + x86 + x108 + x134 + x136 + x137 + x139 ++ x159 + x161 + x216 + x217 + x218 + x220 + x224 + x235 + x259 + x262 ++ x263 + x290 + x358 + x379 + x380 + x383 + x403 + x406 + x407 + x475 + <= 1 + +x23 + x25 + x28 + x39 + x42 + x43 + x44 + x46 + x54 + x134 ++ x136 + x137 + x139 + x159 + x216 + x217 + x218 + x219 + x220 + x224 ++ x235 + x259 + x261 + x262 + x263 + x379 + x380 + x381 + x382 + x383 ++ x386 + x390 + x398 + x403 + x407 + x431 + x475 <= 1 + +x25 + x28 + x54 + x102 + x117 + x136 + x137 + x139 + x157 + x217 ++ x219 + x220 + x235 + x302 + x382 + x383 + x386 + x398 + x399 + x403 ++ x407 <= 1 + +x73 + x75 + x76 + x77 + x100 + x102 + x108 + x136 + x157 + x180 ++ x182 + x185 + x235 + x237 + x254 + x302 + x382 + x394 + x398 + x399 ++ x403 + x407 + x410 + x414 + x423 + x425 + x465 <= 1 + +x130 + x157 + x175 + x177 + x180 + x182 + x185 + x211 + x284 + x302 ++ x382 + x394 + x398 + x399 + x403 + x413 + x423 + x490 <= 1 + +x24 + x35 + x38 + x59 + x127 + x128 + x129 + x130 + x131 + x132 ++ x146 + x149 + x157 + x159 + x161 + x173 + x210 + x245 + x248 + x295 ++ x296 + x298 + x299 + x300 + x328 + x330 + x331 + x332 + x333 + x344 ++ x388 + x415 + x416 + x417 + x420 + x424 + x427 + x428 + x429 + x430 ++ x432 + x457 + x464 + x469 + x475 + x476 + x478 + x481 + x494 + x497 + <= 1 + +x24 + x35 + x36 + x38 + x41 + x46 + x56 + x57 + x58 + x59 ++ x60 + x127 + x128 + x129 + x146 + x149 + x157 + x161 + x173 + x191 ++ x208 + x210 + x245 + x248 + x250 + x290 + x295 + x296 + x298 + x299 ++ x300 + x328 + x330 + x331 + x332 + x333 + x388 + x389 + x391 + x393 ++ x401 + x403 + x404 + x405 + x406 + x408 + x415 + x416 + x417 + x418 ++ x419 + x424 + x428 + x430 + x432 + x457 + x469 + x474 + x475 + x480 ++ x481 + x494 + x497 <= 1 + +x24 + x35 + x36 + x38 + x40 + x41 + x46 + x56 + x57 + x58 ++ x59 + x60 + x106 + x110 + x127 + x128 + x129 + x130 + x131 + x134 ++ x138 + x146 + x149 + x157 + x161 + x169 + x173 + x191 + x205 + x208 ++ x210 + x245 + x248 + x249 + x250 + x271 + x292 + x294 + x296 + x298 ++ x299 + x300 + x328 + x330 + x331 + x332 + x333 + x384 + x388 + x389 ++ x391 + x401 + x402 + x403 + x404 + x405 + x406 + x408 + x417 + x418 ++ x419 + x420 + x424 + x427 + x430 + x432 + x449 + x456 + x457 + x471 ++ x474 + x477 + x479 + x480 + x486 + x493 <= 1 + +x36 + x37 + x39 + x40 + x43 + x52 + x53 + x71 + x89 + x109 ++ x129 + x131 + x147 + x148 + x149 + x150 + x158 + x159 + x160 + x161 ++ x171 + x172 + x173 + x194 + x233 + x235 + x236 + x249 + x290 + x294 ++ x382 + x386 + x388 + x389 + x391 + x403 + x404 + x406 + x408 + x432 ++ x470 + x482 + x483 + x485 + x486 + x499 <= 1 + +x25 + x28 + x36 + x38 + x39 + x42 + x45 + x46 + x51 + x53 ++ x54 + x62 + x70 + x71 + x76 + x106 + x107 + x108 + x115 + x138 ++ x147 + x149 + x150 + x159 + x160 + x161 + x194 + x224 + x233 + x234 ++ x235 + x236 + x237 + x238 + x259 + x260 + x261 + x262 + x263 + x266 ++ x359 + x369 + x379 + x380 + x381 + x383 + x384 + x386 + x387 + x388 ++ x389 + x390 + x404 + x406 + x407 + x408 + x426 + x482 + x483 + x484 ++ x485 + x499 <= 1 + +x7 + x23 + x25 + x26 + x28 + x39 + x42 + x62 + x76 + x106 ++ x107 + x108 + x110 + x115 + x134 + x138 + x139 + x159 + x161 + x162 ++ x174 + x190 + x197 + x216 + x217 + x218 + x220 + x233 + x236 + x237 ++ x238 + x259 + x260 + x261 + x262 + x263 + x264 + x290 + x386 + x387 ++ x388 + x389 + x390 + x404 + x406 + x407 + x411 + x431 + x475 + x489 ++ x490 + x499 <= 1 + +x23 + x25 + x26 + x28 + x39 + x42 + x44 + x54 + x58 + x62 ++ x70 + x76 + x101 + x108 + x134 + x136 + x137 + x139 + x159 + x204 ++ x216 + x218 + x219 + x220 + x224 + x233 + x234 + x235 + x236 + x238 ++ x259 + x260 + x261 + x262 + x263 + x264 + x294 + x317 + x379 + x380 ++ x382 + x386 + x387 + x388 + x389 + x390 + x391 + x403 + x411 + x412 ++ x421 + x425 + x426 + x431 + x475 + x490 + x492 <= 1 + +x7 + x9 + x26 + x28 + x39 + x44 + x52 + x58 + x62 + x70 ++ x73 + x75 + x76 + x77 + x78 + x80 + x99 + x100 + x101 + x102 ++ x108 + x110 + x136 + x137 + x139 + x141 + x182 + x186 + x190 + x224 ++ x233 + x234 + x235 + x236 + x238 + x243 + x253 + x254 + x256 + x260 ++ x273 + x379 + x386 + x389 + x390 + x394 + x395 + x397 + x407 + x409 ++ x411 + x425 + x426 + x465 + x475 + x488 + x492 <= 1 + +x7 + x44 + x52 + x57 + x58 + x61 + x62 + x70 + x73 + x75 ++ x76 + x77 + x99 + x100 + x102 + x108 + x110 + x136 + x137 + x140 ++ x141 + x156 + x157 + x165 + x182 + x185 + x213 + x233 + x237 + x238 ++ x243 + x254 + x256 + x273 + x302 + x382 + x386 + x389 + x390 + x394 ++ x397 + x398 + x399 + x407 + x409 + x410 + x411 + x414 + x425 + x426 ++ x465 + x492 <= 1 + +x57 + x75 + x76 + x77 + x102 + x108 + x141 + x145 + x177 + x180 ++ x182 + x185 + x211 + x214 + x254 + x302 + x386 + x390 + x394 + x397 ++ x398 + x399 + x403 + x411 + x413 + x414 + x426 + x490 + x492 <= 1 + +x10 + x53 + x60 + x106 + x127 + x128 + x129 + x130 + x131 + x132 ++ x157 + x159 + x161 + x193 + x238 + x245 + x248 + x295 + x300 + x328 ++ x329 + x331 + x333 + x367 + x388 + x391 + x417 + x427 + x428 + x429 ++ x430 + x432 + x446 + x452 + x456 + x457 + x476 + x477 + x478 + x486 ++ x494 + x497 <= 1 + +x10 + x17 + x35 + x36 + x37 + x38 + x40 + x42 + x46 + x53 ++ x56 + x59 + x60 + x68 + x71 + x106 + x108 + x109 + x110 + x111 ++ x127 + x128 + x129 + x130 + x131 + x132 + x157 + x160 + x161 + x171 ++ x172 + x173 + x197 + x207 + x208 + x210 + x233 + x235 + x236 + x238 ++ x248 + x278 + x291 + x294 + x306 + x328 + x329 + x331 + x372 + x384 ++ x388 + x391 + x403 + x404 + x405 + x406 + x408 + x417 + x424 + x426 ++ x427 + x428 + x429 + x430 + x432 + x447 + x452 + x456 + x457 + x474 ++ x476 + x477 + x478 + x479 + x486 + x490 + x491 + x493 + x494 + x497 ++ x499 <= 1 + +x24 + x35 + x36 + x37 + x38 + x40 + x46 + x52 + x53 + x54 ++ x56 + x58 + x59 + x60 + x68 + x71 + x106 + x109 + x110 + x111 ++ x127 + x128 + x129 + x130 + x131 + x132 + x134 + x138 + x146 + x149 ++ x150 + x157 + x159 + x160 + x161 + x169 + x171 + x172 + x173 + x197 ++ x205 + x207 + x208 + x210 + x233 + x235 + x236 + x238 + x245 + x248 ++ x249 + x250 + x253 + x271 + x291 + x294 + x298 + x299 + x300 + x329 ++ x384 + x385 + x388 + x389 + x391 + x403 + x404 + x405 + x406 + x408 ++ x424 + x426 + x427 + x428 + x429 + x430 + x432 + x446 + x447 + x448 ++ x449 + x452 + x456 + x457 + x471 + x474 + x476 + x477 + x479 + x483 ++ x484 + x486 + x487 + x493 + x494 + x497 + x499 <= 1 + +x8 + x35 + x36 + x37 + x39 + x40 + x42 + x43 + x45 + x46 ++ x52 + x53 + x54 + x56 + x71 + x78 + x89 + x106 + x107 + x109 ++ x110 + x111 + x113 + x115 + x127 + x128 + x129 + x131 + x138 + x146 ++ x147 + x148 + x149 + x150 + x158 + x159 + x160 + x161 + x169 + x170 ++ x171 + x172 + x173 + x193 + x194 + x195 + x197 + x208 + x233 + x235 ++ x236 + x238 + x242 + x243 + x248 + x249 + x250 + x260 + x264 + x290 ++ x294 + x299 + x371 + x383 + x386 + x388 + x389 + x390 + x391 + x403 ++ x404 + x406 + x407 + x408 + x422 + x424 + x426 + x427 + x428 + x429 ++ x430 + x431 + x432 + x448 + x456 + x470 + x471 + x477 + x482 + x483 ++ x485 + x486 + x487 + x494 + x499 <= 1 + +x6 + x7 + x23 + x28 + x36 + x37 + x38 + x39 + x40 + x42 ++ x43 + x45 + x52 + x53 + x54 + x70 + x71 + x106 + x107 + x110 ++ x111 + x112 + x115 + x128 + x138 + x146 + x147 + x148 + x149 + x150 ++ x161 + x162 + x169 + x170 + x171 + x173 + x174 + x188 + x190 + x191 ++ x193 + x194 + x195 + x197 + x221 + x224 + x233 + x234 + x235 + x236 ++ x237 + x238 + x242 + x243 + x259 + x260 + x261 + x262 + x263 + x264 ++ x266 + x290 + x294 + x351 + x368 + x369 + x380 + x381 + x383 + x386 ++ x389 + x391 + x403 + x404 + x406 + x407 + x408 + x421 + x422 + x423 ++ x424 + x426 + x427 + x432 + x471 + x482 + x483 + x484 + x485 + x486 ++ x487 + x488 + x490 + x491 + x499 <= 1 + +x6 + x7 + x8 + x9 + x11 + x23 + x28 + x36 + x38 + x39 ++ x40 + x44 + x45 + x52 + x54 + x70 + x74 + x77 + x106 + x107 ++ x108 + x110 + x128 + x138 + x162 + x170 + x172 + x173 + x174 + x186 ++ x187 + x190 + x193 + x197 + x206 + x233 + x234 + x235 + x236 + x237 ++ x238 + x239 + x243 + x244 + x259 + x260 + x261 + x262 + x263 + x264 ++ x290 + x294 + x314 + x316 + x351 + x386 + x387 + x388 + x389 + x390 ++ x391 + x404 + x421 + x422 + x423 + x424 + x426 + x431 + x482 + x483 ++ x485 + x486 + x487 + x488 + x489 + x490 + x491 + x493 + x499 <= 1 + +x7 + x9 + x26 + x28 + x34 + x39 + x44 + x54 + x62 + x67 ++ x70 + x73 + x74 + x75 + x76 + x77 + x78 + x99 + x101 + x103 ++ x104 + x106 + x107 + x108 + x110 + x111 + x173 + x186 + x190 + x191 ++ x194 + x204 + x216 + x220 + x233 + x234 + x235 + x236 + x237 + x239 ++ x243 + x244 + x254 + x256 + x260 + x261 + x263 + x264 + x290 + x294 ++ x314 + x316 + x317 + x320 + x386 + x389 + x390 + x391 + x394 + x395 ++ x396 + x399 + x412 + x421 + x423 + x425 + x426 + x431 + x465 + x487 ++ x488 + x490 <= 1 + +x7 + x9 + x20 + x26 + x32 + x34 + x44 + x54 + x57 + x61 ++ x62 + x70 + x73 + x75 + x77 + x78 + x99 + x100 + x101 + x103 ++ x108 + x141 + x145 + x152 + x153 + x154 + x170 + x171 + x172 + x180 ++ x181 + x182 + x186 + x190 + x212 + x213 + x214 + x233 + x237 + x239 ++ x243 + x253 + x254 + x256 + x260 + x261 + x263 + x294 + x313 + x314 ++ x315 + x316 + x317 + x318 + x386 + x389 + x390 + x394 + x395 + x396 ++ x397 + x398 + x399 + x409 + x410 + x412 + x413 + x421 + x425 + x426 ++ x431 + x463 + x464 + x465 + x470 + x472 + x487 + x488 + x490 + x491 ++ x492 <= 1 + +x4 + x26 + x32 + x34 + x52 + x57 + x61 + x62 + x70 + x73 ++ x74 + x75 + x77 + x78 + x99 + x100 + x101 + x103 + x110 + x140 ++ x141 + x143 + x145 + x152 + x153 + x154 + x155 + x156 + x180 + x181 ++ x182 + x183 + x185 + x186 + x211 + x213 + x214 + x233 + x237 + x239 ++ x243 + x252 + x254 + x256 + x257 + x263 + x314 + x315 + x316 + x317 ++ x318 + x386 + x389 + x394 + x395 + x397 + x398 + x399 + x409 + x410 ++ x412 + x413 + x414 + x425 + x463 + x464 + x466 + x468 + x472 + x492 + <= 1 + +x4 + x26 + x61 + x62 + x73 + x74 + x75 + x77 + x78 + x110 ++ x140 + x142 + x143 + x145 + x152 + x153 + x155 + x178 + x179 + x180 ++ x181 + x182 + x183 + x185 + x211 + x212 + x213 + x214 + x215 + x237 ++ x239 + x243 + x256 + x257 + x294 + x315 + x316 + x317 + x386 + x394 ++ x397 + x398 + x399 + x409 + x412 + x413 + x414 + x463 + x466 + x467 ++ x468 + x470 + x472 + x473 + x490 + x492 <= 1 + +x10 + x37 + x40 + x42 + x51 + x53 + x59 + x60 + x67 + x71 ++ x106 + x109 + x110 + x127 + x128 + x129 + x130 + x131 + x132 + x134 ++ x157 + x160 + x161 + x162 + x192 + x195 + x197 + x248 + x291 + x293 ++ x295 + x329 + x331 + x333 + x347 + x380 + x388 + x391 + x403 + x405 ++ x446 + x455 + x476 + x490 <= 1 + +x10 + x11 + x17 + x36 + x37 + x40 + x42 + x51 + x53 + x56 ++ x59 + x60 + x67 + x68 + x71 + x106 + x108 + x109 + x110 + x127 ++ x128 + x129 + x130 + x131 + x132 + x157 + x158 + x159 + x160 + x161 ++ x162 + x192 + x195 + x197 + x207 + x238 + x242 + x248 + x267 + x289 ++ x291 + x297 + x306 + x329 + x347 + x370 + x380 + x386 + x388 + x391 ++ x403 + x405 + x408 + x429 + x446 + x449 + x452 + x455 + x457 + x476 ++ x479 + x490 + x491 + x493 + x497 <= 1 + +x8 + x10 + x11 + x27 + x35 + x36 + x37 + x40 + x51 + x53 ++ x56 + x59 + x60 + x68 + x71 + x106 + x109 + x110 + x111 + x127 ++ x128 + x129 + x130 + x131 + x132 + x138 + x150 + x160 + x162 + x169 ++ x171 + x172 + x173 + x192 + x195 + x197 + x205 + x207 + x233 + x234 ++ x235 + x236 + x238 + x250 + x253 + x261 + x267 + x289 + x291 + x293 ++ x329 + x370 + x385 + x388 + x391 + x403 + x404 + x405 + x406 + x408 ++ x427 + x428 + x429 + x430 + x431 + x432 + x446 + x447 + x448 + x449 ++ x451 + x455 + x456 + x484 + x487 + x488 + x490 + x491 + x493 + x497 ++ x499 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 + x33 + x45 + x52 + x70 ++ x71 + x74 + x78 + x88 + x89 + x106 + x107 + x110 + x111 + x113 ++ x115 + x128 + x129 + x131 + x146 + x147 + x148 + x150 + x158 + x159 ++ x161 + x169 + x171 + x172 + x173 + x192 + x194 + x195 + x197 + x205 ++ x208 + x221 + x233 + x234 + x235 + x236 + x237 + x238 + x242 + x264 ++ x265 + x266 + x268 + x270 + x289 + x291 + x294 + x297 + x369 + x371 ++ x383 + x389 + x390 + x391 + x403 + x404 + x405 + x406 + x408 + x422 ++ x423 + x424 + x426 + x427 + x428 + x429 + x431 + x432 + x454 + x471 ++ x482 + x486 + x487 + x491 + x499 <= 1 + +x6 + x7 + x8 + x9 + x11 + x23 + x28 + x29 + x33 + x36 ++ x37 + x38 + x39 + x42 + x43 + x45 + x51 + x52 + x53 + x54 ++ x70 + x71 + x74 + x88 + x91 + x104 + x106 + x107 + x109 + x111 ++ x112 + x113 + x115 + x116 + x117 + x128 + x131 + x135 + x147 + x148 ++ x150 + x158 + x159 + x161 + x169 + x171 + x172 + x173 + x174 + x187 ++ x188 + x189 + x190 + x191 + x193 + x194 + x195 + x197 + x208 + x221 ++ x233 + x234 + x235 + x236 + x237 + x238 + x242 + x259 + x260 + x261 ++ x262 + x264 + x265 + x266 + x268 + x270 + x289 + x290 + x294 + x297 ++ x303 + x305 + x368 + x369 + x371 + x375 + x389 + x404 + x405 + x406 ++ x407 + x408 + x422 + x423 + x424 + x426 + x428 + x429 + x431 + x454 ++ x482 + x483 + x485 + x486 + x487 + x496 + x499 <= 1 + +x7 + x8 + x9 + x11 + x29 + x32 + x34 + x42 + x43 + x44 ++ x45 + x52 + x70 + x71 + x72 + x74 + x76 + x78 + x91 + x104 ++ x106 + x107 + x109 + x111 + x112 + x114 + x131 + x138 + x150 + x159 ++ x169 + x170 + x171 + x172 + x173 + x174 + x186 + x187 + x188 + x190 ++ x191 + x194 + x205 + x206 + x207 + x208 + x233 + x234 + x235 + x236 ++ x237 + x238 + x243 + x244 + x246 + x251 + x253 + x259 + x260 + x261 ++ x262 + x263 + x264 + x282 + x305 + x314 + x316 + x340 + x351 + x368 ++ x369 + x371 + x373 + x374 + x375 + x386 + x387 + x389 + x390 + x395 ++ x404 + x405 + x406 + x408 + x421 + x422 + x423 + x424 + x425 + x426 ++ x431 + x482 + x483 + x485 + x487 + x488 + x489 + x490 + x491 + x492 ++ x493 + x499 <= 1 + +x6 + x7 + x8 + x26 + x28 + x29 + x31 + x32 + x34 + x73 ++ x74 + x75 + x76 + x77 + x78 + x99 + x101 + x103 + x104 + x106 ++ x107 + x108 + x109 + x110 + x111 + x112 + x114 + x158 + x170 + x171 ++ x172 + x173 + x186 + x190 + x191 + x194 + x233 + x234 + x235 + x236 ++ x243 + x252 + x253 + x254 + x255 + x256 + x260 + x261 + x262 + x264 ++ x290 + x294 + x314 + x316 + x317 + x320 + x351 + x368 + x369 + x371 ++ x386 + x390 + x394 + x395 + x397 + x399 + x406 + x407 + x408 + x421 ++ x425 + x426 + x431 + x482 + x483 + x488 + x489 + x490 + x491 + x492 ++ x493 + x496 <= 1 + +x7 + x9 + x20 + x26 + x29 + x31 + x32 + x34 + x57 + x61 ++ x62 + x73 + x74 + x75 + x77 + x78 + x103 + x104 + x107 + x109 ++ x110 + x140 + x141 + x142 + x143 + x144 + x153 + x170 + x171 + x172 ++ x183 + x185 + x186 + x190 + x191 + x194 + x212 + x233 + x234 + x235 ++ x239 + x243 + x252 + x253 + x254 + x255 + x256 + x257 + x264 + x294 ++ x314 + x315 + x316 + x319 + x320 + x368 + x371 + x386 + x394 + x395 ++ x396 + x397 + x398 + x399 + x407 + x421 + x425 + x426 + x455 + x463 ++ x464 + x469 + x470 + x472 + x473 + x488 + x490 + x491 <= 1 + +x7 + x9 + x26 + x32 + x44 + x57 + x61 + x62 + x70 + x73 ++ x74 + x75 + x77 + x78 + x103 + x110 + x140 + x142 + x143 + x144 ++ x145 + x152 + x153 + x154 + x155 + x156 + x178 + x180 + x181 + x182 ++ x183 + x185 + x186 + x198 + x200 + x211 + x212 + x213 + x214 + x215 ++ x243 + x247 + x252 + x254 + x256 + x257 + x263 + x278 + x294 + x313 ++ x314 + x315 + x316 + x317 + x386 + x389 + x390 + x394 + x395 + x396 ++ x397 + x398 + x410 + x425 + x463 + x466 + x467 + x468 + x470 + x472 ++ x473 <= 1 + +x4 + x26 + x32 + x41 + x44 + x110 + x142 + x143 + x144 + x145 ++ x179 + x180 + x181 + x182 + x184 + x185 + x186 + x198 + x201 + x211 ++ x212 + x213 + x214 + x215 + x238 + x239 + x243 + x247 + x256 + x279 ++ x313 + x316 + x317 + x319 + x321 + x386 + x396 + x397 + x398 + x425 ++ x466 + x467 + x469 + x470 + x472 + x473 <= 1 + +x10 + x11 + x13 + x51 + x53 + x56 + x60 + x71 + x106 + x108 ++ x109 + x110 + x111 + x157 + x160 + x161 + x162 + x192 + x196 + x205 ++ x248 + x272 + x276 + x291 + x293 + x331 + x333 + x347 + x367 + x386 ++ x387 + x388 + x391 + x403 + x405 + x427 + x428 + x429 + x430 + x431 ++ x446 + x450 + x451 + x476 <= 1 + +x6 + x10 + x11 + x12 + x13 + x27 + x40 + x51 + x53 + x56 ++ x59 + x67 + x68 + x71 + x106 + x108 + x109 + x110 + x111 + x113 ++ x127 + x128 + x129 + x130 + x132 + x138 + x157 + x158 + x159 + x160 ++ x161 + x162 + x168 + x192 + x205 + x206 + x233 + x234 + x235 + x236 ++ x238 + x242 + x253 + x272 + x276 + x289 + x291 + x293 + x297 + x306 ++ x329 + x355 + x370 + x386 + x387 + x388 + x391 + x403 + x405 + x422 ++ x423 + x427 + x428 + x429 + x430 + x431 + x446 + x447 + x448 + x449 ++ x450 + x451 + x452 + x453 + x454 + x455 + x488 + x491 + x493 <= 1 + +x6 + x8 + x9 + x10 + x11 + x13 + x37 + x43 + x59 + x71 ++ x106 + x107 + x108 + x109 + x110 + x111 + x113 + x127 + x128 + x129 ++ x130 + x131 + x132 + x158 + x159 + x160 + x161 + x162 + x168 + x169 ++ x171 + x173 + x187 + x192 + x195 + x197 + x205 + x206 + x207 + x209 ++ x233 + x234 + x235 + x236 + x237 + x238 + x241 + x242 + x253 + x264 ++ x265 + x267 + x272 + x274 + x276 + x289 + x291 + x293 + x297 + x306 ++ x329 + x335 + x355 + x360 + x367 + x370 + x386 + x387 + x389 + x390 ++ x391 + x403 + x405 + x408 + x422 + x423 + x425 + x427 + x446 + x447 ++ x448 + x449 + x450 + x451 + x452 + x453 + x454 + x455 + x456 + x484 ++ x488 + x490 + x491 + x493 + x497 + x498 <= 1 + +x6 + x8 + x9 + x10 + x11 + x33 + x37 + x52 + x108 + x110 ++ x111 + x113 + x127 + x131 + x132 + x148 + x158 + x159 + x161 + x162 ++ x169 + x171 + x172 + x173 + x174 + x192 + x193 + x194 + x195 + x196 ++ x197 + x205 + x206 + x207 + x208 + x209 + x233 + x234 + x235 + x236 ++ x237 + x238 + x242 + x246 + x259 + x264 + x265 + x266 + x268 + x269 ++ x270 + x289 + x291 + x297 + x339 + x360 + x369 + x371 + x387 + x389 ++ x390 + x391 + x397 + x408 + x421 + x422 + x423 + x425 + x426 + x427 ++ x428 + x429 + x446 + x448 + x449 + x451 + x452 + x453 + x454 + x488 ++ x491 + x493 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 + x33 + x37 + x39 + x44 ++ x45 + x51 + x52 + x54 + x69 + x70 + x72 + x74 + x78 + x88 ++ x90 + x91 + x104 + x106 + x107 + x108 + x109 + x110 + x111 + x112 ++ x116 + x117 + x135 + x147 + x148 + x150 + x169 + x170 + x171 + x172 ++ x173 + x174 + x187 + x188 + x189 + x190 + x191 + x193 + x194 + x205 ++ x206 + x207 + x208 + x209 + x221 + x222 + x223 + x225 + x233 + x234 ++ x235 + x236 + x237 + x238 + x246 + x259 + x260 + x262 + x264 + x265 ++ x268 + x269 + x270 + x289 + x292 + x293 + x294 + x303 + x305 + x318 ++ x323 + x324 + x339 + x340 + x347 + x367 + x368 + x369 + x370 + x371 ++ x373 + x374 + x375 + x377 + x387 + x389 + x390 + x391 + x395 + x396 ++ x397 + x404 + x405 + x406 + x407 + x408 + x421 + x422 + x423 + x424 ++ x425 + x426 + x453 + x461 + x462 + x485 + x488 + x489 + x490 + x491 ++ x492 + x493 + x495 + x496 + x498 <= 1 + +x2 + x8 + x9 + x29 + x30 + x33 + x37 + x44 + x45 + x52 ++ x54 + x55 + x69 + x74 + x75 + x109 + x110 + x111 + x112 + x117 ++ x124 + x135 + x147 + x148 + x158 + x161 + x162 + x172 + x173 + x174 ++ x186 + x188 + x189 + x222 + x223 + x225 + x233 + x234 + x235 + x236 ++ x237 + x238 + x243 + x246 + x252 + x253 + x255 + x257 + x269 + x270 ++ x305 + x308 + x313 + x314 + x323 + x342 + x343 + x344 + x345 + x349 ++ x375 + x387 + x389 + x391 + x395 + x396 + x406 + x407 + x408 + x421 ++ x422 + x423 + x424 + x425 + x426 + x440 + x441 + x443 + x444 + x445 ++ x458 + x461 + x462 + x488 + x489 + x490 + x491 + x492 + x494 + x495 ++ x498 <= 1 + +x2 + x6 + x8 + x29 + x30 + x31 + x33 + x34 + x44 + x45 ++ x52 + x55 + x69 + x75 + x76 + x84 + x106 + x107 + x108 + x109 ++ x110 + x111 + x114 + x116 + x135 + x158 + x162 + x173 + x186 + x187 ++ x188 + x189 + x190 + x191 + x195 + x223 + x233 + x234 + x235 + x236 ++ x237 + x238 + x243 + x252 + x255 + x257 + x260 + x261 + x262 + x277 ++ x278 + x290 + x308 + x313 + x314 + x316 + x317 + x342 + x344 + x345 ++ x349 + x350 + x351 + x371 + x395 + x396 + x406 + x407 + x421 + x422 ++ x423 + x425 + x426 + x440 + x441 + x444 + x458 + x459 + x461 + x489 ++ x490 + x491 + x492 + x495 + x496 <= 1 + +x0 + x4 + x5 + x31 + x44 + x55 + x106 + x107 + x109 + x111 ++ x114 + x142 + x155 + x160 + x162 + x181 + x183 + x184 + x185 + x186 ++ x187 + x188 + x189 + x190 + x191 + x199 + x212 + x233 + x234 + x239 ++ x244 + x247 + x257 + x277 + x278 + x279 + x281 + x282 + x313 + x314 ++ x315 + x316 + x317 + x344 + x345 + x351 + x371 + x390 + x396 + x437 ++ x439 + x441 + x450 + x458 + x460 + x468 + x469 + x470 + x491 + x492 + <= 1 + +x4 + x5 + x44 + x62 + x70 + x73 + x77 + x78 + x138 + x140 ++ x142 + x143 + x144 + x152 + x154 + x155 + x156 + x180 + x181 + x183 ++ x184 + x185 + x186 + x188 + x198 + x199 + x200 + x202 + x211 + x212 ++ x213 + x215 + x235 + x236 + x238 + x239 + x244 + x247 + x252 + x254 ++ x256 + x257 + x277 + x278 + x279 + x280 + x281 + x282 + x286 + x313 ++ x315 + x316 + x317 + x386 + x390 + x396 + x425 + x466 + x467 + x468 ++ x469 + x470 + x472 + x473 + x488 + x492 <= 1 + +x6 + x41 + x44 + x107 + x144 + x201 + x202 + x214 + x238 + x287 ++ x313 + x319 + x321 + x372 + x390 + x408 + x467 <= 1 + +x6 + x10 + x27 + x51 + x53 + x56 + x67 + x87 + x105 + x106 ++ x108 + x109 + x110 + x111 + x150 + x157 + x168 + x192 + x196 + x210 ++ x229 + x232 + x274 + x276 + x291 + x293 + x367 + x387 + x388 + x391 ++ x405 + x428 + x430 + x431 + x444 + x446 + x450 + x451 + x476 + x493 + <= 1 + +x6 + x10 + x11 + x12 + x13 + x14 + x16 + x27 + x51 + x53 ++ x56 + x67 + x71 + x85 + x106 + x108 + x109 + x110 + x129 + x132 ++ x157 + x158 + x159 + x160 + x161 + x162 + x168 + x170 + x192 + x196 ++ x229 + x230 + x232 + x234 + x242 + x253 + x274 + x276 + x291 + x293 ++ x301 + x329 + x354 + x367 + x370 + x372 + x386 + x387 + x388 + x391 ++ x405 + x408 + x427 + x431 + x444 + x446 + x447 + x448 + x449 + x450 ++ x451 + x476 + x489 + x493 <= 1 + +x6 + x9 + x10 + x11 + x12 + x14 + x15 + x16 + x43 + x53 ++ x55 + x87 + x106 + x107 + x108 + x109 + x110 + x111 + x127 + x129 ++ x130 + x132 + x157 + x158 + x159 + x160 + x161 + x162 + x168 + x174 ++ x192 + x193 + x195 + x196 + x205 + x206 + x207 + x209 + x229 + x232 ++ x233 + x234 + x235 + x236 + x237 + x238 + x240 + x241 + x242 + x267 ++ x272 + x274 + x275 + x276 + x289 + x291 + x292 + x293 + x294 + x301 ++ x306 + x329 + x334 + x335 + x354 + x355 + x356 + x367 + x368 + x369 ++ x370 + x372 + x387 + x388 + x390 + x391 + x400 + x405 + x408 + x423 ++ x447 + x448 + x449 + x451 + x453 + x455 + x488 + x489 + x490 + x491 ++ x492 + x493 + x497 + x498 <= 1 + +x6 + x9 + x11 + x41 + x51 + x67 + x69 + x72 + x87 + x106 ++ x109 + x127 + x132 + x148 + x158 + x159 + x160 + x162 + x169 + x171 ++ x172 + x173 + x174 + x187 + x192 + x193 + x194 + x195 + x196 + x197 ++ x205 + x206 + x207 + x209 + x225 + x233 + x235 + x236 + x238 + x264 ++ x267 + x275 + x276 + x289 + x291 + x292 + x293 + x301 + x323 + x335 ++ x336 + x339 + x355 + x356 + x367 + x369 + x370 + x371 + x372 + x387 ++ x388 + x389 + x390 + x391 + x405 + x421 + x422 + x423 + x425 + x426 ++ x428 + x441 + x444 + x445 + x447 + x448 + x449 + x451 + x453 + x454 ++ x488 + x491 + x492 + x493 <= 1 + +x6 + x8 + x9 + x10 + x11 + x27 + x33 + x45 + x51 + x52 ++ x54 + x67 + x69 + x70 + x72 + x106 + x107 + x108 + x109 + x110 ++ x111 + x122 + x132 + x135 + x148 + x158 + x162 + x167 + x169 + x170 ++ x171 + x172 + x173 + x174 + x187 + x188 + x189 + x191 + x193 + x195 ++ x207 + x221 + x222 + x223 + x225 + x234 + x235 + x236 + x238 + x241 ++ x246 + x260 + x262 + x264 + x268 + x269 + x289 + x291 + x292 + x293 ++ x307 + x308 + x310 + x313 + x323 + x324 + x326 + x367 + x368 + x369 ++ x370 + x371 + x374 + x377 + x389 + x397 + x404 + x405 + x406 + x407 ++ x408 + x421 + x422 + x423 + x425 + x426 + x440 + x441 + x442 + x444 ++ x445 + x453 + x488 + x491 <= 1 + +x1 + x3 + x8 + x9 + x30 + x45 + x51 + x52 + x69 + x72 ++ x84 + x90 + x107 + x108 + x109 + x110 + x111 + x116 + x117 + x122 ++ x124 + x135 + x148 + x158 + x161 + x162 + x169 + x170 + x171 + x172 ++ x173 + x174 + x186 + x187 + x188 + x189 + x191 + x193 + x194 + x195 ++ x206 + x221 + x222 + x223 + x225 + x236 + x237 + x238 + x241 + x243 ++ x246 + x255 + x257 + x269 + x289 + x290 + x292 + x293 + x302 + x303 ++ x304 + x305 + x308 + x313 + x318 + x323 + x324 + x326 + x342 + x343 ++ x345 + x347 + x349 + x362 + x367 + x368 + x369 + x371 + x373 + x374 ++ x377 + x384 + x387 + x389 + x390 + x391 + x397 + x404 + x405 + x406 ++ x407 + x421 + x422 + x423 + x424 + x425 + x426 + x440 + x441 + x442 ++ x443 + x444 + x445 + x462 + x477 + x484 + x488 + x489 + x490 + x491 ++ x492 + x493 + x494 + x495 + x496 + x498 <= 1 + +x0 + x1 + x2 + x3 + x8 + x28 + x29 + x30 + x31 + x45 ++ x52 + x69 + x72 + x84 + x107 + x108 + x109 + x110 + x111 + x114 ++ x116 + x122 + x123 + x148 + x158 + x160 + x162 + x169 + x171 + x172 ++ x173 + x174 + x187 + x188 + x189 + x190 + x191 + x233 + x234 + x235 ++ x236 + x237 + x238 + x239 + x243 + x244 + x255 + x278 + x279 + x281 ++ x283 + x285 + x290 + x293 + x302 + x304 + x305 + x312 + x314 + x315 ++ x327 + x349 + x350 + x352 + x353 + x362 + x363 + x365 + x368 + x371 ++ x387 + x389 + x390 + x391 + x395 + x396 + x404 + x405 + x407 + x421 ++ x422 + x423 + x425 + x426 + x440 + x441 + x442 + x443 + x444 + x458 ++ x459 + x461 + x488 + x489 + x490 + x491 + x492 + x495 + x496 <= 1 + +x0 + x2 + x3 + x4 + x5 + x30 + x52 + x55 + x58 + x61 ++ x72 + x107 + x109 + x111 + x114 + x160 + x181 + x183 + x184 + x190 ++ x233 + x234 + x235 + x236 + x237 + x238 + x239 + x244 + x247 + x252 ++ x255 + x257 + x259 + x277 + x278 + x279 + x280 + x281 + x283 + x284 ++ x285 + x286 + x287 + x288 + x290 + x305 + x313 + x314 + x315 + x317 ++ x344 + x345 + x348 + x351 + x353 + x362 + x363 + x365 + x366 + x387 ++ x390 + x395 + x405 + x407 + x422 + x425 + x434 + x437 + x439 + x444 ++ x450 + x460 + x468 + x469 + x472 + x473 + x488 + x489 + x490 + x491 ++ x495 <= 1 + +x0 + x5 + x73 + x107 + x109 + x111 + x154 + x156 + x180 + x183 ++ x184 + x199 + x200 + x202 + x203 + x215 + x235 + x238 + x239 + x244 ++ x247 + x252 + x259 + x277 + x279 + x280 + x281 + x282 + x285 + x286 ++ x287 + x303 + x305 + x313 + x315 + x317 + x363 + x390 + x448 + x460 ++ x468 + x469 + x472 + x473 + x488 + x489 <= 1 + +x41 + x107 + x144 + x180 + x183 + x184 + x201 + x202 + x239 + x277 ++ x279 + x281 + x282 + x285 + x287 + x313 + x321 + x372 + x390 + x473 + <= 1 + +x10 + x20 + x24 + x27 + x55 + x106 + x109 + x151 + x157 + x158 ++ x159 + x162 + x163 + x164 + x165 + x168 + x169 + x170 + x174 + x196 ++ x227 + x228 + x229 + x237 + x239 + x240 + x241 + x242 + x291 + x292 ++ x293 + x301 + x302 + x304 + x306 + x367 + x370 + x372 + x391 + x396 ++ x450 + x489 + x493 <= 1 + +x6 + x7 + x10 + x11 + x14 + x24 + x26 + x27 + x55 + x56 ++ x67 + x79 + x80 + x82 + x83 + x85 + x106 + x107 + x108 + x109 ++ x110 + x111 + x157 + x158 + x159 + x162 + x163 + x168 + x169 + x170 ++ x196 + x209 + x227 + x228 + x229 + x230 + x232 + x233 + x234 + x236 ++ x237 + x239 + x240 + x241 + x242 + x271 + x273 + x274 + x275 + x276 ++ x289 + x291 + x293 + x300 + x301 + x302 + x304 + x306 + x367 + x370 ++ x372 + x391 + x396 + x405 + x408 + x447 + x448 + x450 + x451 + x489 ++ x493 + x495 + x497 <= 1 + +x12 + x14 + x15 + x16 + x23 + x26 + x43 + x51 + x55 + x67 ++ x72 + x79 + x82 + x83 + x87 + x106 + x107 + x108 + x109 + x110 ++ x111 + x132 + x157 + x158 + x159 + x160 + x161 + x162 + x168 + x172 ++ x174 + x196 + x205 + x207 + x209 + x227 + x228 + x232 + x233 + x234 ++ x236 + x237 + x239 + x240 + x241 + x242 + x261 + x271 + x272 + x273 ++ x275 + x276 + x289 + x291 + x292 + x293 + x294 + x301 + x304 + x306 ++ x334 + x335 + x337 + x338 + x354 + x356 + x368 + x387 + x388 + x391 ++ x408 + x445 + x447 + x449 + x450 + x489 + x490 + x492 + x495 + x497 ++ x498 <= 1 + +x16 + x23 + x41 + x43 + x51 + x55 + x67 + x69 + x72 + x82 ++ x83 + x87 + x106 + x108 + x109 + x110 + x111 + x132 + x157 + x158 ++ x162 + x169 + x170 + x171 + x172 + x174 + x189 + x192 + x193 + x196 ++ x206 + x207 + x209 + x233 + x236 + x238 + x240 + x241 + x242 + x272 ++ x275 + x276 + x289 + x291 + x292 + x293 + x294 + x307 + x334 + x336 ++ x337 + x346 + x354 + x356 + x367 + x368 + x369 + x370 + x371 + x377 ++ x387 + x389 + x391 + x422 + x423 + x425 + x445 + x447 + x488 + x489 ++ x491 + x492 + x493 + x495 + x498 <= 1 + +x11 + x27 + x30 + x48 + x51 + x54 + x69 + x72 + x82 + x84 ++ x95 + x106 + x107 + x108 + x109 + x110 + x111 + x135 + x157 + x158 ++ x162 + x166 + x169 + x170 + x171 + x172 + x173 + x174 + x187 + x188 ++ x189 + x192 + x193 + x196 + x209 + x222 + x223 + x225 + x240 + x241 ++ x243 + x244 + x246 + x257 + x289 + x291 + x292 + x293 + x294 + x303 ++ x304 + x305 + x307 + x308 + x310 + x326 + x336 + x337 + x341 + x342 ++ x343 + x346 + x367 + x368 + x369 + x370 + x371 + x374 + x377 + x387 ++ x389 + x391 + x404 + x405 + x406 + x407 + x408 + x440 + x442 + x443 ++ x445 + x477 + x488 + x489 + x490 + x491 + x492 + x493 + x495 + x498 + <= 1 + +x18 + x21 + x27 + x47 + x48 + x49 + x51 + x54 + x67 + x68 ++ x69 + x72 + x90 + x92 + x93 + x95 + x96 + x106 + x107 + x108 ++ x109 + x110 + x111 + x116 + x117 + x122 + x124 + x126 + x146 + x170 ++ x171 + x172 + x187 + x188 + x189 + x193 + x206 + x222 + x223 + x225 ++ x234 + x235 + x236 + x237 + x238 + x240 + x241 + x243 + x244 + x246 ++ x282 + x293 + x303 + x305 + x307 + x308 + x309 + x310 + x312 + x318 ++ x322 + x323 + x324 + x325 + x326 + x330 + x349 + x352 + x367 + x368 ++ x369 + x387 + x389 + x391 + x421 + x422 + x423 + x424 + x425 + x440 ++ x442 + x443 + x445 + x477 + x491 + x493 + x494 + x495 + x496 + x498 + <= 1 + +x18 + x21 + x45 + x67 + x68 + x69 + x72 + x94 + x96 + x106 ++ x107 + x108 + x109 + x111 + x121 + x123 + x124 + x126 + x158 + x171 ++ x172 + x184 + x187 + x189 + x191 + x226 + x233 + x234 + x235 + x237 ++ x238 + x240 + x241 + x243 + x244 + x255 + x260 + x282 + x290 + x309 ++ x311 + x312 + x318 + x322 + x324 + x325 + x326 + x327 + x330 + x348 ++ x349 + x352 + x353 + x365 + x366 + x387 + x389 + x391 + x421 + x422 ++ x423 + x424 + x425 + x426 + x434 + x435 + x436 + x437 + x438 + x440 ++ x459 + x477 + x488 + x489 + x490 + x491 + x493 + x496 <= 1 + +x0 + x1 + x2 + x3 + x5 + x18 + x20 + x21 + x22 + x30 ++ x31 + x58 + x61 + x84 + x98 + x111 + x123 + x125 + x126 + x169 ++ x171 + x172 + x173 + x174 + x184 + x233 + x234 + x235 + x236 + x237 ++ x238 + x243 + x247 + x255 + x280 + x282 + x283 + x284 + x285 + x286 ++ x287 + x289 + x290 + x305 + x309 + x311 + x315 + x318 + x322 + x348 ++ x349 + x350 + x352 + x353 + x361 + x362 + x363 + x364 + x366 + x387 ++ x388 + x396 + x407 + x421 + x422 + x434 + x435 + x436 + x437 + x438 ++ x439 + x441 + x443 + x444 + x468 + x495 <= 1 + +x0 + x1 + x3 + x5 + x20 + x21 + x31 + x68 + x107 + x109 ++ x110 + x111 + x171 + x172 + x183 + x184 + x203 + x215 + x233 + x237 ++ x238 + x239 + x244 + x247 + x277 + x278 + x279 + x280 + x281 + x283 ++ x285 + x287 + x288 + x289 + x290 + x305 + x328 + x348 + x351 + x361 ++ x362 + x363 + x366 + x372 + x390 + x395 + x421 + x434 + x435 + x437 ++ x439 + x441 + x443 + x460 + x468 + x471 + x473 + x489 <= 1 + +x3 + x73 + x107 + x111 + x170 + x184 + x203 + x215 + x239 + x244 ++ x247 + x252 + x277 + x280 + x281 + x286 + x328 + x348 + x390 <= 1 + +x20 + x24 + x27 + x55 + x56 + x85 + x106 + x108 + x109 + x110 ++ x111 + x147 + x157 + x158 + x160 + x162 + x163 + x164 + x165 + x169 ++ x170 + x174 + x196 + x227 + x228 + x229 + x230 + x236 + x237 + x240 ++ x241 + x242 + x272 + x290 + x291 + x292 + x293 + x301 + x302 + x304 ++ x306 + x370 + x391 + x405 + x450 <= 1 + +x7 + x8 + x23 + x24 + x27 + x55 + x56 + x83 + x85 + x106 ++ x107 + x108 + x109 + x110 + x111 + x130 + x147 + x157 + x158 + x159 ++ x160 + x162 + x163 + x169 + x170 + x174 + x196 + x209 + x227 + x228 ++ x230 + x231 + x232 + x234 + x236 + x237 + x239 + x240 + x241 + x242 ++ x271 + x273 + x274 + x275 + x289 + x290 + x291 + x292 + x293 + x301 ++ x302 + x304 + x306 + x370 + x372 + x405 + x424 + x451 + x489 + x493 + <= 1 + +x15 + x23 + x38 + x51 + x55 + x72 + x106 + x107 + x108 + x109 ++ x111 + x157 + x158 + x159 + x160 + x162 + x163 + x164 + x165 + x166 ++ x167 + x209 + x227 + x230 + x231 + x232 + x240 + x241 + x242 + x271 ++ x272 + x273 + x274 + x275 + x276 + x289 + x292 + x301 + x304 + x334 ++ x337 + x338 + x488 <= 1 + +x55 + x106 + x107 + x108 + x109 + x111 + x157 + x158 + x159 + x167 ++ x169 + x170 + x174 + x181 + x188 + x237 + x240 + x241 + x242 + x272 ++ x273 + x274 + x275 + x289 + x292 + x293 + x294 + x301 + x303 + x304 ++ x305 + x333 + x338 + x340 + x381 + x387 + x498 <= 1 + +x55 + x106 + x107 + x108 + x109 + x110 + x111 + x138 + x158 + x162 ++ x166 + x167 + x169 + x170 + x174 + x188 + x222 + x246 + x289 + x291 ++ x292 + x293 + x294 + x301 + x303 + x304 + x305 + x310 + x340 + x342 ++ x343 + x346 + x364 + x368 + x369 + x381 + x387 + x405 + x406 + x440 ++ x442 + x443 + x445 + x493 + x498 <= 1 + +x47 + x48 + x49 + x67 + x68 + x69 + x72 + x92 + x93 + x94 ++ x95 + x96 + x107 + x108 + x111 + x121 + x122 + x123 + x126 + x189 ++ x206 + x233 + x234 + x235 + x236 + x237 + x244 + x303 + x307 + x309 ++ x310 + x311 + x312 + x318 + x322 + x325 + x326 + x327 + x330 + x350 ++ x353 + x368 + x387 + x388 + x391 + x421 + x422 + x423 + x424 + x438 ++ x442 + x443 + x445 + x477 + x489 + x493 + x494 + x496 + x498 <= 1 + +x7 + x17 + x18 + x19 + x21 + x22 + x47 + x50 + x67 + x68 ++ x69 + x72 + x92 + x93 + x94 + x97 + x107 + x108 + x111 + x120 ++ x121 + x122 + x123 + x124 + x125 + x126 + x171 + x172 + x187 + x189 ++ x226 + x233 + x234 + x235 + x237 + x238 + x241 + x244 + x255 + x280 ++ x303 + x309 + x310 + x311 + x312 + x315 + x318 + x322 + x324 + x325 ++ x327 + x330 + x348 + x349 + x350 + x352 + x353 + x365 + x388 + x421 ++ x422 + x423 + x424 + x434 + x436 + x437 + x438 + x442 + x443 + x459 ++ x489 + x494 <= 1 + +x1 + x2 + x18 + x19 + x21 + x22 + x50 + x69 + x81 + x97 ++ x98 + x125 + x172 + x184 + x226 + x233 + x234 + x235 + x240 + x243 ++ x244 + x247 + x255 + x280 + x284 + x286 + x309 + x315 + x318 + x325 ++ x327 + x330 + x336 + x348 + x350 + x352 + x361 + x364 + x366 + x373 ++ x376 + x388 + x421 + x422 + x424 + x434 + x436 + x438 + x441 + x489 + <= 1 + +x17 + x18 + x19 + x20 + x21 + x22 + x68 + x107 + x109 + x110 ++ x111 + x118 + x119 + x171 + x183 + x203 + x239 + x240 + x244 + x283 ++ x288 + x290 + x376 + x378 + x390 + x421 + x434 + x435 + x439 + x471 ++ x492 <= 1 + +x17 + x18 + x19 + x20 + x22 + x107 + x110 + x244 + x288 + x290 ++ x339 + x367 + x435 + x439 + x471 + x492 <= 1 + +x23 + x24 + x27 + x55 + x56 + x106 + x108 + x109 + x130 + x157 ++ x158 + x159 + x160 + x162 + x163 + x164 + x165 + x166 + x169 + x170 ++ x174 + x196 + x228 + x229 + x230 + x231 + x237 + x240 + x241 + x242 ++ x271 + x272 + x273 + x275 + x301 + x302 + x304 + x306 + x372 + x405 + <= 1 + +x8 + x23 + x27 + x55 + x74 + x106 + x107 + x108 + x109 + x110 ++ x130 + x147 + x157 + x158 + x159 + x160 + x162 + x163 + x164 + x165 ++ x166 + x167 + x169 + x170 + x174 + x209 + x227 + x228 + x230 + x231 ++ x234 + x236 + x237 + x240 + x241 + x242 + x271 + x272 + x273 + x274 ++ x275 + x289 + x290 + x291 + x292 + x293 + x301 + x302 + x304 + x306 ++ x372 <= 1 + +x15 + x38 + x55 + x56 + x72 + x83 + x85 + x106 + x107 + x108 ++ x109 + x111 + x130 + x157 + x158 + x159 + x160 + x162 + x163 + x164 ++ x165 + x166 + x167 + x169 + x170 + x174 + x181 + x209 + x231 + x234 ++ x236 + x237 + x240 + x241 + x242 + x271 + x273 + x274 + x289 + x290 ++ x291 + x292 + x293 + x301 + x304 + x306 + x370 + x372 + x405 + x488 ++ x489 <= 1 + +x55 + x106 + x107 + x108 + x109 + x111 + x157 + x158 + x159 + x160 ++ x162 + x164 + x165 + x166 + x167 + x169 + x170 + x174 + x181 + x231 ++ x234 + x237 + x240 + x241 + x242 + x252 + x271 + x273 + x274 + x275 ++ x292 + x294 + x311 + x333 + x338 + x346 + x372 + x442 <= 1 + +x55 + x106 + x107 + x108 + x109 + x111 + x164 + x166 + x167 + x169 ++ x170 + x174 + x231 + x234 + x237 + x240 + x241 + x242 + x258 + x289 ++ x292 + x294 + x301 + x303 + x304 + x305 + x343 + x346 + x387 + x440 ++ x442 + x492 <= 1 + +x18 + x19 + x21 + x49 + x50 + x67 + x68 + x69 + x92 + x94 ++ x107 + x108 + x111 + x121 + x126 + x171 + x172 + x233 + x234 + x241 ++ x244 + x303 + x307 + x312 + x318 + x348 + x350 + x352 + x353 + x387 ++ x388 + x421 + x422 + x424 + x436 + x437 + x438 + x489 + x492 <= 1 + +x17 + x18 + x19 + x21 + x22 + x68 + x69 + x93 + x107 + x111 ++ x120 + x121 + x123 + x124 + x125 + x133 + x189 + x226 + x234 + x238 ++ x239 + x240 + x241 + x244 + x303 + x311 + x318 + x322 + x325 + x327 ++ x350 + x353 + x361 + x364 + x365 + x378 + x388 + x421 + x422 + x423 ++ x424 + x436 + x485 + x489 <= 1 + +x1 + x17 + x19 + x22 + x68 + x107 + x118 + x120 + x121 + x125 ++ x174 + x221 + x226 + x234 + x239 + x240 + x244 + x303 + x318 + x352 ++ x361 + x364 + x373 + x376 + x378 + x435 + x436 + x438 <= 1 + +x17 + x19 + x22 + x68 + x107 + x118 + x119 + x125 + x174 + x226 ++ x234 + x239 + x240 + x244 + x283 + x288 + x290 + x303 + x376 + x378 ++ x390 + x435 + x492 <= 1 + +x17 + x19 + x20 + x22 + x68 + x119 + x226 + x240 + x244 + x288 ++ x290 + x306 + x376 + x378 + x439 + x462 + x492 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 <= 1 + +x17 + x18 + x19 + x20 + x21 + x22 <= 1 + +x23 + x24 + x25 + x26 + x27 + x28 <= 1 + +x29 + x30 + x31 + x32 + x33 + x34 <= 1 + +x35 + x36 + x37 + x38 + x39 + x40 <= 1 + +x41 + x42 + x43 + x44 + x45 + x46 <= 1 + +x47 + x48 + x49 + x50 <= 1 + +x51 + x52 + x53 + x54 + x55 + x56 <= 1 + +x57 + x58 + x59 + x60 + x61 + x62 <= 1 + +x63 + x64 + x65 + x66 <= 1 + +x67 + x68 + x69 + x70 + x71 + x72 <= 1 + +x73 + x74 + x75 + x76 + x77 + x78 <= 1 + +x79 + x80 <= 1 + +x82 + x83 + x84 + x85 + x86 + x87 <= 1 + +x88 + x89 + x90 + x91 <= 1 + +x92 + x93 + x94 + x95 + x96 <= 1 + +x97 + x98 <= 1 + +x99 + x100 + x101 + x102 + x103 + x104 <= 1 + +x106 + x107 + x108 + x109 + x110 + x111 <= 1 + +x112 + x113 + x114 + x115 + x116 + x117 <= 1 + +x118 + x119 + x120 <= 1 + +x121 + x122 + x123 + x124 + x125 + x126 <= 1 + +x127 + x128 + x129 + x130 + x131 + x132 <= 1 + +x134 + x135 + x136 + x137 + x138 + x139 <= 1 + +x140 + x141 + x142 + x143 + x144 + x145 <= 1 + +x146 + x147 + x148 + x149 + x150 + x151 <= 1 + +x152 + x153 + x154 + x155 + x156 <= 1 + +x157 + x158 + x159 + x160 + x161 + x162 <= 1 + +x163 + x164 + x165 + x166 + x167 + x168 <= 1 + +x169 + x170 + x171 + x172 + x173 + x174 <= 1 + +x175 + x176 + x177 <= 1 + +x178 + x179 <= 1 + +x180 + x181 + x182 + x183 + x184 + x185 <= 1 + +x186 + x187 + x188 + x189 + x190 + x191 <= 1 + +x192 + x193 + x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 <= 1 + +x202 + x203 <= 1 + +x205 + x206 + x207 + x208 + x209 + x210 <= 1 + +x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 <= 1 + +x221 + x222 + x223 + x224 + x225 + x226 <= 1 + +x227 + x228 + x229 + x230 + x231 + x232 <= 1 + +x233 + x234 + x235 + x236 + x237 + x238 <= 1 + +x239 + x240 + x241 + x242 + x243 + x244 <= 1 + +x245 + x246 + x247 + x248 + x249 + x250 <= 1 + +x252 + x253 + x254 + x255 + x256 + x257 <= 1 + +x259 + x260 + x261 + x262 + x263 + x264 <= 1 + +x265 + x266 + x267 + x268 + x269 + x270 <= 1 + +x271 + x272 + x273 + x274 + x275 + x276 <= 1 + +x277 + x278 + x279 + x280 + x281 + x282 <= 1 + +x283 + x284 + x285 + x286 + x287 + x288 <= 1 + +x289 + x290 + x291 + x292 + x293 + x294 <= 1 + +x295 + x296 + x297 + x298 + x299 + x300 <= 1 + +x301 + x302 + x303 + x304 + x305 + x306 <= 1 + +x307 + x308 + x309 + x310 + x311 + x312 <= 1 + +x313 + x314 + x315 + x316 + x317 + x318 <= 1 + +x319 + x320 + x321 <= 1 + +x322 + x323 + x324 + x325 + x326 + x327 <= 1 + +x328 + x329 + x330 + x331 + x332 + x333 <= 1 + +x334 + x335 + x336 + x337 + x338 <= 1 + +x339 + x340 <= 1 + +x342 + x343 + x344 + x345 + x346 + x347 <= 1 + +x348 + x349 + x350 + x351 + x352 + x353 <= 1 + +x354 + x355 + x356 <= 1 + +x357 + x358 + x359 <= 1 + +x361 + x362 + x363 + x364 + x365 + x366 <= 1 + +x367 + x368 + x369 + x370 + x371 + x372 <= 1 + +x373 + x374 + x375 + x376 + x377 + x378 <= 1 + +x379 + x380 + x381 + x382 + x383 + x384 <= 1 + +x386 + x387 + x388 + x389 + x390 + x391 <= 1 + +x392 + x393 <= 1 + +x394 + x395 + x396 + x397 + x398 + x399 <= 1 + +x401 + x402 <= 1 + +x403 + x404 + x405 + x406 + x407 + x408 <= 1 + +x409 + x410 + x411 + x412 + x413 + x414 <= 1 + +x415 + x416 + x417 + x418 + x419 + x420 <= 1 + +x421 + x422 + x423 + x424 + x425 + x426 <= 1 + +x427 + x428 + x429 + x430 + x431 + x432 <= 1 + +x434 + x435 + x436 + x437 + x438 + x439 <= 1 + +x440 + x441 + x442 + x443 + x444 + x445 <= 1 + +x446 + x447 + x448 + x449 + x450 + x451 <= 1 + +x452 + x453 + x454 + x455 + x456 + x457 <= 1 + +x458 + x459 + x460 + x461 + x462 <= 1 + +x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x480 + x481 <= 1 + +x482 + x483 + x484 + x485 + x486 + x487 <= 1 + +x488 + x489 + x490 + x491 + x492 + x493 <= 1 + +x494 + x495 + x496 + x497 + x498 + x499 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 + + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0003.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0003.lp new file mode 100755 index 000000000..de7b6d0fa --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0003.lp @@ -0,0 +1,1047 @@ +max + +664.711x0 + 874.368x1 + 863.79x2 + 861.622x3 + 843.665x4 + 833.921x5 + 75.6782x6 + 228.573x7 + 292.42x8 + 222.386x9 + +184.789x10 + 183.434x11 + 354.853x12 + 359.903x13 + 334.629x14 + 243.867x15 + 243.727x16 + 1021.65x17 + 1133.27x18 + 1039.27x19 + +1035.28x20 + 1032.1x21 + 990.495x22 + 407.796x23 + 380.177x24 + 374.547x25 + 357.985x26 + 260.406x27 + 883.169x28 + 954.771x29 + +950.111x30 + 924.008x31 + 879.189x32 + 869.465x33 + 91.6969x34 + 111.088x35 + 755.704x36 + 819.235x37 + 809.012x38 + 736.688x39 + +731.902x40 + 707.528x41 + 496.412x42 + 697.914x43 + 685.545x44 + 662.74x45 + 653.767x46 + 648.64x47 + 824.051x48 + 883.394x49 + +805.303x50 + 783.684x51 + 771.958x52 + 768.184x53 + 85.3583x54 + 1099.17x55 + 1571.18x56 + 1526.51x57 + 1440x58 + 1298.53x59 + +1279.5x60 + 1442.77x61 + 1706.8x62 + 1648.63x63 + 1634.77x64 + 1607.73x65 + 1596.29x66 + 157.921x67 + 166.412x68 + 116.244x69 + +1006.9x70 + 1057.98x71 + 1052.09x72 + 1042.42x73 + 1037.06x74 + 1023.63x75 + 741.268x76 + 794.199x77 + 780.24x78 + 728.308x79 + +705.121x80 + 696.964x81 + 414.295x82 + 466.502x83 + 412.885x84 + 407.226x85 + 388.169x86 + 337.514x87 + 1031.52x88 + 976.457x89 + +904.684x90 + 809.37x91 + 807.237x92 + 768.405x93 + 247.257x94 + 368.063x95 + 317.882x96 + 246.363x97 + 316.618x98 + 365.33x99 + +354.293x100 + 334.775x101 + 211.788x102 + 201.957x103 + 71.5725x104 + 3113.31x105 + 3526.77x106 + 3477.02x107 + 3451.92x108 + 3395.41x109 + +3391.39x110 + 420.59x111 + 484.825x112 + 457.699x113 + 387.818x114 + 375.619x115 + 372.892x116 + 276.306x117 + 296.967x118 + 289.969x119 + +257.419x120 + 236.058x121 + 234.962x122 + 577.974x123 + 699.828x124 + 693.458x125 + 613.866x126 + 604.95x127 + 591.409x128 + 312.491x129 + +402.041x130 + 343.769x131 + 266.431x132 + 261.841x133 + 205.162x134 + 28.8361x135 + 287.113x136 + 387.721x137 + 359.687x138 + 327.975x139 + +291.783x140 + 257.243x141 + 733.434x142 + 1038.62x143 + 936.462x144 + 925.584x145 + 920.543x146 + 912.992x147 + 1192.43x148 + 1332.35x149 + +1302.14x150 + 1257.96x151 + 1198.96x152 + 1178.43x153 + 603.798x154 + 486.216x155 + 454.243x156 + 452.651x157 + 443.86x158 + 418.62x159 + +472.109x160 + 550.472x161 + 533.591x162 + 458.532x163 + 399.401x164 + 399.266x165 + 1044.04x166 + 1461.55x167 + 1391.08x168 + 1351.49x169 + +1337.08x170 + 1262.87x171 + 364.661x172 + 470.901x173 + 332.852x174 + 283.883x175 + 275.265x176 + 265.001x177 + 908.071x178 + 909.454x179 + +871.425x180 + 859.975x181 + 838.748x182 + 834.023x183 + 236.886x184 + 272.668x185 + 210.03x186 + 892.807x187 + 1039.56x188 + 1003.83x189 + +953.185x190 + 925.98x191 + 894.644x192 + 1265.36x193 + 1581.68x194 + 1560.89x195 + 1455.46x196 + 1439.5x197 + 1421.33x198 + 1032.42x199 + +1205.53x200 + 1078.55x201 + 1064.47x202 + 1045.86x203 + 1044.52x204 + 1446.41x205 + 1718.57x206 + 1620.01x207 + 1614.58x208 + 1607.73x209 + +1586.83x210 + 567.265x211 + 699.519x212 + 616.54x213 + 609.325x214 + 592.333x215 + 559.993x216 + 922.492x217 + 989.718x218 + 839.247x219 + +820.425x220 + 805.477x221 + 783.812x222 + 235.779x223 + 253.946x224 + 241.145x225 + 199.854x226 + 146.03x227 + 1047.73x228 + 1104.75x229 + +1065.04x230 + 1064.72x231 + 1054.53x232 + 1032.33x233 + 638.415x234 + 866.212x235 + 733.464x236 + 651.545x237 + 629.157x238 + 628.577x239 + +821.034x240 + 1032.61x241 + 982.141x242 + 976.706x243 + 976.703x244 + 954.993x245 + 381.093x246 + 537.45x247 + 487.576x248 + 382.407x249 + +325.591x250 + 301.996x251 + 79.314x252 + 681.482x253 + 834.19x254 + 777.516x255 + 777.046x256 + 752.36x257 + 734.808x258 + 578.88x259 + +616.002x260 + 589.93x261 + 552.208x262 + 549.384x263 + 539.584x264 + 907.454x265 + 1069.42x266 + 989.402x267 + 943.738x268 + 922.892x269 + +922.742x270 + 724.619x271 + 889.449x272 + 881.527x273 + 866.382x274 + 838.164x275 + 823.385x276 + 381.036x277 + 477.513x278 + 458.999x279 + +424.166x280 + 405.025x281 + 388.781x282 + 175.184x283 + 231.387x284 + 215.029x285 + 95.0804x286 + 885.807x287 + 1033.29x288 + 942.783x289 + +895.789x290 + 859.489x291 + 721.488x292 + 898.323x293 + 1327.71x294 + 1308.46x295 + 1305.93x296 + 1223.37x297 + 1223.29x298 + 1138.19x299 + +1185.82x300 + 1142.34x301 + 1133.81x302 + 1122.34x303 + 1120.03x304 + 1880.32x305 + 2120.04x306 + 2091.88x307 + 2032.72x308 + 2007.51x309 + +2001.77x310 + 693.462x311 + 961.833x312 + 903.816x313 + 868.388x314 + 843.196x315 + 837.051x316 + 507.1x317 + 615.956x318 + 581.139x319 + +579.25x320 + 537.578x321 + 527.258x322 + 1188.82x323 + 1440.92x324 + 1412.63x325 + 1330.54x326 + 1323.18x327 + 1322.73x328 + 488.438x329 + +709.443x330 + 679.125x331 + 676.636x332 + 638.658x333 + 599.495x334 + 174.263x335 + 145.922x336 + 470.035x337 + 531.784x338 + 520.84x339 + +509.928x340 + 507.954x341 + 445.269x342 + 651.951x343 + 743.553x344 + 713.925x345 + 700.332x346 + 688.949x347 + 670.765x348 + 119.942x349 + +167.914x350 + 137.226x351 + 234.594x352 + 172.723x353 + 158.857x354 + 91.9924x355 + 118.447x356 + 405.021x357 + 454.966x358 + 386.157x359 + +265.688x360 + 257.728x361 + 781.485x362 + 913.18x363 + 883.056x364 + 816.337x365 + 778.151x366 + 765.794x367 + 123.957x368 + 119.006x369 + +1392.13x370 + 1793.88x371 + 1778.87x372 + 1748.11x373 + 1681.63x374 + 1620.46x375 + 491.142x376 + 595.753x377 + 570.396x378 + 548.946x379 + +488.251x380 + 479.98x381 + 199.128x382 + 259.372x383 + 191.306x384 + 142.838x385 + 138.984x386 + 1157.71x387 + 1209.99x388 + 1143.78x389 + +1124.04x390 + 1118.82x391 + 1105.87x392 + 800.117x393 + 764.225x394 + 708.946x395 + 707.022x396 + 685.719x397 + 685.291x398 + 1135.57x399 + +1217.73x400 + 1167.6x401 + 1141.67x402 + 1092.7x403 + 1085.23x404 + 707.274x405 + 780.466x406 + 755.309x407 + 747.148x408 + 746.28x409 + +710.616x410 + 411.972x411 + 579.094x412 + 578.805x413 + 547.172x414 + 496.67x415 + 467.534x416 + 634.569x417 + 766.574x418 + 731.677x419 + +681.497x420 + 645.014x421 + 631.993x422 + 1565.49x423 + 1741.16x424 + 1691.1x425 + 1622.88x426 + 1589.75x427 + 1537.46x428 + 190.951x429 + +168.076x430 + 209.38x431 + 282.883x432 + 268.417x433 + 241.941x434 + 194.346x435 + 150.019x436 + 496.866x437 + 681.207x438 + 575.375x439 + +551.13x440 + 549.403x441 + 496.136x442 + 186.462x443 + 220.629x444 + 1278.53x445 + 1500.99x446 + 1456.82x447 + 1374.04x448 + 1361.9x449 + +1361.42x450 + 534.379x451 + 785.11x452 + 585.307x453 + 563.39x454 + 533.596x455 + 454.614x456 + 396.291x457 + 510.338x458 + 502.956x459 + +498.244x460 + 490.989x461 + 478.416x462 + 321.083x463 + 273.744x464 + 251.975x465 + 240.277x466 + 222.679x467 + 199.104x468 + 178.032x469 + +137.62x470 + 139.494x471 + 1636.02x472 + 2007.98x473 + 1979.36x474 + 1936.08x475 + 1860.41x476 + 1812.28x477 + 41.6528x478 + 39.6101x479 + +760.667x480 + 1043.09x481 + 952.323x482 + 942.317x483 + 918.094x484 + 903.345x485 + 733.183x486 + 958.631x487 + 955.462x488 + 891.897x489 + +851.791x490 + 808.746x491 + 20.7567x492 + 506.49x493 + 631.022x494 + 620.091x495 + 587.293x496 + 559.968x497 + 559.53x498 + 680.269x499 + +719.424x500 + 714.541x501 + 705.623x502 + 650.805x503 + 639.902x504 + +st + +x23 + x24 + x25 + x62 + x105 + x106 + x107 + x108 + x109 + x115 ++ x213 + x255 + x288 + x315 + x321 + x322 + x371 + x373 + x395 + x397 ++ x398 + x401 + x424 + x426 + x427 + x445 + x448 + x450 + x463 + x466 ++ x473 + x475 + x482 + x493 + x496 + x498 <= 1 + +x23 + x24 + x25 + x26 + x59 + x61 + x62 + x63 + x65 + x66 ++ x74 + x80 + x88 + x93 + x105 + x106 + x107 + x108 + x109 + x110 ++ x115 + x123 + x128 + x167 + x181 + x193 + x194 + x196 + x198 + x228 ++ x229 + x232 + x247 + x249 + x250 + x251 + x255 + x288 + x291 + x305 ++ x306 + x308 + x309 + x310 + x317 + x320 + x321 + x322 + x339 + x371 ++ x373 + x393 + x394 + x395 + x396 + x397 + x398 + x399 + x401 + x402 ++ x403 + x424 + x425 + x426 + x427 + x437 + x438 + x439 + x445 + x448 ++ x450 + x466 + x467 + x473 + x475 + x482 + x493 + x494 + x496 + x497 ++ x498 <= 1 + +x23 + x24 + x25 + x26 + x56 + x57 + x59 + x61 + x62 + x63 ++ x65 + x78 + x80 + x90 + x105 + x106 + x108 + x115 + x123 + x125 ++ x128 + x158 + x167 + x191 + x193 + x194 + x196 + x198 + x201 + x212 ++ x228 + x229 + x230 + x231 + x232 + x233 + x250 + x251 + x255 + x257 ++ x266 + x269 + x288 + x296 + x305 + x306 + x317 + x318 + x320 + x321 ++ x322 + x337 + x339 + x342 + x371 + x373 + x378 + x393 + x394 + x395 ++ x396 + x397 + x398 + x399 + x401 + x402 + x403 + x424 + x437 + x438 ++ x439 + x440 + x445 + x448 + x450 + x496 + x497 + x498 <= 1 + +x21 + x23 + x25 + x26 + x27 + x56 + x57 + x61 + x62 + x78 ++ x80 + x89 + x90 + x105 + x106 + x108 + x111 + x113 + x115 + x116 ++ x123 + x125 + x128 + x150 + x158 + x167 + x191 + x193 + x228 + x230 ++ x231 + x232 + x233 + x251 + x255 + x257 + x269 + x293 + x296 + x297 ++ x298 + x305 + x306 + x309 + x315 + x317 + x318 + x320 + x322 + x341 ++ x342 + x370 + x371 + x373 + x378 + x393 + x394 + x395 + x396 + x397 ++ x398 + x407 + x423 + x424 + x428 + x437 + x440 + x442 + x445 + x448 ++ x449 + x475 + x496 <= 1 + +x26 + x42 + x61 + x62 + x105 + x106 + x108 + x111 + x113 + x114 ++ x116 + x123 + x125 + x158 + x167 + x170 + x191 + x193 + x194 + x195 ++ x197 + x228 + x239 + x251 + x257 + x293 + x296 + x297 + x298 + x305 ++ x306 + x309 + x315 + x317 + x318 + x320 + x322 + x341 + x342 + x370 ++ x373 + x394 + x396 + x397 + x398 + x407 + x423 + x424 + x428 + x437 ++ x440 + x442 + x445 + x475 + x483 + x489 <= 1 + +x22 + x31 + x42 + x55 + x56 + x105 + x106 + x108 + x111 + x113 ++ x114 + x116 + x123 + x125 + x127 + x143 + x158 + x191 + x242 + x244 ++ x245 + x257 + x293 + x297 + x298 + x306 + x317 + x318 + x322 + x326 ++ x327 + x342 + x370 + x373 + x389 + x397 + x398 + x405 + x407 + x408 ++ x409 + x423 + x424 + x427 + x428 + x440 + x442 + x445 + x475 + x489 ++ x490 <= 1 + +x10 + x31 + x55 + x56 + x105 + x106 + x108 + x143 + x144 + x191 ++ x197 + x241 + x242 + x244 + x273 + x293 + x294 + x297 + x298 + x304 ++ x316 + x317 + x318 + x323 + x326 + x327 + x370 + x373 + x380 + x381 ++ x405 + x406 + x407 + x408 + x409 + x410 + x423 + x424 + x428 + x486 ++ x489 + x490 <= 1 + +x55 + x83 + x105 + x143 + x191 + x194 + x197 + x242 + x293 + x297 ++ x298 + x304 + x316 + x400 + x406 + x407 + x409 + x423 + x424 + x428 + <= 1 + +x11 + x82 + x83 + x84 + x85 + x87 + x104 + x124 + x143 + x144 ++ x149 + x185 + x190 + x194 + x197 + x241 + x242 + x243 + x244 + x264 ++ x297 + x304 + x314 + x328 + x405 + x424 + x489 <= 1 + +x38 + x85 + x144 + x169 + x222 + x242 + x244 + x299 + x304 + x310 ++ x328 + x378 + x423 + x427 + x473 + x476 <= 1 + +x57 + x61 + x62 + x64 + x65 + x66 + x105 + x106 + x195 + x196 ++ x198 + x265 + x267 + x270 + x294 + x399 + x401 + x403 + x425 + x446 ++ x448 + x449 + x464 <= 1 + +x19 + x20 + x24 + x25 + x49 + x56 + x57 + x58 + x61 + x62 ++ x63 + x64 + x65 + x66 + x74 + x75 + x76 + x77 + x78 + x79 ++ x80 + x93 + x105 + x106 + x107 + x108 + x109 + x110 + x111 + x115 ++ x124 + x128 + x167 + x178 + x179 + x180 + x181 + x183 + x193 + x194 ++ x195 + x196 + x197 + x198 + x210 + x228 + x229 + x230 + x231 + x232 ++ x233 + x246 + x247 + x248 + x249 + x251 + x253 + x255 + x256 + x257 ++ x269 + x288 + x291 + x305 + x306 + x308 + x309 + x310 + x317 + x321 ++ x322 + x324 + x327 + x339 + x341 + x349 + x351 + x371 + x373 + x387 ++ x390 + x395 + x399 + x401 + x402 + x403 + x424 + x425 + x426 + x427 ++ x439 + x445 + x448 + x449 + x450 + x466 + x467 + x473 + x474 + x475 ++ x482 + x483 + x493 + x494 + x496 + x497 + x498 <= 1 + +x17 + x18 + x20 + x21 + x49 + x56 + x57 + x61 + x62 + x63 ++ x64 + x65 + x66 + x72 + x74 + x75 + x76 + x78 + x79 + x80 ++ x84 + x89 + x90 + x93 + x105 + x106 + x107 + x108 + x109 + x110 ++ x116 + x128 + x167 + x179 + x180 + x188 + x193 + x194 + x196 + x198 ++ x201 + x228 + x229 + x230 + x231 + x232 + x233 + x246 + x248 + x249 ++ x250 + x251 + x255 + x257 + x266 + x269 + x288 + x291 + x305 + x306 ++ x308 + x309 + x310 + x319 + x321 + x322 + x327 + x337 + x339 + x341 ++ x342 + x364 + x371 + x372 + x373 + x378 + x393 + x394 + x395 + x396 ++ x397 + x398 + x399 + x401 + x402 + x403 + x425 + x428 + x437 + x438 ++ x439 + x440 + x445 + x446 + x448 + x450 + x473 + x474 + x475 + x493 ++ x494 + x496 + x497 + x498 <= 1 + +x17 + x21 + x23 + x26 + x27 + x55 + x56 + x57 + x58 + x72 ++ x77 + x78 + x79 + x80 + x88 + x89 + x90 + x93 + x105 + x106 ++ x107 + x108 + x109 + x110 + x111 + x112 + x113 + x114 + x116 + x120 ++ x128 + x150 + x154 + x158 + x179 + x180 + x191 + x193 + x194 + x195 ++ x196 + x198 + x229 + x230 + x231 + x232 + x233 + x255 + x257 + x269 ++ x293 + x295 + x296 + x305 + x306 + x309 + x315 + x318 + x320 + x325 ++ x327 + x337 + x338 + x339 + x341 + x342 + x370 + x371 + x372 + x373 ++ x374 + x375 + x393 + x394 + x395 + x396 + x398 + x399 + x445 + x446 ++ x448 + x449 + x450 + x473 + x496 + x497 <= 1 + +x6 + x27 + x57 + x66 + x75 + x89 + x91 + x93 + x105 + x106 ++ x108 + x111 + x112 + x113 + x114 + x116 + x125 + x149 + x158 + x167 ++ x170 + x180 + x193 + x194 + x195 + x197 + x229 + x230 + x231 + x232 ++ x233 + x239 + x293 + x295 + x296 + x297 + x298 + x315 + x320 + x325 ++ x326 + x327 + x337 + x338 + x341 + x342 + x370 + x371 + x373 + x374 ++ x375 + x393 + x394 + x396 + x397 + x423 + x428 + x440 + x442 + x445 ++ x472 + x475 + x489 + x493 <= 1 + +x7 + x8 + x10 + x22 + x42 + x55 + x56 + x105 + x106 + x108 ++ x110 + x116 + x123 + x124 + x125 + x127 + x144 + x191 + x197 + x207 ++ x240 + x241 + x242 + x243 + x244 + x245 + x293 + x294 + x297 + x298 ++ x304 + x307 + x323 + x326 + x327 + x370 + x376 + x380 + x397 + x423 ++ x424 + x427 + x428 + x442 + x445 + x475 <= 1 + +x7 + x8 + x9 + x10 + x37 + x105 + x106 + x108 + x110 + x123 ++ x124 + x127 + x143 + x144 + x149 + x185 + x191 + x194 + x197 + x207 ++ x240 + x241 + x242 + x243 + x244 + x245 + x273 + x293 + x294 + x297 ++ x298 + x303 + x304 + x316 + x318 + x323 + x326 + x327 + x334 + x370 ++ x372 + x374 + x376 + x379 + x380 + x381 + x405 + x406 + x407 + x408 ++ x409 + x410 + x423 + x428 + x442 + x486 + x489 + x490 <= 1 + +x7 + x9 + x10 + x11 + x37 + x38 + x124 + x127 + x143 + x144 ++ x149 + x190 + x191 + x194 + x197 + x241 + x242 + x243 + x244 + x245 ++ x273 + x297 + x298 + x304 + x311 + x314 + x316 + x328 + x370 + x374 ++ x375 + x376 + x377 + x378 + x379 + x380 + x381 + x405 + x406 + x408 ++ x409 + x410 + x423 + x425 + x428 + x442 + x446 + x486 + x489 + x490 + <= 1 + +x7 + x11 + x37 + x38 + x82 + x83 + x84 + x85 + x86 + x87 ++ x124 + x142 + x143 + x144 + x149 + x169 + x190 + x194 + x240 + x241 ++ x242 + x243 + x244 + x245 + x264 + x273 + x274 + x297 + x298 + x302 ++ x304 + x314 + x328 + x374 + x376 + x377 + x378 + x379 + x381 + x405 ++ x406 + x408 + x409 + x410 + x423 + x428 + x489 + x490 <= 1 + +x38 + x82 + x83 + x85 + x143 + x144 + x149 + x169 + x190 + x194 ++ x220 + x222 + x241 + x242 + x243 + x244 + x274 + x298 + x299 + x304 ++ x308 + x328 + x374 + x378 + x405 + x406 + x408 + x409 + x423 + x473 ++ x476 + x489 + x490 + x491 <= 1 + +x5 + x56 + x57 + x61 + x62 + x64 + x65 + x66 + x70 + x73 ++ x74 + x76 + x77 + x78 + x86 + x105 + x106 + x108 + x110 + x124 ++ x180 + x181 + x189 + x193 + x194 + x195 + x196 + x198 + x202 + x208 ++ x210 + x224 + x228 + x231 + x247 + x253 + x260 + x265 + x266 + x267 ++ x268 + x269 + x270 + x294 + x295 + x305 + x309 + x321 + x340 + x387 ++ x388 + x399 + x401 + x402 + x403 + x424 + x425 + x426 + x427 + x438 ++ x446 + x448 + x449 + x463 + x464 + x474 + x475 + x481 + x483 + x493 ++ x495 <= 1 + +x2 + x3 + x4 + x20 + x21 + x56 + x57 + x58 + x61 + x62 ++ x63 + x64 + x65 + x66 + x72 + x73 + x74 + x75 + x76 + x77 ++ x78 + x79 + x89 + x93 + x105 + x106 + x107 + x108 + x109 + x110 ++ x112 + x115 + x124 + x128 + x178 + x180 + x181 + x183 + x193 + x194 ++ x195 + x196 + x197 + x198 + x200 + x206 + x208 + x210 + x229 + x246 ++ x247 + x248 + x249 + x250 + x253 + x255 + x256 + x257 + x265 + x266 ++ x267 + x268 + x269 + x270 + x279 + x289 + x291 + x294 + x295 + x305 ++ x306 + x308 + x309 + x310 + x321 + x324 + x339 + x340 + x341 + x344 ++ x349 + x350 + x371 + x373 + x387 + x388 + x390 + x395 + x399 + x400 ++ x401 + x402 + x403 + x424 + x425 + x426 + x427 + x438 + x439 + x440 ++ x445 + x446 + x448 + x449 + x450 + x463 + x464 + x467 + x473 + x474 ++ x475 + x481 + x482 + x483 + x485 + x493 + x494 + x498 <= 1 + +x17 + x18 + x19 + x20 + x21 + x22 + x24 + x27 + x49 + x56 ++ x57 + x58 + x60 + x61 + x62 + x63 + x64 + x65 + x66 + x72 ++ x73 + x74 + x75 + x76 + x77 + x78 + x79 + x80 + x81 + x88 ++ x89 + x90 + x93 + x105 + x106 + x107 + x108 + x109 + x110 + x111 ++ x112 + x115 + x124 + x128 + x162 + x167 + x168 + x171 + x181 + x182 ++ x188 + x193 + x194 + x195 + x196 + x197 + x198 + x206 + x207 + x208 ++ x209 + x210 + x228 + x229 + x230 + x231 + x232 + x233 + x246 + x250 ++ x255 + x256 + x257 + x266 + x268 + x269 + x277 + x278 + x280 + x288 ++ x291 + x293 + x295 + x305 + x306 + x308 + x313 + x317 + x319 + x321 ++ x327 + x339 + x340 + x351 + x364 + x371 + x372 + x373 + x387 + x390 ++ x395 + x396 + x398 + x399 + x400 + x401 + x402 + x403 + x424 + x425 ++ x426 + x427 + x428 + x438 + x439 + x440 + x445 + x446 + x447 + x448 ++ x449 + x450 + x467 + x473 + x474 + x475 + x483 + x493 + x494 + x497 ++ x498 <= 1 + +x0 + x17 + x21 + x27 + x40 + x55 + x56 + x57 + x58 + x61 ++ x62 + x63 + x64 + x65 + x66 + x76 + x77 + x78 + x79 + x81 ++ x88 + x89 + x90 + x91 + x93 + x105 + x106 + x107 + x108 + x109 ++ x110 + x112 + x114 + x124 + x125 + x127 + x128 + x149 + x150 + x167 ++ x168 + x179 + x180 + x182 + x188 + x193 + x195 + x197 + x200 + x201 ++ x210 + x228 + x229 + x230 + x231 + x232 + x233 + x246 + x250 + x257 ++ x269 + x277 + x278 + x280 + x282 + x291 + x293 + x295 + x296 + x297 ++ x305 + x306 + x307 + x308 + x309 + x310 + x313 + x315 + x318 + x319 ++ x320 + x324 + x325 + x327 + x337 + x338 + x340 + x371 + x373 + x375 ++ x393 + x394 + x395 + x396 + x398 + x403 + x425 + x426 + x427 + x428 ++ x438 + x439 + x440 + x445 + x446 + x447 + x448 + x449 + x450 + x473 ++ x475 + x477 + x483 + x484 + x485 + x494 + x497 <= 1 + +x6 + x17 + x40 + x55 + x56 + x57 + x58 + x61 + x62 + x63 ++ x65 + x66 + x81 + x90 + x91 + x92 + x93 + x105 + x106 + x107 ++ x108 + x109 + x110 + x112 + x113 + x114 + x125 + x127 + x149 + x151 ++ x158 + x164 + x167 + x179 + x180 + x182 + x184 + x188 + x193 + x195 ++ x197 + x207 + x229 + x245 + x257 + x280 + x282 + x293 + x294 + x295 ++ x296 + x297 + x298 + x300 + x304 + x305 + x308 + x315 + x320 + x326 ++ x327 + x328 + x337 + x338 + x370 + x371 + x373 + x374 + x375 + x392 ++ x393 + x394 + x396 + x397 + x425 + x426 + x427 + x428 + x445 + x473 ++ x475 + x484 + x489 <= 1 + +x8 + x9 + x17 + x40 + x56 + x57 + x62 + x63 + x66 + x88 ++ x90 + x91 + x93 + x105 + x106 + x108 + x110 + x112 + x123 + x125 ++ x127 + x151 + x167 + x168 + x182 + x193 + x195 + x197 + x204 + x207 ++ x229 + x245 + x293 + x294 + x295 + x296 + x297 + x298 + x304 + x307 ++ x308 + x315 + x323 + x324 + x326 + x327 + x328 + x370 + x374 + x375 ++ x380 + x407 + x423 + x424 + x425 + x426 + x427 + x428 + x445 + x447 ++ x473 + x475 + x484 <= 1 + +x9 + x40 + x58 + x63 + x66 + x87 + x105 + x106 + x108 + x110 ++ x124 + x127 + x185 + x240 + x241 + x242 + x243 + x244 + x245 + x264 ++ x273 + x293 + x303 + x304 + x307 + x308 + x309 + x311 + x312 + x314 ++ x315 + x316 + x323 + x325 + x326 + x327 + x328 + x334 + x370 + x374 ++ x375 + x380 + x381 + x405 + x406 + x407 + x408 + x409 + x410 + x423 ++ x425 + x426 + x428 + x442 + x486 + x489 + x490 + x491 <= 1 + +x36 + x37 + x38 + x40 + x58 + x66 + x84 + x87 + x105 + x106 ++ x108 + x110 + x143 + x190 + x191 + x240 + x241 + x242 + x243 + x244 ++ x245 + x264 + x273 + x274 + x297 + x298 + x307 + x308 + x311 + x314 ++ x316 + x323 + x326 + x328 + x370 + x374 + x375 + x376 + x377 + x379 ++ x380 + x381 + x405 + x406 + x407 + x408 + x409 + x410 + x423 + x425 ++ x428 + x442 + x446 + x486 + x489 + x490 <= 1 + +x11 + x36 + x38 + x40 + x82 + x83 + x84 + x85 + x86 + x87 ++ x142 + x143 + x144 + x149 + x150 + x169 + x208 + x240 + x241 + x242 ++ x243 + x244 + x245 + x264 + x274 + x297 + x298 + x299 + x302 + x304 ++ x308 + x309 + x328 + x335 + x347 + x370 + x376 + x377 + x379 + x381 ++ x405 + x406 + x408 + x409 + x410 + x423 + x428 + x446 + x466 + x476 ++ x486 + x490 + x491 <= 1 + +x36 + x38 + x40 + x143 + x144 + x149 + x169 + x208 + x220 + x241 ++ x243 + x274 + x298 + x299 + x308 + x328 + x335 + x336 + x347 + x359 ++ x365 + x377 + x379 + x389 + x406 + x408 + x410 + x423 + x428 + x473 ++ x476 + x489 + x491 + x500 <= 1 + +x1 + x2 + x5 + x17 + x18 + x19 + x20 + x21 + x46 + x56 ++ x57 + x60 + x61 + x62 + x63 + x64 + x65 + x66 + x70 + x72 ++ x73 + x74 + x76 + x77 + x78 + x81 + x89 + x105 + x106 + x108 ++ x110 + x137 + x167 + x171 + x189 + x194 + x195 + x198 + x200 + x202 ++ x206 + x208 + x210 + x214 + x223 + x224 + x225 + x228 + x231 + x233 ++ x237 + x247 + x248 + x253 + x256 + x265 + x266 + x267 + x269 + x270 ++ x283 + x284 + x289 + x305 + x319 + x387 + x388 + x390 + x401 + x402 ++ x403 + x425 + x426 + x429 + x430 + x438 + x448 + x449 + x450 + x452 ++ x463 + x465 + x481 + x483 + x495 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 + x17 + x18 + x19 + x20 ++ x21 + x46 + x56 + x57 + x58 + x61 + x63 + x64 + x65 + x66 ++ x72 + x73 + x74 + x75 + x76 + x77 + x79 + x81 + x88 + x89 ++ x92 + x105 + x106 + x107 + x108 + x110 + x137 + x162 + x164 + x168 ++ x171 + x178 + x179 + x180 + x181 + x183 + x189 + x194 + x195 + x196 ++ x198 + x200 + x205 + x206 + x207 + x208 + x209 + x210 + x223 + x224 ++ x225 + x236 + x246 + x247 + x248 + x256 + x265 + x266 + x267 + x268 ++ x269 + x270 + x277 + x278 + x279 + x281 + x283 + x284 + x285 + x289 ++ x291 + x294 + x295 + x302 + x305 + x308 + x309 + x310 + x319 + x331 ++ x344 + x350 + x371 + x372 + x373 + x387 + x388 + x390 + x399 + x400 ++ x402 + x403 + x404 + x424 + x425 + x426 + x427 + x430 + x439 + x445 ++ x446 + x447 + x448 + x449 + x450 + x452 + x464 + x465 + x474 + x481 ++ x483 + x484 + x485 + x494 + x495 <= 1 + +x0 + x1 + x2 + x3 + x4 + x17 + x18 + x19 + x20 + x21 ++ x22 + x49 + x60 + x61 + x63 + x64 + x65 + x66 + x72 + x73 ++ x74 + x75 + x76 + x77 + x78 + x79 + x81 + x88 + x89 + x92 ++ x93 + x105 + x106 + x107 + x108 + x109 + x110 + x160 + x161 + x162 ++ x164 + x167 + x171 + x178 + x179 + x181 + x182 + x183 + x189 + x194 ++ x195 + x196 + x198 + x200 + x206 + x207 + x208 + x209 + x210 + x225 ++ x228 + x229 + x230 + x231 + x232 + x233 + x253 + x256 + x257 + x266 ++ x267 + x268 + x270 + x277 + x278 + x281 + x284 + x285 + x287 + x288 ++ x289 + x291 + x294 + x295 + x300 + x302 + x305 + x306 + x307 + x308 ++ x309 + x310 + x312 + x315 + x319 + x324 + x325 + x326 + x327 + x328 ++ x332 + x338 + x340 + x364 + x371 + x372 + x373 + x374 + x387 + x388 ++ x389 + x390 + x391 + x392 + x399 + x400 + x401 + x402 + x403 + x404 ++ x424 + x425 + x426 + x427 + x438 + x439 + x447 + x448 + x449 + x450 ++ x465 + x474 + x475 + x477 + x481 + x483 + x484 + x485 + x494 + x495 + <= 1 + +x0 + x17 + x21 + x55 + x56 + x61 + x62 + x63 + x65 + x66 ++ x72 + x74 + x75 + x105 + x106 + x107 + x108 + x109 + x110 + x128 ++ x138 + x150 + x160 + x161 + x162 + x163 + x164 + x165 + x178 + x179 ++ x182 + x183 + x193 + x194 + x195 + x196 + x197 + x198 + x200 + x201 ++ x204 + x205 + x206 + x207 + x208 + x209 + x210 + x228 + x229 + x230 ++ x231 + x232 + x233 + x256 + x258 + x267 + x269 + x277 + x278 + x280 ++ x282 + x294 + x295 + x296 + x300 + x303 + x305 + x306 + x307 + x308 ++ x309 + x310 + x312 + x313 + x315 + x324 + x325 + x326 + x327 + x328 ++ x340 + x346 + x364 + x371 + x373 + x374 + x387 + x388 + x389 + x390 ++ x391 + x392 + x422 + x425 + x426 + x445 + x446 + x447 + x448 + x449 ++ x450 + x458 + x465 + x473 + x474 + x475 + x477 + x480 + x481 + x484 ++ x485 + x488 + x497 + x503 <= 1 + +x5 + x40 + x52 + x55 + x56 + x57 + x58 + x60 + x62 + x65 ++ x70 + x75 + x88 + x89 + x90 + x91 + x92 + x93 + x105 + x106 ++ x107 + x108 + x109 + x110 + x113 + x114 + x125 + x127 + x128 + x144 ++ x149 + x150 + x151 + x160 + x161 + x164 + x167 + x168 + x171 + x182 ++ x184 + x188 + x193 + x195 + x196 + x197 + x198 + x199 + x200 + x201 ++ x203 + x204 + x206 + x207 + x208 + x209 + x210 + x224 + x245 + x272 ++ x280 + x282 + x294 + x295 + x296 + x300 + x303 + x305 + x306 + x307 ++ x308 + x309 + x313 + x315 + x324 + x325 + x326 + x327 + x328 + x337 ++ x338 + x340 + x370 + x371 + x372 + x373 + x374 + x375 + x387 + x392 ++ x393 + x394 + x422 + x423 + x425 + x426 + x427 + x445 + x446 + x447 ++ x450 + x452 + x472 + x473 + x475 + x477 + x480 + x484 + x489 + x503 + <= 1 + +x22 + x52 + x53 + x55 + x56 + x57 + x58 + x88 + x89 + x90 ++ x91 + x105 + x106 + x107 + x108 + x109 + x110 + x151 + x168 + x193 ++ x195 + x196 + x197 + x201 + x204 + x207 + x209 + x229 + x237 + x240 ++ x272 + x280 + x294 + x296 + x302 + x303 + x305 + x306 + x307 + x308 ++ x309 + x311 + x314 + x315 + x316 + x323 + x324 + x325 + x326 + x327 ++ x328 + x370 + x371 + x372 + x373 + x374 + x375 + x393 + x423 + x425 ++ x426 + x445 + x447 + x473 + x475 + x491 + x503 <= 1 + +x55 + x57 + x58 + x90 + x91 + x105 + x106 + x108 + x110 + x127 ++ x142 + x185 + x197 + x204 + x240 + x245 + x264 + x294 + x302 + x303 ++ x304 + x307 + x308 + x309 + x311 + x312 + x314 + x315 + x316 + x323 ++ x324 + x325 + x326 + x327 + x328 + x355 + x370 + x371 + x374 + x375 ++ x423 + x425 + x426 + x428 + x447 + x491 + x499 + x503 <= 1 + +x8 + x55 + x58 + x86 + x105 + x106 + x108 + x110 + x142 + x226 ++ x243 + x296 + x302 + x304 + x308 + x309 + x311 + x312 + x314 + x324 ++ x325 + x326 + x328 + x355 + x356 + x370 + x371 + x375 + x377 + x410 ++ x441 + x446 + x447 + x490 + x491 + x499 + x503 <= 1 + +x40 + x49 + x58 + x82 + x86 + x142 + x144 + x149 + x186 + x240 ++ x243 + x298 + x299 + x302 + x304 + x308 + x309 + x311 + x312 + x314 ++ x328 + x356 + x376 + x377 + x379 + x410 + x446 + x486 + x490 + x491 + <= 1 + +x36 + x38 + x108 + x143 + x144 + x169 + x170 + x220 + x241 + x260 ++ x299 + x336 + x347 + x389 + x423 + x428 + x492 + x500 <= 1 + +x1 + x2 + x3 + x4 + x5 + x17 + x18 + x19 + x20 + x46 ++ x57 + x60 + x61 + x63 + x64 + x65 + x66 + x68 + x70 + x71 ++ x72 + x73 + x74 + x76 + x105 + x106 + x107 + x108 + x109 + x110 ++ x136 + x137 + x139 + x140 + x167 + x178 + x183 + x189 + x194 + x196 ++ x198 + x202 + x205 + x206 + x207 + x208 + x209 + x210 + x214 + x227 ++ x228 + x229 + x230 + x231 + x232 + x233 + x236 + x253 + x256 + x265 ++ x266 + x267 + x268 + x270 + x281 + x289 + x293 + x305 + x307 + x312 ++ x331 + x344 + x388 + x399 + x402 + x403 + x424 + x425 + x426 + x427 ++ x429 + x448 + x449 + x474 + x481 + x483 + x495 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 + x17 + x18 + x19 + x20 ++ x22 + x46 + x61 + x64 + x65 + x66 + x70 + x71 + x72 + x73 ++ x74 + x75 + x77 + x79 + x81 + x92 + x105 + x106 + x107 + x108 ++ x109 + x110 + x136 + x137 + x138 + x139 + x167 + x171 + x173 + x178 ++ x179 + x180 + x181 + x182 + x183 + x189 + x194 + x195 + x196 + x198 ++ x202 + x205 + x206 + x207 + x208 + x209 + x210 + x212 + x223 + x227 ++ x228 + x229 + x230 + x231 + x232 + x233 + x236 + x248 + x253 + x254 ++ x256 + x258 + x267 + x268 + x270 + x277 + x279 + x281 + x283 + x285 ++ x286 + x287 + x289 + x294 + x305 + x308 + x312 + x319 + x325 + x331 ++ x332 + x343 + x344 + x347 + x371 + x372 + x374 + x387 + x388 + x390 ++ x391 + x392 + x399 + x400 + x402 + x403 + x404 + x424 + x425 + x426 ++ x427 + x445 + x446 + x447 + x448 + x449 + x450 + x455 + x474 + x475 ++ x480 + x481 + x483 + x485 + x495 <= 1 + +x0 + x3 + x17 + x18 + x19 + x20 + x22 + x49 + x51 + x58 ++ x59 + x60 + x62 + x66 + x70 + x71 + x72 + x73 + x76 + x77 ++ x79 + x81 + x88 + x92 + x105 + x106 + x107 + x108 + x109 + x110 ++ x137 + x138 + x162 + x167 + x168 + x171 + x173 + x178 + x179 + x180 ++ x181 + x182 + x183 + x189 + x195 + x196 + x198 + x205 + x206 + x207 ++ x208 + x209 + x210 + x212 + x227 + x253 + x254 + x256 + x265 + x266 ++ x267 + x268 + x270 + x278 + x279 + x281 + x288 + x289 + x291 + x294 ++ x305 + x306 + x307 + x308 + x309 + x310 + x312 + x313 + x319 + x325 ++ x332 + x338 + x344 + x345 + x346 + x347 + x348 + x364 + x372 + x373 ++ x387 + x388 + x389 + x390 + x391 + x399 + x400 + x401 + x402 + x403 ++ x404 + x424 + x425 + x426 + x427 + x446 + x447 + x449 + x450 + x452 ++ x453 + x454 + x455 + x458 + x474 + x475 + x477 + x480 + x481 + x482 ++ x483 + x484 + x485 + x495 <= 1 + +x0 + x19 + x20 + x21 + x22 + x48 + x49 + x51 + x52 + x53 ++ x55 + x58 + x59 + x60 + x62 + x63 + x64 + x66 + x70 + x71 ++ x73 + x74 + x75 + x79 + x88 + x92 + x106 + x107 + x108 + x110 ++ x138 + x150 + x151 + x160 + x161 + x162 + x163 + x165 + x173 + x193 ++ x195 + x196 + x199 + x200 + x201 + x202 + x204 + x205 + x206 + x207 ++ x208 + x209 + x210 + x228 + x229 + x232 + x253 + x254 + x256 + x258 ++ x279 + x287 + x288 + x289 + x295 + x296 + x305 + x306 + x307 + x308 ++ x309 + x310 + x313 + x314 + x325 + x326 + x327 + x343 + x344 + x346 ++ x347 + x348 + x372 + x373 + x374 + x387 + x388 + x389 + x390 + x391 ++ x392 + x399 + x400 + x401 + x402 + x403 + x404 + x425 + x427 + x447 ++ x450 + x451 + x452 + x453 + x454 + x455 + x458 + x460 + x474 + x475 ++ x477 + x480 + x481 + x482 + x484 + x485 + x487 + x488 + x491 <= 1 + +x18 + x21 + x22 + x48 + x52 + x53 + x55 + x56 + x58 + x60 ++ x62 + x63 + x65 + x66 + x70 + x71 + x80 + x88 + x89 + x90 ++ x91 + x92 + x105 + x106 + x107 + x108 + x110 + x125 + x149 + x150 ++ x151 + x164 + x168 + x171 + x173 + x184 + x199 + x200 + x201 + x203 ++ x204 + x205 + x206 + x207 + x208 + x209 + x210 + x232 + x238 + x249 ++ x254 + x256 + x282 + x300 + x311 + x313 + x314 + x316 + x325 + x326 ++ x328 + x345 + x372 + x388 + x389 + x390 + x391 + x392 + x400 + x423 ++ x427 + x450 + x451 + x452 + x458 + x488 + x491 + x503 <= 1 + +x22 + x30 + x48 + x52 + x53 + x55 + x56 + x57 + x58 + x60 ++ x63 + x105 + x106 + x107 + x108 + x110 + x144 + x147 + x149 + x150 ++ x151 + x168 + x184 + x193 + x195 + x196 + x197 + x199 + x200 + x203 ++ x204 + x205 + x206 + x207 + x208 + x210 + x237 + x238 + x249 + x254 ++ x272 + x282 + x296 + x302 + x303 + x311 + x313 + x314 + x316 + x323 ++ x324 + x325 + x326 + x327 + x426 + x427 + x446 + x447 + x450 + x472 ++ x473 + x480 + x491 + x503 <= 1 + +x39 + x58 + x105 + x106 + x108 + x148 + x149 + x165 + x197 + x203 ++ x204 + x226 + x237 + x238 + x272 + x274 + x292 + x296 + x302 + x303 ++ x304 + x309 + x311 + x323 + x324 + x326 + x370 + x375 + x441 + x478 ++ x491 + x499 + x503 <= 1 + +x55 + x110 + x127 + x142 + x165 + x184 + x185 + x223 + x226 + x238 ++ x240 + x243 + x245 + x263 + x274 + x296 + x302 + x303 + x304 + x307 ++ x308 + x309 + x311 + x312 + x314 + x315 + x316 + x323 + x324 + x325 ++ x326 + x327 + x328 + x441 + x446 + x447 + x478 + x479 + x499 + x503 + <= 1 + +x15 + x40 + x49 + x55 + x61 + x142 + x143 + x184 + x185 + x186 ++ x226 + x234 + x238 + x240 + x302 + x304 + x311 + x314 + x324 + x369 ++ x428 + x446 + x478 + x479 + x490 + x491 <= 1 + +x15 + x49 + x108 + x130 + x142 + x143 + x169 + x170 + x182 + x186 ++ x238 + x241 + x252 + x260 + x299 + x311 + x389 + x423 + x428 + x446 ++ x491 + x500 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 + x18 + x19 + x46 + x61 ++ x64 + x65 + x66 + x68 + x70 + x80 + x105 + x106 + x107 + x108 ++ x109 + x110 + x136 + x140 + x141 + x167 + x171 + x178 + x183 + x198 ++ x202 + x206 + x208 + x209 + x210 + x212 + x214 + x215 + x231 + x233 ++ x254 + x258 + x265 + x266 + x267 + x268 + x270 + x289 + x305 + x306 ++ x307 + x312 + x330 + x333 + x334 + x388 + x399 + x400 + x402 + x403 ++ x426 + x448 + x449 + x474 + x480 + x481 + x483 <= 1 + +x0 + x1 + x3 + x4 + x18 + x46 + x49 + x51 + x52 + x65 ++ x70 + x71 + x73 + x81 + x108 + x136 + x139 + x140 + x141 + x167 ++ x171 + x173 + x189 + x194 + x196 + x198 + x202 + x205 + x206 + x207 ++ x208 + x209 + x210 + x211 + x212 + x214 + x215 + x227 + x231 + x232 ++ x233 + x236 + x253 + x254 + x258 + x265 + x268 + x270 + x279 + x281 ++ x286 + x287 + x288 + x289 + x294 + x305 + x306 + x307 + x310 + x312 ++ x329 + x330 + x331 + x333 + x334 + x343 + x344 + x347 + x368 + x387 ++ x388 + x390 + x391 + x402 + x416 + x424 + x426 + x445 + x447 + x448 ++ x449 + x455 + x456 + x474 + x475 + x480 + x487 <= 1 + +x3 + x4 + x18 + x19 + x20 + x22 + x49 + x51 + x52 + x59 ++ x60 + x69 + x70 + x71 + x72 + x73 + x92 + x105 + x106 + x110 ++ x140 + x141 + x168 + x170 + x171 + x178 + x179 + x181 + x195 + x196 ++ x198 + x199 + x201 + x202 + x205 + x206 + x207 + x208 + x209 + x210 ++ x212 + x213 + x214 + x215 + x253 + x254 + x258 + x265 + x266 + x267 ++ x268 + x270 + x287 + x288 + x289 + x291 + x305 + x306 + x307 + x309 ++ x310 + x312 + x313 + x329 + x330 + x331 + x332 + x334 + x343 + x345 ++ x346 + x347 + x348 + x364 + x368 + x369 + x372 + x387 + x388 + x389 ++ x390 + x391 + x399 + x400 + x401 + x404 + x426 + x447 + x449 + x450 ++ x451 + x453 + x454 + x455 + x456 + x474 + x475 + x480 + x481 + x482 ++ x484 + x487 + x490 + x496 <= 1 + +x19 + x20 + x21 + x48 + x51 + x52 + x55 + x58 + x59 + x60 ++ x62 + x63 + x64 + x70 + x71 + x75 + x92 + x105 + x106 + x107 ++ x108 + x110 + x138 + x150 + x160 + x161 + x163 + x168 + x170 + x171 ++ x181 + x189 + x193 + x195 + x196 + x199 + x201 + x202 + x204 + x205 ++ x206 + x207 + x208 + x209 + x210 + x232 + x254 + x258 + x287 + x305 ++ x306 + x307 + x308 + x309 + x310 + x313 + x333 + x343 + x344 + x345 ++ x346 + x347 + x348 + x363 + x372 + x387 + x388 + x389 + x390 + x391 ++ x392 + x401 + x404 + x427 + x447 + x449 + x451 + x452 + x453 + x454 ++ x455 + x456 + x458 + x460 + x461 + x477 + x480 + x481 + x482 + x484 ++ x485 + x487 + x488 <= 1 + +x22 + x39 + x41 + x48 + x51 + x52 + x53 + x55 + x59 + x60 ++ x62 + x63 + x64 + x70 + x71 + x75 + x88 + x91 + x92 + x102 ++ x105 + x149 + x150 + x151 + x160 + x163 + x168 + x171 + x193 + x199 ++ x201 + x203 + x204 + x205 + x207 + x208 + x209 + x210 + x258 + x293 ++ x300 + x306 + x307 + x309 + x310 + x313 + x325 + x328 + x345 + x370 ++ x372 + x387 + x388 + x389 + x390 + x392 + x427 + x450 + x451 + x453 ++ x454 + x456 + x457 + x458 + x460 + x472 + x474 + x477 + x484 + x485 ++ x488 + x495 <= 1 + +x33 + x39 + x41 + x48 + x52 + x53 + x56 + x57 + x58 + x59 ++ x60 + x62 + x92 + x101 + x105 + x106 + x107 + x108 + x109 + x110 ++ x147 + x148 + x149 + x150 + x151 + x152 + x153 + x163 + x168 + x171 ++ x174 + x199 + x200 + x201 + x203 + x204 + x205 + x207 + x208 + x209 ++ x222 + x237 + x272 + x290 + x292 + x293 + x313 + x325 + x362 + x364 ++ x370 + x372 + x375 + x404 + x427 + x441 + x446 + x447 + x450 + x451 ++ x458 + x460 + x472 + x485 + x488 + x499 + x503 <= 1 + +x12 + x14 + x33 + x39 + x41 + x48 + x53 + x57 + x58 + x101 ++ x102 + x105 + x106 + x107 + x108 + x109 + x110 + x148 + x149 + x150 ++ x151 + x152 + x153 + x163 + x165 + x168 + x197 + x199 + x203 + x204 ++ x225 + x234 + x235 + x236 + x237 + x238 + x272 + x274 + x290 + x292 ++ x296 + x310 + x323 + x363 + x370 + x375 + x441 + x458 + x472 + x474 ++ x476 + x499 + x503 <= 1 + +x5 + x12 + x14 + x39 + x55 + x102 + x109 + x142 + x148 + x151 ++ x153 + x165 + x187 + x222 + x234 + x235 + x236 + x237 + x238 + x263 ++ x274 + x292 + x302 + x311 + x323 + x324 + x325 + x326 + x392 + x479 ++ x500 <= 1 + +x12 + x15 + x16 + x41 + x55 + x61 + x108 + x142 + x176 + x177 ++ x186 + x205 + x220 + x221 + x234 + x235 + x236 + x238 + x240 + x274 ++ x302 + x304 + x311 + x323 + x324 + x392 + x428 + x432 + x500 <= 1 + +x15 + x41 + x49 + x61 + x108 + x170 + x182 + x238 + x423 + x432 ++ x500 <= 1 + +x0 + x2 + x19 + x46 + x67 + x68 + x80 + x105 + x107 + x108 ++ x109 + x110 + x141 + x167 + x171 + x202 + x212 + x214 + x215 + x231 ++ x233 + x254 + x258 + x265 + x305 + x307 + x312 + x331 + x333 + x343 ++ x400 + x447 + x448 + x449 + x487 <= 1 + +x2 + x3 + x4 + x18 + x51 + x59 + x65 + x67 + x71 + x73 ++ x80 + x105 + x106 + x108 + x136 + x139 + x140 + x141 + x166 + x167 ++ x168 + x171 + x201 + x202 + x206 + x209 + x210 + x211 + x212 + x214 ++ x215 + x233 + x254 + x258 + x265 + x268 + x286 + x305 + x312 + x329 ++ x331 + x333 + x334 + x343 + x383 + x387 + x388 + x391 + x392 + x400 ++ x402 + x416 + x418 + x447 + x449 + x475 + x480 + x482 + x487 <= 1 + +x2 + x4 + x22 + x39 + x59 + x60 + x67 + x69 + x71 + x72 ++ x91 + x100 + x105 + x106 + x108 + x109 + x110 + x118 + x139 + x166 ++ x167 + x168 + x169 + x170 + x171 + x198 + x199 + x201 + x202 + x205 ++ x209 + x211 + x212 + x213 + x214 + x215 + x216 + x253 + x254 + x258 ++ x295 + x305 + x306 + x309 + x310 + x329 + x331 + x332 + x333 + x334 ++ x343 + x345 + x346 + x348 + x372 + x383 + x389 + x391 + x392 + x400 ++ x401 + x404 + x418 + x455 + x475 + x480 + x482 + x487 + x490 <= 1 + +x39 + x43 + x45 + x48 + x50 + x51 + x55 + x59 + x60 + x64 ++ x71 + x92 + x99 + x100 + x105 + x106 + x109 + x110 + x147 + x150 ++ x151 + x166 + x168 + x169 + x170 + x171 + x189 + x193 + x196 + x199 ++ x201 + x202 + x204 + x205 + x207 + x208 + x209 + x210 + x215 + x216 ++ x234 + x258 + x287 + x295 + x300 + x306 + x307 + x309 + x310 + x325 ++ x343 + x345 + x346 + x348 + x363 + x371 + x372 + x389 + x390 + x391 ++ x392 + x401 + x404 + x418 + x449 + x451 + x453 + x454 + x456 + x460 ++ x461 + x462 + x477 + x487 + x488 <= 1 + +x33 + x35 + x39 + x41 + x45 + x48 + x60 + x63 + x64 + x98 ++ x99 + x100 + x101 + x102 + x103 + x105 + x107 + x110 + x147 + x150 ++ x151 + x166 + x168 + x170 + x171 + x187 + x189 + x193 + x202 + x205 ++ x207 + x208 + x209 + x210 + x211 + x216 + x230 + x234 + x236 + x237 ++ x271 + x272 + x287 + x290 + x292 + x295 + x300 + x301 + x306 + x307 ++ x308 + x309 + x310 + x313 + x325 + x332 + x363 + x371 + x372 + x390 ++ x392 + x404 + x437 + x441 + x454 + x456 + x457 + x460 + x461 + x472 ++ x474 + x476 + x477 + x488 <= 1 + +x1 + x5 + x14 + x30 + x33 + x37 + x39 + x41 + x44 + x48 ++ x50 + x53 + x59 + x98 + x99 + x101 + x102 + x105 + x106 + x107 ++ x109 + x110 + x147 + x148 + x149 + x150 + x151 + x152 + x153 + x166 ++ x168 + x170 + x171 + x174 + x183 + x187 + x189 + x199 + x200 + x203 ++ x204 + x205 + x207 + x208 + x210 + x222 + x228 + x234 + x235 + x236 ++ x237 + x263 + x272 + x287 + x290 + x292 + x306 + x307 + x310 + x313 ++ x362 + x363 + x364 + x366 + x367 + x404 + x437 + x441 + x447 + x459 ++ x472 + x474 + x476 + x477 + x485 + x499 + x501 <= 1 + +x1 + x5 + x14 + x30 + x36 + x37 + x39 + x41 + x50 + x53 ++ x59 + x61 + x109 + x110 + x142 + x147 + x153 + x159 + x174 + x183 ++ x187 + x190 + x192 + x199 + x200 + x203 + x205 + x207 + x221 + x222 ++ x228 + x263 + x287 + x290 + x292 + x299 + x302 + x306 + x307 + x310 ++ x313 + x323 + x324 + x364 + x366 + x375 + x404 + x437 + x441 + x472 ++ x474 + x477 + x485 + x499 + x500 <= 1 + +x1 + x12 + x13 + x16 + x33 + x36 + x37 + x39 + x41 + x52 ++ x95 + x107 + x110 + x145 + x147 + x148 + x150 + x152 + x153 + x159 ++ x177 + x187 + x190 + x203 + x205 + x217 + x218 + x219 + x220 + x221 ++ x236 + x238 + x259 + x260 + x262 + x263 + x271 + x272 + x273 + x274 ++ x275 + x276 + x290 + x292 + x299 + x302 + x306 + x310 + x323 + x324 ++ x384 + x407 + x441 + x472 + x500 <= 1 + +x12 + x13 + x16 + x29 + x36 + x41 + x81 + x109 + x110 + x129 ++ x132 + x133 + x146 + x147 + x148 + x152 + x153 + x159 + x172 + x175 ++ x176 + x177 + x178 + x186 + x205 + x218 + x219 + x220 + x221 + x236 ++ x238 + x240 + x262 + x272 + x274 + x275 + x276 + x299 + x302 + x323 ++ x324 + x367 + x374 + x472 + x500 <= 1 + +x15 + x16 + x81 + x97 + x107 + x109 + x110 + x129 + x132 + x133 ++ x134 + x172 + x175 + x176 + x177 + x186 + x190 + x205 + x259 + x260 ++ x271 + x274 + x275 + x299 + x323 + x357 + x359 + x361 + x374 + x472 + <= 1 + +x29 + x42 + x45 + x166 + x169 + x367 + x382 + x386 + x476 + x477 + <= 1 + +x42 + x43 + x45 + x46 + x59 + x91 + x107 + x108 + x109 + x110 ++ x118 + x119 + x121 + x126 + x166 + x168 + x169 + x198 + x206 + x209 ++ x213 + x297 + x301 + x310 + x329 + x330 + x331 + x332 + x382 + x383 ++ x400 + x418 + x421 + x443 + x444 + x472 + x473 + x475 + x476 + x477 + <= 1 + +x31 + x50 + x59 + x60 + x69 + x91 + x107 + x108 + x109 + x110 ++ x118 + x119 + x120 + x121 + x122 + x151 + x166 + x168 + x169 + x171 ++ x198 + x202 + x206 + x209 + x211 + x213 + x215 + x216 + x300 + x301 ++ x310 + x329 + x331 + x332 + x334 + x346 + x348 + x363 + x372 + x383 ++ x391 + x392 + x400 + x418 + x421 + x444 + x473 + x475 + x476 + x477 ++ x480 + x482 + x487 <= 1 + +x32 + x34 + x43 + x44 + x45 + x47 + x48 + x50 + x51 + x59 ++ x60 + x64 + x71 + x98 + x100 + x103 + x107 + x109 + x110 + x117 ++ x119 + x120 + x166 + x168 + x169 + x170 + x171 + x211 + x213 + x215 ++ x216 + x234 + x239 + x295 + x301 + x329 + x332 + x334 + x346 + x348 ++ x363 + x367 + x372 + x389 + x391 + x392 + x400 + x404 + x421 + x453 ++ x457 + x459 + x460 + x461 + x462 + x473 + x474 + x475 + x476 + x477 ++ x482 + x486 + x487 + x488 + x502 <= 1 + +x28 + x30 + x32 + x33 + x34 + x35 + x45 + x47 + x50 + x53 ++ x59 + x60 + x64 + x98 + x99 + x100 + x101 + x103 + x105 + x106 ++ x107 + x109 + x110 + x126 + x145 + x147 + x156 + x166 + x170 + x203 ++ x205 + x209 + x211 + x213 + x216 + x230 + x234 + x235 + x236 + x237 ++ x239 + x271 + x272 + x276 + x300 + x301 + x332 + x363 + x367 + x389 ++ x404 + x422 + x433 + x448 + x456 + x457 + x459 + x460 + x461 + x462 ++ x472 + x474 + x476 + x477 + x482 + x486 + x488 + x502 <= 1 + +x28 + x30 + x32 + x33 + x35 + x44 + x45 + x47 + x48 + x50 ++ x53 + x60 + x63 + x64 + x98 + x99 + x105 + x106 + x107 + x109 ++ x110 + x145 + x148 + x150 + x151 + x152 + x153 + x155 + x156 + x166 ++ x170 + x189 + x192 + x199 + x203 + x205 + x207 + x208 + x210 + x234 ++ x235 + x237 + x239 + x271 + x272 + x276 + x290 + x292 + x300 + x301 ++ x303 + x307 + x358 + x362 + x363 + x364 + x365 + x366 + x367 + x413 ++ x414 + x415 + x417 + x433 + x437 + x459 + x461 + x462 + x472 + x474 ++ x476 + x477 + x486 + x501 + x502 <= 1 + +x14 + x28 + x30 + x36 + x37 + x39 + x41 + x59 + x109 + x148 ++ x152 + x153 + x154 + x159 + x172 + x174 + x187 + x192 + x199 + x200 ++ x203 + x209 + x219 + x263 + x275 + x287 + x290 + x292 + x299 + x306 ++ x307 + x310 + x324 + x375 + x412 + x420 + x472 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 + x36 + x37 + x52 + x95 ++ x97 + x107 + x109 + x132 + x133 + x134 + x142 + x145 + x146 + x148 ++ x152 + x153 + x154 + x157 + x159 + x172 + x174 + x175 + x176 + x187 ++ x190 + x192 + x217 + x218 + x219 + x220 + x221 + x255 + x259 + x260 ++ x263 + x271 + x273 + x274 + x275 + x276 + x299 + x310 + x324 + x360 ++ x361 + x366 + x384 + x420 + x436 + x470 + x472 + x476 <= 1 + +x13 + x28 + x29 + x31 + x32 + x33 + x36 + x37 + x95 + x97 ++ x107 + x109 + x110 + x132 + x133 + x134 + x142 + x145 + x146 + x147 ++ x152 + x172 + x173 + x174 + x175 + x176 + x177 + x187 + x190 + x205 ++ x219 + x221 + x255 + x259 + x260 + x262 + x263 + x273 + x274 + x275 ++ x299 + x310 + x344 + x359 + x361 + x374 + x420 + x484 <= 1 + +x13 + x28 + x32 + x36 + x37 + x97 + x107 + x109 + x110 + x129 ++ x131 + x132 + x133 + x134 + x142 + x145 + x146 + x147 + x152 + x172 ++ x175 + x176 + x177 + x187 + x190 + x205 + x255 + x259 + x260 + x262 ++ x263 + x264 + x323 + x357 + x359 + x361 + x374 + x419 + x420 + x432 + <= 1 + +x29 + x42 + x43 + x45 + x46 + x126 + x166 + x169 + x206 + x301 ++ x308 + x329 + x330 + x367 + x382 + x385 + x386 + x424 + x473 + x476 ++ x477 <= 1 + +x29 + x31 + x38 + x42 + x43 + x45 + x46 + x47 + x59 + x107 ++ x109 + x110 + x122 + x126 + x153 + x166 + x169 + x206 + x291 + x301 ++ x329 + x330 + x382 + x383 + x384 + x385 + x386 + x391 + x421 + x424 ++ x443 + x472 + x473 + x476 + x477 <= 1 + +x31 + x38 + x42 + x43 + x44 + x47 + x50 + x51 + x59 + x103 ++ x107 + x108 + x109 + x110 + x117 + x118 + x119 + x121 + x122 + x123 ++ x126 + x135 + x166 + x169 + x206 + x209 + x211 + x213 + x216 + x300 ++ x301 + x384 + x385 + x386 + x391 + x418 + x421 <= 1 + +x31 + x34 + x38 + x42 + x43 + x44 + x47 + x50 + x51 + x59 ++ x103 + x107 + x108 + x109 + x117 + x119 + x120 + x126 + x166 + x169 ++ x170 + x206 + x211 + x213 + x216 + x239 + x271 + x290 + x300 + x301 ++ x303 + x316 + x329 + x334 + x348 + x372 + x389 + x391 + x404 + x421 ++ x457 + x459 + x462 + x477 + x487 + x488 + x504 <= 1 + +x16 + x34 + x35 + x42 + x43 + x44 + x45 + x47 + x53 + x59 ++ x60 + x64 + x105 + x109 + x120 + x126 + x156 + x166 + x203 + x217 ++ x230 + x234 + x239 + x271 + x272 + x276 + x300 + x301 + x303 + x307 ++ x365 + x404 + x417 + x421 + x422 + x457 + x459 + x461 + x472 + x473 ++ x474 + x476 + x477 + x486 + x487 + x488 + x498 + x502 + x504 <= 1 + +x28 + x29 + x30 + x32 + x33 + x43 + x44 + x45 + x47 + x63 ++ x64 + x96 + x106 + x107 + x109 + x145 + x146 + x148 + x150 + x151 ++ x152 + x153 + x154 + x155 + x156 + x157 + x170 + x188 + x189 + x192 ++ x203 + x217 + x218 + x221 + x222 + x234 + x235 + x237 + x239 + x261 ++ x276 + x290 + x292 + x299 + x300 + x301 + x302 + x303 + x330 + x333 ++ x358 + x362 + x363 + x364 + x365 + x366 + x367 + x375 + x412 + x413 ++ x414 + x415 + x416 + x417 + x418 + x419 + x420 + x422 + x433 + x435 ++ x459 + x461 + x472 + x474 + x476 + x477 + x499 + x501 + x502 + x504 + <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 + x44 + x94 + x95 + x96 ++ x107 + x109 + x145 + x146 + x148 + x151 + x152 + x153 + x154 + x155 ++ x156 + x157 + x187 + x188 + x192 + x217 + x218 + x219 + x220 + x221 ++ x222 + x235 + x239 + x261 + x262 + x273 + x275 + x276 + x299 + x301 ++ x302 + x303 + x310 + x333 + x358 + x360 + x362 + x365 + x366 + x367 ++ x375 + x411 + x412 + x413 + x414 + x415 + x416 + x417 + x419 + x420 ++ x422 + x431 + x433 + x434 + x435 + x436 + x469 + x476 + x499 + x501 ++ x502 + x504 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 + x94 + x95 + x97 + x107 ++ x109 + x131 + x145 + x146 + x148 + x151 + x152 + x153 + x154 + x155 ++ x157 + x159 + x187 + x188 + x192 + x217 + x218 + x219 + x220 + x221 ++ x222 + x239 + x262 + x271 + x273 + x275 + x276 + x299 + x303 + x310 ++ x345 + x353 + x358 + x360 + x362 + x366 + x375 + x384 + x411 + x412 ++ x413 + x414 + x415 + x416 + x417 + x420 + x431 + x435 + x436 + x462 ++ x468 + x469 + x470 + x472 + x476 + x477 + x501 + x502 + x504 <= 1 + +x28 + x29 + x30 + x31 + x32 + x91 + x95 + x107 + x109 + x146 ++ x148 + x152 + x159 + x192 + x217 + x218 + x219 + x220 + x221 + x222 ++ x244 + x271 + x273 + x275 + x276 + x303 + x345 + x411 + x415 + x431 ++ x435 + x462 + x468 + x470 + x504 <= 1 + +x13 + x28 + x32 + x36 + x37 + x94 + x96 + x97 + x107 + x109 ++ x129 + x130 + x131 + x133 + x134 + x145 + x146 + x147 + x148 + x152 ++ x175 + x187 + x190 + x191 + x192 + x259 + x260 + x261 + x264 + x271 ++ x272 + x275 + x276 + x323 + x357 + x359 + x361 + x374 + x419 + x432 ++ x434 + x476 + x501 <= 1 + +x29 + x42 + x45 + x46 + x126 + x166 + x169 + x200 + x275 + x301 ++ x308 + x382 + x385 + x386 + x424 + x473 + x477 <= 1 + +x29 + x31 + x46 + x117 + x122 + x123 + x126 + x153 + x161 + x166 ++ x169 + x206 + x300 + x301 + x316 + x330 + x385 + x421 + x472 + x473 ++ x476 <= 1 + +x65 + x117 + x118 + x121 + x122 + x123 + x126 + x166 + x169 + x170 ++ x206 + x300 + x301 + x316 + x419 + x421 + x457 + x472 + x473 + x474 ++ x476 + x477 + x487 + x488 + x504 <= 1 + +x38 + x42 + x43 + x44 + x47 + x50 + x51 + x65 + x107 + x109 ++ x126 + x166 + x169 + x170 + x216 + x217 + x218 + x271 + x300 + x301 ++ x303 + x307 + x316 + x417 + x418 + x419 + x421 + x457 + x462 + x472 ++ x473 + x474 + x476 + x477 + x486 + x487 + x488 + x500 + x504 <= 1 + +x40 + x43 + x44 + x47 + x50 + x54 + x60 + x107 + x109 + x132 ++ x146 + x166 + x169 + x170 + x188 + x217 + x218 + x230 + x261 + x299 ++ x300 + x301 + x303 + x307 + x365 + x417 + x418 + x419 + x472 + x473 ++ x474 + x476 + x477 + x486 + x500 + x502 <= 1 + +x40 + x41 + x43 + x44 + x47 + x50 + x107 + x109 + x146 + x157 ++ x166 + x170 + x188 + x192 + x217 + x218 + x230 + x235 + x261 + x299 ++ x300 + x301 + x303 + x333 + x358 + x362 + x365 + x367 + x414 + x416 ++ x417 + x418 + x419 + x422 + x459 + x472 + x473 + x474 + x476 + x477 ++ x486 + x501 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 + x44 + x47 + x90 + x106 ++ x107 + x109 + x130 + x145 + x146 + x148 + x152 + x153 + x154 + x155 ++ x156 + x157 + x170 + x188 + x192 + x217 + x218 + x219 + x220 + x221 ++ x222 + x235 + x239 + x261 + x262 + x273 + x275 + x276 + x290 + x299 ++ x301 + x302 + x303 + x330 + x333 + x352 + x353 + x357 + x358 + x360 ++ x362 + x363 + x365 + x366 + x367 + x375 + x411 + x412 + x413 + x414 ++ x415 + x419 + x431 + x433 + x434 + x435 + x436 + x471 + x472 + x499 ++ x501 + x502 + x504 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 + x94 + x96 + x106 + x107 ++ x109 + x130 + x131 + x145 + x146 + x148 + x152 + x153 + x155 + x156 ++ x157 + x170 + x188 + x192 + x197 + x217 + x218 + x219 + x220 + x221 ++ x222 + x235 + x239 + x259 + x261 + x262 + x271 + x273 + x275 + x276 ++ x330 + x352 + x353 + x354 + x357 + x358 + x360 + x362 + x365 + x366 ++ x375 + x411 + x412 + x413 + x414 + x415 + x416 + x417 + x419 + x420 ++ x422 + x431 + x433 + x434 + x435 + x436 + x468 + x469 + x472 + x476 ++ x501 + x502 + x504 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 + x94 + x96 + x106 + x107 ++ x109 + x129 + x130 + x131 + x145 + x146 + x147 + x148 + x152 + x153 ++ x155 + x187 + x188 + x190 + x191 + x192 + x197 + x219 + x235 + x259 ++ x261 + x262 + x271 + x273 + x275 + x276 + x352 + x354 + x357 + x359 ++ x360 + x361 + x362 + x365 + x366 + x411 + x412 + x413 + x417 + x420 ++ x422 + x431 + x432 + x434 + x436 + x472 + x476 + x501 + x502 + x504 + <= 1 + +x28 + x30 + x32 + x93 + x94 + x96 + x107 + x109 + x121 + x129 ++ x130 + x131 + x134 + x145 + x147 + x148 + x152 + x153 + x187 + x188 ++ x190 + x191 + x192 + x214 + x219 + x259 + x261 + x264 + x271 + x272 ++ x275 + x276 + x314 + x323 + x354 + x357 + x359 + x360 + x361 + x362 ++ x365 + x366 + x411 + x420 + x422 + x432 + x434 + x476 + x501 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 <= 1 + +x17 + x18 + x19 + x20 + x21 + x22 <= 1 + +x23 + x24 + x25 + x26 + x27 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 <= 1 + +x36 + x37 + x38 + x39 + x40 + x41 <= 1 + +x42 + x43 + x44 + x45 + x46 + x47 <= 1 + +x48 + x49 + x50 + x51 + x52 + x53 <= 1 + +x55 + x56 + x57 + x58 + x59 + x60 <= 1 + +x61 + x62 + x63 + x64 + x65 + x66 <= 1 + +x67 + x68 + x69 <= 1 + +x70 + x71 + x72 + x73 + x74 + x75 <= 1 + +x76 + x77 + x78 + x79 + x80 + x81 <= 1 + +x82 + x83 + x84 + x85 + x86 + x87 <= 1 + +x88 + x89 + x90 + x91 + x92 + x93 <= 1 + +x94 + x95 + x96 + x97 <= 1 + +x98 + x99 + x100 + x101 + x102 + x103 <= 1 + +x105 + x106 + x107 + x108 + x109 + x110 <= 1 + +x111 + x112 + x113 + x114 + x115 + x116 <= 1 + +x117 + x118 + x119 + x120 + x121 + x122 <= 1 + +x123 + x124 + x125 + x126 + x127 + x128 <= 1 + +x129 + x130 + x131 + x132 + x133 + x134 <= 1 + +x136 + x137 + x138 + x139 + x140 + x141 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x148 + x149 + x150 + x151 + x152 + x153 <= 1 + +x154 + x155 + x156 + x157 + x158 + x159 <= 1 + +x160 + x161 + x162 + x163 + x164 + x165 <= 1 + +x166 + x167 + x168 + x169 + x170 + x171 <= 1 + +x172 + x173 + x174 + x175 + x176 + x177 <= 1 + +x178 + x179 + x180 + x181 + x182 + x183 <= 1 + +x184 + x185 + x186 <= 1 + +x187 + x188 + x189 + x190 + x191 + x192 <= 1 + +x193 + x194 + x195 + x196 + x197 + x198 <= 1 + +x199 + x200 + x201 + x202 + x203 + x204 <= 1 + +x205 + x206 + x207 + x208 + x209 + x210 <= 1 + +x211 + x212 + x213 + x214 + x215 + x216 <= 1 + +x217 + x218 + x219 + x220 + x221 + x222 <= 1 + +x223 + x224 + x225 + x226 + x227 <= 1 + +x228 + x229 + x230 + x231 + x232 + x233 <= 1 + +x234 + x235 + x236 + x237 + x238 + x239 <= 1 + +x240 + x241 + x242 + x243 + x244 + x245 <= 1 + +x246 + x247 + x248 + x249 + x250 + x251 <= 1 + +x253 + x254 + x255 + x256 + x257 + x258 <= 1 + +x259 + x260 + x261 + x262 + x263 + x264 <= 1 + +x265 + x266 + x267 + x268 + x269 + x270 <= 1 + +x271 + x272 + x273 + x274 + x275 + x276 <= 1 + +x277 + x278 + x279 + x280 + x281 + x282 <= 1 + +x283 + x284 + x285 + x286 <= 1 + +x287 + x288 + x289 + x290 + x291 + x292 <= 1 + +x293 + x294 + x295 + x296 + x297 + x298 <= 1 + +x299 + x300 + x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 + x310 <= 1 + +x311 + x312 + x313 + x314 + x315 + x316 <= 1 + +x317 + x318 + x319 + x320 + x321 + x322 <= 1 + +x323 + x324 + x325 + x326 + x327 + x328 <= 1 + +x329 + x330 + x331 + x332 + x333 + x334 <= 1 + +x335 + x336 <= 1 + +x337 + x338 + x339 + x340 + x341 + x342 <= 1 + +x343 + x344 + x345 + x346 + x347 + x348 <= 1 + +x349 + x350 + x351 <= 1 + +x352 + x353 + x354 <= 1 + +x355 + x356 <= 1 + +x357 + x358 + x359 + x360 + x361 <= 1 + +x362 + x363 + x364 + x365 + x366 + x367 <= 1 + +x368 + x369 <= 1 + +x370 + x371 + x372 + x373 + x374 + x375 <= 1 + +x376 + x377 + x378 + x379 + x380 + x381 <= 1 + +x382 + x383 + x384 + x385 + x386 <= 1 + +x387 + x388 + x389 + x390 + x391 + x392 <= 1 + +x393 + x394 + x395 + x396 + x397 + x398 <= 1 + +x399 + x400 + x401 + x402 + x403 + x404 <= 1 + +x405 + x406 + x407 + x408 + x409 + x410 <= 1 + +x411 + x412 + x413 + x414 + x415 + x416 <= 1 + +x417 + x418 + x419 + x420 + x421 + x422 <= 1 + +x423 + x424 + x425 + x426 + x427 + x428 <= 1 + +x429 + x430 <= 1 + +x431 + x432 + x433 + x434 + x435 + x436 <= 1 + +x437 + x438 + x439 + x440 + x441 + x442 <= 1 + +x443 + x444 <= 1 + +x445 + x446 + x447 + x448 + x449 + x450 <= 1 + +x451 + x452 + x453 + x454 + x455 + x456 <= 1 + +x457 + x458 + x459 + x460 + x461 + x462 <= 1 + +x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 <= 1 + +x472 + x473 + x474 + x475 + x476 + x477 <= 1 + +x478 + x479 <= 1 + +x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x493 + x494 + x495 + x496 + x497 + x498 <= 1 + +x499 + x500 + x501 + x502 + x503 + x504 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 x503 x504 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0004.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0004.lp new file mode 100755 index 000000000..e101443dc --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0004.lp @@ -0,0 +1,1086 @@ +max + +1628.43x0 + 1773.07x1 + 1766.11x2 + 1698.26x3 + 1676.77x4 + 1665.3x5 + 1534.66x6 + 1624.1x7 + 1563.43x8 + 1541.53x9 + +1512.99x10 + 1498.25x11 + 659.967x12 + 861.749x13 + 848.301x14 + 786.315x15 + 695.515x16 + 673.202x17 + 165.925x18 + 210.679x19 + +206.78x20 + 137.166x21 + 308.772x22 + 456.819x23 + 364.292x24 + 335.31x25 + 301.56x26 + 274.924x27 + 791.084x28 + 995.457x29 + +981.816x30 + 916.287x31 + 907.225x32 + 897.8x33 + 307.451x34 + 436.069x35 + 434.874x36 + 394.288x37 + 334.192x38 + 418.371x39 + +611.564x40 + 536.827x41 + 481.053x42 + 441.824x43 + 440.657x44 + 586.291x45 + 673.521x46 + 528.403x47 + 522.433x48 + 497.641x49 + +492.475x50 + 595.299x51 + 661.976x52 + 651.662x53 + 638.269x54 + 592.448x55 + 572.944x56 + 1035.33x57 + 1375.45x58 + 1343.92x59 + +1247.55x60 + 1234.46x61 + 1220.76x62 + 131.655x63 + 148.055x64 + 471.004x65 + 653.068x66 + 502.41x67 + 453.91x68 + 453.187x69 + +413.739x70 + 916.185x71 + 1060.16x72 + 951.723x73 + 950.309x74 + 941.988x75 + 927.162x76 + 773.051x77 + 1116.75x78 + 1099.87x79 + +1097.96x80 + 1094.7x81 + 1086.1x82 + 268.441x83 + 382.689x84 + 342.469x85 + 320.275x86 + 238.582x87 + 851.027x88 + 1003.01x89 + +971.195x90 + 919.113x91 + 883.422x92 + 848.445x93 + 1925.41x94 + 2271.29x95 + 2145.8x96 + 2117.99x97 + 2047.66x98 + 2039.86x99 + +257.317x100 + 373.043x101 + 358.795x102 + 317.48x103 + 811.416x104 + 948.055x105 + 815.659x106 + 797.557x107 + 761.5x108 + 750.265x109 + +3.25639x110 + 1818.36x111 + 2183.83x112 + 1852.86x113 + 1834.89x114 + 1816.12x115 + 1789.08x116 + 301.483x117 + 339.783x118 + 326.109x119 + +227.259x120 + 65.6418x121 + 212.911x122 + 283.075x123 + 945.483x124 + 1175.47x125 + 1174.04x126 + 1149.37x127 + 1147.97x128 + 1083.13x129 + +1523.25x130 + 1880.25x131 + 1709.85x132 + 1677.66x133 + 1676.8x134 + 1669.05x135 + 614.387x136 + 727.462x137 + 723.584x138 + 701.12x139 + +668.419x140 + 664.221x141 + 295.696x142 + 293.729x143 + 270.802x144 + 63.3848x145 + 1820.6x146 + 1964.32x147 + 1929.31x148 + 1921.99x149 + +1804.15x150 + 1794.77x151 + 724.911x152 + 1015.6x153 + 864.827x154 + 772.75x155 + 757.422x156 + 726.647x157 + 1198.09x158 + 1280.83x159 + +1251.5x160 + 1216.56x161 + 1137.82x162 + 1073.98x163 + 797.266x164 + 1020.8x165 + 957.644x166 + 888.387x167 + 782.513x168 + 768.326x169 + +126.594x170 + 124.464x171 + 89.436x172 + 88.604x173 + 364.169x174 + 509.267x175 + 406.895x176 + 402.537x177 + 395.815x178 + 378.169x179 + +329.497x180 + 333.854x181 + 289.169x182 + 276.394x183 + 223.987x184 + 27.58x185 + 2306.1x186 + 2607.28x187 + 2543.75x188 + 2463.29x189 + +2446.9x190 + 2370.54x191 + 123.205x192 + 148.225x193 + 116.687x194 + 230.659x195 + 187.99x196 + 162.964x197 + 846.026x198 + 1132.01x199 + +1106.85x200 + 983.82x201 + 927.361x202 + 913.524x203 + 1250.86x204 + 1578.37x205 + 1538.08x206 + 1529.38x207 + 1521.93x208 + 1496.35x209 + +687.786x210 + 725.779x211 + 660.866x212 + 649.463x213 + 637.806x214 + 628.436x215 + 266.14x216 + 380.631x217 + 371.397x218 + 304.909x219 + +287.401x220 + 261.71x221 + 312.436x222 + 395.139x223 + 348.6x224 + 218.436x225 + 130.04x226 + 1065.85x227 + 1390.4x228 + 1373.7x229 + +1366.01x230 + 1351.4x231 + 1275.27x232 + 539.714x233 + 795.361x234 + 760.922x235 + 672.842x236 + 622.716x237 + 607.441x238 + 774.737x239 + +863.289x240 + 784.288x241 + 749.92x242 + 743.464x243 + 738.941x244 + 274.457x245 + 284.77x246 + 240.8x247 + 363.575x248 + 415.096x249 + +354.774x250 + 330.584x251 + 328.912x252 + 293.196x253 + 653.685x254 + 922.402x255 + 882.563x256 + 825.544x257 + 791.204x258 + 777.47x259 + +432.549x260 + 526.011x261 + 522.451x262 + 510.99x263 + 499.327x264 + 465.112x265 + 111.99x266 + 974.374x267 + 1314.86x268 + 1243.23x269 + +1237.83x270 + 1175.55x271 + 1151.4x272 + 1146.88x273 + 1685.9x274 + 1432.58x275 + 1427.68x276 + 1425.81x277 + 1384.88x278 + 210.567x279 + +235.593x280 + 1790.42x281 + 1903.94x282 + 1894.57x283 + 1862.63x284 + 1844.85x285 + 1839.24x286 + 168.093x287 + 249.876x288 + 181.997x289 + +1403.54x290 + 1788.18x291 + 1610.31x292 + 1559.81x293 + 1538.28x294 + 1525.02x295 + 623.043x296 + 593.349x297 + 485.388x298 + 483.064x299 + +470.044x300 + 441.994x301 + 183.646x302 + 239.847x303 + 170.61x304 + 154.275x305 + 969.825x306 + 1322.5x307 + 1243.55x308 + 1028.55x309 + +1008.99x310 + 983.812x311 + 920.014x312 + 1255.92x313 + 1214.06x314 + 1203.29x315 + 1194.7x316 + 1169.67x317 + 705.216x318 + 763.443x319 + +736.834x320 + 711.643x321 + 706.833x322 + 684.606x323 + 149.358x324 + 869.508x325 + 1022.96x326 + 994.894x327 + 989.445x328 + 977.884x329 + +942.815x330 + 186.689x331 + 240.073x332 + 202.915x333 + 166.876x334 + 945.301x335 + 1028.02x336 + 996.051x337 + 990.222x338 + 980.493x339 + +944.734x340 + 317.83x341 + 348.848x342 + 275.304x343 + 189.849x344 + 104.654x345 + 305.107x346 + 343.843x347 + 327.642x348 + 159.131x349 + +304.698x350 + 339.525x351 + 331.564x352 + 302.005x353 + 286.301x354 + 219.39x355 + 116.313x356 + 202.934x357 + 276.808x358 + 260.405x359 + +250.531x360 + 175.409x361 + 491.121x362 + 454.177x363 + 372.107x364 + 343.584x365 + 260.458x366 + 270.454x367 + 309.998x368 + 306.995x369 + +238.364x370 + 222.291x371 + 246.562x372 + 244.696x373 + 133.884x374 + 966.952x375 + 1190.33x376 + 1132.05x377 + 1122.07x378 + 1062.3x379 + +1034.01x380 + 431.129x381 + 530.846x382 + 504.673x383 + 476.322x384 + 455.458x385 + 404.703x386 + 644.027x387 + 797.757x388 + 769.44x389 + +768.043x390 + 738.549x391 + 722.083x392 + 264.202x393 + 267.164x394 + 230.276x395 + 146.215x396 + 2455.71x397 + 2759.89x398 + 2756.77x399 + +2747.75x400 + 2721.31x401 + 2680.65x402 + 544.123x403 + 752.903x404 + 710.219x405 + 707.948x406 + 674.348x407 + 652.162x408 + 239.704x409 + +250.56x410 + 235.536x411 + 218.27x412 + 186.066x413 + 389.731x414 + 386.915x415 + 355.585x416 + 339.412x417 + 312.361x418 + 34.6047x419 + +525.953x420 + 562.373x421 + 502.205x422 + 491.802x423 + 491.663x424 + 473.074x425 + 1126.54x426 + 1337.04x427 + 1300.2x428 + 1254.25x429 + +1229.77x430 + 1225.96x431 + 832.214x432 + 901.753x433 + 897.269x434 + 863.186x435 + 786.869x436 + 785.593x437 + 3107.46x438 + 3216.74x439 + +3194.74x440 + 3165.92x441 + 3141.61x442 + 3117.61x443 + 2292.75x444 + 2497.24x445 + 2476.14x446 + 2462.08x447 + 2392.3x448 + 2381.31x449 + +572.276x450 + 629.411x451 + 624.688x452 + 608.251x453 + 589.364x454 + 559.076x455 + 670.829x456 + 881.112x457 + 871.512x458 + 869.366x459 + +852.818x460 + 849.479x461 + 361.297x462 + 420.327x463 + 393.774x464 + 369.142x465 + 367.609x466 + 338.967x467 + 987.483x468 + 1467.47x469 + +1448.58x470 + 1395.84x471 + 1362.72x472 + 1314.25x473 + 195.574x474 + 283.064x475 + 279.749x476 + 116.668x477 + 434.81x478 + 602.084x479 + +596.377x480 + 536.537x481 + 490.934x482 + 448.642x483 + 72.3057x484 + 845.501x485 + 1146.38x486 + 1119.94x487 + 1046.89x488 + 995.058x489 + +979.361x490 + 806.177x491 + 1144.97x492 + 1106.81x493 + 1084.42x494 + 1063.25x495 + 1044.5x496 + 256.157x497 + 255.135x498 + 182.926x499 + +144.108x500 + 127.852x501 + +st + +x11 + x32 + x33 + x79 + x82 + x97 + x106 + x112 + x113 + x116 ++ x227 + x230 + x231 + x244 + x281 + x283 + x285 + x316 + x328 + x330 ++ x376 + x377 + x386 + x425 + x428 + x438 + x439 + x450 + x454 + x464 ++ x467 + x469 + x488 + x491 + x494 <= 1 + +x8 + x11 + x30 + x32 + x33 + x69 + x77 + x78 + x79 + x80 ++ x91 + x101 + x135 + x186 + x187 + x190 + x227 + x232 + x254 + x256 ++ x271 + x281 + x312 + x316 + x325 + x328 + x329 + x375 + x376 + x377 ++ x381 + x384 + x386 + x401 + x421 + x423 + x439 + x441 + x452 + x455 ++ x462 + x466 + x469 + x472 + x486 + x488 + x490 + x491 + x494 <= 1 + +x28 + x32 + x33 + x61 + x77 + x79 + x80 + x82 + x91 + x136 ++ x217 + x227 + x230 + x232 + x254 + x256 + x284 + x312 + x321 + x323 ++ x328 + x329 + x375 + x376 + x377 + x381 + x386 + x439 + x441 + x469 ++ x491 + x494 <= 1 + +x32 + x61 + x77 + x79 + x80 + x82 + x120 + x136 + x138 + x139 ++ x141 + x231 + x232 + x254 + x256 + x257 + x258 + x284 + x286 + x312 ++ x317 + x318 + x320 + x321 + x328 + x377 + x381 + x386 + x468 + x469 ++ x480 + x486 <= 1 + +x4 + x5 + x11 + x24 + x31 + x38 + x57 + x59 + x60 + x61 ++ x62 + x65 + x66 + x67 + x70 + x120 + x127 + x130 + x135 + x136 ++ x138 + x139 + x141 + x150 + x151 + x158 + x159 + x160 + x189 + x191 ++ x230 + x231 + x254 + x255 + x256 + x257 + x258 + x281 + x282 + x284 ++ x285 + x286 + x290 + x293 + x307 + x312 + x313 + x314 + x315 + x316 ++ x317 + x318 + x319 + x320 + x321 + x322 + x323 + x328 + x377 + x447 ++ x451 + x468 + x469 + x486 + x493 + x495 <= 1 + +x5 + x8 + x24 + x38 + x57 + x60 + x61 + x62 + x66 + x70 ++ x117 + x120 + x127 + x130 + x131 + x135 + x136 + x138 + x139 + x150 ++ x151 + x159 + x163 + x184 + x229 + x230 + x231 + x254 + x258 + x272 ++ x281 + x284 + x286 + x290 + x293 + x294 + x312 + x313 + x314 + x317 ++ x318 + x319 + x320 + x321 + x322 + x377 + x405 + x438 + x441 + x442 ++ x447 + x468 <= 1 + +x5 + x34 + x38 + x57 + x60 + x61 + x66 + x70 + x75 + x130 ++ x131 + x134 + x135 + x150 + x151 + x229 + x231 + x254 + x258 + x272 ++ x290 + x293 + x294 + x314 + x317 + x318 + x405 + x438 + x441 + x442 ++ x443 + x444 + x468 + x477 <= 1 + +x31 + x34 + x36 + x37 + x57 + x94 + x109 + x130 + x132 + x135 ++ x140 + x141 + x146 + x148 + x150 + x158 + x163 + x186 + x189 + x191 ++ x229 + x240 + x293 + x294 + x302 + x303 + x313 + x314 + x317 + x397 ++ x405 + x444 + x448 + x468 <= 1 + +x34 + x36 + x37 + x95 + x104 + x105 + x109 + x130 + x132 + x133 ++ x135 + x146 + x148 + x150 + x155 + x157 + x158 + x163 + x186 + x189 ++ x191 + x200 + x293 + x294 + x303 + x441 + x442 + x448 + x494 <= 1 + +x37 + x86 + x100 + x105 + x109 + x132 + x133 + x135 + x146 + x150 ++ x157 + x158 + x161 + x167 + x186 + x189 + x191 + x294 + x336 + x399 ++ x438 + x439 + x441 + x442 <= 1 + +x11 + x28 + x32 + x33 + x56 + x65 + x69 + x77 + x79 + x82 ++ x97 + x112 + x113 + x114 + x116 + x227 + x230 + x231 + x239 + x244 ++ x281 + x283 + x284 + x285 + x309 + x316 + x325 + x328 + x329 + x330 ++ x357 + x359 + x376 + x377 + x386 + x390 + x425 + x433 + x438 + x439 ++ x443 + x450 + x454 + x456 + x464 + x467 + x469 + x471 + x472 + x488 ++ x491 + x494 + x496 <= 1 + +x4 + x8 + x11 + x28 + x30 + x32 + x33 + x56 + x60 + x65 ++ x68 + x69 + x70 + x73 + x77 + x78 + x79 + x80 + x81 + x82 ++ x97 + x101 + x113 + x133 + x135 + x186 + x187 + x191 + x198 + x227 ++ x230 + x232 + x244 + x254 + x259 + x281 + x283 + x284 + x285 + x286 ++ x312 + x316 + x317 + x323 + x325 + x328 + x329 + x330 + x357 + x358 ++ x360 + x375 + x376 + x377 + x381 + x383 + x384 + x386 + x398 + x399 ++ x401 + x420 + x421 + x423 + x438 + x439 + x441 + x443 + x450 + x451 ++ x452 + x453 + x454 + x455 + x456 + x462 + x465 + x466 + x467 + x469 ++ x472 + x486 + x488 + x490 + x491 + x493 + x494 + x501 <= 1 + +x1 + x8 + x11 + x28 + x29 + x30 + x32 + x33 + x65 + x70 ++ x79 + x82 + x91 + x97 + x131 + x133 + x134 + x135 + x152 + x186 ++ x187 + x188 + x191 + x211 + x217 + x227 + x230 + x244 + x272 + x281 ++ x283 + x284 + x285 + x286 + x312 + x316 + x317 + x323 + x325 + x328 ++ x329 + x330 + x357 + x360 + x361 + x375 + x376 + x377 + x381 + x384 ++ x386 + x423 + x424 + x439 + x441 + x450 + x451 + x452 + x453 + x454 ++ x455 + x469 + x471 + x472 + x486 + x488 + x490 + x491 + x493 + x494 ++ x497 + x498 + x501 <= 1 + +x1 + x3 + x7 + x8 + x11 + x22 + x24 + x28 + x30 + x31 ++ x32 + x33 + x57 + x65 + x67 + x70 + x72 + x73 + x82 + x127 ++ x131 + x133 + x134 + x135 + x138 + x139 + x141 + x147 + x150 + x186 ++ x187 + x188 + x191 + x211 + x216 + x217 + x220 + x227 + x230 + x232 ++ x244 + x256 + x257 + x269 + x272 + x273 + x281 + x282 + x283 + x284 ++ x285 + x286 + x290 + x312 + x316 + x317 + x318 + x319 + x320 + x321 ++ x322 + x323 + x329 + x330 + x360 + x377 + x398 + x404 + x423 + x429 ++ x439 + x442 + x447 + x450 + x451 + x452 + x455 + x469 + x471 + x472 ++ x486 + x490 + x493 + x494 + x495 + x497 + x498 + x501 <= 1 + +x3 + x4 + x5 + x8 + x11 + x24 + x27 + x28 + x30 + x31 ++ x32 + x57 + x60 + x61 + x62 + x65 + x66 + x67 + x70 + x72 ++ x73 + x75 + x76 + x110 + x112 + x115 + x127 + x131 + x134 + x135 ++ x136 + x137 + x138 + x139 + x141 + x147 + x148 + x149 + x150 + x151 ++ x159 + x160 + x211 + x230 + x231 + x255 + x256 + x257 + x258 + x268 ++ x269 + x272 + x273 + x281 + x282 + x284 + x285 + x286 + x290 + x293 ++ x312 + x313 + x314 + x315 + x316 + x317 + x318 + x319 + x320 + x321 ++ x322 + x323 + x404 + x439 + x447 + x451 + x452 + x468 + x469 + x476 ++ x486 + x491 + x493 + x495 + x498 <= 1 + +x5 + x8 + x28 + x31 + x57 + x59 + x60 + x61 + x62 + x66 ++ x70 + x75 + x76 + x95 + x112 + x122 + x123 + x124 + x127 + x131 ++ x134 + x135 + x138 + x139 + x141 + x148 + x150 + x151 + x158 + x159 ++ x160 + x163 + x187 + x188 + x189 + x190 + x191 + x208 + x211 + x229 ++ x230 + x231 + x254 + x255 + x256 + x257 + x258 + x272 + x281 + x282 ++ x284 + x286 + x290 + x293 + x294 + x300 + x307 + x308 + x312 + x313 ++ x314 + x317 + x318 + x319 + x320 + x321 + x322 + x323 + x326 + x377 ++ x388 + x404 + x405 + x438 + x439 + x443 + x447 + x451 + x452 + x468 ++ x469 + x486 + x491 + x493 + x495 <= 1 + +x30 + x31 + x34 + x35 + x36 + x37 + x38 + x57 + x75 + x95 ++ x102 + x115 + x127 + x130 + x131 + x132 + x134 + x135 + x136 + x140 ++ x141 + x186 + x189 + x191 + x229 + x231 + x272 + x290 + x293 + x294 ++ x303 + x313 + x314 + x317 + x326 + x405 + x438 + x439 + x440 + x441 ++ x442 + x443 + x444 + x448 + x468 + x474 + x477 + x493 <= 1 + +x34 + x35 + x36 + x57 + x74 + x94 + x95 + x99 + x105 + x109 ++ x115 + x119 + x127 + x130 + x131 + x132 + x133 + x134 + x135 + x136 ++ x146 + x148 + x150 + x151 + x163 + x187 + x207 + x228 + x229 + x240 ++ x293 + x294 + x313 + x314 + x317 + x345 + x373 + x397 + x399 + x405 ++ x438 + x439 + x440 + x441 + x442 + x443 + x444 + x448 + x453 + x468 ++ x493 + x494 <= 1 + +x35 + x36 + x37 + x86 + x95 + x104 + x105 + x109 + x130 + x131 ++ x132 + x133 + x134 + x135 + x146 + x148 + x150 + x151 + x152 + x155 ++ x157 + x158 + x161 + x163 + x186 + x189 + x191 + x193 + x200 + x204 ++ x236 + x240 + x275 + x293 + x294 + x303 + x313 + x314 + x317 + x336 ++ x388 + x399 + x411 + x438 + x441 + x442 + x443 + x444 + x448 + x453 ++ x468 + x494 <= 1 + +x37 + x74 + x84 + x86 + x95 + x98 + x105 + x109 + x131 + x132 ++ x133 + x135 + x146 + x150 + x151 + x152 + x157 + x158 + x161 + x186 ++ x189 + x191 + x192 + x193 + x228 + x229 + x231 + x240 + x267 + x275 ++ x294 + x314 + x336 + x398 + x399 + x438 + x441 + x442 + x448 + x494 + <= 1 + +x11 + x32 + x33 + x51 + x53 + x56 + x65 + x67 + x68 + x69 ++ x77 + x79 + x80 + x81 + x82 + x108 + x111 + x112 + x113 + x114 ++ x116 + x203 + x212 + x227 + x229 + x230 + x231 + x239 + x244 + x254 ++ x259 + x281 + x283 + x285 + x309 + x316 + x325 + x328 + x329 + x330 ++ x358 + x359 + x364 + x383 + x421 + x424 + x425 + x433 + x439 + x450 ++ x453 + x454 + x455 + x461 + x462 + x464 + x465 + x466 + x471 + x472 ++ x485 + x486 + x488 <= 1 + +x0 + x3 + x4 + x28 + x29 + x30 + x33 + x65 + x67 + x68 ++ x69 + x73 + x77 + x78 + x79 + x80 + x81 + x82 + x112 + x113 ++ x116 + x135 + x179 + x203 + x227 + x229 + x230 + x232 + x239 + x244 ++ x259 + x278 + x281 + x283 + x285 + x295 + x312 + x316 + x317 + x325 ++ x328 + x330 + x358 + x359 + x361 + x377 + x383 + x420 + x421 + x423 ++ x424 + x425 + x438 + x439 + x441 + x443 + x450 + x451 + x452 + x453 ++ x454 + x455 + x461 + x462 + x464 + x465 + x466 + x467 + x469 + x471 ++ x472 + x485 + x486 + x488 + x491 <= 1 + +x1 + x2 + x3 + x4 + x11 + x28 + x29 + x30 + x32 + x33 ++ x60 + x65 + x67 + x68 + x69 + x73 + x75 + x77 + x78 + x79 ++ x80 + x81 + x82 + x91 + x96 + x97 + x101 + x112 + x113 + x116 ++ x134 + x135 + x146 + x151 + x152 + x186 + x187 + x191 + x216 + x227 ++ x230 + x232 + x239 + x244 + x259 + x273 + x278 + x281 + x283 + x284 ++ x285 + x286 + x312 + x315 + x316 + x317 + x323 + x325 + x327 + x328 ++ x329 + x330 + x357 + x360 + x361 + x376 + x377 + x381 + x384 + x385 ++ x386 + x398 + x399 + x400 + x401 + x420 + x421 + x423 + x424 + x425 ++ x439 + x440 + x443 + x450 + x455 + x461 + x462 + x463 + x465 + x466 ++ x467 + x469 + x471 + x472 + x486 + x487 + x488 + x490 + x491 + x494 + <= 1 + +x1 + x3 + x4 + x6 + x7 + x8 + x11 + x16 + x28 + x30 ++ x31 + x32 + x59 + x60 + x67 + x73 + x77 + x78 + x82 + x98 ++ x127 + x132 + x133 + x134 + x135 + x159 + x160 + x184 + x186 + x187 ++ x188 + x191 + x216 + x217 + x219 + x220 + x227 + x230 + x232 + x244 ++ x257 + x272 + x273 + x281 + x282 + x283 + x284 + x285 + x286 + x290 ++ x312 + x315 + x318 + x319 + x320 + x323 + x325 + x326 + x327 + x328 ++ x329 + x330 + x381 + x385 + x391 + x398 + x399 + x401 + x429 + x439 ++ x442 + x443 + x461 + x467 + x469 + x472 + x486 + x488 + x490 + x491 ++ x494 + x496 + x501 <= 1 + +x3 + x4 + x6 + x7 + x8 + x11 + x24 + x27 + x28 + x30 ++ x31 + x32 + x58 + x59 + x60 + x61 + x62 + x67 + x72 + x73 ++ x76 + x81 + x98 + x112 + x115 + x127 + x132 + x133 + x134 + x135 ++ x148 + x149 + x150 + x151 + x159 + x160 + x186 + x187 + x188 + x190 ++ x191 + x215 + x217 + x218 + x219 + x220 + x227 + x230 + x231 + x232 ++ x255 + x257 + x269 + x271 + x281 + x282 + x283 + x284 + x285 + x286 ++ x290 + x308 + x313 + x314 + x315 + x316 + x317 + x318 + x319 + x320 ++ x321 + x323 + x325 + x326 + x327 + x328 + x329 + x330 + x361 + x388 ++ x391 + x398 + x399 + x401 + x438 + x439 + x440 + x442 + x443 + x461 ++ x469 + x491 + x492 + x494 + x495 + x496 <= 1 + +x5 + x11 + x28 + x30 + x31 + x57 + x58 + x59 + x60 + x61 ++ x62 + x66 + x70 + x72 + x73 + x74 + x75 + x76 + x95 + x115 ++ x123 + x127 + x131 + x134 + x135 + x136 + x137 + x138 + x139 + x140 ++ x141 + x146 + x147 + x148 + x149 + x150 + x151 + x158 + x159 + x160 ++ x187 + x188 + x189 + x190 + x191 + x205 + x208 + x211 + x229 + x230 ++ x243 + x254 + x255 + x256 + x257 + x258 + x267 + x272 + x273 + x281 ++ x282 + x284 + x285 + x286 + x290 + x307 + x308 + x312 + x313 + x318 ++ x319 + x320 + x321 + x322 + x326 + x338 + x377 + x388 + x392 + x404 ++ x405 + x438 + x439 + x440 + x443 + x446 + x447 + x468 + x469 + x470 ++ x474 + x476 + x486 + x493 + x495 + x496 + x498 <= 1 + +x5 + x30 + x31 + x46 + x57 + x59 + x60 + x61 + x62 + x71 ++ x72 + x75 + x81 + x95 + x105 + x125 + x127 + x131 + x133 + x134 ++ x135 + x136 + x138 + x139 + x140 + x141 + x146 + x147 + x148 + x149 ++ x150 + x151 + x158 + x159 + x160 + x162 + x163 + x186 + x188 + x189 ++ x190 + x191 + x208 + x229 + x230 + x250 + x255 + x293 + x294 + x307 ++ x308 + x313 + x314 + x319 + x326 + x338 + x356 + x388 + x398 + x399 ++ x403 + x404 + x405 + x438 + x439 + x440 + x441 + x442 + x443 + x447 ++ x470 + x474 + x475 + x476 + x477 + x493 + x495 + x496 <= 1 + +x5 + x9 + x34 + x74 + x92 + x94 + x95 + x98 + x99 + x105 ++ x109 + x115 + x117 + x118 + x119 + x130 + x132 + x133 + x135 + x146 ++ x148 + x150 + x151 + x157 + x161 + x163 + x187 + x188 + x189 + x207 ++ x228 + x240 + x264 + x275 + x277 + x290 + x293 + x294 + x307 + x336 ++ x397 + x398 + x399 + x401 + x410 + x440 + x441 + x442 + x444 + x448 + <= 1 + +x9 + x35 + x36 + x74 + x83 + x84 + x92 + x95 + x105 + x109 ++ x115 + x119 + x130 + x131 + x132 + x133 + x135 + x146 + x148 + x150 ++ x151 + x152 + x155 + x157 + x158 + x161 + x162 + x163 + x171 + x186 ++ x187 + x188 + x189 + x191 + x240 + x275 + x277 + x293 + x294 + x313 ++ x314 + x317 + x336 + x338 + x388 + x405 + x440 + x444 + x448 + x468 ++ x493 <= 1 + +x9 + x35 + x71 + x74 + x83 + x84 + x86 + x98 + x115 + x130 ++ x131 + x132 + x133 + x150 + x152 + x155 + x157 + x158 + x161 + x162 ++ x163 + x171 + x172 + x186 + x189 + x191 + x192 + x193 + x204 + x228 ++ x231 + x240 + x267 + x294 + x303 + x314 + x336 + x388 + x397 + x398 ++ x399 + x411 + x438 + x441 + x442 + x448 + x481 + x494 <= 1 + +x1 + x8 + x11 + x51 + x53 + x56 + x68 + x69 + x77 + x80 ++ x81 + x106 + x108 + x113 + x114 + x116 + x166 + x186 + x212 + x229 ++ x231 + x254 + x273 + x274 + x275 + x281 + x283 + x285 + x306 + x309 ++ x316 + x330 + x349 + x358 + x364 + x384 + x416 + x420 + x421 + x424 ++ x425 + x438 + x453 + x454 + x455 + x458 + x460 + x461 + x464 + x465 ++ x485 + x486 + x488 + x490 <= 1 + +x0 + x1 + x2 + x4 + x7 + x8 + x11 + x19 + x30 + x33 ++ x51 + x52 + x53 + x56 + x68 + x69 + x77 + x79 + x80 + x81 ++ x82 + x96 + x98 + x104 + x106 + x107 + x108 + x112 + x113 + x114 ++ x116 + x146 + x166 + x179 + x186 + x200 + x203 + x212 + x244 + x259 ++ x273 + x274 + x275 + x276 + x278 + x281 + x295 + x297 + x309 + x312 ++ x315 + x316 + x325 + x328 + x330 + x349 + x359 + x364 + x381 + x382 ++ x383 + x384 + x385 + x389 + x416 + x420 + x421 + x424 + x438 + x439 ++ x440 + x451 + x452 + x453 + x454 + x458 + x460 + x461 + x466 + x470 ++ x471 + x472 + x485 + x486 + x488 + x490 + x492 <= 1 + +x0 + x1 + x2 + x4 + x6 + x7 + x8 + x9 + x11 + x28 ++ x29 + x30 + x32 + x33 + x47 + x48 + x52 + x55 + x59 + x81 ++ x96 + x98 + x104 + x106 + x107 + x108 + x112 + x114 + x116 + x134 ++ x146 + x148 + x151 + x166 + x167 + x186 + x187 + x190 + x191 + x200 ++ x213 + x216 + x219 + x220 + x221 + x227 + x230 + x232 + x239 + x241 ++ x243 + x244 + x259 + x268 + x273 + x275 + x276 + x278 + x281 + x283 ++ x284 + x286 + x295 + x308 + x309 + x311 + x312 + x314 + x315 + x316 ++ x325 + x377 + x381 + x382 + x383 + x384 + x385 + x386 + x389 + x398 ++ x399 + x400 + x401 + x423 + x424 + x429 + x439 + x440 + x460 + x461 ++ x462 + x463 + x465 + x470 + x471 + x472 + x485 + x486 + x487 + x488 ++ x490 + x491 + x492 + x495 + x499 <= 1 + +x0 + x1 + x2 + x3 + x4 + x6 + x7 + x8 + x11 + x42 ++ x47 + x48 + x78 + x81 + x82 + x88 + x96 + x98 + x112 + x114 ++ x134 + x135 + x146 + x148 + x150 + x151 + x159 + x160 + x167 + x186 ++ x187 + x188 + x190 + x191 + x200 + x215 + x216 + x217 + x218 + x219 ++ x220 + x227 + x230 + x231 + x232 + x255 + x259 + x273 + x281 + x282 ++ x283 + x284 + x285 + x286 + x290 + x292 + x295 + x308 + x311 + x312 ++ x313 + x314 + x315 + x319 + x320 + x321 + x325 + x326 + x327 + x328 ++ x330 + x376 + x385 + x389 + x398 + x399 + x400 + x401 + x429 + x439 ++ x440 + x443 + x463 + x469 + x470 + x471 + x485 + x490 + x491 + x492 ++ x495 + x496 + x499 <= 1 + +x0 + x1 + x3 + x4 + x5 + x7 + x43 + x57 + x58 + x59 ++ x60 + x61 + x62 + x66 + x67 + x71 + x72 + x73 + x74 + x75 ++ x76 + x112 + x115 + x127 + x132 + x133 + x134 + x147 + x148 + x149 ++ x150 + x151 + x159 + x160 + x161 + x162 + x186 + x187 + x188 + x189 ++ x190 + x191 + x215 + x229 + x239 + x240 + x241 + x242 + x243 + x255 ++ x267 + x268 + x269 + x284 + x285 + x286 + x290 + x295 + x313 + x315 ++ x317 + x325 + x326 + x327 + x329 + x330 + x338 + x382 + x388 + x389 ++ x391 + x398 + x399 + x401 + x438 + x439 + x440 + x442 + x443 + x471 ++ x495 + x496 <= 1 + +x0 + x1 + x4 + x5 + x7 + x11 + x31 + x40 + x43 + x46 ++ x57 + x58 + x59 + x60 + x61 + x62 + x66 + x71 + x72 + x73 ++ x74 + x75 + x76 + x95 + x96 + x98 + x99 + x115 + x123 + x127 ++ x130 + x131 + x132 + x133 + x134 + x137 + x138 + x140 + x146 + x147 ++ x148 + x149 + x150 + x151 + x158 + x159 + x160 + x162 + x186 + x187 ++ x188 + x189 + x190 + x191 + x205 + x228 + x229 + x239 + x240 + x241 ++ x242 + x243 + x255 + x256 + x257 + x258 + x267 + x269 + x284 + x286 ++ x290 + x292 + x307 + x308 + x313 + x326 + x338 + x387 + x388 + x391 ++ x392 + x398 + x399 + x401 + x404 + x406 + x438 + x439 + x440 + x441 ++ x442 + x443 + x445 + x446 + x447 + x448 + x470 + x492 + x493 + x495 ++ x496 <= 1 + +x0 + x5 + x31 + x46 + x57 + x62 + x71 + x72 + x73 + x74 ++ x75 + x76 + x81 + x95 + x96 + x97 + x98 + x99 + x105 + x115 ++ x118 + x125 + x126 + x127 + x130 + x131 + x132 + x133 + x134 + x135 ++ x139 + x146 + x148 + x149 + x150 + x151 + x158 + x159 + x160 + x162 ++ x163 + x188 + x189 + x190 + x220 + x228 + x229 + x230 + x239 + x241 ++ x242 + x255 + x256 + x257 + x271 + x290 + x294 + x307 + x308 + x313 ++ x314 + x326 + x327 + x338 + x391 + x397 + x398 + x399 + x400 + x401 ++ x403 + x404 + x405 + x406 + x412 + x438 + x439 + x440 + x441 + x442 ++ x443 + x444 + x445 + x446 + x447 + x448 + x470 + x475 + x492 + x493 ++ x495 + x496 <= 1 + +x5 + x9 + x62 + x64 + x71 + x74 + x98 + x99 + x105 + x109 ++ x111 + x115 + x117 + x118 + x126 + x130 + x131 + x132 + x133 + x134 ++ x146 + x148 + x150 + x151 + x155 + x157 + x158 + x159 + x160 + x162 ++ x163 + x186 + x188 + x189 + x190 + x228 + x229 + x231 + x242 + x264 ++ x277 + x290 + x292 + x293 + x294 + x307 + x338 + x365 + x391 + x397 ++ x398 + x399 + x401 + x402 + x409 + x410 + x411 + x412 + x439 + x440 ++ x441 + x442 + x443 + x444 + x448 + x470 + x475 + x495 + x496 <= 1 + +x9 + x35 + x71 + x74 + x84 + x98 + x99 + x105 + x109 + x115 ++ x130 + x131 + x133 + x146 + x148 + x150 + x151 + x155 + x157 + x158 ++ x160 + x161 + x162 + x163 + x170 + x172 + x186 + x189 + x194 + x204 ++ x208 + x228 + x231 + x264 + x267 + x277 + x292 + x294 + x314 + x317 ++ x338 + x397 + x398 + x399 + x409 + x410 + x411 + x438 + x439 + x440 ++ x441 + x442 + x443 + x444 + x448 + x470 <= 1 + +x71 + x74 + x83 + x84 + x86 + x98 + x115 + x128 + x130 + x133 ++ x146 + x148 + x150 + x151 + x152 + x155 + x157 + x158 + x161 + x162 ++ x163 + x170 + x171 + x172 + x173 + x191 + x192 + x193 + x194 + x204 ++ x228 + x231 + x264 + x267 + x294 + x313 + x314 + x336 + x399 + x442 ++ x444 <= 1 + +x11 + x18 + x19 + x41 + x51 + x53 + x56 + x68 + x78 + x79 ++ x81 + x96 + x104 + x106 + x108 + x111 + x113 + x114 + x116 + x186 ++ x191 + x212 + x214 + x229 + x231 + x232 + x274 + x275 + x276 + x293 ++ x306 + x309 + x316 + x384 + x387 + x425 + x456 + x457 + x458 + x460 ++ x461 + x464 + x471 <= 1 + +x0 + x1 + x2 + x4 + x19 + x41 + x51 + x52 + x53 + x54 ++ x55 + x56 + x68 + x69 + x78 + x79 + x80 + x81 + x82 + x96 ++ x104 + x106 + x107 + x108 + x111 + x113 + x114 + x116 + x127 + x151 ++ x179 + x186 + x191 + x200 + x202 + x210 + x212 + x213 + x214 + x229 ++ x231 + x273 + x274 + x275 + x276 + x278 + x312 + x349 + x362 + x364 ++ x382 + x383 + x385 + x398 + x400 + x402 + x415 + x416 + x420 + x422 ++ x431 + x442 + x456 + x457 + x458 + x460 + x461 + x470 + x471 + x485 ++ x492 <= 1 + +x0 + x1 + x2 + x4 + x6 + x7 + x8 + x11 + x28 + x29 ++ x33 + x39 + x40 + x51 + x52 + x53 + x54 + x55 + x56 + x78 ++ x80 + x96 + x104 + x106 + x107 + x108 + x116 + x146 + x151 + x161 ++ x202 + x210 + x212 + x213 + x214 + x227 + x239 + x243 + x259 + x271 ++ x273 + x275 + x276 + x278 + x284 + x292 + x295 + x308 + x311 + x316 ++ x325 + x326 + x327 + x347 + x348 + x382 + x383 + x384 + x385 + x392 ++ x396 + x398 + x429 + x431 + x438 + x439 + x463 + x470 + x471 + x485 ++ x486 + x487 + x489 + x490 + x492 + x500 <= 1 + +x0 + x1 + x2 + x3 + x4 + x6 + x7 + x8 + x11 + x24 ++ x39 + x42 + x47 + x48 + x59 + x78 + x80 + x81 + x96 + x97 ++ x112 + x114 + x146 + x151 + x154 + x160 + x161 + x162 + x186 + x187 ++ x190 + x191 + x216 + x218 + x219 + x221 + x227 + x230 + x232 + x235 ++ x241 + x242 + x243 + x273 + x276 + x278 + x281 + x282 + x283 + x284 ++ x285 + x286 + x290 + x292 + x295 + x308 + x312 + x315 + x316 + x325 ++ x326 + x327 + x330 + x382 + x383 + x385 + x389 + x398 + x400 + x438 ++ x439 + x440 + x443 + x460 + x463 + x470 + x485 + x490 + x491 + x492 ++ x495 + x496 + x499 + x500 <= 1 + +x0 + x1 + x6 + x7 + x8 + x11 + x24 + x43 + x45 + x46 ++ x47 + x58 + x59 + x60 + x71 + x72 + x73 + x76 + x80 + x96 ++ x97 + x107 + x112 + x128 + x132 + x134 + x137 + x146 + x147 + x148 ++ x149 + x150 + x159 + x160 + x161 + x162 + x186 + x187 + x188 + x189 ++ x190 + x202 + x210 + x215 + x218 + x221 + x229 + x230 + x232 + x235 ++ x241 + x242 + x243 + x258 + x259 + x268 + x269 + x276 + x282 + x283 ++ x285 + x286 + x290 + x292 + x295 + x315 + x325 + x326 + x327 + x330 ++ x338 + x380 + x382 + x385 + x387 + x389 + x417 + x438 + x439 + x440 ++ x442 + x463 + x469 + x470 + x485 + x489 + x492 + x495 + x496 <= 1 + +x0 + x1 + x5 + x31 + x40 + x43 + x46 + x59 + x60 + x61 ++ x62 + x71 + x72 + x73 + x95 + x96 + x97 + x98 + x99 + x107 ++ x112 + x115 + x132 + x134 + x137 + x140 + x147 + x160 + x162 + x186 ++ x187 + x188 + x189 + x190 + x191 + x209 + x215 + x228 + x229 + x239 ++ x240 + x241 + x242 + x243 + x257 + x258 + x259 + x268 + x269 + x270 ++ x274 + x282 + x286 + x290 + x291 + x292 + x295 + x307 + x313 + x326 ++ x327 + x338 + x380 + x387 + x388 + x389 + x390 + x391 + x392 + x398 ++ x399 + x427 + x438 + x439 + x440 + x441 + x442 + x445 + x446 + x449 ++ x469 + x470 + x492 + x493 + x496 <= 1 + +x5 + x7 + x46 + x57 + x58 + x59 + x60 + x61 + x62 + x66 ++ x71 + x72 + x74 + x76 + x95 + x96 + x97 + x98 + x99 + x100 ++ x125 + x126 + x127 + x130 + x131 + x133 + x134 + x140 + x146 + x147 ++ x148 + x149 + x151 + x162 + x163 + x186 + x187 + x188 + x189 + x190 ++ x191 + x205 + x209 + x215 + x229 + x239 + x240 + x242 + x243 + x255 ++ x256 + x258 + x262 + x267 + x269 + x271 + x274 + x286 + x307 + x313 ++ x326 + x327 + x335 + x338 + x340 + x380 + x387 + x390 + x391 + x392 ++ x397 + x398 + x399 + x400 + x403 + x404 + x406 + x427 + x438 + x439 ++ x440 + x442 + x444 + x445 + x446 + x447 + x448 + x449 + x470 + x487 + <= 1 + +x9 + x57 + x62 + x63 + x64 + x94 + x98 + x99 + x109 + x111 ++ x115 + x125 + x126 + x130 + x133 + x134 + x146 + x148 + x157 + x158 ++ x162 + x163 + x175 + x188 + x189 + x201 + x228 + x277 + x292 + x294 ++ x307 + x338 + x397 + x398 + x399 + x401 + x402 + x403 + x409 + x410 ++ x412 + x440 + x442 + x443 + x445 + x446 + x447 + x448 + x449 + x470 ++ x485 <= 1 + +x0 + x5 + x91 + x109 + x111 + x124 + x125 + x126 + x128 + x133 ++ x146 + x148 + x173 + x188 + x189 + x194 + x201 + x228 + x264 + x267 ++ x270 + x294 + x412 + x440 + x443 + x444 + x445 + x446 + x449 <= 1 + +x0 + x5 + x98 + x124 + x125 + x126 + x128 + x133 + x155 + x161 ++ x163 + x170 + x173 + x192 + x194 + x206 + x228 + x264 + x267 + x270 ++ x311 + x438 + x444 + x449 <= 1 + +x18 + x20 + x21 + x51 + x53 + x56 + x95 + x96 + x111 + x113 ++ x114 + x175 + x178 + x191 + x212 + x224 + x229 + x231 + x232 + x245 ++ x247 + x274 + x275 + x276 + x277 + x285 + x293 + x306 + x308 + x309 ++ x311 + x366 + x422 + x433 + x434 + x438 + x442 + x456 + x457 + x458 ++ x459 + x460 + x461 + x471 <= 1 + +x0 + x1 + x2 + x3 + x4 + x7 + x8 + x41 + x44 + x45 ++ x49 + x50 + x51 + x52 + x54 + x55 + x68 + x78 + x79 + x80 ++ x81 + x82 + x89 + x104 + x106 + x107 + x108 + x111 + x113 + x114 ++ x116 + x161 + x181 + x189 + x202 + x214 + x236 + x273 + x274 + x275 ++ x276 + x277 + x278 + x291 + x306 + x308 + x309 + x310 + x311 + x315 ++ x346 + x349 + x362 + x363 + x364 + x394 + x398 + x400 + x402 + x414 ++ x415 + x416 + x420 + x422 + x432 + x433 + x434 + x439 + x442 + x456 ++ x457 + x458 + x459 + x460 + x461 + x471 + x472 + x485 + x487 + x489 ++ x490 + x492 <= 1 + +x0 + x1 + x2 + x3 + x4 + x7 + x8 + x11 + x29 + x33 ++ x39 + x40 + x41 + x42 + x44 + x45 + x47 + x48 + x49 + x50 ++ x52 + x53 + x54 + x55 + x78 + x80 + x95 + x96 + x104 + x107 ++ x108 + x113 + x116 + x137 + x143 + x161 + x186 + x187 + x189 + x191 ++ x202 + x210 + x211 + x212 + x213 + x214 + x232 + x236 + x241 + x271 ++ x273 + x274 + x275 + x276 + x277 + x278 + x290 + x291 + x292 + x295 ++ x306 + x308 + x311 + x315 + x316 + x327 + x346 + x347 + x348 + x362 ++ x363 + x365 + x372 + x392 + x393 + x396 + x398 + x400 + x402 + x414 ++ x415 + x416 + x434 + x438 + x439 + x442 + x460 + x470 + x471 + x485 ++ x487 + x489 + x490 + x492 + x496 + x497 + x500 <= 1 + +x0 + x1 + x2 + x3 + x4 + x6 + x7 + x8 + x11 + x29 ++ x39 + x40 + x41 + x42 + x44 + x45 + x47 + x48 + x50 + x52 ++ x53 + x54 + x55 + x78 + x96 + x107 + x108 + x116 + x128 + x132 ++ x137 + x147 + x154 + x159 + x186 + x187 + x189 + x191 + x202 + x210 ++ x211 + x213 + x214 + x218 + x219 + x221 + x227 + x232 + x241 + x242 ++ x271 + x273 + x275 + x281 + x282 + x283 + x290 + x291 + x292 + x295 ++ x315 + x326 + x346 + x347 + x365 + x382 + x383 + x389 + x392 + x395 ++ x396 + x398 + x400 + x417 + x438 + x439 + x446 + x460 + x470 + x485 ++ x489 + x490 + x492 + x496 + x497 + x499 + x500 <= 1 + +x6 + x8 + x29 + x39 + x40 + x41 + x42 + x43 + x44 + x45 ++ x46 + x47 + x59 + x61 + x96 + x97 + x107 + x112 + x116 + x128 ++ x132 + x134 + x137 + x146 + x147 + x148 + x149 + x150 + x159 + x161 ++ x162 + x187 + x188 + x189 + x190 + x202 + x207 + x209 + x210 + x211 ++ x213 + x221 + x232 + x235 + x241 + x242 + x243 + x247 + x268 + x269 ++ x275 + x276 + x281 + x282 + x283 + x285 + x286 + x290 + x291 + x292 ++ x295 + x315 + x328 + x346 + x347 + x380 + x382 + x389 + x395 + x417 ++ x438 + x446 + x460 + x469 + x485 + x489 <= 1 + +x0 + x5 + x40 + x41 + x61 + x62 + x76 + x96 + x107 + x125 ++ x129 + x132 + x134 + x137 + x147 + x148 + x149 + x185 + x186 + x187 ++ x188 + x189 + x190 + x202 + x205 + x206 + x208 + x209 + x235 + x241 ++ x242 + x243 + x259 + x262 + x268 + x269 + x270 + x275 + x282 + x285 ++ x286 + x290 + x291 + x292 + x295 + x332 + x335 + x380 + x398 + x399 ++ x400 + x413 + x438 + x439 + x440 + x445 + x446 + x447 + x449 + x469 ++ x470 + x489 <= 1 + +x5 + x7 + x57 + x58 + x59 + x60 + x76 + x97 + x98 + x99 ++ x100 + x102 + x103 + x125 + x126 + x129 + x146 + x147 + x148 + x149 ++ x151 + x162 + x186 + x187 + x188 + x189 + x190 + x204 + x205 + x206 ++ x207 + x208 + x209 + x215 + x262 + x265 + x267 + x268 + x269 + x270 ++ x271 + x272 + x282 + x285 + x286 + x291 + x292 + x331 + x332 + x335 ++ x340 + x344 + x353 + x387 + x390 + x391 + x392 + x397 + x398 + x399 ++ x400 + x401 + x402 + x403 + x404 + x406 + x413 + x427 + x428 + x438 ++ x439 + x440 + x443 + x444 + x445 + x446 + x447 + x448 + x449 + x470 ++ x487 + x489 <= 1 + +x13 + x31 + x63 + x94 + x97 + x99 + x103 + x111 + x124 + x125 ++ x126 + x128 + x133 + x134 + x162 + x175 + x187 + x188 + x189 + x209 ++ x215 + x228 + x265 + x267 + x268 + x269 + x270 + x292 + x293 + x315 ++ x332 + x335 + x337 + x338 + x392 + x397 + x398 + x399 + x400 + x401 ++ x402 + x403 + x406 + x408 + x409 + x413 + x428 + x440 + x442 + x443 ++ x444 + x445 + x446 + x447 + x448 + x449 + x487 <= 1 + +x0 + x90 + x99 + x124 + x125 + x126 + x128 + x129 + x133 + x187 ++ x188 + x189 + x190 + x201 + x206 + x215 + x228 + x252 + x260 + x263 ++ x264 + x265 + x267 + x268 + x269 + x270 + x291 + x292 + x293 + x294 ++ x315 + x337 + x397 + x398 + x399 + x400 + x401 + x402 + x406 + x407 ++ x408 + x440 + x442 + x443 + x445 + x446 + x447 + x449 + x481 + x487 + <= 1 + +x99 + x124 + x125 + x126 + x128 + x206 + x218 + x228 + x263 + x264 ++ x267 + x270 + x291 + x292 + x293 + x294 + x311 + x397 + x398 + x400 ++ x406 + x445 + x446 + x449 <= 1 + +x3 + x4 + x10 + x18 + x20 + x21 + x22 + x26 + x49 + x58 ++ x75 + x89 + x95 + x104 + x106 + x108 + x111 + x113 + x114 + x116 ++ x169 + x175 + x176 + x178 + x180 + x181 + x183 + x184 + x222 + x223 ++ x224 + x231 + x232 + x245 + x246 + x247 + x273 + x275 + x276 + x277 ++ x285 + x302 + x304 + x306 + x307 + x308 + x309 + x310 + x311 + x363 ++ x366 + x400 + x402 + x422 + x433 + x434 + x438 + x442 + x456 + x457 ++ x458 + x459 + x460 + x461 + x489 <= 1 + +x0 + x1 + x2 + x3 + x4 + x20 + x23 + x25 + x44 + x45 ++ x49 + x50 + x51 + x52 + x54 + x55 + x58 + x79 + x89 + x95 ++ x104 + x106 + x108 + x111 + x113 + x114 + x116 + x142 + x143 + x161 ++ x169 + x180 + x181 + x182 + x183 + x184 + x202 + x210 + x213 + x214 ++ x223 + x224 + x232 + x236 + x246 + x266 + x273 + x274 + x275 + x277 ++ x278 + x304 + x306 + x308 + x309 + x310 + x311 + x348 + x362 + x363 ++ x366 + x371 + x372 + x373 + x394 + x400 + x402 + x414 + x418 + x422 ++ x432 + x433 + x434 + x438 + x442 + x456 + x457 + x458 + x459 + x460 ++ x468 + x471 + x472 + x489 <= 1 + +x0 + x1 + x2 + x3 + x4 + x7 + x23 + x29 + x39 + x42 ++ x44 + x45 + x48 + x49 + x50 + x55 + x78 + x95 + x111 + x113 ++ x114 + x116 + x128 + x132 + x142 + x143 + x144 + x191 + x202 + x210 ++ x212 + x213 + x214 + x224 + x232 + x273 + x274 + x275 + x277 + x281 ++ x282 + x295 + x306 + x308 + x309 + x310 + x311 + x348 + x362 + x363 ++ x365 + x371 + x372 + x373 + x393 + x394 + x402 + x414 + x415 + x417 ++ x418 + x433 + x434 + x438 + x442 + x456 + x457 + x458 + x459 + x485 ++ x487 + x489 + x490 + x492 <= 1 + +x0 + x1 + x2 + x3 + x4 + x7 + x8 + x23 + x39 + x42 ++ x44 + x48 + x50 + x52 + x54 + x78 + x95 + x107 + x113 + x116 ++ x128 + x132 + x142 + x144 + x189 + x191 + x210 + x211 + x213 + x214 ++ x221 + x232 + x273 + x274 + x281 + x282 + x295 + x306 + x308 + x365 ++ x389 + x392 + x393 + x395 + x398 + x400 + x414 + x415 + x417 + x433 ++ x458 + x459 + x485 + x489 + x490 <= 1 + +x5 + x58 + x59 + x125 + x190 + x205 + x206 + x207 + x208 + x209 ++ x260 + x262 + x270 + x272 + x292 + x334 + x335 + x341 + x344 + x390 ++ x397 + x400 + x401 + x402 + x428 + x430 + x435 + x436 + x439 + x440 ++ x441 + x443 + x444 + x445 + x446 + x449 <= 1 + +x5 + x58 + x59 + x100 + x102 + x103 + x125 + x126 + x147 + x149 ++ x156 + x190 + x204 + x205 + x206 + x207 + x208 + x209 + x237 + x262 ++ x267 + x268 + x269 + x270 + x271 + x272 + x285 + x286 + x291 + x292 ++ x296 + x297 + x299 + x310 + x331 + x334 + x335 + x341 + x344 + x387 ++ x390 + x391 + x397 + x399 + x400 + x401 + x402 + x403 + x427 + x428 ++ x429 + x430 + x431 + x435 + x436 + x439 + x440 + x441 + x443 + x444 ++ x445 + x446 + x447 + x449 + x487 <= 1 + +x58 + x76 + x94 + x95 + x97 + x98 + x99 + x103 + x129 + x147 ++ x149 + x187 + x188 + x189 + x190 + x205 + x206 + x207 + x208 + x209 ++ x238 + x261 + x262 + x267 + x271 + x272 + x285 + x286 + x287 + x289 ++ x291 + x292 + x334 + x335 + x339 + x340 + x387 + x390 + x397 + x400 ++ x402 + x403 + x404 + x406 + x407 + x413 + x427 + x435 + x436 + x438 ++ x440 + x441 + x443 + x444 + x445 + x446 + x447 + x449 + x470 + x487 ++ x489 <= 1 + +x10 + x13 + x15 + x17 + x38 + x76 + x94 + x97 + x98 + x99 ++ x126 + x128 + x129 + x130 + x147 + x149 + x201 + x205 + x206 + x208 ++ x209 + x227 + x228 + x261 + x263 + x265 + x267 + x269 + x289 + x291 ++ x292 + x337 + x340 + x390 + x397 + x398 + x401 + x402 + x403 + x407 ++ x408 + x429 + x436 + x440 + x441 + x442 + x443 + x444 + x445 + x446 ++ x447 + x448 + x449 + x487 <= 1 + +x2 + x10 + x13 + x14 + x15 + x29 + x38 + x90 + x94 + x99 ++ x111 + x112 + x114 + x115 + x124 + x126 + x128 + x129 + x149 + x187 ++ x188 + x189 + x190 + x199 + x200 + x205 + x206 + x208 + x209 + x227 ++ x228 + x250 + x251 + x252 + x260 + x263 + x265 + x267 + x268 + x269 ++ x270 + x283 + x284 + x291 + x292 + x293 + x294 + x315 + x322 + x369 ++ x390 + x397 + x401 + x406 + x407 + x408 + x436 + x440 + x442 + x443 ++ x446 + x447 + x448 + x449 + x487 + x488 <= 1 + +x13 + x14 + x97 + x99 + x111 + x112 + x114 + x115 + x124 + x126 ++ x128 + x129 + x188 + x190 + x199 + x200 + x227 + x228 + x248 + x250 ++ x251 + x252 + x263 + x270 + x284 + x322 + x397 + x399 + x407 + x443 ++ x446 + x487 + x488 <= 1 + +x21 + x25 + x75 + x89 + x94 + x95 + x111 + x113 + x114 + x116 ++ x148 + x174 + x175 + x176 + x178 + x222 + x223 + x236 + x273 + x275 ++ x276 + x277 + x306 + x307 + x308 + x309 + x310 + x311 + x400 + x402 ++ x434 + x456 + x457 + x458 + x468 + x472 + x473 + x484 + x489 <= 1 + +x1 + x3 + x4 + x6 + x10 + x22 + x23 + x25 + x26 + x49 ++ x50 + x54 + x55 + x61 + x71 + x89 + x104 + x106 + x111 + x113 ++ x114 + x116 + x124 + x131 + x164 + x168 + x169 + x175 + x176 + x177 ++ x178 + x180 + x181 + x182 + x183 + x190 + x198 + x202 + x203 + x236 ++ x245 + x246 + x273 + x275 + x276 + x277 + x278 + x282 + x302 + x304 ++ x306 + x308 + x309 + x310 + x311 + x354 + x366 + x371 + x374 + x378 ++ x400 + x422 + x432 + x433 + x434 + x438 + x441 + x442 + x456 + x457 ++ x459 + x468 + x471 + x472 <= 1 + +x3 + x6 + x9 + x10 + x23 + x49 + x54 + x71 + x85 + x94 ++ x101 + x111 + x113 + x131 + x160 + x164 + x169 + x180 + x182 + x190 ++ x198 + x202 + x203 + x204 + x233 + x236 + x271 + x276 + x277 + x278 ++ x301 + x302 + x304 + x306 + x307 + x308 + x309 + x310 + x311 + x351 ++ x352 + x354 + x355 + x374 + x375 + x378 + x380 + x402 + x426 + x432 ++ x433 + x434 + x440 + x456 + x457 + x459 + x468 + x471 + x479 <= 1 + +x6 + x9 + x10 + x23 + x43 + x85 + x100 + x101 + x111 + x113 ++ x116 + x149 + x156 + x164 + x169 + x174 + x177 + x179 + x190 + x198 ++ x199 + x202 + x203 + x204 + x205 + x208 + x209 + x269 + x271 + x277 ++ x278 + x296 + x297 + x300 + x301 + x306 + x307 + x309 + x310 + x339 ++ x350 + x351 + x353 + x374 + x375 + x378 + x380 + x397 + x398 + x399 ++ x400 + x401 + x402 + x408 + x426 + x430 + x432 + x433 + x435 + x437 ++ x439 + x440 + x441 + x443 + x445 + x449 + x457 + x459 + x471 + x478 ++ x479 + x482 <= 1 + +x6 + x7 + x9 + x10 + x12 + x43 + x58 + x85 + x87 + x88 ++ x100 + x103 + x115 + x121 + x147 + x149 + x156 + x177 + x179 + x190 ++ x198 + x199 + x201 + x203 + x204 + x205 + x208 + x209 + x233 + x234 ++ x235 + x237 + x238 + x271 + x274 + x278 + x296 + x297 + x298 + x299 ++ x300 + x301 + x307 + x310 + x337 + x343 + x353 + x387 + x426 + x427 ++ x428 + x429 + x430 + x431 + x432 + x435 + x437 + x440 + x441 + x443 ++ x444 + x445 + x446 + x447 + x448 + x449 + x471 + x473 + x478 + x480 ++ x482 + x483 <= 1 + +x5 + x6 + x7 + x9 + x10 + x12 + x58 + x87 + x88 + x90 ++ x91 + x93 + x100 + x102 + x103 + x125 + x147 + x149 + x154 + x156 ++ x179 + x187 + x188 + x190 + x198 + x199 + x200 + x201 + x203 + x204 ++ x205 + x206 + x207 + x208 + x209 + x233 + x234 + x237 + x238 + x260 ++ x262 + x267 + x268 + x269 + x271 + x272 + x278 + x288 + x291 + x295 ++ x296 + x297 + x299 + x300 + x310 + x335 + x337 + x340 + x341 + x342 ++ x343 + x344 + x376 + x387 + x397 + x399 + x400 + x401 + x402 + x426 ++ x427 + x428 + x429 + x430 + x431 + x432 + x435 + x436 + x437 + x440 ++ x441 + x443 + x444 + x445 + x446 + x447 + x448 + x449 + x473 + x478 ++ x480 + x483 <= 1 + +x12 + x16 + x17 + x29 + x77 + x87 + x88 + x90 + x92 + x93 ++ x94 + x95 + x97 + x98 + x99 + x102 + x129 + x147 + x149 + x187 ++ x188 + x190 + x199 + x201 + x205 + x206 + x207 + x209 + x238 + x260 ++ x261 + x262 + x271 + x272 + x276 + x287 + x288 + x289 + x291 + x292 ++ x293 + x295 + x299 + x336 + x337 + x339 + x340 + x342 + x397 + x403 ++ x407 + x408 + x426 + x427 + x428 + x431 + x435 + x436 + x438 + x440 ++ x441 + x442 + x443 + x447 + x483 <= 1 + +x2 + x10 + x14 + x15 + x16 + x17 + x29 + x58 + x89 + x90 ++ x92 + x94 + x95 + x96 + x97 + x98 + x99 + x111 + x112 + x114 ++ x124 + x126 + x128 + x129 + x130 + x132 + x165 + x167 + x187 + x188 ++ x190 + x199 + x200 + x201 + x204 + x205 + x206 + x207 + x208 + x209 ++ x227 + x228 + x252 + x253 + x260 + x261 + x263 + x265 + x268 + x270 ++ x276 + x287 + x291 + x293 + x295 + x315 + x322 + x337 + x339 + x340 ++ x379 + x390 + x397 + x401 + x402 + x407 + x408 + x426 + x428 + x429 ++ x436 + x440 + x442 + x443 + x444 + x447 + x473 + x483 + x487 + x488 + <= 1 + +x2 + x9 + x10 + x13 + x14 + x15 + x16 + x17 + x29 + x58 ++ x90 + x94 + x95 + x99 + x105 + x111 + x112 + x114 + x115 + x124 ++ x126 + x128 + x129 + x130 + x132 + x147 + x154 + x187 + x199 + x200 ++ x204 + x205 + x206 + x207 + x209 + x228 + x249 + x253 + x260 + x263 ++ x265 + x268 + x269 + x270 + x283 + x284 + x293 + x329 + x333 + x369 ++ x379 + x406 + x407 + x408 + x440 + x442 + x443 + x444 + x446 + x447 ++ x448 + x449 + x473 + x488 <= 1 + +x2 + x9 + x10 + x14 + x94 + x96 + x97 + x98 + x99 + x102 ++ x112 + x114 + x115 + x130 + x188 + x207 + x227 + x228 + x248 + x250 ++ x251 + x253 + x263 + x265 + x268 + x270 + x370 + x399 + x402 + x408 ++ x440 + x446 + x448 + x473 + x487 <= 1 + +x22 + x25 + x26 + x75 + x111 + x114 + x115 + x116 + x131 + x174 ++ x175 + x176 + x177 + x178 + x203 + x222 + x223 + x225 + x226 + x236 ++ x277 + x282 + x305 + x306 + x307 + x309 + x310 + x311 + x402 + x441 ++ x457 + x458 + x468 + x472 + x473 <= 1 + +x3 + x6 + x22 + x23 + x25 + x26 + x27 + x106 + x111 + x113 ++ x114 + x115 + x116 + x124 + x131 + x145 + x164 + x168 + x169 + x174 ++ x176 + x177 + x178 + x182 + x183 + x198 + x202 + x203 + x225 + x226 ++ x233 + x236 + x277 + x282 + x302 + x304 + x305 + x306 + x307 + x309 ++ x310 + x311 + x350 + x351 + x352 + x354 + x366 + x418 + x422 + x426 ++ x430 + x431 + x432 + x433 + x434 + x441 + x468 + x472 + x473 <= 1 + +x3 + x6 + x9 + x10 + x26 + x27 + x62 + x93 + x94 + x101 ++ x111 + x113 + x115 + x116 + x124 + x131 + x145 + x164 + x168 + x169 ++ x174 + x176 + x177 + x198 + x202 + x203 + x225 + x233 + x235 + x236 ++ x237 + x276 + x277 + x282 + x301 + x305 + x306 + x309 + x310 + x311 ++ x350 + x351 + x352 + x354 + x355 + x375 + x379 + x380 + x397 + x398 ++ x401 + x418 + x426 + x430 + x431 + x434 + x441 + x445 + x449 + x457 ++ x459 <= 1 + +x6 + x9 + x10 + x72 + x85 + x91 + x93 + x94 + x101 + x111 ++ x112 + x113 + x115 + x116 + x131 + x153 + x156 + x164 + x165 + x166 ++ x168 + x169 + x174 + x177 + x179 + x198 + x199 + x203 + x204 + x206 ++ x208 + x209 + x233 + x234 + x235 + x237 + x238 + x272 + x277 + x278 ++ x296 + x300 + x301 + x306 + x339 + x350 + x351 + x352 + x375 + x378 ++ x379 + x380 + x397 + x398 + x399 + x400 + x401 + x402 + x427 + x430 ++ x432 + x434 + x441 + x443 + x445 + x449 + x478 + x482 + x483 <= 1 + +x7 + x9 + x10 + x72 + x77 + x83 + x85 + x88 + x91 + x93 ++ x94 + x97 + x113 + x115 + x116 + x147 + x149 + x152 + x153 + x156 ++ x159 + x164 + x165 + x166 + x167 + x168 + x169 + x190 + x191 + x198 ++ x199 + x201 + x204 + x205 + x206 + x207 + x208 + x209 + x233 + x234 ++ x235 + x237 + x238 + x272 + x274 + x278 + x291 + x296 + x297 + x298 ++ x300 + x301 + x306 + x327 + x337 + x339 + x352 + x353 + x375 + x379 ++ x380 + x397 + x398 + x399 + x400 + x401 + x402 + x426 + x427 + x428 ++ x429 + x430 + x431 + x432 + x435 + x437 + x441 + x443 + x445 + x449 ++ x478 + x480 + x482 + x483 + x489 <= 1 + +x5 + x7 + x9 + x10 + x83 + x87 + x88 + x89 + x90 + x91 ++ x92 + x93 + x94 + x96 + x97 + x99 + x113 + x147 + x149 + x164 ++ x165 + x166 + x167 + x169 + x188 + x190 + x199 + x200 + x201 + x203 ++ x204 + x206 + x207 + x233 + x234 + x237 + x238 + x272 + x278 + x284 ++ x291 + x296 + x297 + x298 + x299 + x335 + x336 + x337 + x339 + x340 ++ x341 + x343 + x353 + x375 + x376 + x378 + x379 + x397 + x398 + x399 ++ x400 + x401 + x402 + x426 + x427 + x428 + x429 + x430 + x431 + x432 ++ x435 + x436 + x437 + x441 + x442 + x444 + x445 + x446 + x447 + x448 ++ x449 + x478 + x480 + x481 + x483 + x493 <= 1 + +x6 + x9 + x10 + x12 + x16 + x17 + x58 + x77 + x87 + x88 ++ x89 + x90 + x91 + x93 + x94 + x95 + x96 + x97 + x98 + x99 ++ x102 + x103 + x125 + x154 + x156 + x166 + x167 + x187 + x188 + x190 ++ x195 + x197 + x198 + x199 + x200 + x201 + x204 + x205 + x206 + x207 ++ x208 + x209 + x234 + x238 + x260 + x261 + x271 + x274 + x276 + x278 ++ x284 + x287 + x288 + x289 + x295 + x299 + x310 + x335 + x336 + x337 ++ x339 + x340 + x342 + x376 + x378 + x379 + x397 + x400 + x401 + x402 ++ x407 + x426 + x427 + x428 + x429 + x430 + x431 + x435 + x436 + x437 ++ x438 + x440 + x441 + x442 + x443 + x444 + x445 + x446 + x447 + x448 ++ x449 + x473 + x480 + x481 + x483 <= 1 + +x0 + x2 + x6 + x8 + x9 + x10 + x12 + x13 + x14 + x15 ++ x16 + x17 + x88 + x89 + x90 + x92 + x94 + x95 + x96 + x97 ++ x98 + x99 + x112 + x125 + x129 + x130 + x147 + x149 + x153 + x154 ++ x165 + x166 + x167 + x195 + x196 + x198 + x199 + x200 + x201 + x204 ++ x205 + x206 + x207 + x208 + x209 + x234 + x249 + x252 + x261 + x268 ++ x270 + x271 + x274 + x276 + x283 + x295 + x322 + x335 + x336 + x337 ++ x339 + x340 + x342 + x370 + x379 + x397 + x400 + x401 + x402 + x408 ++ x426 + x427 + x428 + x429 + x430 + x431 + x435 + x436 + x437 + x438 ++ x439 + x440 + x441 + x442 + x443 + x444 + x445 + x446 + x447 + x448 ++ x449 + x473 + x479 + x488 <= 1 + +x2 + x3 + x8 + x9 + x10 + x12 + x13 + x14 + x15 + x17 ++ x29 + x88 + x90 + x94 + x95 + x96 + x97 + x98 + x99 + x111 ++ x112 + x114 + x115 + x129 + x130 + x147 + x153 + x154 + x165 + x196 ++ x205 + x207 + x234 + x248 + x249 + x251 + x261 + x268 + x270 + x271 ++ x276 + x280 + x283 + x329 + x333 + x337 + x339 + x367 + x368 + x369 ++ x370 + x378 + x379 + x397 + x400 + x401 + x402 + x419 + x428 + x438 ++ x439 + x440 + x441 + x442 + x443 + x444 + x445 + x446 + x447 + x448 ++ x449 + x473 + x479 <= 1 + +x12 + x15 + x17 + x92 + x94 + x96 + x97 + x98 + x99 + x112 ++ x114 + x115 + x129 + x132 + x147 + x154 + x207 + x248 + x249 + x250 ++ x251 + x253 + x270 + x283 + x329 + x339 + x367 + x368 + x370 + x378 ++ x397 + x400 + x402 + x431 + x438 + x439 + x441 + x444 + x445 + x446 ++ x447 + x448 + x449 + x473 + x479 <= 1 + +x25 + x26 + x95 + x111 + x114 + x116 + x122 + x124 + x131 + x168 ++ x174 + x178 + x203 + x222 + x225 + x226 + x282 + x305 + x307 + x309 ++ x310 + x311 + x375 + x380 + x402 + x418 + x458 + x468 + x472 + x473 + <= 1 + +x3 + x22 + x25 + x27 + x111 + x113 + x114 + x116 + x122 + x124 ++ x168 + x169 + x198 + x201 + x203 + x226 + x305 + x306 + x307 + x309 ++ x310 + x311 + x354 + x355 + x375 + x379 + x380 + x441 + x456 + x459 ++ x468 + x472 + x473 <= 1 + +x6 + x10 + x22 + x26 + x27 + x62 + x113 + x114 + x124 + x140 ++ x145 + x164 + x168 + x176 + x198 + x204 + x233 + x236 + x237 + x277 ++ x282 + x300 + x310 + x311 + x350 + x355 + x375 + x378 + x379 + x380 ++ x398 + x400 + x401 + x402 + x426 + x427 + x430 + x437 + x441 + x445 ++ x459 + x468 + x472 + x473 + x481 <= 1 + +x6 + x9 + x10 + x27 + x93 + x94 + x111 + x112 + x113 + x115 ++ x116 + x140 + x153 + x155 + x164 + x165 + x168 + x198 + x204 + x233 ++ x235 + x237 + x274 + x277 + x278 + x282 + x298 + x301 + x306 + x310 ++ x327 + x339 + x355 + x375 + x376 + x378 + x379 + x380 + x397 + x400 ++ x401 + x402 + x426 + x427 + x430 + x437 + x445 + x449 + x459 + x472 ++ x473 + x478 + x481 + x482 <= 1 + +x6 + x7 + x9 + x10 + x88 + x91 + x93 + x94 + x97 + x111 ++ x112 + x113 + x115 + x149 + x152 + x153 + x155 + x156 + x165 + x166 ++ x167 + x168 + x204 + x206 + x208 + x209 + x233 + x234 + x235 + x237 ++ x238 + x274 + x282 + x291 + x298 + x310 + x327 + x376 + x378 + x379 ++ x380 + x397 + x399 + x400 + x401 + x402 + x426 + x427 + x428 + x429 ++ x430 + x432 + x435 + x437 + x444 + x445 + x448 + x449 + x473 + x481 ++ x482 + x489 <= 1 + +x1 + x5 + x6 + x7 + x9 + x10 + x16 + x88 + x89 + x90 ++ x91 + x92 + x93 + x94 + x144 + x149 + x152 + x153 + x154 + x155 ++ x156 + x164 + x165 + x166 + x167 + x168 + x188 + x204 + x206 + x207 ++ x208 + x234 + x235 + x237 + x238 + x272 + x274 + x291 + x298 + x299 ++ x327 + x335 + x343 + x375 + x376 + x378 + x379 + x397 + x399 + x401 ++ x402 + x426 + x427 + x428 + x429 + x430 + x431 + x436 + x437 + x440 ++ x441 + x442 + x443 + x444 + x445 + x446 + x447 + x448 + x449 + x473 ++ x478 + x481 + x482 + x489 <= 1 + +x2 + x6 + x9 + x10 + x16 + x77 + x88 + x89 + x92 + x93 ++ x94 + x96 + x98 + x99 + x149 + x152 + x153 + x154 + x156 + x165 ++ x166 + x167 + x197 + x199 + x201 + x204 + x206 + x207 + x208 + x234 ++ x238 + x261 + x274 + x288 + x291 + x295 + x298 + x335 + x336 + x337 ++ x339 + x340 + x376 + x378 + x379 + x397 + x399 + x400 + x401 + x402 ++ x407 + x426 + x427 + x428 + x429 + x430 + x431 + x437 + x439 + x440 ++ x441 + x442 + x443 + x444 + x445 + x446 + x447 + x448 + x449 + x473 ++ x482 <= 1 + +x2 + x8 + x10 + x12 + x13 + x14 + x15 + x16 + x17 + x89 ++ x90 + x92 + x93 + x94 + x96 + x97 + x99 + x112 + x129 + x130 ++ x147 + x149 + x153 + x154 + x156 + x165 + x199 + x200 + x201 + x268 ++ x270 + x271 + x274 + x283 + x291 + x295 + x336 + x340 + x368 + x378 ++ x397 + x399 + x400 + x401 + x402 + x426 + x428 + x429 + x430 + x431 ++ x438 + x439 + x440 + x441 + x442 + x443 + x444 + x445 + x446 + x447 ++ x448 + x449 + x473 + x479 + x480 <= 1 + +x2 + x3 + x12 + x13 + x14 + x15 + x92 + x94 + x96 + x97 ++ x98 + x99 + x111 + x112 + x114 + x129 + x130 + x147 + x153 + x205 ++ x207 + x249 + x279 + x280 + x283 + x291 + x295 + x324 + x329 + x331 ++ x333 + x340 + x367 + x368 + x369 + x378 + x397 + x400 + x401 + x402 ++ x431 + x438 + x439 + x440 + x441 + x443 + x444 + x445 + x446 + x447 ++ x448 + x449 + x473 + x479 + x480 <= 1 + +x2 + x92 + x94 + x96 + x97 + x112 + x114 + x129 + x153 + x205 ++ x207 + x248 + x253 + x278 + x279 + x283 + x329 + x367 + x397 + x401 ++ x402 + x431 + x445 + x446 + x447 + x448 + x449 + x479 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 + x38 <= 1 + +x39 + x40 + x41 + x42 + x43 + x44 <= 1 + +x45 + x46 + x47 + x48 + x49 + x50 <= 1 + +x51 + x52 + x53 + x54 + x55 + x56 <= 1 + +x57 + x58 + x59 + x60 + x61 + x62 <= 1 + +x63 + x64 <= 1 + +x65 + x66 + x67 + x68 + x69 + x70 <= 1 + +x71 + x72 + x73 + x74 + x75 + x76 <= 1 + +x77 + x78 + x79 + x80 + x81 + x82 <= 1 + +x83 + x84 + x85 + x86 + x87 <= 1 + +x88 + x89 + x90 + x91 + x92 + x93 <= 1 + +x94 + x95 + x96 + x97 + x98 + x99 <= 1 + +x100 + x101 + x102 + x103 <= 1 + +x104 + x105 + x106 + x107 + x108 + x109 <= 1 + +x111 + x112 + x113 + x114 + x115 + x116 <= 1 + +x117 + x118 + x119 + x120 <= 1 + +x122 + x123 <= 1 + +x124 + x125 + x126 + x127 + x128 + x129 <= 1 + +x130 + x131 + x132 + x133 + x134 + x135 <= 1 + +x136 + x137 + x138 + x139 + x140 + x141 <= 1 + +x142 + x143 + x144 <= 1 + +x146 + x147 + x148 + x149 + x150 + x151 <= 1 + +x152 + x153 + x154 + x155 + x156 + x157 <= 1 + +x158 + x159 + x160 + x161 + x162 + x163 <= 1 + +x164 + x165 + x166 + x167 + x168 + x169 <= 1 + +x170 + x171 + x172 + x173 <= 1 + +x174 + x175 + x176 + x177 + x178 + x179 <= 1 + +x180 + x181 + x182 + x183 + x184 <= 1 + +x186 + x187 + x188 + x189 + x190 + x191 <= 1 + +x192 + x193 + x194 <= 1 + +x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 + x221 <= 1 + +x222 + x223 + x224 + x225 + x226 <= 1 + +x227 + x228 + x229 + x230 + x231 + x232 <= 1 + +x233 + x234 + x235 + x236 + x237 + x238 <= 1 + +x239 + x240 + x241 + x242 + x243 + x244 <= 1 + +x245 + x246 + x247 <= 1 + +x248 + x249 + x250 + x251 + x252 + x253 <= 1 + +x254 + x255 + x256 + x257 + x258 + x259 <= 1 + +x260 + x261 + x262 + x263 + x264 + x265 <= 1 + +x267 + x268 + x269 + x270 + x271 + x272 <= 1 + +x273 + x274 + x275 + x276 + x277 + x278 <= 1 + +x279 + x280 <= 1 + +x281 + x282 + x283 + x284 + x285 + x286 <= 1 + +x287 + x288 + x289 <= 1 + +x290 + x291 + x292 + x293 + x294 + x295 <= 1 + +x296 + x297 + x298 + x299 + x300 + x301 <= 1 + +x302 + x303 + x304 + x305 <= 1 + +x306 + x307 + x308 + x309 + x310 + x311 <= 1 + +x312 + x313 + x314 + x315 + x316 + x317 <= 1 + +x318 + x319 + x320 + x321 + x322 + x323 <= 1 + +x325 + x326 + x327 + x328 + x329 + x330 <= 1 + +x331 + x332 + x333 + x334 <= 1 + +x335 + x336 + x337 + x338 + x339 + x340 <= 1 + +x341 + x342 + x343 + x344 <= 1 + +x346 + x347 + x348 + x349 <= 1 + +x350 + x351 + x352 + x353 + x354 + x355 <= 1 + +x357 + x358 + x359 + x360 + x361 <= 1 + +x362 + x363 + x364 + x365 + x366 <= 1 + +x367 + x368 + x369 + x370 <= 1 + +x371 + x372 + x373 + x374 <= 1 + +x375 + x376 + x377 + x378 + x379 + x380 <= 1 + +x381 + x382 + x383 + x384 + x385 + x386 <= 1 + +x387 + x388 + x389 + x390 + x391 + x392 <= 1 + +x393 + x394 + x395 + x396 <= 1 + +x397 + x398 + x399 + x400 + x401 + x402 <= 1 + +x403 + x404 + x405 + x406 + x407 + x408 <= 1 + +x409 + x410 + x411 + x412 + x413 <= 1 + +x414 + x415 + x416 + x417 + x418 <= 1 + +x420 + x421 + x422 + x423 + x424 + x425 <= 1 + +x426 + x427 + x428 + x429 + x430 + x431 <= 1 + +x432 + x433 + x434 + x435 + x436 + x437 <= 1 + +x438 + x439 + x440 + x441 + x442 + x443 <= 1 + +x444 + x445 + x446 + x447 + x448 + x449 <= 1 + +x450 + x451 + x452 + x453 + x454 + x455 <= 1 + +x456 + x457 + x458 + x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 <= 1 + +x478 + x479 + x480 + x481 + x482 + x483 <= 1 + +x485 + x486 + x487 + x488 + x489 + x490 <= 1 + +x491 + x492 + x493 + x494 + x495 + x496 <= 1 + +x497 + x498 + x499 + x500 + x501 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0005.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0005.lp new file mode 100755 index 000000000..49a42846f --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0005.lp @@ -0,0 +1,1093 @@ +max + +968.59x0 + 1152.51x1 + 1084.86x2 + 1058.82x3 + 1005.29x4 + 992.239x5 + 254.194x6 + 277.614x7 + 190.722x8 + 293.203x9 + +253.872x10 + 228.397x11 + 263.42x12 + 235.643x13 + 217.991x14 + 153.439x15 + 150.046x16 + 115.936x17 + 1025.49x18 + 1515.85x19 + +1513.35x20 + 1451.62x21 + 1431.04x22 + 1411.65x23 + 972.831x24 + 1078.07x25 + 1068.39x26 + 1035.08x27 + 992.471x28 + 991.745x29 + +199.998x30 + 235.061x31 + 227.836x32 + 212.023x33 + 167.689x34 + 377.491x35 + 421.41x36 + 348.067x37 + 255.28x38 + 206.901x39 + +606.556x40 + 534.455x41 + 519.587x42 + 500.252x43 + 493.019x44 + 477.503x45 + 1924.45x46 + 2393x47 + 2336.62x48 + 2335.26x49 + +2233.51x50 + 2205.47x51 + 168.988x52 + 139.461x53 + 622.057x54 + 604.512x55 + 604.375x56 + 575.426x57 + 569.885x58 + 554.479x59 + +1618.06x60 + 2198.44x61 + 2134.48x62 + 2123.13x63 + 2066.01x64 + 2058.1x65 + 400.28x66 + 470.394x67 + 401.92x68 + 387.651x69 + +376.662x70 + 357.038x71 + 1698.92x72 + 1832.53x73 + 1807.23x74 + 1774.88x75 + 1761.06x76 + 1757.17x77 + 1492.41x78 + 1660.67x79 + +1652.47x80 + 1597.64x81 + 1581.3x82 + 1548.86x83 + 629.794x84 + 820.946x85 + 756.593x86 + 693.687x87 + 673.062x88 + 669.428x89 + +2509.74x90 + 2995.12x91 + 2937.83x92 + 2840.38x93 + 2834x94 + 2812.32x95 + 266.665x96 + 387.267x97 + 381.336x98 + 363.428x99 + +69.9242x100 + 76.7947x101 + 449.1x102 + 567.104x103 + 520.045x104 + 381.648x105 + 333.511x106 + 316.188x107 + 385.348x108 + 389.474x109 + +363.743x110 + 324.973x111 + 321.559x112 + 294.441x113 + 286.375x114 + 251.771x115 + 211.021x116 + 187.6x117 + 841.339x118 + 967.877x119 + +956.762x120 + 928.992x121 + 901.492x122 + 881.956x123 + 1628.69x124 + 1700.8x125 + 1641.65x126 + 1624.71x127 + 1599.04x128 + 1598.72x129 + +46.976x130 + 40.7577x131 + 818.24x132 + 887.324x133 + 868.547x134 + 818.226x135 + 817.048x136 + 812.277x137 + 157.295x138 + 190.552x139 + +115.018x140 + 1075.48x141 + 1389.8x142 + 1293.54x143 + 1271.81x144 + 1229.65x145 + 1220.51x146 + 186.118x147 + 203.023x148 + 104.856x149 + +952.218x150 + 1042.35x151 + 1011.57x152 + 990.544x153 + 975.032x154 + 966.4x155 + 217.658x156 + 310.53x157 + 291.168x158 + 289.393x159 + +214.288x160 + 199.794x161 + 828.316x162 + 1050.32x163 + 962.433x164 + 952.469x165 + 946.942x166 + 891.739x167 + 550.948x168 + 596.732x169 + +529.646x170 + 447.668x171 + 416.475x172 + 403.993x173 + 429.274x174 + 507.995x175 + 501.292x176 + 493.038x177 + 470.465x178 + 457.306x179 + +96.112x180 + 302.617x181 + 333.804x182 + 285.184x183 + 260.158x184 + 254.761x185 + 310.094x186 + 459.136x187 + 355.653x188 + 346.763x189 + +306.888x190 + 303.782x191 + 1689.35x192 + 2218.99x193 + 2117.18x194 + 2070.88x195 + 2041.08x196 + 2035.16x197 + 795.109x198 + 850.639x199 + +804.673x200 + 794.078x201 + 762.18x202 + 691.716x203 + 177.99x204 + 175.766x205 + 47.8259x206 + 318.24x207 + 319.374x208 + 311.188x209 + +212.461x210 + 216.807x211 + 98.9505x212 + 100.326x213 + 52.504x214 + 1263.26x215 + 1463.95x216 + 1446.75x217 + 1427.2x218 + 1388.5x219 + +1338.66x220 + 503.754x221 + 509.677x222 + 474.577x223 + 465.81x224 + 440.462x225 + 437.679x226 + 1224.02x227 + 1332.85x228 + 1326.57x229 + +1188.63x230 + 1182.36x231 + 1163.25x232 + 545.993x233 + 613.553x234 + 562.819x235 + 559.75x236 + 532.092x237 + 531.588x238 + 1969.13x239 + +2311.1x240 + 2180.59x241 + 2150.71x242 + 2138.73x243 + 2112.76x244 + 106.382x245 + 2160.55x246 + 2163.86x247 + 2073.33x248 + 2060.19x249 + +2046.19x250 + 2025.84x251 + 332.901x252 + 468.612x253 + 379.513x254 + 356.52x255 + 281.743x256 + 128.81x257 + 1349.22x258 + 1423.28x259 + +1333.85x260 + 1301.04x261 + 1271.34x262 + 1233.19x263 + 718.97x264 + 756.907x265 + 735.679x266 + 684.034x267 + 677.296x268 + 672.98x269 + +220.297x270 + 184.056x271 + 183.807x272 + 143.172x273 + 542.463x274 + 754.347x275 + 725.783x276 + 704.409x277 + 701.946x278 + 701.435x279 + +125.356x280 + 363.601x281 + 471.822x282 + 428.835x283 + 396.381x284 + 354.714x285 + 353.598x286 + 2376.64x287 + 2680.67x288 + 2662.94x289 + +2654.08x290 + 2632.8x291 + 2611.6x292 + 785.805x293 + 966.301x294 + 861.751x295 + 840.17x296 + 800.036x297 + 784.423x298 + 218.105x299 + +289.355x300 + 254.863x301 + 212.335x302 + 177.743x303 + 156.161x304 + 382.203x305 + 260.264x306 + 230.551x307 + 173.529x308 + 154.346x309 + +794.837x310 + 745.359x311 + 720.406x312 + 690.731x313 + 653.981x314 + 653.546x315 + 56.9686x316 + 3165.57x317 + 3506.4x318 + 3470.19x319 + +3469.13x320 + 3442.49x321 + 3439.02x322 + 1592.11x323 + 1701.5x324 + 1689.76x325 + 1685.83x326 + 1678.22x327 + 1619.54x328 + 1138.37x329 + +1243.63x330 + 1238.94x331 + 1209.43x332 + 1199.7x333 + 1182.07x334 + 419.956x335 + 394.824x336 + 373.474x337 + 369.024x338 + 2066.7x339 + +2387.74x340 + 2321.98x341 + 2250.64x342 + 2249.35x343 + 2248.54x344 + 1755.45x345 + 1904.9x346 + 1893.09x347 + 1886.32x348 + 1885.23x349 + +1858.44x350 + 1244.8x351 + 1632.49x352 + 1488.11x353 + 1403.59x354 + 1385.7x355 + 1332.95x356 + 316.23x357 + 252.082x358 + 247.935x359 + +234.288x360 + 187.331x361 + 218.921x362 + 160.179x363 + 449.324x364 + 673.022x365 + 615.277x366 + 593.596x367 + 540.155x368 + 538.271x369 + +60.8289x370 + 445.831x371 + 656.052x372 + 580.476x373 + 526.491x374 + 500.819x375 + 472.324x376 + 938.279x377 + 1151.95x378 + 1122.97x379 + +1094.49x380 + 1090.34x381 + 1063.63x382 + 346.942x383 + 456.166x384 + 426.117x385 + 354.438x386 + 245.534x387 + 245.212x388 + 314.242x389 + +288.857x390 + 267.031x391 + 213.052x392 + 780.265x393 + 960.027x394 + 913.626x395 + 910.955x396 + 849.695x397 + 845.293x398 + 661.29x399 + +786.615x400 + 675.282x401 + 605.456x402 + 599.443x403 + 592.717x404 + 89.6853x405 + 1804.45x406 + 2109.57x407 + 2050.14x408 + 2010.77x409 + +1959.7x410 + 1935.91x411 + 1475.21x412 + 1603.9x413 + 1591.93x414 + 1521.84x415 + 1483.07x416 + 1471.91x417 + 234.97x418 + 228.924x419 + +184.006x420 + 179.298x421 + 50.4609x422 + 117.174x423 + 415.155x424 + 450.523x425 + 447.808x426 + 443.802x427 + 443.211x428 + 399.311x429 + +1592.16x430 + 1570.97x431 + 1541.06x432 + 1490.79x433 + 1454.98x434 + 1444.04x435 + 331.276x436 + 346.193x437 + 327.289x438 + 305.965x439 + +183.208x440 + 365.032x441 + 415.332x442 + 361.049x443 + 353.619x444 + 320.758x445 + 294.699x446 + 757.718x447 + 838.481x448 + 792.983x449 + +772.174x450 + 759.331x451 + 743.718x452 + 747.139x453 + 924.915x454 + 867.945x455 + 857.47x456 + 790.934x457 + 740.431x458 + 93.5506x459 + +1093.97x460 + 1453.51x461 + 1369.28x462 + 1343.23x463 + 1335.01x464 + 1308.5x465 + 911.767x466 + 1170.54x467 + 1158.12x468 + 1106.08x469 + +1099.81x470 + 1080.44x471 + 1560.03x472 + 1814.19x473 + 1780.3x474 + 1774.32x475 + 1764.92x476 + 1756.66x477 + 103.975x478 + 215.559x479 + +320.146x480 + 287.498x481 + 261.629x482 + 177.729x483 + 180.718x484 + 136.021x485 + 340.117x486 + 434.757x487 + 342.332x488 + 316.032x489 + +309.035x490 + 134.216x491 + 78.5282x492 + 95.4105x493 + 870.926x494 + 1216.97x495 + 1141.35x496 + 1031.41x497 + 1009.54x498 + 1003.25x499 + + +st + +x60 + x63 + x90 + x91 + x95 + x118 + x120 + x122 + x123 + x125 ++ x127 + x128 + x132 + x134 + x184 + x242 + x276 + x279 + x292 + x306 ++ x307 + x308 + x317 + x324 + x339 + x340 + x341 + x345 + x397 + x459 ++ x466 + x470 + x471 + x490 <= 1 + +x60 + x63 + x64 + x81 + x91 + x94 + x95 + x118 + x120 + x122 ++ x123 + x124 + x125 + x126 + x127 + x128 + x134 + x181 + x183 + x227 ++ x239 + x242 + x260 + x276 + x287 + x289 + x290 + x291 + x292 + x305 ++ x307 + x308 + x317 + x318 + x321 + x324 + x329 + x331 + x334 + x339 ++ x340 + x341 + x343 + x345 + x346 + x347 + x350 + x366 + x397 + x406 ++ x453 + x456 + x458 + x459 + x466 + x467 + x468 + x470 + x471 + x490 + <= 1 + +x19 + x60 + x61 + x62 + x63 + x64 + x80 + x81 + x90 + x91 ++ x93 + x94 + x95 + x105 + x118 + x119 + x120 + x122 + x123 + x124 ++ x125 + x126 + x127 + x128 + x129 + x134 + x181 + x182 + x183 + x184 ++ x185 + x200 + x227 + x232 + x239 + x246 + x248 + x249 + x251 + x258 ++ x260 + x261 + x262 + x263 + x279 + x287 + x288 + x289 + x290 + x291 ++ x292 + x308 + x309 + x321 + x324 + x329 + x331 + x332 + x333 + x334 ++ x339 + x340 + x341 + x342 + x343 + x344 + x345 + x350 + x366 + x406 ++ x453 + x456 + x458 + x466 + x470 + x471 + x472 + x492 + x493 <= 1 + +x50 + x51 + x60 + x61 + x62 + x63 + x64 + x74 + x78 + x80 ++ x81 + x90 + x91 + x92 + x93 + x94 + x95 + x96 + x99 + x118 ++ x119 + x122 + x123 + x124 + x125 + x126 + x127 + x128 + x152 + x166 ++ x185 + x194 + x195 + x196 + x219 + x227 + x232 + x239 + x241 + x242 ++ x246 + x247 + x248 + x249 + x251 + x258 + x260 + x261 + x262 + x263 ++ x279 + x287 + x288 + x289 + x290 + x291 + x292 + x321 + x322 + x324 ++ x326 + x329 + x331 + x333 + x334 + x339 + x341 + x342 + x343 + x360 ++ x398 + x406 + x407 + x408 + x410 + x411 + x416 + x453 + x456 + x458 ++ x466 + x467 + x469 + x472 + x473 + x496 + x497 <= 1 + +x23 + x62 + x64 + x74 + x78 + x80 + x85 + x91 + x94 + x96 ++ x97 + x98 + x118 + x119 + x121 + x122 + x128 + x135 + x165 + x166 ++ x196 + x198 + x201 + x202 + x203 + x219 + x220 + x239 + x240 + x241 ++ x242 + x243 + x247 + x248 + x249 + x251 + x258 + x262 + x263 + x287 ++ x288 + x289 + x290 + x291 + x292 + x317 + x318 + x321 + x322 + x324 ++ x326 + x329 + x331 + x332 + x333 + x334 + x339 + x340 + x341 + x342 ++ x344 + x351 + x354 + x355 + x356 + x376 + x393 + x395 + x396 + x397 ++ x398 + x406 + x407 + x408 + x411 + x468 + x472 + x476 <= 1 + +x23 + x50 + x62 + x64 + x65 + x74 + x80 + x82 + x85 + x91 ++ x94 + x96 + x98 + x119 + x121 + x122 + x128 + x166 + x196 + x198 ++ x199 + x201 + x202 + x215 + x219 + x220 + x239 + x240 + x242 + x243 ++ x246 + x247 + x248 + x249 + x251 + x258 + x262 + x263 + x287 + x288 ++ x289 + x290 + x291 + x292 + x317 + x318 + x319 + x321 + x322 + x326 ++ x339 + x341 + x342 + x344 + x351 + x352 + x354 + x355 + x356 + x393 ++ x397 + x406 + x408 + x411 + x415 + x472 + x485 <= 1 + +x23 + x39 + x63 + x64 + x65 + x73 + x75 + x77 + x80 + x82 ++ x92 + x94 + x119 + x121 + x132 + x145 + x162 + x163 + x164 + x165 ++ x166 + x167 + x175 + x196 + x198 + x199 + x201 + x202 + x203 + x208 ++ x215 + x219 + x239 + x242 + x243 + x247 + x290 + x296 + x317 + x318 ++ x319 + x320 + x321 + x322 + x328 + x331 + x341 + x342 + x344 + x351 ++ x352 + x353 + x354 + x355 + x356 + x382 + x394 + x395 + x397 + x406 ++ x407 + x408 + x409 + x411 + x415 + x417 + x460 + x462 + x465 + x485 + <= 1 + +x2 + x23 + x40 + x41 + x43 + x48 + x49 + x62 + x63 + x64 ++ x65 + x73 + x75 + x77 + x80 + x82 + x90 + x91 + x97 + x119 ++ x121 + x132 + x139 + x140 + x143 + x145 + x162 + x163 + x164 + x165 ++ x166 + x175 + x196 + x203 + x215 + x229 + x239 + x242 + x243 + x244 ++ x247 + x249 + x258 + x289 + x290 + x317 + x318 + x319 + x320 + x321 ++ x322 + x331 + x342 + x343 + x344 + x346 + x348 + x349 + x351 + x352 ++ x353 + x354 + x355 + x356 + x372 + x394 + x395 + x396 + x397 + x406 ++ x407 + x408 + x409 + x411 + x460 + x465 + x473 + x474 <= 1 + +x15 + x16 + x23 + x49 + x62 + x63 + x64 + x65 + x75 + x77 ++ x82 + x119 + x138 + x139 + x140 + x146 + x175 + x192 + x196 + x239 ++ x243 + x244 + x291 + x301 + x317 + x319 + x320 + x321 + x322 + x346 ++ x349 + x351 + x352 + x353 + x354 + x355 + x356 + x368 + x373 + x382 ++ x393 + x394 + x395 + x396 + x397 + x407 + x408 + x409 + x460 + x472 ++ x474 <= 1 + +x15 + x17 + x63 + x65 + x119 + x138 + x139 + x175 + x239 + x243 ++ x244 + x351 + x356 + x382 + x395 <= 1 + +x9 + x60 + x61 + x63 + x64 + x80 + x81 + x90 + x91 + x95 ++ x118 + x120 + x122 + x123 + x124 + x125 + x126 + x127 + x128 + x129 ++ x132 + x134 + x181 + x184 + x261 + x262 + x276 + x279 + x282 + x287 ++ x289 + x290 + x291 + x292 + x305 + x306 + x307 + x309 + x318 + x324 ++ x329 + x331 + x334 + x339 + x340 + x341 + x342 + x343 + x366 + x409 ++ x431 + x453 + x456 + x458 + x465 + x466 + x467 + x468 + x470 + x471 ++ x472 + x486 + x487 + x490 <= 1 + +x60 + x61 + x62 + x63 + x64 + x80 + x81 + x90 + x91 + x93 ++ x94 + x95 + x118 + x119 + x120 + x122 + x123 + x124 + x125 + x126 ++ x127 + x128 + x129 + x134 + x181 + x182 + x183 + x184 + x200 + x239 ++ x241 + x246 + x248 + x249 + x250 + x251 + x258 + x260 + x261 + x262 ++ x263 + x276 + x279 + x282 + x287 + x288 + x289 + x290 + x291 + x292 ++ x305 + x306 + x307 + x308 + x309 + x321 + x322 + x324 + x329 + x331 ++ x332 + x334 + x339 + x340 + x341 + x342 + x343 + x345 + x346 + x347 ++ x350 + x366 + x397 + x406 + x453 + x456 + x458 + x466 + x467 + x468 ++ x469 + x470 + x471 + x472 + x473 + x487 + x490 + x492 <= 1 + +x19 + x50 + x51 + x60 + x62 + x64 + x80 + x81 + x90 + x91 ++ x93 + x94 + x95 + x118 + x119 + x120 + x122 + x123 + x124 + x125 ++ x126 + x127 + x128 + x129 + x134 + x150 + x152 + x182 + x183 + x185 ++ x194 + x195 + x231 + x232 + x239 + x241 + x246 + x248 + x249 + x251 ++ x258 + x260 + x261 + x262 + x263 + x279 + x287 + x288 + x289 + x290 ++ x291 + x292 + x309 + x322 + x324 + x329 + x330 + x332 + x333 + x334 ++ x339 + x340 + x341 + x342 + x343 + x344 + x345 + x346 + x350 + x352 ++ x357 + x358 + x360 + x389 + x391 + x406 + x408 + x410 + x411 + x413 ++ x416 + x453 + x456 + x458 + x466 + x467 + x468 + x469 + x470 + x472 ++ x473 + x493 + x497 <= 1 + +x19 + x27 + x47 + x49 + x50 + x51 + x60 + x61 + x62 + x63 ++ x64 + x80 + x81 + x88 + x90 + x91 + x92 + x93 + x94 + x95 ++ x99 + x124 + x126 + x127 + x128 + x129 + x134 + x150 + x152 + x194 ++ x195 + x216 + x219 + x227 + x231 + x232 + x239 + x240 + x241 + x246 ++ x247 + x248 + x249 + x250 + x251 + x263 + x279 + x287 + x288 + x289 ++ x290 + x291 + x292 + x318 + x320 + x321 + x322 + x324 + x326 + x329 ++ x330 + x331 + x332 + x333 + x334 + x339 + x341 + x348 + x350 + x355 ++ x357 + x358 + x360 + x376 + x378 + x389 + x390 + x391 + x397 + x398 ++ x406 + x408 + x410 + x413 + x416 + x456 + x458 + x466 + x467 + x468 ++ x469 + x470 + x472 + x473 <= 1 + +x27 + x60 + x61 + x62 + x63 + x64 + x65 + x74 + x78 + x80 ++ x81 + x91 + x92 + x93 + x94 + x95 + x96 + x98 + x99 + x118 ++ x121 + x122 + x128 + x129 + x152 + x166 + x194 + x195 + x196 + x218 ++ x219 + x220 + x231 + x232 + x236 + x239 + x240 + x241 + x242 + x243 ++ x246 + x247 + x248 + x249 + x250 + x251 + x258 + x260 + x262 + x263 ++ x287 + x288 + x289 + x290 + x291 + x292 + x318 + x321 + x322 + x324 ++ x326 + x327 + x329 + x330 + x331 + x332 + x333 + x334 + x339 + x340 ++ x341 + x342 + x343 + x344 + x347 + x348 + x354 + x355 + x358 + x376 ++ x391 + x394 + x395 + x396 + x397 + x398 + x406 + x407 + x408 + x410 ++ x411 + x412 + x413 + x416 + x449 + x458 + x462 + x466 + x467 + x469 ++ x472 + x473 + x496 + x497 <= 1 + +x23 + x64 + x65 + x80 + x82 + x85 + x91 + x92 + x94 + x96 ++ x97 + x118 + x119 + x121 + x122 + x128 + x132 + x135 + x163 + x164 ++ x165 + x166 + x193 + x196 + x197 + x198 + x199 + x201 + x202 + x203 ++ x215 + x220 + x228 + x239 + x240 + x242 + x243 + x246 + x247 + x248 ++ x249 + x251 + x258 + x262 + x263 + x288 + x289 + x290 + x291 + x292 ++ x317 + x318 + x321 + x322 + x324 + x325 + x326 + x327 + x328 + x331 ++ x332 + x339 + x340 + x341 + x342 + x344 + x354 + x355 + x356 + x376 ++ x393 + x395 + x396 + x397 + x398 + x408 + x461 + x463 + x465 + x472 ++ x476 + x483 + x485 <= 1 + +x1 + x2 + x5 + x23 + x35 + x36 + x39 + x62 + x63 + x64 ++ x65 + x73 + x74 + x75 + x76 + x77 + x82 + x85 + x90 + x91 ++ x92 + x94 + x97 + x119 + x128 + x132 + x133 + x135 + x143 + x145 ++ x162 + x163 + x164 + x165 + x166 + x167 + x175 + x193 + x194 + x196 ++ x197 + x198 + x199 + x200 + x201 + x202 + x203 + x215 + x216 + x220 ++ x228 + x229 + x235 + x239 + x242 + x243 + x244 + x247 + x248 + x249 ++ x251 + x258 + x262 + x263 + x288 + x289 + x290 + x291 + x292 + x317 ++ x318 + x319 + x320 + x321 + x322 + x324 + x325 + x326 + x327 + x328 ++ x331 + x332 + x341 + x342 + x344 + x348 + x349 + x351 + x352 + x353 ++ x354 + x355 + x356 + x365 + x367 + x372 + x376 + x382 + x393 + x394 ++ x395 + x396 + x397 + x406 + x407 + x408 + x409 + x412 + x415 + x417 ++ x452 + x460 + x461 + x462 + x465 + x472 + x473 + x476 + x483 <= 1 + +x2 + x3 + x23 + x40 + x41 + x43 + x48 + x62 + x63 + x64 ++ x65 + x73 + x75 + x77 + x78 + x90 + x91 + x94 + x97 + x121 ++ x135 + x143 + x145 + x162 + x164 + x165 + x169 + x196 + x197 + x215 ++ x228 + x229 + x239 + x242 + x243 + x244 + x262 + x289 + x290 + x292 ++ x317 + x318 + x319 + x320 + x321 + x322 + x326 + x327 + x331 + x342 ++ x343 + x344 + x346 + x349 + x351 + x352 + x353 + x354 + x355 + x364 ++ x365 + x366 + x367 + x368 + x369 + x372 + x373 + x382 + x387 + x393 ++ x394 + x395 + x396 + x407 + x408 + x409 + x415 + x417 + x456 + x457 ++ x472 + x474 + x476 + x483 + x484 + x496 <= 1 + +x2 + x16 + x21 + x43 + x48 + x49 + x64 + x65 + x72 + x75 ++ x91 + x138 + x140 + x164 + x165 + x175 + x192 + x196 + x317 + x318 ++ x319 + x320 + x321 + x322 + x346 + x349 + x351 + x352 + x353 + x354 ++ x355 + x356 + x368 + x373 + x382 + x393 + x394 + x396 + x408 + x415 ++ x417 + x460 + x472 + x476 + x484 <= 1 + +x17 + x65 + x175 + x239 + x243 + x322 + x346 + x356 + x439 <= 1 + +x9 + x10 + x60 + x61 + x63 + x80 + x81 + x85 + x118 + x120 ++ x123 + x125 + x126 + x127 + x128 + x129 + x134 + x230 + x246 + x248 ++ x251 + x262 + x279 + x287 + x290 + x291 + x292 + x305 + x306 + x324 ++ x329 + x339 + x340 + x341 + x343 + x347 + x408 + x409 + x410 + x411 ++ x431 + x456 + x458 + x465 + x466 + x467 + x470 + x471 + x482 + x486 ++ x487 + x490 + x497 <= 1 + +x9 + x10 + x11 + x13 + x47 + x60 + x61 + x62 + x63 + x64 ++ x80 + x81 + x82 + x85 + x88 + x90 + x95 + x118 + x120 + x122 ++ x123 + x125 + x126 + x127 + x128 + x129 + x134 + x219 + x230 + x246 ++ x248 + x249 + x250 + x251 + x254 + x262 + x276 + x277 + x279 + x287 ++ x290 + x291 + x292 + x316 + x324 + x329 + x339 + x340 + x341 + x343 ++ x344 + x346 + x347 + x348 + x349 + x350 + x355 + x406 + x408 + x409 ++ x410 + x411 + x431 + x456 + x458 + x466 + x467 + x470 + x471 + x473 ++ x487 + x494 + x497 + x499 <= 1 + +x47 + x49 + x50 + x51 + x60 + x61 + x62 + x63 + x64 + x74 ++ x78 + x79 + x80 + x81 + x82 + x88 + x90 + x91 + x92 + x93 ++ x94 + x95 + x120 + x124 + x125 + x126 + x127 + x128 + x129 + x134 ++ x137 + x152 + x185 + x200 + x219 + x231 + x239 + x240 + x251 + x253 ++ x254 + x261 + x262 + x264 + x266 + x274 + x276 + x279 + x287 + x288 ++ x289 + x290 + x291 + x292 + x317 + x318 + x322 + x324 + x329 + x330 ++ x332 + x333 + x334 + x339 + x340 + x341 + x342 + x343 + x344 + x345 ++ x346 + x347 + x349 + x350 + x352 + x355 + x359 + x406 + x408 + x409 ++ x410 + x411 + x431 + x435 + x458 + x466 + x467 + x468 + x469 + x470 ++ x471 + x473 + x475 + x487 + x494 + x497 + x499 <= 1 + +x27 + x39 + x47 + x49 + x60 + x62 + x63 + x74 + x78 + x79 ++ x80 + x81 + x82 + x83 + x88 + x90 + x91 + x92 + x93 + x94 ++ x95 + x99 + x121 + x124 + x126 + x127 + x128 + x129 + x152 + x193 ++ x194 + x196 + x199 + x200 + x203 + x216 + x218 + x219 + x220 + x227 ++ x231 + x232 + x240 + x241 + x246 + x249 + x251 + x252 + x253 + x254 ++ x263 + x264 + x266 + x274 + x276 + x279 + x288 + x289 + x290 + x291 ++ x292 + x317 + x318 + x320 + x321 + x322 + x324 + x327 + x329 + x330 ++ x332 + x333 + x334 + x339 + x340 + x341 + x342 + x343 + x344 + x347 ++ x348 + x350 + x352 + x354 + x355 + x357 + x359 + x378 + x389 + x390 ++ x392 + x406 + x408 + x410 + x411 + x412 + x413 + x416 + x431 + x466 ++ x467 + x469 + x470 + x473 + x494 + x496 + x497 <= 1 + +x26 + x27 + x28 + x47 + x48 + x60 + x62 + x63 + x64 + x65 ++ x74 + x78 + x79 + x80 + x81 + x82 + x91 + x92 + x93 + x94 ++ x95 + x98 + x99 + x121 + x122 + x124 + x133 + x137 + x152 + x187 ++ x193 + x194 + x195 + x196 + x199 + x200 + x203 + x216 + x218 + x219 ++ x220 + x227 + x230 + x232 + x239 + x240 + x241 + x242 + x244 + x246 ++ x247 + x248 + x249 + x250 + x251 + x253 + x254 + x263 + x264 + x266 ++ x267 + x268 + x269 + x287 + x288 + x289 + x290 + x291 + x292 + x317 ++ x318 + x320 + x321 + x322 + x323 + x324 + x325 + x326 + x327 + x328 ++ x329 + x330 + x331 + x332 + x333 + x334 + x339 + x340 + x341 + x342 ++ x343 + x344 + x347 + x348 + x352 + x354 + x355 + x376 + x377 + x378 ++ x379 + x382 + x392 + x394 + x395 + x396 + x398 + x406 + x407 + x408 ++ x410 + x411 + x412 + x413 + x415 + x416 + x452 + x458 + x461 + x462 ++ x464 + x465 + x470 + x472 + x496 + x497 <= 1 + +x1 + x3 + x20 + x22 + x23 + x28 + x38 + x47 + x48 + x61 ++ x62 + x63 + x64 + x65 + x72 + x73 + x74 + x75 + x76 + x77 ++ x78 + x79 + x80 + x81 + x82 + x83 + x91 + x92 + x93 + x94 ++ x95 + x98 + x127 + x132 + x133 + x135 + x136 + x137 + x148 + x162 ++ x166 + x193 + x194 + x196 + x198 + x199 + x200 + x201 + x202 + x203 ++ x215 + x216 + x217 + x218 + x219 + x220 + x228 + x229 + x231 + x232 ++ x235 + x239 + x240 + x241 + x242 + x244 + x248 + x250 + x263 + x264 ++ x266 + x267 + x268 + x288 + x289 + x290 + x291 + x292 + x317 + x318 ++ x319 + x320 + x321 + x322 + x323 + x325 + x326 + x327 + x328 + x330 ++ x340 + x342 + x343 + x344 + x347 + x348 + x352 + x354 + x355 + x356 ++ x367 + x377 + x378 + x382 + x396 + x398 + x406 + x407 + x410 + x411 ++ x412 + x413 + x414 + x415 + x416 + x417 + x427 + x452 + x460 + x461 ++ x462 + x464 + x465 + x472 + x473 + x474 + x475 + x496 + x497 <= 1 + +x1 + x2 + x3 + x5 + x19 + x20 + x22 + x23 + x25 + x26 ++ x28 + x35 + x36 + x37 + x38 + x41 + x47 + x48 + x50 + x51 ++ x59 + x62 + x63 + x64 + x65 + x72 + x73 + x74 + x75 + x76 ++ x77 + x78 + x79 + x83 + x90 + x91 + x92 + x93 + x94 + x119 ++ x127 + x132 + x133 + x135 + x145 + x162 + x163 + x164 + x165 + x166 ++ x167 + x169 + x177 + x192 + x193 + x194 + x196 + x197 + x198 + x199 ++ x200 + x201 + x202 + x215 + x216 + x217 + x218 + x219 + x220 + x228 ++ x229 + x231 + x232 + x235 + x240 + x241 + x242 + x243 + x244 + x247 ++ x248 + x249 + x250 + x251 + x288 + x289 + x290 + x291 + x292 + x317 ++ x318 + x319 + x320 + x321 + x322 + x323 + x325 + x326 + x327 + x328 ++ x330 + x331 + x333 + x342 + x343 + x344 + x348 + x352 + x356 + x364 ++ x365 + x366 + x367 + x369 + x371 + x372 + x374 + x375 + x377 + x382 ++ x393 + x394 + x395 + x396 + x397 + x406 + x407 + x408 + x410 + x411 ++ x412 + x413 + x415 + x416 + x417 + x427 + x452 + x457 + x460 + x461 ++ x462 + x464 + x465 + x472 + x473 + x474 + x475 + x476 + x496 <= 1 + +x2 + x3 + x5 + x35 + x36 + x37 + x40 + x41 + x43 + x44 ++ x48 + x62 + x64 + x65 + x73 + x74 + x75 + x77 + x78 + x79 ++ x83 + x121 + x135 + x137 + x152 + x153 + x162 + x163 + x164 + x165 ++ x166 + x167 + x169 + x177 + x191 + x192 + x193 + x194 + x196 + x197 ++ x199 + x200 + x201 + x202 + x204 + x215 + x216 + x218 + x228 + x239 ++ x242 + x243 + x244 + x247 + x248 + x249 + x250 + x251 + x258 + x288 ++ x289 + x290 + x291 + x292 + x298 + x318 + x320 + x322 + x326 + x330 ++ x342 + x343 + x344 + x351 + x353 + x356 + x364 + x366 + x367 + x368 ++ x369 + x382 + x393 + x394 + x395 + x396 + x409 + x412 + x415 + x417 ++ x457 + x460 + x461 + x463 + x464 + x465 + x472 + x474 + x475 + x476 ++ x496 <= 1 + +x2 + x3 + x18 + x23 + x36 + x37 + x43 + x44 + x63 + x64 ++ x65 + x73 + x74 + x75 + x77 + x83 + x162 + x163 + x164 + x165 ++ x169 + x191 + x192 + x193 + x196 + x197 + x201 + x202 + x204 + x205 ++ x228 + x229 + x239 + x242 + x243 + x244 + x250 + x258 + x262 + x289 ++ x292 + x317 + x318 + x319 + x320 + x321 + x322 + x326 + x327 + x343 ++ x349 + x351 + x352 + x353 + x354 + x356 + x364 + x365 + x367 + x368 ++ x374 + x382 + x387 + x393 + x407 + x411 + x412 + x415 + x417 + x452 ++ x457 + x460 + x461 + x463 + x464 + x465 + x475 + x476 + x484 <= 1 + +x2 + x23 + x63 + x65 + x73 + x74 + x75 + x77 + x83 + x162 ++ x163 + x164 + x165 + x169 + x187 + x191 + x228 + x229 + x239 + x242 ++ x243 + x244 + x258 + x262 + x289 + x318 + x319 + x320 + x321 + x322 ++ x326 + x343 + x349 + x351 + x365 + x368 + x393 + x412 + x415 + x417 ++ x450 + x460 + x461 + x471 <= 1 + +x11 + x14 + x60 + x61 + x62 + x64 + x81 + x82 + x85 + x88 ++ x118 + x123 + x127 + x145 + x250 + x276 + x277 + x287 + x291 + x318 ++ x322 + x340 + x343 + x344 + x345 + x346 + x347 + x348 + x349 + x350 ++ x353 + x478 + x479 + x480 + x494 + x497 + x499 <= 1 + +x10 + x11 + x13 + x14 + x49 + x60 + x61 + x62 + x63 + x64 ++ x80 + x81 + x82 + x85 + x88 + x89 + x118 + x120 + x122 + x123 ++ x126 + x127 + x134 + x230 + x231 + x241 + x250 + x257 + x261 + x274 ++ x276 + x279 + x287 + x291 + x318 + x322 + x324 + x330 + x339 + x340 ++ x342 + x343 + x344 + x345 + x346 + x347 + x348 + x349 + x350 + x406 ++ x408 + x409 + x410 + x411 + x466 + x471 + x475 + x494 + x497 + x499 + <= 1 + +x49 + x60 + x61 + x64 + x74 + x76 + x78 + x81 + x82 + x84 ++ x88 + x89 + x90 + x92 + x93 + x94 + x95 + x126 + x127 + x129 ++ x231 + x239 + x240 + x241 + x246 + x249 + x251 + x252 + x254 + x257 ++ x267 + x268 + x269 + x291 + x318 + x322 + x324 + x329 + x330 + x333 ++ x339 + x340 + x341 + x342 + x343 + x344 + x345 + x347 + x350 + x355 ++ x406 + x408 + x409 + x410 + x411 + x413 + x416 + x431 + x435 + x466 ++ x467 + x468 + x471 + x473 + x475 + x480 + x494 + x496 + x497 + x499 + <= 1 + +x5 + x27 + x39 + x49 + x60 + x61 + x72 + x74 + x76 + x78 ++ x79 + x81 + x82 + x83 + x84 + x89 + x90 + x92 + x93 + x94 ++ x95 + x121 + x126 + x127 + x129 + x136 + x216 + x218 + x219 + x227 ++ x229 + x230 + x231 + x232 + x240 + x246 + x247 + x249 + x251 + x252 ++ x253 + x254 + x256 + x264 + x266 + x267 + x268 + x269 + x318 + x320 ++ x321 + x324 + x330 + x332 + x333 + x334 + x339 + x341 + x342 + x343 ++ x344 + x345 + x346 + x347 + x348 + x350 + x359 + x377 + x378 + x394 ++ x398 + x412 + x413 + x416 + x431 + x435 + x462 + x466 + x467 + x468 ++ x469 + x470 + x471 + x473 + x474 + x476 + x477 + x495 + x496 + x497 + <= 1 + +x19 + x24 + x25 + x26 + x27 + x28 + x29 + x60 + x61 + x65 ++ x72 + x73 + x74 + x75 + x76 + x77 + x78 + x79 + x80 + x81 ++ x82 + x83 + x91 + x92 + x93 + x95 + x121 + x126 + x127 + x133 ++ x135 + x136 + x142 + x152 + x187 + x193 + x194 + x195 + x200 + x203 ++ x207 + x216 + x217 + x218 + x219 + x220 + x227 + x228 + x229 + x230 ++ x231 + x232 + x246 + x247 + x249 + x250 + x251 + x252 + x253 + x263 ++ x264 + x265 + x266 + x267 + x268 + x269 + x287 + x288 + x289 + x290 ++ x291 + x292 + x294 + x318 + x321 + x329 + x330 + x331 + x332 + x333 ++ x334 + x339 + x341 + x342 + x344 + x347 + x348 + x352 + x353 + x354 ++ x355 + x369 + x372 + x374 + x377 + x378 + x379 + x380 + x382 + x392 ++ x394 + x395 + x398 + x406 + x407 + x410 + x411 + x412 + x413 + x415 ++ x416 + x431 + x435 + x462 + x464 + x465 + x467 + x468 + x470 + x472 ++ x473 + x474 + x475 + x476 + x477 + x495 + x496 + x497 <= 1 + +x3 + x19 + x20 + x22 + x23 + x24 + x25 + x26 + x27 + x28 ++ x29 + x38 + x47 + x48 + x50 + x62 + x63 + x64 + x65 + x72 ++ x73 + x74 + x75 + x76 + x77 + x78 + x79 + x81 + x83 + x90 ++ x91 + x92 + x93 + x94 + x95 + x126 + x127 + x132 + x133 + x135 ++ x136 + x137 + x192 + x193 + x194 + x195 + x196 + x197 + x199 + x201 ++ x215 + x216 + x217 + x218 + x219 + x220 + x227 + x228 + x229 + x230 ++ x231 + x232 + x240 + x241 + x242 + x246 + x247 + x248 + x249 + x250 ++ x251 + x263 + x264 + x265 + x266 + x267 + x268 + x269 + x287 + x288 ++ x289 + x290 + x291 + x292 + x297 + x317 + x318 + x319 + x320 + x321 ++ x322 + x323 + x326 + x327 + x328 + x330 + x333 + x334 + x342 + x343 ++ x344 + x347 + x348 + x352 + x353 + x354 + x355 + x356 + x365 + x369 ++ x371 + x372 + x374 + x398 + x406 + x407 + x410 + x411 + x412 + x413 ++ x414 + x415 + x416 + x417 + x427 + x462 + x464 + x465 + x468 + x472 ++ x473 + x474 + x475 + x476 + x477 + x495 + x496 + x497 <= 1 + +x0 + x1 + x2 + x3 + x5 + x19 + x20 + x21 + x22 + x23 ++ x24 + x26 + x27 + x28 + x29 + x35 + x37 + x38 + x44 + x47 ++ x48 + x50 + x51 + x55 + x59 + x62 + x63 + x68 + x72 + x73 ++ x74 + x76 + x77 + x78 + x79 + x83 + x91 + x93 + x95 + x101 ++ x132 + x133 + x135 + x136 + x137 + x144 + x145 + x150 + x177 + x192 ++ x193 + x194 + x195 + x196 + x197 + x205 + x216 + x217 + x218 + x219 ++ x220 + x235 + x239 + x242 + x248 + x249 + x251 + x266 + x267 + x288 ++ x290 + x291 + x317 + x318 + x319 + x320 + x321 + x323 + x325 + x326 ++ x327 + x328 + x330 + x333 + x342 + x344 + x348 + x351 + x354 + x356 ++ x364 + x365 + x367 + x371 + x374 + x375 + x382 + x393 + x398 + x401 ++ x405 + x407 + x410 + x411 + x412 + x413 + x415 + x417 + x431 + x460 ++ x464 + x465 + x472 + x474 + x475 + x476 + x477 + x496 <= 1 + +x0 + x1 + x2 + x3 + x5 + x18 + x20 + x21 + x23 + x24 ++ x28 + x29 + x41 + x43 + x44 + x47 + x68 + x71 + x73 + x74 ++ x75 + x76 + x77 + x78 + x83 + x92 + x93 + x101 + x119 + x128 ++ x133 + x137 + x150 + x152 + x153 + x162 + x163 + x164 + x165 + x166 ++ x167 + x168 + x169 + x171 + x177 + x191 + x192 + x193 + x194 + x195 ++ x196 + x197 + x204 + x205 + x215 + x216 + x218 + x220 + x228 + x239 ++ x240 + x242 + x243 + x244 + x251 + x267 + x289 + x290 + x292 + x298 ++ x317 + x318 + x319 + x320 + x321 + x322 + x326 + x327 + x343 + x349 ++ x351 + x352 + x353 + x356 + x364 + x365 + x366 + x368 + x369 + x371 ++ x372 + x374 + x375 + x376 + x382 + x393 + x396 + x406 + x407 + x410 ++ x411 + x412 + x415 + x416 + x417 + x452 + x457 + x460 + x461 + x462 ++ x463 + x464 + x465 + x472 + x474 + x475 + x476 <= 1 + +x2 + x18 + x23 + x28 + x65 + x73 + x75 + x77 + x100 + x101 ++ x128 + x137 + x162 + x169 + x186 + x193 + x196 + x197 + x204 + x205 ++ x228 + x239 + x242 + x243 + x244 + x247 + x289 + x292 + x297 + x317 ++ x320 + x321 + x327 + x343 + x351 + x353 + x356 + x364 + x368 + x369 ++ x372 + x387 + x406 + x411 + x412 + x415 + x460 + x461 + x464 + x465 ++ x475 + x476 <= 1 + +x18 + x20 + x23 + x73 + x75 + x77 + x100 + x155 + x162 + x163 ++ x186 + x187 + x191 + x193 + x204 + x205 + x206 + x228 + x239 + x242 ++ x243 + x244 + x258 + x261 + x353 + x364 + x434 + x460 + x463 + x491 + <= 1 + +x14 + x51 + x60 + x88 + x123 + x127 + x145 + x227 + x250 + x256 ++ x257 + x276 + x283 + x287 + x291 + x322 + x339 + x343 + x344 + x345 ++ x346 + x347 + x348 + x349 + x350 + x477 + x479 + x480 + x494 + x499 + <= 1 + +x11 + x12 + x13 + x51 + x60 + x62 + x82 + x84 + x85 + x88 ++ x89 + x120 + x127 + x230 + x235 + x250 + x256 + x257 + x261 + x274 ++ x276 + x283 + x291 + x339 + x340 + x342 + x343 + x345 + x346 + x347 ++ x348 + x349 + x350 + x367 + x406 + x408 + x409 + x414 + x477 + x480 ++ x494 + x499 <= 1 + +x12 + x13 + x49 + x51 + x60 + x61 + x62 + x65 + x82 + x84 ++ x85 + x86 + x88 + x89 + x90 + x92 + x94 + x95 + x126 + x147 ++ x148 + x230 + x238 + x239 + x240 + x241 + x243 + x244 + x251 + x257 ++ x261 + x276 + x291 + x318 + x319 + x321 + x324 + x330 + x333 + x339 ++ x340 + x341 + x342 + x343 + x344 + x345 + x346 + x347 + x348 + x349 ++ x350 + x406 + x408 + x409 + x410 + x411 + x431 + x435 + x467 + x468 ++ x471 + x477 + x480 + x494 + x495 + x496 + x497 + x498 + x499 <= 1 + +x49 + x53 + x60 + x61 + x62 + x82 + x90 + x92 + x93 + x94 ++ x126 + x129 + x230 + x231 + x240 + x247 + x251 + x252 + x253 + x257 ++ x261 + x268 + x269 + x291 + x292 + x318 + x321 + x324 + x339 + x341 ++ x342 + x343 + x344 + x345 + x346 + x348 + x350 + x352 + x377 + x378 ++ x398 + x409 + x431 + x470 + x471 + x473 + x476 + x495 + x496 + x498 ++ x499 <= 1 + +x19 + x20 + x23 + x24 + x25 + x26 + x29 + x46 + x47 + x48 ++ x49 + x51 + x72 + x73 + x76 + x77 + x78 + x79 + x82 + x83 ++ x84 + x90 + x91 + x92 + x93 + x95 + x121 + x133 + x142 + x187 ++ x193 + x194 + x195 + x197 + x203 + x207 + x209 + x215 + x216 + x217 ++ x218 + x220 + x227 + x228 + x229 + x230 + x231 + x232 + x242 + x244 ++ x246 + x247 + x248 + x249 + x250 + x265 + x268 + x287 + x288 + x289 ++ x290 + x292 + x294 + x313 + x317 + x318 + x319 + x320 + x321 + x322 ++ x323 + x327 + x328 + x332 + x334 + x336 + x337 + x341 + x352 + x353 ++ x354 + x377 + x378 + x379 + x380 + x407 + x410 + x411 + x412 + x413 ++ x414 + x415 + x416 + x417 + x424 + x429 + x462 + x465 + x468 + x470 ++ x474 + x475 + x476 + x477 + x495 <= 1 + +x19 + x20 + x21 + x23 + x24 + x25 + x27 + x46 + x47 + x48 ++ x49 + x50 + x60 + x63 + x65 + x72 + x73 + x74 + x75 + x76 ++ x77 + x78 + x79 + x81 + x83 + x87 + x91 + x92 + x93 + x94 ++ x95 + x103 + x121 + x126 + x127 + x142 + x193 + x194 + x195 + x197 ++ x215 + x216 + x217 + x218 + x219 + x220 + x227 + x228 + x229 + x230 ++ x231 + x232 + x240 + x241 + x242 + x246 + x248 + x250 + x251 + x263 ++ x264 + x265 + x269 + x280 + x288 + x289 + x290 + x291 + x292 + x294 ++ x297 + x317 + x318 + x319 + x320 + x321 + x322 + x323 + x326 + x327 ++ x328 + x330 + x332 + x333 + x334 + x337 + x345 + x353 + x354 + x372 ++ x374 + x377 + x378 + x379 + x380 + x400 + x407 + x410 + x412 + x413 ++ x414 + x416 + x417 + x424 + x425 + x427 + x429 + x462 + x464 + x465 ++ x468 + x472 + x473 + x474 + x475 + x476 + x477 + x495 <= 1 + +x0 + x1 + x2 + x3 + x4 + x20 + x21 + x22 + x23 + x27 ++ x28 + x29 + x46 + x47 + x51 + x55 + x57 + x59 + x61 + x68 ++ x72 + x73 + x75 + x76 + x77 + x79 + x83 + x91 + x92 + x93 ++ x95 + x102 + x104 + x132 + x136 + x137 + x146 + x154 + x172 + x176 ++ x192 + x193 + x195 + x197 + x216 + x220 + x242 + x248 + x251 + x288 ++ x289 + x298 + x315 + x317 + x318 + x319 + x320 + x321 + x322 + x323 ++ x326 + x348 + x371 + x374 + x398 + x400 + x401 + x405 + x407 + x410 ++ x411 + x412 + x415 + x417 + x431 + x434 + x450 + x452 + x460 + x461 ++ x464 + x465 + x474 + x476 + x496 <= 1 + +x0 + x1 + x2 + x4 + x5 + x7 + x20 + x22 + x23 + x24 ++ x26 + x28 + x41 + x44 + x61 + x65 + x66 + x68 + x71 + x72 ++ x73 + x75 + x76 + x77 + x83 + x92 + x93 + x95 + x136 + x146 ++ x150 + x152 + x153 + x154 + x155 + x158 + x159 + x164 + x167 + x168 ++ x170 + x171 + x192 + x193 + x195 + x196 + x197 + x220 + x239 + x240 ++ x242 + x288 + x290 + x292 + x298 + x317 + x318 + x319 + x320 + x321 ++ x322 + x351 + x353 + x356 + x369 + x371 + x374 + x375 + x376 + x400 ++ x401 + x407 + x410 + x430 + x431 + x432 + x434 + x447 + x450 + x451 ++ x452 + x455 + x457 + x460 + x461 + x463 + x464 + x465 + x474 + x475 ++ x476 <= 1 + +x0 + x1 + x5 + x20 + x23 + x44 + x46 + x48 + x61 + x65 ++ x66 + x71 + x76 + x77 + x83 + x94 + x95 + x107 + x111 + x145 ++ x150 + x151 + x153 + x154 + x155 + x156 + x157 + x158 + x160 + x161 ++ x168 + x170 + x171 + x195 + x217 + x273 + x288 + x300 + x317 + x318 ++ x319 + x320 + x321 + x322 + x351 + x371 + x375 + x376 + x379 + x410 ++ x431 + x434 + x447 + x450 + x452 + x453 + x454 + x457 + x460 + x461 ++ x463 + x474 + x475 + x476 + x491 <= 1 + +x5 + x18 + x20 + x23 + x48 + x61 + x71 + x75 + x100 + x141 ++ x150 + x151 + x153 + x154 + x155 + x160 + x171 + x186 + x187 + x191 ++ x193 + x195 + x206 + x229 + x243 + x244 + x261 + x288 + x300 + x317 ++ x318 + x319 + x320 + x321 + x322 + x351 + x394 + x410 + x434 + x447 ++ x450 + x454 + x455 + x457 + x460 + x463 + x475 + x491 <= 1 + +x14 + x51 + x52 + x60 + x62 + x230 + x233 + x241 + x256 + x259 ++ x283 + x291 + x322 + x343 + x344 + x345 + x346 + x347 + x348 + x349 ++ x350 + x406 + x414 + x477 + x488 + x494 + x495 <= 1 + +x12 + x51 + x60 + x62 + x82 + x90 + x95 + x120 + x230 + x233 ++ x235 + x238 + x240 + x241 + x244 + x247 + x250 + x256 + x259 + x261 ++ x319 + x322 + x329 + x340 + x342 + x343 + x344 + x345 + x346 + x347 ++ x348 + x349 + x350 + x408 + x409 + x414 + x477 + x494 + x495 + x498 ++ x499 <= 1 + +x12 + x46 + x49 + x51 + x65 + x84 + x86 + x90 + x92 + x94 ++ x95 + x120 + x123 + x147 + x149 + x217 + x233 + x234 + x235 + x238 ++ x239 + x240 + x241 + x243 + x244 + x246 + x247 + x250 + x251 + x256 ++ x259 + x261 + x291 + x294 + x298 + x319 + x321 + x322 + x327 + x339 ++ x340 + x342 + x343 + x344 + x345 + x346 + x347 + x348 + x349 + x406 ++ x408 + x409 + x413 + x414 + x416 + x419 + x462 + x467 + x471 + x494 ++ x495 + x498 + x499 <= 1 + +x24 + x45 + x46 + x48 + x50 + x51 + x58 + x79 + x84 + x86 ++ x87 + x90 + x92 + x142 + x149 + x194 + x209 + x217 + x233 + x234 ++ x236 + x238 + x240 + x241 + x242 + x243 + x244 + x246 + x247 + x249 ++ x250 + x259 + x261 + x294 + x298 + x319 + x337 + x345 + x347 + x401 ++ x407 + x409 + x410 + x411 + x412 + x413 + x414 + x415 + x416 + x426 ++ x436 + x437 + x439 + x440 + x462 + x463 + x474 + x498 + x499 <= 1 + +x19 + x24 + x25 + x27 + x29 + x42 + x45 + x46 + x47 + x48 ++ x49 + x50 + x51 + x72 + x73 + x76 + x79 + x83 + x84 + x86 ++ x87 + x90 + x91 + x92 + x93 + x95 + x104 + x133 + x142 + x146 ++ x151 + x194 + x195 + x207 + x209 + x215 + x216 + x217 + x218 + x228 ++ x229 + x230 + x231 + x232 + x234 + x236 + x240 + x241 + x244 + x245 ++ x246 + x247 + x249 + x250 + x259 + x260 + x265 + x275 + x288 + x289 ++ x290 + x294 + x298 + x318 + x319 + x322 + x323 + x325 + x327 + x328 ++ x332 + x335 + x336 + x337 + x338 + x341 + x345 + x347 + x349 + x377 ++ x378 + x379 + x380 + x381 + x401 + x407 + x409 + x410 + x411 + x412 ++ x413 + x414 + x416 + x424 + x426 + x429 + x432 + x436 + x440 + x450 ++ x462 + x463 + x472 + x499 <= 1 + +x19 + x20 + x21 + x24 + x25 + x27 + x29 + x46 + x47 + x48 ++ x49 + x50 + x51 + x54 + x56 + x57 + x58 + x59 + x61 + x65 ++ x72 + x73 + x74 + x75 + x76 + x77 + x78 + x79 + x83 + x86 ++ x87 + x90 + x91 + x92 + x93 + x95 + x103 + x104 + x142 + x144 ++ x146 + x151 + x163 + x167 + x192 + x193 + x194 + x195 + x197 + x230 ++ x231 + x232 + x234 + x236 + x237 + x240 + x241 + x242 + x244 + x246 ++ x247 + x248 + x250 + x259 + x260 + x265 + x269 + x288 + x289 + x290 ++ x294 + x297 + x311 + x312 + x313 + x314 + x315 + x317 + x318 + x319 ++ x320 + x321 + x322 + x323 + x325 + x326 + x327 + x328 + x332 + x338 ++ x341 + x345 + x347 + x349 + x350 + x353 + x362 + x377 + x378 + x379 ++ x380 + x381 + x399 + x400 + x401 + x407 + x410 + x411 + x413 + x414 ++ x417 + x424 + x425 + x426 + x427 + x428 + x429 + x431 + x432 + x434 ++ x450 + x454 + x455 + x462 + x468 + x474 + x475 + x476 + x477 <= 1 + +x0 + x1 + x3 + x4 + x21 + x22 + x24 + x25 + x26 + x27 ++ x29 + x46 + x47 + x48 + x49 + x50 + x51 + x54 + x55 + x56 ++ x57 + x59 + x61 + x65 + x66 + x67 + x72 + x74 + x79 + x83 ++ x87 + x90 + x91 + x92 + x93 + x95 + x102 + x103 + x104 + x105 ++ x136 + x137 + x146 + x153 + x154 + x155 + x163 + x167 + x168 + x170 ++ x172 + x173 + x176 + x179 + x192 + x193 + x195 + x197 + x221 + x222 ++ x223 + x265 + x275 + x287 + x288 + x289 + x290 + x294 + x295 + x297 ++ x310 + x311 + x312 + x313 + x315 + x317 + x318 + x319 + x320 + x321 ++ x322 + x326 + x340 + x341 + x350 + x380 + x399 + x400 + x401 + x402 ++ x404 + x412 + x413 + x415 + x417 + x428 + x430 + x431 + x432 + x434 ++ x450 + x454 + x455 + x461 + x463 + x464 + x468 + x474 + x476 <= 1 + +x0 + x1 + x3 + x4 + x5 + x6 + x7 + x8 + x24 + x25 ++ x26 + x28 + x42 + x46 + x47 + x48 + x49 + x50 + x51 + x65 ++ x66 + x67 + x68 + x69 + x70 + x72 + x87 + x91 + x92 + x93 ++ x102 + x103 + x104 + x105 + x106 + x136 + x137 + x146 + x152 + x153 ++ x154 + x155 + x156 + x157 + x158 + x159 + x161 + x167 + x168 + x170 ++ x171 + x172 + x173 + x176 + x179 + x192 + x193 + x195 + x197 + x221 ++ x223 + x240 + x242 + x259 + x260 + x277 + x287 + x288 + x290 + x292 ++ x312 + x313 + x315 + x317 + x318 + x319 + x320 + x321 + x322 + x326 ++ x371 + x373 + x375 + x379 + x380 + x381 + x384 + x407 + x410 + x430 ++ x431 + x432 + x433 + x434 + x447 + x450 + x451 + x452 + x453 + x454 ++ x455 + x457 + x461 + x463 + x464 + x474 + x475 <= 1 + +x0 + x1 + x5 + x6 + x8 + x46 + x48 + x66 + x69 + x70 ++ x71 + x83 + x91 + x93 + x102 + x103 + x105 + x107 + x150 + x151 ++ x153 + x154 + x155 + x156 + x157 + x158 + x159 + x160 + x161 + x168 ++ x170 + x171 + x173 + x176 + x179 + x195 + x197 + x217 + x223 + x229 ++ x273 + x287 + x288 + x292 + x300 + x317 + x318 + x319 + x320 + x321 ++ x322 + x340 + x351 + x371 + x373 + x375 + x379 + x431 + x434 + x447 ++ x450 + x453 + x454 + x455 + x457 + x460 + x461 + x463 + x464 + x474 ++ x475 <= 1 + +x5 + x18 + x20 + x48 + x61 + x69 + x71 + x105 + x107 + x141 ++ x144 + x145 + x146 + x150 + x151 + x153 + x154 + x155 + x156 + x160 ++ x161 + x173 + x229 + x243 + x255 + x271 + x288 + x292 + x300 + x317 ++ x318 + x320 + x321 + x322 + x339 + x434 + x453 + x454 + x455 + x457 ++ x460 + x463 + x464 + x475 + x486 + x491 <= 1 + +x52 + x53 + x202 + x227 + x230 + x283 + x286 + x322 + x344 + x345 ++ x347 + x349 + x406 + x414 + x488 + x494 + x495 <= 1 + +x20 + x46 + x49 + x51 + x60 + x90 + x94 + x95 + x115 + x120 ++ x151 + x227 + x233 + x237 + x238 + x244 + x246 + x247 + x250 + x291 ++ x343 + x344 + x346 + x348 + x349 + x381 + x384 + x413 + x414 + x416 ++ x418 + x421 + x437 + x438 + x477 + x494 + x495 + x498 + x499 <= 1 + +x20 + x45 + x46 + x47 + x49 + x51 + x60 + x90 + x92 + x93 ++ x94 + x95 + x115 + x117 + x125 + x233 + x234 + x237 + x238 + x240 ++ x241 + x243 + x246 + x247 + x250 + x259 + x293 + x298 + x304 + x319 ++ x321 + x323 + x325 + x327 + x345 + x346 + x347 + x348 + x349 + x381 ++ x407 + x408 + x409 + x419 + x421 + x434 + x437 + x455 + x463 + x471 ++ x477 + x494 + x495 + x498 <= 1 + +x19 + x24 + x25 + x29 + x40 + x45 + x46 + x47 + x50 + x51 ++ x58 + x63 + x72 + x76 + x79 + x84 + x86 + x87 + x90 + x92 ++ x93 + x95 + x114 + x125 + x142 + x151 + x194 + x195 + x217 + x233 ++ x234 + x236 + x237 + x238 + x240 + x241 + x242 + x243 + x244 + x246 ++ x247 + x250 + x259 + x260 + x261 + x282 + x293 + x294 + x298 + x310 ++ x311 + x314 + x319 + x320 + x323 + x325 + x327 + x328 + x341 + x345 ++ x346 + x347 + x349 + x378 + x379 + x380 + x381 + x401 + x407 + x408 ++ x409 + x410 + x411 + x413 + x414 + x415 + x417 + x430 + x432 + x433 ++ x436 + x437 + x439 + x454 + x463 + x473 + x474 + x477 + x495 + x498 ++ x499 <= 1 + +x19 + x20 + x21 + x25 + x29 + x40 + x42 + x45 + x46 + x47 ++ x48 + x49 + x50 + x51 + x54 + x56 + x58 + x67 + x72 + x73 ++ x76 + x78 + x79 + x84 + x86 + x87 + x90 + x91 + x92 + x93 ++ x95 + x103 + x133 + x142 + x144 + x146 + x151 + x193 + x194 + x195 ++ x197 + x209 + x216 + x217 + x218 + x228 + x232 + x234 + x236 + x237 ++ x240 + x241 + x242 + x243 + x244 + x250 + x258 + x259 + x260 + x275 ++ x278 + x288 + x289 + x294 + x301 + x310 + x311 + x312 + x313 + x314 ++ x317 + x318 + x319 + x320 + x323 + x325 + x328 + x335 + x336 + x338 ++ x339 + x341 + x347 + x349 + x377 + x378 + x379 + x380 + x381 + x400 ++ x401 + x407 + x408 + x409 + x410 + x411 + x414 + x417 + x425 + x426 ++ x429 + x430 + x432 + x433 + x434 + x439 + x454 + x462 + x463 + x472 ++ x473 + x474 + x475 + x477 + x498 + x499 <= 1 + +x3 + x4 + x19 + x21 + x40 + x42 + x45 + x46 + x47 + x48 ++ x49 + x50 + x51 + x54 + x56 + x57 + x58 + x67 + x69 + x72 ++ x76 + x78 + x79 + x80 + x83 + x86 + x87 + x90 + x91 + x92 ++ x93 + x95 + x135 + x146 + x151 + x172 + x192 + x194 + x195 + x197 ++ x226 + x236 + x237 + x244 + x248 + x250 + x258 + x259 + x260 + x265 ++ x294 + x310 + x311 + x312 + x313 + x317 + x318 + x319 + x320 + x321 ++ x322 + x323 + x325 + x328 + x335 + x336 + x338 + x341 + x345 + x346 ++ x349 + x353 + x361 + x362 + x377 + x378 + x379 + x380 + x381 + x400 ++ x407 + x408 + x409 + x410 + x411 + x424 + x425 + x426 + x428 + x432 ++ x433 + x454 + x461 + x463 + x491 + x498 <= 1 + +x0 + x3 + x4 + x18 + x19 + x21 + x22 + x25 + x26 + x29 ++ x42 + x46 + x47 + x48 + x49 + x50 + x54 + x55 + x56 + x57 ++ x67 + x69 + x70 + x72 + x79 + x87 + x90 + x91 + x92 + x93 ++ x95 + x128 + x129 + x136 + x157 + x172 + x197 + x221 + x222 + x223 ++ x224 + x226 + x259 + x260 + x275 + x277 + x278 + x295 + x297 + x310 ++ x311 + x312 + x313 + x315 + x317 + x318 + x319 + x320 + x321 + x335 ++ x340 + x361 + x363 + x379 + x380 + x381 + x399 + x400 + x402 + x403 ++ x404 + x425 + x428 + x430 + x432 + x433 + x434 + x435 + x461 + x463 ++ x464 + x475 + x476 <= 1 + +x0 + x1 + x4 + x6 + x7 + x18 + x19 + x21 + x22 + x26 ++ x42 + x46 + x47 + x48 + x49 + x50 + x51 + x54 + x55 + x56 ++ x66 + x67 + x69 + x70 + x75 + x91 + x92 + x93 + x104 + x106 ++ x124 + x129 + x136 + x152 + x153 + x154 + x155 + x156 + x157 + x158 ++ x168 + x170 + x172 + x173 + x197 + x221 + x222 + x223 + x224 + x225 ++ x226 + x259 + x260 + x277 + x287 + x288 + x290 + x310 + x312 + x313 ++ x315 + x317 + x318 + x319 + x320 + x321 + x350 + x363 + x373 + x379 ++ x380 + x381 + x384 + x385 + x400 + x404 + x423 + x428 + x430 + x431 ++ x432 + x433 + x434 + x435 + x451 + x452 + x461 + x463 + x464 + x474 ++ x475 + x476 <= 1 + +x8 + x18 + x19 + x22 + x48 + x61 + x70 + x94 + x103 + x105 ++ x106 + x107 + x108 + x109 + x112 + x141 + x143 + x144 + x145 + x146 ++ x150 + x151 + x153 + x154 + x155 + x159 + x161 + x167 + x170 + x171 ++ x173 + x174 + x176 + x178 + x179 + x197 + x249 + x255 + x259 + x270 ++ x271 + x273 + x300 + x317 + x319 + x320 + x321 + x322 + x325 + x327 ++ x340 + x373 + x399 + x402 + x431 + x433 + x434 + x447 + x450 + x454 ++ x461 + x464 + x469 <= 1 + +x5 + x18 + x20 + x22 + x48 + x61 + x94 + x107 + x110 + x141 ++ x143 + x144 + x145 + x146 + x150 + x151 + x153 + x154 + x155 + x159 ++ x160 + x229 + x243 + x249 + x255 + x270 + x271 + x288 + x292 + x317 ++ x318 + x319 + x320 + x321 + x325 + x327 + x340 + x342 + x433 + x434 ++ x447 + x448 + x450 + x453 + x454 + x455 + x457 + x475 <= 1 + +x20 + x28 + x49 + x193 + x227 + x283 + x286 + x299 + x303 + x322 ++ x344 + x406 + x409 + x414 + x420 + x477 + x488 + x494 + x495 <= 1 + +x20 + x28 + x49 + x51 + x90 + x93 + x94 + x95 + x113 + x115 ++ x151 + x227 + x240 + x241 + x283 + x299 + x304 + x341 + x344 + x346 ++ x348 + x381 + x407 + x409 + x414 + x418 + x420 + x438 + x477 <= 1 + +x20 + x90 + x93 + x94 + x95 + x113 + x114 + x115 + x117 + x194 ++ x208 + x227 + x240 + x241 + x243 + x246 + x247 + x250 + x283 + x293 ++ x298 + x304 + x314 + x319 + x323 + x325 + x346 + x380 + x381 + x388 ++ x407 + x408 + x409 + x414 + x418 + x419 + x420 + x421 + x430 + x434 ++ x438 + x455 + x477 + x495 + x498 <= 1 + +x46 + x47 + x50 + x58 + x72 + x76 + x113 + x114 + x116 + x117 ++ x125 + x142 + x194 + x217 + x237 + x240 + x241 + x243 + x244 + x246 ++ x247 + x278 + x282 + x284 + x289 + x293 + x298 + x301 + x303 + x304 ++ x314 + x319 + x339 + x345 + x346 + x349 + x380 + x408 + x409 + x414 ++ x417 + x430 + x432 + x436 + x438 + x473 + x474 + x477 + x498 <= 1 + +x19 + x25 + x46 + x47 + x48 + x49 + x50 + x51 + x58 + x72 ++ x76 + x90 + x93 + x116 + x142 + x143 + x144 + x182 + x195 + x209 ++ x217 + x218 + x240 + x241 + x243 + x244 + x275 + x278 + x287 + x293 ++ x294 + x301 + x310 + x311 + x314 + x319 + x320 + x325 + x339 + x340 ++ x341 + x346 + x349 + x377 + x381 + x409 + x414 + x432 + x434 + x473 ++ x477 <= 1 + +x18 + x21 + x22 + x31 + x47 + x48 + x49 + x57 + x68 + x141 ++ x142 + x143 + x144 + x145 + x146 + x198 + x277 + x278 + x293 + x295 ++ x296 + x340 + x383 + x399 + x402 + x403 + x430 + x432 + x435 <= 1 + +x0 + x18 + x21 + x22 + x29 + x31 + x47 + x48 + x49 + x50 ++ x57 + x72 + x102 + x106 + x112 + x124 + x125 + x128 + x129 + x141 ++ x142 + x143 + x144 + x145 + x146 + x186 + x188 + x189 + x190 + x192 ++ x197 + x198 + x221 + x222 + x223 + x224 + x226 + x260 + x274 + x275 ++ x277 + x278 + x285 + x293 + x295 + x296 + x297 + x317 + x319 + x320 ++ x340 + x386 + x399 + x402 + x403 + x404 + x430 + x432 + x435 + x441 ++ x443 + x446 + x448 + x449 + x451 + x476 + x479 + x481 <= 1 + +x0 + x1 + x4 + x18 + x19 + x21 + x22 + x26 + x30 + x31 ++ x47 + x48 + x49 + x50 + x51 + x55 + x56 + x102 + x104 + x106 ++ x112 + x124 + x125 + x128 + x129 + x141 + x142 + x143 + x144 + x145 ++ x146 + x172 + x174 + x179 + x188 + x189 + x192 + x198 + x221 + x222 ++ x223 + x224 + x225 + x226 + x259 + x260 + x278 + x285 + x287 + x295 ++ x297 + x312 + x315 + x317 + x318 + x340 + x350 + x384 + x385 + x399 ++ x402 + x403 + x404 + x430 + x431 + x432 + x433 + x434 + x435 + x443 ++ x446 + x448 + x449 + x451 + x452 + x469 + x489 <= 1 + +x0 + x4 + x18 + x19 + x22 + x61 + x70 + x89 + x105 + x106 ++ x107 + x108 + x109 + x110 + x111 + x112 + x124 + x125 + x128 + x141 ++ x143 + x144 + x145 + x146 + x167 + x173 + x174 + x176 + x178 + x179 ++ x180 + x192 + x249 + x255 + x259 + x270 + x272 + x315 + x317 + x319 ++ x320 + x321 + x325 + x342 + x348 + x350 + x373 + x385 + x399 + x402 ++ x403 + x404 + x433 + x435 + x445 + x447 + x448 + x449 + x451 + x469 + <= 1 + +x4 + x18 + x19 + x20 + x22 + x61 + x94 + x108 + x110 + x112 ++ x141 + x143 + x144 + x150 + x153 + x154 + x155 + x174 + x175 + x176 ++ x178 + x243 + x255 + x317 + x319 + x320 + x325 + x331 + x342 + x348 ++ x385 + x402 + x417 + x433 + x445 + x448 + x453 + x455 + x469 <= 1 + +x20 + x46 + x90 + x281 + x283 + x286 + x299 + x302 + x303 + x370 ++ x409 <= 1 + +x46 + x50 + x59 + x76 + x90 + x126 + x207 + x208 + x210 + x213 ++ x214 + x215 + x241 + x248 + x281 + x282 + x286 + x299 + x302 + x303 ++ x304 + x323 + x328 + x350 + x388 + x473 + x498 <= 1 + +x46 + x50 + x114 + x116 + x131 + x208 + x210 + x212 + x214 + x215 ++ x218 + x241 + x281 + x282 + x284 + x286 + x293 + x299 + x300 + x301 ++ x302 + x303 + x304 + x319 + x323 + x325 + x328 + x350 + x388 + x407 ++ x409 + x430 + x432 + x473 + x477 + x498 <= 1 + +x46 + x50 + x113 + x116 + x117 + x125 + x130 + x131 + x217 + x246 ++ x248 + x282 + x284 + x286 + x289 + x298 + x299 + x301 + x302 + x303 ++ x304 + x314 + x339 + x409 + x414 + x473 + x477 + x498 <= 1 + +x46 + x47 + x50 + x51 + x142 + x143 + x144 + x209 + x244 + x274 ++ x275 + x278 + x285 + x287 + x293 + x310 + x311 + x314 + x319 + x320 ++ x325 + x339 + x340 + x341 + x377 + x381 + x486 + x488 + x489 <= 1 + +x33 + x46 + x50 + x92 + x124 + x141 + x142 + x143 + x144 + x188 ++ x192 + x224 + x244 + x274 + x275 + x277 + x278 + x284 + x285 + x287 ++ x293 + x295 + x296 + x317 + x325 + x339 + x340 + x430 + x432 + x433 ++ x435 + x444 + x446 + x486 + x488 + x489 <= 1 + +x4 + x18 + x19 + x21 + x22 + x31 + x32 + x33 + x51 + x55 ++ x89 + x91 + x92 + x102 + x124 + x125 + x129 + x141 + x142 + x143 ++ x144 + x145 + x186 + x188 + x189 + x190 + x192 + x221 + x222 + x224 ++ x225 + x226 + x274 + x275 + x277 + x278 + x285 + x287 + x293 + x295 ++ x296 + x297 + x317 + x320 + x339 + x340 + x350 + x383 + x384 + x385 ++ x386 + x399 + x402 + x403 + x404 + x430 + x432 + x433 + x434 + x435 ++ x441 + x442 + x443 + x444 + x446 + x448 + x449 + x451 + x469 + x479 ++ x481 + x489 <= 1 + +x4 + x18 + x19 + x21 + x22 + x26 + x30 + x32 + x89 + x92 ++ x93 + x111 + x124 + x125 + x129 + x192 + x224 + x225 + x226 + x274 ++ x285 + x287 + x295 + x296 + x297 + x317 + x320 + x384 + x385 + x386 ++ x403 + x404 + x430 + x433 + x434 + x435 + x445 + x448 + x449 + x451 ++ x481 + x482 + x489 <= 1 + +x4 + x18 + x22 + x34 + x89 + x94 + x106 + x107 + x108 + x109 ++ x110 + x111 + x124 + x125 + x129 + x141 + x143 + x146 + x167 + x174 ++ x178 + x179 + x190 + x192 + x272 + x287 + x296 + x317 + x320 + x325 ++ x373 + x386 + x403 + x416 + x422 + x433 + x435 + x441 + x442 + x445 ++ x447 + x448 + x449 + x451 + x469 <= 1 + +x18 + x22 + x94 + x108 + x110 + x111 + x141 + x143 + x144 + x150 ++ x154 + x155 + x174 + x176 + x178 + x179 + x190 + x252 + x255 + x272 ++ x287 + x317 + x320 + x342 + x390 + x406 + x416 + x422 + x433 + x445 ++ x448 + x455 + x469 <= 1 + +x21 + x86 + x94 + x123 + x211 + x302 + x323 + x328 + x375 <= 1 + +x21 + x46 + x86 + x94 + x126 + x207 + x208 + x210 + x211 + x241 ++ x248 + x281 + x302 + x323 + x328 + x375 + x388 + x456 + x477 <= 1 + +x46 + x59 + x90 + x126 + x196 + x207 + x208 + x210 + x211 + x212 ++ x213 + x248 + x249 + x281 + x284 + x286 + x299 + x300 + x301 + x302 ++ x303 + x319 + x323 + x328 + x383 + x387 + x388 + x440 + x456 + x477 + <= 1 + +x46 + x126 + x130 + x131 + x196 + x210 + x215 + x248 + x281 + x282 ++ x284 + x286 + x299 + x300 + x301 + x302 + x303 + x304 + x319 + x323 ++ x328 + x383 + x387 + x388 + x430 + x432 + x435 + x440 + x498 <= 1 + +x21 + x130 + x189 + x210 + x274 + x275 + x277 + x278 + x281 + x284 ++ x319 + x323 + x328 + x383 + x387 + x388 + x430 + x432 + x433 + x435 ++ x481 <= 1 + +x18 + x21 + x22 + x46 + x50 + x54 + x91 + x92 + x124 + x129 ++ x141 + x142 + x143 + x144 + x188 + x189 + x190 + x192 + x222 + x225 ++ x244 + x274 + x275 + x277 + x278 + x281 + x284 + x285 + x287 + x293 ++ x296 + x350 + x383 + x384 + x387 + x404 + x430 + x432 + x433 + x435 ++ x443 + x449 + x481 <= 1 + +x18 + x21 + x30 + x32 + x33 + x34 + x124 + x129 + x177 + x186 ++ x188 + x189 + x190 + x192 + x225 + x275 + x277 + x285 + x287 + x295 ++ x296 + x297 + x350 + x383 + x385 + x386 + x403 + x430 + x433 + x435 ++ x441 + x442 + x443 + x444 + x446 + x447 + x449 + x451 + x479 + x482 + <= 1 + +x18 + x21 + x22 + x30 + x32 + x33 + x34 + x50 + x89 + x93 ++ x124 + x125 + x129 + x141 + x174 + x177 + x178 + x192 + x225 + x274 ++ x287 + x288 + x295 + x296 + x297 + x386 + x430 + x433 + x435 + x441 ++ x442 + x443 + x444 + x446 + x447 + x448 + x449 + x451 + x462 + x482 + <= 1 + +x18 + x21 + x22 + x34 + x94 + x109 + x124 + x125 + x141 + x174 ++ x177 + x178 + x295 + x296 + x317 + x320 + x345 + x386 + x433 + x435 ++ x441 + x442 + x444 + x445 + x447 + x448 + x449 + x451 + x462 + x469 ++ x482 <= 1 + +x47 + x109 + x124 + x125 + x141 + x177 + x178 + x295 + x296 + x320 ++ x345 + x442 + x444 + x448 + x449 + x462 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 <= 1 + +x9 + x10 <= 1 + +x11 + x12 + x13 + x14 <= 1 + +x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 + x22 + x23 <= 1 + +x24 + x25 + x26 + x27 + x28 + x29 <= 1 + +x30 + x31 + x32 + x33 + x34 <= 1 + +x35 + x36 + x37 + x38 + x39 <= 1 + +x40 + x41 + x42 + x43 + x44 + x45 <= 1 + +x46 + x47 + x48 + x49 + x50 + x51 <= 1 + +x52 + x53 <= 1 + +x54 + x55 + x56 + x57 + x58 + x59 <= 1 + +x60 + x61 + x62 + x63 + x64 + x65 <= 1 + +x66 + x67 + x68 + x69 + x70 + x71 <= 1 + +x72 + x73 + x74 + x75 + x76 + x77 <= 1 + +x78 + x79 + x80 + x81 + x82 + x83 <= 1 + +x84 + x85 + x86 + x87 + x88 + x89 <= 1 + +x90 + x91 + x92 + x93 + x94 + x95 <= 1 + +x96 + x97 + x98 + x99 <= 1 + +x100 + x101 <= 1 + +x102 + x103 + x104 + x105 + x106 + x107 <= 1 + +x108 + x109 + x110 + x111 + x112 <= 1 + +x113 + x114 + x115 + x116 + x117 <= 1 + +x118 + x119 + x120 + x121 + x122 + x123 <= 1 + +x124 + x125 + x126 + x127 + x128 + x129 <= 1 + +x130 + x131 <= 1 + +x132 + x133 + x134 + x135 + x136 + x137 <= 1 + +x138 + x139 + x140 <= 1 + +x141 + x142 + x143 + x144 + x145 + x146 <= 1 + +x147 + x148 + x149 <= 1 + +x150 + x151 + x152 + x153 + x154 + x155 <= 1 + +x156 + x157 + x158 + x159 + x160 + x161 <= 1 + +x162 + x163 + x164 + x165 + x166 + x167 <= 1 + +x168 + x169 + x170 + x171 + x172 + x173 <= 1 + +x174 + x175 + x176 + x177 + x178 + x179 <= 1 + +x181 + x182 + x183 + x184 + x185 <= 1 + +x186 + x187 + x188 + x189 + x190 + x191 <= 1 + +x192 + x193 + x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 <= 1 + +x207 + x208 + x209 + x210 <= 1 + +x212 + x213 + x214 <= 1 + +x215 + x216 + x217 + x218 + x219 + x220 <= 1 + +x221 + x222 + x223 + x224 + x225 + x226 <= 1 + +x227 + x228 + x229 + x230 + x231 + x232 <= 1 + +x233 + x234 + x235 + x236 + x237 + x238 <= 1 + +x239 + x240 + x241 + x242 + x243 + x244 <= 1 + +x246 + x247 + x248 + x249 + x250 + x251 <= 1 + +x252 + x253 + x254 + x255 + x256 + x257 <= 1 + +x258 + x259 + x260 + x261 + x262 + x263 <= 1 + +x264 + x265 + x266 + x267 + x268 + x269 <= 1 + +x270 + x271 + x272 + x273 <= 1 + +x274 + x275 + x276 + x277 + x278 + x279 <= 1 + +x281 + x282 + x283 + x284 + x285 + x286 <= 1 + +x287 + x288 + x289 + x290 + x291 + x292 <= 1 + +x293 + x294 + x295 + x296 + x297 + x298 <= 1 + +x299 + x300 + x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 <= 1 + +x310 + x311 + x312 + x313 + x314 + x315 <= 1 + +x317 + x318 + x319 + x320 + x321 + x322 <= 1 + +x323 + x324 + x325 + x326 + x327 + x328 <= 1 + +x329 + x330 + x331 + x332 + x333 + x334 <= 1 + +x335 + x336 + x337 + x338 <= 1 + +x339 + x340 + x341 + x342 + x343 + x344 <= 1 + +x345 + x346 + x347 + x348 + x349 + x350 <= 1 + +x351 + x352 + x353 + x354 + x355 + x356 <= 1 + +x357 + x358 + x359 + x360 <= 1 + +x361 + x362 + x363 <= 1 + +x364 + x365 + x366 + x367 + x368 + x369 <= 1 + +x371 + x372 + x373 + x374 + x375 + x376 <= 1 + +x377 + x378 + x379 + x380 + x381 + x382 <= 1 + +x383 + x384 + x385 + x386 + x387 + x388 <= 1 + +x389 + x390 + x391 + x392 <= 1 + +x393 + x394 + x395 + x396 + x397 + x398 <= 1 + +x399 + x400 + x401 + x402 + x403 + x404 <= 1 + +x406 + x407 + x408 + x409 + x410 + x411 <= 1 + +x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 <= 1 + +x424 + x425 + x426 + x427 + x428 + x429 <= 1 + +x430 + x431 + x432 + x433 + x434 + x435 <= 1 + +x436 + x437 + x438 + x439 + x440 <= 1 + +x441 + x442 + x443 + x444 + x445 + x446 <= 1 + +x447 + x448 + x449 + x450 + x451 + x452 <= 1 + +x453 + x454 + x455 + x456 + x457 + x458 <= 1 + +x460 + x461 + x462 + x463 + x464 + x465 <= 1 + +x466 + x467 + x468 + x469 + x470 + x471 <= 1 + +x472 + x473 + x474 + x475 + x476 + x477 <= 1 + +x479 + x480 + x481 + x482 <= 1 + +x483 + x484 + x485 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x492 + x493 <= 1 + +x494 + x495 + x496 + x497 + x498 + x499 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 + + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0006.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0006.lp new file mode 100755 index 000000000..cc115d30e --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0006.lp @@ -0,0 +1,1072 @@ +max + +555.73x0 + 794.932x1 + 782.878x2 + 714.621x3 + 629.104x4 + 627.356x5 + 1054.11x6 + 1317.75x7 + 1215.04x8 + 1205.31x9 + +1196.18x10 + 1182.44x11 + 248.29x12 + 327.339x13 + 288.236x14 + 287.811x15 + 271.317x16 + 207.501x17 + 1140.25x18 + 1428.83x19 + +1309.07x20 + 1226.15x21 + 1212.46x22 + 1162.36x23 + 383.86x24 + 483.539x25 + 479.508x26 + 379.719x27 + 366.022x28 + 354.197x29 + +1167.61x30 + 1457.1x31 + 1350.82x32 + 1341.79x33 + 1324.78x34 + 1288.26x35 + 807.917x36 + 937.451x37 + 931.336x38 + 921.965x39 + +900.626x40 + 874.856x41 + 339.923x42 + 481.47x43 + 468.249x44 + 375.885x45 + 358.913x46 + 346.463x47 + 758.738x48 + 944.634x49 + +921.77x50 + 905.428x51 + 890.936x52 + 889.482x53 + 150.431x54 + 221.276x55 + 123.71x56 + 102.743x57 + 792.627x58 + 901.887x59 + +876.629x60 + 826.537x61 + 808.995x62 + 788.409x63 + 735.142x64 + 910.116x65 + 878.185x66 + 834.639x67 + 827.204x68 + 798.964x69 + +221.519x70 + 331.808x71 + 13.5695x72 + 578.993x73 + 736.753x74 + 707.844x75 + 700.851x76 + 684.194x77 + 624.53x78 + 421.499x79 + +473.754x80 + 465.416x81 + 403.371x82 + 399.09x83 + 379.971x84 + 325.934x85 + 449.199x86 + 381.567x87 + 235.926x88 + 186.107x89 + +364.287x90 + 377.944x91 + 369.563x92 + 339.214x93 + 323.515x94 + 318.008x95 + 1833.9x96 + 2127.56x97 + 2063.73x98 + 2034.83x99 + +2017.2x100 + 1883.92x101 + 416.83x102 + 600.193x103 + 534.571x104 + 492.229x105 + 482.304x106 + 446.102x107 + 1626.95x108 + 2195.55x109 + +2174.63x110 + 2135.17x111 + 2091.95x112 + 2070.43x113 + 108.948x114 + 128.829x115 + 165.197x116 + 186.035x117 + 156.471x118 + 129.11x119 + +154.867x120 + 848.045x121 + 946.283x122 + 919.973x123 + 882.351x124 + 864.13x125 + 808.928x126 + 39.9828x127 + 439.475x128 + 545.33x129 + +499.26x130 + 481.823x131 + 478.245x132 + 468.241x133 + 38.8673x134 + 490.52x135 + 549.243x136 + 456.573x137 + 451.41x138 + 413.821x139 + +408.743x140 + 148.339x141 + 553.666x142 + 811.499x143 + 758.456x144 + 751.005x145 + 737.941x146 + 736.503x147 + 242.415x148 + 327.69x149 + +286.35x150 + 250.913x151 + 211.566x152 + 151.358x153 + 821.73x154 + 887.462x155 + 863.772x156 + 816.337x157 + 792.083x158 + 786.483x159 + +915.835x160 + 1138.7x161 + 1134.75x162 + 1127.15x163 + 1118.11x164 + 1082.92x165 + 888.811x166 + 1123.22x167 + 1032.95x168 + 1013.41x169 + +995.914x170 + 942.984x171 + 824.813x172 + 736.262x173 + 732.89x174 + 732.013x175 + 687.005x176 + 669.807x177 + 1271.13x178 + 1469.35x179 + +1438.7x180 + 1380.69x181 + 1367.9x182 + 1313.03x183 + 1152.19x184 + 1367.19x185 + 1352.5x186 + 1289.67x187 + 1269.69x188 + 1233.5x189 + +63.6038x190 + 65.3177x191 + 738.593x192 + 970.049x193 + 863.255x194 + 825.435x195 + 779.699x196 + 773.603x197 + 1036.75x198 + 1071.61x199 + +999.018x200 + 983.454x201 + 967.428x202 + 948.822x203 + 1539.23x204 + 2172.57x205 + 1827.66x206 + 1802.18x207 + 1774.1x208 + 1763.63x209 + +389.204x210 + 515.933x211 + 466.365x212 + 459.28x213 + 403.618x214 + 335.836x215 + 196.061x216 + 290.638x217 + 185.016x218 + 140.315x219 + +305.364x220 + 303.084x221 + 290.494x222 + 259.494x223 + 241.02x224 + 178.211x225 + 536.168x226 + 567.248x227 + 531.558x228 + 498.492x229 + +489.225x230 + 433.306x231 + 1068.13x232 + 1313.48x233 + 1244.7x234 + 1239.88x235 + 1199.03x236 + 1190.27x237 + 777.472x238 + 924.989x239 + +853.988x240 + 853.496x241 + 801.03x242 + 785.25x243 + 569.823x244 + 762.714x245 + 700.064x246 + 679.665x247 + 611.661x248 + 536.019x249 + +156.625x250 + 173.418x251 + 70.5872x252 + 725.177x253 + 934.999x254 + 847.693x255 + 822.993x256 + 812.159x257 + 808.257x258 + 930.302x259 + +1344.52x260 + 1259.85x261 + 1258.42x262 + 1256.78x263 + 1192.49x264 + 1808.46x265 + 1916.65x266 + 1891.38x267 + 1889.46x268 + 1878.21x269 + +1858.3x270 + 982.545x271 + 934.471x272 + 908.636x273 + 904.202x274 + 902.149x275 + 890.248x276 + 1473.7x277 + 1831.6x278 + 1745.98x279 + +1728.13x280 + 1700.95x281 + 1699.59x282 + 2312.68x283 + 2466.46x284 + 2306.67x285 + 2273.51x286 + 2261x287 + 2226.75x288 + 467.272x289 + +672.038x290 + 567.576x291 + 559.209x292 + 536.352x293 + 490.965x294 + 497.116x295 + 624.179x296 + 556.339x297 + 554.985x298 + 491.377x299 + +453.654x300 + 409.552x301 + 546.739x302 + 477.425x303 + 444.709x304 + 426.733x305 + 408.458x306 + 30.3245x307 + 585.249x308 + 655.102x309 + +625.042x310 + 613.246x311 + 608.942x312 + 497.057x313 + 504.601x314 + 562.465x315 + 555.131x316 + 496.677x317 + 490.335x318 + 288.449x319 + +322.477x320 + 463.783x321 + 448.292x322 + 435.41x323 + 386.603x324 + 375.252x325 + 966.709x326 + 1356.81x327 + 1253x328 + 1191.9x329 + +1142.95x330 + 1137.49x331 + 49.4031x332 + 343.787x333 + 512.06x334 + 417.633x335 + 412.126x336 + 407.419x337 + 341.879x338 + 105.574x339 + +983.228x340 + 1106.81x341 + 1083.72x342 + 1075x343 + 1069.18x344 + 1060.51x345 + 631.578x346 + 873.596x347 + 825.478x348 + 754.039x349 + +745.185x350 + 727.992x351 + 919.132x352 + 1040.58x353 + 1013.28x354 + 1008.22x355 + 961.102x356 + 950.245x357 + 214.574x358 + 285.336x359 + +270.3x360 + 262.548x361 + 242.592x362 + 222.525x363 + 1696.19x364 + 1823.06x365 + 1775.99x366 + 1730.26x367 + 1711.86x368 + 1708.67x369 + +728.976x370 + 739.724x371 + 722.694x372 + 700.712x373 + 684.414x374 + 633.734x375 + 228.965x376 + 302.968x377 + 190.34x378 + 164.725x379 + +56.216x380 + 103.99x381 + 642.562x382 + 698.052x383 + 675.551x384 + 671.821x385 + 632.889x386 + 632.65x387 + 277.515x388 + 388.406x389 + +376.456x390 + 342.861x391 + 313.98x392 + 245.692x393 + 1242x394 + 1543.07x395 + 1538.04x396 + 1506.6x397 + 1492.25x398 + 1462.75x399 + +531.805x400 + 574.97x401 + 552.298x402 + 548.928x403 + 526.847x404 + 491.968x405 + 39.2056x406 + 282.138x407 + 328.127x408 + 300.552x409 + +287.304x410 + 284.325x411 + 273.322x412 + 288.882x413 + 308.5x414 + 173.992x415 + 164.629x416 + 323.146x417 + 386.301x418 + 360.732x419 + +349.524x420 + 295.008x421 + 276.095x422 + 242.664x423 + 342.4x424 + 257.185x425 + 173.228x426 + 163.062x427 + 152.987x428 + 472.755x429 + +582.614x430 + 539.479x431 + 484.927x432 + 481.975x433 + 433.023x434 + 869.8x435 + 941.913x436 + 912.9x437 + 884.983x438 + 853.23x439 + +842.603x440 + 1953.76x441 + 2082.69x442 + 2045.83x443 + 2017.13x444 + 1907.58x445 + 1904.92x446 + 164.79x447 + 187.409x448 + 154.727x449 + +109.344x450 + 792.578x451 + 978.806x452 + 928.517x453 + 907.719x454 + 874.212x455 + 866.328x456 + 153.64x457 + 142.342x458 + 29.7288x459 + +211.074x460 + 260.757x461 + 170.204x462 + 170.104x463 + 124.388x464 + 362.659x465 + 514.775x466 + 480.824x467 + 460.447x468 + 453.198x469 + +450.604x470 + 1308.71x471 + 1548.29x472 + 1518.29x473 + 1506.91x474 + 1451.7x475 + 1425.05x476 + 587.454x477 + 764.662x478 + 710.046x479 + +689.688x480 + 661.249x481 + 656.828x482 + 146.66x483 + 165.744x484 + 119.687x485 + 594.744x486 + 680.224x487 + 640.839x488 + 636.2x489 + +595.489x490 + 576.966x491 + 1440.1x492 + 1670.66x493 + 1664.6x494 + 1660.52x495 + 1648.06x496 + 1602.56x497 + 811.979x498 + 989.332x499 + +898.604x500 + 871.397x501 + 819.165x502 + 746.679x503 + +st + +x142 + x184 + x192 + x194 + x196 + x204 + x205 + x206 + x208 + x209 ++ x232 + x237 + x242 + x289 + x293 + x294 + x356 + x358 + x361 + x362 ++ x398 + x426 + x427 + x428 + x455 + x467 + x488 <= 1 + +x8 + x11 + x44 + x63 + x97 + x99 + x122 + x142 + x144 + x147 ++ x184 + x187 + x188 + x192 + x193 + x194 + x195 + x204 + x205 + x206 ++ x208 + x209 + x232 + x236 + x237 + x240 + x242 + x289 + x290 + x291 ++ x293 + x294 + x329 + x340 + x343 + x353 + x356 + x357 + x358 + x363 ++ x364 + x398 + x425 + x427 + x455 + x492 + x493 + x500 + x502 <= 1 + +x1 + x44 + x45 + x63 + x97 + x99 + x108 + x122 + x124 + x142 ++ x143 + x145 + x147 + x184 + x188 + x189 + x192 + x195 + x197 + x204 ++ x208 + x209 + x225 + x232 + x236 + x237 + x242 + x248 + x289 + x290 ++ x291 + x292 + x294 + x329 + x343 + x353 + x354 + x355 + x356 + x357 ++ x363 + x364 + x368 + x421 + x466 + x474 + x493 + x500 + x501 + x502 + <= 1 + +x63 + x97 + x98 + x99 + x108 + x124 + x174 + x176 + x181 + x208 ++ x209 + x245 + x246 + x247 + x248 + x264 + x289 + x290 + x294 + x329 ++ x353 + x354 + x355 + x357 + x364 + x389 + x395 + x451 + x493 + x501 ++ x502 <= 1 + +x13 + x35 + x98 + x108 + x111 + x121 + x124 + x125 + x134 + x172 ++ x174 + x175 + x176 + x177 + x179 + x183 + x207 + x208 + x241 + x244 ++ x245 + x246 + x247 + x248 + x260 + x263 + x264 + x267 + x279 + x289 ++ x290 + x316 + x336 + x353 + x364 + x389 + x395 + x413 + x416 + x424 ++ x451 + x452 + x475 + x480 + x493 <= 1 + +x18 + x20 + x35 + x73 + x76 + x98 + x108 + x111 + x124 + x131 ++ x172 + x174 + x176 + x177 + x179 + x183 + x206 + x233 + x244 + x245 ++ x246 + x247 + x248 + x249 + x260 + x262 + x264 + x266 + x267 + x279 ++ x290 + x315 + x316 + x336 + x339 + x364 + x389 + x394 + x395 + x413 ++ x414 + x452 + x475 + x480 + x481 + x493 <= 1 + +x18 + x73 + x76 + x93 + x94 + x108 + x124 + x172 + x173 + x176 ++ x183 + x245 + x246 + x247 + x248 + x249 + x299 + x336 + x380 + x388 ++ x389 + x481 <= 1 + +x18 + x21 + x33 + x35 + x47 + x73 + x93 + x94 + x108 + x124 ++ x128 + x133 + x163 + x172 + x173 + x175 + x179 + x183 + x260 + x262 ++ x266 + x299 + x315 + x336 + x364 + x366 + x380 + x388 + x389 + x484 + <= 1 + +x18 + x21 + x35 + x66 + x72 + x73 + x90 + x93 + x94 + x108 ++ x124 + x128 + x133 + x175 + x178 + x183 + x260 + x262 + x263 + x283 ++ x336 + x389 + x391 + x411 + x446 + x454 <= 1 + +x41 + x66 + x72 + x95 + x108 + x178 + x183 + x260 + x262 + x263 ++ x333 + x336 + x369 + x378 + x388 + x389 + x391 + x446 <= 1 + +x44 + x122 + x142 + x143 + x144 + x147 + x189 + x192 + x193 + x194 ++ x195 + x196 + x197 + x204 + x205 + x206 + x208 + x209 + x236 + x237 ++ x238 + x240 + x242 + x289 + x293 + x294 + x343 + x353 + x355 + x356 ++ x358 + x359 + x361 + x362 + x363 + x365 + x373 + x398 + x423 + x426 ++ x427 + x428 + x444 + x450 + x455 + x488 + x492 + x498 <= 1 + +x42 + x44 + x45 + x50 + x53 + x108 + x122 + x142 + x143 + x144 ++ x145 + x147 + x184 + x187 + x188 + x192 + x193 + x194 + x195 + x197 ++ x204 + x205 + x206 + x208 + x209 + x235 + x236 + x237 + x238 + x240 ++ x270 + x289 + x291 + x292 + x293 + x294 + x340 + x343 + x353 + x354 ++ x355 + x357 + x358 + x361 + x362 + x363 + x364 + x365 + x373 + x374 ++ x398 + x423 + x425 + x426 + x427 + x428 + x450 + x455 + x492 + x493 ++ x498 + x501 + x502 <= 1 + +x1 + x42 + x45 + x50 + x52 + x53 + x58 + x63 + x97 + x121 ++ x122 + x124 + x137 + x142 + x143 + x144 + x145 + x146 + x147 + x184 ++ x186 + x187 + x188 + x189 + x192 + x193 + x194 + x195 + x196 + x197 ++ x204 + x205 + x206 + x208 + x209 + x232 + x235 + x236 + x237 + x238 ++ x239 + x240 + x242 + x289 + x290 + x291 + x292 + x294 + x343 + x352 ++ x353 + x354 + x355 + x356 + x357 + x364 + x365 + x368 + x374 + x397 ++ x418 + x420 + x421 + x455 + x466 + x474 + x492 + x493 + x499 + x500 ++ x501 + x502 <= 1 + +x42 + x47 + x52 + x63 + x97 + x111 + x122 + x126 + x137 + x142 ++ x146 + x147 + x184 + x189 + x194 + x197 + x204 + x206 + x208 + x232 ++ x238 + x239 + x240 + x242 + x266 + x291 + x292 + x343 + x352 + x353 ++ x356 + x357 + x364 + x368 + x373 + x397 + x417 + x418 + x421 + x422 ++ x455 + x466 + x493 <= 1 + +x21 + x29 + x42 + x46 + x47 + x63 + x96 + x97 + x99 + x108 ++ x111 + x126 + x130 + x142 + x146 + x171 + x194 + x204 + x206 + x208 ++ x232 + x240 + x243 + x266 + x292 + x352 + x353 + x364 + x368 + x371 ++ x394 + x397 + x398 + x408 + x417 + x418 + x421 + x422 + x451 + x455 ++ x466 <= 1 + +x12 + x13 + x17 + x18 + x20 + x22 + x34 + x35 + x65 + x76 ++ x77 + x108 + x111 + x121 + x124 + x125 + x131 + x172 + x174 + x176 ++ x177 + x179 + x183 + x198 + x201 + x206 + x207 + x208 + x232 + x233 ++ x241 + x244 + x245 + x246 + x247 + x248 + x249 + x259 + x260 + x262 ++ x263 + x264 + x266 + x267 + x277 + x279 + x290 + x315 + x316 + x319 ++ x336 + x353 + x364 + x369 + x389 + x391 + x394 + x395 + x398 + x413 ++ x414 + x415 + x416 + x431 + x451 + x452 + x475 + x493 <= 1 + +x13 + x17 + x18 + x20 + x30 + x31 + x34 + x35 + x65 + x76 ++ x77 + x78 + x90 + x111 + x126 + x128 + x129 + x133 + x138 + x161 ++ x171 + x172 + x173 + x174 + x176 + x177 + x179 + x182 + x183 + x201 ++ x206 + x207 + x208 + x233 + x244 + x245 + x246 + x247 + x248 + x249 ++ x259 + x260 + x262 + x263 + x264 + x266 + x267 + x277 + x279 + x290 ++ x314 + x315 + x316 + x338 + x364 + x366 + x367 + x369 + x391 + x394 ++ x414 + x433 + x452 + x497 <= 1 + +x18 + x20 + x21 + x30 + x35 + x54 + x56 + x57 + x90 + x91 ++ x93 + x94 + x95 + x108 + x124 + x126 + x128 + x132 + x133 + x160 ++ x163 + x172 + x173 + x174 + x175 + x179 + x182 + x183 + x249 + x259 ++ x260 + x262 + x263 + x266 + x279 + x287 + x315 + x316 + x336 + x338 ++ x364 + x366 + x380 + x388 + x390 + x391 + x393 + x394 + x433 + x444 ++ x452 + x454 + x492 + x495 + x497 <= 1 + +x18 + x20 + x21 + x30 + x56 + x84 + x90 + x92 + x93 + x94 ++ x95 + x133 + x138 + x160 + x175 + x181 + x183 + x205 + x207 + x259 ++ x262 + x263 + x266 + x267 + x270 + x277 + x283 + x287 + x316 + x317 ++ x333 + x338 + x366 + x376 + x380 + x388 + x390 + x391 + x392 + x492 + <= 1 + +x30 + x66 + x72 + x90 + x95 + x138 + x160 + x178 + x183 + x205 ++ x262 + x263 + x266 + x267 + x270 + x277 + x283 + x300 + x317 + x333 ++ x334 + x336 + x337 + x338 + x366 + x369 + x376 + x378 + x388 + x390 ++ x392 + x446 <= 1 + +x19 + x22 + x44 + x53 + x120 + x122 + x142 + x143 + x145 + x163 ++ x184 + x185 + x187 + x189 + x192 + x194 + x196 + x197 + x204 + x205 ++ x206 + x208 + x209 + x235 + x238 + x239 + x288 + x292 + x293 + x294 ++ x343 + x353 + x355 + x356 + x357 + x359 + x361 + x362 + x365 + x366 ++ x368 + x373 + x374 + x395 + x398 + x423 + x426 + x428 + x455 + x488 ++ x492 + x498 + x499 + x501 + x502 <= 1 + +x1 + x19 + x22 + x48 + x50 + x53 + x58 + x62 + x70 + x74 ++ x120 + x122 + x123 + x124 + x137 + x142 + x143 + x144 + x145 + x147 ++ x163 + x184 + x185 + x186 + x187 + x188 + x189 + x192 + x193 + x194 ++ x195 + x196 + x197 + x204 + x205 + x206 + x207 + x208 + x209 + x233 ++ x235 + x236 + x237 + x238 + x239 + x240 + x242 + x268 + x277 + x288 ++ x289 + x291 + x292 + x293 + x294 + x343 + x353 + x355 + x357 + x358 ++ x359 + x360 + x362 + x363 + x365 + x366 + x368 + x370 + x372 + x373 ++ x374 + x375 + x381 + x396 + x397 + x398 + x418 + x420 + x423 + x425 ++ x427 + x428 + x450 + x455 + x473 + x492 + x493 + x496 + x498 + x499 ++ x501 + x502 <= 1 + +x1 + x50 + x53 + x58 + x62 + x63 + x74 + x97 + x111 + x121 ++ x122 + x142 + x143 + x144 + x146 + x147 + x163 + x181 + x184 + x186 ++ x187 + x189 + x192 + x193 + x194 + x195 + x204 + x205 + x206 + x208 ++ x209 + x232 + x233 + x234 + x235 + x236 + x237 + x238 + x239 + x240 ++ x268 + x281 + x288 + x290 + x291 + x292 + x352 + x353 + x354 + x355 ++ x356 + x357 + x365 + x366 + x368 + x396 + x397 + x419 + x472 + x473 ++ x492 + x493 + x496 + x500 + x501 <= 1 + +x1 + x2 + x7 + x11 + x42 + x47 + x50 + x62 + x63 + x97 ++ x111 + x117 + x122 + x126 + x127 + x146 + x147 + x163 + x184 + x189 ++ x193 + x194 + x195 + x197 + x204 + x205 + x206 + x208 + x209 + x232 ++ x235 + x236 + x237 + x238 + x239 + x240 + x241 + x243 + x256 + x268 ++ x285 + x343 + x352 + x353 + x355 + x356 + x357 + x368 + x373 + x375 ++ x394 + x395 + x397 + x398 + x417 + x418 + x421 + x455 + x456 + x472 ++ x492 + x493 + x501 <= 1 + +x1 + x7 + x11 + x17 + x21 + x29 + x46 + x63 + x65 + x73 ++ x74 + x76 + x77 + x96 + x97 + x99 + x108 + x110 + x111 + x121 ++ x123 + x125 + x126 + x130 + x145 + x146 + x163 + x174 + x176 + x177 ++ x184 + x195 + x196 + x204 + x205 + x206 + x207 + x208 + x209 + x232 ++ x240 + x241 + x243 + x246 + x264 + x265 + x266 + x281 + x286 + x314 ++ x319 + x352 + x364 + x368 + x372 + x394 + x395 + x396 + x397 + x398 ++ x419 + x422 + x451 + x452 + x455 + x456 + x472 + x493 <= 1 + +x6 + x7 + x11 + x12 + x13 + x16 + x17 + x21 + x22 + x24 ++ x29 + x33 + x34 + x35 + x46 + x65 + x68 + x73 + x74 + x76 ++ x77 + x78 + x97 + x108 + x109 + x110 + x111 + x121 + x125 + x126 ++ x128 + x130 + x131 + x132 + x138 + x145 + x171 + x174 + x176 + x177 ++ x198 + x200 + x202 + x204 + x206 + x207 + x232 + x233 + x241 + x244 ++ x246 + x247 + x248 + x259 + x264 + x266 + x267 + x277 + x279 + x281 ++ x314 + x319 + x354 + x364 + x366 + x367 + x369 + x394 + x395 + x397 ++ x398 + x415 + x416 + x422 + x429 + x431 + x432 + x451 + x452 + x493 ++ x497 <= 1 + +x3 + x7 + x11 + x12 + x13 + x16 + x18 + x21 + x22 + x30 ++ x31 + x33 + x34 + x35 + x57 + x64 + x65 + x68 + x69 + x73 ++ x76 + x77 + x78 + x94 + x95 + x101 + x111 + x125 + x126 + x128 ++ x129 + x130 + x131 + x132 + x133 + x138 + x163 + x171 + x172 + x173 ++ x174 + x176 + x177 + x178 + x179 + x181 + x182 + x200 + x201 + x204 ++ x206 + x207 + x233 + x241 + x244 + x245 + x246 + x247 + x248 + x249 ++ x259 + x260 + x262 + x263 + x264 + x266 + x267 + x277 + x279 + x283 ++ x284 + x314 + x315 + x319 + x338 + x354 + x364 + x366 + x367 + x369 ++ x390 + x391 + x394 + x415 + x429 + x431 + x433 + x451 + x452 + x454 ++ x472 + x473 + x476 + x497 <= 1 + +x0 + x15 + x18 + x20 + x21 + x33 + x35 + x54 + x56 + x57 ++ x64 + x65 + x68 + x78 + x80 + x81 + x84 + x90 + x91 + x93 ++ x94 + x101 + x124 + x126 + x128 + x129 + x131 + x132 + x133 + x154 ++ x163 + x172 + x174 + x177 + x178 + x179 + x181 + x183 + x233 + x241 ++ x244 + x249 + x259 + x260 + x262 + x263 + x266 + x267 + x277 + x279 ++ x283 + x315 + x316 + x317 + x333 + x338 + x364 + x367 + x369 + x390 ++ x391 + x392 + x393 + x394 + x433 + x445 + x452 + x454 + x476 + x480 ++ x495 + x497 <= 1 + +x0 + x18 + x20 + x30 + x33 + x35 + x64 + x84 + x90 + x91 ++ x92 + x94 + x132 + x156 + x158 + x163 + x178 + x181 + x183 + x233 ++ x249 + x259 + x260 + x262 + x263 + x266 + x267 + x270 + x277 + x287 ++ x317 + x333 + x337 + x364 + x367 + x376 + x378 + x379 + x388 + x390 ++ x392 + x393 + x394 + x445 + x480 <= 1 + +x3 + x18 + x19 + x20 + x30 + x33 + x79 + x84 + x90 + x91 ++ x95 + x154 + x178 + x183 + x259 + x262 + x263 + x266 + x267 + x270 ++ x300 + x317 + x327 + x328 + x333 + x334 + x337 + x366 + x369 + x376 ++ x377 + x378 + x390 + x392 + x394 <= 1 + +x19 + x22 + x44 + x48 + x50 + x53 + x62 + x71 + x93 + x122 ++ x143 + x163 + x167 + x184 + x185 + x187 + x189 + x193 + x194 + x196 ++ x197 + x204 + x205 + x206 + x208 + x209 + x232 + x233 + x235 + x288 ++ x292 + x293 + x343 + x347 + x357 + x361 + x365 + x366 + x373 + x374 ++ x395 + x397 + x398 + x423 + x424 + x426 + x455 + x466 + x475 + x488 ++ x492 + x493 + x496 + x498 + x499 + x500 + x501 + x502 <= 1 + +x19 + x22 + x45 + x46 + x48 + x50 + x51 + x53 + x62 + x70 ++ x71 + x119 + x120 + x121 + x122 + x123 + x143 + x144 + x145 + x160 ++ x163 + x167 + x168 + x184 + x185 + x186 + x187 + x188 + x189 + x193 ++ x195 + x196 + x197 + x204 + x205 + x206 + x208 + x209 + x232 + x233 ++ x235 + x236 + x237 + x238 + x239 + x265 + x268 + x270 + x281 + x288 ++ x291 + x293 + x343 + x347 + x357 + x359 + x360 + x365 + x366 + x368 ++ x370 + x372 + x373 + x374 + x375 + x395 + x397 + x398 + x420 + x424 ++ x450 + x455 + x466 + x473 + x474 + x492 + x493 + x496 + x499 + x500 ++ x501 + x502 <= 1 + +x1 + x2 + x5 + x46 + x47 + x50 + x53 + x62 + x63 + x74 ++ x96 + x101 + x111 + x121 + x122 + x123 + x133 + x143 + x144 + x145 ++ x146 + x147 + x163 + x167 + x184 + x185 + x186 + x187 + x188 + x189 ++ x192 + x193 + x194 + x195 + x196 + x197 + x204 + x205 + x206 + x207 ++ x208 + x209 + x232 + x233 + x234 + x235 + x236 + x237 + x238 + x239 ++ x240 + x241 + x242 + x243 + x268 + x270 + x277 + x281 + x288 + x291 ++ x343 + x352 + x353 + x355 + x356 + x357 + x364 + x365 + x366 + x368 ++ x370 + x372 + x373 + x374 + x375 + x395 + x396 + x397 + x398 + x417 ++ x419 + x420 + x430 + x452 + x455 + x456 + x466 + x473 + x474 + x492 ++ x493 + x496 + x498 + x499 + x500 + x501 + x502 <= 1 + +x1 + x2 + x4 + x5 + x7 + x11 + x42 + x43 + x46 + x47 ++ x50 + x62 + x63 + x69 + x74 + x76 + x96 + x99 + x109 + x110 ++ x111 + x116 + x117 + x121 + x122 + x123 + x125 + x126 + x145 + x146 ++ x147 + x161 + x163 + x165 + x176 + x184 + x185 + x186 + x187 + x189 ++ x193 + x195 + x196 + x197 + x202 + x204 + x205 + x206 + x207 + x208 ++ x209 + x211 + x214 + x232 + x233 + x234 + x235 + x236 + x237 + x238 ++ x239 + x240 + x241 + x243 + x256 + x264 + x265 + x266 + x267 + x268 ++ x270 + x277 + x281 + x285 + x343 + x352 + x355 + x356 + x357 + x364 ++ x365 + x366 + x368 + x372 + x373 + x375 + x394 + x395 + x396 + x397 ++ x398 + x399 + x417 + x419 + x422 + x430 + x452 + x455 + x456 + x472 ++ x473 + x474 + x492 + x493 + x495 + x499 + x501 + x502 <= 1 + +x0 + x1 + x2 + x4 + x5 + x6 + x11 + x69 + x74 + x75 ++ x96 + x99 + x109 + x110 + x111 + x130 + x131 + x164 + x165 + x173 ++ x186 + x192 + x196 + x197 + x198 + x200 + x202 + x204 + x205 + x207 ++ x227 + x232 + x233 + x234 + x236 + x237 + x239 + x243 + x259 + x264 ++ x265 + x266 + x267 + x268 + x277 + x279 + x281 + x282 + x283 + x284 ++ x285 + x319 + x352 + x354 + x355 + x356 + x365 + x368 + x375 + x394 ++ x395 + x396 + x398 + x399 + x430 + x431 + x434 + x451 + x452 + x453 ++ x454 + x455 + x472 + x473 + x493 <= 1 + +x0 + x2 + x6 + x7 + x11 + x12 + x14 + x15 + x17 + x21 ++ x22 + x29 + x65 + x68 + x69 + x73 + x74 + x75 + x91 + x96 ++ x100 + x101 + x107 + x108 + x109 + x110 + x111 + x123 + x126 + x128 ++ x130 + x131 + x132 + x161 + x164 + x166 + x171 + x173 + x176 + x177 ++ x183 + x186 + x192 + x198 + x199 + x200 + x201 + x202 + x203 + x204 ++ x207 + x233 + x234 + x236 + x237 + x243 + x244 + x259 + x261 + x264 ++ x265 + x266 + x267 + x268 + x277 + x279 + x281 + x283 + x284 + x285 ++ x319 + x337 + x354 + x355 + x356 + x364 + x365 + x366 + x367 + x368 ++ x369 + x394 + x395 + x396 + x398 + x399 + x429 + x430 + x431 + x432 ++ x433 + x446 + x451 + x452 + x453 + x454 + x471 + x472 + x473 + x497 + <= 1 + +x3 + x7 + x11 + x12 + x14 + x15 + x16 + x21 + x30 + x31 ++ x33 + x34 + x35 + x38 + x64 + x65 + x68 + x69 + x73 + x74 ++ x75 + x76 + x77 + x78 + x91 + x96 + x100 + x101 + x107 + x108 ++ x110 + x111 + x123 + x124 + x126 + x128 + x129 + x130 + x131 + x132 ++ x159 + x171 + x172 + x173 + x177 + x178 + x179 + x183 + x198 + x200 ++ x201 + x234 + x241 + x244 + x245 + x259 + x260 + x264 + x266 + x267 ++ x268 + x277 + x279 + x284 + x285 + x314 + x319 + x327 + x337 + x338 ++ x354 + x355 + x364 + x365 + x366 + x367 + x369 + x394 + x395 + x396 ++ x429 + x431 + x432 + x433 + x442 + x445 + x451 + x453 + x454 + x472 ++ x473 + x476 + x497 <= 1 + +x15 + x20 + x30 + x33 + x34 + x35 + x54 + x55 + x64 + x65 ++ x68 + x69 + x77 + x78 + x79 + x80 + x81 + x82 + x83 + x84 ++ x91 + x101 + x107 + x108 + x124 + x128 + x129 + x131 + x132 + x154 ++ x155 + x156 + x157 + x163 + x177 + x178 + x179 + x181 + x183 + x201 ++ x234 + x241 + x260 + x261 + x262 + x264 + x266 + x267 + x277 + x328 ++ x337 + x364 + x365 + x367 + x369 + x379 + x390 + x392 + x393 + x394 ++ x399 + x429 + x444 + x445 + x472 + x476 + x478 + x480 + x497 <= 1 + +x0 + x20 + x30 + x33 + x34 + x35 + x64 + x68 + x79 + x81 ++ x83 + x84 + x92 + x98 + x108 + x156 + x158 + x163 + x178 + x179 ++ x180 + x181 + x183 + x259 + x262 + x263 + x267 + x270 + x277 + x328 ++ x329 + x333 + x337 + x344 + x348 + x364 + x367 + x369 + x379 + x388 ++ x392 + x393 + x394 + x445 <= 1 + +x19 + x20 + x30 + x33 + x34 + x79 + x82 + x83 + x95 + x154 ++ x156 + x158 + x178 + x180 + x183 + x201 + x262 + x263 + x266 + x267 ++ x268 + x270 + x297 + x317 + x318 + x327 + x328 + x343 + x364 + x369 ++ x377 + x394 + x401 <= 1 + +x48 + x51 + x70 + x71 + x80 + x113 + x119 + x133 + x144 + x149 ++ x166 + x167 + x168 + x169 + x184 + x185 + x186 + x188 + x206 + x231 ++ x235 + x237 + x265 + x268 + x269 + x270 + x288 + x333 + x334 + x366 ++ x368 + x370 + x371 + x372 + x374 + x452 + x456 + x476 + x492 + x496 + <= 1 + +x19 + x22 + x27 + x45 + x48 + x49 + x50 + x51 + x53 + x62 ++ x70 + x71 + x80 + x109 + x112 + x119 + x120 + x121 + x144 + x151 ++ x160 + x166 + x167 + x168 + x179 + x184 + x185 + x186 + x187 + x188 ++ x189 + x195 + x196 + x203 + x204 + x206 + x208 + x231 + x235 + x238 ++ x257 + x265 + x267 + x268 + x269 + x270 + x280 + x281 + x282 + x283 ++ x285 + x288 + x330 + x334 + x343 + x347 + x351 + x359 + x360 + x366 ++ x368 + x370 + x371 + x372 + x374 + x375 + x395 + x398 + x420 + x440 ++ x456 + x474 + x492 + x496 + x499 + x500 + x502 <= 1 + +x2 + x3 + x4 + x19 + x21 + x45 + x48 + x49 + x50 + x51 ++ x53 + x62 + x96 + x99 + x109 + x112 + x113 + x118 + x121 + x123 ++ x151 + x160 + x162 + x165 + x169 + x179 + x184 + x185 + x186 + x187 ++ x189 + x203 + x206 + x207 + x208 + x209 + x210 + x211 + x212 + x213 ++ x214 + x232 + x235 + x243 + x253 + x256 + x257 + x261 + x265 + x266 ++ x267 + x268 + x269 + x270 + x280 + x281 + x282 + x283 + x285 + x288 ++ x295 + x347 + x366 + x368 + x370 + x374 + x375 + x396 + x397 + x398 ++ x399 + x430 + x435 + x436 + x438 + x440 + x456 + x476 + x493 + x496 + <= 1 + +x0 + x2 + x3 + x4 + x7 + x21 + x32 + x43 + x62 + x63 ++ x69 + x76 + x96 + x99 + x109 + x110 + x112 + x116 + x118 + x121 ++ x123 + x126 + x136 + x145 + x146 + x161 + x165 + x169 + x170 + x179 ++ x185 + x186 + x189 + x200 + x203 + x204 + x205 + x206 + x207 + x208 ++ x209 + x210 + x211 + x212 + x213 + x214 + x232 + x233 + x236 + x239 ++ x241 + x243 + x253 + x256 + x258 + x261 + x265 + x266 + x267 + x268 ++ x269 + x270 + x281 + x282 + x283 + x284 + x285 + x286 + x287 + x288 ++ x327 + x347 + x352 + x356 + x357 + x364 + x365 + x366 + x368 + x370 ++ x372 + x375 + x395 + x396 + x397 + x398 + x399 + x419 + x429 + x430 ++ x435 + x440 + x451 + x454 + x456 + x469 + x472 + x474 + x476 + x493 ++ x495 + x496 + x499 + x501 <= 1 + +x0 + x2 + x5 + x7 + x11 + x29 + x32 + x43 + x68 + x74 ++ x75 + x96 + x109 + x110 + x111 + x112 + x125 + x130 + x132 + x141 ++ x160 + x164 + x165 + x171 + x173 + x186 + x192 + x198 + x199 + x200 ++ x202 + x203 + x204 + x205 + x209 + x212 + x213 + x227 + x232 + x233 ++ x234 + x236 + x243 + x256 + x261 + x264 + x265 + x266 + x268 + x269 ++ x270 + x277 + x279 + x281 + x282 + x283 + x284 + x285 + x287 + x288 ++ x327 + x347 + x352 + x354 + x356 + x368 + x375 + x393 + x394 + x395 ++ x396 + x398 + x399 + x429 + x430 + x431 + x434 + x435 + x443 + x446 ++ x451 + x452 + x454 + x456 + x472 + x474 + x493 + x495 + x496 <= 1 + +x0 + x5 + x6 + x7 + x11 + x21 + x29 + x30 + x31 + x32 ++ x34 + x38 + x40 + x68 + x69 + x73 + x75 + x96 + x100 + x101 ++ x108 + x109 + x110 + x111 + x125 + x130 + x131 + x132 + x158 + x160 ++ x161 + x164 + x165 + x166 + x171 + x173 + x186 + x198 + x199 + x200 ++ x201 + x202 + x203 + x207 + x213 + x233 + x234 + x236 + x237 + x243 ++ x259 + x261 + x264 + x265 + x266 + x267 + x269 + x277 + x279 + x281 ++ x283 + x284 + x285 + x287 + x327 + x352 + x354 + x365 + x367 + x368 ++ x369 + x394 + x395 + x396 + x398 + x399 + x429 + x430 + x431 + x432 ++ x434 + x442 + x446 + x447 + x449 + x451 + x452 + x454 + x471 + x472 ++ x473 + x482 + x493 + x495 + x497 + x499 <= 1 + +x6 + x7 + x9 + x10 + x11 + x14 + x16 + x20 + x21 + x30 ++ x31 + x32 + x33 + x34 + x35 + x38 + x40 + x55 + x64 + x65 ++ x68 + x69 + x75 + x77 + x78 + x100 + x101 + x108 + x109 + x110 ++ x111 + x130 + x154 + x156 + x157 + x158 + x159 + x160 + x161 + x164 ++ x165 + x166 + x171 + x172 + x173 + x178 + x181 + x198 + x199 + x200 ++ x201 + x202 + x203 + x227 + x233 + x234 + x236 + x259 + x261 + x264 ++ x267 + x268 + x277 + x279 + x283 + x284 + x285 + x327 + x328 + x338 ++ x352 + x354 + x365 + x366 + x369 + x394 + x395 + x396 + x399 + x432 ++ x434 + x442 + x443 + x445 + x446 + x447 + x448 + x451 + x453 + x454 ++ x471 + x472 + x473 + x476 + x477 + x479 + x480 + x493 + x495 + x497 + <= 1 + +x6 + x9 + x10 + x19 + x20 + x30 + x31 + x33 + x34 + x55 ++ x64 + x65 + x68 + x69 + x75 + x77 + x78 + x79 + x80 + x81 ++ x82 + x84 + x91 + x92 + x96 + x98 + x101 + x108 + x113 + x129 ++ x154 + x156 + x158 + x163 + x164 + x171 + x179 + x180 + x181 + x198 ++ x200 + x201 + x203 + x204 + x261 + x262 + x264 + x266 + x267 + x268 ++ x271 + x277 + x328 + x337 + x367 + x369 + x393 + x396 + x399 + x441 ++ x442 + x443 + x444 + x445 + x453 + x472 + x476 + x480 + x485 <= 1 + +x10 + x15 + x19 + x20 + x22 + x30 + x33 + x34 + x35 + x64 ++ x68 + x78 + x79 + x80 + x81 + x82 + x83 + x84 + x92 + x96 ++ x97 + x98 + x100 + x101 + x108 + x110 + x113 + x129 + x154 + x155 ++ x156 + x157 + x158 + x159 + x178 + x179 + x180 + x182 + x242 + x262 ++ x266 + x267 + x268 + x271 + x277 + x279 + x318 + x327 + x328 + x329 ++ x337 + x344 + x345 + x367 + x369 + x379 + x392 + x394 + x399 + x408 ++ x441 + x444 + x445 + x446 + x478 + x480 <= 1 + +x19 + x20 + x30 + x33 + x34 + x35 + x79 + x80 + x81 + x82 ++ x83 + x92 + x95 + x96 + x97 + x98 + x100 + x110 + x111 + x113 ++ x129 + x154 + x155 + x156 + x157 + x158 + x159 + x178 + x179 + x180 ++ x199 + x203 + x260 + x266 + x267 + x268 + x283 + x314 + x317 + x318 ++ x327 + x328 + x329 + x367 + x369 + x377 + x401 + x441 + x444 + x445 ++ x478 <= 1 + +x23 + x24 + x25 + x26 + x27 + x33 + x37 + x48 + x51 + x70 ++ x71 + x80 + x109 + x113 + x133 + x143 + x149 + x150 + x162 + x166 ++ x167 + x168 + x169 + x170 + x185 + x186 + x188 + x206 + x207 + x226 ++ x228 + x231 + x235 + x237 + x257 + x265 + x268 + x269 + x270 + x280 ++ x282 + x288 + x297 + x298 + x299 + x333 + x334 + x335 + x347 + x348 ++ x366 + x368 + x370 + x371 + x397 + x436 + x440 + x442 + x456 + x471 ++ x476 + x496 <= 1 + +x4 + x19 + x22 + x23 + x27 + x48 + x49 + x50 + x51 + x53 ++ x62 + x71 + x109 + x112 + x113 + x119 + x121 + x151 + x162 + x166 ++ x167 + x169 + x179 + x181 + x184 + x185 + x186 + x187 + x196 + x206 ++ x207 + x208 + x209 + x211 + x216 + x218 + x228 + x230 + x231 + x235 ++ x257 + x265 + x268 + x270 + x280 + x281 + x282 + x283 + x285 + x288 ++ x295 + x298 + x334 + x335 + x347 + x348 + x351 + x366 + x368 + x372 ++ x384 + x387 + x395 + x396 + x397 + x398 + x438 + x439 + x440 + x442 ++ x456 + x476 + x487 + x496 + x500 <= 1 + +x4 + x19 + x21 + x23 + x49 + x50 + x53 + x99 + x109 + x112 ++ x113 + x148 + x149 + x150 + x151 + x153 + x160 + x162 + x166 + x167 ++ x169 + x170 + x181 + x185 + x187 + x189 + x203 + x207 + x208 + x209 ++ x210 + x211 + x212 + x214 + x215 + x228 + x256 + x257 + x258 + x261 ++ x265 + x268 + x269 + x270 + x278 + x280 + x281 + x282 + x283 + x285 ++ x286 + x287 + x288 + x295 + x296 + x298 + x299 + x310 + x334 + x347 ++ x352 + x366 + x368 + x372 + x396 + x397 + x398 + x399 + x435 + x436 ++ x438 + x440 + x456 + x466 + x467 + x471 + x476 + x487 + x493 + x496 + <= 1 + +x0 + x2 + x3 + x4 + x21 + x32 + x43 + x49 + x52 + x62 ++ x96 + x99 + x109 + x111 + x112 + x113 + x121 + x126 + x146 + x148 ++ x151 + x153 + x160 + x161 + x162 + x165 + x169 + x170 + x185 + x189 ++ x204 + x207 + x208 + x209 + x210 + x211 + x212 + x213 + x214 + x215 ++ x226 + x227 + x228 + x229 + x256 + x257 + x258 + x261 + x265 + x266 ++ x268 + x269 + x270 + x278 + x281 + x282 + x283 + x284 + x285 + x286 ++ x287 + x288 + x299 + x352 + x365 + x366 + x368 + x385 + x396 + x397 ++ x398 + x436 + x438 + x439 + x440 + x454 + x456 + x465 + x467 + x469 ++ x470 + x471 + x496 <= 1 + +x5 + x6 + x8 + x9 + x11 + x31 + x32 + x96 + x99 + x109 ++ x110 + x111 + x112 + x125 + x146 + x153 + x160 + x161 + x164 + x165 ++ x186 + x190 + x199 + x202 + x209 + x210 + x212 + x213 + x215 + x227 ++ x234 + x236 + x256 + x257 + x259 + x261 + x265 + x267 + x268 + x269 ++ x278 + x281 + x282 + x283 + x284 + x285 + x286 + x287 + x288 + x345 ++ x368 + x369 + x393 + x395 + x396 + x399 + x434 + x441 + x442 + x443 ++ x446 + x453 + x454 + x456 + x471 + x472 + x473 + x475 + x482 + x495 + <= 1 + +x5 + x6 + x7 + x8 + x9 + x10 + x11 + x16 + x30 + x31 ++ x32 + x34 + x35 + x40 + x65 + x66 + x68 + x69 + x75 + x78 ++ x96 + x100 + x101 + x108 + x109 + x110 + x111 + x125 + x157 + x158 ++ x160 + x161 + x164 + x165 + x188 + x198 + x199 + x200 + x201 + x202 ++ x203 + x234 + x236 + x243 + x259 + x261 + x264 + x267 + x269 + x277 ++ x279 + x281 + x283 + x284 + x285 + x328 + x341 + x345 + x354 + x365 ++ x369 + x394 + x395 + x396 + x399 + x432 + x434 + x441 + x442 + x443 ++ x446 + x449 + x451 + x471 + x472 + x473 + x477 + x482 + x495 + x499 + <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 + x14 + x21 + x31 + x34 ++ x38 + x40 + x65 + x68 + x69 + x75 + x77 + x96 + x98 + x100 ++ x101 + x109 + x110 + x111 + x125 + x157 + x159 + x160 + x161 + x164 ++ x166 + x171 + x188 + x198 + x199 + x200 + x202 + x203 + x227 + x234 ++ x259 + x261 + x264 + x265 + x267 + x268 + x269 + x272 + x277 + x279 ++ x283 + x284 + x285 + x288 + x309 + x322 + x328 + x331 + x341 + x342 ++ x345 + x354 + x365 + x367 + x369 + x394 + x396 + x399 + x432 + x442 ++ x444 + x446 + x448 + x451 + x453 + x471 + x472 + x473 + x476 + x477 ++ x478 + x479 + x480 + x482 + x494 + x497 <= 1 + +x6 + x8 + x9 + x10 + x22 + x31 + x32 + x33 + x60 + x61 ++ x64 + x66 + x69 + x81 + x83 + x92 + x96 + x98 + x100 + x101 ++ x110 + x111 + x112 + x123 + x125 + x154 + x155 + x157 + x159 + x178 ++ x180 + x182 + x188 + x234 + x242 + x254 + x267 + x269 + x272 + x274 ++ x279 + x309 + x312 + x322 + x323 + x327 + x328 + x329 + x331 + x340 ++ x341 + x342 + x344 + x345 + x365 + x367 + x369 + x399 + x405 + x408 ++ x432 + x441 + x442 + x443 + x444 + x445 + x446 + x453 + x472 + x473 ++ x476 + x477 + x478 + x479 + x480 + x495 + x497 <= 1 + +x8 + x9 + x10 + x22 + x33 + x41 + x59 + x64 + x66 + x67 ++ x81 + x82 + x83 + x92 + x96 + x97 + x98 + x100 + x101 + x110 ++ x112 + x113 + x154 + x155 + x156 + x157 + x158 + x159 + x178 + x180 ++ x182 + x188 + x219 + x242 + x260 + x262 + x276 + x279 + x318 + x320 ++ x322 + x326 + x327 + x328 + x329 + x341 + x342 + x344 + x345 + x365 ++ x395 + x399 + x405 + x407 + x408 + x441 + x444 + x445 + x446 + x463 ++ x477 + x478 + x479 + x495 <= 1 + +x8 + x11 + x30 + x33 + x34 + x64 + x67 + x79 + x82 + x83 ++ x96 + x97 + x98 + x100 + x101 + x110 + x111 + x113 + x154 + x155 ++ x156 + x157 + x158 + x159 + x171 + x178 + x179 + x180 + x182 + x260 ++ x274 + x314 + x318 + x326 + x327 + x328 + x383 + x401 + x405 + x408 ++ x411 + x434 + x441 + x442 + x444 + x445 + x463 <= 1 + +x20 + x23 + x24 + x25 + x26 + x27 + x28 + x49 + x51 + x82 ++ x86 + x109 + x110 + x112 + x113 + x155 + x162 + x166 + x167 + x168 ++ x169 + x181 + x183 + x185 + x186 + x187 + x207 + x209 + x218 + x226 ++ x228 + x230 + x231 + x235 + x237 + x257 + x258 + x265 + x268 + x269 ++ x270 + x280 + x282 + x286 + x288 + x297 + x298 + x300 + x335 + x346 ++ x348 + x351 + x370 + x371 + x386 + x387 + x397 + x435 + x436 + x438 ++ x440 + x461 + x471 + x476 + x486 + x487 + x489 + x490 + x491 + x496 ++ x500 + x503 <= 1 + +x4 + x19 + x23 + x24 + x25 + x26 + x27 + x48 + x49 + x51 ++ x53 + x70 + x108 + x109 + x112 + x113 + x148 + x149 + x150 + x158 ++ x160 + x162 + x166 + x167 + x168 + x169 + x170 + x179 + x181 + x184 ++ x185 + x186 + x187 + x193 + x207 + x209 + x214 + x218 + x226 + x228 ++ x230 + x231 + x235 + x237 + x257 + x258 + x265 + x268 + x269 + x270 ++ x280 + x281 + x282 + x283 + x285 + x286 + x287 + x288 + x295 + x297 ++ x298 + x299 + x300 + x334 + x335 + x346 + x347 + x348 + x351 + x370 ++ x371 + x387 + x397 + x435 + x436 + x438 + x440 + x442 + x467 + x471 ++ x476 + x486 + x487 + x490 + x496 + x500 + x503 <= 1 + +x4 + x19 + x21 + x23 + x24 + x27 + x28 + x49 + x96 + x109 ++ x112 + x113 + x148 + x150 + x152 + x153 + x162 + x166 + x168 + x169 ++ x170 + x181 + x185 + x187 + x209 + x210 + x215 + x226 + x228 + x230 ++ x257 + x258 + x265 + x268 + x269 + x270 + x280 + x282 + x284 + x285 ++ x286 + x287 + x288 + x295 + x296 + x298 + x299 + x310 + x335 + x346 ++ x351 + x396 + x397 + x398 + x435 + x436 + x437 + x438 + x439 + x440 ++ x456 + x465 + x466 + x468 + x471 + x476 + x486 + x487 + x489 + x491 ++ x496 <= 1 + +x7 + x23 + x37 + x38 + x41 + x43 + x49 + x52 + x96 + x109 ++ x111 + x112 + x113 + x114 + x140 + x148 + x152 + x153 + x161 + x162 ++ x165 + x169 + x170 + x187 + x204 + x215 + x226 + x229 + x253 + x257 ++ x258 + x265 + x269 + x270 + x278 + x280 + x282 + x283 + x284 + x285 ++ x286 + x287 + x288 + x296 + x335 + x346 + x348 + x349 + x368 + x384 ++ x385 + x396 + x435 + x436 + x437 + x438 + x439 + x456 + x465 + x467 ++ x468 + x469 + x470 + x471 + x472 + x476 + x482 + x490 + x491 <= 1 + +x5 + x8 + x9 + x31 + x32 + x37 + x38 + x40 + x99 + x109 ++ x111 + x112 + x115 + x125 + x135 + x140 + x162 + x164 + x165 + x190 ++ x191 + x199 + x215 + x234 + x258 + x261 + x265 + x269 + x281 + x282 ++ x283 + x284 + x285 + x286 + x287 + x288 + x305 + x345 + x369 + x377 ++ x384 + x386 + x395 + x396 + x435 + x439 + x441 + x442 + x443 + x453 ++ x454 + x459 + x470 + x471 + x475 + x482 + x494 + x495 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 + x14 + x31 + x32 + x34 ++ x36 + x38 + x40 + x61 + x65 + x66 + x69 + x75 + x98 + x100 ++ x101 + x109 + x110 + x111 + x112 + x125 + x140 + x159 + x161 + x164 ++ x165 + x198 + x199 + x200 + x202 + x203 + x227 + x234 + x253 + x254 ++ x255 + x256 + x259 + x261 + x265 + x267 + x268 + x269 + x272 + x273 ++ x279 + x281 + x282 + x283 + x284 + x285 + x286 + x287 + x288 + x304 ++ x323 + x326 + x331 + x342 + x344 + x345 + x369 + x383 + x394 + x396 ++ x399 + x434 + x439 + x441 + x442 + x443 + x444 + x445 + x446 + x453 ++ x454 + x471 + x472 + x473 + x476 + x482 + x489 + x494 + x495 + x497 ++ x499 <= 1 + +x6 + x8 + x9 + x11 + x22 + x31 + x32 + x37 + x38 + x39 ++ x40 + x41 + x59 + x60 + x61 + x66 + x98 + x100 + x101 + x103 ++ x104 + x111 + x164 + x180 + x198 + x202 + x205 + x234 + x253 + x254 ++ x255 + x256 + x261 + x265 + x267 + x271 + x272 + x278 + x279 + x283 ++ x284 + x285 + x286 + x287 + x288 + x310 + x322 + x323 + x327 + x330 ++ x331 + x341 + x344 + x365 + x367 + x399 + x441 + x442 + x443 + x444 ++ x445 + x446 + x453 + x473 + x474 + x482 + x494 + x495 + x499 <= 1 + +x8 + x9 + x10 + x22 + x31 + x32 + x39 + x40 + x41 + x60 ++ x61 + x64 + x66 + x67 + x97 + x98 + x100 + x101 + x105 + x110 ++ x111 + x112 + x113 + x123 + x157 + x159 + x171 + x180 + x182 + x188 ++ x198 + x199 + x205 + x219 + x242 + x254 + x269 + x272 + x273 + x274 ++ x276 + x278 + x279 + x283 + x286 + x308 + x309 + x310 + x312 + x321 ++ x322 + x323 + x324 + x326 + x327 + x329 + x330 + x331 + x338 + x340 ++ x341 + x342 + x344 + x345 + x365 + x367 + x369 + x399 + x400 + x403 ++ x404 + x405 + x410 + x441 + x442 + x443 + x444 + x445 + x446 + x453 ++ x473 + x474 + x477 + x478 + x479 + x492 + x495 <= 1 + +x8 + x9 + x10 + x22 + x39 + x41 + x49 + x59 + x60 + x61 ++ x64 + x66 + x67 + x96 + x97 + x98 + x99 + x100 + x101 + x110 ++ x112 + x113 + x154 + x156 + x157 + x158 + x159 + x160 + x171 + x180 ++ x182 + x188 + x199 + x216 + x219 + x254 + x260 + x272 + x274 + x276 ++ x278 + x283 + x309 + x312 + x320 + x322 + x324 + x326 + x327 + x328 ++ x329 + x330 + x331 + x341 + x342 + x344 + x345 + x365 + x367 + x399 ++ x400 + x401 + x404 + x405 + x407 + x409 + x410 + x411 + x441 + x442 ++ x443 + x444 + x445 + x446 + x458 + x473 + x474 + x477 + x478 + x495 + <= 1 + +x22 + x34 + x41 + x58 + x59 + x61 + x67 + x96 + x97 + x98 ++ x110 + x112 + x113 + x154 + x155 + x156 + x157 + x159 + x160 + x171 ++ x178 + x180 + x182 + x205 + x216 + x217 + x225 + x260 + x274 + x276 ++ x308 + x309 + x312 + x318 + x326 + x327 + x328 + x329 + x330 + x331 ++ x340 + x341 + x342 + x344 + x345 + x367 + x399 + x401 + x407 + x409 ++ x411 + x441 + x442 + x443 + x444 + x445 + x446 + x473 + x474 + x495 + <= 1 + +x20 + x23 + x25 + x28 + x32 + x51 + x52 + x85 + x86 + x87 ++ x108 + x109 + x110 + x112 + x113 + x137 + x155 + x162 + x167 + x168 ++ x169 + x170 + x185 + x187 + x207 + x230 + x235 + x265 + x268 + x269 ++ x270 + x280 + x282 + x286 + x288 + x295 + x297 + x300 + x335 + x371 ++ x387 + x436 + x440 + x471 + x486 + x487 + x489 + x490 + x491 + x500 + <= 1 + +x19 + x23 + x24 + x25 + x26 + x28 + x32 + x51 + x52 + x86 ++ x87 + x108 + x109 + x110 + x112 + x113 + x149 + x150 + x156 + x162 ++ x166 + x167 + x168 + x169 + x170 + x185 + x186 + x187 + x207 + x230 ++ x231 + x235 + x239 + x265 + x268 + x269 + x270 + x280 + x282 + x285 ++ x286 + x287 + x295 + x297 + x334 + x335 + x346 + x347 + x348 + x351 ++ x371 + x382 + x386 + x387 + x397 + x435 + x436 + x438 + x439 + x440 ++ x442 + x465 + x467 + x486 + x487 + x489 + x490 + x491 + x496 + x500 ++ x503 <= 1 + +x5 + x18 + x19 + x23 + x26 + x28 + x51 + x108 + x109 + x112 ++ x113 + x162 + x166 + x168 + x170 + x181 + x185 + x226 + x229 + x230 ++ x245 + x257 + x265 + x268 + x269 + x270 + x280 + x282 + x284 + x285 ++ x287 + x288 + x295 + x296 + x298 + x299 + x346 + x348 + x349 + x350 ++ x351 + x382 + x384 + x386 + x387 + x396 + x397 + x435 + x436 + x437 ++ x438 + x439 + x440 + x442 + x465 + x467 + x468 + x469 + x486 + x487 ++ x489 + x490 + x491 + x494 + x496 + x503 <= 1 + +x7 + x19 + x23 + x26 + x38 + x49 + x52 + x100 + x108 + x109 ++ x111 + x112 + x113 + x135 + x136 + x140 + x152 + x162 + x175 + x207 ++ x229 + x253 + x257 + x258 + x265 + x269 + x270 + x278 + x282 + x283 ++ x284 + x285 + x286 + x287 + x288 + x296 + x298 + x301 + x311 + x346 ++ x348 + x349 + x350 + x351 + x382 + x384 + x386 + x435 + x436 + x437 ++ x438 + x439 + x441 + x442 + x465 + x467 + x468 + x469 + x470 + x471 ++ x476 + x482 + x487 + x489 + x490 + x494 + x496 + x503 <= 1 + +x6 + x7 + x8 + x36 + x37 + x38 + x39 + x41 + x43 + x48 ++ x49 + x52 + x100 + x112 + x113 + x114 + x115 + x135 + x136 + x139 ++ x140 + x152 + x161 + x162 + x164 + x165 + x169 + x170 + x175 + x191 ++ x199 + x229 + x247 + x253 + x254 + x258 + x261 + x265 + x269 + x271 ++ x275 + x280 + x282 + x283 + x284 + x285 + x286 + x287 + x288 + x296 ++ x301 + x303 + x305 + x346 + x350 + x351 + x367 + x384 + x385 + x386 ++ x395 + x396 + x435 + x437 + x438 + x439 + x441 + x443 + x453 + x459 ++ x465 + x467 + x468 + x469 + x470 + x471 + x472 + x474 + x475 + x476 ++ x479 + x482 + x489 + x490 + x494 + x496 + x503 <= 1 + +x6 + x8 + x9 + x10 + x31 + x32 + x36 + x37 + x38 + x39 ++ x40 + x41 + x48 + x52 + x60 + x61 + x98 + x99 + x100 + x101 ++ x110 + x136 + x161 + x164 + x165 + x182 + x202 + x203 + x234 + x250 ++ x253 + x254 + x255 + x256 + x258 + x265 + x267 + x268 + x269 + x271 ++ x272 + x273 + x275 + x278 + x279 + x282 + x283 + x284 + x285 + x286 ++ x287 + x288 + x301 + x303 + x304 + x305 + x326 + x330 + x341 + x344 ++ x345 + x346 + x351 + x367 + x369 + x383 + x384 + x385 + x386 + x424 ++ x437 + x438 + x441 + x442 + x443 + x444 + x445 + x453 + x468 + x470 ++ x471 + x472 + x473 + x474 + x475 + x481 + x490 + x494 + x495 + x497 + <= 1 + +x8 + x9 + x10 + x31 + x36 + x37 + x39 + x40 + x41 + x52 ++ x59 + x60 + x61 + x66 + x96 + x97 + x98 + x100 + x101 + x103 ++ x104 + x110 + x111 + x112 + x123 + x161 + x164 + x165 + x180 + x182 ++ x189 + x202 + x205 + x234 + x253 + x254 + x255 + x256 + x261 + x268 ++ x271 + x272 + x275 + x278 + x279 + x283 + x284 + x286 + x287 + x302 ++ x304 + x305 + x306 + x310 + x311 + x313 + x330 + x331 + x340 + x341 ++ x342 + x344 + x367 + x399 + x401 + x402 + x405 + x437 + x441 + x442 ++ x443 + x444 + x445 + x446 + x453 + x472 + x473 + x474 + x475 + x481 ++ x494 + x495 + x497 <= 1 + +x9 + x10 + x36 + x37 + x39 + x40 + x41 + x59 + x60 + x61 ++ x66 + x67 + x96 + x97 + x98 + x99 + x100 + x101 + x104 + x105 ++ x106 + x110 + x111 + x112 + x123 + x159 + x161 + x164 + x165 + x180 ++ x182 + x188 + x189 + x222 + x253 + x255 + x261 + x271 + x272 + x273 ++ x274 + x275 + x276 + x279 + x283 + x284 + x286 + x287 + x302 + x304 ++ x306 + x308 + x311 + x313 + x320 + x321 + x323 + x324 + x330 + x331 ++ x340 + x341 + x342 + x344 + x345 + x365 + x367 + x399 + x400 + x401 ++ x403 + x404 + x405 + x409 + x410 + x441 + x442 + x443 + x444 + x445 ++ x446 + x474 + x475 + x478 + x479 + x492 + x494 + x495 + x497 <= 1 + +x8 + x9 + x10 + x22 + x39 + x41 + x49 + x58 + x59 + x60 ++ x61 + x66 + x67 + x93 + x96 + x97 + x98 + x99 + x100 + x101 ++ x104 + x112 + x113 + x144 + x171 + x180 + x182 + x188 + x199 + x200 ++ x222 + x255 + x274 + x276 + x278 + x279 + x302 + x308 + x309 + x310 ++ x311 + x312 + x320 + x321 + x323 + x325 + x326 + x327 + x328 + x329 ++ x330 + x331 + x340 + x341 + x342 + x344 + x345 + x399 + x400 + x401 ++ x404 + x405 + x407 + x409 + x410 + x441 + x442 + x443 + x444 + x445 ++ x446 + x458 + x474 + x475 + x494 + x495 + x497 <= 1 + +x22 + x41 + x58 + x59 + x60 + x61 + x66 + x67 + x97 + x99 ++ x109 + x110 + x112 + x113 + x157 + x178 + x180 + x182 + x188 + x220 ++ x222 + x225 + x260 + x263 + x274 + x276 + x284 + x287 + x308 + x309 ++ x310 + x312 + x318 + x325 + x326 + x327 + x328 + x329 + x330 + x331 ++ x340 + x341 + x342 + x344 + x345 + x399 + x407 + x409 + x411 + x412 ++ x433 + x441 + x442 + x443 + x444 + x445 + x446 + x468 + x473 + x474 + <= 1 + +x23 + x25 + x28 + x32 + x51 + x85 + x86 + x87 + x88 + x108 ++ x109 + x112 + x113 + x137 + x155 + x167 + x168 + x169 + x170 + x205 ++ x265 + x268 + x269 + x270 + x277 + x278 + x280 + x282 + x284 + x285 ++ x286 + x297 + x335 + x349 + x371 + x382 + x383 + x387 + x436 + x461 ++ x486 + x487 + x488 + x489 + x491 + x498 + x503 <= 1 + +x18 + x23 + x32 + x85 + x86 + x88 + x108 + x109 + x112 + x113 ++ x137 + x155 + x167 + x168 + x169 + x170 + x181 + x205 + x265 + x269 ++ x270 + x277 + x278 + x280 + x283 + x284 + x285 + x286 + x287 + x288 ++ x329 + x349 + x371 + x382 + x383 + x387 + x460 + x461 + x483 + x486 ++ x488 + x491 + x494 + x498 + x503 <= 1 + +x18 + x23 + x100 + x112 + x113 + x135 + x136 + x140 + x162 + x166 ++ x168 + x175 + x209 + x221 + x253 + x265 + x266 + x267 + x269 + x270 ++ x278 + x280 + x282 + x284 + x286 + x287 + x288 + x346 + x349 + x350 ++ x351 + x382 + x384 + x386 + x437 + x465 + x470 + x487 + x489 + x494 ++ x496 + x503 <= 1 + +x7 + x18 + x19 + x23 + x38 + x58 + x100 + x108 + x109 + x112 ++ x113 + x135 + x136 + x139 + x140 + x162 + x168 + x175 + x178 + x207 ++ x253 + x258 + x265 + x266 + x269 + x270 + x278 + x280 + x282 + x283 ++ x284 + x286 + x287 + x288 + x296 + x311 + x346 + x349 + x350 + x355 ++ x382 + x383 + x384 + x386 + x465 + x468 + x470 + x475 + x488 + x490 ++ x494 + x496 + x498 + x503 <= 1 + +x6 + x36 + x37 + x38 + x48 + x52 + x135 + x136 + x139 + x152 ++ x175 + x229 + x269 + x278 + x280 + x284 + x285 + x286 + x287 + x288 ++ x296 + x301 + x303 + x305 + x326 + x350 + x383 + x384 + x385 + x402 ++ x439 + x443 + x459 + x469 + x470 + x471 + x474 + x475 + x476 + x479 ++ x490 <= 1 + +x6 + x31 + x36 + x37 + x38 + x39 + x40 + x48 + x52 + x60 ++ x98 + x99 + x110 + x139 + x217 + x229 + x250 + x251 + x252 + x254 ++ x255 + x256 + x258 + x271 + x272 + x273 + x278 + x280 + x283 + x284 ++ x285 + x286 + x287 + x301 + x302 + x303 + x304 + x306 + x326 + x330 ++ x350 + x360 + x383 + x385 + x402 + x410 + x437 + x439 + x443 + x444 ++ x458 + x471 + x474 + x475 + x476 + x492 + x494 <= 1 + +x6 + x8 + x9 + x10 + x20 + x31 + x36 + x37 + x39 + x40 ++ x59 + x60 + x67 + x97 + x98 + x99 + x100 + x102 + x103 + x104 ++ x106 + x110 + x123 + x129 + x164 + x180 + x217 + x250 + x251 + x253 ++ x254 + x255 + x267 + x271 + x272 + x273 + x275 + x276 + x278 + x279 ++ x280 + x283 + x284 + x285 + x286 + x287 + x301 + x302 + x303 + x304 ++ x306 + x313 + x321 + x324 + x326 + x330 + x331 + x342 + x360 + x367 ++ x386 + x397 + x400 + x402 + x403 + x404 + x424 + x437 + x441 + x443 ++ x444 + x445 + x446 + x453 + x474 + x475 + x481 + x492 + x494 + x495 ++ x497 <= 1 + +x6 + x8 + x9 + x10 + x36 + x37 + x39 + x40 + x41 + x60 ++ x67 + x96 + x97 + x98 + x99 + x100 + x101 + x102 + x104 + x105 ++ x106 + x107 + x161 + x180 + x182 + x188 + x189 + x221 + x222 + x224 ++ x255 + x271 + x272 + x273 + x274 + x275 + x276 + x278 + x279 + x280 ++ x281 + x284 + x285 + x286 + x287 + x302 + x303 + x304 + x306 + x308 ++ x311 + x313 + x320 + x321 + x324 + x326 + x330 + x331 + x340 + x341 ++ x342 + x348 + x367 + x400 + x402 + x403 + x404 + x412 + x437 + x441 ++ x443 + x444 + x445 + x446 + x478 + x481 + x492 + x494 + x495 + x497 + <= 1 + +x58 + x59 + x67 + x97 + x98 + x99 + x100 + x101 + x102 + x103 ++ x104 + x105 + x106 + x107 + x180 + x182 + x220 + x221 + x223 + x224 ++ x225 + x255 + x263 + x271 + x272 + x273 + x274 + x275 + x276 + x278 ++ x281 + x284 + x286 + x287 + x300 + x302 + x305 + x306 + x313 + x324 ++ x325 + x326 + x330 + x331 + x340 + x342 + x367 + x402 + x404 + x412 ++ x441 + x443 + x444 + x446 + x474 + x475 + x481 + x494 + x497 + x502 + <= 1 + +x58 + x59 + x61 + x67 + x97 + x98 + x99 + x101 + x102 + x105 ++ x106 + x107 + x113 + x180 + x182 + x220 + x222 + x223 + x224 + x225 ++ x263 + x271 + x273 + x274 + x276 + x281 + x284 + x287 + x300 + x312 ++ x320 + x325 + x326 + x328 + x329 + x330 + x331 + x340 + x344 + x412 ++ x433 + x441 + x443 + x444 + x468 + x474 + x497 <= 1 + +x23 + x32 + x51 + x85 + x87 + x88 + x89 + x108 + x109 + x112 ++ x137 + x170 + x266 + x269 + x270 + x277 + x278 + x280 + x282 + x285 ++ x286 + x297 + x307 + x329 + x350 + x387 + x464 + x486 + x488 + x491 ++ x494 + x498 <= 1 + +x3 + x18 + x23 + x85 + x87 + x88 + x89 + x108 + x112 + x113 ++ x135 + x137 + x155 + x166 + x167 + x170 + x181 + x269 + x270 + x277 ++ x278 + x280 + x282 + x283 + x284 + x285 + x286 + x288 + x329 + x349 ++ x350 + x387 + x460 + x464 + x486 + x488 + x489 + x494 + x498 + x503 + <= 1 + +x3 + x18 + x23 + x88 + x89 + x108 + x109 + x113 + x138 + x139 ++ x155 + x167 + x168 + x181 + x193 + x205 + x270 + x277 + x278 + x280 ++ x284 + x286 + x287 + x288 + x306 + x329 + x349 + x350 + x382 + x383 ++ x385 + x387 + x460 + x461 + x463 + x464 + x475 + x483 + x484 + x486 ++ x488 + x491 + x498 + x503 <= 1 + +x3 + x18 + x23 + x36 + x37 + x58 + x89 + x98 + x99 + x100 ++ x109 + x113 + x135 + x136 + x138 + x139 + x140 + x168 + x170 + x175 ++ x181 + x205 + x207 + x265 + x269 + x270 + x278 + x280 + x282 + x284 ++ x286 + x287 + x288 + x303 + x305 + x311 + x349 + x350 + x382 + x383 ++ x385 + x386 + x454 + x457 + x460 + x462 + x463 + x464 + x469 + x475 ++ x479 + x488 + x491 + x496 + x498 + x503 <= 1 + +x36 + x37 + x52 + x89 + x99 + x138 + x139 + x207 + x252 + x269 ++ x275 + x278 + x280 + x284 + x285 + x286 + x287 + x288 + x301 + x303 ++ x305 + x332 + x349 + x382 + x383 + x384 + x385 + x439 + x442 + x457 ++ x459 + x462 + x469 + x471 + x475 + x479 + x494 + x496 <= 1 + +x36 + x139 + x201 + x252 + x254 + x273 + x275 + x278 + x280 + x285 ++ x286 + x287 + x288 + x301 + x306 + x332 + x382 + x385 + x397 + x406 ++ x457 + x458 + x462 + x471 + x475 + x477 + x492 + x494 <= 1 + +x10 + x20 + x36 + x39 + x97 + x99 + x100 + x103 + x110 + x201 ++ x251 + x254 + x255 + x266 + x273 + x275 + x278 + x280 + x281 + x286 ++ x287 + x302 + x304 + x330 + x385 + x397 + x400 + x402 + x403 + x406 ++ x425 + x437 + x443 + x444 + x445 + x446 + x457 + x462 + x475 + x477 ++ x492 + x494 + x495 + x497 <= 1 + +x10 + x36 + x39 + x67 + x97 + x98 + x99 + x100 + x101 + x102 ++ x103 + x110 + x113 + x129 + x201 + x223 + x254 + x266 + x275 + x278 ++ x281 + x283 + x286 + x287 + x308 + x313 + x321 + x326 + x330 + x331 ++ x340 + x341 + x342 + x348 + x400 + x402 + x403 + x404 + x425 + x437 ++ x441 + x443 + x445 + x446 + x475 + x477 + x481 + x492 + x494 + x495 ++ x497 <= 1 + +x39 + x58 + x59 + x67 + x97 + x98 + x99 + x101 + x102 + x103 ++ x105 + x106 + x107 + x110 + x174 + x182 + x220 + x221 + x223 + x224 ++ x255 + x263 + x266 + x271 + x273 + x274 + x275 + x276 + x281 + x286 ++ x293 + x300 + x313 + x325 + x326 + x330 + x331 + x340 + x403 + x412 ++ x441 + x443 + x444 + x445 + x475 + x481 + x492 + x494 + x497 <= 1 + +x58 + x97 + x98 + x99 + x101 + x102 + x105 + x106 + x182 + x220 ++ x221 + x223 + x224 + x249 + x255 + x263 + x273 + x274 + x275 + x276 ++ x281 + x325 + x326 + x331 + x340 + x403 + x481 + x497 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 + x22 + x23 <= 1 + +x24 + x25 + x26 + x27 + x28 + x29 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 <= 1 + +x36 + x37 + x38 + x39 + x40 + x41 <= 1 + +x42 + x43 + x44 + x45 + x46 + x47 <= 1 + +x48 + x49 + x50 + x51 + x52 + x53 <= 1 + +x54 + x55 + x56 + x57 <= 1 + +x58 + x59 + x60 + x61 + x62 + x63 <= 1 + +x64 + x65 + x66 + x67 + x68 + x69 <= 1 + +x70 + x71 <= 1 + +x73 + x74 + x75 + x76 + x77 + x78 <= 1 + +x79 + x80 + x81 + x82 + x83 + x84 <= 1 + +x85 + x86 + x87 + x88 + x89 <= 1 + +x90 + x91 + x92 + x93 + x94 + x95 <= 1 + +x96 + x97 + x98 + x99 + x100 + x101 <= 1 + +x102 + x103 + x104 + x105 + x106 + x107 <= 1 + +x108 + x109 + x110 + x111 + x112 + x113 <= 1 + +x114 + x115 <= 1 + +x116 + x117 + x118 <= 1 + +x119 + x120 <= 1 + +x121 + x122 + x123 + x124 + x125 + x126 <= 1 + +x128 + x129 + x130 + x131 + x132 + x133 <= 1 + +x135 + x136 + x137 + x138 + x139 + x140 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x148 + x149 + x150 + x151 + x152 + x153 <= 1 + +x154 + x155 + x156 + x157 + x158 + x159 <= 1 + +x160 + x161 + x162 + x163 + x164 + x165 <= 1 + +x166 + x167 + x168 + x169 + x170 + x171 <= 1 + +x172 + x173 + x174 + x175 + x176 + x177 <= 1 + +x178 + x179 + x180 + x181 + x182 + x183 <= 1 + +x184 + x185 + x186 + x187 + x188 + x189 <= 1 + +x190 + x191 <= 1 + +x192 + x193 + x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 <= 1 + +x220 + x221 + x222 + x223 + x224 + x225 <= 1 + +x226 + x227 + x228 + x229 + x230 + x231 <= 1 + +x232 + x233 + x234 + x235 + x236 + x237 <= 1 + +x238 + x239 + x240 + x241 + x242 + x243 <= 1 + +x244 + x245 + x246 + x247 + x248 + x249 <= 1 + +x250 + x251 + x252 <= 1 + +x253 + x254 + x255 + x256 + x257 + x258 <= 1 + +x259 + x260 + x261 + x262 + x263 + x264 <= 1 + +x265 + x266 + x267 + x268 + x269 + x270 <= 1 + +x271 + x272 + x273 + x274 + x275 + x276 <= 1 + +x277 + x278 + x279 + x280 + x281 + x282 <= 1 + +x283 + x284 + x285 + x286 + x287 + x288 <= 1 + +x289 + x290 + x291 + x292 + x293 + x294 <= 1 + +x295 + x296 + x297 + x298 + x299 + x300 <= 1 + +x301 + x302 + x303 + x304 + x305 + x306 <= 1 + +x308 + x309 + x310 + x311 + x312 + x313 <= 1 + +x314 + x315 + x316 + x317 + x318 + x319 <= 1 + +x320 + x321 + x322 + x323 + x324 + x325 <= 1 + +x326 + x327 + x328 + x329 + x330 + x331 <= 1 + +x333 + x334 + x335 + x336 + x337 + x338 <= 1 + +x340 + x341 + x342 + x343 + x344 + x345 <= 1 + +x346 + x347 + x348 + x349 + x350 + x351 <= 1 + +x352 + x353 + x354 + x355 + x356 + x357 <= 1 + +x358 + x359 + x360 + x361 + x362 + x363 <= 1 + +x364 + x365 + x366 + x367 + x368 + x369 <= 1 + +x370 + x371 + x372 + x373 + x374 + x375 <= 1 + +x376 + x377 + x378 + x379 + x380 <= 1 + +x382 + x383 + x384 + x385 + x386 + x387 <= 1 + +x388 + x389 + x390 + x391 + x392 + x393 <= 1 + +x394 + x395 + x396 + x397 + x398 + x399 <= 1 + +x400 + x401 + x402 + x403 + x404 + x405 <= 1 + +x407 + x408 + x409 + x410 + x411 + x412 <= 1 + +x413 + x414 + x415 + x416 <= 1 + +x417 + x418 + x419 + x420 + x421 + x422 <= 1 + +x423 + x424 + x425 + x426 + x427 + x428 <= 1 + +x429 + x430 + x431 + x432 + x433 + x434 <= 1 + +x435 + x436 + x437 + x438 + x439 + x440 <= 1 + +x441 + x442 + x443 + x444 + x445 + x446 <= 1 + +x447 + x448 + x449 <= 1 + +x451 + x452 + x453 + x454 + x455 + x456 <= 1 + +x457 + x458 + x459 <= 1 + +x460 + x461 + x462 + x463 + x464 <= 1 + +x465 + x466 + x467 + x468 + x469 + x470 <= 1 + +x471 + x472 + x473 + x474 + x475 + x476 <= 1 + +x477 + x478 + x479 + x480 + x481 + x482 <= 1 + +x483 + x484 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x492 + x493 + x494 + x495 + x496 + x497 <= 1 + +x498 + x499 + x500 + x501 + x502 + x503 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 x503 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0007.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0007.lp new file mode 100755 index 000000000..d633f9e27 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0007.lp @@ -0,0 +1,1017 @@ +max + +286.47x0 + 412.922x1 + 380.479x2 + 326.091x3 + 323.987x4 + 276.47x5 + 369.952x6 + 355.997x7 + 334.142x8 + 325.221x9 + +324.219x10 + 64.9486x11 + 102.126x12 + 196.238x13 + 271.23x14 + 212.671x15 + 160.34x16 + 130.814x17 + 216.56x18 + 264.285x19 + +221.598x20 + 165.67x21 + 1460.8x22 + 1927.32x23 + 1923.53x24 + 1870.85x25 + 1837.54x26 + 1832.46x27 + 1903.43x28 + 2008.25x29 + +1971.2x30 + 1949.58x31 + 1901.45x32 + 1884.28x33 + 1049.52x34 + 1167.07x35 + 1156.62x36 + 1135.41x37 + 1122.23x38 + 1118.37x39 + +420.968x40 + 411.027x41 + 407.804x42 + 291.759x43 + 287.629x44 + 464.111x45 + 683.058x46 + 657.028x47 + 604.821x48 + 570.728x49 + +549.361x50 + 1114.96x51 + 1159.57x52 + 1135.71x53 + 1125.15x54 + 1041.49x55 + 1039.43x56 + 814.797x57 + 856.139x58 + 832.017x59 + +818.782x60 + 772.687x61 + 768.277x62 + 40.3894x63 + 60.497x64 + 88.2889x65 + 84.2057x66 + 331.86x67 + 428.385x68 + 394.499x69 + +385.149x70 + 331.805x71 + 291.258x72 + 146.746x73 + 214.915x74 + 192.609x75 + 6.68477x76 + 62.4276x77 + 579.209x78 + 713.589x79 + +666.391x80 + 666.089x81 + 653.821x82 + 646.623x83 + 520.316x84 + 574.627x85 + 555.883x86 + 495.05x87 + 476.937x88 + 445.273x89 + +107.932x90 + 886.946x91 + 1131.54x92 + 1126.13x93 + 1074.73x94 + 1010.57x95 + 988.992x96 + 2714.96x97 + 3094.92x98 + 3088.61x99 + +3075.92x100 + 3074.29x101 + 3073.8x102 + 3007.9x103 + 3088.16x104 + 3049.02x105 + 2960.71x106 + 2937.91x107 + 2914.33x108 + 189.065x109 + +225.483x110 + 211.72x111 + 199.199x112 + 162.089x113 + 621.659x114 + 698.42x115 + 590.544x116 + 573.373x117 + 559.121x118 + 533.803x119 + +497.865x120 + 743.053x121 + 716.182x122 + 714.436x123 + 602.02x124 + 562.606x125 + 849.395x126 + 1038.75x127 + 998.211x128 + 965.807x129 + +958.326x130 + 937.002x131 + 28.3035x132 + 228.624x133 + 234.766x134 + 177.079x135 + 161.002x136 + 144.523x137 + 458.37x138 + 502.667x139 + +446.064x140 + 430.049x141 + 393.989x142 + 365.543x143 + 313.547x144 + 257.526x145 + 227.945x146 + 217.528x147 + 203.255x148 + 612.539x149 + +804.274x150 + 793.144x151 + 791.645x152 + 745.274x153 + 742.318x154 + 645.925x155 + 742.536x156 + 729.093x157 + 713.057x158 + 711.869x159 + +647.952x160 + 399.532x161 + 544.723x162 + 528.082x163 + 525.661x164 + 514.228x165 + 503.308x166 + 360.276x167 + 445.26x168 + 368.954x169 + +363.791x170 + 336.869x171 + 244.312x172 + 459.048x173 + 597.86x174 + 587.096x175 + 516.284x176 + 497.975x177 + 456.192x178 + 1668.38x179 + +1821.07x180 + 1816.06x181 + 1785.29x182 + 1730.46x183 + 1718.94x184 + 25.4549x185 + 1127.36x186 + 1291.69x187 + 1248.42x188 + 1183.34x189 + +1123.16x190 + 1074.67x191 + 115.521x192 + 119.376x193 + 114.586x194 + 178.409x195 + 223.26x196 + 195.199x197 + 169.695x198 + 89.9361x199 + +119.845x200 + 68.4904x201 + 60.739x202 + 84.4075x203 + 916.858x204 + 966.305x205 + 945.505x206 + 940.682x207 + 916.809x208 + 890.587x209 + +484.592x210 + 604.015x211 + 565.615x212 + 541.93x213 + 534.284x214 + 506.591x215 + 537.556x216 + 740.786x217 + 714.889x218 + 629.323x219 + +619.634x220 + 577.711x221 + 296.339x222 + 441.598x223 + 431.048x224 + 389.719x225 + 291.905x226 + 269.903x227 + 143.778x228 + 152.289x229 + +32.9346x230 + 453.833x231 + 585.423x232 + 566.332x233 + 533.372x234 + 461.636x235 + 445.024x236 + 205.388x237 + 277.943x238 + 238.782x239 + +197.674x240 + 103.425x241 + 1142.61x242 + 1612.99x243 + 1598.22x244 + 1539.71x245 + 1534.97x246 + 1531.74x247 + 155.94x248 + 226.015x249 + +203.328x250 + 182.444x251 + 152.2x252 + 205.31x253 + 133.723x254 + 110.536x255 + 398.693x256 + 512.956x257 + 498.638x258 + 448.666x259 + +422.809x260 + 344.617x261 + 443.076x262 + 658.314x263 + 630.007x264 + 527.822x265 + 521.936x266 + 496.483x267 + 1436.34x268 + 1802.54x269 + +1776.57x270 + 1773.88x271 + 1656.85x272 + 1613.23x273 + 537.432x274 + 568.442x275 + 547.034x276 + 502.124x277 + 492.497x278 + 479.019x279 + +63.5116x280 + 170.175x281 + 189.643x282 + 129.645x283 + 1430.46x284 + 1922.06x285 + 1824.46x286 + 1776.71x287 + 1741.24x288 + 1692.32x289 + +291.419x290 + 255.337x291 + 243.527x292 + 193.264x293 + 528.568x294 + 775.83x295 + 647.76x296 + 620.553x297 + 581.869x298 + 550.165x299 + +647.026x300 + 741.015x301 + 676.554x302 + 627.635x303 + 570.279x304 + 555.519x305 + 387.11x306 + 580.246x307 + 542.59x308 + 526.804x309 + +464.29x310 + 461.42x311 + 1119.07x312 + 1192x313 + 1172.7x314 + 1171.82x315 + 1167.85x316 + 1162.01x317 + 2169.15x318 + 2472.77x319 + +2399.64x320 + 2389.83x321 + 2363.57x322 + 2354.62x323 + 14.0474x324 + 594.046x325 + 746.251x326 + 694.388x327 + 647.56x328 + 631.43x329 + +599.868x330 + 959.756x331 + 1190.69x332 + 1163.01x333 + 1089.4x334 + 1078.99x335 + 1050.17x336 + 683.648x337 + 801.945x338 + 758.613x339 + +706.522x340 + 647.877x341 + 635.522x342 + 432.003x343 + 479.398x344 + 441.305x345 + 409.337x346 + 392.689x347 + 389.736x348 + 662.962x349 + +763.853x350 + 725.407x351 + 690.136x352 + 680.079x353 + 652.297x354 + 702.906x355 + 705.093x356 + 672.193x357 + 672.122x358 + 647.943x359 + +636.254x360 + 149.343x361 + 175.579x362 + 99.0277x363 + 1261.66x364 + 1486.38x365 + 1485.19x366 + 1441.4x367 + 1425.93x368 + 1395.79x369 + +1479.58x370 + 1919.08x371 + 1866.79x372 + 1866.75x373 + 1753.23x374 + 1751.73x375 + 142.393x376 + 178.758x377 + 168.966x378 + 103.256x379 + +125.215x380 + 154.879x381 + 208.955x382 + 272.545x383 + 226.187x384 + 119.374x385 + 1046.61x386 + 1421.25x387 + 1321.29x388 + 1244.99x389 + +1211.21x390 + 1168.01x391 + 365.258x392 + 398.368x393 + 388.572x394 + 327.602x395 + 308.266x396 + 268.106x397 + 275.643x398 + 406.982x399 + +375.332x400 + 259.078x401 + 226.676x402 + 204.099x403 + 1054.13x404 + 1398.84x405 + 1350.79x406 + 1347.05x407 + 1293.59x408 + 1255.16x409 + +280.343x410 + 276.785x411 + 230.34x412 + 316.615x413 + 338.639x414 + 327.115x415 + 289.83x416 + 259.514x417 + 45.3916x418 + 297.545x419 + +306.244x420 + 256.709x421 + 238.938x422 + 228.916x423 + 165.434x424 + 114.557x425 + 90.9138x426 + 896.507x427 + 1181.33x428 + 1161.85x429 + +1108.16x430 + 1099.98x431 + 1098.68x432 + 1529.42x433 + 1667.41x434 + 1604.1x435 + 1600.1x436 + 1543.84x437 + 1530.95x438 + 130.828x439 + +205.565x440 + 250.844x441 + 148.105x442 + 375.309x443 + 562.435x444 + 553.616x445 + 547.682x446 + 486.844x447 + 448.779x448 + 344.459x449 + +471.881x450 + 400.308x451 + 379.701x452 + 340.761x453 + 294.992x454 + 106.47x455 + 79.2459x456 + 78.0518x457 + 163.128x458 + 154.468x459 + +148.551x460 + 140.881x461 + 1097.36x462 + 1392.6x463 + 1376.95x464 + 1349.72x465 + 1325.12x466 + 1292.47x467 + 437.477x468 + 591.451x469 + +576.519x470 + 547.09x471 + 453.338x472 + 445.291x473 + 127.344x474 + 139.328x475 + 508.588x476 + 595.436x477 + 573.666x478 + 430.332x479 + +404.143x480 + 323.302x481 + 634.63x482 + 733.053x483 + 722.874x484 + 651.588x485 + 645.403x486 + 641.939x487 + 1339.32x488 + 1357.94x489 + +1295.96x490 + 1262.31x491 + 1253.05x492 + 1248.86x493 + 341.727x494 + 408.902x495 + 371.964x496 + 344.34x497 + 318.862x498 + 307.496x499 + + +st + +x22 + x43 + x85 + x181 + x220 + x340 + x352 + x385 + x434 + x437 ++ x492 <= 1 + +x22 + x62 + x128 + x131 + x158 + x163 + x229 + x242 + x340 + x382 ++ x385 + x434 + x437 + x481 <= 1 + +x2 + x22 + x44 + x97 + x100 + x128 + x130 + x131 + x158 + x163 ++ x242 + x298 + x318 + x329 + x395 + x396 + x409 + x466 <= 1 + +x2 + x59 + x62 + x78 + x82 + x83 + x97 + x108 + x117 + x126 ++ x127 + x128 + x130 + x156 + x210 + x213 + x217 + x287 + x291 + x318 ++ x320 + x323 + x329 + x330 + x349 + x351 + x354 + x371 + x374 + x392 ++ x394 + x395 + x396 + x422 + x468 + x473 <= 1 + +x25 + x59 + x61 + x70 + x78 + x79 + x80 + x81 + x82 + x97 ++ x98 + x100 + x102 + x124 + x126 + x127 + x129 + x131 + x151 + x156 ++ x210 + x213 + x215 + x217 + x287 + x290 + x291 + x292 + x302 + x303 ++ x304 + x318 + x320 + x322 + x323 + x325 + x330 + x349 + x350 + x351 ++ x352 + x354 + x371 + x373 + x374 + x396 + x417 + x468 + x469 + x470 ++ x471 + x473 + x484 <= 1 + +x58 + x59 + x60 + x61 + x70 + x78 + x80 + x81 + x82 + x97 ++ x100 + x101 + x106 + x108 + x121 + x124 + x126 + x127 + x128 + x129 ++ x130 + x213 + x215 + x285 + x286 + x287 + x290 + x293 + x300 + x301 ++ x302 + x303 + x304 + x315 + x318 + x319 + x320 + x322 + x323 + x330 ++ x352 + x354 + x368 + x374 + x388 + x393 + x468 + x470 + x471 <= 1 + +x38 + x67 + x70 + x78 + x81 + x82 + x93 + x94 + x97 + x106 ++ x120 + x121 + x124 + x126 + x127 + x129 + x130 + x161 + x164 + x179 ++ x200 + x213 + x270 + x285 + x300 + x301 + x302 + x303 + x304 + x312 ++ x315 + x320 + x323 + x330 + x368 + x397 + x468 + x471 + x472 <= 1 + +x36 + x51 + x55 + x81 + x82 + x104 + x105 + x106 + x164 + x179 ++ x182 + x200 + x264 + x285 + x300 + x301 + x302 + x303 + x315 + x330 ++ x368 + x471 + x487 <= 1 + +x5 + x7 + x9 + x34 + x36 + x37 + x51 + x69 + x71 + x72 ++ x77 + x103 + x104 + x105 + x148 + x164 + x179 + x182 + x199 + x200 ++ x201 + x202 + x264 + x285 + x330 + x368 + x369 + x483 + x487 <= 1 + +x5 + x7 + x34 + x36 + x37 + x72 + x103 + x104 + x144 + x148 ++ x164 + x168 + x179 + x182 + x199 + x201 + x235 + x264 + x285 + x368 ++ x483 + x493 <= 1 + +x22 + x98 + x99 + x100 + x128 + x142 + x143 + x181 + x243 + x370 ++ x373 + x405 + x434 + x435 <= 1 + +x22 + x24 + x62 + x98 + x99 + x100 + x128 + x131 + x142 + x181 ++ x243 + x336 + x373 + x374 + x405 + x434 + x437 <= 1 + +x0 + x2 + x22 + x57 + x60 + x62 + x98 + x99 + x100 + x108 ++ x126 + x128 + x130 + x131 + x142 + x158 + x181 + x228 + x229 + x242 ++ x287 + x336 + x349 + x373 + x385 + x395 + x407 + x434 + x437 + x464 ++ x480 <= 1 + +x0 + x2 + x24 + x32 + x55 + x57 + x58 + x59 + x60 + x62 ++ x91 + x97 + x100 + x108 + x123 + x126 + x128 + x130 + x156 + x158 ++ x184 + x207 + x215 + x246 + x286 + x287 + x291 + x292 + x293 + x318 ++ x320 + x323 + x329 + x337 + x345 + x349 + x351 + x354 + x392 + x394 ++ x395 + x396 + x414 + x419 + x420 + x422 + x432 + x437 + x464 + x469 + <= 1 + +x1 + x10 + x25 + x32 + x38 + x52 + x54 + x55 + x57 + x58 ++ x59 + x60 + x61 + x62 + x68 + x70 + x78 + x80 + x81 + x93 ++ x97 + x98 + x100 + x101 + x102 + x108 + x126 + x128 + x129 + x130 ++ x131 + x151 + x184 + x210 + x212 + x213 + x215 + x236 + x246 + x285 ++ x286 + x287 + x290 + x292 + x293 + x302 + x304 + x305 + x317 + x318 ++ x320 + x321 + x322 + x323 + x330 + x342 + x345 + x349 + x351 + x352 ++ x354 + x371 + x372 + x373 + x374 + x405 + x410 + x411 + x413 + x414 ++ x417 + x419 + x420 + x422 + x423 + x471 <= 1 + +x24 + x25 + x32 + x37 + x55 + x57 + x58 + x61 + x67 + x68 ++ x69 + x70 + x71 + x78 + x79 + x80 + x81 + x82 + x97 + x98 ++ x100 + x106 + x108 + x121 + x122 + x124 + x126 + x127 + x128 + x129 ++ x130 + x131 + x151 + x161 + x210 + x215 + x285 + x287 + x300 + x302 ++ x304 + x305 + x318 + x319 + x320 + x322 + x323 + x325 + x329 + x330 ++ x349 + x350 + x351 + x352 + x354 + x366 + x368 + x387 + x388 + x393 ++ x396 + x397 + x411 + x417 + x419 + x422 + x423 + x468 + x469 + x470 ++ x471 + x472 + x473 <= 1 + +x24 + x25 + x34 + x36 + x51 + x55 + x67 + x70 + x71 + x78 ++ x79 + x81 + x93 + x94 + x97 + x98 + x100 + x104 + x106 + x108 ++ x120 + x121 + x122 + x124 + x126 + x127 + x128 + x129 + x130 + x148 ++ x161 + x210 + x211 + x212 + x213 + x269 + x270 + x285 + x286 + x287 ++ x300 + x303 + x304 + x305 + x320 + x325 + x352 + x366 + x368 + x373 ++ x397 + x417 + x423 + x464 + x468 + x472 + x473 <= 1 + +x7 + x9 + x34 + x36 + x37 + x38 + x51 + x55 + x67 + x69 ++ x71 + x72 + x79 + x81 + x102 + x104 + x105 + x106 + x122 + x124 ++ x129 + x148 + x164 + x182 + x184 + x199 + x211 + x281 + x283 + x285 ++ x300 + x301 + x303 + x304 + x305 + x315 + x320 + x334 + x366 + x368 ++ x387 + x389 + x487 <= 1 + +x5 + x6 + x7 + x9 + x10 + x34 + x36 + x37 + x51 + x67 ++ x69 + x71 + x72 + x91 + x101 + x104 + x105 + x164 + x179 + x182 ++ x183 + x199 + x200 + x201 + x202 + x235 + x264 + x283 + x285 + x298 ++ x320 + x358 + x368 + x369 + x389 + x463 + x493 <= 1 + +x5 + x6 + x7 + x8 + x9 + x10 + x34 + x36 + x62 + x72 ++ x105 + x144 + x145 + x146 + x168 + x179 + x182 + x201 + x202 + x264 ++ x285 + x368 + x369 + x463 <= 1 + +x4 + x35 + x57 + x91 + x98 + x99 + x100 + x123 + x143 + x181 ++ x230 + x232 + x263 + x370 + x373 + x374 + x382 + x383 + x384 + x404 ++ x407 + x432 + x434 + x435 <= 1 + +x0 + x4 + x22 + x24 + x25 + x57 + x58 + x60 + x62 + x91 ++ x98 + x99 + x100 + x124 + x125 + x128 + x130 + x131 + x138 + x139 ++ x142 + x143 + x181 + x182 + x186 + x196 + x228 + x229 + x230 + x242 ++ x243 + x265 + x287 + x317 + x318 + x336 + x353 + x373 + x374 + x384 ++ x404 + x405 + x407 + x434 + x435 + x437 <= 1 + +x0 + x1 + x4 + x24 + x29 + x57 + x58 + x59 + x60 + x62 ++ x98 + x99 + x100 + x121 + x128 + x130 + x131 + x138 + x139 + x142 ++ x143 + x181 + x182 + x196 + x213 + x228 + x229 + x269 + x317 + x320 ++ x322 + x323 + x349 + x353 + x354 + x373 + x374 + x395 + x405 + x407 ++ x434 + x437 + x464 <= 1 + +x0 + x1 + x3 + x4 + x10 + x24 + x25 + x29 + x38 + x52 ++ x57 + x58 + x59 + x60 + x80 + x93 + x94 + x98 + x100 + x121 ++ x122 + x123 + x126 + x129 + x131 + x143 + x151 + x181 + x182 + x184 ++ x207 + x212 + x213 + x215 + x228 + x246 + x253 + x269 + x273 + x317 ++ x318 + x320 + x322 + x323 + x339 + x342 + x349 + x353 + x354 + x370 ++ x373 + x374 + x387 + x405 + x407 <= 1 + +x1 + x2 + x3 + x24 + x25 + x38 + x52 + x54 + x55 + x57 ++ x58 + x59 + x60 + x61 + x62 + x68 + x80 + x81 + x91 + x93 ++ x94 + x97 + x98 + x99 + x100 + x101 + x102 + x106 + x108 + x120 ++ x121 + x122 + x123 + x158 + x184 + x207 + x212 + x215 + x219 + x236 ++ x246 + x253 + x269 + x286 + x287 + x305 + x310 + x317 + x318 + x320 ++ x321 + x322 + x323 + x337 + x338 + x339 + x340 + x342 + x349 + x351 ++ x352 + x353 + x354 + x362 + x368 + x370 + x372 + x373 + x374 + x392 ++ x394 + x398 + x399 + x405 + x410 + x411 + x412 + x413 + x414 + x420 ++ x431 + x432 + x448 + x464 + x469 + x470 + x472 <= 1 + +x3 + x24 + x25 + x36 + x38 + x51 + x52 + x55 + x61 + x68 ++ x78 + x82 + x91 + x97 + x98 + x99 + x100 + x101 + x106 + x108 ++ x120 + x121 + x122 + x126 + x127 + x129 + x130 + x151 + x158 + x183 ++ x184 + x193 + x207 + x211 + x212 + x219 + x224 + x269 + x286 + x300 ++ x302 + x303 + x305 + x318 + x319 + x320 + x322 + x323 + x325 + x329 ++ x330 + x351 + x352 + x366 + x368 + x372 + x373 + x387 + x388 + x391 ++ x392 + x393 + x394 + x397 + x399 + x405 + x423 + x464 + x468 + x469 ++ x470 + x471 + x472 + x473 <= 1 + +x24 + x25 + x36 + x37 + x38 + x55 + x61 + x67 + x68 + x69 ++ x70 + x71 + x78 + x93 + x94 + x97 + x98 + x99 + x101 + x106 ++ x108 + x120 + x122 + x126 + x127 + x128 + x129 + x130 + x179 + x184 ++ x192 + x207 + x210 + x211 + x212 + x215 + x219 + x269 + x270 + x271 ++ x282 + x300 + x304 + x318 + x319 + x320 + x321 + x322 + x323 + x325 ++ x329 + x330 + x366 + x368 + x372 + x387 + x388 + x389 + x391 + x392 ++ x393 + x399 + x419 + x421 + x464 <= 1 + +x7 + x9 + x10 + x34 + x36 + x38 + x51 + x55 + x67 + x69 ++ x79 + x93 + x94 + x99 + x100 + x101 + x102 + x106 + x122 + x128 ++ x129 + x130 + x164 + x179 + x183 + x184 + x207 + x211 + x281 + x282 ++ x285 + x315 + x320 + x321 + x323 + x325 + x328 + x329 + x331 + x334 ++ x335 + x350 + x353 + x364 + x365 + x366 + x368 + x387 + x389 + x391 ++ x421 + x445 <= 1 + +x5 + x6 + x7 + x9 + x10 + x34 + x69 + x71 + x72 + x93 ++ x94 + x99 + x101 + x103 + x104 + x105 + x132 + x144 + x145 + x146 ++ x147 + x179 + x182 + x183 + x285 + x312 + x313 + x334 + x353 + x355 ++ x366 + x368 + x387 + x389 + x421 + x463 <= 1 + +x5 + x6 + x8 + x9 + x72 + x102 + x144 + x145 + x146 + x147 ++ x179 + x182 + x189 + x202 + x264 + x364 + x366 + x368 + x369 + x421 ++ x428 + x463 <= 1 + +x35 + x39 + x97 + x98 + x99 + x100 + x107 + x123 + x125 + x131 ++ x140 + x141 + x191 + x232 + x233 + x242 + x258 + x263 + x370 + x373 ++ x374 + x382 + x383 + x384 + x404 + x405 + x407 + x432 + x434 + x435 ++ x437 <= 1 + +x4 + x35 + x49 + x91 + x95 + x99 + x125 + x131 + x138 + x140 ++ x142 + x191 + x230 + x242 + x243 + x252 + x255 + x258 + x263 + x370 ++ x373 + x374 + x383 + x404 + x405 + x407 + x409 + x424 + x425 + x434 ++ x435 + x437 + x454 <= 1 + +x8 + x25 + x28 + x29 + x35 + x58 + x60 + x91 + x131 + x138 ++ x139 + x140 + x142 + x143 + x181 + x182 + x186 + x190 + x242 + x243 ++ x246 + x247 + x252 + x254 + x258 + x263 + x265 + x275 + x317 + x370 ++ x373 + x374 + x405 + x412 + x424 + x426 + x431 + x432 + x434 + x437 ++ x455 + x456 <= 1 + +x1 + x8 + x24 + x25 + x29 + x33 + x35 + x57 + x58 + x59 ++ x60 + x61 + x80 + x91 + x93 + x97 + x100 + x121 + x123 + x126 ++ x131 + x151 + x181 + x182 + x184 + x243 + x246 + x252 + x253 + x263 ++ x265 + x302 + x317 + x318 + x323 + x339 + x340 + x342 + x349 + x351 ++ x353 + x354 + x370 + x373 + x374 + x387 + x410 + x412 + x414 + x431 ++ x437 + x455 + x457 + x464 + x470 <= 1 + +x3 + x8 + x19 + x24 + x54 + x55 + x68 + x80 + x82 + x97 ++ x98 + x100 + x101 + x102 + x122 + x123 + x181 + x182 + x183 + x184 ++ x207 + x246 + x268 + x269 + x271 + x272 + x273 + x305 + x317 + x323 ++ x337 + x338 + x339 + x340 + x352 + x361 + x362 + x372 + x387 + x388 ++ x391 + x394 + x397 + x399 + x431 + x432 + x457 + x464 + x472 <= 1 + +x3 + x18 + x19 + x24 + x25 + x47 + x52 + x54 + x55 + x61 ++ x68 + x82 + x91 + x93 + x94 + x95 + x97 + x98 + x99 + x100 ++ x101 + x102 + x106 + x108 + x121 + x122 + x126 + x129 + x181 + x183 ++ x184 + x197 + x207 + x210 + x211 + x212 + x219 + x246 + x269 + x271 ++ x272 + x273 + x279 + x286 + x305 + x310 + x318 + x320 + x321 + x323 ++ x325 + x332 + x337 + x338 + x339 + x340 + x342 + x351 + x358 + x361 ++ x363 + x370 + x372 + x373 + x391 + x399 + x413 + x415 + x420 + x431 ++ x432 + x445 + x446 + x447 + x448 + x464 + x469 + x470 + x472 + x473 + <= 1 + +x15 + x19 + x20 + x22 + x24 + x25 + x37 + x54 + x55 + x83 ++ x91 + x93 + x94 + x97 + x98 + x99 + x100 + x101 + x104 + x108 ++ x126 + x127 + x129 + x183 + x184 + x187 + x188 + x195 + x196 + x197 ++ x210 + x211 + x212 + x214 + x219 + x246 + x271 + x272 + x273 + x286 ++ x301 + x310 + x319 + x320 + x321 + x322 + x323 + x331 + x339 + x350 ++ x353 + x358 + x363 + x367 + x389 + x391 + x393 + x406 + x413 + x415 ++ x416 + x427 + x431 + x445 + x462 + x463 + x464 + x469 + x490 <= 1 + +x34 + x36 + x38 + x55 + x79 + x83 + x94 + x97 + x98 + x99 ++ x100 + x101 + x103 + x104 + x105 + x106 + x108 + x117 + x118 + x129 ++ x130 + x164 + x175 + x179 + x181 + x182 + x183 + x184 + x187 + x188 ++ x207 + x234 + x271 + x272 + x273 + x285 + x301 + x310 + x312 + x319 ++ x320 + x321 + x323 + x325 + x328 + x329 + x331 + x332 + x333 + x334 ++ x335 + x350 + x355 + x357 + x358 + x364 + x365 + x366 + x367 + x387 ++ x389 + x391 + x406 + x415 + x416 + x427 + x428 + x431 + x444 + x445 ++ x458 + x459 <= 1 + +x10 + x34 + x36 + x38 + x93 + x94 + x101 + x102 + x103 + x104 ++ x105 + x108 + x145 + x179 + x181 + x182 + x183 + x184 + x185 + x234 ++ x312 + x313 + x328 + x329 + x333 + x334 + x335 + x350 + x355 + x364 ++ x365 + x366 + x367 + x368 + x369 + x387 + x389 + x391 + x427 + x431 ++ x463 + x467 <= 1 + +x5 + x6 + x8 + x38 + x80 + x101 + x102 + x146 + x147 + x160 ++ x189 + x204 + x206 + x207 + x208 + x321 + x328 + x364 + x371 + x427 ++ x428 + x440 + x442 + x498 <= 1 + +x25 + x35 + x39 + x46 + x47 + x49 + x50 + x97 + x98 + x99 ++ x100 + x103 + x107 + x123 + x125 + x138 + x139 + x140 + x141 + x150 ++ x152 + x216 + x218 + x225 + x226 + x233 + x234 + x242 + x243 + x246 ++ x247 + x262 + x263 + x265 + x299 + x371 + x373 + x374 + x375 + x404 ++ x405 + x407 + x409 + x428 + x432 + x433 + x434 + x435 + x436 + x437 ++ x439 + x454 + x462 <= 1 + +x25 + x28 + x35 + x45 + x46 + x47 + x49 + x50 + x95 + x123 ++ x125 + x138 + x139 + x140 + x141 + x186 + x190 + x216 + x218 + x226 ++ x230 + x242 + x243 + x246 + x247 + x254 + x255 + x258 + x262 + x263 ++ x265 + x266 + x268 + x275 + x279 + x326 + x370 + x404 + x405 + x407 ++ x409 + x425 + x426 + x433 + x434 + x435 + x437 + x454 + x477 <= 1 + +x23 + x28 + x35 + x45 + x46 + x47 + x48 + x91 + x95 + x97 ++ x98 + x104 + x107 + x127 + x131 + x138 + x140 + x141 + x143 + x150 ++ x186 + x190 + x226 + x242 + x243 + x246 + x254 + x256 + x258 + x260 ++ x262 + x263 + x264 + x265 + x268 + x272 + x275 + x279 + x295 + x338 ++ x370 + x371 + x373 + x374 + x375 + x404 + x405 + x407 + x456 + x477 ++ x479 <= 1 + +x23 + x33 + x45 + x46 + x47 + x48 + x95 + x97 + x98 + x100 ++ x104 + x105 + x106 + x107 + x108 + x141 + x150 + x186 + x190 + x225 ++ x242 + x244 + x256 + x258 + x260 + x262 + x264 + x265 + x266 + x268 ++ x271 + x272 + x273 + x295 + x323 + x338 + x339 + x370 + x371 + x372 ++ x373 + x374 + x375 + x388 + x398 + x400 + x404 + x435 + x437 + x446 ++ x447 + x450 + x462 + x466 + x476 + x479 <= 1 + +x33 + x37 + x46 + x47 + x48 + x91 + x94 + x95 + x97 + x98 ++ x99 + x100 + x101 + x102 + x105 + x106 + x141 + x181 + x182 + x183 ++ x184 + x219 + x256 + x261 + x268 + x269 + x271 + x272 + x273 + x295 ++ x320 + x321 + x323 + x325 + x327 + x330 + x332 + x336 + x337 + x338 ++ x339 + x340 + x342 + x352 + x370 + x371 + x372 + x375 + x388 + x391 ++ x400 + x405 + x431 + x443 + x445 + x446 + x447 + x448 + x462 + x466 ++ x479 + x492 <= 1 + +x18 + x20 + x28 + x29 + x33 + x37 + x39 + x54 + x61 + x65 ++ x91 + x94 + x95 + x97 + x98 + x99 + x100 + x101 + x102 + x181 ++ x183 + x184 + x214 + x219 + x256 + x261 + x286 + x289 + x295 + x319 ++ x320 + x321 + x323 + x325 + x326 + x327 + x332 + x337 + x338 + x339 ++ x340 + x342 + x350 + x351 + x353 + x370 + x371 + x372 + x386 + x388 ++ x390 + x391 + x400 + x406 + x431 + x443 + x445 + x446 + x447 + x448 ++ x463 + x464 + x490 + x492 <= 1 + +x15 + x20 + x22 + x23 + x25 + x36 + x37 + x53 + x54 + x83 ++ x97 + x98 + x99 + x100 + x101 + x104 + x105 + x108 + x117 + x181 ++ x182 + x183 + x184 + x188 + x195 + x197 + x198 + x211 + x214 + x219 ++ x246 + x247 + x256 + x261 + x271 + x272 + x295 + x301 + x306 + x310 ++ x319 + x320 + x321 + x323 + x325 + x326 + x327 + x331 + x332 + x333 ++ x334 + x337 + x350 + x353 + x371 + x372 + x386 + x391 + x460 + x462 ++ x463 + x464 + x490 <= 1 + +x28 + x31 + x36 + x52 + x53 + x54 + x55 + x79 + x85 + x92 ++ x93 + x94 + x95 + x98 + x99 + x100 + x101 + x114 + x115 + x117 ++ x118 + x129 + x164 + x182 + x183 + x184 + x204 + x206 + x246 + x247 ++ x258 + x268 + x271 + x272 + x307 + x308 + x310 + x315 + x317 + x319 ++ x320 + x321 + x323 + x326 + x327 + x329 + x331 + x332 + x333 + x334 ++ x335 + x341 + x350 + x355 + x357 + x358 + x364 + x365 + x367 + x369 ++ x372 + x390 + x416 + x444 + x458 + x459 + x460 + x461 + x463 + x464 ++ x467 + x497 <= 1 + +x21 + x23 + x24 + x26 + x34 + x36 + x38 + x79 + x85 + x93 ++ x96 + x98 + x99 + x101 + x102 + x108 + x117 + x174 + x175 + x179 ++ x181 + x182 + x183 + x184 + x187 + x189 + x204 + x206 + x208 + x218 ++ x234 + x243 + x246 + x288 + x301 + x307 + x309 + x312 + x313 + x316 ++ x317 + x319 + x320 + x321 + x323 + x326 + x328 + x329 + x332 + x333 ++ x334 + x335 + x364 + x365 + x366 + x367 + x368 + x369 + x386 + x387 ++ x389 + x390 + x415 + x416 + x427 + x428 + x429 + x430 + x431 + x432 ++ x442 + x444 + x459 + x463 + x464 + x497 <= 1 + +x6 + x8 + x18 + x21 + x26 + x38 + x93 + x98 + x101 + x116 ++ x147 + x156 + x160 + x180 + x183 + x184 + x189 + x204 + x205 + x206 ++ x207 + x208 + x271 + x313 + x316 + x317 + x321 + x323 + x328 + x364 ++ x365 + x366 + x367 + x389 + x427 + x428 + x430 + x431 + x432 + x442 ++ x444 + x494 + x497 + x498 <= 1 + +x34 + x35 + x39 + x49 + x50 + x73 + x97 + x99 + x100 + x107 ++ x120 + x123 + x125 + x180 + x186 + x216 + x218 + x219 + x222 + x226 ++ x233 + x242 + x243 + x246 + x247 + x262 + x266 + x267 + x326 + x374 ++ x404 + x405 + x407 + x409 + x433 + x434 + x435 + x437 + x449 + x454 ++ x462 <= 1 + +x25 + x34 + x35 + x39 + x46 + x47 + x49 + x50 + x74 + x95 ++ x97 + x103 + x104 + x105 + x107 + x108 + x125 + x139 + x140 + x141 ++ x150 + x152 + x180 + x225 + x226 + x233 + x234 + x242 + x243 + x246 ++ x247 + x255 + x262 + x263 + x265 + x266 + x267 + x268 + x274 + x275 ++ x276 + x277 + x278 + x279 + x297 + x299 + x326 + x371 + x373 + x374 ++ x375 + x388 + x404 + x405 + x407 + x409 + x433 + x434 + x435 + x436 ++ x437 + x462 + x476 + x477 + x478 + x479 + x480 + x499 <= 1 + +x23 + x27 + x28 + x30 + x33 + x35 + x39 + x45 + x46 + x48 ++ x56 + x66 + x83 + x95 + x97 + x98 + x100 + x102 + x103 + x104 ++ x105 + x107 + x108 + x150 + x152 + x186 + x187 + x190 + x217 + x220 ++ x225 + x242 + x245 + x246 + x256 + x260 + x263 + x264 + x265 + x266 ++ x267 + x268 + x271 + x272 + x274 + x275 + x276 + x277 + x279 + x295 ++ x299 + x323 + x338 + x371 + x372 + x373 + x374 + x375 + x388 + x398 ++ x400 + x401 + x404 + x405 + x406 + x407 + x408 + x409 + x433 + x435 ++ x437 + x446 + x447 + x450 + x462 + x465 + x466 + x476 + x477 + x478 ++ x479 + x480 + x485 <= 1 + +x29 + x30 + x33 + x45 + x46 + x48 + x56 + x64 + x66 + x95 ++ x97 + x98 + x99 + x100 + x101 + x102 + x106 + x107 + x184 + x186 ++ x190 + x217 + x242 + x244 + x245 + x264 + x265 + x268 + x295 + x296 ++ x323 + x327 + x370 + x371 + x372 + x373 + x374 + x375 + x388 + x401 ++ x404 + x408 + x409 + x433 + x434 + x435 + x436 + x437 + x438 + x450 ++ x462 + x465 + x467 + x477 + x478 + x479 <= 1 + +x28 + x29 + x30 + x33 + x37 + x46 + x48 + x64 + x65 + x83 ++ x91 + x94 + x95 + x97 + x98 + x99 + x100 + x101 + x102 + x104 ++ x105 + x106 + x107 + x181 + x183 + x184 + x190 + x214 + x217 + x246 ++ x256 + x261 + x268 + x271 + x272 + x295 + x311 + x319 + x320 + x321 ++ x322 + x323 + x326 + x327 + x336 + x338 + x340 + x342 + x364 + x370 ++ x371 + x372 + x373 + x386 + x388 + x390 + x391 + x404 + x406 + x434 ++ x443 + x445 + x446 + x447 + x448 + x463 + x464 + x478 + x492 <= 1 + +x28 + x37 + x39 + x54 + x83 + x89 + x92 + x95 + x98 + x99 ++ x105 + x118 + x153 + x172 + x181 + x183 + x214 + x219 + x243 + x244 ++ x246 + x261 + x268 + x270 + x271 + x272 + x289 + x306 + x309 + x310 ++ x311 + x319 + x320 + x321 + x322 + x323 + x326 + x327 + x331 + x337 ++ x342 + x350 + x357 + x358 + x364 + x369 + x370 + x371 + x372 + x391 ++ x400 + x443 + x445 + x446 + x447 + x448 + x461 + x463 + x464 + x496 + <= 1 + +x22 + x25 + x28 + x36 + x37 + x52 + x53 + x54 + x83 + x92 ++ x93 + x94 + x95 + x98 + x99 + x100 + x101 + x103 + x104 + x105 ++ x106 + x108 + x114 + x115 + x117 + x118 + x153 + x159 + x175 + x181 ++ x182 + x183 + x184 + x195 + x198 + x214 + x243 + x246 + x247 + x267 ++ x268 + x270 + x271 + x272 + x288 + x306 + x307 + x308 + x309 + x312 ++ x313 + x315 + x316 + x319 + x321 + x326 + x328 + x331 + x332 + x334 ++ x335 + x336 + x337 + x341 + x355 + x356 + x357 + x358 + x360 + x365 ++ x367 + x369 + x386 + x389 + x390 + x391 + x427 + x429 + x432 + x443 ++ x444 + x458 + x460 + x461 + x463 + x464 + x467 + x492 + x493 + x496 + <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 + x28 + x31 + x36 + x37 ++ x38 + x51 + x52 + x53 + x54 + x79 + x85 + x92 + x93 + x94 ++ x96 + x98 + x99 + x101 + x102 + x103 + x104 + x105 + x106 + x114 ++ x159 + x174 + x175 + x179 + x180 + x181 + x182 + x183 + x184 + x214 ++ x243 + x244 + x258 + x268 + x270 + x271 + x272 + x273 + x284 + x286 ++ x288 + x306 + x307 + x309 + x311 + x312 + x313 + x314 + x315 + x316 ++ x319 + x321 + x328 + x331 + x332 + x333 + x334 + x335 + x336 + x341 ++ x355 + x356 + x357 + x358 + x360 + x364 + x365 + x366 + x367 + x369 ++ x386 + x387 + x389 + x427 + x428 + x429 + x431 + x432 + x444 + x463 ++ x464 + x467 + x488 + x489 + x494 + x495 + x496 + x497 <= 1 + +x22 + x23 + x24 + x26 + x31 + x41 + x51 + x98 + x99 + x101 ++ x102 + x103 + x104 + x105 + x107 + x115 + x117 + x156 + x159 + x160 ++ x162 + x163 + x175 + x179 + x180 + x182 + x183 + x184 + x205 + x206 ++ x243 + x244 + x270 + x271 + x272 + x273 + x286 + x288 + x289 + x307 ++ x309 + x311 + x312 + x313 + x314 + x315 + x316 + x317 + x319 + x321 ++ x323 + x332 + x333 + x334 + x335 + x336 + x341 + x355 + x356 + x357 ++ x358 + x359 + x360 + x364 + x365 + x366 + x367 + x368 + x369 + x386 ++ x387 + x389 + x390 + x427 + x428 + x431 + x432 + x488 + x489 + x494 ++ x498 + x499 <= 1 + +x6 + x21 + x23 + x24 + x26 + x27 + x41 + x93 + x98 + x99 ++ x101 + x102 + x104 + x105 + x106 + x116 + x156 + x157 + x160 + x179 ++ x180 + x181 + x182 + x183 + x184 + x189 + x204 + x205 + x206 + x207 ++ x208 + x218 + x270 + x271 + x272 + x273 + x288 + x289 + x307 + x309 ++ x311 + x312 + x313 + x317 + x320 + x321 + x323 + x328 + x335 + x364 ++ x365 + x366 + x367 + x369 + x387 + x389 + x428 + x429 + x430 + x431 ++ x432 + x463 + x489 + x494 + x497 + x498 <= 1 + +x34 + x35 + x39 + x45 + x46 + x47 + x49 + x50 + x73 + x74 ++ x76 + x97 + x100 + x120 + x125 + x139 + x152 + x179 + x180 + x216 ++ x218 + x222 + x225 + x226 + x233 + x234 + x235 + x242 + x262 + x266 ++ x267 + x274 + x276 + x277 + x278 + x279 + x297 + x298 + x299 + x341 ++ x402 + x404 + x405 + x406 + x407 + x408 + x409 + x433 + x436 + x437 ++ x449 + x451 + x452 + x453 + x454 + x462 + x476 + x480 <= 1 + +x33 + x34 + x35 + x39 + x45 + x47 + x49 + x50 + x56 + x74 ++ x101 + x103 + x104 + x106 + x107 + x108 + x124 + x125 + x135 + x150 ++ x151 + x152 + x179 + x180 + x186 + x188 + x216 + x220 + x231 + x233 ++ x234 + x235 + x242 + x243 + x245 + x246 + x247 + x262 + x266 + x267 ++ x268 + x274 + x275 + x276 + x277 + x278 + x279 + x297 + x299 + x371 ++ x374 + x375 + x388 + x398 + x402 + x403 + x404 + x405 + x406 + x407 ++ x408 + x409 + x433 + x435 + x436 + x449 + x451 + x452 + x453 + x462 ++ x479 + x480 + x481 + x486 <= 1 + +x23 + x33 + x34 + x35 + x39 + x45 + x46 + x47 + x48 + x49 ++ x50 + x56 + x95 + x97 + x98 + x100 + x101 + x102 + x103 + x104 ++ x105 + x106 + x107 + x108 + x124 + x150 + x151 + x152 + x186 + x188 ++ x190 + x216 + x217 + x220 + x242 + x243 + x244 + x245 + x246 + x247 ++ x267 + x269 + x274 + x275 + x276 + x277 + x278 + x279 + x280 + x295 ++ x296 + x297 + x299 + x371 + x374 + x375 + x388 + x390 + x398 + x402 ++ x404 + x405 + x406 + x407 + x408 + x409 + x433 + x435 + x436 + x438 ++ x446 + x449 + x450 + x451 + x462 + x465 + x466 + x467 + x476 + x477 ++ x480 + x481 <= 1 + +x23 + x27 + x28 + x29 + x30 + x32 + x33 + x39 + x45 + x46 ++ x50 + x56 + x97 + x98 + x99 + x100 + x101 + x102 + x103 + x104 ++ x105 + x106 + x107 + x108 + x149 + x186 + x187 + x190 + x217 + x220 ++ x221 + x225 + x232 + x242 + x244 + x245 + x247 + x260 + x274 + x275 ++ x276 + x278 + x295 + x296 + x297 + x318 + x327 + x359 + x370 + x371 ++ x372 + x373 + x374 + x375 + x377 + x388 + x390 + x401 + x406 + x407 ++ x408 + x409 + x433 + x434 + x435 + x436 + x437 + x438 + x443 + x450 ++ x462 + x465 + x467 + x478 + x480 + x485 <= 1 + +x29 + x30 + x31 + x32 + x33 + x39 + x45 + x50 + x52 + x56 ++ x87 + x95 + x96 + x97 + x98 + x99 + x100 + x101 + x102 + x103 ++ x104 + x105 + x106 + x107 + x149 + x153 + x154 + x176 + x181 + x183 ++ x184 + x187 + x190 + x191 + x244 + x245 + x247 + x271 + x274 + x276 ++ x284 + x289 + x308 + x322 + x359 + x364 + x365 + x367 + x370 + x371 ++ x378 + x388 + x390 + x404 + x406 + x407 + x408 + x409 + x443 + x447 ++ x448 + x490 + x491 + x492 <= 1 + +x39 + x51 + x52 + x53 + x54 + x56 + x84 + x86 + x87 + x88 ++ x89 + x97 + x98 + x99 + x100 + x102 + x103 + x104 + x105 + x106 ++ x107 + x115 + x116 + x153 + x176 + x181 + x183 + x209 + x214 + x219 ++ x224 + x244 + x261 + x272 + x284 + x289 + x308 + x320 + x321 + x322 ++ x327 + x331 + x335 + x341 + x357 + x358 + x364 + x365 + x367 + x370 ++ x371 + x390 + x391 + x406 + x408 + x444 + x463 + x467 + x488 + x489 ++ x491 + x492 + x493 + x496 <= 1 + +x22 + x23 + x25 + x26 + x28 + x29 + x30 + x31 + x32 + x51 ++ x52 + x53 + x54 + x56 + x83 + x84 + x86 + x89 + x99 + x102 ++ x103 + x104 + x105 + x106 + x107 + x114 + x115 + x116 + x117 + x118 ++ x119 + x153 + x162 + x163 + x166 + x174 + x176 + x178 + x179 + x180 ++ x181 + x182 + x183 + x198 + x209 + x243 + x244 + x245 + x247 + x261 ++ x268 + x270 + x271 + x272 + x284 + x286 + x288 + x289 + x306 + x308 ++ x314 + x315 + x316 + x321 + x322 + x326 + x327 + x328 + x331 + x335 ++ x341 + x344 + x355 + x356 + x357 + x358 + x360 + x365 + x366 + x367 ++ x369 + x371 + x391 + x406 + x408 + x427 + x428 + x429 + x430 + x444 ++ x463 + x464 + x467 + x488 + x492 + x493 + x495 + x496 <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 + x28 + x29 + x35 + x37 ++ x38 + x51 + x52 + x53 + x54 + x56 + x84 + x85 + x92 + x96 ++ x98 + x99 + x101 + x102 + x103 + x104 + x105 + x106 + x107 + x114 ++ x115 + x116 + x118 + x119 + x154 + x159 + x162 + x163 + x165 + x166 ++ x173 + x174 + x175 + x179 + x180 + x181 + x182 + x183 + x184 + x206 ++ x209 + x243 + x244 + x247 + x250 + x258 + x268 + x270 + x271 + x272 ++ x284 + x286 + x288 + x289 + x306 + x307 + x309 + x312 + x313 + x314 ++ x316 + x318 + x321 + x322 + x328 + x331 + x332 + x333 + x334 + x335 ++ x336 + x341 + x355 + x356 + x357 + x360 + x364 + x365 + x366 + x367 ++ x369 + x427 + x428 + x429 + x432 + x463 + x467 + x488 + x492 + x493 ++ x494 + x495 <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 + x28 + x31 + x41 + x51 ++ x52 + x53 + x85 + x92 + x98 + x99 + x101 + x102 + x103 + x104 ++ x105 + x106 + x107 + x114 + x115 + x116 + x118 + x119 + x155 + x156 ++ x157 + x159 + x162 + x163 + x175 + x181 + x182 + x184 + x188 + x204 ++ x206 + x243 + x244 + x270 + x272 + x273 + x287 + x288 + x289 + x306 ++ x311 + x317 + x321 + x322 + x332 + x333 + x334 + x335 + x336 + x341 ++ x355 + x356 + x357 + x359 + x360 + x364 + x365 + x366 + x367 + x387 ++ x389 + x390 + x391 + x418 + x428 + x429 + x431 + x467 + x489 + x498 ++ x499 <= 1 + +x23 + x24 + x25 + x26 + x27 + x28 + x30 + x31 + x32 + x40 ++ x41 + x51 + x52 + x53 + x90 + x101 + x102 + x103 + x104 + x106 ++ x107 + x114 + x116 + x119 + x155 + x156 + x157 + x159 + x160 + x165 ++ x187 + x188 + x189 + x204 + x205 + x206 + x207 + x208 + x243 + x244 ++ x270 + x271 + x272 + x273 + x284 + x287 + x289 + x311 + x312 + x313 ++ x317 + x333 + x336 + x355 + x356 + x357 + x359 + x364 + x365 + x367 ++ x369 + x387 + x389 + x390 + x428 + x429 + x430 + x492 + x499 <= 1 + +x35 + x39 + x45 + x47 + x49 + x50 + x73 + x74 + x76 + x103 ++ x107 + x108 + x111 + x120 + x124 + x125 + x150 + x151 + x152 + x179 ++ x216 + x218 + x220 + x231 + x232 + x233 + x235 + x242 + x243 + x245 ++ x246 + x247 + x262 + x266 + x267 + x274 + x275 + x276 + x277 + x278 ++ x279 + x294 + x296 + x297 + x298 + x299 + x375 + x388 + x403 + x404 ++ x409 + x433 + x435 + x436 + x437 + x449 + x451 + x452 + x453 + x454 ++ x476 + x483 + x486 <= 1 + +x12 + x29 + x33 + x45 + x47 + x49 + x50 + x73 + x74 + x75 ++ x94 + x97 + x98 + x99 + x100 + x101 + x103 + x104 + x107 + x108 ++ x149 + x150 + x151 + x152 + x179 + x180 + x216 + x217 + x218 + x220 ++ x221 + x232 + x233 + x235 + x245 + x247 + x262 + x266 + x267 + x277 ++ x294 + x298 + x299 + x375 + x407 + x409 + x451 + x452 + x453 + x462 ++ x481 + x482 + x483 + x485 + x486 <= 1 + +x23 + x26 + x29 + x32 + x33 + x34 + x35 + x38 + x39 + x49 ++ x50 + x97 + x98 + x99 + x100 + x101 + x102 + x103 + x104 + x105 ++ x107 + x108 + x179 + x186 + x188 + x190 + x216 + x217 + x218 + x220 ++ x221 + x231 + x232 + x235 + x236 + x242 + x245 + x247 + x260 + x266 ++ x267 + x269 + x274 + x278 + x294 + x295 + x296 + x297 + x298 + x299 ++ x318 + x370 + x371 + x372 + x374 + x375 + x402 + x405 + x407 + x408 ++ x409 + x433 + x435 + x436 + x438 + x449 + x450 + x451 + x452 + x462 ++ x465 + x466 + x476 + x477 + x478 + x481 + x482 + x484 + x485 + x486 + <= 1 + +x23 + x26 + x27 + x29 + x33 + x38 + x39 + x49 + x56 + x95 ++ x97 + x98 + x99 + x100 + x101 + x102 + x103 + x107 + x149 + x153 ++ x217 + x220 + x221 + x232 + x260 + x278 + x284 + x318 + x359 + x372 ++ x375 + x377 + x390 + x401 + x402 + x406 + x407 + x408 + x409 + x433 ++ x435 + x436 + x437 + x438 + x462 + x465 + x467 + x478 + x481 + x485 ++ x487 <= 1 + +x26 + x30 + x31 + x32 + x33 + x95 + x96 + x97 + x98 + x100 ++ x101 + x102 + x103 + x104 + x105 + x106 + x108 + x149 + x153 + x154 ++ x180 + x190 + x191 + x221 + x224 + x231 + x244 + x245 + x251 + x260 ++ x284 + x287 + x289 + x316 + x348 + x359 + x372 + x375 + x376 + x377 ++ x378 + x379 + x390 + x406 + x408 + x433 + x436 + x438 + x443 + x448 ++ x465 + x466 + x467 + x483 + x484 + x487 <= 1 + +x13 + x14 + x29 + x30 + x31 + x32 + x33 + x84 + x87 + x88 ++ x89 + x97 + x98 + x99 + x102 + x103 + x104 + x105 + x106 + x107 ++ x108 + x115 + x119 + x149 + x153 + x154 + x176 + x177 + x180 + x181 ++ x183 + x190 + x191 + x224 + x244 + x245 + x259 + x276 + x284 + x288 ++ x289 + x308 + x315 + x316 + x319 + x321 + x322 + x327 + x344 + x348 ++ x360 + x364 + x375 + x376 + x378 + x386 + x390 + x406 + x408 + x428 ++ x433 + x436 + x438 + x463 + x465 + x466 + x467 + x484 + x487 + x488 ++ x489 + x490 + x491 + x492 + x493 <= 1 + +x14 + x22 + x23 + x24 + x25 + x27 + x28 + x29 + x30 + x31 ++ x32 + x33 + x43 + x48 + x53 + x56 + x84 + x86 + x87 + x88 ++ x89 + x96 + x97 + x99 + x101 + x102 + x104 + x105 + x106 + x107 ++ x116 + x119 + x135 + x153 + x154 + x163 + x171 + x172 + x173 + x176 ++ x178 + x179 + x180 + x182 + x183 + x187 + x188 + x189 + x190 + x191 ++ x209 + x223 + x243 + x244 + x245 + x247 + x256 + x257 + x259 + x261 ++ x268 + x269 + x271 + x272 + x273 + x284 + x285 + x289 + x298 + x308 ++ x312 + x314 + x315 + x316 + x319 + x321 + x322 + x331 + x343 + x344 ++ x360 + x366 + x367 + x369 + x375 + x406 + x408 + x427 + x428 + x429 ++ x430 + x438 + x463 + x465 + x466 + x467 + x488 + x489 + x490 + x491 ++ x492 + x493 + x495 <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 + x28 + x29 + x30 + x31 ++ x32 + x33 + x43 + x52 + x85 + x86 + x91 + x92 + x96 + x101 ++ x102 + x103 + x104 + x105 + x106 + x107 + x118 + x119 + x136 + x151 ++ x154 + x161 + x162 + x163 + x165 + x166 + x167 + x171 + x172 + x173 ++ x174 + x176 + x177 + x178 + x182 + x187 + x188 + x191 + x203 + x205 ++ x209 + x222 + x223 + x244 + x245 + x250 + x257 + x259 + x270 + x272 ++ x284 + x286 + x287 + x288 + x289 + x312 + x313 + x314 + x316 + x318 ++ x319 + x322 + x331 + x333 + x336 + x344 + x360 + x365 + x367 + x369 ++ x427 + x429 + x430 + x432 + x438 + x467 + x488 + x489 + x490 + x491 ++ x493 + x495 <= 1 + +x22 + x23 + x24 + x26 + x27 + x30 + x32 + x40 + x42 + x44 ++ x92 + x96 + x99 + x104 + x105 + x106 + x107 + x119 + x136 + x154 ++ x155 + x156 + x157 + x159 + x160 + x161 + x162 + x165 + x166 + x167 ++ x170 + x171 + x172 + x173 + x174 + x178 + x187 + x188 + x189 + x191 ++ x205 + x208 + x209 + x244 + x257 + x268 + x270 + x273 + x312 + x313 ++ x314 + x316 + x319 + x322 + x356 + x365 + x367 + x369 + x434 + x436 ++ x438 + x440 + x441 + x488 + x489 + x491 + x493 <= 1 + +x22 + x23 + x25 + x26 + x27 + x28 + x30 + x31 + x32 + x40 ++ x41 + x42 + x44 + x51 + x53 + x92 + x96 + x99 + x103 + x104 ++ x105 + x106 + x107 + x114 + x127 + x136 + x155 + x156 + x157 + x159 ++ x160 + x161 + x165 + x166 + x174 + x186 + x187 + x188 + x189 + x191 ++ x204 + x205 + x206 + x208 + x209 + x241 + x269 + x270 + x271 + x272 ++ x273 + x284 + x285 + x286 + x287 + x288 + x289 + x313 + x314 + x318 ++ x319 + x322 + x356 + x365 + x380 + x381 + x389 + x428 + x430 + x441 ++ x493 + x499 <= 1 + +x97 + x100 + x102 + x103 + x107 + x108 + x109 + x111 + x112 + x120 ++ x149 + x151 + x152 + x179 + x216 + x221 + x231 + x232 + x233 + x235 ++ x242 + x245 + x247 + x286 + x294 + x296 + x297 + x298 + x375 + x403 ++ x409 + x427 + x453 + x481 + x492 <= 1 + +x27 + x59 + x73 + x75 + x97 + x100 + x101 + x102 + x108 + x112 ++ x149 + x150 + x151 + x152 + x179 + x180 + x216 + x218 + x221 + x232 ++ x235 + x245 + x247 + x277 + x294 + x296 + x297 + x298 + x299 + x359 ++ x403 + x404 + x407 + x408 + x409 + x436 + x452 + x465 + x466 + x482 ++ x483 + x484 + x485 + x486 <= 1 + +x26 + x27 + x29 + x31 + x32 + x33 + x39 + x48 + x75 + x97 ++ x101 + x102 + x103 + x108 + x113 + x149 + x150 + x152 + x154 + x179 ++ x186 + x190 + x218 + x220 + x221 + x231 + x236 + x245 + x247 + x277 ++ x284 + x294 + x296 + x299 + x318 + x359 + x374 + x375 + x386 + x404 ++ x408 + x409 + x433 + x435 + x436 + x438 + x462 + x465 + x466 + x474 ++ x475 + x482 + x483 + x484 + x485 + x486 + x487 <= 1 + +x26 + x27 + x30 + x31 + x32 + x33 + x48 + x63 + x97 + x98 ++ x99 + x100 + x101 + x102 + x103 + x105 + x107 + x108 + x110 + x149 ++ x150 + x152 + x153 + x154 + x177 + x180 + x190 + x221 + x278 + x284 ++ x286 + x288 + x348 + x372 + x375 + x386 + x390 + x401 + x406 + x408 ++ x433 + x435 + x436 + x437 + x438 + x465 + x466 + x467 + x475 + x482 ++ x483 + x484 + x485 + x486 + x487 + x490 <= 1 + +x13 + x14 + x15 + x17 + x27 + x28 + x29 + x30 + x31 + x32 ++ x33 + x48 + x97 + x98 + x99 + x100 + x101 + x102 + x103 + x104 ++ x105 + x106 + x107 + x108 + x109 + x110 + x149 + x153 + x154 + x177 ++ x180 + x224 + x227 + x231 + x236 + x245 + x249 + x260 + x284 + x286 ++ x287 + x288 + x289 + x316 + x319 + x322 + x332 + x376 + x379 + x386 ++ x390 + x406 + x465 + x466 + x467 + x473 + x482 + x484 + x485 + x487 ++ x490 + x491 + x492 + x493 <= 1 + +x13 + x14 + x15 + x17 + x27 + x28 + x29 + x30 + x31 + x32 ++ x33 + x48 + x56 + x84 + x86 + x87 + x88 + x89 + x92 + x96 ++ x97 + x99 + x102 + x103 + x105 + x106 + x107 + x108 + x135 + x153 ++ x173 + x176 + x177 + x178 + x180 + x183 + x189 + x190 + x191 + x222 ++ x223 + x224 + x227 + x234 + x244 + x245 + x249 + x259 + x268 + x269 ++ x270 + x271 + x273 + x284 + x285 + x286 + x287 + x288 + x289 + x315 ++ x316 + x318 + x319 + x321 + x322 + x343 + x344 + x345 + x346 + x348 ++ x360 + x369 + x386 + x406 + x408 + x438 + x465 + x466 + x488 + x489 ++ x490 + x491 + x492 + x493 <= 1 + +x22 + x28 + x29 + x30 + x31 + x32 + x33 + x56 + x84 + x86 ++ x88 + x89 + x92 + x96 + x102 + x103 + x104 + x105 + x106 + x107 ++ x154 + x162 + x163 + x165 + x166 + x169 + x171 + x173 + x177 + x178 ++ x180 + x191 + x222 + x227 + x244 + x256 + x257 + x259 + x261 + x273 ++ x284 + x285 + x286 + x288 + x289 + x314 + x315 + x316 + x318 + x319 ++ x321 + x322 + x333 + x343 + x344 + x346 + x360 + x370 + x375 + x386 ++ x427 + x429 + x430 + x462 + x488 + x489 + x490 + x491 + x492 + x493 + <= 1 + +x17 + x22 + x23 + x24 + x26 + x27 + x28 + x29 + x30 + x31 ++ x32 + x43 + x56 + x91 + x92 + x96 + x99 + x101 + x102 + x103 ++ x104 + x105 + x106 + x107 + x108 + x133 + x137 + x155 + x161 + x162 ++ x165 + x166 + x167 + x168 + x169 + x170 + x171 + x172 + x180 + x187 ++ x188 + x189 + x191 + x205 + x208 + x209 + x222 + x223 + x227 + x244 ++ x248 + x250 + x257 + x259 + x270 + x273 + x284 + x285 + x286 + x287 ++ x288 + x289 + x312 + x314 + x318 + x319 + x322 + x324 + x333 + x336 ++ x346 + x347 + x370 + x386 + x429 + x430 + x438 + x488 + x489 + x491 ++ x493 <= 1 + +x22 + x23 + x26 + x27 + x28 + x29 + x30 + x31 + x32 + x40 ++ x42 + x43 + x44 + x53 + x91 + x92 + x96 + x102 + x103 + x104 ++ x105 + x106 + x107 + x108 + x127 + x137 + x155 + x157 + x159 + x160 ++ x161 + x165 + x166 + x167 + x168 + x169 + x170 + x180 + x186 + x187 ++ x188 + x189 + x191 + x204 + x205 + x208 + x209 + x239 + x244 + x257 ++ x259 + x268 + x270 + x273 + x284 + x285 + x286 + x287 + x288 + x289 ++ x314 + x318 + x319 + x322 + x370 + x371 + x372 + x380 + x429 + x430 ++ x434 + x436 + x438 + x440 + x441 + x488 + x489 + x491 <= 1 + +x23 + x26 + x27 + x28 + x30 + x31 + x32 + x42 + x44 + x53 ++ x92 + x96 + x103 + x104 + x105 + x106 + x107 + x108 + x127 + x155 ++ x157 + x158 + x159 + x167 + x169 + x180 + x194 + x204 + x205 + x206 ++ x208 + x209 + x239 + x257 + x269 + x270 + x273 + x284 + x285 + x286 ++ x287 + x288 + x289 + x313 + x314 + x318 + x347 + x356 + x381 + x430 ++ x434 + x436 + x438 <= 1 + +x75 + x97 + x101 + x103 + x107 + x109 + x111 + x112 + x113 + x120 ++ x179 + x217 + x242 + x245 + x247 + x288 + x294 + x296 + x297 + x375 ++ x403 + x409 + x427 + x435 + x453 + x465 + x466 + x467 + x482 + x486 + <= 1 + +x33 + x75 + x97 + x100 + x101 + x102 + x107 + x108 + x109 + x111 ++ x112 + x113 + x179 + x180 + x221 + x236 + x242 + x245 + x247 + x269 ++ x288 + x294 + x296 + x297 + x298 + x303 + x404 + x409 + x433 + x435 ++ x436 + x465 + x466 + x467 + x474 + x482 + x483 + x484 + x485 + x486 + <= 1 + +x30 + x31 + x33 + x97 + x100 + x101 + x102 + x103 + x107 + x108 ++ x113 + x134 + x150 + x236 + x245 + x247 + x269 + x284 + x294 + x296 ++ x298 + x359 + x375 + x404 + x408 + x433 + x435 + x436 + x465 + x466 ++ x474 + x475 + x482 + x483 + x484 <= 1 + +x26 + x27 + x29 + x30 + x31 + x32 + x33 + x97 + x99 + x100 ++ x101 + x102 + x103 + x107 + x108 + x110 + x134 + x149 + x152 + x154 ++ x220 + x221 + x231 + x236 + x245 + x260 + x269 + x284 + x294 + x359 ++ x372 + x375 + x379 + x386 + x406 + x408 + x438 + x465 + x466 + x482 ++ x483 + x484 + x485 + x486 + x487 + x488 + x490 + x491 <= 1 + +x26 + x27 + x30 + x31 + x32 + x33 + x37 + x87 + x92 + x97 ++ x98 + x99 + x100 + x101 + x102 + x103 + x105 + x107 + x108 + x110 ++ x133 + x134 + x149 + x153 + x154 + x180 + x231 + x236 + x240 + x268 ++ x269 + x287 + x288 + x294 + x319 + x322 + x372 + x375 + x406 + x433 ++ x436 + x438 + x465 + x466 + x482 + x487 + x488 + x490 + x491 + x492 ++ x493 <= 1 + +x16 + x26 + x27 + x29 + x30 + x31 + x32 + x33 + x37 + x86 ++ x87 + x88 + x92 + x99 + x101 + x102 + x103 + x105 + x106 + x107 ++ x108 + x133 + x134 + x135 + x173 + x177 + x180 + x189 + x234 + x240 ++ x244 + x245 + x248 + x249 + x251 + x268 + x269 + x270 + x284 + x285 ++ x287 + x288 + x289 + x315 + x318 + x319 + x321 + x322 + x343 + x345 ++ x370 + x375 + x386 + x406 + x408 + x433 + x438 + x462 + x465 + x466 ++ x486 + x488 + x489 + x490 + x491 + x492 + x493 <= 1 + +x13 + x16 + x17 + x22 + x23 + x24 + x26 + x27 + x28 + x29 ++ x30 + x31 + x32 + x88 + x92 + x96 + x99 + x101 + x102 + x103 ++ x104 + x105 + x106 + x108 + x133 + x136 + x137 + x178 + x180 + x183 ++ x187 + x188 + x189 + x191 + x223 + x227 + x237 + x240 + x244 + x248 ++ x251 + x259 + x268 + x269 + x270 + x273 + x284 + x285 + x286 + x287 ++ x288 + x289 + x318 + x319 + x321 + x322 + x343 + x345 + x346 + x347 ++ x348 + x370 + x371 + x386 + x408 + x430 + x433 + x438 + x462 + x488 ++ x489 + x490 + x491 + x493 <= 1 + +x16 + x22 + x26 + x27 + x28 + x29 + x30 + x31 + x32 + x54 ++ x96 + x102 + x103 + x104 + x105 + x106 + x107 + x108 + x127 + x137 ++ x155 + x157 + x158 + x160 + x161 + x162 + x165 + x166 + x168 + x169 ++ x170 + x180 + x186 + x187 + x188 + x189 + x191 + x204 + x205 + x206 ++ x208 + x209 + x223 + x227 + x237 + x238 + x257 + x259 + x268 + x269 ++ x270 + x273 + x284 + x285 + x286 + x287 + x288 + x289 + x314 + x318 ++ x319 + x320 + x322 + x343 + x345 + x346 + x347 + x348 + x371 + x372 ++ x373 + x429 + x430 + x433 + x438 + x488 + x489 + x490 + x491 <= 1 + +x11 + x16 + x22 + x23 + x26 + x27 + x28 + x29 + x30 + x31 ++ x32 + x40 + x42 + x53 + x56 + x92 + x96 + x102 + x103 + x104 ++ x105 + x106 + x107 + x108 + x127 + x155 + x157 + x158 + x160 + x170 ++ x180 + x186 + x187 + x188 + x189 + x191 + x204 + x205 + x206 + x208 ++ x209 + x237 + x238 + x239 + x257 + x269 + x270 + x273 + x284 + x285 ++ x286 + x287 + x288 + x289 + x314 + x318 + x319 + x320 + x346 + x347 ++ x356 + x371 + x372 + x429 + x430 + x434 + x436 + x438 + x489 + x490 ++ x491 <= 1 + +x22 + x23 + x28 + x30 + x31 + x53 + x96 + x98 + x102 + x106 ++ x107 + x155 + x157 + x158 + x180 + x187 + x189 + x191 + x204 + x205 ++ x208 + x209 + x238 + x269 + x270 + x273 + x285 + x287 + x288 + x289 ++ x313 + x314 + x318 + x319 + x320 + x321 + x347 + x372 + x429 + x430 ++ x434 + x436 + x438 + x489 + x490 + x491 <= 1 + +x0 + x1 + x2 + x3 + x4 <= 1 + +x5 + x6 + x7 + x8 + x9 + x10 <= 1 + +x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 + x38 + x39 <= 1 + +x40 + x41 + x42 + x43 + x44 <= 1 + +x45 + x46 + x47 + x48 + x49 + x50 <= 1 + +x51 + x52 + x53 + x54 + x55 + x56 <= 1 + +x57 + x58 + x59 + x60 + x61 + x62 <= 1 + +x64 + x65 + x66 <= 1 + +x67 + x68 + x69 + x70 + x71 + x72 <= 1 + +x73 + x74 + x75 <= 1 + +x78 + x79 + x80 + x81 + x82 + x83 <= 1 + +x84 + x85 + x86 + x87 + x88 + x89 <= 1 + +x91 + x92 + x93 + x94 + x95 + x96 <= 1 + +x97 + x98 + x99 + x100 + x101 + x102 <= 1 + +x103 + x104 + x105 + x106 + x107 + x108 <= 1 + +x109 + x110 + x111 + x112 + x113 <= 1 + +x114 + x115 + x116 + x117 + x118 + x119 <= 1 + +x120 + x121 + x122 + x123 + x124 + x125 <= 1 + +x126 + x127 + x128 + x129 + x130 + x131 <= 1 + +x133 + x134 + x135 + x136 + x137 <= 1 + +x138 + x139 + x140 + x141 + x142 + x143 <= 1 + +x144 + x145 + x146 + x147 + x148 <= 1 + +x149 + x150 + x151 + x152 + x153 + x154 <= 1 + +x155 + x156 + x157 + x158 + x159 + x160 <= 1 + +x161 + x162 + x163 + x164 + x165 + x166 <= 1 + +x167 + x168 + x169 + x170 + x171 + x172 <= 1 + +x173 + x174 + x175 + x176 + x177 + x178 <= 1 + +x179 + x180 + x181 + x182 + x183 + x184 <= 1 + +x186 + x187 + x188 + x189 + x190 + x191 <= 1 + +x195 + x196 + x197 + x198 <= 1 + +x199 + x200 + x201 + x202 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 + x221 <= 1 + +x222 + x223 + x224 + x225 + x226 + x227 <= 1 + +x228 + x229 + x230 <= 1 + +x231 + x232 + x233 + x234 + x235 + x236 <= 1 + +x237 + x238 + x239 + x240 <= 1 + +x242 + x243 + x244 + x245 + x246 + x247 <= 1 + +x248 + x249 + x250 + x251 <= 1 + +x252 + x253 + x254 + x255 <= 1 + +x256 + x257 + x258 + x259 + x260 + x261 <= 1 + +x262 + x263 + x264 + x265 + x266 + x267 <= 1 + +x268 + x269 + x270 + x271 + x272 + x273 <= 1 + +x274 + x275 + x276 + x277 + x278 + x279 <= 1 + +x281 + x282 + x283 <= 1 + +x284 + x285 + x286 + x287 + x288 + x289 <= 1 + +x290 + x291 + x292 + x293 <= 1 + +x294 + x295 + x296 + x297 + x298 + x299 <= 1 + +x300 + x301 + x302 + x303 + x304 + x305 <= 1 + +x306 + x307 + x308 + x309 + x310 + x311 <= 1 + +x312 + x313 + x314 + x315 + x316 + x317 <= 1 + +x318 + x319 + x320 + x321 + x322 + x323 <= 1 + +x325 + x326 + x327 + x328 + x329 + x330 <= 1 + +x331 + x332 + x333 + x334 + x335 + x336 <= 1 + +x337 + x338 + x339 + x340 + x341 + x342 <= 1 + +x343 + x344 + x345 + x346 + x347 + x348 <= 1 + +x349 + x350 + x351 + x352 + x353 + x354 <= 1 + +x355 + x356 + x357 + x358 + x359 + x360 <= 1 + +x361 + x362 + x363 <= 1 + +x364 + x365 + x366 + x367 + x368 + x369 <= 1 + +x370 + x371 + x372 + x373 + x374 + x375 <= 1 + +x376 + x377 + x378 + x379 <= 1 + +x380 + x381 <= 1 + +x382 + x383 + x384 + x385 <= 1 + +x386 + x387 + x388 + x389 + x390 + x391 <= 1 + +x392 + x393 + x394 + x395 + x396 + x397 <= 1 + +x398 + x399 + x400 + x401 + x402 + x403 <= 1 + +x404 + x405 + x406 + x407 + x408 + x409 <= 1 + +x410 + x411 + x412 <= 1 + +x413 + x414 + x415 + x416 + x417 <= 1 + +x419 + x420 + x421 + x422 + x423 <= 1 + +x424 + x425 + x426 <= 1 + +x427 + x428 + x429 + x430 + x431 + x432 <= 1 + +x433 + x434 + x435 + x436 + x437 + x438 <= 1 + +x440 + x441 + x442 <= 1 + +x443 + x444 + x445 + x446 + x447 + x448 <= 1 + +x449 + x450 + x451 + x452 + x453 + x454 <= 1 + +x455 + x456 + x457 <= 1 + +x458 + x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 <= 1 + +x476 + x477 + x478 + x479 + x480 + x481 <= 1 + +x482 + x483 + x484 + x485 + x486 + x487 <= 1 + +x488 + x489 + x490 + x491 + x492 + x493 <= 1 + +x494 + x495 + x496 + x497 + x498 + x499 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 + + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0008.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0008.lp new file mode 100755 index 000000000..820006911 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0008.lp @@ -0,0 +1,1131 @@ +max + +141.857x0 + 191.688x1 + 140.667x2 + 878.291x3 + 997.441x4 + 876.085x5 + 831.68x6 + 828.289x7 + 794.817x8 + 848.324x9 + +1123.89x10 + 1004.47x11 + 935.546x12 + 902.128x13 + 878.459x14 + 1020.62x15 + 1083.04x16 + 1077.03x17 + 1004.37x18 + 976.047x19 + +967.183x20 + 237.195x21 + 343.696x22 + 278.168x23 + 253.939x24 + 212.178x25 + 197.627x26 + 707.272x27 + 763.75x28 + 744.407x29 + +681.42x30 + 676.89x31 + 652.917x32 + 743.968x33 + 1103.94x34 + 1011.62x35 + 980.7x36 + 980.095x37 + 978.536x38 + 34.1691x39 + +846.981x40 + 1055.09x41 + 1044.95x42 + 1020.71x43 + 1015.8x44 + 993.699x45 + 57.2543x46 + 58.5755x47 + 50.8105x48 + 2228x49 + +2538.88x50 + 2494.82x51 + 2458.47x52 + 2440.23x53 + 2413.25x54 + 2968.25x55 + 3281.92x56 + 3248.62x57 + 3219.05x58 + 3215.59x59 + +3213.23x60 + 149.131x61 + 193.785x62 + 315.409x63 + 424.078x64 + 372.861x65 + 348.069x66 + 302.131x67 + 217.677x68 + 604.246x69 + +827.861x70 + 802.327x71 + 780.922x72 + 636.284x73 + 574.159x74 + 500.355x75 + 424.468x76 + 357.798x77 + 349.321x78 + 283.931x79 + +248.576x80 + 254.082x81 + 369.635x82 + 333.518x83 + 308.98x84 + 277.934x85 + 224.023x86 + 671.423x87 + 826.981x88 + 798.813x89 + +695.322x90 + 681.178x91 + 674.541x92 + 1330.71x93 + 1327.18x94 + 1296.11x95 + 1293.5x96 + 1291.27x97 + 1291.22x98 + 204.382x99 + +133.339x100 + 2274.84x101 + 2733.35x102 + 2530.55x103 + 2454.81x104 + 2437.71x105 + 2420.63x106 + 717.546x107 + 1052.73x108 + 984.41x109 + +983.982x110 + 951.963x111 + 941.871x112 + 956.607x113 + 1060.34x114 + 945.502x115 + 925.385x116 + 921.152x117 + 917.106x118 + 1174.75x119 + +1467.74x120 + 1465.63x121 + 1457.43x122 + 1422.2x123 + 1395.87x124 + 789.739x125 + 903.581x126 + 880.686x127 + 857.481x128 + 834.875x129 + +832.601x130 + 887.737x131 + 968.498x132 + 912.09x133 + 906.327x134 + 896.543x135 + 850.955x136 + 1227.86x137 + 1270.69x138 + 1232.39x139 + +1017.42x140 + 996.949x141 + 991.009x142 + 84.7352x143 + 228.965x144 + 341.743x145 + 288.119x146 + 244.806x147 + 131.88x148 + 1420.46x149 + +1469.31x150 + 1440.45x151 + 1409.07x152 + 1396.52x153 + 1381.47x154 + 106.365x155 + 80.2551x156 + 205.805x157 + 276.652x158 + 271.855x159 + +242.411x160 + 148.515x161 + 642.715x162 + 784.077x163 + 783.301x164 + 673.261x165 + 624.426x166 + 616.239x167 + 246.344x168 + 358.546x169 + +192.798x170 + 164.189x171 + 147.618x172 + 371.701x173 + 428.904x174 + 392.008x175 + 320.352x176 + 302.233x177 + 296.149x178 + 131.978x179 + +151.382x180 + 40.9602x181 + 56.5371x182 + 347.301x183 + 423.092x184 + 346.386x185 + 304.677x186 + 292.686x187 + 243.062x188 + 958.379x189 + +1134.99x190 + 1047.29x191 + 1014.96x192 + 1006.26x193 + 999.531x194 + 197.187x195 + 164.629x196 + 110.504x197 + 70.9167x198 + 139.901x199 + +167.908x200 + 81.5152x201 + 1470.21x202 + 2201.48x203 + 2088.68x204 + 2078.24x205 + 2060.62x206 + 2053.88x207 + 358.533x208 + 389.783x209 + +373.868x210 + 330.589x211 + 311.952x212 + 271.439x213 + 233.599x214 + 200.074x215 + 169.89x216 + 169.394x217 + 277.012x218 + 341.582x219 + +308.6x220 + 303.097x221 + 234.411x222 + 154.057x223 + 88.9698x224 + 47.3033x225 + 104.346x226 + 145.273x227 + 132.342x228 + 104.406x229 + +2263.23x230 + 2490.42x231 + 2344.48x232 + 2291.94x233 + 2287.42x234 + 2242.06x235 + 309.054x236 + 341.128x237 + 330.071x238 + 305.723x239 + +290.024x240 + 156.353x241 + 349.479x242 + 408.201x243 + 405.174x244 + 393.566x245 + 393.377x246 + 350.988x247 + 781.138x248 + 957.468x249 + +947.194x250 + 917.92x251 + 908.219x252 + 845.187x253 + 228.22x254 + 334.435x255 + 290.251x256 + 200.23x257 + 935.704x258 + 1367.22x259 + +1320.53x260 + 1222.63x261 + 1221.28x262 + 1216.31x263 + 392.761x264 + 408.545x265 + 397.307x266 + 360.393x267 + 347.068x268 + 227.65x269 + +233.657x270 + 236.402x271 + 214.709x272 + 205.716x273 + 180.746x274 + 2009.1x275 + 2141.27x276 + 2135.66x277 + 2052.66x278 + 2037.64x279 + +2009.92x280 + 179.366x281 + 162.486x282 + 310.021x283 + 433.585x284 + 429.009x285 + 418.171x286 + 402.864x287 + 373.685x288 + 1080.21x289 + +1314.78x290 + 1274.8x291 + 1255.35x292 + 1227.12x293 + 1226.92x294 + 1186.83x295 + 1634.72x296 + 1580.93x297 + 1562.64x298 + 1520.42x299 + +1512.12x300 + 1371.15x301 + 1862.83x302 + 1858.96x303 + 1828.52x304 + 1711.92x305 + 1710.05x306 + 769.127x307 + 1040.81x308 + 1022.02x309 + +906.492x310 + 899.663x311 + 854.685x312 + 238.611x313 + 353.544x314 + 333.075x315 + 330.051x316 + 314.782x317 + 275.57x318 + 662.215x319 + +831.091x320 + 784.046x321 + 753.357x322 + 682.66x323 + 565.291x324 + 348.76x325 + 514.775x326 + 415.021x327 + 399.874x328 + 336.095x329 + +317.383x330 + 238.867x331 + 349.266x332 + 316.006x333 + 314.332x334 + 266.635x335 + 264.708x336 + 288.848x337 + 395.386x338 + 382.482x339 + +353.709x340 + 352.84x341 + 337.622x342 + 77.1197x343 + 94.2112x344 + 998.443x345 + 1046.96x346 + 1026.3x347 + 1009.09x348 + 1005.81x349 + +934.568x350 + 677.321x351 + 823.231x352 + 815.102x353 + 782.013x354 + 755.484x355 + 735.291x356 + 1422.4x357 + 1767.54x358 + 1656.59x359 + +1637.57x360 + 1598.21x361 + 1550.18x362 + 270.059x363 + 341.879x364 + 334.377x365 + 319.724x366 + 254.133x367 + 971.057x368 + 967.584x369 + +932.121x370 + 897.933x371 + 877.578x372 + 871.747x373 + 129.513x374 + 137.393x375 + 132.218x376 + 310.633x377 + 374.959x378 + 359.846x379 + +343.129x380 + 324.76x381 + 323.431x382 + 402.914x383 + 571.594x384 + 488.473x385 + 482.851x386 + 436.527x387 + 391.344x388 + 998.496x389 + +1060.44x390 + 1011.88x391 + 999.936x392 + 994.471x393 + 991.94x394 + 1333.03x395 + 1951.54x396 + 1775.89x397 + 1758.78x398 + 1713.69x399 + +1699.49x400 + 98.1577x401 + 823.593x402 + 1140x403 + 1038.95x404 + 1008.25x405 + 973.537x406 + 972.39x407 + 131.331x408 + 169.352x409 + +161.927x410 + 416.128x411 + 537.394x412 + 471.82x413 + 463.94x414 + 458.306x415 + 450.968x416 + 482.518x417 + 534.695x418 + 482.287x419 + +430.897x420 + 339.611x421 + 282.459x422 + 118.294x423 + 152.219x424 + 328.673x425 + 434.386x426 + 434.044x427 + 364.554x428 + 356.978x429 + +339.609x430 + 444.991x431 + 525.991x432 + 455.231x433 + 445.854x434 + 422.807x435 + 408.724x436 + 543.802x437 + 582.572x438 + 526.581x439 + +526.548x440 + 458.804x441 + 451.305x442 + 1124.11x443 + 1370.17x444 + 1212.93x445 + 1184.1x446 + 1160.36x447 + 1134.21x448 + 253.833x449 + +331.544x450 + 312.645x451 + 231.011x452 + 198.713x453 + 855.798x454 + 1068.7x455 + 1041.09x456 + 1029.91x457 + 942.757x458 + 915.364x459 + +292.732x460 + 226.859x461 + 181.755x462 + 711.955x463 + 859.384x464 + 840.21x465 + 823.291x466 + 686.198x467 + 677.901x468 + 177.237x469 + +177.038x470 + 111.491x471 + 359.128x472 + 370.925x473 + 358.619x474 + 340.844x475 + 329.395x476 + 307.59x477 + 284.017x478 + 275.806x479 + +261.866x480 + 218.069x481 + 354.241x482 + 517.387x483 + 454.042x484 + 446.344x485 + 441.062x486 + 401.261x487 + 158.278x488 + 193.176x489 + +172.031x490 + 86.3949x491 + 51.7894x492 + 44.755x493 + 505.397x494 + 688.095x495 + 676.253x496 + 630.796x497 + 624.891x498 + 603.98x499 + + +st + +x3 + x5 + x17 + x18 + x20 + x39 + x44 + x45 + x54 + x56 ++ x57 + x59 + x60 + x76 + x89 + x92 + x99 + x101 + x102 + x103 ++ x106 + x110 + x125 + x128 + x129 + x130 + x140 + x149 + x207 + x230 ++ x231 + x234 + x235 + x260 + x262 + x263 + x275 + x313 + x314 + x316 ++ x337 + x340 + x360 + x361 + x383 + x386 + x387 + x388 + x396 + x440 ++ x442 + x444 + x446 + x448 + x454 + x458 + x495 + x497 + x498 <= 1 + +x5 + x16 + x17 + x18 + x20 + x38 + x44 + x45 + x56 + x59 ++ x60 + x76 + x78 + x89 + x92 + x99 + x101 + x102 + x103 + x106 ++ x110 + x125 + x128 + x129 + x130 + x140 + x149 + x152 + x187 + x207 ++ x230 + x231 + x233 + x234 + x313 + x314 + x316 + x337 + x340 + x341 ++ x360 + x361 + x365 + x383 + x387 + x388 + x398 + x407 + x439 + x440 ++ x441 + x442 + x445 + x446 + x448 + x454 + x458 + x463 + x471 + x494 ++ x495 + x498 <= 1 + +x5 + x17 + x44 + x56 + x57 + x59 + x78 + x80 + x91 + x92 ++ x101 + x102 + x106 + x124 + x125 + x128 + x129 + x130 + x142 + x149 ++ x152 + x165 + x207 + x230 + x231 + x234 + x235 + x260 + x262 + x313 ++ x314 + x315 + x316 + x318 + x340 + x341 + x360 + x361 + x365 + x371 ++ x383 + x385 + x387 + x391 + x397 + x407 + x411 + x437 + x439 + x440 ++ x441 + x442 + x443 + x444 + x445 + x446 + x448 + x458 + x463 + x471 ++ x494 + x496 + x498 <= 1 + +x5 + x6 + x11 + x17 + x44 + x53 + x56 + x57 + x59 + x80 ++ x87 + x89 + x91 + x92 + x93 + x101 + x102 + x103 + x104 + x106 ++ x124 + x125 + x126 + x127 + x128 + x129 + x130 + x142 + x149 + x150 ++ x151 + x155 + x165 + x189 + x204 + x207 + x230 + x231 + x232 + x234 ++ x235 + x255 + x260 + x261 + x262 + x303 + x312 + x314 + x315 + x316 ++ x317 + x338 + x339 + x340 + x341 + x342 + x346 + x350 + x361 + x365 ++ x368 + x371 + x373 + x385 + x397 + x402 + x407 + x412 + x437 + x438 ++ x439 + x440 + x442 + x443 + x445 + x446 + x458 + x463 + x464 + x469 ++ x471 + x496 <= 1 + +x11 + x34 + x36 + x38 + x53 + x54 + x56 + x57 + x59 + x91 ++ x93 + x94 + x95 + x101 + x102 + x103 + x104 + x106 + x116 + x126 ++ x127 + x129 + x130 + x149 + x150 + x151 + x154 + x155 + x156 + x162 ++ x164 + x165 + x166 + x204 + x207 + x230 + x231 + x232 + x235 + x255 ++ x262 + x299 + x308 + x312 + x316 + x341 + x345 + x346 + x349 + x354 ++ x365 + x371 + x373 + x385 + x402 + x406 + x407 + x412 + x437 + x438 ++ x440 + x444 + x445 + x446 + x447 + x454 + x458 + x464 + x467 + x468 ++ x469 + x470 + x496 <= 1 + +x33 + x34 + x35 + x36 + x38 + x53 + x56 + x57 + x59 + x93 ++ x94 + x101 + x102 + x104 + x106 + x115 + x128 + x149 + x150 + x151 ++ x152 + x153 + x154 + x162 + x163 + x164 + x165 + x166 + x203 + x204 ++ x207 + x231 + x244 + x255 + x299 + x308 + x309 + x312 + x341 + x345 ++ x346 + x349 + x354 + x371 + x397 + x438 + x443 + x444 + x445 + x446 ++ x448 + x454 + x455 + x456 + x458 + x463 + x464 + x466 + x467 + x469 ++ x470 <= 1 + +x7 + x33 + x35 + x36 + x38 + x55 + x56 + x57 + x59 + x94 ++ x96 + x97 + x101 + x102 + x104 + x106 + x115 + x149 + x150 + x152 ++ x162 + x163 + x164 + x165 + x167 + x189 + x190 + x203 + x204 + x206 ++ x231 + x232 + x308 + x309 + x328 + x330 + x346 + x349 + x397 + x423 ++ x424 + x445 + x454 + x455 + x456 + x463 + x466 + x467 <= 1 + +x7 + x33 + x35 + x36 + x38 + x52 + x55 + x56 + x57 + x93 ++ x94 + x97 + x101 + x106 + x141 + x162 + x164 + x165 + x167 + x189 ++ x190 + x203 + x204 + x206 + x230 + x232 + x233 + x254 + x257 + x280 ++ x293 + x309 + x326 + x330 + x339 + x349 + x357 + x417 + x418 + x423 ++ x424 + x445 + x455 + x456 + x461 + x464 + x465 + x466 + x467 + x489 ++ x491 <= 1 + +x7 + x33 + x35 + x36 + x37 + x40 + x55 + x56 + x57 + x60 ++ x93 + x94 + x96 + x97 + x101 + x104 + x150 + x162 + x165 + x168 ++ x169 + x170 + x171 + x190 + x230 + x233 + x257 + x293 + x305 + x306 ++ x309 + x347 + x349 + x357 + x378 + x379 + x418 + x424 + x455 + x456 ++ x464 + x465 + x488 + x489 + x491 <= 1 + +x33 + x35 + x36 + x37 + x55 + x56 + x58 + x60 + x93 + x94 ++ x95 + x96 + x97 + x104 + x150 + x168 + x170 + x171 + x188 + x230 ++ x233 + x305 + x306 + x309 + x379 + x455 + x456 + x458 + x465 + x488 ++ x489 + x490 <= 1 + +x5 + x11 + x16 + x17 + x18 + x20 + x23 + x44 + x45 + x51 ++ x54 + x56 + x59 + x75 + x76 + x92 + x100 + x101 + x102 + x103 ++ x106 + x110 + x125 + x127 + x129 + x130 + x149 + x153 + x230 + x231 ++ x232 + x233 + x234 + x258 + x260 + x262 + x263 + x275 + x337 + x340 ++ x360 + x361 + x371 + x383 + x384 + x385 + x386 + x387 + x396 + x397 ++ x398 + x439 + x444 + x446 + x448 + x450 + x454 + x458 + x494 + x495 ++ x497 + x499 <= 1 + +x3 + x5 + x11 + x16 + x17 + x18 + x20 + x44 + x45 + x49 ++ x51 + x54 + x56 + x57 + x59 + x60 + x75 + x76 + x78 + x89 ++ x91 + x92 + x99 + x100 + x101 + x102 + x103 + x106 + x110 + x125 ++ x127 + x128 + x129 + x130 + x140 + x149 + x151 + x153 + x187 + x203 ++ x207 + x223 + x230 + x231 + x233 + x234 + x235 + x259 + x260 + x262 ++ x263 + x275 + x299 + x310 + x313 + x316 + x317 + x318 + x337 + x340 ++ x342 + x359 + x360 + x361 + x371 + x373 + x383 + x384 + x385 + x386 ++ x387 + x391 + x396 + x398 + x415 + x416 + x439 + x441 + x442 + x443 ++ x444 + x446 + x448 + x450 + x454 + x458 + x463 + x494 + x495 + x496 ++ x498 <= 1 + +x5 + x10 + x11 + x18 + x44 + x45 + x51 + x53 + x55 + x56 ++ x57 + x59 + x75 + x76 + x78 + x80 + x87 + x88 + x89 + x91 ++ x92 + x101 + x102 + x103 + x106 + x124 + x125 + x127 + x128 + x130 ++ x149 + x151 + x152 + x186 + x223 + x230 + x231 + x232 + x234 + x235 ++ x250 + x259 + x260 + x261 + x262 + x263 + x275 + x282 + x299 + x310 ++ x312 + x313 + x317 + x318 + x337 + x342 + x355 + x359 + x360 + x368 ++ x369 + x371 + x383 + x385 + x387 + x391 + x398 + x407 + x412 + x416 ++ x437 + x439 + x441 + x442 + x443 + x444 + x445 + x446 + x447 + x448 ++ x449 + x452 + x454 + x458 + x494 + x495 + x496 + x497 + x498 <= 1 + +x2 + x5 + x6 + x9 + x10 + x11 + x16 + x17 + x24 + x33 ++ x38 + x44 + x45 + x53 + x54 + x55 + x56 + x57 + x58 + x59 ++ x79 + x80 + x87 + x88 + x89 + x91 + x92 + x93 + x101 + x102 ++ x103 + x104 + x106 + x107 + x124 + x126 + x127 + x142 + x149 + x151 ++ x152 + x164 + x204 + x230 + x231 + x232 + x233 + x234 + x235 + x250 ++ x259 + x260 + x261 + x262 + x263 + x275 + x276 + x281 + x282 + x299 ++ x303 + x305 + x310 + x312 + x313 + x315 + x317 + x337 + x338 + x339 ++ x342 + x346 + x350 + x354 + x360 + x368 + x369 + x371 + x373 + x383 ++ x397 + x398 + x400 + x402 + x407 + x412 + x435 + x437 + x438 + x441 ++ x442 + x443 + x444 + x445 + x446 + x447 + x448 + x450 + x452 + x458 ++ x463 + x464 + x468 + x498 <= 1 + +x5 + x6 + x9 + x11 + x26 + x28 + x33 + x38 + x53 + x54 ++ x55 + x56 + x57 + x58 + x59 + x87 + x91 + x92 + x93 + x94 ++ x95 + x101 + x102 + x103 + x104 + x106 + x116 + x119 + x124 + x127 ++ x129 + x149 + x150 + x151 + x152 + x153 + x154 + x156 + x162 + x164 ++ x165 + x166 + x204 + x230 + x231 + x232 + x235 + x253 + x259 + x263 ++ x275 + x297 + x299 + x303 + x305 + x307 + x312 + x317 + x337 + x338 ++ x339 + x341 + x345 + x346 + x348 + x349 + x354 + x360 + x362 + x371 ++ x373 + x398 + x402 + x406 + x407 + x412 + x437 + x438 + x440 + x442 ++ x444 + x445 + x446 + x447 + x448 + x452 + x454 + x455 + x456 + x458 ++ x463 + x464 + x467 + x468 <= 1 + +x10 + x27 + x28 + x33 + x34 + x36 + x38 + x53 + x56 + x57 ++ x59 + x87 + x90 + x92 + x94 + x95 + x101 + x102 + x104 + x106 ++ x109 + x127 + x128 + x141 + x142 + x149 + x151 + x152 + x153 + x162 ++ x164 + x165 + x166 + x195 + x203 + x204 + x206 + x230 + x231 + x232 ++ x235 + x244 + x253 + x254 + x255 + x259 + x278 + x296 + x297 + x299 ++ x304 + x306 + x307 + x309 + x312 + x328 + x330 + x341 + x345 + x346 ++ x349 + x373 + x406 + x408 + x434 + x443 + x444 + x445 + x446 + x448 ++ x455 + x456 + x463 + x464 + x466 + x467 + x468 + x470 + x485 <= 1 + +x4 + x7 + x27 + x28 + x33 + x35 + x36 + x38 + x53 + x55 ++ x56 + x57 + x59 + x60 + x90 + x92 + x95 + x96 + x97 + x98 ++ x101 + x102 + x104 + x106 + x128 + x142 + x149 + x151 + x152 + x162 ++ x163 + x164 + x165 + x167 + x195 + x196 + x203 + x204 + x206 + x230 ++ x231 + x232 + x244 + x251 + x253 + x254 + x256 + x299 + x304 + x306 ++ x307 + x308 + x309 + x326 + x328 + x330 + x349 + x362 + x403 + x406 ++ x418 + x426 + x445 + x454 + x455 + x456 + x463 + x464 + x465 + x466 ++ x467 + x468 + x485 <= 1 + +x7 + x28 + x33 + x34 + x35 + x36 + x38 + x53 + x55 + x72 ++ x82 + x93 + x94 + x95 + x96 + x97 + x98 + x101 + x102 + x104 ++ x106 + x111 + x142 + x152 + x162 + x163 + x164 + x165 + x167 + x168 ++ x169 + x196 + x203 + x204 + x206 + x232 + x234 + x235 + x251 + x253 ++ x254 + x256 + x257 + x261 + x280 + x296 + x304 + x305 + x306 + x308 ++ x309 + x325 + x326 + x328 + x330 + x345 + x347 + x348 + x349 + x378 ++ x404 + x417 + x418 + x419 + x420 + x423 + x438 + x445 + x454 + x455 ++ x456 + x457 + x459 + x460 + x461 + x462 + x463 + x464 + x465 + x466 ++ x467 + x473 + x485 <= 1 + +x7 + x34 + x36 + x37 + x50 + x55 + x56 + x58 + x72 + x93 ++ x94 + x95 + x97 + x101 + x104 + x150 + x168 + x169 + x170 + x172 ++ x203 + x230 + x233 + x235 + x253 + x285 + x296 + x301 + x305 + x306 ++ x308 + x309 + x328 + x347 + x348 + x349 + x357 + x378 + x379 + x382 ++ x404 + x420 + x455 + x456 + x459 + x463 + x464 + x465 + x491 <= 1 + +x36 + x37 + x50 + x55 + x56 + x60 + x93 + x94 + x95 + x96 ++ x97 + x104 + x150 + x154 + x168 + x169 + x170 + x172 + x203 + x230 ++ x233 + x265 + x280 + x285 + x287 + x301 + x305 + x306 + x328 + x347 ++ x348 + x349 + x378 + x379 + x382 + x455 + x457 + x458 + x464 + x488 ++ x490 <= 1 + +x5 + x15 + x16 + x17 + x18 + x20 + x32 + x40 + x44 + x45 ++ x49 + x51 + x52 + x54 + x56 + x59 + x101 + x102 + x103 + x106 ++ x125 + x126 + x127 + x128 + x129 + x149 + x151 + x152 + x153 + x230 ++ x231 + x232 + x233 + x234 + x258 + x260 + x262 + x263 + x275 + x310 ++ x312 + x340 + x342 + x359 + x360 + x371 + x373 + x384 + x386 + x396 ++ x397 + x398 + x439 + x443 + x444 + x446 + x447 + x448 + x454 + x458 ++ x494 + x497 + x499 <= 1 + +x5 + x16 + x17 + x18 + x19 + x20 + x32 + x40 + x42 + x44 ++ x45 + x49 + x51 + x52 + x54 + x56 + x57 + x59 + x60 + x77 ++ x79 + x89 + x92 + x100 + x101 + x102 + x103 + x105 + x106 + x125 ++ x126 + x128 + x129 + x130 + x140 + x149 + x150 + x151 + x152 + x153 ++ x183 + x185 + x186 + x187 + x188 + x207 + x209 + x223 + x230 + x231 ++ x232 + x233 + x234 + x250 + x258 + x259 + x260 + x262 + x263 + x275 ++ x276 + x278 + x294 + x307 + x310 + x312 + x318 + x342 + x354 + x359 ++ x360 + x361 + x371 + x373 + x383 + x384 + x385 + x386 + x391 + x396 ++ x397 + x398 + x400 + x402 + x411 + x415 + x416 + x435 + x439 + x443 ++ x444 + x446 + x447 + x448 + x449 + x450 + x452 + x454 + x494 + x495 ++ x496 + x497 + x498 + x499 <= 1 + +x5 + x6 + x10 + x11 + x16 + x18 + x40 + x44 + x45 + x49 ++ x51 + x52 + x54 + x55 + x56 + x57 + x58 + x59 + x60 + x75 ++ x77 + x79 + x80 + x87 + x88 + x89 + x91 + x92 + x101 + x102 ++ x103 + x106 + x122 + x124 + x125 + x126 + x127 + x128 + x129 + x130 ++ x149 + x151 + x152 + x183 + x185 + x186 + x187 + x210 + x223 + x230 ++ x231 + x232 + x233 + x234 + x235 + x250 + x258 + x259 + x260 + x262 ++ x263 + x275 + x276 + x278 + x281 + x292 + x299 + x303 + x305 + x307 ++ x310 + x312 + x315 + x317 + x318 + x339 + x342 + x350 + x354 + x359 ++ x360 + x368 + x369 + x370 + x371 + x373 + x382 + x396 + x397 + x398 ++ x400 + x402 + x411 + x412 + x416 + x435 + x443 + x444 + x445 + x446 ++ x447 + x448 + x449 + x450 + x452 + x464 + x467 + x468 + x496 + x497 ++ x498 <= 1 + +x5 + x6 + x9 + x10 + x11 + x22 + x26 + x33 + x40 + x44 ++ x54 + x55 + x56 + x57 + x58 + x59 + x79 + x87 + x89 + x90 ++ x91 + x101 + x102 + x103 + x106 + x124 + x126 + x127 + x149 + x150 ++ x151 + x152 + x164 + x166 + x183 + x185 + x204 + x222 + x230 + x231 ++ x232 + x233 + x235 + x259 + x260 + x261 + x262 + x263 + x275 + x278 ++ x296 + x298 + x299 + x301 + x305 + x307 + x310 + x312 + x315 + x338 ++ x339 + x346 + x348 + x350 + x359 + x360 + x368 + x369 + x370 + x371 ++ x373 + x382 + x396 + x397 + x398 + x402 + x406 + x426 + x435 + x437 ++ x440 + x441 + x443 + x444 + x445 + x446 + x447 + x448 + x450 + x452 ++ x458 + x467 + x468 + x480 + x497 <= 1 + +x5 + x9 + x10 + x11 + x21 + x22 + x26 + x33 + x54 + x55 ++ x56 + x57 + x58 + x59 + x60 + x87 + x90 + x91 + x93 + x95 ++ x101 + x102 + x103 + x106 + x119 + x123 + x124 + x127 + x149 + x151 ++ x152 + x154 + x162 + x166 + x183 + x202 + x204 + x206 + x222 + x230 ++ x231 + x232 + x233 + x235 + x259 + x260 + x262 + x275 + x278 + x299 ++ x301 + x304 + x305 + x307 + x312 + x315 + x346 + x348 + x354 + x362 ++ x368 + x373 + x374 + x375 + x376 + x394 + x398 + x402 + x406 + x407 ++ x437 + x440 + x443 + x444 + x445 + x446 + x447 + x448 + x458 + x463 ++ x467 + x468 <= 1 + +x9 + x10 + x11 + x26 + x33 + x34 + x40 + x46 + x47 + x53 ++ x55 + x56 + x57 + x58 + x59 + x60 + x87 + x90 + x94 + x95 ++ x102 + x118 + x137 + x141 + x142 + x149 + x151 + x152 + x153 + x154 ++ x162 + x167 + x202 + x204 + x206 + x231 + x232 + x235 + x241 + x275 ++ x296 + x297 + x298 + x301 + x302 + x304 + x305 + x306 + x307 + x309 ++ x322 + x325 + x327 + x345 + x348 + x349 + x362 + x368 + x374 + x402 ++ x403 + x406 + x408 + x410 + x443 + x445 + x448 + x455 + x457 + x463 ++ x466 + x467 + x468 + x475 <= 1 + +x7 + x33 + x36 + x38 + x40 + x53 + x55 + x56 + x57 + x58 ++ x59 + x60 + x90 + x95 + x96 + x98 + x101 + x106 + x141 + x142 ++ x151 + x152 + x153 + x154 + x163 + x167 + x203 + x206 + x232 + x242 ++ x244 + x291 + x302 + x304 + x305 + x306 + x307 + x308 + x309 + x325 ++ x328 + x329 + x330 + x347 + x348 + x349 + x362 + x403 + x404 + x406 ++ x409 + x410 + x426 + x443 + x445 + x455 + x456 + x457 + x459 + x466 ++ x467 + x482 + x484 + x485 <= 1 + +x3 + x4 + x7 + x28 + x33 + x34 + x36 + x38 + x47 + x50 ++ x53 + x55 + x56 + x57 + x58 + x60 + x72 + x73 + x90 + x93 ++ x94 + x95 + x96 + x97 + x98 + x102 + x104 + x108 + x109 + x111 ++ x112 + x114 + x141 + x142 + x150 + x152 + x154 + x164 + x167 + x184 ++ x203 + x205 + x206 + x232 + x234 + x235 + x251 + x253 + x257 + x261 ++ x280 + x291 + x296 + x301 + x302 + x304 + x305 + x306 + x308 + x314 ++ x325 + x326 + x345 + x347 + x348 + x378 + x404 + x406 + x417 + x418 ++ x419 + x420 + x425 + x438 + x443 + x445 + x455 + x456 + x457 + x459 ++ x460 + x462 + x464 + x465 + x466 + x467 + x473 + x483 + x484 + x485 ++ x486 <= 1 + +x4 + x7 + x34 + x36 + x38 + x50 + x55 + x56 + x57 + x58 ++ x60 + x71 + x72 + x73 + x82 + x90 + x93 + x94 + x95 + x96 ++ x97 + x98 + x101 + x104 + x106 + x108 + x109 + x111 + x112 + x123 ++ x138 + x141 + x142 + x150 + x154 + x169 + x184 + x203 + x230 + x232 ++ x233 + x234 + x235 + x248 + x253 + x256 + x261 + x280 + x285 + x287 ++ x291 + x296 + x297 + x301 + x304 + x305 + x306 + x308 + x309 + x326 ++ x345 + x347 + x348 + x349 + x357 + x364 + x377 + x378 + x379 + x382 ++ x403 + x404 + x406 + x418 + x419 + x420 + x438 + x454 + x455 + x456 ++ x457 + x459 + x460 + x461 + x465 + x466 + x483 + x484 + x485 + x486 + <= 1 + +x4 + x7 + x20 + x34 + x36 + x37 + x38 + x44 + x55 + x56 ++ x60 + x93 + x94 + x95 + x96 + x97 + x98 + x104 + x106 + x112 ++ x141 + x142 + x154 + x170 + x172 + x203 + x233 + x248 + x253 + x280 ++ x283 + x285 + x286 + x287 + x288 + x299 + x301 + x305 + x306 + x308 ++ x309 + x347 + x349 + x357 + x364 + x377 + x379 + x382 + x455 + x456 ++ x457 + x486 + x490 <= 1 + +x5 + x14 + x15 + x16 + x17 + x18 + x19 + x20 + x27 + x29 ++ x32 + x45 + x49 + x51 + x54 + x56 + x59 + x65 + x66 + x103 ++ x106 + x128 + x130 + x149 + x151 + x152 + x153 + x230 + x232 + x233 ++ x234 + x258 + x263 + x271 + x292 + x298 + x310 + x360 + x386 + x395 ++ x396 + x397 + x411 + x416 + x444 + x447 + x448 + x454 + x458 + x494 + <= 1 + +x15 + x16 + x17 + x18 + x19 + x20 + x27 + x29 + x30 + x32 ++ x40 + x42 + x44 + x45 + x49 + x51 + x52 + x54 + x56 + x57 ++ x58 + x59 + x60 + x66 + x77 + x79 + x88 + x89 + x101 + x103 ++ x105 + x106 + x118 + x125 + x126 + x127 + x128 + x129 + x130 + x132 ++ x138 + x139 + x140 + x149 + x150 + x152 + x186 + x188 + x201 + x207 ++ x208 + x209 + x210 + x230 + x231 + x232 + x233 + x234 + x250 + x258 ++ x259 + x260 + x263 + x275 + x292 + x294 + x298 + x307 + x310 + x312 ++ x358 + x360 + x361 + x369 + x370 + x373 + x384 + x385 + x396 + x397 ++ x398 + x399 + x400 + x402 + x411 + x414 + x415 + x416 + x421 + x443 ++ x444 + x446 + x447 + x448 + x466 + x472 + x494 + x495 + x497 + x499 + <= 1 + +x11 + x17 + x18 + x40 + x42 + x44 + x45 + x49 + x51 + x52 ++ x54 + x55 + x56 + x57 + x58 + x59 + x60 + x75 + x77 + x87 ++ x88 + x89 + x91 + x101 + x102 + x103 + x106 + x118 + x122 + x125 ++ x126 + x127 + x128 + x129 + x130 + x132 + x137 + x149 + x152 + x154 ++ x183 + x184 + x185 + x186 + x204 + x209 + x210 + x218 + x223 + x230 ++ x231 + x232 + x233 + x234 + x250 + x258 + x259 + x262 + x263 + x275 ++ x276 + x278 + x290 + x292 + x294 + x296 + x301 + x303 + x307 + x312 ++ x318 + x350 + x360 + x368 + x369 + x370 + x384 + x397 + x398 + x400 ++ x405 + x411 + x412 + x415 + x416 + x421 + x447 + x452 + x466 + x495 ++ x496 + x497 + x498 + x499 <= 1 + +x6 + x9 + x10 + x11 + x21 + x22 + x23 + x26 + x33 + x35 ++ x40 + x44 + x46 + x55 + x56 + x57 + x58 + x59 + x87 + x91 ++ x101 + x102 + x106 + x118 + x123 + x124 + x126 + x136 + x149 + x151 ++ x152 + x154 + x185 + x202 + x204 + x222 + x230 + x232 + x233 + x235 ++ x259 + x262 + x275 + x276 + x278 + x290 + x294 + x295 + x296 + x299 ++ x301 + x305 + x306 + x307 + x312 + x339 + x348 + x360 + x362 + x368 ++ x369 + x371 + x373 + x402 + x406 + x407 + x426 + x441 + x443 + x446 ++ x450 + x468 + x499 <= 1 + +x6 + x10 + x11 + x33 + x34 + x40 + x42 + x43 + x46 + x52 ++ x54 + x55 + x56 + x57 + x58 + x59 + x60 + x69 + x87 + x91 ++ x95 + x97 + x101 + x106 + x109 + x111 + x118 + x123 + x136 + x137 ++ x141 + x152 + x153 + x154 + x202 + x204 + x221 + x230 + x231 + x232 ++ x233 + x235 + x259 + x275 + x276 + x278 + x290 + x294 + x296 + x299 ++ x301 + x302 + x305 + x306 + x307 + x320 + x322 + x327 + x345 + x362 ++ x369 + x371 + x374 + x375 + x376 + x394 + x402 + x406 + x407 + x409 ++ x426 + x468 <= 1 + +x16 + x33 + x34 + x40 + x46 + x47 + x53 + x54 + x55 + x56 ++ x57 + x58 + x59 + x60 + x69 + x73 + x87 + x90 + x95 + x97 ++ x108 + x114 + x118 + x133 + x137 + x141 + x142 + x152 + x153 + x202 ++ x232 + x234 + x235 + x258 + x276 + x278 + x290 + x294 + x296 + x298 ++ x301 + x302 + x304 + x305 + x306 + x307 + x321 + x322 + x325 + x327 ++ x345 + x348 + x349 + x362 + x375 + x387 + x402 + x403 + x404 + x406 ++ x408 + x409 + x426 + x457 + x468 + x475 + x483 + x484 <= 1 + +x3 + x4 + x6 + x7 + x14 + x33 + x34 + x40 + x47 + x50 ++ x53 + x55 + x56 + x57 + x58 + x59 + x60 + x90 + x93 + x95 ++ x97 + x98 + x101 + x108 + x111 + x114 + x141 + x142 + x151 + x153 ++ x154 + x167 + x184 + x203 + x205 + x206 + x232 + x234 + x235 + x241 ++ x244 + x251 + x278 + x286 + x290 + x291 + x293 + x296 + x298 + x301 ++ x302 + x304 + x305 + x306 + x308 + x325 + x327 + x329 + x345 + x347 ++ x348 + x362 + x366 + x378 + x380 + x401 + x403 + x404 + x406 + x408 ++ x409 + x410 + x419 + x425 + x426 + x443 + x456 + x457 + x459 + x462 ++ x473 + x477 + x482 + x483 + x484 + x485 + x486 <= 1 + +x3 + x4 + x7 + x34 + x38 + x50 + x53 + x55 + x56 + x57 ++ x58 + x60 + x71 + x72 + x73 + x82 + x90 + x93 + x94 + x95 ++ x96 + x97 + x98 + x102 + x104 + x106 + x108 + x111 + x114 + x123 ++ x134 + x138 + x141 + x142 + x154 + x167 + x203 + x205 + x206 + x234 ++ x235 + x244 + x248 + x251 + x253 + x256 + x261 + x285 + x287 + x291 ++ x296 + x297 + x300 + x301 + x304 + x305 + x306 + x309 + x326 + x345 ++ x347 + x348 + x349 + x357 + x364 + x380 + x384 + x403 + x404 + x406 ++ x419 + x443 + x456 + x457 + x459 + x472 + x473 + x477 + x482 + x483 ++ x484 + x485 + x486 <= 1 + +x4 + x34 + x36 + x55 + x56 + x60 + x71 + x72 + x82 + x90 ++ x93 + x95 + x96 + x97 + x98 + x104 + x106 + x107 + x111 + x123 ++ x138 + x142 + x154 + x203 + x205 + x253 + x280 + x285 + x287 + x291 ++ x296 + x300 + x301 + x304 + x306 + x326 + x363 + x364 + x367 + x377 ++ x379 + x380 + x419 + x429 + x455 + x456 + x457 + x459 + x465 + x482 ++ x483 + x484 + x486 <= 1 + +x4 + x20 + x36 + x55 + x56 + x60 + x85 + x92 + x96 + x111 ++ x112 + x160 + x172 + x233 + x235 + x248 + x253 + x283 + x286 + x287 ++ x288 + x292 + x301 + x304 + x305 + x306 + x332 + x346 + x347 + x350 ++ x367 + x377 + x382 + x457 + x465 <= 1 + +x5 + x14 + x15 + x16 + x17 + x19 + x27 + x29 + x30 + x31 ++ x32 + x40 + x45 + x49 + x51 + x52 + x54 + x58 + x59 + x60 ++ x65 + x66 + x103 + x105 + x106 + x125 + x127 + x129 + x130 + x139 ++ x140 + x150 + x153 + x186 + x188 + x190 + x228 + x230 + x232 + x233 ++ x234 + x235 + x258 + x263 + x271 + x272 + x295 + x298 + x302 + x310 ++ x357 + x360 + x361 + x386 + x395 + x396 + x397 + x399 + x411 + x413 ++ x414 + x415 + x416 + x421 + x444 + x447 + x448 + x454 <= 1 + +x15 + x16 + x17 + x18 + x19 + x27 + x29 + x31 + x32 + x40 ++ x45 + x49 + x51 + x52 + x54 + x55 + x58 + x59 + x60 + x88 ++ x89 + x103 + x105 + x106 + x125 + x129 + x130 + x138 + x140 + x148 ++ x149 + x150 + x152 + x153 + x187 + x188 + x199 + x201 + x208 + x210 ++ x212 + x213 + x215 + x226 + x228 + x234 + x258 + x263 + x288 + x292 ++ x295 + x298 + x302 + x310 + x357 + x358 + x360 + x361 + x373 + x395 ++ x396 + x397 + x398 + x399 + x413 + x415 + x421 + x422 + x446 + x447 ++ x448 + x454 <= 1 + +x17 + x18 + x19 + x40 + x42 + x44 + x45 + x54 + x55 + x56 ++ x57 + x58 + x59 + x60 + x77 + x87 + x88 + x89 + x106 + x118 ++ x122 + x125 + x126 + x131 + x132 + x137 + x149 + x152 + x154 + x185 ++ x204 + x210 + x218 + x221 + x232 + x233 + x235 + x250 + x258 + x259 ++ x275 + x276 + x278 + x290 + x294 + x295 + x296 + x301 + x312 + x320 ++ x338 + x350 + x360 + x368 + x369 + x370 + x398 + x405 + x411 + x412 ++ x415 + x416 + x495 + x496 + x499 <= 1 + +x6 + x19 + x21 + x22 + x23 + x26 + x40 + x41 + x42 + x44 ++ x49 + x52 + x54 + x55 + x56 + x57 + x58 + x59 + x69 + x91 ++ x103 + x106 + x118 + x124 + x126 + x131 + x132 + x136 + x137 + x154 ++ x202 + x204 + x210 + x218 + x221 + x222 + x230 + x232 + x233 + x235 ++ x240 + x275 + x276 + x278 + x290 + x294 + x295 + x296 + x297 + x299 ++ x301 + x302 + x306 + x320 + x354 + x368 + x369 + x370 + x373 + x394 ++ x402 + x405 + x407 + x412 + x499 <= 1 + +x3 + x10 + x11 + x21 + x22 + x23 + x42 + x43 + x49 + x50 ++ x52 + x53 + x54 + x55 + x56 + x57 + x58 + x59 + x60 + x69 ++ x73 + x106 + x109 + x111 + x118 + x122 + x126 + x131 + x132 + x133 ++ x136 + x137 + x153 + x154 + x202 + x203 + x204 + x220 + x221 + x222 ++ x230 + x232 + x233 + x235 + x259 + x275 + x276 + x290 + x294 + x295 ++ x296 + x297 + x299 + x301 + x302 + x305 + x306 + x308 + x320 + x321 ++ x323 + x327 + x345 + x369 + x370 + x376 + x393 + x394 + x402 + x404 ++ x405 + x406 + x407 + x459 + x468 + x499 <= 1 + +x3 + x6 + x16 + x22 + x23 + x24 + x34 + x40 + x41 + x43 ++ x49 + x50 + x52 + x53 + x54 + x55 + x56 + x57 + x58 + x59 ++ x60 + x69 + x71 + x73 + x95 + x98 + x106 + x109 + x111 + x118 ++ x126 + x131 + x133 + x134 + x136 + x137 + x142 + x153 + x202 + x203 ++ x204 + x205 + x231 + x236 + x239 + x241 + x249 + x259 + x275 + x276 ++ x278 + x290 + x296 + x297 + x298 + x299 + x301 + x302 + x304 + x305 ++ x320 + x321 + x322 + x323 + x327 + x329 + x362 + x390 + x391 + x393 ++ x394 + x402 + x403 + x404 + x405 + x406 + x457 + x459 + x475 + x476 ++ x477 <= 1 + +x3 + x6 + x14 + x34 + x40 + x49 + x50 + x52 + x53 + x54 ++ x55 + x56 + x57 + x58 + x60 + x70 + x71 + x72 + x73 + x90 ++ x97 + x98 + x106 + x107 + x109 + x111 + x115 + x126 + x136 + x137 ++ x139 + x141 + x142 + x151 + x153 + x154 + x202 + x203 + x204 + x205 ++ x206 + x207 + x234 + x235 + x236 + x238 + x239 + x241 + x259 + x276 ++ x278 + x279 + x290 + x291 + x293 + x296 + x297 + x298 + x301 + x304 ++ x306 + x321 + x325 + x329 + x345 + x347 + x350 + x362 + x366 + x391 ++ x402 + x403 + x404 + x405 + x407 + x410 + x425 + x457 + x459 + x472 ++ x474 + x475 + x477 + x483 + x485 <= 1 + +x3 + x4 + x6 + x7 + x34 + x50 + x53 + x55 + x56 + x57 ++ x58 + x59 + x60 + x70 + x71 + x72 + x90 + x93 + x94 + x95 ++ x97 + x98 + x107 + x108 + x109 + x111 + x134 + x141 + x142 + x151 ++ x154 + x167 + x202 + x205 + x206 + x207 + x234 + x241 + x248 + x249 ++ x251 + x261 + x276 + x278 + x279 + x286 + x288 + x291 + x293 + x296 ++ x297 + x298 + x301 + x304 + x305 + x345 + x347 + x348 + x350 + x362 ++ x366 + x380 + x384 + x401 + x402 + x403 + x404 + x406 + x407 + x427 ++ x429 + x430 + x457 + x459 + x472 + x473 + x477 + x482 + x483 + x484 ++ x486 + x487 <= 1 + +x4 + x20 + x34 + x52 + x53 + x55 + x57 + x60 + x81 + x82 ++ x85 + x86 + x95 + x96 + x97 + x98 + x104 + x107 + x111 + x112 ++ x123 + x138 + x154 + x209 + x224 + x248 + x253 + x285 + x286 + x288 ++ x296 + x300 + x301 + x302 + x304 + x306 + x338 + x350 + x358 + x363 ++ x364 + x365 + x367 + x377 + x380 + x381 + x387 + x429 + x457 + x465 ++ x482 + x483 + x486 <= 1 + +x4 + x20 + x36 + x43 + x50 + x53 + x55 + x60 + x81 + x82 ++ x83 + x85 + x86 + x96 + x98 + x104 + x107 + x109 + x111 + x112 ++ x138 + x171 + x172 + x202 + x209 + x248 + x249 + x253 + x283 + x285 ++ x286 + x287 + x288 + x292 + x304 + x306 + x332 + x338 + x350 + x358 ++ x363 + x364 + x365 + x367 + x377 + x381 + x429 + x465 + x486 <= 1 + +x16 + x19 + x27 + x29 + x30 + x31 + x32 + x45 + x48 + x49 ++ x50 + x51 + x52 + x54 + x58 + x59 + x60 + x65 + x66 + x88 ++ x97 + x102 + x103 + x105 + x106 + x117 + x137 + x138 + x139 + x140 ++ x150 + x153 + x200 + x213 + x217 + x228 + x229 + x234 + x235 + x258 ++ x261 + x263 + x271 + x272 + x277 + x280 + x290 + x294 + x295 + x297 ++ x298 + x302 + x310 + x311 + x357 + x360 + x361 + x386 + x393 + x395 ++ x397 + x399 + x400 + x411 + x414 + x415 + x417 + x421 + x432 + x447 + <= 1 + +x15 + x16 + x18 + x19 + x27 + x28 + x29 + x30 + x31 + x32 ++ x41 + x45 + x49 + x50 + x51 + x52 + x54 + x55 + x56 + x58 ++ x59 + x60 + x64 + x65 + x74 + x88 + x102 + x103 + x105 + x106 ++ x137 + x138 + x139 + x140 + x143 + x150 + x153 + x183 + x188 + x199 ++ x200 + x208 + x211 + x212 + x213 + x214 + x215 + x216 + x226 + x227 ++ x229 + x231 + x234 + x235 + x258 + x263 + x267 + x270 + x272 + x288 ++ x292 + x294 + x295 + x297 + x299 + x302 + x303 + x310 + x319 + x324 ++ x352 + x357 + x358 + x359 + x360 + x361 + x392 + x393 + x395 + x396 ++ x397 + x400 + x404 + x413 + x414 + x417 + x421 + x422 <= 1 + +x15 + x19 + x27 + x28 + x29 + x30 + x31 + x41 + x49 + x50 ++ x51 + x54 + x55 + x56 + x58 + x59 + x64 + x74 + x88 + x103 ++ x105 + x137 + x139 + x140 + x150 + x192 + x204 + x208 + x211 + x212 ++ x220 + x227 + x235 + x258 + x275 + x276 + x277 + x294 + x295 + x297 ++ x299 + x302 + x303 + x319 + x321 + x322 + x324 + x352 + x357 + x360 ++ x361 + x392 + x393 + x395 + x396 + x397 + x404 + x422 + x492 + x493 + <= 1 + +x15 + x19 + x24 + x25 + x31 + x41 + x42 + x43 + x49 + x51 ++ x54 + x55 + x56 + x57 + x58 + x59 + x60 + x69 + x74 + x113 ++ x118 + x122 + x132 + x137 + x139 + x140 + x192 + x204 + x205 + x211 ++ x220 + x227 + x235 + x245 + x252 + x258 + x275 + x276 + x277 + x278 ++ x294 + x295 + x297 + x299 + x302 + x303 + x308 + x319 + x320 + x321 ++ x322 + x323 + x324 + x357 + x359 + x361 + x370 + x393 + x394 + x395 ++ x396 + x397 + x400 + x404 + x405 + x422 + x492 <= 1 + +x8 + x19 + x21 + x23 + x24 + x25 + x31 + x41 + x42 + x43 ++ x44 + x49 + x54 + x55 + x56 + x57 + x58 + x59 + x60 + x69 ++ x70 + x73 + x74 + x103 + x106 + x109 + x118 + x122 + x131 + x132 ++ x133 + x134 + x136 + x137 + x191 + x202 + x204 + x218 + x220 + x230 ++ x232 + x233 + x235 + x240 + x245 + x252 + x258 + x275 + x276 + x277 ++ x278 + x290 + x294 + x295 + x296 + x297 + x299 + x301 + x302 + x308 ++ x319 + x320 + x321 + x322 + x323 + x324 + x345 + x359 + x369 + x370 ++ x391 + x393 + x394 + x396 + x402 + x404 + x405 + x407 + x422 + x453 ++ x459 + x468 <= 1 + +x3 + x6 + x8 + x24 + x25 + x40 + x41 + x42 + x43 + x49 ++ x50 + x51 + x52 + x53 + x54 + x55 + x56 + x57 + x58 + x59 ++ x60 + x69 + x70 + x71 + x73 + x86 + x104 + x108 + x109 + x122 ++ x131 + x132 + x133 + x134 + x135 + x136 + x137 + x139 + x184 + x194 ++ x230 + x231 + x232 + x233 + x235 + x236 + x237 + x238 + x239 + x240 ++ x249 + x259 + x260 + x275 + x276 + x278 + x291 + x295 + x296 + x297 ++ x299 + x300 + x302 + x320 + x321 + x322 + x323 + x327 + x329 + x347 ++ x350 + x362 + x370 + x381 + x389 + x390 + x391 + x394 + x398 + x402 ++ x403 + x404 + x405 + x407 + x427 + x474 + x475 + x476 <= 1 + +x3 + x6 + x8 + x25 + x41 + x42 + x43 + x49 + x50 + x52 ++ x53 + x54 + x55 + x56 + x57 + x58 + x59 + x60 + x69 + x70 ++ x71 + x72 + x73 + x84 + x86 + x93 + x97 + x98 + x105 + x107 ++ x108 + x109 + x110 + x111 + x115 + x131 + x133 + x134 + x136 + x139 ++ x141 + x142 + x184 + x194 + x202 + x203 + x207 + x230 + x231 + x232 ++ x233 + x234 + x236 + x238 + x248 + x249 + x259 + x276 + x279 + x290 ++ x291 + x292 + x296 + x297 + x298 + x300 + x301 + x304 + x321 + x333 ++ x336 + x347 + x350 + x357 + x362 + x363 + x370 + x381 + x391 + x403 ++ x406 + x407 + x425 + x427 + x459 + x472 + x474 + x476 + x477 <= 1 + +x3 + x6 + x7 + x49 + x50 + x52 + x53 + x55 + x56 + x57 ++ x58 + x59 + x60 + x81 + x83 + x84 + x85 + x86 + x93 + x98 ++ x104 + x105 + x107 + x109 + x111 + x115 + x134 + x139 + x154 + x167 ++ x177 + x202 + x203 + x205 + x206 + x207 + x233 + x234 + x248 + x249 ++ x261 + x280 + x283 + x284 + x286 + x288 + x289 + x291 + x293 + x298 ++ x299 + x300 + x301 + x302 + x304 + x332 + x333 + x334 + x336 + x345 ++ x347 + x348 + x350 + x356 + x358 + x362 + x363 + x366 + x367 + x380 ++ x381 + x391 + x399 + x403 + x406 + x407 + x425 + x427 + x429 + x430 ++ x457 + x459 + x472 + x473 + x474 + x476 + x482 + x484 + x487 <= 1 + +x3 + x6 + x7 + x12 + x20 + x36 + x50 + x52 + x53 + x55 ++ x57 + x60 + x81 + x82 + x83 + x85 + x86 + x93 + x98 + x104 ++ x105 + x107 + x109 + x111 + x112 + x138 + x139 + x154 + x171 + x177 ++ x178 + x224 + x225 + x248 + x249 + x253 + x261 + x283 + x284 + x286 ++ x287 + x288 + x291 + x292 + x293 + x300 + x302 + x304 + x306 + x332 ++ x334 + x347 + x348 + x350 + x358 + x363 + x367 + x377 + x380 + x381 ++ x391 + x399 + x403 + x429 + x482 + x487 <= 1 + +x9 + x12 + x13 + x20 + x53 + x55 + x60 + x81 + x85 + x86 ++ x104 + x107 + x109 + x111 + x112 + x119 + x124 + x138 + x171 + x178 ++ x189 + x202 + x225 + x248 + x249 + x261 + x283 + x284 + x285 + x286 ++ x287 + x289 + x292 + x293 + x295 + x296 + x297 + x300 + x302 + x304 ++ x305 + x306 + x332 + x334 + x381 + x399 + x465 + x487 <= 1 + +x15 + x19 + x27 + x28 + x29 + x30 + x31 + x45 + x49 + x50 ++ x51 + x52 + x54 + x58 + x59 + x60 + x63 + x65 + x66 + x78 ++ x102 + x103 + x105 + x138 + x140 + x150 + x153 + x208 + x211 + x212 ++ x213 + x216 + x217 + x221 + x258 + x261 + x274 + x276 + x277 + x280 ++ x310 + x350 + x357 + x360 + x361 + x393 + x395 + x397 + x399 + x414 ++ x417 + x432 + x435 + x447 <= 1 + +x10 + x15 + x18 + x28 + x29 + x30 + x31 + x32 + x41 + x45 ++ x49 + x50 + x51 + x52 + x54 + x58 + x59 + x60 + x63 + x64 ++ x65 + x66 + x88 + x103 + x105 + x113 + x117 + x121 + x137 + x138 ++ x139 + x140 + x141 + x146 + x150 + x153 + x208 + x211 + x212 + x213 ++ x214 + x216 + x217 + x228 + x258 + x263 + x270 + x271 + x272 + x274 ++ x276 + x277 + x280 + x294 + x295 + x298 + x302 + x303 + x310 + x311 ++ x357 + x358 + x359 + x360 + x361 + x393 + x395 + x396 + x397 + x399 ++ x413 + x414 + x415 + x431 + x432 + x435 + x436 + x447 <= 1 + +x15 + x19 + x28 + x29 + x30 + x41 + x42 + x45 + x49 + x50 ++ x51 + x52 + x54 + x55 + x56 + x57 + x58 + x59 + x64 + x74 ++ x88 + x102 + x103 + x105 + x106 + x113 + x138 + x139 + x140 + x150 ++ x204 + x205 + x214 + x215 + x226 + x227 + x229 + x258 + x267 + x276 ++ x277 + x294 + x295 + x297 + x303 + x319 + x322 + x324 + x352 + x357 ++ x359 + x360 + x361 + x392 + x393 + x395 + x396 + x397 + x400 + x422 ++ x466 + x493 <= 1 + +x15 + x24 + x25 + x41 + x42 + x49 + x50 + x51 + x54 + x55 ++ x56 + x57 + x58 + x88 + x102 + x103 + x105 + x113 + x115 + x118 ++ x119 + x122 + x132 + x145 + x150 + x192 + x204 + x205 + x226 + x229 ++ x252 + x258 + x275 + x276 + x277 + x279 + x294 + x295 + x297 + x299 ++ x301 + x303 + x311 + x319 + x324 + x357 + x359 + x361 + x389 + x392 ++ x395 + x396 + x397 + x398 + x400 + x405 + x420 + x451 + x453 <= 1 + +x8 + x15 + x19 + x21 + x25 + x42 + x43 + x49 + x52 + x53 ++ x54 + x55 + x57 + x58 + x74 + x103 + x105 + x106 + x118 + x119 ++ x121 + x122 + x123 + x131 + x132 + x137 + x204 + x218 + x219 + x220 ++ x252 + x276 + x277 + x278 + x294 + x295 + x297 + x301 + x323 + x359 ++ x361 + x369 + x370 + x392 + x394 + x395 + x397 + x404 + x405 + x451 ++ x453 <= 1 + +x3 + x8 + x41 + x42 + x43 + x44 + x49 + x50 + x51 + x52 ++ x53 + x54 + x55 + x56 + x57 + x58 + x59 + x60 + x69 + x70 ++ x74 + x98 + x104 + x115 + x118 + x121 + x122 + x131 + x132 + x133 ++ x134 + x135 + x136 + x137 + x163 + x176 + x191 + x193 + x194 + x205 ++ x206 + x207 + x230 + x231 + x232 + x233 + x234 + x235 + x237 + x240 ++ x245 + x247 + x259 + x260 + x275 + x276 + x277 + x279 + x280 + x290 ++ x291 + x295 + x296 + x297 + x299 + x300 + x308 + x319 + x320 + x321 ++ x322 + x323 + x324 + x329 + x358 + x362 + x369 + x370 + x389 + x390 ++ x391 + x394 + x396 + x398 + x403 + x404 + x405 + x407 + x427 + x475 + <= 1 + +x3 + x8 + x13 + x42 + x43 + x49 + x51 + x52 + x53 + x54 ++ x55 + x56 + x57 + x58 + x60 + x70 + x71 + x72 + x89 + x98 ++ x101 + x104 + x105 + x107 + x108 + x109 + x110 + x111 + x120 + x121 ++ x131 + x133 + x135 + x153 + x163 + x176 + x193 + x194 + x202 + x205 ++ x207 + x230 + x232 + x233 + x234 + x236 + x237 + x238 + x240 + x260 ++ x275 + x276 + x277 + x279 + x280 + x289 + x290 + x291 + x292 + x295 ++ x297 + x298 + x300 + x308 + x309 + x319 + x320 + x321 + x336 + x350 ++ x356 + x357 + x358 + x362 + x390 + x391 + x394 + x396 + x398 + x399 ++ x403 + x404 + x405 + x407 + x427 + x428 + x474 + x487 <= 1 + +x12 + x13 + x43 + x51 + x52 + x53 + x55 + x58 + x60 + x61 ++ x71 + x83 + x101 + x104 + x105 + x107 + x108 + x112 + x119 + x123 ++ x138 + x163 + x176 + x177 + x189 + x190 + x191 + x193 + x194 + x202 ++ x206 + x207 + x234 + x237 + x261 + x279 + x280 + x289 + x291 + x292 ++ x295 + x297 + x298 + x299 + x300 + x302 + x304 + x320 + x331 + x336 ++ x351 + x354 + x355 + x356 + x358 + x362 + x390 + x391 + x394 + x396 ++ x399 + x403 + x425 + x428 + x430 + x447 + x474 + x487 <= 1 + +x7 + x13 + x37 + x43 + x52 + x53 + x55 + x57 + x58 + x59 ++ x60 + x81 + x83 + x84 + x98 + x101 + x104 + x105 + x107 + x108 ++ x109 + x110 + x112 + x119 + x123 + x134 + x138 + x139 + x153 + x154 ++ x159 + x173 + x176 + x177 + x178 + x189 + x191 + x192 + x193 + x194 ++ x202 + x203 + x205 + x206 + x207 + x234 + x249 + x261 + x279 + x280 ++ x284 + x289 + x291 + x292 + x293 + x295 + x297 + x298 + x300 + x302 ++ x304 + x331 + x332 + x333 + x334 + x336 + x355 + x356 + x358 + x362 ++ x390 + x391 + x399 + x425 + x427 + x428 + x429 + x430 + x476 + x482 ++ x487 <= 1 + +x9 + x12 + x13 + x14 + x20 + x37 + x43 + x52 + x53 + x55 ++ x58 + x60 + x101 + x104 + x105 + x107 + x110 + x112 + x119 + x120 ++ x122 + x123 + x138 + x154 + x158 + x176 + x178 + x189 + x191 + x192 ++ x194 + x202 + x203 + x206 + x248 + x249 + x261 + x278 + x279 + x280 ++ x283 + x284 + x289 + x292 + x293 + x295 + x296 + x297 + x300 + x304 ++ x305 + x306 + x331 + x332 + x334 + x358 + x372 + x399 + x430 + x465 ++ x476 + x487 <= 1 + +x0 + x10 + x35 + x49 + x50 + x51 + x64 + x68 + x96 + x103 ++ x105 + x113 + x114 + x115 + x116 + x117 + x120 + x121 + x140 + x141 ++ x144 + x146 + x147 + x179 + x180 + x205 + x207 + x268 + x274 + x276 ++ x277 + x303 + x358 + x359 + x360 + x366 + x393 + x395 + x400 + x414 ++ x431 + x432 + x433 + x436 <= 1 + +x0 + x2 + x10 + x15 + x31 + x32 + x35 + x49 + x50 + x51 ++ x57 + x59 + x60 + x63 + x64 + x65 + x66 + x68 + x96 + x101 ++ x103 + x105 + x113 + x114 + x115 + x116 + x117 + x121 + x140 + x141 ++ x146 + x147 + x150 + x179 + x205 + x207 + x211 + x212 + x213 + x270 ++ x273 + x274 + x275 + x276 + x277 + x278 + x279 + x280 + x303 + x310 ++ x311 + x357 + x358 + x359 + x360 + x361 + x372 + x389 + x393 + x395 ++ x400 + x414 + x431 + x432 + x433 + x435 + x436 + x447 <= 1 + +x10 + x35 + x49 + x50 + x51 + x52 + x56 + x57 + x58 + x59 ++ x60 + x64 + x96 + x101 + x102 + x103 + x105 + x113 + x114 + x115 ++ x117 + x121 + x145 + x150 + x198 + x203 + x205 + x207 + x235 + x239 ++ x250 + x252 + x264 + x267 + x270 + x273 + x275 + x276 + x277 + x278 ++ x279 + x295 + x303 + x311 + x319 + x323 + x324 + x357 + x359 + x361 ++ x372 + x389 + x393 + x395 + x396 + x400 + x431 + x432 + x433 + x434 ++ x441 <= 1 + +x8 + x35 + x49 + x50 + x51 + x52 + x56 + x57 + x58 + x59 ++ x88 + x96 + x101 + x102 + x103 + x105 + x113 + x114 + x115 + x119 ++ x122 + x145 + x150 + x187 + x203 + x205 + x250 + x252 + x264 + x265 ++ x266 + x267 + x275 + x276 + x277 + x279 + x295 + x303 + x311 + x319 ++ x323 + x324 + x357 + x359 + x361 + x389 + x395 + x398 + x400 + x420 ++ x432 + x479 <= 1 + +x12 + x41 + x42 + x51 + x52 + x53 + x54 + x55 + x57 + x74 ++ x105 + x118 + x119 + x121 + x122 + x123 + x131 + x134 + x204 + x219 ++ x231 + x233 + x245 + x276 + x277 + x280 + x294 + x295 + x297 + x300 ++ x357 + x370 + x389 + x390 + x394 + x405 + x443 + x451 + x453 <= 1 + +x8 + x12 + x41 + x42 + x49 + x50 + x51 + x52 + x53 + x54 ++ x57 + x74 + x98 + x102 + x103 + x105 + x108 + x110 + x112 + x119 ++ x120 + x121 + x122 + x123 + x131 + x132 + x133 + x134 + x135 + x136 ++ x145 + x166 + x193 + x194 + x203 + x205 + x206 + x207 + x219 + x231 ++ x232 + x233 + x234 + x235 + x237 + x242 + x245 + x247 + x260 + x275 ++ x276 + x277 + x279 + x280 + x289 + x294 + x295 + x300 + x323 + x353 ++ x355 + x356 + x357 + x358 + x370 + x388 + x389 + x390 + x394 + x398 ++ x400 + x405 + x428 + x449 + x451 + x453 + x481 <= 1 + +x3 + x8 + x12 + x13 + x42 + x49 + x51 + x52 + x53 + x54 ++ x55 + x57 + x58 + x60 + x62 + x70 + x98 + x102 + x104 + x105 ++ x108 + x110 + x117 + x119 + x120 + x121 + x122 + x123 + x131 + x133 ++ x134 + x135 + x163 + x166 + x190 + x193 + x194 + x203 + x205 + x206 ++ x207 + x230 + x231 + x232 + x233 + x234 + x235 + x238 + x247 + x251 ++ x260 + x263 + x275 + x276 + x277 + x278 + x279 + x280 + x289 + x290 ++ x291 + x292 + x300 + x309 + x331 + x334 + x353 + x354 + x355 + x356 ++ x357 + x358 + x362 + x388 + x389 + x390 + x391 + x392 + x394 + x398 ++ x399 + x400 + x403 + x405 + x428 + x449 + x451 + x453 + x481 <= 1 + +x4 + x8 + x9 + x12 + x13 + x43 + x51 + x52 + x53 + x55 ++ x58 + x60 + x61 + x62 + x104 + x105 + x107 + x108 + x110 + x112 ++ x119 + x120 + x121 + x122 + x123 + x135 + x138 + x159 + x177 + x189 ++ x190 + x191 + x193 + x194 + x202 + x206 + x207 + x209 + x234 + x251 ++ x263 + x275 + x279 + x280 + x289 + x290 + x291 + x292 + x293 + x298 ++ x299 + x300 + x331 + x333 + x334 + x336 + x351 + x353 + x354 + x355 ++ x356 + x358 + x362 + x390 + x391 + x394 + x399 + x428 + x445 + x447 ++ x449 + x451 <= 1 + +x4 + x9 + x12 + x13 + x37 + x43 + x55 + x58 + x59 + x60 ++ x81 + x83 + x84 + x104 + x105 + x107 + x108 + x110 + x112 + x119 ++ x120 + x122 + x123 + x124 + x134 + x157 + x159 + x173 + x174 + x176 ++ x177 + x178 + x189 + x190 + x191 + x192 + x193 + x194 + x202 + x206 ++ x207 + x234 + x277 + x278 + x279 + x280 + x283 + x284 + x289 + x291 ++ x292 + x293 + x298 + x300 + x302 + x331 + x333 + x334 + x336 + x351 ++ x352 + x355 + x356 + x358 + x362 + x390 + x399 + x428 + x444 + x449 ++ x487 <= 1 + +x4 + x9 + x12 + x13 + x14 + x37 + x53 + x55 + x57 + x58 ++ x60 + x84 + x101 + x104 + x107 + x109 + x110 + x112 + x119 + x120 ++ x122 + x123 + x124 + x135 + x138 + x139 + x157 + x158 + x159 + x173 ++ x174 + x175 + x178 + x189 + x190 + x191 + x192 + x194 + x202 + x206 ++ x207 + x249 + x261 + x278 + x279 + x280 + x283 + x284 + x289 + x291 ++ x292 + x293 + x300 + x302 + x304 + x305 + x306 + x331 + x332 + x333 ++ x336 + x351 + x352 + x356 + x358 + x369 + x372 + x392 + x396 + x399 + <= 1 + +x38 + x49 + x50 + x51 + x63 + x67 + x68 + x94 + x103 + x105 ++ x113 + x114 + x116 + x117 + x120 + x121 + x137 + x140 + x144 + x146 ++ x147 + x148 + x180 + x207 + x277 + x279 + x303 + x307 + x311 + x358 ++ x359 + x393 + x395 + x400 + x403 + x414 + x433 + x434 + x436 <= 1 + +x0 + x1 + x2 + x10 + x15 + x35 + x49 + x50 + x51 + x57 ++ x59 + x63 + x67 + x68 + x94 + x101 + x103 + x105 + x113 + x114 ++ x115 + x116 + x117 + x120 + x121 + x140 + x144 + x146 + x147 + x148 ++ x197 + x205 + x207 + x250 + x252 + x277 + x279 + x280 + x293 + x303 ++ x311 + x329 + x358 + x359 + x372 + x393 + x395 + x400 + x431 + x433 ++ x434 + x436 <= 1 + +x35 + x49 + x50 + x51 + x52 + x57 + x58 + x59 + x67 + x68 ++ x96 + x113 + x114 + x115 + x116 + x144 + x145 + x146 + x147 + x193 ++ x197 + x198 + x205 + x207 + x239 + x248 + x250 + x252 + x276 + x277 ++ x278 + x279 + x280 + x303 + x311 + x324 + x357 + x359 + x361 + x389 ++ x395 + x398 + x400 + x434 <= 1 + +x8 + x14 + x35 + x49 + x50 + x51 + x52 + x56 + x57 + x58 ++ x59 + x67 + x96 + x101 + x102 + x103 + x104 + x105 + x113 + x114 ++ x115 + x116 + x119 + x121 + x144 + x145 + x193 + x203 + x205 + x207 ++ x231 + x250 + x252 + x264 + x265 + x266 + x267 + x268 + x273 + x275 ++ x276 + x277 + x278 + x279 + x295 + x303 + x311 + x319 + x324 + x330 ++ x335 + x357 + x359 + x361 + x389 + x392 + x395 + x398 + x400 + x431 ++ x434 + x478 + x479 + x480 <= 1 + +x8 + x14 + x49 + x50 + x51 + x52 + x53 + x54 + x56 + x57 ++ x58 + x70 + x96 + x102 + x103 + x104 + x105 + x108 + x110 + x116 ++ x119 + x120 + x121 + x123 + x124 + x135 + x163 + x166 + x181 + x182 ++ x191 + x193 + x202 + x203 + x204 + x205 + x206 + x231 + x234 + x243 ++ x247 + x251 + x252 + x260 + x264 + x265 + x266 + x268 + x269 + x273 ++ x277 + x278 + x279 + x280 + x290 + x303 + x311 + x335 + x346 + x353 ++ x359 + x361 + x388 + x389 + x390 + x392 + x395 + x397 + x398 + x399 ++ x400 + x466 + x478 + x479 + x480 <= 1 + +x8 + x30 + x41 + x42 + x43 + x49 + x50 + x51 + x52 + x53 ++ x54 + x55 + x57 + x60 + x70 + x74 + x102 + x103 + x104 + x105 ++ x108 + x116 + x117 + x119 + x120 + x121 + x122 + x123 + x132 + x133 ++ x135 + x161 + x163 + x166 + x182 + x192 + x193 + x194 + x202 + x203 ++ x204 + x205 + x206 + x219 + x231 + x233 + x234 + x242 + x245 + x246 ++ x247 + x251 + x252 + x260 + x262 + x269 + x277 + x278 + x279 + x280 ++ x289 + x290 + x294 + x323 + x331 + x335 + x343 + x344 + x346 + x353 ++ x356 + x358 + x362 + x372 + x388 + x389 + x390 + x392 + x394 + x395 ++ x396 + x397 + x398 + x399 + x400 + x405 + x451 + x453 + x478 + x481 + <= 1 + +x8 + x37 + x41 + x50 + x51 + x52 + x53 + x58 + x102 + x104 ++ x105 + x116 + x117 + x119 + x120 + x121 + x124 + x133 + x135 + x161 ++ x175 + x191 + x192 + x193 + x202 + x203 + x204 + x205 + x206 + x219 ++ x231 + x242 + x243 + x246 + x251 + x262 + x277 + x278 + x279 + x280 ++ x289 + x290 + x293 + x298 + x303 + x344 + x346 + x353 + x372 + x390 ++ x392 + x396 + x397 + x398 + x399 + x405 + x413 <= 1 + +x9 + x12 + x13 + x37 + x43 + x50 + x51 + x58 + x60 + x104 ++ x105 + x108 + x110 + x120 + x121 + x122 + x124 + x135 + x153 + x157 ++ x161 + x173 + x175 + x189 + x190 + x191 + x192 + x202 + x204 + x205 ++ x206 + x231 + x251 + x262 + x279 + x280 + x284 + x289 + x293 + x298 ++ x300 + x346 + x351 + x353 + x355 + x372 + x392 + x396 + x399 + x405 ++ x413 <= 1 + +x9 + x12 + x13 + x14 + x37 + x43 + x50 + x51 + x52 + x53 ++ x55 + x58 + x60 + x83 + x84 + x101 + x104 + x105 + x107 + x108 ++ x110 + x112 + x120 + x121 + x122 + x123 + x124 + x135 + x139 + x151 ++ x157 + x158 + x159 + x160 + x173 + x174 + x175 + x189 + x190 + x191 ++ x192 + x194 + x202 + x204 + x205 + x206 + x207 + x249 + x277 + x279 ++ x280 + x284 + x289 + x291 + x292 + x293 + x298 + x300 + x302 + x304 ++ x305 + x306 + x333 + x351 + x352 + x353 + x355 + x356 + x358 + x362 ++ x372 + x392 + x396 + x399 + x444 <= 1 + +x4 + x9 + x12 + x13 + x14 + x37 + x55 + x57 + x58 + x59 ++ x60 + x84 + x101 + x104 + x105 + x109 + x110 + x112 + x120 + x122 ++ x123 + x124 + x136 + x139 + x151 + x158 + x160 + x173 + x174 + x175 ++ x189 + x190 + x191 + x192 + x194 + x202 + x206 + x233 + x249 + x261 ++ x277 + x278 + x279 + x289 + x292 + x293 + x298 + x300 + x302 + x304 ++ x305 + x333 + x351 + x352 + x358 + x361 + x362 + x368 + x372 + x392 ++ x399 <= 1 + +x1 + x35 + x49 + x50 + x59 + x63 + x68 + x94 + x103 + x105 ++ x113 + x114 + x117 + x120 + x144 + x148 + x207 + x252 + x303 + x307 ++ x311 + x358 + x359 + x393 + x395 + x400 + x403 <= 1 + +x1 + x35 + x50 + x59 + x63 + x67 + x68 + x94 + x101 + x103 ++ x113 + x114 + x115 + x116 + x117 + x120 + x121 + x140 + x148 + x207 ++ x250 + x252 + x277 + x279 + x293 + x303 + x311 + x359 + x395 + x400 ++ x431 + x433 + x434 + x436 <= 1 + +x35 + x49 + x59 + x67 + x94 + x113 + x115 + x116 + x117 + x147 ++ x148 + x205 + x207 + x248 + x250 + x252 + x277 + x279 + x303 + x311 ++ x357 + x359 + x366 + x393 + x395 + x400 + x433 + x436 + x459 <= 1 + +x4 + x34 + x35 + x49 + x67 + x97 + x116 + x117 + x204 + x207 ++ x303 + x311 + x359 + x395 + x400 + x430 + x459 <= 1 + +x8 + x14 + x37 + x38 + x41 + x58 + x102 + x103 + x105 + x110 ++ x116 + x119 + x120 + x121 + x123 + x124 + x181 + x193 + x202 + x203 ++ x205 + x206 + x231 + x243 + x251 + x266 + x268 + x269 + x277 + x278 ++ x279 + x280 + x301 + x303 + x335 + x346 + x388 + x389 + x390 + x392 ++ x395 + x397 + x398 + x399 + x400 <= 1 + +x8 + x14 + x30 + x37 + x38 + x41 + x50 + x51 + x52 + x53 ++ x54 + x102 + x103 + x104 + x105 + x116 + x117 + x119 + x120 + x121 ++ x123 + x124 + x133 + x135 + x161 + x166 + x191 + x193 + x202 + x203 ++ x205 + x231 + x242 + x243 + x246 + x247 + x264 + x265 + x266 + x268 ++ x269 + x277 + x278 + x279 + x280 + x289 + x290 + x300 + x303 + x311 ++ x335 + x343 + x346 + x351 + x353 + x359 + x372 + x388 + x389 + x390 ++ x392 + x395 + x397 + x398 + x399 + x400 + x405 <= 1 + +x14 + x37 + x38 + x41 + x50 + x51 + x52 + x53 + x58 + x102 ++ x105 + x113 + x117 + x119 + x120 + x121 + x123 + x124 + x161 + x190 ++ x191 + x192 + x193 + x202 + x203 + x205 + x206 + x230 + x242 + x243 ++ x246 + x251 + x269 + x277 + x278 + x279 + x280 + x289 + x298 + x300 ++ x303 + x322 + x335 + x346 + x351 + x352 + x353 + x372 + x389 + x390 ++ x392 + x395 + x399 + x400 + x430 <= 1 + +x12 + x13 + x14 + x37 + x41 + x50 + x51 + x56 + x60 + x102 ++ x105 + x119 + x120 + x121 + x124 + x151 + x153 + x157 + x189 + x190 ++ x191 + x192 + x202 + x205 + x206 + x243 + x262 + x279 + x289 + x293 ++ x298 + x300 + x303 + x335 + x351 + x352 + x353 + x355 + x362 + x368 ++ x372 + x389 + x396 + x399 + x413 <= 1 + +x12 + x13 + x14 + x37 + x43 + x50 + x58 + x59 + x60 + x102 ++ x104 + x105 + x107 + x110 + x112 + x114 + x119 + x120 + x122 + x124 ++ x139 + x141 + x151 + x160 + x174 + x175 + x189 + x190 + x192 + x194 ++ x202 + x205 + x206 + x246 + x262 + x277 + x279 + x280 + x289 + x293 ++ x298 + x300 + x335 + x351 + x352 + x355 + x362 + x368 + x372 + x396 ++ x399 + x413 <= 1 + +x9 + x13 + x37 + x58 + x59 + x60 + x85 + x104 + x112 + x114 ++ x120 + x122 + x124 + x136 + x139 + x141 + x151 + x158 + x160 + x174 ++ x189 + x190 + x192 + x202 + x206 + x233 + x246 + x249 + x261 + x289 ++ x300 + x302 + x304 + x314 + x352 + x358 + x361 + x368 + x372 + x399 ++ x413 <= 1 + +x0 + x1 + x2 <= 1 + +x3 + x4 + x5 + x6 + x7 + x8 <= 1 + +x9 + x10 + x11 + x12 + x13 + x14 <= 1 + +x15 + x16 + x17 + x18 + x19 + x20 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 <= 1 + +x27 + x28 + x29 + x30 + x31 + x32 <= 1 + +x33 + x34 + x35 + x36 + x37 + x38 <= 1 + +x40 + x41 + x42 + x43 + x44 + x45 <= 1 + +x46 + x47 <= 1 + +x49 + x50 + x51 + x52 + x53 + x54 <= 1 + +x55 + x56 + x57 + x58 + x59 + x60 <= 1 + +x61 + x62 <= 1 + +x63 + x64 + x65 + x66 + x67 + x68 <= 1 + +x69 + x70 + x71 + x72 + x73 + x74 <= 1 + +x75 + x76 + x77 + x78 + x79 + x80 <= 1 + +x81 + x82 + x83 + x84 + x85 + x86 <= 1 + +x87 + x88 + x89 + x90 + x91 + x92 <= 1 + +x93 + x94 + x95 + x96 + x97 + x98 <= 1 + +x99 + x100 <= 1 + +x101 + x102 + x103 + x104 + x105 + x106 <= 1 + +x107 + x108 + x109 + x110 + x111 + x112 <= 1 + +x113 + x114 + x115 + x116 + x117 + x118 <= 1 + +x119 + x120 + x121 + x122 + x123 + x124 <= 1 + +x125 + x126 + x127 + x128 + x129 + x130 <= 1 + +x131 + x132 + x133 + x134 + x135 + x136 <= 1 + +x137 + x138 + x139 + x140 + x141 + x142 <= 1 + +x144 + x145 + x146 + x147 + x148 <= 1 + +x149 + x150 + x151 + x152 + x153 + x154 <= 1 + +x155 + x156 <= 1 + +x157 + x158 + x159 + x160 + x161 <= 1 + +x162 + x163 + x164 + x165 + x166 + x167 <= 1 + +x168 + x169 + x170 + x171 + x172 <= 1 + +x173 + x174 + x175 + x176 + x177 + x178 <= 1 + +x179 + x180 <= 1 + +x181 + x182 <= 1 + +x183 + x184 + x185 + x186 + x187 + x188 <= 1 + +x189 + x190 + x191 + x192 + x193 + x194 <= 1 + +x195 + x196 <= 1 + +x197 + x198 <= 1 + +x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x208 + x209 + x210 + x211 + x212 + x213 <= 1 + +x214 + x215 + x216 + x217 <= 1 + +x218 + x219 + x220 + x221 + x222 + x223 <= 1 + +x224 + x225 <= 1 + +x226 + x227 + x228 + x229 <= 1 + +x230 + x231 + x232 + x233 + x234 + x235 <= 1 + +x236 + x237 + x238 + x239 + x240 + x241 <= 1 + +x242 + x243 + x244 + x245 + x246 + x247 <= 1 + +x248 + x249 + x250 + x251 + x252 + x253 <= 1 + +x254 + x255 + x256 + x257 <= 1 + +x258 + x259 + x260 + x261 + x262 + x263 <= 1 + +x264 + x265 + x266 + x267 + x268 + x269 <= 1 + +x270 + x271 + x272 + x273 + x274 <= 1 + +x275 + x276 + x277 + x278 + x279 + x280 <= 1 + +x281 + x282 <= 1 + +x283 + x284 + x285 + x286 + x287 + x288 <= 1 + +x289 + x290 + x291 + x292 + x293 + x294 <= 1 + +x295 + x296 + x297 + x298 + x299 + x300 <= 1 + +x301 + x302 + x303 + x304 + x305 + x306 <= 1 + +x307 + x308 + x309 + x310 + x311 + x312 <= 1 + +x313 + x314 + x315 + x316 + x317 + x318 <= 1 + +x319 + x320 + x321 + x322 + x323 + x324 <= 1 + +x325 + x326 + x327 + x328 + x329 + x330 <= 1 + +x331 + x332 + x333 + x334 + x335 + x336 <= 1 + +x337 + x338 + x339 + x340 + x341 + x342 <= 1 + +x343 + x344 <= 1 + +x345 + x346 + x347 + x348 + x349 + x350 <= 1 + +x351 + x352 + x353 + x354 + x355 + x356 <= 1 + +x357 + x358 + x359 + x360 + x361 + x362 <= 1 + +x363 + x364 + x365 + x366 + x367 <= 1 + +x368 + x369 + x370 + x371 + x372 + x373 <= 1 + +x374 + x375 + x376 <= 1 + +x377 + x378 + x379 + x380 + x381 + x382 <= 1 + +x383 + x384 + x385 + x386 + x387 + x388 <= 1 + +x389 + x390 + x391 + x392 + x393 + x394 <= 1 + +x395 + x396 + x397 + x398 + x399 + x400 <= 1 + +x402 + x403 + x404 + x405 + x406 + x407 <= 1 + +x408 + x409 + x410 <= 1 + +x411 + x412 + x413 + x414 + x415 + x416 <= 1 + +x417 + x418 + x419 + x420 + x421 + x422 <= 1 + +x423 + x424 <= 1 + +x425 + x426 + x427 + x428 + x429 + x430 <= 1 + +x431 + x432 + x433 + x434 + x435 + x436 <= 1 + +x437 + x438 + x439 + x440 + x441 + x442 <= 1 + +x443 + x444 + x445 + x446 + x447 + x448 <= 1 + +x449 + x450 + x451 + x452 + x453 <= 1 + +x454 + x455 + x456 + x457 + x458 + x459 <= 1 + +x460 + x461 + x462 <= 1 + +x463 + x464 + x465 + x466 + x467 + x468 <= 1 + +x469 + x470 + x471 <= 1 + +x472 + x473 + x474 + x475 + x476 + x477 <= 1 + +x478 + x479 + x480 + x481 <= 1 + +x482 + x483 + x484 + x485 + x486 + x487 <= 1 + +x488 + x489 + x490 + x491 <= 1 + +x492 + x493 <= 1 + +x494 + x495 + x496 + x497 + x498 + x499 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 + + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0009.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0009.lp new file mode 100755 index 000000000..d61ccbf65 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0009.lp @@ -0,0 +1,1104 @@ +max + +352.712x0 + 504.549x1 + 498.977x2 + 442.242x3 + 430.055x4 + 423.839x5 + 113.79x6 + 89.6998x7 + 361.116x8 + 479.989x9 + +454.276x10 + 446.303x11 + 421.694x12 + 91.8234x13 + 230.112x14 + 287.203x15 + 214.108x16 + 137.072x17 + 87.2357x18 + 113.476x19 + +98.3395x20 + 460.649x21 + 653.977x22 + 566.674x23 + 503.674x24 + 471.206x25 + 460.637x26 + 1017.66x27 + 1133.39x28 + 1113.18x29 + +1065.64x30 + 1049.2x31 + 1039.35x32 + 456.05x33 + 456.158x34 + 434.556x35 + 421.913x36 + 388.66x37 + 360.211x38 + 651.697x39 + +694.004x40 + 627.231x41 + 599.541x42 + 545.936x43 + 502.347x44 + 1463.29x45 + 1826.4x46 + 1774.46x47 + 1754.14x48 + 1708.68x49 + +1679.73x50 + 2922.27x51 + 3065.54x52 + 3032.56x53 + 2983x54 + 2980.51x55 + 2967.39x56 + 156.769x57 + 100.355x58 + 124.634x59 + +605.382x60 + 553.463x61 + 548.651x62 + 524.858x63 + 492.89x64 + 449.166x65 + 694.966x66 + 948.576x67 + 755.153x68 + 714.308x69 + +703.603x70 + 667.449x71 + 223.746x72 + 321.053x73 + 260.999x74 + 187.363x75 + 72.2648x76 + 107.555x77 + 425.928x78 + 382.288x79 + +357.851x80 + 357.038x81 + 395.847x82 + 557.438x83 + 461.182x84 + 413.397x85 + 308.324x86 + 255.772x87 + 101.573x88 + 1195.54x89 + +1786.62x90 + 1640.81x91 + 1630.37x92 + 1621.05x93 + 1617.61x94 + 1337.51x95 + 1465.94x96 + 1295.2x97 + 1269.24x98 + 1267.61x99 + +1256.73x100 + 871.402x101 + 1157.66x102 + 1063.29x103 + 1063.18x104 + 1054.27x105 + 1050.04x106 + 530.165x107 + 628.668x108 + 598.421x109 + +579.75x110 + 578.074x111 + 485.593x112 + 46.0455x113 + 93.8792x114 + 137.764x115 + 127.422x116 + 99.1527x117 + 263.806x118 + 332.548x119 + +317.05x120 + 313.612x121 + 261.696x122 + 242.522x123 + 742.734x124 + 631.453x125 + 622.726x126 + 607.797x127 + 606.107x128 + 581.829x129 + +153.247x130 + 204.002x131 + 190.88x132 + 206.978x133 + 235.932x134 + 231.132x135 + 202.224x136 + 230.92x137 + 311.098x138 + 256.108x139 + +226.605x140 + 214.792x141 + 26.8181x142 + 938.051x143 + 1032.29x144 + 1009.65x145 + 1006.73x146 + 991.151x147 + 965.842x148 + 1530.55x149 + +1694.6x150 + 1671.31x151 + 1666.51x152 + 1634.82x153 + 1628.14x154 + 827.985x155 + 1067.84x156 + 897.63x157 + 881.024x158 + 873.791x159 + +856.08x160 + 811.239x161 + 912.349x162 + 905.247x163 + 901.07x164 + 875.558x165 + 779.757x166 + 1028.91x167 + 1325.94x168 + 1310.4x169 + +1268.22x170 + 1247.48x171 + 1235.96x172 + 855.391x173 + 1115.54x174 + 1086.04x175 + 1083.05x176 + 1079.31x177 + 1012.8x178 + 587.059x179 + +854.518x180 + 832.97x181 + 778.853x182 + 750.284x183 + 586.278x184 + 357.991x185 + 454.76x186 + 332.222x187 + 299.744x188 + 252.256x189 + +850.533x190 + 969.08x191 + 901.189x192 + 892.013x193 + 854.394x194 + 845.187x195 + 730.033x196 + 963.868x197 + 829.554x198 + 811.315x199 + +784.941x200 + 780.861x201 + 1247.04x202 + 1350.68x203 + 1308.61x204 + 1296.84x205 + 1249.3x206 + 1247.1x207 + 919.068x208 + 997.482x209 + +975.858x210 + 949.754x211 + 936.253x212 + 903.975x213 + 593.151x214 + 675.383x215 + 653.623x216 + 643.034x217 + 637.719x218 + 558.881x219 + +893.631x220 + 902.201x221 + 886.164x222 + 846.404x223 + 812.976x224 + 756.969x225 + 450.381x226 + 602.313x227 + 548.434x228 + 508.433x229 + +484.468x230 + 466.341x231 + 877.846x232 + 1161.05x233 + 1042.79x234 + 1018.98x235 + 974.17x236 + 963.758x237 + 2335.75x238 + 2813.29x239 + +2779.18x240 + 2759.45x241 + 2736.74x242 + 2714.7x243 + 116.359x244 + 59.6227x245 + 27.0194x246 + 930.964x247 + 944.644x248 + 906.878x249 + +906.08x250 + 894.491x251 + 860.571x252 + 1049.91x253 + 1007.19x254 + 1000.55x255 + 997.327x256 + 951.299x257 + 937.154x258 + 2042.99x259 + +2274.4x260 + 2255.04x261 + 2245.05x262 + 2223.84x263 + 2213.63x264 + 1078.71x265 + 1391.87x266 + 1277.42x267 + 1246.4x268 + 1244.9x269 + +1224.6x270 + 225.691x271 + 226.331x272 + 224.158x273 + 111.909x274 + 1162.5x275 + 1343.04x276 + 1327.76x277 + 1289.42x278 + 1273.71x279 + +1258.03x280 + 541.001x281 + 470.617x282 + 470.297x283 + 439.232x284 + 2032.51x285 + 2207.54x286 + 2204.57x287 + 2195.08x288 + 2179.64x289 + +2171.61x290 + 1805.93x291 + 2450.04x292 + 2350.19x293 + 2265.65x294 + 2234.02x295 + 2169.13x296 + 910.538x297 + 1207.83x298 + 1141.1x299 + +1128.39x300 + 1066.3x301 + 1061.4x302 + 187.88x303 + 165.886x304 + 152.816x305 + 156.757x306 + 171.858x307 + 194.609x308 + 215.301x309 + +257.276x310 + 175.759x311 + 148.609x312 + 1218.4x313 + 1373.23x314 + 1349.84x315 + 1337.55x316 + 1330.79x317 + 1317.49x318 + 28.9601x319 + +994.738x320 + 1082.1x321 + 1078.15x322 + 1053.63x323 + 1044.9x324 + 1034.19x325 + 221.965x326 + 253.092x327 + 227.439x328 + 1089.25x329 + +1311.54x330 + 1303.24x331 + 1286.85x332 + 1276.56x333 + 1250.14x334 + 654.037x335 + 756.358x336 + 721.005x337 + 695.491x338 + 670.151x339 + +655.077x340 + 113.003x341 + 113.996x342 + 110.764x343 + 188.789x344 + 239.138x345 + 106.793x346 + 914.58x347 + 1053.6x348 + 999.01x349 + +986.88x350 + 962.036x351 + 959.772x352 + 231.319x353 + 273.092x354 + 229.503x355 + 195.642x356 + 1251.56x357 + 1607x358 + 1570.79x359 + +1442.49x360 + 1381.09x361 + 1377.49x362 + 1218.97x363 + 1370.7x364 + 1353.72x365 + 1307.79x366 + 1295.83x367 + 1294.48x368 + 106.91x369 + +1678.9x370 + 1876.02x371 + 1832.56x372 + 1770.51x373 + 1768.66x374 + 1759.49x375 + 1145.64x376 + 1582.47x377 + 1562.46x378 + 1556.3x379 + +1491.59x380 + 1442.48x381 + 1349.99x382 + 1948.34x383 + 1737.09x384 + 1730.89x385 + 1708.39x386 + 1617.38x387 + 265.825x388 + 332.746x389 + +199.419x390 + 260.675x391 + 200.094x392 + 196.41x393 + 175.656x394 + 187.571x395 + 265.571x396 + 210.832x397 + 170.761x398 + 217.786x399 + +980.959x400 + 942.556x401 + 895.266x402 + 866.976x403 + 855.352x404 + 853.592x405 + 110.942x406 + 1215.49x407 + 1458.29x408 + 1364.06x409 + +1318.64x410 + 1205.19x411 + 1151.91x412 + 548.012x413 + 743.446x414 + 725.098x415 + 689.285x416 + 673.752x417 + 628.612x418 + 570.046x419 + +590.806x420 + 572.152x421 + 567.223x422 + 564.433x423 + 524.362x424 + 174.43x425 + 119.284x426 + 90.7625x427 + 1149.59x428 + 1486.55x429 + +1365.54x430 + 1343.27x431 + 1331.37x432 + 1321.6x433 + 141.002x434 + 201.742x435 + 104.128x436 + 828.114x437 + 907.9x438 + 877.777x439 + +872.868x440 + 865.035x441 + 841.191x442 + 514.869x443 + 740.963x444 + 731.326x445 + 655.101x446 + 646.252x447 + 646.248x448 + 126.098x449 + +171.064x450 + 62.2518x451 + 8.68677x452 + 168.425x453 + 120.817x454 + 249.061x455 + 339.101x456 + 313.539x457 + 206.652x458 + 235.286x459 + +224.611x460 + 185.031x461 + 138.051x462 + 198.098x463 + 188.907x464 + 92.3129x465 + 1309.62x466 + 1404.55x467 + 1333.52x468 + 1305.82x469 + +1286.04x470 + 1285.9x471 + 194.336x472 + 154.11x473 + 976.269x474 + 1178.14x475 + 1129.99x476 + 1123.08x477 + 1082.06x478 + 1049.25x479 + +512.495x480 + 545.564x481 + 459.542x482 + 369.203x483 + 368.187x484 + 258.248x485 + 210.89x486 + 222.109x487 + 212.645x488 + 1141.67x489 + +1123.35x490 + 1075.3x491 + 1032.5x492 + 1010.34x493 + 995.476x494 + 1102.1x495 + 1491.82x496 + 1490.93x497 + 1473.35x498 + 1413.2x499 + +1390.46x500 + +st + +x52 + x55 + x98 + x151 + x153 + x200 + x241 + x243 + x259 + x264 ++ x285 + x288 + x289 + x292 + x294 + x295 + x298 + x309 + x310 + x311 ++ x312 + x347 + x349 + x352 <= 1 + +x50 + x52 + x55 + x98 + x151 + x154 + x155 + x157 + x158 + x161 ++ x164 + x165 + x174 + x178 + x200 + x202 + x214 + x219 + x239 + x243 ++ x259 + x264 + x285 + x286 + x288 + x289 + x290 + x293 + x294 + x295 ++ x309 + x310 + x311 + x312 + x347 + x348 + x349 + x350 + x351 + x358 ++ x360 + x364 + x368 + x426 + x490 + x497 <= 1 + +x44 + x50 + x52 + x55 + x94 + x95 + x96 + x97 + x98 + x109 ++ x149 + x154 + x155 + x156 + x157 + x158 + x161 + x164 + x165 + x178 ++ x199 + x202 + x203 + x214 + x216 + x218 + x219 + x251 + x253 + x256 ++ x259 + x260 + x261 + x262 + x263 + x264 + x277 + x285 + x286 + x287 ++ x288 + x289 + x290 + x292 + x293 + x294 + x295 + x296 + x298 + x299 ++ x300 + x302 + x309 + x310 + x313 + x315 + x347 + x348 + x349 + x350 ++ x351 + x352 + x358 + x360 + x364 + x368 + x408 + x410 + x418 + x425 ++ x426 + x470 + x489 + x490 + x492 + x493 + x494 <= 1 + +x2 + x46 + x48 + x50 + x95 + x96 + x98 + x151 + x154 + x155 ++ x156 + x157 + x158 + x162 + x164 + x165 + x166 + x178 + x197 + x202 ++ x203 + x204 + x206 + x214 + x215 + x216 + x218 + x219 + x239 + x240 ++ x241 + x242 + x247 + x248 + x249 + x250 + x251 + x253 + x256 + x259 ++ x260 + x261 + x262 + x263 + x264 + x266 + x275 + x277 + x285 + x286 ++ x287 + x288 + x289 + x290 + x292 + x293 + x294 + x295 + x296 + x297 ++ x298 + x299 + x300 + x309 + x313 + x314 + x315 + x347 + x350 + x351 ++ x352 + x358 + x364 + x365 + x368 + x372 + x385 + x408 + x418 + x442 ++ x469 + x471 + x472 + x489 + x490 + x492 + x493 + x494 + x497 <= 1 + +x2 + x15 + x46 + x48 + x50 + x51 + x52 + x53 + x55 + x69 ++ x93 + x95 + x96 + x98 + x155 + x156 + x157 + x158 + x162 + x171 ++ x197 + x200 + x202 + x203 + x204 + x205 + x206 + x207 + x228 + x229 ++ x233 + x236 + x239 + x240 + x241 + x242 + x247 + x248 + x249 + x250 ++ x251 + x252 + x253 + x254 + x255 + x256 + x258 + x259 + x260 + x261 ++ x262 + x263 + x264 + x266 + x277 + x280 + x285 + x286 + x287 + x288 ++ x289 + x290 + x291 + x292 + x293 + x294 + x295 + x296 + x299 + x313 ++ x314 + x315 + x347 + x350 + x351 + x352 + x358 + x359 + x366 + x371 ++ x372 + x385 + x400 + x401 + x402 + x403 + x405 + x418 + x442 + x468 ++ x469 + x471 + x489 + x490 + x492 + x493 + x494 + x497 <= 1 + +x2 + x48 + x51 + x52 + x55 + x93 + x95 + x96 + x156 + x157 ++ x158 + x171 + x177 + x200 + x204 + x222 + x224 + x242 + x251 + x253 ++ x254 + x255 + x258 + x259 + x260 + x261 + x262 + x263 + x277 + x280 ++ x285 + x287 + x288 + x290 + x293 + x296 + x299 + x305 + x331 + x358 ++ x359 + x366 + x371 + x372 + x401 + x405 + x407 + x410 + x411 + x469 ++ x489 + x492 + x494 <= 1 + +x2 + x29 + x30 + x48 + x52 + x54 + x55 + x94 + x96 + x98 ++ x119 + x171 + x174 + x177 + x189 + x196 + x197 + x200 + x202 + x204 ++ x205 + x206 + x220 + x222 + x223 + x224 + x233 + x234 + x235 + x236 ++ x237 + x249 + x254 + x255 + x258 + x259 + x260 + x261 + x262 + x263 ++ x264 + x277 + x280 + x285 + x288 + x290 + x293 + x299 + x303 + x305 ++ x371 + x401 + x404 + x405 + x407 + x410 + x411 + x439 + x442 <= 1 + +x0 + x2 + x29 + x55 + x94 + x96 + x98 + x185 + x189 + x200 ++ x202 + x203 + x205 + x206 + x220 + x222 + x224 + x232 + x233 + x234 ++ x235 + x236 + x237 + x242 + x247 + x249 + x251 + x252 + x254 + x259 ++ x260 + x261 + x263 + x264 + x277 + x280 + x285 + x286 + x287 + x288 ++ x289 + x290 + x303 + x304 + x313 + x314 + x316 + x358 + x366 + x371 ++ x381 + x383 + x400 + x401 + x404 + x405 + x407 + x409 + x411 + x439 ++ x471 + x477 + x493 <= 1 + +x55 + x189 + x200 + x202 + x203 + x205 + x206 + x252 + x254 + x259 ++ x260 + x261 + x263 + x264 + x280 + x285 + x286 + x290 + x300 + x304 ++ x314 + x316 + x358 + x376 + x407 + x409 + x411 + x471 <= 1 + +x176 + x202 + x205 + x206 + x217 + x232 + x235 + x252 + x259 + x260 ++ x261 + x263 + x264 + x285 + x286 + x314 + x316 + x376 + x385 + x400 ++ x403 + x407 + x409 + x411 + x412 + x433 + x482 + x484 <= 1 + +x42 + x52 + x55 + x98 + x178 + x200 + x239 + x240 + x241 + x243 ++ x262 + x285 + x288 + x292 + x293 + x294 + x295 + x296 + x298 + x311 ++ x312 + x347 + x349 + x352 + x360 + x368 <= 1 + +x28 + x42 + x47 + x48 + x52 + x55 + x81 + x98 + x111 + x150 ++ x151 + x154 + x157 + x158 + x161 + x163 + x164 + x165 + x178 + x200 ++ x204 + x206 + x214 + x219 + x239 + x240 + x241 + x242 + x243 + x259 ++ x285 + x288 + x289 + x290 + x292 + x293 + x294 + x295 + x296 + x298 ++ x300 + x301 + x302 + x309 + x310 + x311 + x312 + x331 + x347 + x348 ++ x349 + x350 + x351 + x352 + x358 + x359 + x360 + x364 + x367 + x368 ++ x386 + x408 + x410 + x413 + x427 + x467 + x479 + x490 + x491 + x497 + <= 1 + +x44 + x45 + x46 + x47 + x48 + x50 + x52 + x55 + x56 + x81 ++ x96 + x98 + x100 + x149 + x151 + x154 + x155 + x157 + x158 + x161 ++ x162 + x163 + x164 + x165 + x168 + x178 + x199 + x202 + x204 + x206 ++ x214 + x216 + x217 + x218 + x219 + x239 + x240 + x241 + x242 + x243 ++ x251 + x258 + x259 + x260 + x261 + x262 + x263 + x268 + x275 + x277 ++ x288 + x289 + x290 + x292 + x293 + x294 + x295 + x296 + x298 + x299 ++ x300 + x301 + x302 + x309 + x310 + x311 + x314 + x347 + x348 + x349 ++ x350 + x351 + x352 + x358 + x359 + x360 + x364 + x365 + x367 + x368 ++ x372 + x373 + x386 + x408 + x410 + x413 + x418 + x425 + x427 + x473 ++ x479 + x489 + x490 + x492 + x493 + x497 <= 1 + +x30 + x41 + x45 + x46 + x47 + x48 + x50 + x51 + x52 + x55 ++ x90 + x96 + x98 + x105 + x151 + x154 + x156 + x157 + x162 + x163 ++ x164 + x165 + x166 + x178 + x197 + x202 + x203 + x204 + x205 + x214 ++ x215 + x216 + x218 + x219 + x221 + x230 + x239 + x240 + x241 + x247 ++ x248 + x249 + x250 + x251 + x253 + x254 + x255 + x256 + x258 + x259 ++ x260 + x261 + x262 + x263 + x264 + x266 + x268 + x275 + x277 + x280 ++ x285 + x286 + x287 + x288 + x289 + x290 + x291 + x292 + x293 + x294 ++ x295 + x296 + x297 + x298 + x299 + x300 + x301 + x302 + x313 + x314 ++ x315 + x317 + x330 + x347 + x349 + x350 + x351 + x352 + x358 + x359 ++ x360 + x364 + x365 + x367 + x368 + x370 + x372 + x384 + x386 + x387 ++ x407 + x408 + x411 + x431 + x468 + x469 + x471 + x472 + x473 + x489 ++ x490 + x491 + x492 + x493 + x494 + x497 <= 1 + +x30 + x51 + x52 + x53 + x54 + x55 + x69 + x93 + x121 + x151 ++ x157 + x162 + x165 + x171 + x174 + x178 + x197 + x202 + x203 + x204 ++ x205 + x206 + x207 + x215 + x216 + x218 + x221 + x222 + x223 + x228 ++ x229 + x233 + x236 + x237 + x240 + x247 + x248 + x249 + x250 + x251 ++ x252 + x253 + x254 + x255 + x256 + x258 + x259 + x260 + x261 + x262 ++ x263 + x264 + x266 + x277 + x280 + x285 + x286 + x287 + x288 + x289 ++ x290 + x291 + x292 + x293 + x294 + x295 + x296 + x307 + x308 + x329 ++ x347 + x350 + x351 + x372 + x385 + x387 + x401 + x402 + x403 + x404 ++ x405 + x407 + x408 + x411 + x418 + x434 + x435 + x442 + x468 + x469 ++ x471 + x489 + x490 + x492 + x493 + x494 + x497 <= 1 + +x29 + x30 + x46 + x50 + x52 + x54 + x55 + x69 + x96 + x98 ++ x150 + x156 + x157 + x168 + x171 + x174 + x186 + x197 + x200 + x202 ++ x203 + x204 + x205 + x206 + x207 + x215 + x220 + x221 + x222 + x223 ++ x224 + x228 + x233 + x235 + x236 + x237 + x242 + x247 + x248 + x249 ++ x250 + x251 + x252 + x253 + x254 + x255 + x256 + x257 + x258 + x259 ++ x260 + x261 + x262 + x263 + x264 + x275 + x277 + x280 + x285 + x286 ++ x287 + x288 + x289 + x290 + x291 + x292 + x293 + x294 + x295 + x296 ++ x299 + x308 + x313 + x314 + x315 + x317 + x336 + x350 + x352 + x359 ++ x366 + x371 + x400 + x401 + x402 + x403 + x404 + x407 + x408 + x410 ++ x411 + x418 + x435 + x442 + x446 + x466 + x468 + x469 + x471 + x477 ++ x489 + x492 + x493 + x494 <= 1 + +x2 + x14 + x15 + x29 + x30 + x49 + x52 + x54 + x55 + x94 ++ x96 + x98 + x156 + x157 + x171 + x174 + x177 + x185 + x186 + x187 ++ x189 + x197 + x198 + x200 + x202 + x203 + x204 + x205 + x206 + x207 ++ x220 + x221 + x222 + x223 + x224 + x232 + x233 + x234 + x235 + x236 ++ x237 + x242 + x244 + x247 + x249 + x250 + x251 + x252 + x253 + x254 ++ x256 + x258 + x259 + x260 + x261 + x262 + x263 + x264 + x275 + x277 ++ x280 + x285 + x286 + x287 + x288 + x289 + x290 + x293 + x299 + x313 ++ x314 + x358 + x366 + x371 + x381 + x383 + x400 + x401 + x402 + x403 ++ x404 + x405 + x407 + x409 + x410 + x411 + x439 + x442 + x446 + x469 ++ x471 + x477 + x489 + x492 + x493 <= 1 + +x0 + x2 + x5 + x29 + x47 + x49 + x52 + x55 + x88 + x96 ++ x153 + x171 + x173 + x174 + x185 + x186 + x187 + x188 + x203 + x205 ++ x206 + x207 + x232 + x233 + x234 + x235 + x237 + x242 + x247 + x249 ++ x250 + x252 + x259 + x260 + x261 + x262 + x263 + x264 + x280 + x285 ++ x286 + x287 + x289 + x290 + x313 + x314 + x366 + x371 + x383 + x385 ++ x400 + x401 + x402 + x403 + x404 + x405 + x411 + x433 + x446 + x477 + <= 1 + +x5 + x27 + x47 + x49 + x52 + x55 + x153 + x185 + x186 + x187 ++ x188 + x205 + x206 + x217 + x232 + x233 + x234 + x235 + x237 + x259 ++ x260 + x261 + x262 + x263 + x280 + x285 + x286 + x287 + x289 + x290 ++ x314 + x376 + x383 + x385 + x400 + x401 + x402 + x403 + x404 + x405 ++ x407 + x409 + x411 + x412 + x433 <= 1 + +x49 + x55 + x175 + x176 + x178 + x188 + x202 + x206 + x217 + x232 ++ x234 + x235 + x237 + x252 + x259 + x260 + x263 + x280 + x285 + x286 ++ x383 + x385 + x400 + x403 + x407 + x409 + x411 + x412 + x433 + x482 ++ x484 <= 1 + +x39 + x40 + x41 + x42 + x44 + x46 + x47 + x52 + x55 + x56 ++ x78 + x79 + x80 + x100 + x104 + x105 + x149 + x150 + x151 + x152 ++ x154 + x161 + x162 + x163 + x164 + x165 + x170 + x176 + x196 + x198 ++ x199 + x203 + x207 + x217 + x230 + x239 + x240 + x241 + x242 + x243 ++ x266 + x281 + x282 + x284 + x285 + x288 + x292 + x293 + x294 + x295 ++ x296 + x298 + x300 + x301 + x302 + x317 + x326 + x327 + x330 + x331 ++ x332 + x333 + x347 + x348 + x349 + x350 + x351 + x352 + x358 + x359 ++ x360 + x363 + x364 + x365 + x367 + x368 + x372 + x373 + x374 + x375 ++ x383 + x384 + x387 + x408 + x410 + x423 + x467 + x468 + x469 + x476 ++ x480 + x484 + x485 + x489 + x490 + x491 <= 1 + +x39 + x40 + x42 + x44 + x46 + x48 + x50 + x52 + x55 + x56 ++ x78 + x79 + x81 + x96 + x100 + x104 + x105 + x149 + x150 + x151 ++ x154 + x155 + x158 + x161 + x162 + x163 + x164 + x165 + x168 + x170 ++ x199 + x203 + x204 + x214 + x217 + x218 + x231 + x239 + x240 + x241 ++ x242 + x243 + x248 + x250 + x268 + x285 + x288 + x289 + x290 + x292 ++ x293 + x294 + x295 + x296 + x298 + x299 + x300 + x301 + x302 + x310 ++ x311 + x317 + x326 + x328 + x330 + x331 + x347 + x348 + x349 + x350 ++ x351 + x352 + x358 + x359 + x360 + x363 + x364 + x365 + x367 + x368 ++ x372 + x373 + x375 + x386 + x387 + x408 + x410 + x431 + x454 + x467 ++ x469 + x471 + x479 + x484 + x489 + x490 + x491 + x497 <= 1 + +x41 + x45 + x46 + x47 + x48 + x50 + x52 + x55 + x81 + x90 ++ x98 + x105 + x145 + x149 + x151 + x154 + x156 + x158 + x161 + x162 ++ x164 + x165 + x168 + x170 + x199 + x202 + x203 + x204 + x205 + x214 ++ x215 + x216 + x217 + x218 + x219 + x231 + x239 + x240 + x241 + x242 ++ x243 + x247 + x248 + x249 + x250 + x251 + x256 + x260 + x261 + x262 ++ x263 + x264 + x266 + x268 + x277 + x278 + x284 + x285 + x288 + x289 ++ x290 + x292 + x293 + x294 + x295 + x296 + x297 + x299 + x302 + x314 ++ x315 + x317 + x330 + x331 + x334 + x347 + x350 + x351 + x352 + x357 ++ x358 + x359 + x360 + x363 + x364 + x365 + x367 + x368 + x372 + x373 ++ x375 + x383 + x384 + x386 + x387 + x408 + x410 + x411 + x415 + x418 ++ x431 + x468 + x469 + x471 + x476 + x479 + x489 + x491 + x492 + x493 ++ x494 + x496 + x497 <= 1 + +x41 + x45 + x46 + x47 + x48 + x50 + x52 + x96 + x105 + x147 ++ x149 + x151 + x153 + x161 + x162 + x163 + x164 + x165 + x166 + x170 ++ x178 + x192 + x202 + x203 + x204 + x205 + x216 + x218 + x221 + x230 ++ x239 + x241 + x243 + x247 + x248 + x250 + x251 + x253 + x254 + x255 ++ x256 + x260 + x261 + x262 + x263 + x264 + x266 + x268 + x275 + x276 ++ x277 + x278 + x280 + x285 + x288 + x289 + x291 + x292 + x293 + x294 ++ x295 + x296 + x297 + x298 + x300 + x301 + x315 + x317 + x330 + x331 ++ x340 + x350 + x351 + x352 + x357 + x358 + x359 + x360 + x364 + x365 ++ x367 + x370 + x375 + x383 + x386 + x387 + x408 + x411 + x468 + x471 ++ x479 + x483 + x485 + x490 + x492 + x493 + x494 + x497 <= 1 + +x24 + x51 + x52 + x53 + x55 + x93 + x96 + x134 + x150 + x154 ++ x157 + x168 + x169 + x171 + x174 + x202 + x203 + x204 + x205 + x206 ++ x215 + x226 + x228 + x229 + x236 + x238 + x239 + x240 + x241 + x242 ++ x250 + x253 + x255 + x256 + x257 + x258 + x259 + x260 + x261 + x262 ++ x263 + x264 + x266 + x268 + x275 + x276 + x277 + x285 + x286 + x290 ++ x291 + x292 + x293 + x294 + x295 + x296 + x297 + x307 + x313 + x317 ++ x334 + x347 + x350 + x387 + x401 + x402 + x404 + x407 + x408 + x434 ++ x436 + x443 + x448 + x466 + x468 + x469 + x471 + x489 + x492 + x493 ++ x494 <= 1 + +x52 + x53 + x54 + x55 + x69 + x96 + x98 + x150 + x168 + x169 ++ x171 + x174 + x220 + x221 + x222 + x224 + x226 + x228 + x236 + x238 ++ x242 + x249 + x253 + x255 + x256 + x257 + x258 + x259 + x260 + x261 ++ x262 + x263 + x264 + x266 + x275 + x276 + x277 + x278 + x280 + x285 ++ x287 + x290 + x291 + x292 + x293 + x294 + x295 + x296 + x299 + x313 ++ x314 + x315 + x317 + x334 + x336 + x381 + x387 + x400 + x401 + x402 ++ x403 + x404 + x442 + x446 + x466 + x468 + x469 + x471 + x477 <= 1 + +x2 + x5 + x14 + x15 + x30 + x52 + x53 + x54 + x55 + x69 ++ x94 + x98 + x121 + x122 + x171 + x174 + x197 + x200 + x202 + x203 ++ x204 + x205 + x206 + x207 + x220 + x221 + x222 + x223 + x224 + x225 ++ x232 + x235 + x236 + x237 + x242 + x247 + x249 + x250 + x252 + x254 ++ x255 + x259 + x260 + x261 + x262 + x263 + x264 + x285 + x286 + x287 ++ x290 + x291 + x296 + x313 + x358 + x366 + x371 + x373 + x381 + x400 ++ x402 + x403 + x404 + x405 + x407 + x409 + x410 + x411 + x439 + x446 ++ x448 + x487 <= 1 + +x5 + x15 + x17 + x47 + x49 + x52 + x53 + x55 + x66 + x69 ++ x88 + x94 + x118 + x120 + x123 + x173 + x178 + x187 + x197 + x203 ++ x204 + x205 + x206 + x207 + x220 + x221 + x222 + x223 + x224 + x225 ++ x232 + x242 + x252 + x259 + x260 + x261 + x263 + x264 + x285 + x286 ++ x287 + x289 + x290 + x313 + x314 + x371 + x373 + x381 + x400 + x401 ++ x402 + x403 + x404 + x405 + x407 + x411 + x446 + x487 + x488 <= 1 + +x5 + x55 + x66 + x69 + x120 + x123 + x136 + x149 + x173 + x174 ++ x176 + x178 + x203 + x220 + x221 + x222 + x223 + x225 + x232 + x235 ++ x236 + x242 + x252 + x257 + x259 + x260 + x263 + x287 + x289 + x314 ++ x381 + x400 + x405 + x407 + x446 + x486 + x487 + x488 <= 1 + +x27 + x47 + x49 + x104 + x112 + x120 + x133 + x136 + x173 + x175 ++ x176 + x178 + x188 + x202 + x205 + x206 + x232 + x234 + x235 + x237 ++ x259 + x260 + x261 + x263 + x280 + x287 + x296 + x314 + x385 + x403 ++ x407 + x409 + x411 + x412 + x451 + x453 + x454 + x486 <= 1 + +x39 + x40 + x42 + x43 + x44 + x47 + x48 + x50 + x52 + x55 ++ x79 + x90 + x99 + x104 + x105 + x150 + x151 + x152 + x154 + x161 ++ x168 + x170 + x196 + x198 + x207 + x239 + x240 + x242 + x243 + x248 ++ x261 + x262 + x266 + x268 + x276 + x278 + x281 + x282 + x283 + x284 ++ x288 + x290 + x293 + x297 + x298 + x300 + x301 + x302 + x330 + x331 ++ x332 + x333 + x334 + x338 + x348 + x349 + x351 + x358 + x359 + x363 ++ x364 + x365 + x366 + x367 + x368 + x369 + x372 + x373 + x374 + x375 ++ x376 + x378 + x384 + x386 + x387 + x408 + x410 + x423 + x467 + x474 ++ x476 + x480 + x482 + x490 + x491 <= 1 + +x40 + x41 + x42 + x43 + x44 + x46 + x47 + x48 + x50 + x52 ++ x55 + x56 + x65 + x78 + x79 + x80 + x90 + x93 + x96 + x99 ++ x100 + x104 + x105 + x109 + x149 + x150 + x151 + x152 + x153 + x154 ++ x156 + x158 + x161 + x162 + x163 + x164 + x166 + x168 + x170 + x196 ++ x199 + x207 + x217 + x230 + x239 + x240 + x241 + x242 + x243 + x248 ++ x261 + x262 + x266 + x268 + x276 + x278 + x281 + x282 + x283 + x284 ++ x288 + x290 + x291 + x292 + x293 + x294 + x295 + x296 + x297 + x298 ++ x300 + x301 + x302 + x327 + x328 + x330 + x331 + x332 + x338 + x348 ++ x349 + x351 + x352 + x358 + x359 + x360 + x363 + x364 + x365 + x366 ++ x367 + x368 + x370 + x372 + x373 + x374 + x375 + x378 + x383 + x384 ++ x386 + x387 + x408 + x410 + x414 + x423 + x467 + x468 + x470 + x479 ++ x480 + x481 + x482 + x484 + x485 + x490 + x491 + x497 <= 1 + +x39 + x40 + x41 + x43 + x45 + x46 + x47 + x48 + x50 + x52 ++ x63 + x90 + x96 + x105 + x147 + x149 + x150 + x151 + x152 + x154 ++ x156 + x158 + x162 + x163 + x166 + x167 + x168 + x170 + x196 + x199 ++ x204 + x205 + x215 + x219 + x226 + x230 + x239 + x240 + x241 + x242 ++ x243 + x248 + x260 + x261 + x262 + x264 + x266 + x268 + x276 + x278 ++ x283 + x284 + x288 + x291 + x293 + x294 + x295 + x297 + x299 + x300 ++ x301 + x302 + x317 + x330 + x331 + x332 + x334 + x358 + x359 + x360 ++ x363 + x364 + x365 + x367 + x375 + x376 + x383 + x384 + x386 + x387 ++ x410 + x411 + x414 + x418 + x467 + x468 + x476 + x478 + x485 + x491 ++ x494 + x496 + x500 <= 1 + +x47 + x48 + x50 + x93 + x105 + x110 + x147 + x149 + x153 + x163 ++ x166 + x168 + x170 + x192 + x198 + x199 + x204 + x205 + x211 + x213 ++ x215 + x216 + x226 + x228 + x230 + x237 + x239 + x240 + x241 + x242 ++ x248 + x261 + x262 + x266 + x268 + x275 + x276 + x278 + x291 + x293 ++ x294 + x295 + x297 + x299 + x300 + x301 + x315 + x317 + x330 + x331 ++ x332 + x357 + x358 + x359 + x360 + x364 + x365 + x367 + x370 + x372 ++ x373 + x375 + x386 + x387 + x410 + x415 + x416 + x485 + x494 <= 1 + +x47 + x51 + x52 + x53 + x55 + x58 + x88 + x93 + x105 + x107 ++ x109 + x121 + x134 + x149 + x150 + x154 + x166 + x168 + x170 + x171 ++ x210 + x211 + x226 + x228 + x229 + x237 + x238 + x239 + x240 + x241 ++ x242 + x253 + x255 + x256 + x257 + x258 + x259 + x260 + x261 + x262 ++ x263 + x266 + x268 + x275 + x276 + x278 + x279 + x286 + x287 + x290 ++ x291 + x292 + x293 + x295 + x296 + x297 + x300 + x313 + x317 + x332 ++ x334 + x373 + x375 + x386 + x387 + x436 + x443 + x448 + x466 + x469 ++ x471 + x477 + x492 + x494 <= 1 + +x14 + x17 + x69 + x93 + x105 + x118 + x121 + x122 + x149 + x154 ++ x168 + x171 + x207 + x220 + x221 + x222 + x228 + x229 + x236 + x237 ++ x239 + x240 + x242 + x253 + x254 + x255 + x256 + x257 + x259 + x260 ++ x261 + x262 + x263 + x264 + x266 + x268 + x275 + x277 + x278 + x285 ++ x286 + x287 + x290 + x291 + x292 + x293 + x295 + x296 + x313 + x314 ++ x315 + x317 + x334 + x373 + x375 + x381 + x401 + x402 + x403 + x404 ++ x443 + x446 + x448 + x468 + x469 + x471 + x477 <= 1 + +x14 + x16 + x17 + x52 + x53 + x54 + x55 + x69 + x87 + x118 ++ x119 + x121 + x122 + x171 + x174 + x206 + x207 + x220 + x221 + x222 ++ x223 + x224 + x225 + x231 + x232 + x235 + x236 + x237 + x242 + x254 ++ x255 + x257 + x275 + x279 + x285 + x286 + x287 + x290 + x291 + x292 ++ x296 + x373 + x381 + x402 + x404 + x439 + x440 + x443 + x446 + x447 ++ x448 <= 1 + +x5 + x16 + x17 + x46 + x52 + x53 + x54 + x55 + x66 + x69 ++ x87 + x94 + x118 + x120 + x122 + x123 + x133 + x134 + x135 + x136 ++ x173 + x176 + x178 + x207 + x220 + x221 + x222 + x223 + x224 + x225 ++ x232 + x236 + x242 + x257 + x259 + x285 + x286 + x287 + x289 + x290 ++ x291 + x292 + x296 + x313 + x314 + x373 + x381 + x387 + x440 + x450 + <= 1 + +x5 + x16 + x46 + x49 + x53 + x54 + x55 + x66 + x69 + x108 ++ x120 + x123 + x133 + x136 + x173 + x174 + x175 + x176 + x178 + x204 ++ x221 + x225 + x232 + x235 + x236 + x242 + x257 + x259 + x260 + x263 ++ x296 + x314 + x373 + x381 + x387 + x400 + x405 + x407 + x440 + x449 ++ x450 + x486 + x487 + x488 <= 1 + +x5 + x27 + x49 + x55 + x120 + x133 + x136 + x138 + x173 + x174 ++ x175 + x176 + x178 + x225 + x232 + x235 + x259 + x263 + x296 + x314 ++ x381 + x385 + x387 + x405 + x407 + x409 + x412 + x440 + x449 + x451 ++ x453 + x486 + x488 + x496 <= 1 + +x39 + x40 + x42 + x43 + x47 + x50 + x54 + x55 + x65 + x93 ++ x95 + x99 + x104 + x105 + x150 + x151 + x152 + x154 + x170 + x171 ++ x196 + x198 + x199 + x207 + x213 + x239 + x240 + x241 + x242 + x243 ++ x262 + x268 + x276 + x278 + x281 + x282 + x283 + x288 + x290 + x293 ++ x294 + x298 + x302 + x329 + x330 + x331 + x332 + x333 + x334 + x338 ++ x348 + x349 + x358 + x359 + x360 + x364 + x365 + x366 + x367 + x368 ++ x370 + x372 + x374 + x375 + x376 + x378 + x384 + x386 + x387 + x410 ++ x414 + x423 + x448 + x467 + x474 + x475 + x476 + x480 + x483 + x491 ++ x499 <= 1 + +x39 + x40 + x41 + x43 + x46 + x47 + x48 + x50 + x52 + x54 ++ x55 + x56 + x60 + x65 + x78 + x80 + x90 + x93 + x101 + x105 ++ x149 + x150 + x151 + x152 + x153 + x154 + x156 + x158 + x163 + x196 ++ x198 + x199 + x207 + x229 + x239 + x240 + x241 + x242 + x261 + x262 ++ x266 + x267 + x268 + x276 + x281 + x283 + x288 + x290 + x294 + x295 ++ x298 + x301 + x302 + x330 + x331 + x332 + x333 + x334 + x338 + x349 ++ x358 + x359 + x360 + x363 + x364 + x365 + x366 + x367 + x368 + x370 ++ x372 + x373 + x374 + x375 + x378 + x384 + x386 + x387 + x408 + x410 ++ x414 + x415 + x416 + x470 + x475 + x476 + x480 + x481 + x482 + x483 ++ x491 <= 1 + +x23 + x39 + x43 + x47 + x48 + x51 + x52 + x53 + x54 + x55 ++ x56 + x60 + x61 + x62 + x63 + x65 + x68 + x90 + x93 + x105 ++ x107 + x108 + x109 + x111 + x112 + x149 + x150 + x151 + x153 + x154 ++ x167 + x168 + x170 + x192 + x196 + x198 + x207 + x209 + x230 + x238 ++ x239 + x240 + x241 + x242 + x261 + x265 + x266 + x267 + x268 + x276 ++ x278 + x291 + x293 + x294 + x295 + x297 + x301 + x302 + x315 + x316 ++ x317 + x329 + x330 + x331 + x332 + x334 + x348 + x349 + x360 + x363 ++ x364 + x365 + x366 + x367 + x370 + x372 + x373 + x374 + x375 + x376 ++ x378 + x382 + x386 + x387 + x395 + x397 + x413 + x414 + x415 + x416 ++ x430 + x447 + x467 + x470 + x475 + x476 + x478 + x491 + x496 + x500 + <= 1 + +x23 + x36 + x47 + x48 + x50 + x51 + x52 + x53 + x54 + x55 ++ x56 + x100 + x107 + x108 + x110 + x111 + x112 + x147 + x149 + x150 ++ x151 + x153 + x154 + x160 + x166 + x168 + x170 + x183 + x192 + x198 ++ x199 + x208 + x209 + x210 + x211 + x213 + x226 + x227 + x230 + x231 ++ x239 + x240 + x241 + x242 + x262 + x275 + x276 + x278 + x288 + x291 ++ x295 + x297 + x315 + x317 + x359 + x360 + x361 + x362 + x363 + x364 ++ x365 + x367 + x370 + x372 + x373 + x374 + x375 + x376 + x386 + x387 ++ x397 + x415 + x416 + x432 + x440 + x447 + x467 + x470 + x491 <= 1 + +x3 + x20 + x33 + x38 + x47 + x51 + x52 + x53 + x54 + x55 ++ x56 + x57 + x58 + x93 + x107 + x108 + x109 + x110 + x147 + x149 ++ x150 + x151 + x153 + x154 + x166 + x168 + x170 + x208 + x209 + x210 ++ x211 + x212 + x213 + x226 + x227 + x229 + x231 + x234 + x238 + x239 ++ x240 + x241 + x242 + x261 + x262 + x275 + x276 + x278 + x279 + x291 ++ x292 + x297 + x334 + x359 + x360 + x361 + x362 + x363 + x364 + x365 ++ x366 + x367 + x373 + x375 + x376 + x387 + x415 + x417 + x443 + x447 ++ x498 <= 1 + +x18 + x20 + x35 + x37 + x38 + x47 + x50 + x55 + x85 + x89 ++ x91 + x93 + x106 + x134 + x149 + x150 + x154 + x170 + x176 + x183 ++ x226 + x227 + x228 + x229 + x231 + x238 + x239 + x240 + x241 + x242 ++ x257 + x258 + x260 + x278 + x279 + x285 + x286 + x287 + x290 + x291 ++ x313 + x317 + x334 + x387 + x443 + x446 + x447 + x448 <= 1 + +x16 + x18 + x19 + x46 + x47 + x53 + x55 + x64 + x85 + x118 ++ x119 + x121 + x122 + x133 + x135 + x149 + x176 + x183 + x207 + x224 ++ x225 + x231 + x240 + x242 + x257 + x260 + x275 + x279 + x285 + x286 ++ x287 + x290 + x291 + x296 + x376 + x381 + x402 + x439 + x443 + x444 ++ x446 + x447 + x448 + x478 <= 1 + +x19 + x46 + x52 + x64 + x69 + x82 + x85 + x87 + x118 + x119 ++ x122 + x123 + x129 + x133 + x134 + x135 + x136 + x149 + x173 + x176 ++ x207 + x220 + x223 + x225 + x231 + x259 + x286 + x287 + x296 + x357 ++ x362 + x373 + x376 + x379 + x381 + x412 + x429 + x430 + x432 + x437 ++ x439 + x440 + x443 + x444 + x446 + x448 + x478 <= 1 + +x45 + x46 + x49 + x54 + x64 + x82 + x87 + x124 + x127 + x129 ++ x134 + x135 + x136 + x176 + x238 + x259 + x286 + x287 + x291 + x292 ++ x296 + x340 + x362 + x376 + x377 + x379 + x381 + x428 + x429 + x432 ++ x437 + x439 + x440 + x443 + x444 + x448 <= 1 + +x45 + x46 + x54 + x87 + x127 + x129 + x134 + x242 + x362 + x376 ++ x377 + x378 + x380 + x381 + x385 + x432 + x437 + x439 + x440 + x444 ++ x448 <= 1 + +x29 + x45 + x48 + x51 + x56 + x62 + x65 + x95 + x99 + x100 ++ x135 + x150 + x151 + x152 + x154 + x160 + x171 + x196 + x197 + x198 ++ x212 + x240 + x243 + x268 + x282 + x288 + x293 + x294 + x302 + x329 ++ x330 + x331 + x332 + x333 + x338 + x340 + x359 + x366 + x372 + x384 ++ x387 + x410 + x413 + x414 + x423 + x430 + x448 + x474 + x475 + x483 ++ x491 + x499 <= 1 + +x32 + x45 + x48 + x51 + x54 + x56 + x62 + x63 + x90 + x95 ++ x99 + x100 + x112 + x160 + x167 + x170 + x171 + x197 + x198 + x212 ++ x238 + x243 + x265 + x267 + x268 + x288 + x291 + x293 + x294 + x329 ++ x330 + x331 + x332 + x333 + x340 + x366 + x372 + x384 + x413 + x414 ++ x419 + x423 + x430 + x458 + x483 + x499 + x500 <= 1 + +x29 + x32 + x47 + x48 + x51 + x53 + x54 + x55 + x56 + x60 ++ x61 + x62 + x63 + x64 + x90 + x93 + x107 + x108 + x112 + x149 ++ x150 + x151 + x153 + x154 + x155 + x160 + x167 + x168 + x170 + x208 ++ x209 + x210 + x211 + x212 + x213 + x238 + x240 + x261 + x262 + x265 ++ x266 + x267 + x268 + x276 + x279 + x288 + x291 + x294 + x295 + x301 ++ x315 + x316 + x317 + x318 + x322 + x323 + x325 + x329 + x331 + x348 ++ x360 + x363 + x365 + x366 + x370 + x372 + x373 + x374 + x375 + x377 ++ x382 + x386 + x396 + x397 + x412 + x413 + x414 + x415 + x416 + x429 ++ x430 + x441 + x458 + x467 + x475 + x476 + x478 + x496 + x498 + x500 + <= 1 + +x23 + x33 + x36 + x38 + x43 + x47 + x48 + x50 + x51 + x52 ++ x53 + x54 + x55 + x56 + x59 + x60 + x61 + x62 + x63 + x90 ++ x93 + x94 + x99 + x100 + x107 + x108 + x109 + x110 + x112 + x149 ++ x151 + x152 + x153 + x154 + x160 + x170 + x174 + x192 + x198 + x201 ++ x207 + x209 + x210 + x211 + x212 + x213 + x240 + x262 + x263 + x266 ++ x268 + x276 + x278 + x279 + x288 + x291 + x292 + x293 + x294 + x295 ++ x297 + x315 + x316 + x317 + x320 + x322 + x324 + x325 + x329 + x332 ++ x334 + x336 + x348 + x359 + x360 + x361 + x363 + x364 + x365 + x366 ++ x367 + x370 + x372 + x373 + x374 + x375 + x376 + x382 + x386 + x387 ++ x395 + x396 + x413 + x414 + x415 + x416 + x429 + x432 + x438 + x440 ++ x441 + x447 + x467 + x470 + x475 + x476 + x477 + x479 + x496 + x499 ++ x500 <= 1 + +x33 + x38 + x47 + x48 + x50 + x51 + x53 + x54 + x56 + x57 ++ x59 + x60 + x61 + x62 + x63 + x85 + x91 + x93 + x100 + x102 ++ x107 + x108 + x109 + x110 + x125 + x131 + x166 + x170 + x174 + x191 ++ x195 + x201 + x208 + x209 + x210 + x211 + x212 + x213 + x226 + x227 ++ x229 + x231 + x238 + x239 + x241 + x242 + x243 + x262 + x263 + x266 ++ x270 + x275 + x276 + x278 + x279 + x286 + x287 + x288 + x315 + x334 ++ x336 + x348 + x359 + x361 + x362 + x363 + x365 + x366 + x370 + x372 ++ x373 + x380 + x382 + x386 + x387 + x395 + x408 + x413 + x415 + x416 ++ x417 + x438 + x440 + x441 + x443 + x455 + x458 + x460 + x499 + x500 + <= 1 + +x33 + x35 + x37 + x50 + x82 + x85 + x89 + x91 + x93 + x102 ++ x103 + x104 + x106 + x145 + x148 + x149 + x150 + x208 + x209 + x210 ++ x211 + x213 + x227 + x238 + x239 + x241 + x242 + x243 + x257 + x258 ++ x263 + x269 + x274 + x275 + x279 + x286 + x287 + x334 + x370 + x390 ++ x417 + x438 + x440 + x441 + x443 + x445 + x447 + x455 + x456 + x458 ++ x498 + x499 + x500 <= 1 + +x7 + x11 + x22 + x33 + x34 + x35 + x36 + x37 + x45 + x46 ++ x51 + x53 + x54 + x67 + x68 + x82 + x83 + x84 + x85 + x93 ++ x101 + x102 + x104 + x106 + x119 + x144 + x145 + x148 + x150 + x151 ++ x180 + x184 + x192 + x201 + x208 + x209 + x211 + x225 + x227 + x238 ++ x239 + x241 + x242 + x243 + x269 + x274 + x279 + x286 + x287 + x295 ++ x357 + x379 + x380 + x381 + x383 + x385 + x412 + x428 + x429 + x430 ++ x437 + x439 + x440 + x441 + x444 + x445 + x456 + x475 + x481 + x495 ++ x499 + x500 <= 1 + +x6 + x7 + x34 + x36 + x37 + x45 + x46 + x49 + x51 + x54 ++ x64 + x82 + x84 + x119 + x123 + x133 + x144 + x150 + x173 + x175 ++ x176 + x192 + x223 + x225 + x227 + x238 + x269 + x279 + x286 + x287 ++ x291 + x292 + x295 + x296 + x357 + x362 + x376 + x379 + x380 + x381 ++ x393 + x412 + x428 + x429 + x430 + x431 + x432 + x439 + x444 + x445 ++ x456 + x495 + x499 <= 1 + +x34 + x45 + x46 + x49 + x51 + x53 + x124 + x126 + x127 + x129 ++ x143 + x238 + x269 + x286 + x287 + x291 + x292 + x296 + x362 + x376 ++ x377 + x378 + x380 + x428 + x429 + x430 + x431 + x432 + x437 + x439 ++ x440 <= 1 + +x32 + x34 + x45 + x46 + x49 + x53 + x54 + x87 + x127 + x129 ++ x269 + x362 + x376 + x377 + x378 + x379 + x380 + x381 + x385 + x428 ++ x432 + x444 <= 1 + +x29 + x45 + x48 + x56 + x71 + x90 + x95 + x99 + x100 + x151 ++ x152 + x167 + x171 + x197 + x198 + x265 + x267 + x270 + x291 + x329 ++ x332 + x333 + x345 + x348 + x367 + x413 + x414 + x466 + x474 + x475 ++ x476 + x478 <= 1 + +x51 + x56 + x70 + x71 + x95 + x97 + x99 + x100 + x153 + x155 ++ x159 + x160 + x167 + x208 + x224 + x238 + x240 + x264 + x265 + x267 ++ x268 + x288 + x294 + x316 + x318 + x322 + x323 + x330 + x332 + x333 ++ x335 + x340 + x363 + x366 + x382 + x419 + x423 + x429 + x430 + x432 ++ x457 + x466 + x474 + x475 + x476 + x477 + x478 + x499 + x500 <= 1 + +x27 + x29 + x32 + x63 + x64 + x70 + x71 + x77 + x90 + x91 ++ x95 + x97 + x99 + x100 + x112 + x152 + x153 + x155 + x159 + x160 ++ x167 + x208 + x212 + x224 + x238 + x240 + x243 + x264 + x265 + x267 ++ x269 + x276 + x278 + x288 + x294 + x301 + x315 + x316 + x318 + x320 ++ x322 + x323 + x329 + x330 + x331 + x332 + x333 + x335 + x339 + x340 ++ x363 + x365 + x370 + x372 + x374 + x375 + x377 + x382 + x384 + x415 ++ x416 + x429 + x430 + x432 + x466 + x470 + x474 + x475 + x476 + x477 ++ x478 + x498 + x500 <= 1 + +x21 + x23 + x24 + x27 + x30 + x31 + x32 + x48 + x51 + x52 ++ x53 + x54 + x56 + x60 + x61 + x62 + x92 + x93 + x94 + x95 ++ x96 + x99 + x100 + x103 + x108 + x109 + x110 + x144 + x148 + x152 ++ x153 + x167 + x169 + x174 + x209 + x212 + x213 + x240 + x243 + x264 ++ x269 + x276 + x279 + x291 + x292 + x293 + x294 + x295 + x315 + x316 ++ x317 + x318 + x320 + x321 + x322 + x323 + x324 + x325 + x336 + x338 ++ x339 + x340 + x359 + x360 + x361 + x370 + x371 + x372 + x373 + x374 ++ x375 + x386 + x387 + x396 + x413 + x416 + x429 + x432 + x438 + x466 ++ x467 + x470 + x477 + x479 + x496 + x498 + x499 + x500 <= 1 + +x35 + x38 + x47 + x51 + x52 + x53 + x54 + x89 + x91 + x92 ++ x94 + x102 + x103 + x107 + x110 + x125 + x143 + x144 + x146 + x150 ++ x159 + x166 + x172 + x191 + x195 + x201 + x208 + x209 + x212 + x213 ++ x238 + x239 + x241 + x242 + x243 + x262 + x270 + x272 + x278 + x279 ++ x312 + x315 + x320 + x321 + x324 + x334 + x335 + x336 + x337 + x338 ++ x361 + x362 + x363 + x370 + x371 + x373 + x374 + x375 + x377 + x378 ++ x379 + x380 + x382 + x386 + x388 + x389 + x390 + x408 + x409 + x417 ++ x445 + x447 + x455 + x459 + x460 + x496 + x499 + x500 <= 1 + +x22 + x33 + x35 + x37 + x38 + x51 + x52 + x53 + x54 + x56 ++ x68 + x85 + x89 + x91 + x92 + x93 + x94 + x101 + x102 + x103 ++ x104 + x106 + x143 + x144 + x145 + x146 + x148 + x150 + x181 + x196 ++ x199 + x201 + x209 + x210 + x211 + x213 + x233 + x238 + x239 + x241 ++ x242 + x243 + x257 + x263 + x270 + x271 + x272 + x279 + x286 + x287 ++ x289 + x312 + x318 + x324 + x335 + x336 + x337 + x357 + x361 + x362 ++ x367 + x370 + x371 + x377 + x379 + x380 + x381 + x383 + x385 + x386 ++ x388 + x390 + x409 + x417 + x421 + x424 + x438 + x443 + x444 + x445 ++ x447 + x455 + x456 + x457 + x459 + x460 + x461 + x481 + x495 + x498 ++ x499 + x500 <= 1 + +x11 + x22 + x34 + x36 + x45 + x51 + x54 + x67 + x68 + x83 ++ x84 + x89 + x93 + x94 + x101 + x102 + x104 + x106 + x128 + x143 ++ x144 + x145 + x146 + x147 + x148 + x150 + x177 + x180 + x184 + x196 ++ x201 + x209 + x210 + x211 + x213 + x227 + x238 + x239 + x241 + x242 ++ x243 + x269 + x270 + x271 + x274 + x279 + x289 + x325 + x357 + x361 ++ x367 + x379 + x380 + x381 + x383 + x384 + x385 + x430 + x433 + x441 ++ x445 + x447 + x459 + x461 + x475 + x481 + x495 + x499 <= 1 + +x4 + x6 + x28 + x36 + x37 + x45 + x46 + x49 + x51 + x53 ++ x54 + x56 + x64 + x68 + x82 + x83 + x84 + x86 + x102 + x124 ++ x125 + x126 + x127 + x128 + x129 + x143 + x144 + x145 + x147 + x175 ++ x177 + x180 + x182 + x183 + x184 + x190 + x192 + x201 + x209 + x211 ++ x223 + x225 + x227 + x238 + x241 + x269 + x279 + x286 + x287 + x291 ++ x292 + x295 + x296 + x357 + x362 + x378 + x379 + x380 + x383 + x385 ++ x391 + x393 + x412 + x428 + x429 + x430 + x431 + x432 + x433 + x437 ++ x439 + x440 + x441 + x442 + x444 + x445 + x475 + x495 + x499 <= 1 + +x45 + x46 + x49 + x51 + x53 + x54 + x56 + x67 + x68 + x86 ++ x89 + x124 + x126 + x127 + x128 + x129 + x143 + x238 + x291 + x296 ++ x306 + x356 + x357 + x361 + x362 + x366 + x376 + x377 + x378 + x379 ++ x380 + x383 + x385 + x412 + x428 + x429 + x430 + x431 + x433 + x437 ++ x439 + x440 + x441 + x442 + x445 + x495 + x499 <= 1 + +x1 + x23 + x32 + x45 + x46 + x49 + x51 + x53 + x54 + x56 ++ x67 + x87 + x124 + x129 + x147 + x163 + x191 + x233 + x243 + x306 ++ x356 + x362 + x376 + x377 + x378 + x379 + x380 + x385 + x412 + x428 ++ x430 + x437 + x439 + x440 + x441 + x499 <= 1 + +x29 + x31 + x45 + x51 + x55 + x56 + x68 + x71 + x76 + x90 ++ x91 + x95 + x99 + x111 + x113 + x114 + x116 + x117 + x155 + x159 ++ x160 + x167 + x208 + x238 + x265 + x267 + x270 + x316 + x318 + x329 ++ x332 + x333 + x345 + x363 + x368 + x370 + x372 + x374 + x382 + x432 ++ x466 + x474 + x475 + x476 + x477 + x478 + x479 + x493 <= 1 + +x26 + x29 + x31 + x32 + x51 + x56 + x66 + x68 + x70 + x71 ++ x76 + x77 + x90 + x91 + x92 + x95 + x97 + x98 + x99 + x100 ++ x111 + x116 + x117 + x152 + x155 + x159 + x160 + x161 + x167 + x169 ++ x172 + x208 + x238 + x240 + x243 + x264 + x265 + x267 + x269 + x270 ++ x294 + x313 + x316 + x318 + x320 + x322 + x323 + x325 + x329 + x330 ++ x332 + x333 + x370 + x372 + x374 + x375 + x377 + x382 + x384 + x416 ++ x429 + x430 + x432 + x465 + x466 + x470 + x474 + x475 + x476 + x477 ++ x478 + x479 <= 1 + +x26 + x27 + x29 + x31 + x32 + x48 + x66 + x71 + x89 + x90 ++ x91 + x92 + x95 + x97 + x99 + x100 + x111 + x146 + x152 + x153 ++ x159 + x160 + x167 + x195 + x208 + x212 + x238 + x240 + x243 + x264 ++ x265 + x267 + x269 + x270 + x313 + x316 + x317 + x318 + x320 + x321 ++ x322 + x323 + x324 + x325 + x329 + x333 + x335 + x337 + x339 + x340 ++ x363 + x368 + x377 + x382 + x384 + x430 + x432 + x464 + x466 + x470 ++ x474 + x475 + x476 + x477 + x478 + x479 + x496 + x498 + x500 <= 1 + +x21 + x23 + x24 + x26 + x27 + x30 + x31 + x32 + x44 + x48 ++ x51 + x53 + x54 + x56 + x60 + x61 + x71 + x73 + x89 + x90 ++ x91 + x92 + x94 + x95 + x96 + x97 + x99 + x100 + x102 + x103 ++ x106 + x146 + x148 + x152 + x153 + x159 + x167 + x169 + x172 + x195 ++ x208 + x212 + x213 + x238 + x239 + x240 + x243 + x265 + x267 + x269 ++ x270 + x289 + x291 + x293 + x294 + x315 + x316 + x317 + x318 + x320 ++ x321 + x322 + x323 + x324 + x325 + x335 + x336 + x337 + x338 + x339 ++ x340 + x360 + x361 + x362 + x370 + x371 + x373 + x374 + x375 + x377 ++ x378 + x432 + x438 + x466 + x467 + x470 + x474 + x479 + x496 + x498 ++ x499 + x500 <= 1 + +x10 + x21 + x27 + x35 + x47 + x51 + x52 + x53 + x54 + x56 ++ x73 + x89 + x90 + x91 + x92 + x94 + x96 + x97 + x99 + x102 ++ x103 + x106 + x110 + x125 + x138 + x146 + x148 + x153 + x159 + x172 ++ x191 + x193 + x194 + x195 + x210 + x212 + x260 + x265 + x267 + x269 ++ x270 + x279 + x291 + x315 + x316 + x318 + x320 + x321 + x322 + x323 ++ x324 + x325 + x334 + x335 + x336 + x337 + x338 + x339 + x340 + x361 ++ x362 + x370 + x371 + x373 + x374 + x375 + x377 + x378 + x379 + x380 ++ x382 + x383 + x384 + x386 + x388 + x389 + x408 + x409 + x417 + x420 ++ x421 + x422 + x438 + x447 + x466 + x467 + x470 + x495 + x496 + x498 ++ x499 + x500 <= 1 + +x9 + x10 + x30 + x50 + x51 + x53 + x54 + x56 + x67 + x72 ++ x74 + x75 + x83 + x89 + x91 + x92 + x93 + x94 + x102 + x103 ++ x106 + x125 + x139 + x140 + x143 + x144 + x145 + x146 + x148 + x152 ++ x180 + x181 + x183 + x194 + x195 + x196 + x201 + x210 + x233 + x234 ++ x239 + x241 + x242 + x243 + x265 + x270 + x272 + x279 + x287 + x289 ++ x318 + x320 + x321 + x322 + x323 + x324 + x325 + x335 + x336 + x337 ++ x361 + x371 + x377 + x378 + x379 + x380 + x381 + x409 + x421 + x422 ++ x424 + x438 + x444 + x457 + x461 + x495 + x498 + x500 <= 1 + +x0 + x3 + x4 + x11 + x12 + x28 + x34 + x49 + x50 + x51 ++ x53 + x54 + x56 + x67 + x74 + x83 + x84 + x86 + x89 + x91 ++ x92 + x93 + x94 + x101 + x102 + x103 + x106 + x124 + x125 + x126 ++ x128 + x143 + x144 + x145 + x146 + x147 + x148 + x177 + x179 + x180 ++ x181 + x182 + x183 + x193 + x194 + x201 + x203 + x238 + x239 + x241 ++ x243 + x270 + x271 + x273 + x289 + x292 + x318 + x321 + x324 + x325 ++ x357 + x361 + x362 + x371 + x377 + x378 + x379 + x380 + x381 + x382 ++ x383 + x384 + x385 + x398 + x399 + x409 + x419 + x422 + x424 + x430 ++ x431 + x433 + x445 + x457 + x495 + x496 + x498 <= 1 + +x1 + x3 + x4 + x28 + x45 + x46 + x49 + x51 + x53 + x54 ++ x67 + x82 + x83 + x84 + x86 + x89 + x101 + x102 + x106 + x124 ++ x126 + x127 + x128 + x129 + x143 + x144 + x145 + x147 + x175 + x177 ++ x179 + x180 + x181 + x182 + x183 + x184 + x190 + x191 + x192 + x193 ++ x194 + x201 + x223 + x225 + x230 + x238 + x239 + x241 + x243 + x292 ++ x321 + x356 + x357 + x361 + x362 + x371 + x376 + x377 + x378 + x379 ++ x380 + x391 + x392 + x393 + x412 + x428 + x429 + x430 + x431 + x433 ++ x441 + x445 + x495 + x498 + x499 <= 1 + +x1 + x4 + x13 + x28 + x45 + x46 + x49 + x51 + x53 + x54 ++ x56 + x67 + x86 + x89 + x124 + x126 + x127 + x128 + x129 + x132 ++ x143 + x144 + x145 + x147 + x175 + x179 + x181 + x184 + x190 + x191 ++ x192 + x193 + x194 + x342 + x353 + x356 + x357 + x362 + x376 + x377 ++ x378 + x379 + x380 + x383 + x385 + x412 + x428 + x429 + x430 + x433 ++ x437 + x438 + x439 + x441 + x442 <= 1 + +x1 + x23 + x32 + x45 + x49 + x51 + x53 + x54 + x56 + x143 ++ x144 + x145 + x147 + x191 + x192 + x194 + x233 + x357 + x362 + x376 ++ x377 + x378 + x379 + x380 + x412 + x428 + x430 + x433 + x437 + x438 ++ x441 <= 1 + +x26 + x55 + x56 + x68 + x71 + x90 + x91 + x95 + x97 + x99 ++ x114 + x115 + x116 + x153 + x167 + x169 + x172 + x238 + x240 + x243 ++ x247 + x265 + x267 + x270 + x313 + x316 + x318 + x333 + x344 + x345 ++ x370 + x372 + x374 + x382 + x429 + x442 + x474 + x477 + x478 <= 1 + +x26 + x29 + x31 + x32 + x55 + x56 + x66 + x68 + x70 + x71 ++ x90 + x95 + x97 + x98 + x99 + x100 + x114 + x115 + x116 + x117 ++ x152 + x153 + x155 + x159 + x160 + x167 + x169 + x172 + x238 + x240 ++ x243 + x264 + x265 + x267 + x269 + x270 + x313 + x316 + x318 + x320 ++ x329 + x333 + x335 + x339 + x363 + x368 + x370 + x374 + x375 + x377 ++ x382 + x384 + x429 + x432 + x462 + x465 + x474 + x475 + x476 + x477 ++ x478 + x479 + x496 <= 1 + +x24 + x25 + x26 + x29 + x31 + x32 + x56 + x66 + x70 + x71 ++ x90 + x91 + x92 + x95 + x97 + x98 + x99 + x100 + x115 + x117 ++ x152 + x153 + x159 + x160 + x167 + x169 + x172 + x212 + x238 + x240 ++ x243 + x264 + x265 + x267 + x269 + x270 + x318 + x320 + x325 + x329 ++ x335 + x337 + x339 + x346 + x363 + x368 + x370 + x374 + x382 + x431 ++ x432 + x462 + x463 + x464 + x466 + x468 + x470 + x474 + x479 + x496 ++ x498 <= 1 + +x21 + x22 + x23 + x24 + x25 + x27 + x30 + x31 + x32 + x48 ++ x51 + x52 + x53 + x54 + x56 + x61 + x91 + x92 + x94 + x97 ++ x146 + x148 + x152 + x169 + x172 + x190 + x195 + x238 + x239 + x240 ++ x243 + x265 + x267 + x269 + x270 + x289 + x316 + x319 + x320 + x321 ++ x322 + x323 + x324 + x325 + x338 + x361 + x362 + x371 + x374 + x375 ++ x382 + x384 + x431 + x432 + x496 + x497 + x498 + x500 <= 1 + +x3 + x9 + x21 + x22 + x25 + x27 + x28 + x30 + x31 + x32 ++ x51 + x52 + x53 + x56 + x72 + x73 + x89 + x91 + x92 + x94 ++ x97 + x103 + x137 + x138 + x140 + x141 + x146 + x148 + x152 + x153 ++ x159 + x172 + x190 + x191 + x193 + x195 + x238 + x239 + x240 + x241 ++ x243 + x260 + x267 + x289 + x320 + x321 + x322 + x323 + x324 + x325 ++ x339 + x361 + x362 + x371 + x374 + x375 + x379 + x382 + x383 + x384 ++ x385 + x386 + x389 + x409 + x420 + x422 + x424 + x431 + x438 + x466 ++ x467 + x470 + x495 + x496 + x497 + x498 + x499 + x500 <= 1 + +x3 + x8 + x9 + x10 + x12 + x22 + x25 + x28 + x30 + x31 ++ x32 + x49 + x50 + x51 + x53 + x54 + x56 + x65 + x70 + x72 ++ x74 + x75 + x89 + x91 + x92 + x94 + x97 + x101 + x103 + x106 ++ x112 + x125 + x128 + x137 + x138 + x139 + x140 + x143 + x144 + x146 ++ x148 + x152 + x169 + x172 + x175 + x179 + x180 + x181 + x182 + x183 ++ x190 + x191 + x193 + x194 + x195 + x210 + x234 + x238 + x239 + x241 ++ x243 + x270 + x289 + x318 + x321 + x322 + x323 + x324 + x337 + x361 ++ x371 + x378 + x382 + x383 + x384 + x385 + x386 + x409 + x418 + x419 ++ x420 + x421 + x422 + x424 + x428 + x431 + x433 + x444 + x495 + x496 ++ x497 + x498 + x500 <= 1 + +x0 + x3 + x8 + x12 + x22 + x27 + x28 + x49 + x50 + x51 ++ x53 + x56 + x67 + x89 + x91 + x92 + x94 + x97 + x101 + x103 ++ x106 + x124 + x125 + x126 + x128 + x143 + x144 + x145 + x146 + x148 ++ x152 + x169 + x172 + x173 + x175 + x176 + x177 + x179 + x180 + x181 ++ x182 + x183 + x190 + x193 + x194 + x195 + x201 + x234 + x238 + x239 ++ x241 + x243 + x273 + x280 + x323 + x354 + x357 + x361 + x371 + x377 ++ x379 + x380 + x382 + x383 + x384 + x385 + x386 + x399 + x409 + x418 ++ x419 + x420 + x421 + x422 + x424 + x428 + x431 + x433 + x444 + x445 ++ x495 + x496 + x497 + x498 <= 1 + +x0 + x1 + x3 + x4 + x8 + x11 + x13 + x28 + x45 + x49 ++ x50 + x51 + x53 + x54 + x56 + x89 + x92 + x94 + x101 + x104 ++ x126 + x135 + x143 + x144 + x145 + x148 + x173 + x175 + x177 + x179 ++ x180 + x181 + x182 + x184 + x190 + x191 + x193 + x194 + x201 + x233 ++ x234 + x238 + x241 + x246 + x270 + x273 + x289 + x321 + x343 + x354 ++ x355 + x357 + x361 + x371 + x379 + x380 + x382 + x383 + x384 + x385 ++ x392 + x398 + x412 + x422 + x424 + x428 + x429 + x430 + x431 + x433 ++ x437 + x438 + x441 + x442 + x445 + x495 + x496 + x497 + x498 <= 1 + +x0 + x1 + x3 + x4 + x13 + x28 + x45 + x49 + x51 + x53 ++ x54 + x56 + x67 + x83 + x84 + x86 + x89 + x92 + x101 + x102 ++ x104 + x106 + x126 + x127 + x130 + x131 + x132 + x143 + x144 + x145 ++ x147 + x173 + x175 + x176 + x177 + x179 + x180 + x181 + x182 + x184 ++ x190 + x191 + x192 + x193 + x194 + x220 + x238 + x241 + x277 + x292 ++ x321 + x341 + x342 + x343 + x353 + x354 + x355 + x357 + x371 + x383 ++ x385 + x392 + x412 + x428 + x429 + x430 + x431 + x433 + x437 + x438 ++ x441 + x442 + x495 <= 1 + +x1 + x4 + x45 + x49 + x53 + x54 + x67 + x89 + x101 + x102 ++ x104 + x106 + x126 + x147 + x156 + x176 + x177 + x179 + x180 + x181 ++ x182 + x184 + x190 + x191 + x238 + x241 + x277 + x341 + x342 + x353 ++ x354 + x355 + x357 + x371 + x428 + x429 + x433 + x437 + x438 + x441 ++ x442 <= 1 + +x56 + x90 + x114 + x115 + x167 + x169 + x172 + x173 + x240 + x265 ++ x267 + x269 + x270 + x316 + x318 + x329 + x333 + x344 + x346 + x368 ++ x374 + x378 + x382 + x429 + x432 + x463 + x474 + x478 <= 1 + +x24 + x25 + x26 + x29 + x56 + x66 + x68 + x70 + x71 + x95 ++ x97 + x98 + x99 + x100 + x111 + x153 + x159 + x167 + x169 + x172 ++ x240 + x264 + x265 + x267 + x269 + x316 + x318 + x329 + x333 + x337 ++ x339 + x344 + x346 + x368 + x370 + x374 + x382 + x429 + x432 + x462 ++ x463 + x464 + x465 + x468 + x474 + x478 + x479 <= 1 + +x21 + x24 + x25 + x26 + x28 + x30 + x31 + x50 + x66 + x68 ++ x70 + x71 + x90 + x91 + x92 + x95 + x97 + x99 + x100 + x111 ++ x153 + x167 + x169 + x171 + x172 + x243 + x264 + x265 + x267 + x269 ++ x270 + x295 + x316 + x318 + x329 + x333 + x339 + x370 + x374 + x382 ++ x429 + x431 + x432 + x468 + x474 + x478 + x479 <= 1 + +x21 + x24 + x25 + x27 + x28 + x30 + x31 + x51 + x52 + x53 ++ x56 + x66 + x70 + x80 + x91 + x92 + x94 + x97 + x141 + x146 ++ x148 + x152 + x168 + x169 + x172 + x195 + x238 + x239 + x240 + x243 ++ x264 + x265 + x269 + x318 + x361 + x370 + x374 + x382 + x384 + x417 ++ x428 + x431 + x432 + x433 + x469 <= 1 + +x8 + x9 + x10 + x12 + x21 + x27 + x28 + x31 + x51 + x52 ++ x53 + x56 + x70 + x89 + x91 + x92 + x97 + x103 + x137 + x141 ++ x146 + x168 + x169 + x172 + x211 + x239 + x243 + x275 + x289 + x374 ++ x384 + x394 + x409 + x417 + x420 + x428 + x433 + x470 <= 1 + +x8 + x9 + x10 + x11 + x12 + x25 + x27 + x28 + x30 + x31 ++ x51 + x52 + x53 + x54 + x56 + x65 + x70 + x75 + x91 + x92 ++ x97 + x103 + x125 + x128 + x137 + x139 + x140 + x141 + x146 + x149 ++ x152 + x169 + x172 + x175 + x177 + x183 + x190 + x193 + x194 + x195 ++ x210 + x234 + x239 + x243 + x280 + x289 + x324 + x337 + x357 + x361 ++ x371 + x378 + x379 + x380 + x382 + x383 + x384 + x385 + x391 + x394 ++ x417 + x419 + x420 + x421 + x428 + x431 + x433 + x495 + x496 + x497 ++ x498 <= 1 + +x8 + x9 + x10 + x11 + x12 + x22 + x27 + x28 + x31 + x51 ++ x52 + x53 + x56 + x70 + x92 + x94 + x97 + x103 + x124 + x125 ++ x128 + x139 + x143 + x146 + x149 + x152 + x169 + x172 + x173 + x175 ++ x177 + x181 + x182 + x183 + x193 + x194 + x233 + x234 + x280 + x289 ++ x357 + x361 + x371 + x377 + x379 + x380 + x382 + x383 + x384 + x385 ++ x386 + x394 + x406 + x417 + x419 + x420 + x421 + x428 + x431 + x433 ++ x495 + x497 + x498 <= 1 + +x0 + x4 + x13 + x45 + x49 + x51 + x53 + x54 + x56 + x89 ++ x90 + x92 + x101 + x130 + x135 + x145 + x147 + x148 + x173 + x175 ++ x177 + x179 + x184 + x190 + x193 + x238 + x241 + x245 + x246 + x343 ++ x357 + x383 + x428 + x430 + x431 + x433 + x437 + x442 + x452 + x495 ++ x497 <= 1 + +x0 + x1 + x13 + x45 + x49 + x54 + x56 + x86 + x89 + x92 ++ x101 + x104 + x127 + x130 + x131 + x132 + x142 + x145 + x147 + x173 ++ x175 + x177 + x179 + x182 + x184 + x238 + x241 + x245 + x292 + x341 ++ x343 + x357 + x412 + x428 + x431 + x433 + x437 + x438 + x442 + x495 ++ x497 <= 1 + +x13 + x49 + x66 + x67 + x89 + x101 + x142 + x177 + x179 + x182 ++ x184 + x238 + x241 + x341 + x342 + x353 + x355 + x428 + x431 + x433 ++ x437 + x438 + x441 + x495 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 <= 1 + +x8 + x9 + x10 + x11 + x12 + x13 <= 1 + +x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 <= 1 + +x27 + x28 + x29 + x30 + x31 + x32 <= 1 + +x33 + x34 + x35 + x36 + x37 + x38 <= 1 + +x39 + x40 + x41 + x42 + x43 + x44 <= 1 + +x45 + x46 + x47 + x48 + x49 + x50 <= 1 + +x51 + x52 + x53 + x54 + x55 + x56 <= 1 + +x57 + x58 <= 1 + +x60 + x61 + x62 + x63 + x64 + x65 <= 1 + +x66 + x67 + x68 + x69 + x70 + x71 <= 1 + +x72 + x73 + x74 + x75 <= 1 + +x76 + x77 <= 1 + +x78 + x79 + x80 + x81 <= 1 + +x82 + x83 + x84 + x85 + x86 + x87 <= 1 + +x89 + x90 + x91 + x92 + x93 + x94 <= 1 + +x95 + x96 + x97 + x98 + x99 + x100 <= 1 + +x101 + x102 + x103 + x104 + x105 + x106 <= 1 + +x107 + x108 + x109 + x110 + x111 + x112 <= 1 + +x114 + x115 + x116 + x117 <= 1 + +x118 + x119 + x120 + x121 + x122 + x123 <= 1 + +x124 + x125 + x126 + x127 + x128 + x129 <= 1 + +x130 + x131 + x132 <= 1 + +x133 + x134 + x135 + x136 <= 1 + +x137 + x138 + x139 + x140 + x141 <= 1 + +x143 + x144 + x145 + x146 + x147 + x148 <= 1 + +x149 + x150 + x151 + x152 + x153 + x154 <= 1 + +x155 + x156 + x157 + x158 + x159 + x160 <= 1 + +x161 + x162 + x163 + x164 + x165 + x166 <= 1 + +x167 + x168 + x169 + x170 + x171 + x172 <= 1 + +x173 + x174 + x175 + x176 + x177 + x178 <= 1 + +x179 + x180 + x181 + x182 + x183 + x184 <= 1 + +x185 + x186 + x187 + x188 + x189 <= 1 + +x190 + x191 + x192 + x193 + x194 + x195 <= 1 + +x196 + x197 + x198 + x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x208 + x209 + x210 + x211 + x212 + x213 <= 1 + +x214 + x215 + x216 + x217 + x218 + x219 <= 1 + +x220 + x221 + x222 + x223 + x224 + x225 <= 1 + +x226 + x227 + x228 + x229 + x230 + x231 <= 1 + +x232 + x233 + x234 + x235 + x236 + x237 <= 1 + +x238 + x239 + x240 + x241 + x242 + x243 <= 1 + +x245 + x246 <= 1 + +x247 + x248 + x249 + x250 + x251 + x252 <= 1 + +x253 + x254 + x255 + x256 + x257 + x258 <= 1 + +x259 + x260 + x261 + x262 + x263 + x264 <= 1 + +x265 + x266 + x267 + x268 + x269 + x270 <= 1 + +x271 + x272 + x273 + x274 <= 1 + +x275 + x276 + x277 + x278 + x279 + x280 <= 1 + +x281 + x282 + x283 + x284 <= 1 + +x285 + x286 + x287 + x288 + x289 + x290 <= 1 + +x291 + x292 + x293 + x294 + x295 + x296 <= 1 + +x297 + x298 + x299 + x300 + x301 + x302 <= 1 + +x303 + x304 + x305 <= 1 + +x307 + x308 <= 1 + +x309 + x310 + x311 + x312 <= 1 + +x313 + x314 + x315 + x316 + x317 + x318 <= 1 + +x320 + x321 + x322 + x323 + x324 + x325 <= 1 + +x326 + x327 + x328 <= 1 + +x329 + x330 + x331 + x332 + x333 + x334 <= 1 + +x335 + x336 + x337 + x338 + x339 + x340 <= 1 + +x341 + x342 + x343 <= 1 + +x344 + x345 + x346 <= 1 + +x347 + x348 + x349 + x350 + x351 + x352 <= 1 + +x353 + x354 + x355 + x356 <= 1 + +x357 + x358 + x359 + x360 + x361 + x362 <= 1 + +x363 + x364 + x365 + x366 + x367 + x368 <= 1 + +x370 + x371 + x372 + x373 + x374 + x375 <= 1 + +x376 + x377 + x378 + x379 + x380 + x381 <= 1 + +x382 + x383 + x384 + x385 + x386 + x387 <= 1 + +x388 + x389 + x390 <= 1 + +x391 + x392 + x393 + x394 <= 1 + +x395 + x396 + x397 <= 1 + +x398 + x399 <= 1 + +x400 + x401 + x402 + x403 + x404 + x405 <= 1 + +x407 + x408 + x409 + x410 + x411 + x412 <= 1 + +x413 + x414 + x415 + x416 + x417 + x418 <= 1 + +x419 + x420 + x421 + x422 + x423 + x424 <= 1 + +x425 + x426 + x427 <= 1 + +x428 + x429 + x430 + x431 + x432 + x433 <= 1 + +x434 + x435 + x436 <= 1 + +x437 + x438 + x439 + x440 + x441 + x442 <= 1 + +x443 + x444 + x445 + x446 + x447 + x448 <= 1 + +x449 + x450 + x451 <= 1 + +x453 + x454 <= 1 + +x455 + x456 + x457 + x458 <= 1 + +x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 <= 1 + +x466 + x467 + x468 + x469 + x470 + x471 <= 1 + +x472 + x473 <= 1 + +x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 + x488 <= 1 + +x489 + x490 + x491 + x492 + x493 + x494 <= 1 + +x495 + x496 + x497 + x498 + x499 + x500 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0010.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0010.lp new file mode 100755 index 000000000..791e1658e --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0010.lp @@ -0,0 +1,1085 @@ +max + +1514.61x0 + 1552.4x1 + 1528.59x2 + 1521.56x3 + 1494.42x4 + 1494.01x5 + 828.052x6 + 890.094x7 + 872.654x8 + 864.048x9 + +802.331x10 + 776.752x11 + 799.7x12 + 948.49x13 + 872.301x14 + 828.108x15 + 758.147x16 + 721.376x17 + 389.248x18 + 526.021x19 + +512.064x20 + 500.038x21 + 485.084x22 + 426.372x23 + 738.086x24 + 837.465x25 + 764.159x26 + 762.708x27 + 757.375x28 + 726.99x29 + +3377.96x30 + 3784.36x31 + 3760.04x32 + 3690.57x33 + 3640.04x34 + 3619.66x35 + 358.185x36 + 444.636x37 + 441.409x38 + 370.786x39 + +873.913x40 + 779.659x41 + 700.933x42 + 683.783x43 + 634.966x44 + 633.684x45 + 134.196x46 + 173.943x47 + 111.296x48 + 326.203x49 + +331.638x50 + 310.715x51 + 303.665x52 + 188.518x53 + 1242.63x54 + 1797.87x55 + 1743.54x56 + 1737.14x57 + 1725.16x58 + 1695.37x59 + +141.955x60 + 211.794x61 + 126.228x62 + 498.639x63 + 659.63x64 + 648.526x65 + 643.335x66 + 604.194x67 + 574.013x68 + 994.395x69 + +990.725x70 + 960.859x71 + 934.86x72 + 910.347x73 + 907.675x74 + 341.244x75 + 471.456x76 + 426.483x77 + 395.766x78 + 340.208x79 + +325.5x80 + 980.58x81 + 1082.56x82 + 1073.4x83 + 1046.69x84 + 1029.96x85 + 1001.03x86 + 510.983x87 + 762.161x88 + 744.489x89 + +683.324x90 + 652.604x91 + 616.385x92 + 763.075x93 + 890.245x94 + 884.103x95 + 870.943x96 + 867.309x97 + 845.191x98 + 445.77x99 + +444.975x100 + 390.524x101 + 353.201x102 + 341.121x103 + 326.934x104 + 598.908x105 + 839.213x106 + 693.736x107 + 679.969x108 + 629.149x109 + +621.785x110 + 97.369x111 + 220.786x112 + 151.403x113 + 744.023x114 + 716.675x115 + 714.931x116 + 713.699x117 + 701.385x118 + 663.922x119 + +713.625x120 + 733.891x121 + 709.916x122 + 690.302x123 + 672.094x124 + 670.922x125 + 130.544x126 + 139.548x127 + 115.055x128 + 894.74x129 + +1167.01x130 + 1132.48x131 + 1116.96x132 + 1115.08x133 + 1102.58x134 + 468.644x135 + 516.758x136 + 513.758x137 + 483.143x138 + 477.641x139 + +428.313x140 + 138.998x141 + 206.748x142 + 131.366x143 + 1279.15x144 + 1547.18x145 + 1518.24x146 + 1469.62x147 + 1432.99x148 + 1419.28x149 + +95.6885x150 + 604.367x151 + 785.936x152 + 702.747x153 + 700.866x154 + 663.878x155 + 656.836x156 + 3322.45x157 + 3795.95x158 + 3766.15x159 + +3694.18x160 + 3620.53x161 + 3617.11x162 + 610.844x163 + 883.421x164 + 872.239x165 + 864.245x166 + 825.571x167 + 811.919x168 + 908.342x169 + +1081.25x170 + 1030.6x171 + 986.342x172 + 951.645x173 + 917.859x174 + 217.473x175 + 212.934x176 + 112.232x177 + 1202.27x178 + 1520.41x179 + +1474.75x180 + 1390.53x181 + 1385.99x182 + 1378.27x183 + 1636.82x184 + 1714.33x185 + 1692x186 + 1661.85x187 + 1647.61x188 + 1645.62x189 + +1400.83x190 + 1665.26x191 + 1638.08x192 + 1563.39x193 + 1555.67x194 + 1484x195 + 1037.86x196 + 1357.17x197 + 1277.73x198 + 1263.36x199 + +1257.68x200 + 1224.43x201 + 923.852x202 + 1150.35x203 + 1069.66x204 + 1021.55x205 + 1010.97x206 + 977.29x207 + 260.989x208 + 272.831x209 + +253.319x210 + 210.389x211 + 140.676x212 + 404.906x213 + 467.851x214 + 436.121x215 + 391.8x216 + 351.975x217 + 340.034x218 + 447.941x219 + +650.331x220 + 624.979x221 + 534.777x222 + 483.283x223 + 459.876x224 + 326.334x225 + 273.65x226 + 230.288x227 + 218.644x228 + 124.022x229 + +130.142x230 + 182.45x231 + 178.583x232 + 99.2723x233 + 390.595x234 + 523.013x235 + 410.461x236 + 406.017x237 + 402.254x238 + 397.609x239 + +331.238x240 + 422.837x241 + 358.256x242 + 316.329x243 + 277.197x244 + 257.855x245 + 456.766x246 + 580.742x247 + 578.102x248 + 572.679x249 + +571.185x250 + 570.401x251 + 171.806x252 + 255.086x253 + 191.326x254 + 148.725x255 + 790.004x256 + 986.935x257 + 981.511x258 + 959.381x259 + +925.685x260 + 838.584x261 + 191.924x262 + 248.778x263 + 205.604x264 + 249.71x265 + 134.404x266 + 1131.96x267 + 1244.08x268 + 1238.4x269 + +1224.94x270 + 1199.7x271 + 1181.43x272 + 112.618x273 + 1204.01x274 + 1349.03x275 + 1302.05x276 + 1268.84x277 + 1266.59x278 + 1241.73x279 + +294.183x280 + 331.668x281 + 295.873x282 + 274.129x283 + 273.851x284 + 1635.65x285 + 2000.25x286 + 1918.32x287 + 1859.5x288 + 1825.34x289 + +1755.4x290 + 1342.65x291 + 1447.37x292 + 1409.75x293 + 1400.97x294 + 1393.3x295 + 1383.77x296 + 220.469x297 + 318.415x298 + 258.705x299 + +15.4822x300 + 300.501x301 + 279.732x302 + 239.306x303 + 203.27x304 + 348.498x305 + 495.055x306 + 373.262x307 + 369.161x308 + 362.698x309 + +319.314x310 + 102.46x311 + 110.631x312 + 696.952x313 + 971.839x314 + 935.666x315 + 891.15x316 + 861.411x317 + 858.217x318 + 184.57x319 + +238.716x320 + 232.349x321 + 224.517x322 + 197.168x323 + 788.656x324 + 975.244x325 + 926.088x326 + 906.541x327 + 861.262x328 + 831.366x329 + +309.528x330 + 350.95x331 + 314.424x332 + 278.367x333 + 263.882x334 + 106.669x335 + 675.461x336 + 803.002x337 + 786.232x338 + 715.478x339 + +710.249x340 + 638.51x341 + 602.222x342 + 667.053x343 + 637.863x344 + 589.558x345 + 575.417x346 + 562.949x347 + 702.999x348 + 774.058x349 + +759.265x350 + 723.815x351 + 695.946x352 + 686.288x353 + 552.653x354 + 578.362x355 + 563.308x356 + 529.808x357 + 499.541x358 + 470.368x359 + +961.578x360 + 1357.2x361 + 1347.24x362 + 1338.24x363 + 1318.6x364 + 1308.32x365 + 355.936x366 + 358.093x367 + 294.823x368 + 276.19x369 + +710.362x370 + 857.844x371 + 803.337x372 + 792.839x373 + 779.747x374 + 767.648x375 + 698.43x376 + 915.094x377 + 892.321x378 + 885.557x379 + +879.747x380 + 865.92x381 + 568.171x382 + 580.278x383 + 570.364x384 + 551.617x385 + 514.822x386 + 507.966x387 + 754.115x388 + 831.871x389 + +819.799x390 + 781.407x391 + 739.593x392 + 720.835x393 + 2429.21x394 + 2763.65x395 + 2696.32x396 + 2671.51x397 + 2642.94x398 + 2638.05x399 + +905.104x400 + 952.424x401 + 945.51x402 + 934.139x403 + 904.757x404 + 903.279x405 + 284.116x406 + 417.821x407 + 371.543x408 + 235.617x409 + +180.359x410 + 120.266x411 + 372.504x412 + 437.279x413 + 422.691x414 + 348.61x415 + 314.702x416 + 252.71x417 + 775.676x418 + 1096.25x419 + +965.499x420 + 946.532x421 + 909.181x422 + 861.5x423 + 197.495x424 + 196.762x425 + 146.096x426 + 834.888x427 + 800.426x428 + 790.125x429 + +756.967x430 + 753.626x431 + 701.585x432 + 186.957x433 + 206.09x434 + 1671.03x435 + 2180.55x436 + 2139.41x437 + 2112.25x438 + 2052.43x439 + +2051.35x440 + 61.4368x441 + 521.808x442 + 765.521x443 + 760.372x444 + 581.927x445 + 538.483x446 + 505.136x447 + 921.686x448 + 1229.26x449 + +1200.7x450 + 1164.71x451 + 1159.17x452 + 1155.58x453 + 240.473x454 + 251.211x455 + 162.601x456 + 173.863x457 + 215.57x458 + 212.664x459 + +343.758x460 + 481.184x461 + 477.846x462 + 451.326x463 + 446.982x464 + 371.423x465 + 34.0948x466 + 764.087x467 + 1127.32x468 + 964.062x469 + +872.28x470 + 835.517x471 + 833.93x472 + 82.2332x473 + 65.3965x474 + 1845.34x475 + 2369.42x476 + 2331.78x477 + 2302.64x478 + 2220.71x479 + +2198.32x480 + 851.486x481 + 1022.09x482 + 942.89x483 + 939.08x484 + 901.381x485 + 877.891x486 + 335.695x487 + 416.548x488 + 382.348x489 + +379.339x490 + 344.173x491 + 289.699x492 + 865.84x493 + 1287.15x494 + 1143.55x495 + 1117.09x496 + 1071.5x497 + 1055.7x498 + 344.279x499 + +496.871x500 + 484.238x501 + 481.554x502 + 335.509x503 + 332.436x504 + +st + +x17 + x54 + x55 + x219 + x221 + x223 + x224 + x254 + x313 + x394 ++ x436 + x448 + x452 + x476 + x499 + x503 + x504 <= 1 + +x16 + x17 + x31 + x54 + x55 + x77 + x113 + x129 + x211 + x219 ++ x221 + x222 + x223 + x224 + x313 + x317 + x394 + x448 + x452 + x499 ++ x500 + x501 + x503 + x504 <= 1 + +x0 + x4 + x16 + x17 + x31 + x55 + x129 + x130 + x157 + x161 ++ x177 + x210 + x219 + x222 + x223 + x224 + x291 + x313 + x397 + x399 ++ x438 + x448 + x456 + x475 + x476 + x499 + x500 + x501 + x502 + x503 ++ x504 <= 1 + +x0 + x1 + x4 + x31 + x34 + x119 + x129 + x130 + x131 + x144 ++ x145 + x147 + x157 + x243 + x274 + x277 + x286 + x291 + x397 + x399 ++ x425 + x435 + x438 + x440 + x448 + x449 + x453 + x456 + x475 + x476 ++ x499 + x500 + x501 + x502 + x504 <= 1 + +x0 + x1 + x3 + x4 + x30 + x31 + x34 + x54 + x57 + x119 ++ x129 + x130 + x131 + x132 + x133 + x134 + x140 + x144 + x145 + x147 ++ x157 + x162 + x179 + x182 + x243 + x277 + x285 + x291 + x311 + x314 ++ x365 + x390 + x393 + x399 + x419 + x435 + x438 + x448 + x449 + x453 ++ x460 + x475 + x476 + x499 + x500 + x501 + x502 + x504 <= 1 + +x0 + x1 + x3 + x4 + x30 + x34 + x96 + x114 + x119 + x129 ++ x130 + x131 + x132 + x133 + x134 + x144 + x147 + x153 + x157 + x162 ++ x243 + x285 + x291 + x292 + x296 + x311 + x363 + x365 + x394 + x397 ++ x399 + x435 + x438 + x440 + x448 + x449 + x453 + x499 + x502 + x504 + <= 1 + +x1 + x4 + x30 + x31 + x32 + x34 + x35 + x114 + x116 + x119 ++ x129 + x130 + x131 + x132 + x145 + x147 + x149 + x168 + x184 + x185 ++ x186 + x189 + x198 + x199 + x203 + x207 + x271 + x274 + x292 + x363 ++ x365 + x370 + x372 + x373 + x374 + x386 + x397 + x399 + x448 + x449 ++ x451 + x453 + x499 + x502 <= 1 + +x1 + x4 + x30 + x31 + x32 + x33 + x34 + x35 + x100 + x101 ++ x102 + x104 + x114 + x115 + x116 + x117 + x118 + x145 + x158 + x168 ++ x184 + x185 + x186 + x187 + x197 + x198 + x199 + x203 + x205 + x207 ++ x268 + x271 + x285 + x286 + x292 + x345 + x370 + x372 + x373 + x374 ++ x375 + x386 + x431 + x432 + x439 + x440 + x451 + x477 + x479 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 + x99 + x100 + x101 + x102 ++ x104 + x114 + x115 + x117 + x118 + x145 + x168 + x184 + x186 + x197 ++ x198 + x199 + x202 + x205 + x207 + x271 + x279 + x285 + x370 + x372 ++ x373 + x374 + x375 + x386 + x392 + x395 + x427 + x428 + x429 + x431 ++ x432 + x436 + x439 + x440 + x476 + x477 + x478 + x479 + x482 + x483 ++ x496 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 + x99 + x101 + x102 + x103 ++ x114 + x115 + x116 + x117 + x118 + x160 + x162 + x168 + x184 + x185 ++ x186 + x197 + x198 + x199 + x202 + x205 + x207 + x267 + x268 + x269 ++ x270 + x271 + x279 + x285 + x286 + x287 + x288 + x290 + x359 + x370 ++ x372 + x373 + x374 + x375 + x386 + x395 + x427 + x428 + x429 + x430 ++ x431 + x432 + x439 + x476 + x477 + x483 <= 1 + +x9 + x16 + x17 + x54 + x55 + x59 + x208 + x209 + x211 + x219 ++ x221 + x223 + x224 + x252 + x253 + x254 + x255 + x266 + x313 + x317 ++ x372 + x394 + x448 + x449 + x450 + x452 + x476 + x499 + x503 <= 1 + +x0 + x1 + x2 + x12 + x16 + x54 + x55 + x77 + x112 + x113 ++ x130 + x208 + x209 + x210 + x211 + x219 + x223 + x224 + x252 + x255 ++ x313 + x372 + x394 + x448 + x452 + x475 + x476 + x500 + x501 + x502 ++ x503 + x504 <= 1 + +x0 + x1 + x2 + x12 + x14 + x16 + x17 + x31 + x55 + x112 ++ x113 + x130 + x158 + x161 + x165 + x175 + x177 + x188 + x208 + x209 ++ x210 + x219 + x222 + x224 + x255 + x265 + x347 + x357 + x363 + x372 ++ x399 + x419 + x440 + x448 + x452 + x455 + x475 + x476 + x499 + x500 ++ x501 + x502 + x503 + x504 <= 1 + +x0 + x1 + x4 + x10 + x11 + x54 + x57 + x119 + x129 + x130 ++ x131 + x132 + x133 + x134 + x144 + x145 + x147 + x182 + x274 + x285 ++ x291 + x314 + x356 + x390 + x397 + x399 + x419 + x425 + x435 + x438 ++ x440 + x449 + x452 + x453 + x454 + x456 + x475 + x476 + x500 + x501 ++ x502 <= 1 + +x0 + x1 + x3 + x4 + x30 + x35 + x54 + x57 + x59 + x82 ++ x84 + x111 + x129 + x130 + x131 + x132 + x133 + x134 + x135 + x138 ++ x140 + x144 + x145 + x146 + x147 + x148 + x149 + x157 + x179 + x182 ++ x292 + x314 + x363 + x390 + x393 + x397 + x399 + x419 + x435 + x437 ++ x438 + x440 + x448 + x449 + x453 + x460 + x476 + x502 <= 1 + +x0 + x1 + x3 + x4 + x30 + x32 + x34 + x35 + x57 + x59 ++ x82 + x84 + x85 + x96 + x111 + x119 + x129 + x130 + x131 + x132 ++ x133 + x134 + x135 + x138 + x139 + x140 + x141 + x143 + x144 + x145 ++ x146 + x147 + x148 + x149 + x160 + x171 + x189 + x190 + x193 + x243 ++ x285 + x291 + x292 + x293 + x295 + x296 + x311 + x342 + x346 + x356 ++ x361 + x363 + x383 + x394 + x397 + x399 + x435 + x440 + x446 + x449 ++ x453 + x476 + x504 <= 1 + +x1 + x4 + x5 + x30 + x31 + x32 + x34 + x35 + x104 + x116 ++ x119 + x145 + x149 + x158 + x159 + x162 + x168 + x184 + x185 + x186 ++ x187 + x198 + x199 + x270 + x285 + x287 + x290 + x344 + x347 + x356 ++ x359 + x365 + x373 + x375 + x383 + x386 + x391 + x397 + x399 + x430 ++ x435 + x437 + x438 + x439 + x440 + x448 + x451 + x453 + x476 <= 1 + +x26 + x30 + x99 + x100 + x102 + x103 + x104 + x116 + x117 + x145 ++ x158 + x159 + x162 + x168 + x184 + x185 + x186 + x187 + x197 + x198 ++ x199 + x216 + x268 + x270 + x271 + x275 + x279 + x285 + x344 + x347 ++ x365 + x370 + x374 + x375 + x386 + x392 + x397 + x439 + x440 + x476 ++ x477 + x479 + x482 <= 1 + +x26 + x30 + x31 + x32 + x33 + x34 + x35 + x68 + x99 + x100 ++ x101 + x102 + x103 + x114 + x115 + x116 + x117 + x118 + x145 + x158 ++ x159 + x160 + x162 + x163 + x168 + x184 + x185 + x186 + x187 + x191 ++ x196 + x197 + x198 + x199 + x202 + x204 + x205 + x206 + x207 + x268 ++ x271 + x279 + x285 + x286 + x287 + x288 + x290 + x337 + x338 + x339 ++ x340 + x359 + x370 + x371 + x372 + x373 + x374 + x375 + x392 + x395 ++ x427 + x428 + x429 + x430 + x431 + x432 + x436 + x439 + x440 + x476 ++ x477 + x478 + x479 + x480 + x482 + x483 + x484 + x496 <= 1 + +x26 + x30 + x31 + x32 + x33 + x34 + x35 + x51 + x68 + x77 ++ x99 + x100 + x101 + x103 + x114 + x115 + x116 + x117 + x118 + x145 ++ x159 + x160 + x162 + x163 + x168 + x170 + x184 + x185 + x186 + x191 ++ x196 + x197 + x198 + x199 + x201 + x202 + x203 + x204 + x205 + x206 ++ x207 + x267 + x268 + x269 + x270 + x271 + x275 + x279 + x285 + x286 ++ x287 + x288 + x289 + x290 + x337 + x338 + x340 + x357 + x370 + x371 ++ x375 + x382 + x385 + x386 + x395 + x427 + x428 + x429 + x430 + x431 ++ x432 + x436 + x439 + x440 + x476 + x477 + x478 + x482 + x483 <= 1 + +x0 + x9 + x12 + x13 + x14 + x15 + x16 + x17 + x31 + x54 ++ x55 + x59 + x95 + x130 + x158 + x161 + x162 + x211 + x219 + x221 ++ x223 + x224 + x252 + x253 + x254 + x264 + x266 + x276 + x277 + x278 ++ x279 + x313 + x314 + x315 + x316 + x317 + x360 + x361 + x372 + x383 ++ x394 + x396 + x448 + x449 + x450 + x452 + x458 + x468 + x476 + x478 + <= 1 + +x0 + x1 + x2 + x6 + x9 + x12 + x13 + x14 + x15 + x16 ++ x17 + x31 + x54 + x55 + x59 + x130 + x144 + x145 + x147 + x158 ++ x161 + x162 + x165 + x175 + x176 + x188 + x194 + x195 + x209 + x210 ++ x219 + x222 + x223 + x224 + x253 + x264 + x265 + x277 + x279 + x361 ++ x363 + x372 + x435 + x448 + x449 + x450 + x452 + x475 + x476 + x478 + <= 1 + +x0 + x1 + x2 + x6 + x11 + x12 + x13 + x14 + x16 + x17 ++ x31 + x54 + x55 + x88 + x112 + x144 + x147 + x158 + x188 + x192 ++ x194 + x219 + x222 + x265 + x357 + x372 + x397 + x399 + x419 + x448 ++ x449 + x450 + x452 + x453 + x454 + x455 + x495 + x501 + x503 <= 1 + +x0 + x1 + x2 + x4 + x5 + x6 + x8 + x10 + x11 + x12 ++ x14 + x17 + x31 + x57 + x58 + x76 + x82 + x84 + x85 + x86 ++ x87 + x88 + x129 + x132 + x134 + x144 + x145 + x147 + x152 + x155 ++ x158 + x184 + x188 + x190 + x192 + x194 + x291 + x293 + x296 + x314 ++ x343 + x367 + x397 + x403 + x419 + x435 + x438 + x449 + x450 + x452 ++ x453 + x454 + x455 + x494 + x495 + x500 + x503 <= 1 + +x0 + x1 + x3 + x4 + x11 + x30 + x32 + x34 + x35 + x57 ++ x58 + x59 + x60 + x62 + x82 + x84 + x85 + x96 + x129 + x130 ++ x131 + x132 + x133 + x134 + x135 + x136 + x137 + x138 + x139 + x140 ++ x141 + x142 + x144 + x147 + x148 + x149 + x170 + x171 + x173 + x179 ++ x180 + x182 + x184 + x185 + x188 + x189 + x190 + x193 + x195 + x285 ++ x291 + x292 + x293 + x295 + x296 + x342 + x343 + x345 + x346 + x347 ++ x361 + x363 + x388 + x390 + x393 + x395 + x397 + x398 + x399 + x435 ++ x436 + x437 + x438 + x440 + x446 + x449 + x453 + x477 <= 1 + +x1 + x3 + x4 + x7 + x8 + x9 + x30 + x31 + x32 + x33 ++ x34 + x35 + x57 + x60 + x61 + x82 + x84 + x85 + x96 + x119 ++ x121 + x125 + x129 + x130 + x131 + x133 + x134 + x135 + x136 + x137 ++ x138 + x139 + x140 + x143 + x144 + x145 + x146 + x147 + x148 + x149 ++ x152 + x158 + x160 + x162 + x168 + x170 + x171 + x188 + x190 + x192 ++ x195 + x199 + x203 + x272 + x275 + x291 + x292 + x294 + x295 + x296 ++ x342 + x343 + x344 + x345 + x346 + x347 + x356 + x361 + x363 + x368 ++ x375 + x383 + x384 + x388 + x389 + x390 + x391 + x392 + x393 + x435 ++ x437 + x438 + x440 + x446 + x476 + x477 + x479 + x495 <= 1 + +x1 + x4 + x5 + x30 + x31 + x32 + x34 + x57 + x58 + x61 ++ x121 + x125 + x133 + x136 + x138 + x139 + x145 + x146 + x147 + x148 ++ x149 + x162 + x168 + x179 + x184 + x185 + x186 + x187 + x188 + x190 ++ x198 + x199 + x204 + x223 + x270 + x272 + x275 + x276 + x290 + x292 ++ x294 + x295 + x296 + x308 + x325 + x342 + x344 + x345 + x347 + x354 ++ x355 + x356 + x359 + x363 + x368 + x375 + x382 + x383 + x384 + x385 ++ x389 + x391 + x397 + x430 + x435 + x437 + x438 + x440 + x451 + x453 ++ x474 + x476 + x477 <= 1 + +x1 + x4 + x5 + x34 + x57 + x104 + x133 + x159 + x162 + x168 ++ x184 + x186 + x187 + x196 + x198 + x199 + x204 + x206 + x223 + x267 ++ x275 + x279 + x347 + x354 + x355 + x356 + x357 + x359 + x370 + x374 ++ x375 + x382 + x383 + x384 + x385 + x387 + x397 + x404 + x428 + x430 ++ x432 + x435 + x437 + x440 + x461 + x476 + x477 <= 1 + +x1 + x4 + x30 + x31 + x32 + x33 + x34 + x35 + x39 + x114 ++ x115 + x116 + x117 + x118 + x145 + x158 + x160 + x162 + x184 + x185 ++ x186 + x191 + x196 + x198 + x199 + x202 + x204 + x205 + x206 + x207 ++ x226 + x267 + x268 + x269 + x270 + x271 + x272 + x275 + x279 + x285 ++ x286 + x287 + x288 + x289 + x290 + x336 + x337 + x338 + x339 + x340 ++ x354 + x355 + x356 + x357 + x358 + x359 + x370 + x373 + x374 + x382 ++ x384 + x385 + x387 + x395 + x397 + x427 + x428 + x430 + x431 + x432 ++ x435 + x436 + x439 + x461 + x476 + x477 + x478 + x479 + x480 + x481 ++ x482 + x483 + x484 + x485 <= 1 + +x4 + x27 + x30 + x31 + x32 + x34 + x35 + x39 + x103 + x114 ++ x115 + x116 + x117 + x118 + x158 + x159 + x160 + x162 + x168 + x184 ++ x185 + x186 + x191 + x198 + x199 + x201 + x202 + x203 + x204 + x205 ++ x206 + x207 + x226 + x267 + x268 + x269 + x270 + x271 + x275 + x279 ++ x285 + x286 + x287 + x288 + x289 + x290 + x337 + x339 + x354 + x355 ++ x357 + x358 + x370 + x371 + x382 + x384 + x385 + x387 + x395 + x427 ++ x428 + x429 + x430 + x431 + x432 + x435 + x436 + x439 + x440 + x461 ++ x470 + x481 + x482 + x483 <= 1 + +x15 + x16 + x17 + x54 + x55 + x59 + x72 + x79 + x86 + x95 ++ x161 + x162 + x223 + x264 + x266 + x276 + x278 + x279 + x307 + x313 ++ x314 + x315 + x316 + x317 + x394 + x396 + x408 + x440 + x448 + x449 ++ x450 + x452 + x459 + x463 + x466 + x468 + x470 + x476 + x478 <= 1 + +x0 + x12 + x13 + x14 + x15 + x16 + x17 + x54 + x55 + x59 ++ x72 + x93 + x95 + x97 + x130 + x144 + x158 + x161 + x162 + x163 ++ x165 + x173 + x176 + x192 + x193 + x194 + x219 + x221 + x222 + x223 ++ x224 + x276 + x277 + x278 + x279 + x314 + x317 + x350 + x360 + x361 ++ x383 + x388 + x394 + x396 + x408 + x418 + x419 + x420 + x448 + x449 ++ x450 + x452 + x457 + x458 + x459 + x463 + x476 + x478 <= 1 + +x0 + x1 + x2 + x3 + x5 + x10 + x15 + x26 + x54 + x57 ++ x58 + x59 + x84 + x85 + x86 + x87 + x109 + x129 + x157 + x158 ++ x159 + x160 + x161 + x165 + x171 + x172 + x188 + x189 + x194 + x220 ++ x237 + x239 + x274 + x276 + x278 + x293 + x313 + x315 + x318 + x350 ++ x361 + x363 + x388 + x392 + x396 + x398 + x418 + x419 + x422 + x435 ++ x436 + x438 + x440 + x494 + x495 <= 1 + +x0 + x1 + x2 + x3 + x5 + x6 + x7 + x8 + x9 + x10 ++ x11 + x12 + x14 + x30 + x33 + x34 + x35 + x42 + x54 + x55 ++ x57 + x58 + x59 + x76 + x78 + x79 + x82 + x84 + x85 + x86 ++ x87 + x88 + x97 + x98 + x129 + x132 + x134 + x144 + x148 + x152 ++ x157 + x158 + x159 + x160 + x161 + x162 + x170 + x171 + x172 + x173 ++ x184 + x185 + x188 + x189 + x190 + x192 + x193 + x194 + x203 + x274 ++ x276 + x277 + x278 + x291 + x292 + x293 + x296 + x315 + x318 + x343 ++ x346 + x361 + x363 + x367 + x388 + x389 + x391 + x392 + x393 + x394 ++ x398 + x403 + x418 + x419 + x420 + x422 + x435 + x436 + x437 + x438 ++ x440 + x449 + x450 + x452 + x453 + x471 + x494 + x495 + x500 <= 1 + +x0 + x2 + x3 + x6 + x7 + x8 + x9 + x10 + x11 + x30 ++ x32 + x34 + x35 + x54 + x57 + x58 + x59 + x62 + x81 + x82 ++ x84 + x85 + x87 + x88 + x90 + x92 + x96 + x119 + x130 + x131 ++ x134 + x135 + x136 + x137 + x139 + x140 + x142 + x144 + x145 + x146 ++ x147 + x148 + x149 + x152 + x155 + x157 + x158 + x159 + x160 + x161 ++ x162 + x166 + x170 + x171 + x173 + x179 + x184 + x185 + x187 + x188 ++ x189 + x190 + x191 + x192 + x193 + x194 + x195 + x203 + x229 + x272 ++ x275 + x291 + x292 + x293 + x295 + x296 + x342 + x343 + x345 + x346 ++ x361 + x363 + x366 + x367 + x388 + x389 + x390 + x391 + x392 + x393 ++ x394 + x395 + x397 + x398 + x399 + x401 + x419 + x420 + x422 + x423 ++ x435 + x436 + x437 + x438 + x440 + x446 + x449 + x450 + x453 + x471 ++ x472 + x494 + x495 <= 1 + +x3 + x4 + x5 + x6 + x7 + x8 + x10 + x30 + x32 + x34 ++ x35 + x59 + x84 + x88 + x90 + x92 + x96 + x131 + x135 + x136 ++ x138 + x157 + x158 + x160 + x162 + x170 + x171 + x179 + x184 + x185 ++ x186 + x187 + x189 + x195 + x203 + x270 + x272 + x274 + x275 + x291 ++ x292 + x294 + x295 + x296 + x342 + x343 + x344 + x345 + x346 + x366 ++ x367 + x368 + x369 + x375 + x388 + x389 + x390 + x391 + x393 + x422 ++ x435 + x436 + x437 + x438 + x440 + x446 + x451 + x453 + x473 + x476 + <= 1 + +x4 + x5 + x11 + x30 + x57 + x58 + x59 + x74 + x81 + x82 ++ x88 + x89 + x90 + x96 + x121 + x133 + x157 + x158 + x159 + x162 ++ x165 + x179 + x184 + x185 + x186 + x187 + x190 + x267 + x270 + x272 ++ x275 + x276 + x290 + x291 + x292 + x294 + x295 + x296 + x344 + x355 ++ x359 + x366 + x368 + x382 + x384 + x388 + x389 + x390 + x391 + x393 ++ x395 + x435 + x437 + x438 + x440 + x451 + x453 + x473 + x474 + x476 ++ x477 + x480 <= 1 + +x4 + x30 + x32 + x33 + x34 + x57 + x58 + x81 + x82 + x89 ++ x90 + x121 + x148 + x157 + x158 + x162 + x184 + x185 + x186 + x187 ++ x188 + x204 + x207 + x267 + x268 + x269 + x270 + x272 + x275 + x285 ++ x286 + x287 + x288 + x290 + x292 + x294 + x295 + x296 + x339 + x344 ++ x366 + x374 + x379 + x387 + x389 + x390 + x395 + x435 + x438 + x440 ++ x451 + x476 + x477 + x478 + x479 + x480 + x482 <= 1 + +x4 + x30 + x31 + x32 + x33 + x34 + x35 + x36 + x39 + x57 ++ x118 + x121 + x148 + x157 + x158 + x160 + x162 + x184 + x185 + x186 ++ x188 + x191 + x196 + x198 + x199 + x202 + x204 + x206 + x207 + x227 ++ x228 + x267 + x268 + x269 + x270 + x271 + x272 + x275 + x285 + x286 ++ x287 + x288 + x290 + x292 + x293 + x295 + x296 + x317 + x336 + x337 ++ x338 + x339 + x340 + x341 + x354 + x358 + x370 + x374 + x379 + x385 ++ x387 + x395 + x429 + x436 + x438 + x439 + x476 + x477 + x478 + x479 ++ x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x27 + x34 + x37 + x158 + x159 + x162 + x184 + x186 + x198 + x199 ++ x201 + x202 + x203 + x204 + x206 + x207 + x225 + x226 + x267 + x268 ++ x271 + x275 + x285 + x286 + x287 + x288 + x289 + x290 + x292 + x293 ++ x337 + x338 + x341 + x354 + x355 + x357 + x358 + x371 + x385 + x427 ++ x428 + x429 + x430 + x431 + x432 + x436 + x437 + x439 + x461 + x477 ++ x478 + x479 + x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x5 + x13 + x30 + x54 + x75 + x79 + x80 + x93 + x94 + x95 ++ x97 + x146 + x163 + x189 + x192 + x274 + x276 + x278 + x279 + x305 ++ x307 + x313 + x314 + x315 + x316 + x317 + x318 + x360 + x361 + x394 ++ x408 + x435 + x448 + x450 + x452 + x466 + x476 + x478 <= 1 + +x0 + x1 + x5 + x12 + x13 + x14 + x15 + x16 + x30 + x54 ++ x55 + x59 + x75 + x76 + x78 + x79 + x93 + x94 + x95 + x97 ++ x132 + x146 + x157 + x160 + x161 + x162 + x163 + x165 + x166 + x187 ++ x189 + x192 + x193 + x194 + x219 + x220 + x221 + x222 + x224 + x234 ++ x237 + x238 + x239 + x274 + x276 + x277 + x278 + x279 + x293 + x305 ++ x307 + x313 + x314 + x315 + x316 + x318 + x350 + x360 + x361 + x394 ++ x396 + x398 + x418 + x419 + x420 + x421 + x423 + x435 + x437 + x450 ++ x452 + x457 + x458 + x459 + x471 + x478 <= 1 + +x0 + x1 + x2 + x3 + x5 + x6 + x7 + x10 + x11 + x12 ++ x13 + x15 + x22 + x24 + x26 + x29 + x34 + x35 + x42 + x54 ++ x55 + x56 + x57 + x58 + x59 + x75 + x76 + x78 + x79 + x85 ++ x86 + x87 + x91 + x93 + x97 + x109 + x129 + x132 + x157 + x158 ++ x159 + x160 + x161 + x162 + x165 + x166 + x167 + x169 + x170 + x171 ++ x172 + x173 + x185 + x189 + x190 + x192 + x193 + x194 + x203 + x220 ++ x221 + x222 + x234 + x237 + x238 + x239 + x274 + x276 + x277 + x278 ++ x291 + x293 + x296 + x313 + x314 + x315 + x316 + x318 + x350 + x360 ++ x361 + x363 + x392 + x394 + x395 + x396 + x398 + x402 + x403 + x418 ++ x419 + x420 + x421 + x422 + x423 + x435 + x438 + x450 + x453 + x467 ++ x471 + x472 + x494 + x495 + x496 <= 1 + +x2 + x5 + x6 + x7 + x8 + x9 + x10 + x11 + x22 + x26 ++ x33 + x42 + x54 + x55 + x57 + x58 + x59 + x76 + x78 + x81 ++ x82 + x84 + x85 + x86 + x87 + x91 + x92 + x97 + x98 + x109 ++ x129 + x137 + x144 + x145 + x148 + x149 + x152 + x155 + x157 + x158 ++ x159 + x160 + x161 + x162 + x166 + x167 + x169 + x171 + x173 + x179 ++ x190 + x192 + x193 + x194 + x203 + x234 + x235 + x237 + x238 + x239 ++ x272 + x277 + x278 + x291 + x293 + x315 + x350 + x361 + x363 + x388 ++ x389 + x391 + x392 + x394 + x395 + x398 + x400 + x402 + x403 + x418 ++ x423 + x435 + x442 + x450 + x452 + x453 + x467 + x471 + x472 + x479 ++ x494 + x495 + x496 <= 1 + +x2 + x5 + x6 + x7 + x8 + x9 + x10 + x30 + x32 + x33 ++ x35 + x54 + x55 + x57 + x58 + x59 + x78 + x81 + x82 + x84 ++ x85 + x86 + x87 + x90 + x92 + x96 + x97 + x98 + x137 + x139 ++ x144 + x145 + x146 + x148 + x149 + x152 + x155 + x157 + x158 + x159 ++ x160 + x161 + x162 + x166 + x167 + x169 + x171 + x173 + x179 + x188 ++ x189 + x190 + x191 + x193 + x194 + x203 + x272 + x275 + x284 + x291 ++ x292 + x293 + x294 + x295 + x296 + x315 + x342 + x343 + x345 + x346 ++ x361 + x389 + x391 + x392 + x394 + x395 + x398 + x399 + x400 + x401 ++ x402 + x418 + x419 + x422 + x423 + x447 + x471 + x472 + x476 + x496 + <= 1 + +x7 + x8 + x10 + x30 + x32 + x33 + x34 + x35 + x48 + x57 ++ x59 + x81 + x82 + x84 + x85 + x86 + x88 + x89 + x90 + x92 ++ x131 + x133 + x136 + x137 + x144 + x145 + x146 + x148 + x149 + x157 ++ x158 + x159 + x160 + x161 + x162 + x169 + x171 + x173 + x179 + x184 ++ x190 + x191 + x193 + x194 + x195 + x203 + x272 + x275 + x295 + x296 ++ x361 + x369 + x389 + x390 + x392 + x393 + x395 + x398 + x401 + x410 ++ x422 + x435 + x436 + x437 + x438 + x440 + x471 + x472 + x476 <= 1 + +x4 + x5 + x8 + x30 + x46 + x48 + x57 + x58 + x59 + x74 ++ x81 + x82 + x84 + x85 + x88 + x89 + x90 + x91 + x122 + x133 ++ x144 + x148 + x149 + x158 + x160 + x161 + x162 + x165 + x173 + x179 ++ x184 + x185 + x187 + x190 + x194 + x195 + x275 + x290 + x294 + x295 ++ x296 + x299 + x369 + x388 + x389 + x390 + x410 + x411 + x435 + x437 ++ x438 + x440 + x451 + x472 <= 1 + +x30 + x32 + x33 + x34 + x88 + x89 + x91 + x98 + x146 + x148 ++ x149 + x157 + x158 + x159 + x160 + x164 + x186 + x188 + x190 + x208 ++ x212 + x269 + x283 + x285 + x290 + x336 + x341 + x348 + x353 + x396 ++ x439 + x440 + x449 + x451 + x478 <= 1 + +x5 + x26 + x30 + x31 + x32 + x33 + x34 + x35 + x36 + x37 ++ x38 + x39 + x131 + x147 + x148 + x150 + x157 + x158 + x159 + x160 ++ x161 + x162 + x184 + x185 + x186 + x188 + x191 + x202 + x204 + x206 ++ x207 + x225 + x228 + x267 + x268 + x269 + x270 + x271 + x285 + x287 ++ x288 + x289 + x290 + x292 + x293 + x295 + x296 + x336 + x337 + x338 ++ x339 + x340 + x341 + x348 + x350 + x352 + x353 + x358 + x374 + x379 ++ x387 + x395 + x405 + x427 + x429 + x436 + x438 + x439 + x465 + x478 ++ x479 + x480 + x481 + x483 + x484 + x485 + x497 <= 1 + +x4 + x5 + x30 + x31 + x32 + x33 + x34 + x35 + x36 + x37 ++ x38 + x39 + x118 + x131 + x147 + x157 + x158 + x159 + x160 + x162 ++ x185 + x186 + x188 + x191 + x196 + x198 + x199 + x201 + x202 + x203 ++ x204 + x206 + x207 + x225 + x227 + x228 + x267 + x268 + x269 + x270 ++ x271 + x275 + x285 + x286 + x287 + x288 + x289 + x290 + x292 + x293 ++ x317 + x336 + x337 + x338 + x339 + x340 + x341 + x348 + x350 + x352 ++ x353 + x354 + x355 + x358 + x379 + x387 + x395 + x427 + x428 + x429 ++ x431 + x436 + x437 + x438 + x439 + x477 + x478 + x479 + x480 + x481 ++ x482 + x483 + x484 + x485 + x497 <= 1 + +x12 + x14 + x15 + x16 + x51 + x54 + x55 + x56 + x57 + x58 ++ x75 + x78 + x79 + x93 + x94 + x95 + x97 + x132 + x157 + x162 ++ x163 + x165 + x187 + x192 + x222 + x224 + x234 + x237 + x238 + x239 ++ x274 + x276 + x277 + x278 + x279 + x288 + x300 + x305 + x306 + x307 ++ x313 + x314 + x315 + x316 + x318 + x322 + x360 + x361 + x363 + x394 ++ x396 + x398 + x408 + x409 + x418 + x420 + x421 + x450 + x452 + x476 ++ x478 + x493 + x494 + x495 <= 1 + +x0 + x1 + x5 + x30 + x54 + x55 + x59 + x75 + x93 + x94 ++ x106 + x132 + x157 + x161 + x163 + x165 + x187 + x189 + x192 + x194 ++ x274 + x278 + x279 + x290 + x305 + x306 + x307 + x313 + x314 + x315 ++ x316 + x318 + x360 + x361 + x369 + x394 + x396 + x398 + x408 + x409 ++ x418 + x421 + x435 + x440 + x450 + x452 + x457 + x478 + x493 <= 1 + +x3 + x13 + x15 + x22 + x24 + x27 + x28 + x29 + x31 + x32 ++ x35 + x42 + x54 + x56 + x57 + x58 + x59 + x76 + x77 + x80 ++ x85 + x86 + x91 + x92 + x93 + x97 + x98 + x105 + x109 + x110 ++ x132 + x151 + x152 + x155 + x156 + x157 + x158 + x159 + x160 + x161 ++ x162 + x164 + x167 + x169 + x170 + x172 + x174 + x185 + x187 + x189 ++ x194 + x220 + x221 + x256 + x261 + x274 + x276 + x277 + x278 + x291 ++ x293 + x295 + x309 + x310 + x313 + x314 + x315 + x316 + x318 + x320 ++ x321 + x323 + x361 + x418 + x420 + x421 + x422 + x423 + x450 + x467 ++ x469 + x472 + x495 + x496 <= 1 + +x2 + x5 + x7 + x24 + x26 + x27 + x28 + x32 + x35 + x54 ++ x56 + x57 + x58 + x59 + x81 + x85 + x86 + x87 + x91 + x92 ++ x93 + x97 + x98 + x155 + x157 + x158 + x159 + x160 + x161 + x162 ++ x166 + x167 + x169 + x170 + x173 + x190 + x191 + x193 + x194 + x220 ++ x221 + x239 + x272 + x277 + x323 + x361 + x395 + x398 + x420 + x422 ++ x423 + x435 + x467 + x469 + x470 + x471 + x472 + x495 + x496 + x503 + <= 1 + +x2 + x5 + x7 + x8 + x9 + x32 + x33 + x35 + x54 + x55 ++ x57 + x58 + x59 + x76 + x81 + x82 + x84 + x86 + x87 + x91 ++ x92 + x97 + x98 + x144 + x146 + x148 + x149 + x155 + x157 + x162 ++ x163 + x166 + x167 + x169 + x171 + x173 + x174 + x190 + x191 + x193 ++ x203 + x234 + x235 + x237 + x238 + x239 + x241 + x251 + x269 + x272 ++ x284 + x291 + x292 + x293 + x294 + x296 + x361 + x363 + x394 + x395 ++ x398 + x400 + x401 + x402 + x403 + x418 + x419 + x422 + x423 + x435 ++ x442 + x447 + x467 + x469 + x470 + x471 + x472 + x476 <= 1 + +x2 + x9 + x30 + x31 + x32 + x33 + x34 + x35 + x47 + x55 ++ x57 + x58 + x59 + x69 + x70 + x86 + x87 + x89 + x90 + x91 ++ x92 + x122 + x146 + x148 + x149 + x157 + x158 + x159 + x160 + x163 ++ x164 + x166 + x167 + x171 + x173 + x174 + x178 + x187 + x189 + x190 ++ x191 + x193 + x195 + x196 + x197 + x215 + x231 + x235 + x238 + x241 ++ x251 + x257 + x269 + x272 + x280 + x282 + x283 + x284 + x286 + x287 ++ x291 + x293 + x294 + x296 + x327 + x353 + x363 + x377 + x396 + x397 ++ x398 + x399 + x400 + x401 + x402 + x403 + x404 + x419 + x422 + x423 ++ x442 + x443 + x446 + x447 + x463 + x467 + x468 + x469 + x470 + x471 ++ x472 + x476 + x478 <= 1 + +x2 + x4 + x5 + x35 + x46 + x47 + x57 + x58 + x59 + x69 ++ x70 + x71 + x74 + x87 + x88 + x89 + x90 + x91 + x92 + x122 ++ x124 + x144 + x146 + x148 + x149 + x157 + x158 + x160 + x173 + x178 ++ x190 + x191 + x192 + x193 + x195 + x212 + x233 + x241 + x251 + x257 ++ x269 + x275 + x280 + x281 + x283 + x286 + x287 + x291 + x293 + x294 ++ x295 + x296 + x299 + x326 + x336 + x341 + x353 + x377 + x396 + x398 ++ x411 + x437 + x447 + x451 + x469 + x470 + x471 + x475 + x476 + x478 ++ x480 + x498 <= 1 + +x5 + x30 + x32 + x33 + x34 + x35 + x88 + x89 + x90 + x91 ++ x92 + x98 + x144 + x146 + x148 + x149 + x157 + x158 + x159 + x160 ++ x178 + x188 + x190 + x201 + x212 + x251 + x267 + x269 + x283 + x285 ++ x286 + x287 + x290 + x297 + x299 + x336 + x341 + x348 + x352 + x353 ++ x396 + x437 + x439 + x451 + x475 + x478 + x480 <= 1 + +x5 + x30 + x32 + x33 + x34 + x36 + x38 + x90 + x146 + x148 ++ x149 + x188 + x201 + x202 + x204 + x206 + x207 + x212 + x267 + x269 ++ x270 + x271 + x285 + x286 + x287 + x289 + x290 + x292 + x293 + x297 ++ x298 + x336 + x337 + x338 + x339 + x340 + x341 + x348 + x352 + x353 ++ x362 + x436 + x439 + x451 + x461 + x475 + x477 + x478 + x480 + x481 ++ x485 <= 1 + +x17 + x25 + x26 + x30 + x31 + x32 + x33 + x34 + x35 + x36 ++ x37 + x38 + x131 + x133 + x147 + x148 + x149 + x157 + x158 + x161 ++ x162 + x184 + x185 + x186 + x188 + x191 + x198 + x200 + x201 + x202 ++ x204 + x206 + x207 + x227 + x267 + x268 + x269 + x270 + x271 + x275 ++ x285 + x286 + x287 + x289 + x290 + x292 + x293 + x297 + x298 + x312 ++ x317 + x336 + x338 + x339 + x340 + x341 + x348 + x349 + x350 + x352 ++ x353 + x358 + x362 + x379 + x395 + x405 + x421 + x436 + x461 + x475 ++ x477 + x478 + x479 + x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x3 + x14 + x24 + x27 + x28 + x29 + x54 + x55 + x56 + x57 ++ x58 + x67 + x75 + x77 + x78 + x79 + x80 + x91 + x93 + x94 ++ x95 + x97 + x105 + x106 + x109 + x110 + x117 + x152 + x155 + x156 ++ x157 + x160 + x161 + x162 + x163 + x187 + x222 + x234 + x236 + x237 ++ x238 + x243 + x244 + x245 + x260 + x261 + x274 + x276 + x277 + x278 ++ x288 + x300 + x305 + x306 + x308 + x309 + x314 + x316 + x319 + x320 ++ x322 + x323 + x333 + x360 + x363 + x394 + x396 + x398 + x406 + x408 ++ x409 + x418 + x421 + x450 + x467 + x478 + x493 + x494 + x495 <= 1 + +x3 + x14 + x15 + x24 + x25 + x27 + x28 + x29 + x31 + x40 ++ x42 + x54 + x56 + x57 + x58 + x59 + x75 + x77 + x80 + x93 ++ x94 + x95 + x97 + x98 + x105 + x106 + x109 + x110 + x132 + x151 ++ x152 + x155 + x156 + x157 + x159 + x160 + x161 + x162 + x169 + x170 ++ x172 + x174 + x187 + x189 + x194 + x220 + x221 + x222 + x236 + x240 ++ x244 + x245 + x256 + x260 + x261 + x274 + x276 + x277 + x278 + x307 ++ x309 + x316 + x318 + x319 + x320 + x321 + x322 + x323 + x360 + x361 ++ x363 + x364 + x396 + x399 + x418 + x420 + x421 + x422 + x450 + x467 ++ x469 + x472 + x493 + x494 + x495 + x496 <= 1 + +x3 + x13 + x24 + x25 + x27 + x28 + x31 + x33 + x34 + x35 ++ x40 + x42 + x45 + x54 + x56 + x57 + x58 + x59 + x72 + x80 ++ x94 + x98 + x105 + x106 + x109 + x110 + x131 + x152 + x155 + x156 ++ x157 + x159 + x160 + x161 + x162 + x164 + x167 + x169 + x170 + x172 ++ x174 + x185 + x187 + x189 + x194 + x220 + x244 + x256 + x260 + x261 ++ x274 + x276 + x277 + x278 + x307 + x310 + x315 + x316 + x320 + x321 ++ x323 + x360 + x362 + x363 + x364 + x395 + x396 + x398 + x399 + x418 ++ x420 + x422 + x423 + x467 + x493 + x495 + x496 <= 1 + +x13 + x31 + x32 + x33 + x34 + x40 + x45 + x55 + x56 + x57 ++ x58 + x59 + x69 + x70 + x71 + x72 + x81 + x98 + x105 + x106 ++ x107 + x109 + x110 + x152 + x156 + x157 + x159 + x160 + x161 + x164 ++ x166 + x169 + x174 + x185 + x187 + x189 + x194 + x220 + x256 + x257 ++ x258 + x259 + x260 + x261 + x278 + x294 + x316 + x360 + x362 + x364 ++ x394 + x396 + x397 + x398 + x399 + x408 + x418 + x420 + x422 + x489 ++ x493 + x495 + x496 <= 1 + +x2 + x6 + x13 + x30 + x32 + x33 + x34 + x40 + x41 + x42 ++ x45 + x55 + x56 + x57 + x58 + x59 + x69 + x70 + x71 + x72 ++ x81 + x83 + x98 + x105 + x106 + x107 + x108 + x109 + x110 + x126 ++ x127 + x146 + x156 + x157 + x158 + x159 + x160 + x161 + x163 + x164 ++ x166 + x167 + x169 + x174 + x187 + x189 + x190 + x191 + x192 + x193 ++ x194 + x249 + x257 + x260 + x261 + x277 + x282 + x286 + x287 + x288 ++ x294 + x316 + x362 + x364 + x365 + x377 + x378 + x394 + x396 + x397 ++ x398 + x399 + x400 + x420 + x436 + x439 + x444 + x470 + x479 + x480 + <= 1 + +x2 + x13 + x21 + x30 + x31 + x32 + x33 + x34 + x67 + x69 ++ x70 + x73 + x74 + x81 + x83 + x89 + x106 + x107 + x110 + x122 ++ x127 + x146 + x149 + x157 + x158 + x159 + x160 + x161 + x163 + x164 ++ x166 + x167 + x174 + x178 + x187 + x189 + x190 + x191 + x192 + x193 ++ x194 + x195 + x196 + x197 + x206 + x217 + x231 + x249 + x257 + x280 ++ x282 + x284 + x286 + x287 + x288 + x294 + x296 + x327 + x362 + x364 ++ x365 + x377 + x378 + x394 + x396 + x397 + x398 + x399 + x400 + x401 ++ x402 + x403 + x404 + x423 + x436 + x438 + x439 + x465 + x468 + x469 ++ x470 + x471 + x472 + x491 + x497 + x498 <= 1 + +x2 + x5 + x21 + x30 + x31 + x32 + x33 + x34 + x35 + x67 ++ x69 + x70 + x71 + x73 + x74 + x83 + x106 + x122 + x124 + x149 ++ x157 + x158 + x159 + x160 + x161 + x174 + x178 + x187 + x190 + x191 ++ x192 + x193 + x195 + x196 + x197 + x206 + x214 + x215 + x230 + x231 ++ x233 + x235 + x241 + x249 + x251 + x257 + x280 + x281 + x291 + x293 ++ x294 + x296 + x299 + x326 + x362 + x376 + x377 + x400 + x401 + x402 ++ x403 + x404 + x422 + x423 + x437 + x439 + x442 + x443 + x445 + x446 ++ x447 + x451 + x463 + x467 + x468 + x469 + x470 + x471 + x472 + x475 ++ x479 + x488 + x491 + x498 <= 1 + +x2 + x5 + x20 + x21 + x25 + x35 + x50 + x69 + x73 + x83 ++ x86 + x157 + x158 + x159 + x160 + x161 + x162 + x165 + x178 + x179 ++ x180 + x181 + x183 + x186 + x187 + x188 + x191 + x192 + x195 + x197 ++ x201 + x205 + x206 + x215 + x249 + x262 + x263 + x281 + x286 + x289 ++ x291 + x293 + x294 + x295 + x324 + x325 + x326 + x327 + x329 + x348 ++ x349 + x351 + x371 + x377 + x380 + x381 + x394 + x395 + x396 + x397 ++ x398 + x400 + x401 + x402 + x403 + x404 + x405 + x423 + x436 + x442 ++ x446 + x447 + x470 + x475 + x477 + x479 + x480 + x485 + x486 + x491 ++ x498 <= 1 + +x2 + x20 + x21 + x23 + x25 + x30 + x31 + x33 + x35 + x56 ++ x73 + x86 + x133 + x157 + x158 + x159 + x160 + x161 + x162 + x178 ++ x179 + x180 + x181 + x182 + x183 + x186 + x188 + x191 + x200 + x201 ++ x204 + x205 + x220 + x247 + x262 + x278 + x286 + x289 + x290 + x295 ++ x298 + x348 + x349 + x350 + x351 + x352 + x353 + x371 + x380 + x394 ++ x395 + x396 + x397 + x398 + x399 + x401 + x402 + x404 + x405 + x447 ++ x470 + x475 + x477 + x479 + x480 + x481 + x485 + x494 <= 1 + +x20 + x25 + x26 + x30 + x33 + x35 + x37 + x38 + x56 + x73 ++ x133 + x157 + x158 + x159 + x160 + x161 + x186 + x188 + x191 + x192 ++ x200 + x201 + x202 + x220 + x247 + x285 + x287 + x289 + x290 + x292 ++ x297 + x298 + x317 + x340 + x348 + x349 + x350 + x352 + x353 + x376 ++ x379 + x380 + x402 + x405 + x421 + x436 + x477 + x478 + x479 + x480 ++ x481 + x485 + x486 <= 1 + +x3 + x25 + x27 + x28 + x29 + x31 + x33 + x34 + x54 + x56 ++ x57 + x58 + x93 + x94 + x95 + x96 + x97 + x105 + x151 + x156 ++ x160 + x161 + x162 + x187 + x234 + x236 + x240 + x243 + x244 + x245 ++ x249 + x256 + x261 + x274 + x277 + x288 + x305 + x306 + x308 + x309 ++ x310 + x318 + x319 + x321 + x322 + x360 + x394 + x396 + x406 + x409 ++ x421 + x479 + x493 + x494 <= 1 + +x3 + x14 + x24 + x25 + x27 + x28 + x29 + x31 + x33 + x35 ++ x54 + x56 + x58 + x59 + x71 + x77 + x80 + x93 + x94 + x95 ++ x96 + x98 + x105 + x151 + x155 + x156 + x161 + x162 + x169 + x170 ++ x172 + x236 + x240 + x243 + x244 + x245 + x246 + x256 + x260 + x261 ++ x274 + x276 + x277 + x278 + x306 + x308 + x309 + x310 + x318 + x319 ++ x321 + x322 + x352 + x360 + x406 + x407 + x409 + x436 + x467 + x493 ++ x494 + x495 + x496 <= 1 + +x15 + x24 + x25 + x27 + x28 + x29 + x31 + x33 + x42 + x54 ++ x56 + x58 + x59 + x80 + x93 + x97 + x98 + x105 + x132 + x151 ++ x156 + x157 + x160 + x161 + x162 + x164 + x169 + x170 + x172 + x174 ++ x220 + x221 + x236 + x244 + x245 + x246 + x256 + x260 + x261 + x274 ++ x276 + x277 + x278 + x307 + x308 + x310 + x315 + x316 + x319 + x320 ++ x352 + x360 + x363 + x364 + x395 + x398 + x409 + x420 + x467 + x469 ++ x493 <= 1 + +x2 + x32 + x33 + x34 + x40 + x41 + x45 + x55 + x56 + x58 ++ x59 + x69 + x70 + x71 + x72 + x81 + x98 + x107 + x108 + x110 ++ x157 + x159 + x160 + x161 + x164 + x179 + x180 + x181 + x183 + x189 ++ x215 + x216 + x242 + x256 + x257 + x258 + x259 + x260 + x294 + x360 ++ x362 + x364 + x475 + x479 + x493 + x496 + x498 <= 1 + +x2 + x30 + x32 + x33 + x34 + x40 + x41 + x42 + x44 + x45 ++ x55 + x56 + x58 + x63 + x69 + x70 + x71 + x72 + x73 + x74 ++ x89 + x105 + x106 + x107 + x108 + x109 + x110 + x115 + x126 + x128 ++ x146 + x154 + x156 + x164 + x166 + x180 + x181 + x183 + x189 + x190 ++ x192 + x193 + x196 + x213 + x214 + x216 + x242 + x256 + x257 + x258 ++ x259 + x260 + x261 + x282 + x294 + x295 + x318 + x324 + x360 + x362 ++ x364 + x365 + x378 + x396 + x397 + x398 + x399 + x400 + x420 + x423 ++ x436 + x437 + x444 + x445 + x451 + x470 + x475 + x479 + x480 + x493 ++ x496 + x497 + x498 <= 1 + +x34 + x40 + x41 + x44 + x45 + x55 + x56 + x58 + x64 + x69 ++ x70 + x71 + x72 + x73 + x74 + x81 + x83 + x89 + x107 + x110 ++ x120 + x121 + x122 + x123 + x124 + x128 + x146 + x153 + x154 + x161 ++ x164 + x167 + x178 + x179 + x180 + x181 + x183 + x189 + x192 + x193 ++ x196 + x197 + x200 + x213 + x214 + x215 + x216 + x217 + x232 + x256 ++ x257 + x258 + x259 + x260 + x272 + x273 + x286 + x287 + x288 + x289 ++ x294 + x301 + x302 + x303 + x318 + x324 + x327 + x328 + x333 + x349 ++ x351 + x362 + x373 + x378 + x381 + x394 + x395 + x396 + x397 + x398 ++ x399 + x423 + x436 + x437 + x438 + x439 + x442 + x443 + x444 + x445 ++ x451 + x465 + x468 + x469 + x470 + x475 + x478 + x479 + x480 + x488 ++ x489 + x490 + x491 + x496 + x497 + x498 <= 1 + +x2 + x30 + x31 + x32 + x33 + x34 + x35 + x41 + x44 + x45 ++ x50 + x66 + x67 + x69 + x70 + x71 + x72 + x73 + x74 + x83 ++ x120 + x121 + x122 + x123 + x124 + x157 + x158 + x159 + x160 + x161 ++ x164 + x174 + x178 + x180 + x181 + x182 + x183 + x195 + x196 + x197 ++ x200 + x213 + x214 + x215 + x230 + x233 + x235 + x257 + x258 + x259 ++ x260 + x281 + x289 + x294 + x299 + x302 + x303 + x325 + x327 + x328 ++ x333 + x349 + x362 + x364 + x365 + x373 + x376 + x377 + x378 + x381 ++ x394 + x395 + x396 + x397 + x398 + x399 + x400 + x401 + x402 + x403 ++ x404 + x405 + x413 + x437 + x438 + x439 + x442 + x443 + x444 + x445 ++ x447 + x468 + x469 + x475 + x477 + x478 + x479 + x480 + x487 + x488 ++ x489 + x491 + x501 <= 1 + +x22 + x30 + x31 + x32 + x33 + x34 + x35 + x49 + x50 + x52 ++ x55 + x56 + x64 + x65 + x66 + x69 + x70 + x71 + x72 + x73 ++ x74 + x83 + x94 + x153 + x157 + x158 + x159 + x160 + x161 + x162 ++ x165 + x178 + x179 + x180 + x181 + x182 + x183 + x186 + x192 + x195 ++ x201 + x205 + x206 + x218 + x232 + x258 + x259 + x263 + x286 + x289 ++ x290 + x294 + x295 + x303 + x324 + x325 + x326 + x327 + x329 + x349 ++ x351 + x362 + x364 + x371 + x376 + x377 + x378 + x379 + x380 + x381 ++ x394 + x395 + x396 + x397 + x398 + x399 + x400 + x402 + x403 + x404 ++ x405 + x434 + x436 + x437 + x438 + x439 + x442 + x443 + x444 + x468 ++ x469 + x475 + x477 + x486 + x487 + x488 + x489 + x490 + x492 + x494 ++ x497 + x498 <= 1 + +x18 + x20 + x21 + x23 + x26 + x30 + x31 + x32 + x33 + x35 ++ x52 + x56 + x66 + x69 + x70 + x71 + x72 + x73 + x94 + x123 ++ x133 + x153 + x157 + x158 + x159 + x160 + x161 + x162 + x178 + x179 ++ x180 + x181 + x182 + x183 + x192 + x193 + x195 + x200 + x202 + x204 ++ x205 + x286 + x287 + x289 + x290 + x295 + x331 + x335 + x348 + x349 ++ x351 + x371 + x377 + x379 + x380 + x381 + x394 + x395 + x396 + x397 ++ x398 + x399 + x404 + x405 + x415 + x433 + x434 + x435 + x436 + x437 ++ x439 + x440 + x443 + x444 + x468 + x475 + x477 + x480 + x485 + x486 ++ x490 + x494 + x497 + x498 <= 1 + +x18 + x21 + x23 + x26 + x30 + x31 + x32 + x33 + x35 + x44 ++ x56 + x108 + x153 + x157 + x158 + x159 + x160 + x161 + x162 + x178 ++ x180 + x181 + x182 + x183 + x188 + x191 + x195 + x200 + x201 + x202 ++ x287 + x289 + x290 + x295 + x297 + x298 + x317 + x324 + x325 + x328 ++ x329 + x351 + x376 + x379 + x380 + x394 + x395 + x396 + x397 + x398 ++ x399 + x405 + x421 + x433 + x435 + x437 + x439 + x475 + x477 + x478 ++ x479 + x480 + x481 + x486 + x497 <= 1 + +x3 + x25 + x27 + x28 + x29 + x31 + x32 + x33 + x34 + x35 ++ x54 + x56 + x58 + x96 + x151 + x156 + x160 + x161 + x162 + x236 ++ x240 + x245 + x246 + x248 + x249 + x250 + x256 + x261 + x268 + x274 ++ x288 + x305 + x306 + x308 + x309 + x310 + x360 + x364 + x365 + x391 ++ x394 + x406 + x407 + x409 + x462 + x493 + x494 <= 1 + +x3 + x12 + x24 + x25 + x27 + x28 + x29 + x31 + x32 + x33 ++ x35 + x56 + x58 + x71 + x93 + x95 + x96 + x151 + x154 + x159 ++ x161 + x162 + x172 + x240 + x242 + x243 + x244 + x245 + x246 + x247 ++ x248 + x249 + x250 + x256 + x305 + x308 + x309 + x310 + x352 + x360 ++ x364 + x365 + x393 + x396 + x399 + x406 + x407 + x438 + x462 + x467 ++ x495 <= 1 + +x0 + x3 + x24 + x25 + x28 + x29 + x31 + x32 + x33 + x34 ++ x35 + x56 + x96 + x108 + x125 + x154 + x159 + x161 + x172 + x195 ++ x240 + x241 + x242 + x244 + x246 + x247 + x248 + x250 + x288 + x360 ++ x362 + x364 + x365 + x393 + x396 + x399 + x460 + x461 + x462 + x464 ++ x475 + x497 <= 1 + +x0 + x3 + x19 + x24 + x25 + x28 + x29 + x30 + x31 + x32 ++ x33 + x34 + x35 + x56 + x63 + x64 + x65 + x67 + x68 + x95 ++ x107 + x108 + x120 + x125 + x134 + x154 + x159 + x161 + x172 + x189 ++ x195 + x240 + x241 + x242 + x246 + x247 + x248 + x250 + x251 + x257 ++ x258 + x259 + x261 + x276 + x288 + x306 + x362 + x364 + x365 + x395 ++ x396 + x397 + x398 + x399 + x417 + x426 + x451 + x460 + x462 + x464 ++ x475 + x477 + x479 + x480 + x493 + x497 + x498 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 + x41 + x43 + x45 + x56 ++ x63 + x64 + x70 + x95 + x106 + x107 + x108 + x115 + x120 + x124 ++ x125 + x134 + x147 + x154 + x159 + x161 + x178 + x180 + x182 + x183 ++ x189 + x197 + x213 + x217 + x240 + x241 + x242 + x248 + x257 + x258 ++ x259 + x260 + x261 + x288 + x306 + x329 + x331 + x360 + x362 + x364 ++ x365 + x400 + x416 + x417 + x420 + x436 + x451 + x475 + x479 + x480 ++ x493 + x496 + x497 + x498 <= 1 + +x11 + x30 + x31 + x32 + x33 + x34 + x35 + x40 + x41 + x43 ++ x51 + x55 + x56 + x63 + x64 + x65 + x66 + x74 + x83 + x120 ++ x123 + x124 + x125 + x134 + x146 + x154 + x159 + x160 + x178 + x180 ++ x181 + x182 + x183 + x189 + x193 + x194 + x196 + x197 + x200 + x213 ++ x214 + x216 + x217 + x218 + x248 + x257 + x258 + x259 + x260 + x279 ++ x287 + x289 + x301 + x304 + x318 + x325 + x326 + x328 + x329 + x330 ++ x331 + x332 + x333 + x362 + x364 + x365 + x378 + x381 + x394 + x395 ++ x396 + x397 + x398 + x399 + x412 + x414 + x416 + x436 + x437 + x438 ++ x439 + x443 + x445 + x464 + x465 + x468 + x475 + x477 + x479 + x480 ++ x484 + x487 + x490 + x496 + x497 + x498 <= 1 + +x2 + x18 + x22 + x30 + x31 + x32 + x33 + x34 + x35 + x40 ++ x41 + x43 + x44 + x49 + x51 + x55 + x56 + x64 + x65 + x66 ++ x67 + x72 + x73 + x74 + x83 + x107 + x120 + x121 + x122 + x123 ++ x124 + x153 + x157 + x158 + x159 + x160 + x161 + x178 + x179 + x180 ++ x181 + x182 + x183 + x192 + x195 + x196 + x197 + x200 + x205 + x230 ++ x232 + x235 + x257 + x258 + x259 + x286 + x289 + x294 + x301 + x302 ++ x304 + x324 + x326 + x327 + x328 + x329 + x332 + x351 + x364 + x365 ++ x371 + x373 + x376 + x377 + x378 + x380 + x381 + x394 + x395 + x396 ++ x397 + x398 + x399 + x401 + x403 + x413 + x414 + x436 + x437 + x438 ++ x439 + x443 + x444 + x445 + x468 + x469 + x475 + x477 + x478 + x479 ++ x480 + x484 + x486 + x487 + x488 + x489 + x490 + x492 + x496 + x497 ++ x498 <= 1 + +x18 + x19 + x21 + x22 + x23 + x24 + x30 + x31 + x32 + x33 ++ x34 + x35 + x41 + x43 + x44 + x49 + x50 + x52 + x53 + x55 ++ x56 + x64 + x65 + x66 + x71 + x73 + x74 + x94 + x122 + x123 ++ x124 + x151 + x153 + x157 + x158 + x159 + x160 + x161 + x181 + x182 ++ x183 + x196 + x200 + x218 + x235 + x258 + x289 + x294 + x324 + x325 ++ x326 + x327 + x328 + x329 + x331 + x349 + x351 + x376 + x377 + x378 ++ x380 + x394 + x395 + x396 + x397 + x398 + x399 + x404 + x405 + x412 ++ x413 + x414 + x415 + x421 + x435 + x436 + x437 + x438 + x439 + x440 ++ x444 + x445 + x468 + x475 + x477 + x478 + x479 + x480 + x486 + x498 + <= 1 + +x18 + x20 + x21 + x23 + x26 + x30 + x31 + x32 + x33 + x35 ++ x44 + x56 + x66 + x94 + x153 + x157 + x158 + x159 + x160 + x161 ++ x162 + x178 + x180 + x181 + x182 + x183 + x191 + x195 + x200 + x201 ++ x218 + x287 + x289 + x295 + x317 + x324 + x325 + x328 + x329 + x333 ++ x349 + x351 + x376 + x379 + x380 + x381 + x394 + x395 + x396 + x397 ++ x398 + x399 + x405 + x407 + x415 + x421 + x435 + x436 + x437 + x438 ++ x439 + x440 + x468 + x475 + x477 + x478 + x479 + x480 + x486 + x494 + <= 1 + +x15 + x20 + x23 + x30 + x31 + x32 + x33 + x35 + x53 + x108 ++ x153 + x157 + x158 + x159 + x160 + x174 + x188 + x200 + x201 + x289 ++ x317 + x329 + x351 + x376 + x379 + x380 + x381 + x384 + x394 + x395 ++ x396 + x397 + x398 + x399 + x437 + x439 + x440 + x477 + x478 + x480 ++ x486 <= 1 + +x3 + x27 + x28 + x29 + x31 + x33 + x34 + x35 + x58 + x96 ++ x159 + x161 + x162 + x188 + x236 + x245 + x250 + x256 + x261 + x267 ++ x288 + x309 + x364 + x382 + x391 + x394 + x401 + x406 + x407 + x493 ++ x494 <= 1 + +x3 + x24 + x31 + x32 + x33 + x34 + x35 + x93 + x96 + x151 ++ x161 + x162 + x246 + x247 + x248 + x249 + x250 + x256 + x268 + x288 ++ x308 + x310 + x334 + x362 + x365 + x406 + x407 + x462 + x475 <= 1 + +x0 + x3 + x19 + x31 + x32 + x33 + x34 + x35 + x63 + x95 ++ x147 + x151 + x154 + x159 + x162 + x172 + x195 + x246 + x247 + x248 ++ x249 + x250 + x251 + x288 + x334 + x362 + x365 + x462 + x464 + x475 ++ x479 + x480 <= 1 + +x19 + x29 + x31 + x32 + x33 + x35 + x63 + x65 + x67 + x68 ++ x95 + x108 + x134 + x147 + x154 + x159 + x167 + x172 + x195 + x241 ++ x242 + x247 + x250 + x251 + x259 + x288 + x330 + x334 + x362 + x364 ++ x365 + x396 + x397 + x398 + x399 + x417 + x424 + x426 + x463 + x464 ++ x475 + x479 + x480 + x493 + x497 + x498 <= 1 + +x19 + x30 + x31 + x33 + x34 + x35 + x43 + x45 + x63 + x65 ++ x67 + x68 + x107 + x108 + x120 + x125 + x134 + x147 + x154 + x159 ++ x161 + x178 + x181 + x182 + x193 + x195 + x205 + x217 + x242 + x246 ++ x247 + x248 + x250 + x251 + x258 + x259 + x260 + x276 + x330 + x332 ++ x334 + x360 + x362 + x364 + x365 + x376 + x395 + x396 + x397 + x398 ++ x399 + x412 + x416 + x417 + x424 + x426 + x451 + x460 + x462 + x463 ++ x464 + x465 + x475 + x477 + x479 + x480 + x493 + x497 <= 1 + +x19 + x30 + x31 + x32 + x33 + x34 + x35 + x43 + x63 + x64 ++ x65 + x66 + x67 + x68 + x83 + x125 + x134 + x146 + x154 + x157 ++ x158 + x159 + x160 + x161 + x178 + x180 + x181 + x182 + x183 + x193 ++ x194 + x205 + x213 + x214 + x216 + x217 + x218 + x259 + x325 + x326 ++ x327 + x328 + x330 + x332 + x334 + x362 + x364 + x365 + x371 + x378 ++ x395 + x396 + x397 + x398 + x399 + x412 + x413 + x416 + x417 + x424 ++ x425 + x436 + x437 + x439 + x460 + x463 + x464 + x465 + x475 + x477 ++ x479 + x480 + x484 <= 1 + +x18 + x19 + x22 + x30 + x31 + x32 + x33 + x34 + x35 + x43 ++ x44 + x55 + x56 + x63 + x64 + x65 + x66 + x68 + x72 + x74 ++ x83 + x120 + x121 + x123 + x124 + x125 + x153 + x157 + x158 + x159 ++ x160 + x161 + x178 + x179 + x180 + x181 + x182 + x183 + x196 + x197 ++ x200 + x205 + x218 + x258 + x259 + x279 + x289 + x304 + x324 + x325 ++ x326 + x327 + x328 + x330 + x331 + x332 + x371 + x373 + x376 + x378 ++ x381 + x394 + x395 + x396 + x397 + x398 + x399 + x404 + x412 + x413 ++ x414 + x415 + x416 + x417 + x436 + x437 + x438 + x439 + x445 + x460 ++ x465 + x475 + x484 + x487 + x492 + x497 + x498 <= 1 + +x18 + x19 + x22 + x23 + x43 + x44 + x55 + x56 + x68 + x73 ++ x83 + x94 + x120 + x123 + x157 + x158 + x159 + x160 + x161 + x180 ++ x181 + x182 + x183 + x200 + x258 + x279 + x289 + x394 + x395 + x396 ++ x397 + x398 + x404 + x412 + x413 + x414 + x415 + x416 + x437 + x438 ++ x439 + x441 + x475 + x477 + x478 + x479 + x480 + x492 + x497 + x498 + <= 1 + +x18 + x20 + x23 + x32 + x33 + x43 + x49 + x52 + x53 + x56 ++ x68 + x83 + x94 + x123 + x151 + x153 + x157 + x158 + x159 + x160 ++ x161 + x162 + x180 + x181 + x182 + x183 + x200 + x201 + x289 + x324 ++ x326 + x328 + x329 + x395 + x397 + x398 + x399 + x405 + x407 + x414 ++ x415 + x421 + x437 + x439 + x440 + x478 + x480 + x486 + x492 <= 1 + +x20 + x32 + x33 + x53 + x83 + x157 + x158 + x159 + x160 + x174 ++ x180 + x181 + x183 + x200 + x201 + x317 + x380 + x381 + x388 + x394 ++ x395 + x396 + x397 + x399 + x421 + x437 + x439 + x440 + x477 + x478 ++ x480 + x486 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 + x22 + x23 <= 1 + +x24 + x25 + x26 + x27 + x28 + x29 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 <= 1 + +x36 + x37 + x38 + x39 <= 1 + +x40 + x41 + x42 + x43 + x44 + x45 <= 1 + +x46 + x47 + x48 <= 1 + +x49 + x50 + x51 + x52 + x53 <= 1 + +x54 + x55 + x56 + x57 + x58 + x59 <= 1 + +x60 + x61 + x62 <= 1 + +x63 + x64 + x65 + x66 + x67 + x68 <= 1 + +x69 + x70 + x71 + x72 + x73 + x74 <= 1 + +x75 + x76 + x77 + x78 + x79 + x80 <= 1 + +x81 + x82 + x83 + x84 + x85 + x86 <= 1 + +x87 + x88 + x89 + x90 + x91 + x92 <= 1 + +x93 + x94 + x95 + x96 + x97 + x98 <= 1 + +x99 + x100 + x101 + x102 + x103 + x104 <= 1 + +x105 + x106 + x107 + x108 + x109 + x110 <= 1 + +x112 + x113 <= 1 + +x114 + x115 + x116 + x117 + x118 + x119 <= 1 + +x120 + x121 + x122 + x123 + x124 + x125 <= 1 + +x126 + x127 + x128 <= 1 + +x129 + x130 + x131 + x132 + x133 + x134 <= 1 + +x135 + x136 + x137 + x138 + x139 + x140 <= 1 + +x141 + x142 + x143 <= 1 + +x144 + x145 + x146 + x147 + x148 + x149 <= 1 + +x151 + x152 + x153 + x154 + x155 + x156 <= 1 + +x157 + x158 + x159 + x160 + x161 + x162 <= 1 + +x163 + x164 + x165 + x166 + x167 + x168 <= 1 + +x169 + x170 + x171 + x172 + x173 + x174 <= 1 + +x175 + x176 + x177 <= 1 + +x178 + x179 + x180 + x181 + x182 + x183 <= 1 + +x184 + x185 + x186 + x187 + x188 + x189 <= 1 + +x190 + x191 + x192 + x193 + x194 + x195 <= 1 + +x196 + x197 + x198 + x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x208 + x209 + x210 + x211 + x212 <= 1 + +x213 + x214 + x215 + x216 + x217 + x218 <= 1 + +x219 + x220 + x221 + x222 + x223 + x224 <= 1 + +x225 + x226 + x227 + x228 <= 1 + +x230 + x231 + x232 + x233 <= 1 + +x234 + x235 + x236 + x237 + x238 + x239 <= 1 + +x240 + x241 + x242 + x243 + x244 + x245 <= 1 + +x246 + x247 + x248 + x249 + x250 + x251 <= 1 + +x252 + x253 + x254 + x255 <= 1 + +x256 + x257 + x258 + x259 + x260 + x261 <= 1 + +x262 + x263 <= 1 + +x264 + x265 + x266 <= 1 + +x267 + x268 + x269 + x270 + x271 + x272 <= 1 + +x274 + x275 + x276 + x277 + x278 + x279 <= 1 + +x280 + x281 + x282 + x283 + x284 <= 1 + +x285 + x286 + x287 + x288 + x289 + x290 <= 1 + +x291 + x292 + x293 + x294 + x295 + x296 <= 1 + +x297 + x298 + x299 <= 1 + +x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 + x310 <= 1 + +x313 + x314 + x315 + x316 + x317 + x318 <= 1 + +x319 + x320 + x321 + x322 + x323 <= 1 + +x324 + x325 + x326 + x327 + x328 + x329 <= 1 + +x330 + x331 + x332 + x333 + x334 <= 1 + +x336 + x337 + x338 + x339 + x340 + x341 <= 1 + +x342 + x343 + x344 + x345 + x346 + x347 <= 1 + +x348 + x349 + x350 + x351 + x352 + x353 <= 1 + +x354 + x355 + x356 + x357 + x358 + x359 <= 1 + +x360 + x361 + x362 + x363 + x364 + x365 <= 1 + +x366 + x367 + x368 + x369 <= 1 + +x370 + x371 + x372 + x373 + x374 + x375 <= 1 + +x376 + x377 + x378 + x379 + x380 + x381 <= 1 + +x382 + x383 + x384 + x385 + x386 + x387 <= 1 + +x388 + x389 + x390 + x391 + x392 + x393 <= 1 + +x394 + x395 + x396 + x397 + x398 + x399 <= 1 + +x400 + x401 + x402 + x403 + x404 + x405 <= 1 + +x406 + x407 + x408 + x409 <= 1 + +x410 + x411 <= 1 + +x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 + x422 + x423 <= 1 + +x424 + x425 + x426 <= 1 + +x427 + x428 + x429 + x430 + x431 + x432 <= 1 + +x433 + x434 <= 1 + +x435 + x436 + x437 + x438 + x439 + x440 <= 1 + +x442 + x443 + x444 + x445 + x446 + x447 <= 1 + +x448 + x449 + x450 + x451 + x452 + x453 <= 1 + +x454 + x455 + x456 <= 1 + +x457 + x458 + x459 <= 1 + +x460 + x461 + x462 + x463 + x464 + x465 <= 1 + +x467 + x468 + x469 + x470 + x471 + x472 <= 1 + +x473 + x474 <= 1 + +x475 + x476 + x477 + x478 + x479 + x480 <= 1 + +x481 + x482 + x483 + x484 + x485 + x486 <= 1 + +x487 + x488 + x489 + x490 + x491 + x492 <= 1 + +x493 + x494 + x495 + x496 + x497 + x498 <= 1 + +x499 + x500 + x501 + x502 + x503 + x504 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 x503 x504 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0011.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0011.lp new file mode 100755 index 000000000..c5732b618 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0011.lp @@ -0,0 +1,987 @@ +max + +1144.46x0 + 1398.55x1 + 1381.69x2 + 1369.31x3 + 1353.11x4 + 1343.75x5 + 612.783x6 + 702.966x7 + 649.58x8 + 646.237x9 + +617.735x10 + 611.873x11 + 233.305x12 + 256.713x13 + 155.038x14 + 899.619x15 + 1024.94x16 + 1001.28x17 + 990.339x18 + 972.009x19 + +963.009x20 + 678.065x21 + 893.202x22 + 736.474x23 + 583.94x24 + 583.024x25 + 566.91x26 + 816.442x27 + 1087.07x28 + 1023.96x29 + +951.548x30 + 949.542x31 + 899.419x32 + 456.613x33 + 614.529x34 + 582.775x35 + 566.11x36 + 521.564x37 + 501.653x38 + 112.44x39 + +116.314x40 + 1982.82x41 + 2039.91x42 + 1971.25x43 + 1960.18x44 + 1937.37x45 + 1935.3x46 + 671.398x47 + 851.244x48 + 774.649x49 + +736.26x50 + 695.599x51 + 682.474x52 + 337.262x53 + 474.003x54 + 399.021x55 + 395.368x56 + 366.875x57 + 364.326x58 + 915.994x59 + +1309.79x60 + 1203.36x61 + 1095.33x62 + 1080.12x63 + 1060.23x64 + 822.414x65 + 924.328x66 + 797.321x67 + 794.778x68 + 771.87x69 + +743.604x70 + 737.907x71 + 924.01x72 + 846.837x73 + 836.43x74 + 811.188x75 + 780.347x76 + 1459.43x77 + 1657.36x78 + 1585.9x79 + +1566.89x80 + 1533.12x81 + 1518.56x82 + 258.623x83 + 241.632x84 + 172.261x85 + 146.657x86 + 106.476x87 + 152.398x88 + 288.639x89 + +424.285x90 + 408.656x91 + 364.349x92 + 332.965x93 + 311.263x94 + 237.059x95 + 344.999x96 + 191.286x97 + 179.751x98 + 142.783x99 + +1750.58x100 + 1991.55x101 + 1819.94x102 + 1797.02x103 + 1758.79x104 + 1741.78x105 + 971.911x106 + 1069.62x107 + 1050.02x108 + 977.993x109 + +946.041x110 + 917.734x111 + 127.025x112 + 73.7711x113 + 308.108x114 + 359.869x115 + 317.179x116 + 246.254x117 + 237.992x118 + 180.567x119 + +360.749x120 + 533.238x121 + 483.877x122 + 440.963x123 + 424.038x124 + 416.089x125 + 1728.15x126 + 1929.35x127 + 1879.64x128 + 1835.03x129 + +1697.5x130 + 1687.89x131 + 614.453x132 + 871.656x133 + 820.173x134 + 807.559x135 + 758.07x136 + 673.172x137 + 669.89x138 + 926.255x139 + +915.242x140 + 894.873x141 + 876.453x142 + 763.616x143 + 1594.03x144 + 1865.37x145 + 1765.06x146 + 1755.63x147 + 1729.62x148 + 1696.21x149 + +356.158x150 + 416.255x151 + 394.812x152 + 344.439x153 + 299.888x154 + 278.669x155 + 189.473x156 + 279.941x157 + 181.511x158 + 85.0603x159 + +489.537x160 + 726.773x161 + 639.421x162 + 613.933x163 + 574.609x164 + 564.639x165 + 296.605x166 + 1200.6x167 + 1504.4x168 + 1388.39x169 + +1348.34x170 + 1309.51x171 + 1295.15x172 + 357.763x173 + 477.457x174 + 432.902x175 + 424.824x176 + 402.054x177 + 245.813x178 + 211.67x179 + +294.282x180 + 249.423x181 + 180.583x182 + 2.14486x183 + 139.977x184 + 120.228x185 + 68.6955x186 + 489.429x187 + 708.016x188 + 701.953x189 + +698.343x190 + 642.205x191 + 608.639x192 + 1941.06x193 + 2144.32x194 + 2102.58x195 + 2056.61x196 + 2054.98x197 + 2019.32x198 + 197.195x199 + +224.869x200 + 96.2321x201 + 492.043x202 + 618.898x203 + 618.348x204 + 563.11x205 + 560.523x206 + 537.874x207 + 781.332x208 + 942.923x209 + +877.734x210 + 872.484x211 + 856.893x212 + 813.662x213 + 674.359x214 + 811.958x215 + 797.28x216 + 762.447x217 + 760.689x218 + 747.179x219 + +763.564x220 + 790.899x221 + 788.555x222 + 782.786x223 + 781.763x224 + 781.688x225 + 132.636x226 + 79.629x227 + 279.339x228 + 323.891x229 + +293.045x230 + 217.29x231 + 164.032x232 + 407.365x233 + 536.554x234 + 495.36x235 + 454.952x236 + 378.042x237 + 337.85x238 + 308.493x239 + +316.653x240 + 306.788x241 + 208.926x242 + 196.648x243 + 168.377x244 + 459.776x245 + 522.697x246 + 503.85x247 + 493.188x248 + 469.05x249 + +464.053x250 + 252.116x251 + 377.921x252 + 291.55x253 + 289.367x254 + 174.359x255 + 200.33x256 + 156.006x257 + 142.107x258 + 245.131x259 + +247.152x260 + 72.0462x261 + 397.602x262 + 581.106x263 + 471.987x264 + 423.38x265 + 338.809x266 + 273.779x267 + 1966.97x268 + 2414.24x269 + +2361.64x270 + 2341.34x271 + 2302.64x272 + 2269.31x273 + 334.707x274 + 380.724x275 + 371.016x276 + 174.805x277 + 22.0949x278 + 224.421x279 + +299.203x280 + 281.467x281 + 271.542x282 + 253.271x283 + 185.174x284 + 249.621x285 + 121.056x286 + 151.557x287 + 413.455x288 + 585.724x289 + +517.221x290 + 511.012x291 + 474.709x292 + 471.913x293 + 404.598x294 + 428.15x295 + 398.6x296 + 385.227x297 + 377.005x298 + 335.223x299 + +649.84x300 + 715.272x301 + 667.103x302 + 611.111x303 + 570.003x304 + 533.958x305 + 442.156x306 + 558.224x307 + 524.563x308 + 488.425x309 + +474.301x310 + 463.264x311 + 488.192x312 + 689.019x313 + 598.268x314 + 579.577x315 + 569.46x316 + 545.28x317 + 162.462x318 + 214.946x319 + +119.437x320 + 141.89x321 + 74.9947x322 + 100.076x323 + 393.124x324 + 556.409x325 + 542.696x326 + 470.312x327 + 444.186x328 + 401.189x329 + +72.3174x330 + 241.834x331 + 304.539x332 + 185.502x333 + 181.972x334 + 414.692x335 + 550.19x336 + 503.134x337 + 484.947x338 + 425.49x339 + +404.089x340 + 23.1871x341 + 761.763x342 + 747.373x343 + 746.343x344 + 735.32x345 + 728.068x346 + 726.859x347 + 818.843x348 + 853.378x349 + +818.602x350 + 732.589x351 + 711.432x352 + 702.112x353 + 129.312x354 + 315.614x355 + 50.171x356 + 96.6923x357 + 83.6081x358 + 66.1347x359 + +64.2999x360 + 74.4696x361 + 103.473x362 + 79.7159x363 + 51.3056x364 + 131.83x365 + 175.115x366 + 110.437x367 + 23.6956x368 + 83.5494x369 + +41.9867x370 + 595.394x371 + 749.874x372 + 688.345x373 + 679.892x374 + 667.22x375 + 653.333x376 + 532.296x377 + 760.554x378 + 753.22x379 + +723.816x380 + 707.188x381 + 677.341x382 + 124.742x383 + 28.444x384 + 90.9479x385 + 120.86x386 + 105.221x387 + 98.8582x388 + 302.12x389 + +313.662x390 + 311.795x391 + 281.402x392 + 256.074x393 + 655.758x394 + 694.417x395 + 670.881x396 + 583.986x397 + 578.921x398 + 558.734x399 + +225.199x400 + 80.3532x401 + 1156.15x402 + 1475.14x403 + 1295.21x404 + 1286.2x405 + 1274.39x406 + 1265.78x407 + 1064.65x408 + 1545.65x409 + +1477.66x410 + 1463.98x411 + 1443.33x412 + 1432.96x413 + 215.2x414 + 282.864x415 + 211.759x416 + 78.0387x417 + 227.432x418 + 245.454x419 + +181.027x420 + 155.841x421 + 813.173x422 + 1081.06x423 + 1077.48x424 + 1033.8x425 + 952.672x426 + 908.922x427 + 312.771x428 + 447.371x429 + +416.039x430 + 399.852x431 + 390.103x432 + 389.785x433 + 480.165x434 + 546.475x435 + 522.859x436 + 517.284x437 + 445.892x438 + 424.021x439 + +463.841x440 + 535.307x441 + 504.811x442 + 472.049x443 + 443.744x444 + 382.259x445 + 152.65x446 + 132.789x447 + 119.671x448 + 233.33x449 + +257.955x450 + 249.958x451 + 189.86x452 + 543.199x453 + 724.143x454 + 627.53x455 + 558.837x456 + 548.258x457 + 524.224x458 + 181.519x459 + +151.195x460 + 117.062x461 + 213.061x462 + 255.474x463 + 237.251x464 + 228.129x465 + 181.917x466 + 447.709x467 + 515.401x468 + 483.977x469 + +480.112x470 + 451.208x471 + 424.834x472 + 600.781x473 + 725.652x474 + 658.378x475 + 641.615x476 + 577.543x477 + 552.729x478 + 432.937x479 + +448.024x480 + 445.039x481 + 419.458x482 + 383.06x483 + 350.024x484 + 1428.52x485 + 1465.89x486 + 1438.46x487 + 1427.68x488 + 1378.6x489 + +1376.01x490 + 649.258x491 + 923.05x492 + 911.169x493 + 731.567x494 + 698.764x495 + 674.91x496 + 478.442x497 + 579.426x498 + 548.597x499 + +482.727x500 + 472.536x501 + 463.251x502 + +st + +x10 + x42 + x49 + x50 + x103 + x105 + x130 + x148 + x197 + x199 ++ x200 + x293 + x301 + x303 + x309 + x345 + x404 + x413 + x439 + x440 ++ x441 + x442 + x443 + x444 + x460 + x470 <= 1 + +x10 + x42 + x43 + x50 + x66 + x77 + x82 + x103 + x148 + x199 ++ x200 + x201 + x267 + x300 + x301 + x303 + x345 + x346 + x404 + x411 ++ x435 + x439 + x440 + x441 + x442 + x443 + x470 <= 1 + +x0 + x47 + x50 + x66 + x77 + x82 + x86 + x126 + x148 + x199 ++ x201 + x228 + x231 + x232 + x267 + x301 + x317 + x322 + x323 + x344 ++ x346 + x441 + x442 + x467 + x470 <= 1 + +x0 + x77 + x79 + x81 + x82 + x85 + x86 + x126 + x148 + x201 ++ x231 + x232 + x266 + x267 + x272 + x278 + x317 + x323 + x442 + x470 ++ x486 <= 1 + +x0 + x29 + x47 + x60 + x68 + x77 + x78 + x79 + x81 + x82 ++ x83 + x85 + x86 + x100 + x105 + x126 + x130 + x144 + x224 + x264 ++ x266 + x302 + x343 + x346 + x350 + x353 + x371 + x375 + x409 + x468 + <= 1 + +x0 + x27 + x31 + x52 + x68 + x77 + x78 + x79 + x80 + x82 ++ x100 + x126 + x130 + x144 + x145 + x148 + x164 + x168 + x224 + x242 ++ x266 + x302 + x348 + x350 + x371 + x372 + x375 + x406 + x428 + x468 + <= 1 + +x0 + x27 + x31 + x34 + x45 + x52 + x68 + x77 + x78 + x79 ++ x81 + x82 + x100 + x105 + x108 + x144 + x168 + x223 + x224 + x272 ++ x284 + x285 + x287 + x289 + x348 + x349 + x375 + x376 + x406 + x418 ++ x421 + x455 <= 1 + +x0 + x4 + x16 + x27 + x29 + x31 + x45 + x52 + x78 + x144 ++ x168 + x215 + x220 + x223 + x271 + x284 + x285 + x286 + x289 + x348 ++ x418 + x419 + x421 + x455 <= 1 + +x0 + x4 + x16 + x27 + x31 + x45 + x70 + x78 + x132 + x136 ++ x138 + x140 + x146 + x165 + x168 + x215 + x224 + x240 + x289 + x418 ++ x419 + x420 + x455 + x488 + x496 <= 1 + +x4 + x45 + x70 + x136 + x146 + x215 + x288 + x289 + x419 + x420 ++ x448 <= 1 + +x9 + x10 + x17 + x43 + x103 + x105 + x148 + x200 + x223 + x258 ++ x288 + x293 + x301 + x309 + x342 + x345 + x404 + x411 + x412 + x422 ++ x439 + x440 + x441 + x442 + x443 + x444 + x445 + x460 <= 1 + +x9 + x10 + x11 + x17 + x41 + x42 + x43 + x50 + x66 + x69 ++ x82 + x103 + x105 + x118 + x123 + x148 + x230 + x273 + x288 + x293 ++ x301 + x309 + x322 + x342 + x345 + x404 + x411 + x412 + x434 + x435 ++ x436 + x439 + x440 + x441 + x442 + x444 + x445 + x467 + x470 <= 1 + +x9 + x10 + x18 + x41 + x43 + x44 + x47 + x50 + x66 + x69 ++ x77 + x80 + x82 + x105 + x123 + x126 + x147 + x148 + x228 + x229 ++ x231 + x232 + x273 + x309 + x322 + x342 + x343 + x344 + x345 + x346 ++ x347 + x386 + x404 + x434 + x435 + x438 + x439 + x441 + x442 + x467 ++ x472 <= 1 + +x9 + x18 + x41 + x42 + x43 + x44 + x47 + x49 + x60 + x77 ++ x79 + x80 + x81 + x82 + x84 + x100 + x123 + x126 + x148 + x170 ++ x232 + x262 + x266 + x267 + x273 + x317 + x324 + x342 + x343 + x344 ++ x345 + x346 + x347 + x351 + x409 + x412 + x435 + x438 + x467 + x470 ++ x472 + x486 <= 1 + +x0 + x9 + x27 + x31 + x41 + x43 + x44 + x47 + x49 + x51 ++ x52 + x60 + x68 + x77 + x78 + x79 + x80 + x81 + x82 + x83 ++ x84 + x85 + x86 + x100 + x102 + x105 + x126 + x140 + x144 + x147 ++ x148 + x158 + x170 + x211 + x262 + x264 + x266 + x272 + x273 + x323 ++ x343 + x346 + x349 + x350 + x353 + x371 + x409 + x435 + x468 <= 1 + +x0 + x12 + x13 + x27 + x29 + x30 + x31 + x49 + x60 + x77 ++ x78 + x79 + x80 + x81 + x82 + x85 + x100 + x102 + x105 + x106 ++ x109 + x126 + x130 + x144 + x145 + x148 + x198 + x224 + x262 + x263 ++ x264 + x266 + x271 + x272 + x313 + x346 + x348 + x349 + x350 + x353 ++ x371 + x372 + x375 + x487 <= 1 + +x0 + x4 + x13 + x27 + x28 + x29 + x30 + x31 + x34 + x43 ++ x44 + x45 + x49 + x52 + x77 + x78 + x79 + x80 + x81 + x82 ++ x100 + x102 + x105 + x106 + x108 + x109 + x111 + x126 + x127 + x130 ++ x136 + x137 + x140 + x141 + x144 + x145 + x148 + x155 + x168 + x198 ++ x220 + x223 + x224 + x225 + x256 + x264 + x269 + x271 + x272 + x285 ++ x289 + x313 + x348 + x349 + x353 + x371 + x372 + x373 + x375 + x376 ++ x403 + x413 + x421 + x455 + x469 + x487 <= 1 + +x0 + x4 + x27 + x29 + x31 + x34 + x43 + x45 + x52 + x81 ++ x100 + x106 + x132 + x136 + x140 + x145 + x146 + x168 + x220 + x222 ++ x223 + x224 + x225 + x271 + x272 + x284 + x286 + x289 + x348 + x371 ++ x375 + x376 + x421 + x455 <= 1 + +x4 + x30 + x41 + x45 + x65 + x70 + x78 + x106 + x130 + x132 ++ x136 + x137 + x138 + x140 + x141 + x143 + x145 + x146 + x168 + x210 ++ x220 + x221 + x222 + x223 + x224 + x225 + x239 + x240 + x269 + x270 ++ x271 + x272 + x289 + x318 + x319 + x348 + x376 + x418 + x419 + x453 ++ x455 + x488 <= 1 + +x3 + x54 + x65 + x70 + x101 + x102 + x106 + x118 + x128 + x130 ++ x136 + x137 + x138 + x140 + x142 + x143 + x146 + x168 + x220 + x221 ++ x223 + x225 + x239 + x241 + x315 + x316 + x317 + x318 + x320 + x334 ++ x336 + x348 + x423 + x455 + x483 + x486 <= 1 + +x6 + x9 + x10 + x41 + x43 + x103 + x105 + x148 + x223 + x227 ++ x256 + x258 + x288 + x290 + x291 + x292 + x293 + x301 + x342 + x344 ++ x345 + x404 + x411 + x439 + x440 + x441 + x443 + x444 + x445 + x459 ++ x460 <= 1 + +x4 + x6 + x8 + x9 + x10 + x11 + x17 + x41 + x43 + x44 ++ x66 + x69 + x82 + x103 + x105 + x122 + x147 + x148 + x170 + x195 ++ x228 + x230 + x272 + x288 + x291 + x292 + x301 + x309 + x342 + x344 ++ x345 + x398 + x411 + x412 + x434 + x435 + x436 + x437 + x438 + x439 ++ x440 + x444 + x445 + x470 + x471 <= 1 + +x10 + x19 + x41 + x43 + x44 + x47 + x50 + x66 + x68 + x69 ++ x77 + x79 + x80 + x82 + x100 + x102 + x103 + x105 + x123 + x145 ++ x147 + x148 + x170 + x228 + x229 + x231 + x246 + x265 + x272 + x288 ++ x291 + x292 + x301 + x309 + x326 + x327 + x342 + x343 + x344 + x345 ++ x346 + x386 + x434 + x437 + x438 + x444 + x467 + x471 + x486 + x498 ++ x499 + x502 <= 1 + +x1 + x3 + x10 + x19 + x30 + x32 + x43 + x44 + x47 + x48 ++ x50 + x60 + x66 + x69 + x77 + x79 + x80 + x81 + x82 + x83 ++ x84 + x100 + x102 + x126 + x127 + x145 + x147 + x148 + x163 + x170 ++ x246 + x262 + x265 + x268 + x273 + x291 + x295 + x317 + x324 + x342 ++ x343 + x346 + x347 + x351 + x409 + x411 + x412 + x434 + x437 + x438 ++ x467 + x468 + x469 + x470 + x471 + x472 + x486 + x487 + x492 + x498 + <= 1 + +x3 + x14 + x17 + x27 + x28 + x30 + x32 + x43 + x44 + x47 ++ x48 + x49 + x50 + x51 + x52 + x60 + x77 + x78 + x79 + x80 ++ x81 + x82 + x83 + x84 + x100 + x102 + x105 + x111 + x126 + x130 ++ x140 + x145 + x147 + x148 + x163 + x170 + x262 + x263 + x264 + x265 ++ x268 + x272 + x280 + x295 + x317 + x324 + x342 + x343 + x349 + x350 ++ x351 + x353 + x372 + x376 + x401 + x409 + x412 + x437 + x467 + x468 ++ x486 + x487 <= 1 + +x0 + x12 + x13 + x27 + x28 + x29 + x30 + x31 + x32 + x34 ++ x43 + x44 + x47 + x48 + x49 + x52 + x60 + x77 + x78 + x79 ++ x80 + x81 + x82 + x100 + x102 + x105 + x106 + x107 + x108 + x109 ++ x111 + x126 + x129 + x130 + x136 + x140 + x141 + x144 + x145 + x147 ++ x148 + x163 + x168 + x224 + x263 + x264 + x268 + x269 + x271 + x272 ++ x273 + x289 + x313 + x317 + x343 + x346 + x348 + x349 + x350 + x351 ++ x353 + x371 + x372 + x373 + x375 + x376 + x382 + x400 + x401 + x403 ++ x413 + x424 + x455 + x468 + x486 + x487 <= 1 + +x1 + x27 + x28 + x29 + x30 + x31 + x32 + x34 + x43 + x44 ++ x48 + x60 + x77 + x78 + x79 + x80 + x81 + x82 + x100 + x102 ++ x103 + x105 + x106 + x107 + x108 + x109 + x111 + x126 + x129 + x130 ++ x132 + x133 + x136 + x137 + x139 + x140 + x141 + x143 + x144 + x145 ++ x146 + x148 + x155 + x168 + x189 + x196 + x197 + x198 + x220 + x221 ++ x223 + x224 + x225 + x263 + x269 + x271 + x272 + x289 + x313 + x314 ++ x337 + x340 + x343 + x348 + x349 + x350 + x351 + x352 + x353 + x371 ++ x373 + x375 + x376 + x403 + x409 + x410 + x412 + x423 + x424 + x469 ++ x487 + x489 <= 1 + +x17 + x53 + x57 + x70 + x78 + x79 + x80 + x100 + x102 + x109 ++ x110 + x111 + x123 + x130 + x132 + x134 + x135 + x137 + x138 + x139 ++ x141 + x143 + x146 + x150 + x151 + x153 + x187 + x189 + x191 + x220 ++ x221 + x222 + x223 + x225 + x270 + x271 + x312 + x315 + x316 + x335 ++ x337 + x340 + x373 + x374 + x403 + x423 + x453 + x455 + x488 + x489 + <= 1 + +x25 + x53 + x56 + x57 + x70 + x74 + x78 + x79 + x102 + x126 ++ x128 + x130 + x132 + x134 + x135 + x136 + x137 + x138 + x140 + x141 ++ x142 + x143 + x146 + x153 + x191 + x197 + x210 + x220 + x221 + x222 ++ x223 + x225 + x241 + x259 + x269 + x270 + x271 + x272 + x312 + x315 ++ x316 + x319 + x335 + x340 + x373 + x381 + x403 + x453 + x455 + x488 + <= 1 + +x25 + x53 + x54 + x56 + x57 + x58 + x65 + x70 + x101 + x102 ++ x103 + x118 + x128 + x130 + x132 + x136 + x137 + x138 + x142 + x143 ++ x146 + x220 + x221 + x222 + x223 + x225 + x241 + x315 + x316 + x317 ++ x320 + x331 + x333 + x334 + x381 + x455 + x466 + x477 + x486 + x489 + <= 1 + +x6 + x7 + x8 + x101 + x105 + x148 + x160 + x198 + x217 + x222 ++ x226 + x227 + x255 + x256 + x258 + x268 + x288 + x290 + x291 + x292 ++ x293 + x342 + x344 + x354 + x443 + x444 + x445 + x459 + x461 <= 1 + +x4 + x6 + x7 + x8 + x9 + x11 + x16 + x18 + x19 + x36 ++ x41 + x43 + x44 + x50 + x51 + x66 + x82 + x102 + x103 + x105 ++ x122 + x147 + x148 + x149 + x170 + x195 + x210 + x229 + x230 + x291 ++ x292 + x327 + x345 + x388 + x398 + x406 + x409 + x412 + x434 + x435 ++ x436 + x440 + x492 + x499 + x501 <= 1 + +x3 + x4 + x11 + x18 + x19 + x30 + x32 + x36 + x41 + x43 ++ x45 + x48 + x50 + x51 + x65 + x66 + x68 + x69 + x77 + x79 ++ x82 + x102 + x103 + x120 + x122 + x129 + x145 + x147 + x148 + x170 ++ x217 + x219 + x229 + x230 + x265 + x291 + x292 + x301 + x326 + x327 ++ x329 + x351 + x385 + x386 + x398 + x406 + x408 + x412 + x434 + x437 ++ x438 + x471 + x497 + x498 + x499 + x501 + x502 <= 1 + +x1 + x3 + x4 + x10 + x17 + x23 + x32 + x41 + x43 + x44 ++ x46 + x48 + x49 + x51 + x60 + x65 + x66 + x67 + x69 + x77 ++ x81 + x82 + x102 + x105 + x122 + x128 + x129 + x144 + x145 + x165 ++ x170 + x219 + x262 + x265 + x268 + x273 + x295 + x324 + x325 + x326 ++ x329 + x351 + x353 + x406 + x408 + x409 + x411 + x412 + x467 + x471 ++ x472 + x486 + x487 + x497 + x498 + x499 + x500 + x501 + x502 <= 1 + +x1 + x3 + x4 + x14 + x17 + x30 + x32 + x34 + x43 + x44 ++ x47 + x48 + x49 + x51 + x52 + x60 + x66 + x67 + x77 + x78 ++ x79 + x81 + x91 + x100 + x105 + x111 + x122 + x126 + x128 + x129 ++ x144 + x145 + x146 + x147 + x148 + x149 + x163 + x171 + x184 + x216 ++ x219 + x263 + x265 + x268 + x269 + x270 + x271 + x272 + x273 + x280 ++ x299 + x326 + x349 + x350 + x353 + x372 + x376 + x409 + x411 + x412 ++ x413 + x437 + x472 + x497 + x498 + x500 + x502 <= 1 + +x1 + x12 + x14 + x26 + x27 + x28 + x29 + x30 + x31 + x32 ++ x34 + x43 + x44 + x48 + x49 + x52 + x60 + x77 + x78 + x79 ++ x80 + x81 + x82 + x100 + x105 + x106 + x108 + x109 + x111 + x126 ++ x129 + x136 + x141 + x144 + x145 + x146 + x147 + x148 + x149 + x163 ++ x168 + x175 + x198 + x224 + x263 + x268 + x269 + x270 + x271 + x272 ++ x273 + x299 + x313 + x337 + x343 + x349 + x350 + x351 + x352 + x353 ++ x372 + x373 + x375 + x400 + x403 + x409 + x410 + x411 + x412 + x413 ++ x468 + x498 <= 1 + +x1 + x18 + x28 + x29 + x31 + x32 + x60 + x78 + x79 + x80 ++ x100 + x104 + x105 + x106 + x107 + x108 + x109 + x110 + x128 + x129 ++ x130 + x133 + x140 + x141 + x144 + x145 + x148 + x150 + x155 + x189 ++ x196 + x198 + x224 + x238 + x268 + x270 + x271 + x272 + x314 + x348 ++ x349 + x350 + x351 + x352 + x373 + x375 + x376 + x409 + x424 + x458 ++ x487 <= 1 + +x1 + x28 + x30 + x34 + x43 + x54 + x57 + x58 + x60 + x62 ++ x70 + x73 + x74 + x78 + x80 + x81 + x102 + x103 + x105 + x106 ++ x107 + x108 + x109 + x110 + x111 + x126 + x128 + x130 + x132 + x134 ++ x135 + x136 + x137 + x138 + x139 + x141 + x142 + x143 + x144 + x145 ++ x146 + x150 + x151 + x152 + x153 + x187 + x189 + x196 + x197 + x220 ++ x221 + x222 + x225 + x234 + x270 + x271 + x272 + x312 + x313 + x314 ++ x316 + x335 + x337 + x340 + x352 + x360 + x373 + x403 + x423 + x424 ++ x489 <= 1 + +x28 + x53 + x54 + x56 + x57 + x58 + x70 + x72 + x73 + x74 ++ x78 + x80 + x102 + x110 + x111 + x126 + x127 + x128 + x130 + x132 ++ x134 + x135 + x137 + x138 + x139 + x141 + x142 + x143 + x144 + x145 ++ x146 + x152 + x153 + x187 + x188 + x191 + x192 + x197 + x220 + x221 ++ x222 + x225 + x236 + x241 + x259 + x269 + x270 + x271 + x272 + x312 ++ x315 + x316 + x335 + x337 + x339 + x340 + x352 + x373 + x374 + x403 ++ x424 + x476 + x486 + x488 + x489 <= 1 + +x23 + x53 + x54 + x56 + x57 + x58 + x70 + x74 + x101 + x102 ++ x103 + x107 + x128 + x130 + x132 + x135 + x137 + x138 + x142 + x143 ++ x146 + x220 + x221 + x222 + x223 + x225 + x237 + x269 + x312 + x315 ++ x316 + x317 + x321 + x331 + x332 + x333 + x334 + x340 + x371 + x373 ++ x403 + x424 + x425 + x486 + x489 <= 1 + +x6 + x7 + x8 + x101 + x139 + x148 + x160 + x198 + x217 + x226 ++ x255 + x256 + x258 + x268 + x288 + x290 + x292 + x344 + x354 + x424 ++ x443 + x445 + x459 + x461 <= 1 + +x3 + x4 + x6 + x7 + x8 + x9 + x11 + x15 + x16 + x18 ++ x19 + x41 + x42 + x43 + x44 + x45 + x46 + x82 + x165 + x170 ++ x195 + x217 + x290 + x292 + x327 + x379 + x388 + x398 + x408 + x409 ++ x411 + x412 + x436 + x457 + x471 + x499 + x501 <= 1 + +x3 + x4 + x6 + x7 + x8 + x11 + x16 + x17 + x18 + x19 ++ x23 + x36 + x38 + x41 + x42 + x43 + x44 + x45 + x46 + x48 ++ x51 + x65 + x68 + x69 + x77 + x122 + x129 + x145 + x157 + x165 ++ x170 + x185 + x216 + x217 + x271 + x290 + x291 + x293 + x294 + x295 ++ x296 + x297 + x301 + x324 + x325 + x326 + x327 + x329 + x358 + x385 ++ x388 + x398 + x406 + x408 + x409 + x411 + x412 + x413 + x436 + x437 ++ x438 + x457 + x471 + x497 + x499 + x501 <= 1 + +x3 + x4 + x6 + x10 + x16 + x17 + x18 + x19 + x23 + x41 ++ x43 + x44 + x45 + x46 + x51 + x65 + x67 + x68 + x69 + x77 ++ x81 + x91 + x99 + x122 + x128 + x129 + x144 + x145 + x157 + x165 ++ x170 + x172 + x182 + x184 + x185 + x216 + x217 + x219 + x235 + x240 ++ x268 + x271 + x272 + x273 + x294 + x295 + x296 + x297 + x298 + x311 ++ x324 + x325 + x326 + x327 + x329 + x359 + x385 + x387 + x408 + x409 ++ x411 + x412 + x413 + x436 + x457 + x471 + x497 + x499 + x500 + x501 ++ x502 <= 1 + +x16 + x17 + x19 + x20 + x26 + x32 + x43 + x44 + x51 + x66 ++ x67 + x77 + x79 + x87 + x91 + x93 + x100 + x101 + x102 + x105 ++ x108 + x128 + x129 + x144 + x146 + x169 + x170 + x171 + x184 + x185 ++ x216 + x240 + x268 + x269 + x271 + x272 + x273 + x294 + x297 + x299 ++ x326 + x349 + x353 + x367 + x376 + x409 + x410 + x411 + x412 + x413 ++ x431 + x436 + x485 + x487 + x497 + x498 + x500 + x501 + x502 <= 1 + +x1 + x5 + x16 + x17 + x20 + x26 + x29 + x30 + x32 + x33 ++ x34 + x37 + x38 + x48 + x51 + x66 + x67 + x78 + x79 + x80 ++ x87 + x88 + x93 + x101 + x104 + x105 + x108 + x109 + x111 + x126 ++ x127 + x128 + x129 + x141 + x145 + x146 + x147 + x149 + x154 + x163 ++ x168 + x169 + x170 + x171 + x196 + x238 + x268 + x269 + x270 + x271 ++ x272 + x273 + x326 + x337 + x350 + x352 + x372 + x405 + x409 + x410 ++ x411 + x412 + x413 + x432 + x433 + x485 + x486 + x487 + x498 + x500 ++ x502 <= 1 + +x1 + x5 + x16 + x18 + x20 + x22 + x33 + x37 + x74 + x78 ++ x80 + x81 + x88 + x93 + x94 + x100 + x101 + x103 + x104 + x105 ++ x106 + x107 + x108 + x109 + x110 + x111 + x127 + x128 + x130 + x133 ++ x140 + x149 + x150 + x151 + x154 + x155 + x191 + x192 + x196 + x197 ++ x233 + x238 + x268 + x269 + x270 + x271 + x272 + x276 + x312 + x314 ++ x315 + x339 + x352 + x372 + x403 + x409 + x423 + x428 + x431 + x432 ++ x433 + x458 + x486 + x487 <= 1 + +x0 + x1 + x18 + x22 + x28 + x54 + x55 + x62 + x63 + x70 ++ x72 + x73 + x74 + x78 + x80 + x81 + x101 + x103 + x104 + x105 ++ x106 + x107 + x108 + x109 + x110 + x111 + x127 + x128 + x130 + x132 ++ x133 + x134 + x135 + x139 + x142 + x143 + x144 + x146 + x150 + x151 ++ x152 + x188 + x189 + x190 + x191 + x192 + x196 + x197 + x209 + x220 ++ x221 + x222 + x224 + x234 + x235 + x236 + x269 + x270 + x271 + x276 ++ x302 + x312 + x314 + x315 + x335 + x336 + x337 + x339 + x369 + x374 ++ x403 + x409 + x423 + x424 + x432 + x446 + x447 + x450 + x458 + x473 ++ x476 + x485 + x486 + x487 + x488 + x489 + x490 + x492 + x496 <= 1 + +x22 + x55 + x56 + x61 + x70 + x72 + x73 + x81 + x100 + x101 ++ x102 + x103 + x104 + x106 + x107 + x108 + x110 + x127 + x128 + x130 ++ x132 + x133 + x134 + x135 + x137 + x138 + x139 + x141 + x142 + x144 ++ x146 + x151 + x153 + x176 + x186 + x187 + x188 + x190 + x191 + x192 ++ x196 + x221 + x222 + x225 + x236 + x241 + x259 + x267 + x269 + x270 ++ x271 + x272 + x302 + x312 + x314 + x315 + x316 + x332 + x335 + x339 ++ x374 + x403 + x409 + x422 + x423 + x424 + x432 + x446 + x448 + x476 ++ x485 + x486 + x487 + x488 + x489 + x495 + x496 <= 1 + +x2 + x22 + x23 + x53 + x55 + x56 + x61 + x70 + x72 + x100 ++ x101 + x102 + x103 + x104 + x107 + x108 + x127 + x128 + x130 + x134 ++ x135 + x137 + x138 + x139 + x142 + x143 + x144 + x146 + x166 + x174 ++ x188 + x190 + x222 + x237 + x260 + x267 + x269 + x271 + x312 + x314 ++ x316 + x321 + x331 + x332 + x340 + x371 + x374 + x403 + x423 + x424 ++ x425 + x474 + x475 + x476 + x485 + x486 + x488 + x489 <= 1 + +x6 + x7 + x8 + x11 + x18 + x19 + x24 + x29 + x133 + x139 ++ x156 + x160 + x165 + x195 + x198 + x217 + x255 + x257 + x288 + x290 ++ x292 + x298 + x379 + x398 + x408 + x409 + x443 + x445 + x461 <= 1 + +x3 + x4 + x6 + x7 + x8 + x11 + x15 + x18 + x19 + x24 ++ x29 + x41 + x42 + x43 + x44 + x45 + x46 + x67 + x69 + x82 ++ x97 + x139 + x143 + x156 + x157 + x165 + x195 + x198 + x214 + x216 ++ x217 + x251 + x255 + x257 + x290 + x298 + x327 + x352 + x379 + x381 ++ x387 + x398 + x404 + x408 + x409 + x411 + x413 + x469 <= 1 + +x3 + x4 + x6 + x7 + x8 + x11 + x15 + x16 + x17 + x18 ++ x19 + x20 + x23 + x38 + x41 + x44 + x45 + x46 + x65 + x67 ++ x68 + x69 + x91 + x95 + x97 + x99 + x122 + x144 + x145 + x157 ++ x162 + x165 + x167 + x170 + x172 + x182 + x195 + x214 + x216 + x217 ++ x218 + x219 + x271 + x272 + x290 + x293 + x294 + x296 + x297 + x298 ++ x311 + x324 + x325 + x326 + x327 + x328 + x329 + x352 + x357 + x358 ++ x387 + x406 + x408 + x409 + x411 + x412 + x413 + x453 + x457 + x469 ++ x497 + x499 + x500 <= 1 + +x3 + x4 + x17 + x19 + x38 + x41 + x43 + x44 + x46 + x65 ++ x67 + x68 + x69 + x77 + x91 + x96 + x101 + x122 + x128 + x129 ++ x145 + x157 + x165 + x167 + x170 + x172 + x195 + x216 + x217 + x219 ++ x268 + x271 + x272 + x273 + x294 + x295 + x296 + x297 + x298 + x299 ++ x324 + x325 + x328 + x329 + x333 + x357 + x359 + x364 + x366 + x408 ++ x409 + x411 + x412 + x413 + x457 + x469 + x485 <= 1 + +x1 + x3 + x17 + x19 + x38 + x41 + x44 + x46 + x60 + x64 ++ x65 + x67 + x68 + x89 + x91 + x93 + x96 + x101 + x128 + x129 ++ x131 + x149 + x171 + x194 + x195 + x268 + x269 + x271 + x272 + x273 ++ x294 + x296 + x299 + x328 + x329 + x365 + x366 + x367 + x379 + x410 ++ x411 + x413 + x457 + x477 + x485 + x500 + x501 <= 1 + +x1 + x3 + x5 + x16 + x17 + x32 + x33 + x34 + x37 + x38 ++ x64 + x79 + x89 + x91 + x93 + x98 + x101 + x102 + x104 + x105 ++ x127 + x128 + x129 + x133 + x146 + x147 + x149 + x154 + x163 + x169 ++ x171 + x194 + x196 + x268 + x269 + x270 + x271 + x272 + x273 + x296 ++ x299 + x326 + x328 + x329 + x352 + x402 + x405 + x410 + x411 + x412 ++ x413 + x428 + x430 + x431 + x432 + x433 + x457 + x477 + x485 + x487 ++ x500 + x502 <= 1 + +x0 + x1 + x5 + x20 + x22 + x33 + x37 + x38 + x46 + x60 ++ x64 + x74 + x79 + x80 + x89 + x90 + x94 + x100 + x101 + x103 ++ x104 + x107 + x109 + x110 + x127 + x128 + x129 + x130 + x133 + x149 ++ x154 + x168 + x171 + x192 + x196 + x197 + x213 + x233 + x234 + x238 ++ x268 + x269 + x270 + x271 + x272 + x300 + x314 + x339 + x395 + x402 ++ x403 + x405 + x410 + x413 + x428 + x429 + x430 + x431 + x432 + x433 ++ x477 + x485 + x487 + x496 <= 1 + +x0 + x2 + x22 + x46 + x60 + x61 + x62 + x63 + x64 + x74 ++ x76 + x78 + x80 + x81 + x94 + x100 + x101 + x102 + x103 + x104 ++ x109 + x126 + x127 + x128 + x129 + x130 + x133 + x139 + x142 + x146 ++ x149 + x177 + x188 + x189 + x190 + x191 + x192 + x194 + x196 + x197 ++ x209 + x212 + x213 + x221 + x233 + x234 + x235 + x269 + x270 + x271 ++ x276 + x300 + x302 + x314 + x336 + x338 + x339 + x395 + x403 + x413 ++ x423 + x424 + x427 + x428 + x429 + x430 + x431 + x447 + x473 + x474 ++ x476 + x477 + x485 + x487 + x488 + x489 + x490 + x491 + x492 + x493 ++ x495 + x496 <= 1 + +x22 + x28 + x55 + x61 + x62 + x63 + x64 + x71 + x72 + x73 ++ x74 + x75 + x78 + x80 + x81 + x100 + x101 + x102 + x103 + x104 ++ x107 + x110 + x111 + x127 + x128 + x129 + x130 + x133 + x134 + x135 ++ x138 + x139 + x142 + x146 + x170 + x174 + x176 + x177 + x187 + x188 ++ x189 + x190 + x191 + x192 + x194 + x196 + x197 + x212 + x221 + x233 ++ x234 + x235 + x236 + x237 + x260 + x269 + x270 + x271 + x302 + x312 ++ x314 + x315 + x335 + x336 + x338 + x339 + x355 + x374 + x395 + x396 ++ x403 + x422 + x423 + x424 + x427 + x429 + x430 + x431 + x432 + x474 ++ x475 + x476 + x477 + x478 + x485 + x486 + x487 + x488 + x489 + x490 ++ x493 + x494 + x495 + x496 <= 1 + +x2 + x21 + x22 + x23 + x28 + x55 + x61 + x72 + x81 + x100 ++ x101 + x102 + x103 + x104 + x107 + x110 + x127 + x128 + x129 + x134 ++ x135 + x166 + x174 + x187 + x188 + x190 + x194 + x196 + x197 + x213 ++ x233 + x236 + x237 + x260 + x269 + x271 + x291 + x302 + x316 + x336 ++ x355 + x395 + x403 + x423 + x424 + x468 + x474 + x475 + x476 + x485 ++ x486 + x487 + x488 + x489 + x492 + x493 <= 1 + +x20 + x21 + x24 + x25 + x26 + x42 + x44 + x45 + x104 + x117 ++ x167 + x172 + x193 + x195 + x198 + x204 + x214 + x218 + x251 + x257 ++ x307 + x327 + x377 + x379 + x381 + x404 + x407 + x408 + x466 <= 1 + +x4 + x8 + x15 + x18 + x19 + x20 + x21 + x24 + x26 + x41 ++ x42 + x44 + x45 + x46 + x69 + x104 + x117 + x167 + x172 + x193 ++ x195 + x198 + x202 + x206 + x207 + x214 + x216 + x217 + x219 + x248 ++ x251 + x253 + x257 + x306 + x327 + x352 + x377 + x379 + x380 + x381 ++ x382 + x394 + x397 + x398 + x404 + x408 + x413 <= 1 + +x4 + x7 + x8 + x11 + x15 + x16 + x17 + x20 + x26 + x41 ++ x42 + x44 + x45 + x46 + x65 + x68 + x95 + x97 + x99 + x117 ++ x144 + x162 + x164 + x165 + x167 + x172 + x182 + x195 + x198 + x214 ++ x216 + x217 + x218 + x219 + x272 + x293 + x305 + x311 + x324 + x325 ++ x328 + x329 + x361 + x364 + x378 + x379 + x381 + x382 + x397 + x398 ++ x399 + x404 + x408 + x409 + x411 + x412 + x413 + x453 + x457 + x497 + <= 1 + +x7 + x11 + x15 + x16 + x38 + x41 + x43 + x44 + x46 + x65 ++ x67 + x95 + x97 + x98 + x129 + x165 + x167 + x172 + x183 + x195 ++ x216 + x217 + x268 + x272 + x273 + x290 + x293 + x297 + x298 + x324 ++ x325 + x326 + x328 + x329 + x364 + x368 + x379 + x408 + x409 + x410 ++ x411 + x412 + x413 + x457 + x469 + x491 <= 1 + +x0 + x1 + x3 + x16 + x38 + x41 + x42 + x43 + x44 + x46 ++ x67 + x95 + x96 + x98 + x103 + x129 + x131 + x159 + x171 + x194 ++ x219 + x268 + x269 + x270 + x272 + x273 + x304 + x325 + x328 + x329 ++ x365 + x366 + x367 + x368 + x379 + x408 + x410 + x411 + x412 + x413 ++ x457 + x469 + x491 <= 1 + +x1 + x3 + x5 + x16 + x33 + x38 + x42 + x46 + x59 + x64 ++ x67 + x75 + x76 + x89 + x92 + x93 + x94 + x96 + x98 + x101 ++ x102 + x103 + x104 + x121 + x126 + x127 + x128 + x129 + x131 + x149 ++ x169 + x171 + x193 + x194 + x219 + x268 + x269 + x270 + x272 + x273 ++ x317 + x325 + x328 + x365 + x368 + x369 + x370 + x378 + x379 + x405 ++ x410 + x411 + x412 + x413 + x414 + x415 + x425 + x430 + x431 + x433 ++ x457 + x485 + x494 <= 1 + +x0 + x2 + x3 + x5 + x16 + x22 + x33 + x46 + x59 + x60 ++ x61 + x62 + x64 + x67 + x75 + x76 + x80 + x89 + x90 + x92 ++ x94 + x100 + x102 + x103 + x104 + x121 + x126 + x127 + x128 + x129 ++ x130 + x131 + x149 + x154 + x156 + x159 + x161 + x168 + x169 + x187 ++ x197 + x213 + x238 + x268 + x269 + x270 + x272 + x273 + x302 + x303 ++ x328 + x395 + x396 + x402 + x415 + x417 + x427 + x428 + x429 + x430 ++ x431 + x433 + x479 + x481 + x485 + x489 + x490 + x491 + x492 + x495 ++ x496 <= 1 + +x0 + x2 + x3 + x5 + x22 + x23 + x46 + x60 + x61 + x62 ++ x73 + x75 + x76 + x81 + x90 + x100 + x101 + x102 + x103 + x104 ++ x126 + x127 + x128 + x129 + x130 + x131 + x133 + x142 + x147 + x149 ++ x173 + x175 + x178 + x189 + x193 + x194 + x196 + x197 + x209 + x210 ++ x211 + x212 + x213 + x235 + x268 + x269 + x270 + x271 + x273 + x274 ++ x275 + x276 + x286 + x300 + x302 + x303 + x374 + x394 + x395 + x396 ++ x402 + x403 + x413 + x415 + x423 + x426 + x427 + x428 + x429 + x430 ++ x433 + x454 + x473 + x474 + x476 + x485 + x488 + x489 + x490 + x491 ++ x492 + x493 + x494 + x495 + x496 <= 1 + +x2 + x3 + x5 + x23 + x28 + x39 + x60 + x61 + x62 + x63 ++ x71 + x72 + x73 + x74 + x75 + x76 + x100 + x101 + x102 + x103 ++ x104 + x110 + x131 + x133 + x134 + x135 + x147 + x173 + x174 + x175 ++ x176 + x177 + x187 + x188 + x190 + x192 + x194 + x196 + x197 + x209 ++ x211 + x212 + x213 + x268 + x269 + x271 + x281 + x307 + x336 + x338 ++ x347 + x355 + x374 + x395 + x396 + x403 + x422 + x423 + x428 + x429 ++ x431 + x433 + x473 + x474 + x475 + x477 + x478 + x485 + x488 + x489 ++ x490 + x491 + x492 + x493 + x494 + x495 <= 1 + +x2 + x21 + x22 + x23 + x55 + x61 + x63 + x71 + x72 + x73 ++ x74 + x75 + x76 + x100 + x101 + x102 + x103 + x104 + x107 + x110 ++ x127 + x135 + x147 + x173 + x174 + x190 + x194 + x196 + x197 + x212 ++ x213 + x225 + x237 + x268 + x269 + x271 + x336 + x338 + x355 + x403 ++ x474 + x475 + x477 + x478 + x485 + x486 + x488 + x489 + x490 + x492 ++ x494 <= 1 + +x15 + x20 + x21 + x24 + x25 + x26 + x42 + x45 + x46 + x58 ++ x104 + x115 + x125 + x167 + x168 + x172 + x193 + x195 + x198 + x204 ++ x214 + x215 + x216 + x217 + x218 + x247 + x248 + x249 + x250 + x251 ++ x252 + x253 + x254 + x269 + x272 + x273 + x300 + x304 + x307 + x377 ++ x379 + x380 + x381 + x382 + x394 + x399 + x402 + x407 + x408 + x465 ++ x466 <= 1 + +x15 + x18 + x20 + x21 + x24 + x25 + x26 + x41 + x42 + x44 ++ x45 + x46 + x58 + x104 + x113 + x119 + x162 + x163 + x165 + x167 ++ x168 + x171 + x172 + x183 + x193 + x195 + x198 + x202 + x204 + x205 ++ x206 + x207 + x214 + x216 + x217 + x218 + x247 + x248 + x249 + x250 ++ x251 + x253 + x254 + x270 + x300 + x304 + x305 + x306 + x308 + x310 ++ x327 + x377 + x379 + x380 + x381 + x382 + x391 + x394 + x397 + x399 ++ x402 + x406 + x407 + x408 + x462 + x466 + x472 <= 1 + +x9 + x15 + x20 + x25 + x26 + x41 + x42 + x45 + x46 + x64 ++ x65 + x68 + x99 + x104 + x112 + x113 + x114 + x117 + x119 + x120 ++ x124 + x125 + x131 + x149 + x160 + x161 + x162 + x163 + x164 + x165 ++ x167 + x171 + x172 + x179 + x182 + x183 + x193 + x195 + x196 + x198 ++ x202 + x206 + x213 + x214 + x216 + x218 + x219 + x249 + x251 + x253 ++ x273 + x305 + x310 + x311 + x324 + x325 + x328 + x361 + x362 + x363 ++ x377 + x378 + x380 + x381 + x382 + x394 + x397 + x398 + x399 + x402 ++ x404 + x406 + x408 + x413 + x425 + x463 <= 1 + +x5 + x9 + x35 + x41 + x42 + x45 + x46 + x59 + x64 + x105 ++ x112 + x113 + x117 + x120 + x121 + x124 + x125 + x131 + x149 + x161 ++ x162 + x164 + x167 + x171 + x172 + x193 + x194 + x195 + x196 + x198 ++ x203 + x206 + x214 + x215 + x218 + x219 + x252 + x253 + x254 + x270 ++ x273 + x310 + x313 + x325 + x328 + x351 + x372 + x378 + x380 + x382 ++ x394 + x397 + x399 + x402 + x404 + x405 + x406 + x407 + x408 + x410 ++ x416 + x425 + x451 <= 1 + +x2 + x5 + x35 + x37 + x41 + x42 + x45 + x59 + x64 + x112 ++ x124 + x126 + x131 + x149 + x159 + x161 + x162 + x164 + x169 + x171 ++ x172 + x193 + x194 + x195 + x197 + x198 + x208 + x215 + x218 + x219 ++ x253 + x268 + x273 + x378 + x380 + x394 + x402 + x404 + x405 + x407 ++ x410 + x414 + x416 + x425 + x449 + x450 + x451 + x490 <= 1 + +x2 + x5 + x23 + x33 + x35 + x37 + x42 + x45 + x46 + x59 ++ x64 + x89 + x92 + x121 + x126 + x127 + x129 + x131 + x144 + x149 ++ x159 + x167 + x169 + x171 + x172 + x193 + x194 + x195 + x197 + x198 ++ x208 + x219 + x250 + x253 + x268 + x269 + x270 + x273 + x370 + x378 ++ x379 + x382 + x395 + x402 + x404 + x405 + x407 + x410 + x412 + x414 ++ x416 + x417 + x420 + x425 + x427 + x449 + x450 + x451 + x452 + x456 ++ x490 + x494 <= 1 + +x2 + x5 + x33 + x35 + x37 + x42 + x59 + x62 + x64 + x72 ++ x75 + x76 + x89 + x90 + x92 + x94 + x101 + x103 + x104 + x127 ++ x129 + x131 + x147 + x156 + x158 + x159 + x161 + x169 + x197 + x210 ++ x242 + x253 + x268 + x269 + x270 + x273 + x302 + x303 + x395 + x402 ++ x404 + x405 + x407 + x410 + x417 + x427 + x428 + x429 + x430 + x433 ++ x454 + x456 + x473 + x478 + x479 + x481 + x482 + x483 + x488 + x489 ++ x490 + x491 + x494 + x495 + x496 <= 1 + +x0 + x2 + x5 + x40 + x59 + x61 + x62 + x63 + x64 + x71 ++ x72 + x73 + x75 + x76 + x90 + x101 + x103 + x127 + x129 + x131 ++ x145 + x147 + x149 + x161 + x173 + x175 + x176 + x177 + x178 + x193 ++ x194 + x196 + x197 + x208 + x209 + x210 + x211 + x212 + x213 + x242 ++ x268 + x269 + x270 + x271 + x274 + x275 + x281 + x282 + x303 + x394 ++ x395 + x396 + x403 + x404 + x407 + x410 + x426 + x427 + x429 + x454 ++ x473 + x478 + x479 + x483 + x485 + x488 + x489 + x490 + x491 + x492 ++ x493 + x494 + x495 + x496 <= 1 + +x1 + x5 + x39 + x40 + x61 + x62 + x63 + x71 + x72 + x73 ++ x74 + x75 + x76 + x100 + x110 + x134 + x147 + x173 + x175 + x176 ++ x177 + x193 + x194 + x196 + x197 + x208 + x209 + x211 + x212 + x213 ++ x242 + x243 + x268 + x269 + x270 + x271 + x275 + x279 + x280 + x281 ++ x283 + x307 + x374 + x396 + x403 + x410 + x422 + x426 + x473 + x475 ++ x478 + x483 + x484 + x485 + x488 + x489 + x490 + x491 + x493 + x494 ++ x495 <= 1 + +x1 + x61 + x62 + x72 + x75 + x76 + x134 + x193 + x194 + x196 ++ x197 + x212 + x213 + x269 + x271 + x275 + x279 + x280 + x281 + x283 ++ x374 + x403 + x410 + x474 + x475 + x483 + x488 + x491 + x494 <= 1 + +x15 + x20 + x21 + x24 + x25 + x42 + x45 + x104 + x115 + x119 ++ x120 + x123 + x125 + x160 + x162 + x164 + x167 + x168 + x171 + x193 ++ x195 + x196 + x198 + x202 + x204 + x205 + x206 + x207 + x214 + x218 ++ x246 + x248 + x249 + x251 + x252 + x253 + x254 + x269 + x272 + x273 ++ x300 + x304 + x305 + x306 + x307 + x308 + x310 + x311 + x347 + x377 ++ x382 + x392 + x394 + x397 + x399 + x406 + x407 + x408 + x432 + x458 ++ x465 <= 1 + +x15 + x18 + x20 + x21 + x24 + x25 + x41 + x42 + x44 + x45 ++ x46 + x104 + x115 + x119 + x120 + x123 + x125 + x131 + x160 + x162 ++ x163 + x164 + x167 + x168 + x171 + x172 + x179 + x181 + x183 + x193 ++ x195 + x196 + x198 + x202 + x203 + x204 + x205 + x206 + x207 + x214 ++ x215 + x218 + x245 + x246 + x247 + x248 + x249 + x250 + x251 + x252 ++ x254 + x270 + x273 + x304 + x305 + x306 + x308 + x310 + x347 + x377 ++ x390 + x391 + x392 + x394 + x397 + x399 + x402 + x405 + x406 + x407 ++ x408 + x432 + x454 + x458 + x462 + x465 + x472 + x480 <= 1 + +x5 + x15 + x20 + x21 + x24 + x25 + x26 + x41 + x42 + x45 ++ x46 + x104 + x105 + x114 + x119 + x120 + x123 + x124 + x125 + x131 ++ x152 + x160 + x161 + x162 + x163 + x164 + x167 + x168 + x169 + x171 ++ x172 + x179 + x180 + x181 + x193 + x195 + x196 + x198 + x202 + x203 ++ x204 + x205 + x206 + x207 + x214 + x215 + x216 + x218 + x219 + x222 ++ x245 + x246 + x247 + x248 + x249 + x250 + x252 + x254 + x273 + x304 ++ x305 + x306 + x308 + x309 + x310 + x311 + x347 + x361 + x362 + x363 ++ x377 + x380 + x381 + x382 + x389 + x390 + x391 + x397 + x399 + x402 ++ x404 + x405 + x406 + x407 + x408 + x410 + x454 + x458 + x462 + x463 ++ x464 + x480 <= 1 + +x41 + x42 + x45 + x59 + x104 + x105 + x120 + x121 + x123 + x124 ++ x125 + x131 + x149 + x160 + x161 + x164 + x167 + x168 + x169 + x171 ++ x172 + x179 + x181 + x193 + x194 + x195 + x196 + x198 + x203 + x214 ++ x215 + x218 + x245 + x247 + x249 + x250 + x252 + x254 + x270 + x273 ++ x304 + x305 + x308 + x344 + x347 + x351 + x363 + x377 + x378 + x380 ++ x382 + x393 + x397 + x399 + x402 + x404 + x405 + x406 + x407 + x408 ++ x410 + x425 + x427 + x453 + x480 + x490 <= 1 + +x7 + x36 + x37 + x42 + x59 + x63 + x101 + x116 + x121 + x124 ++ x127 + x131 + x149 + x161 + x167 + x169 + x171 + x172 + x181 + x193 ++ x194 + x195 + x196 + x198 + x203 + x210 + x215 + x245 + x249 + x250 ++ x269 + x270 + x273 + x308 + x313 + x330 + x344 + x378 + x380 + x382 ++ x402 + x404 + x405 + x406 + x407 + x408 + x410 + x413 + x425 + x426 ++ x427 + x452 + x456 + x480 + x481 + x490 <= 1 + +x2 + x5 + x33 + x35 + x36 + x37 + x42 + x59 + x63 + x64 ++ x76 + x92 + x101 + x103 + x121 + x126 + x131 + x146 + x149 + x158 ++ x169 + x171 + x193 + x194 + x195 + x197 + x198 + x208 + x209 + x210 ++ x215 + x245 + x269 + x270 + x273 + x277 + x378 + x402 + x404 + x405 ++ x406 + x407 + x410 + x413 + x420 + x422 + x425 + x426 + x449 + x452 ++ x456 + x479 + x480 + x481 + x482 + x490 <= 1 + +x2 + x33 + x35 + x36 + x37 + x59 + x62 + x63 + x64 + x75 ++ x76 + x90 + x92 + x94 + x101 + x131 + x146 + x147 + x149 + x156 ++ x158 + x169 + x178 + x193 + x194 + x195 + x197 + x198 + x208 + x209 ++ x210 + x211 + x253 + x268 + x269 + x270 + x273 + x277 + x282 + x356 ++ x402 + x404 + x405 + x407 + x410 + x422 + x425 + x426 + x454 + x456 ++ x479 + x480 + x481 + x482 + x488 <= 1 + +x2 + x5 + x15 + x35 + x36 + x46 + x59 + x61 + x62 + x63 ++ x71 + x73 + x75 + x79 + x90 + x92 + x101 + x131 + x144 + x145 ++ x146 + x147 + x149 + x155 + x158 + x169 + x170 + x178 + x193 + x194 ++ x195 + x197 + x208 + x209 + x210 + x211 + x212 + x213 + x268 + x271 ++ x274 + x277 + x279 + x282 + x303 + x307 + x356 + x396 + x405 + x407 ++ x422 + x425 + x426 + x427 + x429 + x473 + x478 + x479 + x480 + x481 ++ x482 + x483 + x484 + x490 + x495 <= 1 + +x1 + x2 + x5 + x35 + x46 + x59 + x61 + x62 + x63 + x71 ++ x73 + x101 + x147 + x170 + x193 + x194 + x197 + x208 + x209 + x211 ++ x212 + x213 + x239 + x240 + x242 + x243 + x244 + x268 + x269 + x270 ++ x271 + x274 + x277 + x279 + x283 + x303 + x307 + x338 + x384 + x396 ++ x406 + x422 + x426 + x475 + x478 + x479 + x483 + x484 + x490 + x493 + <= 1 + +x46 + x61 + x62 + x63 + x71 + x124 + x127 + x194 + x197 + x212 ++ x243 + x244 + x268 + x271 + x303 + x383 + x384 + x396 + x422 + x426 ++ x430 + x484 <= 1 + +x25 + x42 + x45 + x80 + x104 + x114 + x115 + x118 + x120 + x125 ++ x160 + x162 + x163 + x164 + x167 + x168 + x169 + x172 + x180 + x193 ++ x195 + x196 + x198 + x205 + x214 + x246 + x251 + x252 + x254 + x273 ++ x300 + x304 + x305 + x306 + x308 + x310 + x311 + x377 + x382 + x392 ++ x399 + x405 + x406 + x407 + x456 + x458 + x465 <= 1 + +x20 + x21 + x24 + x25 + x26 + x42 + x45 + x104 + x114 + x115 ++ x116 + x118 + x120 + x125 + x131 + x152 + x160 + x161 + x162 + x163 ++ x164 + x167 + x168 + x169 + x170 + x172 + x180 + x193 + x195 + x196 ++ x198 + x202 + x203 + x204 + x205 + x207 + x214 + x215 + x218 + x246 ++ x247 + x248 + x251 + x252 + x254 + x273 + x300 + x304 + x305 + x306 ++ x308 + x309 + x311 + x341 + x347 + x362 + x377 + x380 + x381 + x389 ++ x391 + x392 + x402 + x405 + x406 + x408 + x411 + x453 + x454 + x456 ++ x458 + x462 + x463 + x472 <= 1 + +x5 + x20 + x21 + x24 + x42 + x45 + x104 + x114 + x116 + x124 ++ x131 + x149 + x160 + x161 + x162 + x164 + x167 + x169 + x170 + x171 ++ x172 + x180 + x193 + x194 + x195 + x196 + x198 + x202 + x203 + x204 ++ x205 + x206 + x207 + x215 + x216 + x218 + x245 + x246 + x247 + x252 ++ x270 + x300 + x304 + x305 + x306 + x308 + x309 + x310 + x311 + x347 ++ x377 + x378 + x380 + x381 + x389 + x390 + x393 + x397 + x402 + x404 ++ x405 + x406 + x407 + x408 + x410 + x411 + x453 + x454 + x456 + x458 ++ x463 + x464 + x490 <= 1 + +x59 + x104 + x116 + x121 + x131 + x149 + x160 + x161 + x162 + x164 ++ x167 + x169 + x170 + x171 + x172 + x193 + x194 + x195 + x196 + x198 ++ x203 + x205 + x215 + x218 + x245 + x247 + x250 + x252 + x254 + x270 ++ x272 + x273 + x310 + x377 + x378 + x380 + x381 + x389 + x390 + x393 ++ x402 + x405 + x406 + x407 + x427 + x453 + x456 + x458 + x464 <= 1 + +x42 + x59 + x63 + x64 + x116 + x121 + x127 + x131 + x149 + x160 ++ x161 + x167 + x169 + x171 + x172 + x193 + x194 + x196 + x198 + x210 ++ x211 + x215 + x245 + x268 + x269 + x270 + x272 + x273 + x313 + x378 ++ x380 + x393 + x402 + x405 + x406 + x407 + x410 + x426 + x427 + x453 ++ x456 + x458 + x464 <= 1 + +x1 + x2 + x15 + x59 + x63 + x64 + x101 + x131 + x147 + x149 ++ x167 + x169 + x193 + x194 + x196 + x197 + x198 + x208 + x210 + x211 ++ x248 + x268 + x270 + x272 + x273 + x313 + x378 + x402 + x405 + x406 ++ x407 + x410 + x453 + x454 + x456 + x480 + x482 <= 1 + +x2 + x15 + x35 + x59 + x61 + x62 + x63 + x64 + x71 + x131 ++ x145 + x147 + x169 + x193 + x194 + x197 + x208 + x210 + x211 + x268 ++ x270 + x272 + x273 + x282 + x402 + x404 + x405 + x407 + x425 + x454 ++ x481 + x482 + x484 <= 1 + +x2 + x15 + x36 + x46 + x59 + x61 + x62 + x63 + x64 + x71 ++ x127 + x131 + x144 + x145 + x146 + x147 + x169 + x178 + x193 + x194 ++ x195 + x197 + x208 + x209 + x211 + x212 + x244 + x268 + x270 + x307 ++ x396 + x405 + x407 + x422 + x426 + x427 + x454 + x479 + x481 + x482 ++ x484 + x490 <= 1 + +x2 + x19 + x35 + x36 + x46 + x59 + x61 + x62 + x63 + x71 ++ x127 + x144 + x147 + x193 + x194 + x197 + x207 + x208 + x209 + x211 ++ x212 + x239 + x243 + x244 + x261 + x268 + x270 + x283 + x306 + x307 ++ x338 + x422 + x426 + x482 + x483 + x484 + x487 + x493 <= 1 + +x19 + x36 + x61 + x62 + x63 + x71 + x93 + x124 + x127 + x194 ++ x197 + x208 + x209 + x239 + x243 + x244 + x268 + x303 + x338 + x383 ++ x422 + x426 + x484 + x493 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 <= 1 + +x15 + x16 + x17 + x18 + x19 + x20 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 <= 1 + +x27 + x28 + x29 + x30 + x31 + x32 <= 1 + +x33 + x34 + x35 + x36 + x37 + x38 <= 1 + +x39 + x40 <= 1 + +x41 + x42 + x43 + x44 + x45 + x46 <= 1 + +x47 + x48 + x49 + x50 + x51 + x52 <= 1 + +x53 + x54 + x55 + x56 + x57 + x58 <= 1 + +x59 + x60 + x61 + x62 + x63 + x64 <= 1 + +x65 + x66 + x67 + x68 + x69 + x70 <= 1 + +x71 + x72 + x73 + x74 + x75 + x76 <= 1 + +x77 + x78 + x79 + x80 + x81 + x82 <= 1 + +x83 + x84 + x85 + x86 <= 1 + +x87 + x88 <= 1 + +x89 + x90 + x91 + x92 + x93 + x94 <= 1 + +x95 + x96 + x97 + x98 + x99 <= 1 + +x100 + x101 + x102 + x103 + x104 + x105 <= 1 + +x106 + x107 + x108 + x109 + x110 + x111 <= 1 + +x112 + x113 <= 1 + +x114 + x115 + x116 + x117 + x118 + x119 <= 1 + +x120 + x121 + x122 + x123 + x124 + x125 <= 1 + +x126 + x127 + x128 + x129 + x130 + x131 <= 1 + +x132 + x133 + x134 + x135 + x136 + x137 <= 1 + +x138 + x139 + x140 + x141 + x142 + x143 <= 1 + +x144 + x145 + x146 + x147 + x148 + x149 <= 1 + +x150 + x151 + x152 + x153 + x154 + x155 <= 1 + +x156 + x157 + x158 + x159 <= 1 + +x160 + x161 + x162 + x163 + x164 + x165 <= 1 + +x167 + x168 + x169 + x170 + x171 + x172 <= 1 + +x173 + x174 + x175 + x176 + x177 + x178 <= 1 + +x179 + x180 + x181 + x182 + x183 <= 1 + +x184 + x185 <= 1 + +x187 + x188 + x189 + x190 + x191 + x192 <= 1 + +x193 + x194 + x195 + x196 + x197 + x198 <= 1 + +x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x208 + x209 + x210 + x211 + x212 + x213 <= 1 + +x214 + x215 + x216 + x217 + x218 + x219 <= 1 + +x220 + x221 + x222 + x223 + x224 + x225 <= 1 + +x226 + x227 <= 1 + +x228 + x229 + x230 + x231 + x232 <= 1 + +x233 + x234 + x235 + x236 + x237 + x238 <= 1 + +x239 + x240 + x241 + x242 + x243 + x244 <= 1 + +x245 + x246 + x247 + x248 + x249 + x250 <= 1 + +x251 + x252 + x253 + x254 <= 1 + +x255 + x256 + x257 + x258 <= 1 + +x259 + x260 <= 1 + +x262 + x263 + x264 + x265 + x266 + x267 <= 1 + +x268 + x269 + x270 + x271 + x272 + x273 <= 1 + +x274 + x275 + x276 + x277 <= 1 + +x279 + x280 + x281 + x282 + x283 <= 1 + +x284 + x285 + x286 <= 1 + +x288 + x289 + x290 + x291 + x292 + x293 <= 1 + +x294 + x295 + x296 + x297 + x298 + x299 <= 1 + +x300 + x301 + x302 + x303 + x304 + x305 <= 1 + +x306 + x307 + x308 + x309 + x310 + x311 <= 1 + +x312 + x313 + x314 + x315 + x316 + x317 <= 1 + +x318 + x319 + x320 <= 1 + +x322 + x323 <= 1 + +x324 + x325 + x326 + x327 + x328 + x329 <= 1 + +x331 + x332 + x333 + x334 <= 1 + +x335 + x336 + x337 + x338 + x339 + x340 <= 1 + +x342 + x343 + x344 + x345 + x346 + x347 <= 1 + +x348 + x349 + x350 + x351 + x352 + x353 <= 1 + + <= 1 + +x357 + x358 + x359 <= 1 + +x361 + x362 + x363 + x364 <= 1 + +x365 + x366 + x367 + x368 <= 1 + +x369 + x370 <= 1 + +x371 + x372 + x373 + x374 + x375 + x376 <= 1 + +x377 + x378 + x379 + x380 + x381 + x382 <= 1 + +x383 + x384 <= 1 + +x385 + x386 + x387 + x388 <= 1 + +x389 + x390 + x391 + x392 + x393 <= 1 + +x394 + x395 + x396 + x397 + x398 + x399 <= 1 + +x400 + x401 <= 1 + +x402 + x403 + x404 + x405 + x406 + x407 <= 1 + +x408 + x409 + x410 + x411 + x412 + x413 <= 1 + +x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 <= 1 + +x422 + x423 + x424 + x425 + x426 + x427 <= 1 + +x428 + x429 + x430 + x431 + x432 + x433 <= 1 + +x434 + x435 + x436 + x437 + x438 + x439 <= 1 + +x440 + x441 + x442 + x443 + x444 + x445 <= 1 + +x446 + x447 + x448 <= 1 + +x449 + x450 + x451 + x452 <= 1 + +x453 + x454 + x455 + x456 + x457 + x458 <= 1 + +x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 <= 1 + +x467 + x468 + x469 + x470 + x471 + x472 <= 1 + +x473 + x474 + x475 + x476 + x477 + x478 <= 1 + +x479 + x480 + x481 + x482 + x483 + x484 <= 1 + +x485 + x486 + x487 + x488 + x489 + x490 <= 1 + +x491 + x492 + x493 + x494 + x495 + x496 <= 1 + +x497 + x498 + x499 + x500 + x501 + x502 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0012.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0012.lp new file mode 100755 index 000000000..9bf405342 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0012.lp @@ -0,0 +1,1069 @@ +max + +730.644x0 + 559.923x1 + 537.922x2 + 508.169x3 + 489.609x4 + 485.722x5 + 111.487x6 + 153.007x7 + 161.662x8 + 123.969x9 + +148.067x10 + 180.929x11 + 166.212x12 + 187.345x13 + 189.647x14 + 183.885x15 + 155.522x16 + 622.307x17 + 812.501x18 + 795.471x19 + +792.975x20 + 689.488x21 + 687.369x22 + 237.207x23 + 290.417x24 + 273.703x25 + 271.432x26 + 261.883x27 + 216.379x28 + 299.86x29 + +332.389x30 + 292.062x31 + 249.523x32 + 244.222x33 + 250.526x34 + 292.694x35 + 258.633x36 + 251.049x37 + 504.006x38 + 574.542x39 + +499.802x40 + 496.907x41 + 494.736x42 + 424.273x43 + 2457.71x44 + 2782.75x45 + 2763.5x46 + 2731.9x47 + 2719.4x48 + 2685.2x49 + +327.622x50 + 397.223x51 + 346.976x52 + 282.629x53 + 193.119x54 + 401.057x55 + 419.798x56 + 405.271x57 + 402.136x58 + 394.687x59 + +381.978x60 + 153.965x61 + 181.535x62 + 158.828x63 + 564.352x64 + 723.31x65 + 677.872x66 + 651.745x67 + 642.337x68 + 640.071x69 + +298.624x70 + 310.462x71 + 266.564x72 + 254.96x73 + 241.242x74 + 317.331x75 + 448.523x76 + 424.002x77 + 380.591x78 + 324.099x79 + +306.365x80 + 1260.36x81 + 1378.15x82 + 1327.93x83 + 1260.3x84 + 1241.85x85 + 1201.35x86 + 696.714x87 + 849.564x88 + 747.867x89 + +735.24x90 + 704.675x91 + 632.43x92 + 1013.78x93 + 1377.91x94 + 1334.47x95 + 1324.87x96 + 1307.48x97 + 1242.16x98 + 132.549x99 + +556.49x100 + 802.237x101 + 746.797x102 + 692.659x103 + 645.552x104 + 577.292x105 + 1040.37x106 + 1113.93x107 + 1086.78x108 + 1084.35x109 + +1075.03x110 + 1042.51x111 + 1009.28x112 + 1142.24x113 + 1111.34x114 + 1058.33x115 + 1053.52x116 + 985.171x117 + 244.429x118 + 312.407x119 + +286.854x120 + 208.418x121 + 104.271x122 + 453.079x123 + 590.79x124 + 546.921x125 + 509.749x126 + 497.402x127 + 457.58x128 + 848.209x129 + +916.097x130 + 846.35x131 + 834.461x132 + 831.857x133 + 803.437x134 + 555.801x135 + 591.139x136 + 556.101x137 + 531.598x138 + 511.431x139 + +502.61x140 + 140.333x141 + 46.6898x142 + 610.494x143 + 766.955x144 + 760.536x145 + 750.351x146 + 744.878x147 + 740.457x148 + 86.5767x149 + +95.3959x150 + 2556.02x151 + 2872.71x152 + 2784.01x153 + 2720.96x154 + 2706.48x155 + 2705.43x156 + 775.438x157 + 860.767x158 + 836.359x159 + +801.489x160 + 795.269x161 + 742.466x162 + 593.348x163 + 812.758x164 + 805.9x165 + 766.828x166 + 695.205x167 + 694.662x168 + 1359.44x169 + +1364.08x170 + 1344.52x171 + 1334.72x172 + 1324.94x173 + 1312.09x174 + 172.084x175 + 189.792x176 + 67.5084x177 + 598.785x178 + 543.201x179 + +540.929x180 + 527.607x181 + 522.89x182 + 467.563x183 + 1436.35x184 + 1471.04x185 + 1446.52x186 + 1432.86x187 + 1417.38x188 + 1411.28x189 + +3969.58x190 + 4473.13x191 + 4412.94x192 + 4352.59x193 + 4345.2x194 + 4324.51x195 + 598.976x196 + 646.088x197 + 627.306x198 + 602.1x199 + +583.104x200 + 570.235x201 + 934.246x202 + 1388.1x203 + 1210.74x204 + 1173.36x205 + 1158.76x206 + 1155.96x207 + 656.774x208 + 957.282x209 + +907.229x210 + 896.09x211 + 856.635x212 + 843.704x213 + 108.678x214 + 333.24x215 + 439.151x216 + 428.172x217 + 221.791x218 + 100.629x219 + +322.359x220 + 378.499x221 + 356.606x222 + 318.828x223 + 318.019x224 + 287.051x225 + 430.727x226 + 602.011x227 + 597.963x228 + 548.926x229 + +544.517x230 + 391.093x231 + 606.951x232 + 609.467x233 + 593.67x234 + 586.865x235 + 585.723x236 + 552.951x237 + 836.002x238 + 887.644x239 + +886.701x240 + 834.986x241 + 818.544x242 + 817.415x243 + 1073.22x244 + 1605.13x245 + 1484.35x246 + 1416.92x247 + 1413.84x248 + 1381.62x249 + +304.942x250 + 432.529x251 + 401.925x252 + 400.825x253 + 289.652x254 + 260.287x255 + 1209.14x256 + 1412.57x257 + 1240.08x258 + 1189.1x259 + +1152.86x260 + 1104.85x261 + 474.253x262 + 475.871x263 + 451.236x264 + 398.587x265 + 360.354x266 + 318.033x267 + 906.952x268 + 1312.21x269 + +1250.91x270 + 1189.91x271 + 1165.72x272 + 1134.12x273 + 2128.62x274 + 2537.41x275 + 2512.85x276 + 2502.46x277 + 2471.61x278 + 2455.35x279 + +352.465x280 + 387.056x281 + 363.564x282 + 321.567x283 + 112.318x284 + 150.953x285 + 303.211x286 + 374.112x287 + 306.009x288 + 203.109x289 + +250.484x290 + 288.131x291 + 282.715x292 + 215.162x293 + 186.69x294 + 998.261x295 + 1123.34x296 + 1087.44x297 + 1023.32x298 + 1022.28x299 + +998.413x300 + 803.36x301 + 847.083x302 + 802.689x303 + 799.842x304 + 794.583x305 + 789.554x306 + 1584.23x307 + 1830.98x308 + 1770.72x309 + +1767.56x310 + 1752.44x311 + 1744.27x312 + 199.427x313 + 221.806x314 + 206.821x315 + 195.485x316 + 287.889x317 + 255.4x318 + 255.354x319 + +214.004x320 + 223.219x321 + 110.37x322 + 156.146x323 + 95.3322x324 + 896.969x325 + 948.268x326 + 877.074x327 + 862.48x328 + 852.934x329 + +849.003x330 + 667.4x331 + 756.394x332 + 731.591x333 + 704.075x334 + 686.638x335 + 651.175x336 + 272.884x337 + 352.465x338 + 312.761x339 + +287.076x340 + 224.315x341 + 152.708x342 + 619.084x343 + 831.673x344 + 803.674x345 + 783.495x346 + 768.18x347 + 764.688x348 + 38.5031x349 + +775.811x350 + 899.256x351 + 829.373x352 + 818.962x353 + 817.711x354 + 706.667x355 + 265.803x356 + 379.312x357 + 343.855x358 + 319.284x359 + +294.906x360 + 293.82x361 + 310.546x362 + 415.176x363 + 358.561x364 + 314.712x365 + 307.856x366 + 290.324x367 + 557.94x368 + 797.322x369 + +693.556x370 + 610.203x371 + 599.559x372 + 597.143x373 + 1212.08x374 + 1361.24x375 + 1340.89x376 + 1246.12x377 + 1239.67x378 + 1221.09x379 + +139.619x380 + 219.597x381 + 187.987x382 + 125.95x383 + 99.0442x384 + 193.481x385 + 73.8331x386 + 952.807x387 + 1054.36x388 + 1009.69x389 + +1003.23x390 + 989.842x391 + 975.473x392 + 1140.7x393 + 1299.77x394 + 1266.98x395 + 1184.78x396 + 1176.59x397 + 1146.85x398 + 1516.77x399 + +1850.23x400 + 1786.87x401 + 1687.76x402 + 1658.65x403 + 1654.44x404 + 112.759x405 + 708.237x406 + 879.062x407 + 762.054x408 + 701.512x409 + +691.756x410 + 675.484x411 + 234.69x412 + 344.112x413 + 288.271x414 + 286.808x415 + 241.798x416 + 236.017x417 + 702.424x418 + 932.634x419 + +904.939x420 + 886.396x421 + 874.073x422 + 849.888x423 + 2127.41x424 + 2482.66x425 + 2460.76x426 + 2453.06x427 + 2437.81x428 + 2427.24x429 + +486.639x430 + 599.725x431 + 515.884x432 + 492.833x433 + 471.85x434 + 443.069x435 + 764.886x436 + 1033.45x437 + 1002.32x438 + 989.572x439 + +961.93x440 + 936.672x441 + 325.149x442 + 304.249x443 + 271.275x444 + 166.835x445 + 82.3062x446 + 171.039x447 + 208.901x448 + 117.051x449 + +96.5347x450 + 1195.07x451 + 1357.5x452 + 1324.62x453 + 1239.73x454 + 1236x455 + 1217.97x456 + 2210.45x457 + 2489.74x458 + 2393.83x459 + +2392.8x460 + 2387.19x461 + 2336.37x462 + 724.323x463 + 981.562x464 + 933.456x465 + 923.796x466 + 892.9x467 + 847.008x468 + 106.798x469 + +10.708x470 + 936.368x471 + 1389.94x472 + 1314.45x473 + 1299.87x474 + 1299.04x475 + 1286.13x476 + 308.508x477 + 253.899x478 + 157.538x479 + +551.769x480 + 787.431x481 + 641.327x482 + 568.35x483 + 547.964x484 + 507.626x485 + 387.644x486 + 561.922x487 + 525.999x488 + 477.673x489 + +477.414x490 + 463.576x491 + 640.801x492 + 739.936x493 + 700.777x494 + 698.793x495 + 665.029x496 + 651.408x497 + 1663.18x498 + 2004.03x499 + +1962.08x500 + 1947.73x501 + 1943.21x502 + 1936.25x503 + +st + +x45 + x64 + x65 + x143 + x144 + x145 + x169 + x170 + x171 + x173 ++ x174 + x184 + x188 + x193 + x194 + x195 + x205 + x215 + x216 + x219 ++ x248 + x275 + x276 + x277 + x279 + x280 + x284 + x285 + x311 + x312 ++ x400 <= 1 + +x4 + x45 + x47 + x49 + x64 + x65 + x66 + x68 + x143 + x145 ++ x146 + x147 + x148 + x151 + x153 + x158 + x159 + x169 + x170 + x171 ++ x172 + x173 + x174 + x191 + x192 + x193 + x195 + x200 + x215 + x216 ++ x217 + x221 + x222 + x256 + x259 + x260 + x274 + x275 + x276 + x277 ++ x279 + x285 + x311 + x312 + x407 + x458 + x459 + x499 <= 1 + +x45 + x46 + x49 + x64 + x65 + x66 + x68 + x69 + x81 + x83 ++ x85 + x143 + x145 + x146 + x148 + x151 + x153 + x155 + x158 + x159 ++ x169 + x170 + x171 + x172 + x173 + x191 + x192 + x193 + x194 + x195 ++ x216 + x217 + x220 + x221 + x223 + x225 + x256 + x259 + x260 + x274 ++ x275 + x276 + x277 + x279 + x289 + x312 + x407 + x424 + x428 + x441 ++ x459 + x460 + x499 <= 1 + +x45 + x49 + x65 + x66 + x68 + x96 + x98 + x117 + x143 + x145 ++ x146 + x148 + x153 + x154 + x155 + x156 + x157 + x158 + x159 + x160 ++ x169 + x170 + x171 + x172 + x173 + x185 + x186 + x190 + x191 + x193 ++ x195 + x217 + x223 + x246 + x259 + x274 + x275 + x276 + x277 + x279 ++ x286 + x289 + x316 + x323 + x424 + x428 + x430 + x432 + x441 + x454 ++ x466 + x491 + x499 <= 1 + +x24 + x45 + x46 + x49 + x65 + x66 + x96 + x98 + x117 + x119 ++ x146 + x148 + x154 + x155 + x156 + x157 + x158 + x159 + x160 + x162 ++ x169 + x170 + x171 + x172 + x173 + x178 + x185 + x186 + x190 + x191 ++ x192 + x193 + x194 + x195 + x209 + x223 + x227 + x246 + x257 + x258 ++ x259 + x274 + x275 + x276 + x277 + x279 + x286 + x287 + x313 + x316 ++ x357 + x379 + x400 + x425 + x426 + x427 + x428 + x430 + x431 + x432 ++ x433 + x454 + x457 + x458 + x460 + x461 + x464 + x465 + x466 + x488 ++ x491 + x499 <= 1 + +x46 + x49 + x66 + x84 + x95 + x96 + x112 + x114 + x116 + x117 ++ x119 + x132 + x148 + x152 + x153 + x154 + x155 + x156 + x157 + x158 ++ x159 + x160 + x162 + x167 + x186 + x190 + x191 + x192 + x193 + x194 ++ x195 + x214 + x226 + x227 + x228 + x229 + x246 + x257 + x258 + x259 ++ x274 + x286 + x287 + x316 + x356 + x357 + x359 + x368 + x372 + x373 ++ x379 + x380 + x398 + x400 + x425 + x426 + x427 + x428 + x440 + x451 ++ x453 + x454 + x457 + x460 + x461 + x463 + x464 + x465 + x466 + x468 ++ x483 + x486 + x487 + x489 + x491 <= 1 + +x31 + x44 + x46 + x49 + x76 + x84 + x87 + x93 + x95 + x96 ++ x97 + x112 + x113 + x114 + x116 + x117 + x152 + x153 + x154 + x155 ++ x156 + x157 + x158 + x160 + x161 + x167 + x186 + x190 + x191 + x192 ++ x193 + x194 + x195 + x227 + x228 + x229 + x245 + x246 + x257 + x258 ++ x259 + x279 + x339 + x368 + x373 + x379 + x407 + x420 + x426 + x427 ++ x428 + x451 + x454 + x458 + x461 + x462 + x463 + x465 + x466 + x483 ++ x487 + x490 + x491 + x499 + x500 + x501 + x502 <= 1 + +x22 + x31 + x44 + x46 + x49 + x84 + x93 + x95 + x96 + x112 ++ x113 + x114 + x115 + x116 + x117 + x122 + x151 + x152 + x153 + x154 ++ x155 + x156 + x167 + x171 + x190 + x191 + x192 + x193 + x195 + x227 ++ x276 + x278 + x310 + x373 + x426 + x427 + x428 + x437 + x451 + x452 ++ x453 + x454 + x458 + x462 + x463 + x465 + x466 + x483 + x499 <= 1 + +x22 + x44 + x46 + x48 + x49 + x50 + x51 + x52 + x53 + x84 ++ x93 + x95 + x112 + x113 + x114 + x115 + x117 + x151 + x152 + x153 ++ x154 + x155 + x156 + x161 + x185 + x190 + x191 + x193 + x194 + x195 ++ x230 + x231 + x266 + x276 + x310 + x377 + x378 + x407 + x428 + x437 ++ x451 + x452 + x453 + x454 + x455 + x457 + x458 + x461 + x462 + x463 ++ x465 + x468 + x481 + x499 + x500 <= 1 + +x46 + x48 + x49 + x50 + x51 + x52 + x84 + x93 + x95 + x112 ++ x113 + x115 + x151 + x152 + x153 + x154 + x155 + x156 + x165 + x190 ++ x191 + x192 + x193 + x194 + x195 + x231 + x276 + x310 + x377 + x378 ++ x428 + x437 + x453 + x454 + x455 + x457 + x458 + x461 + x462 + x463 ++ x468 + x481 <= 1 + +x64 + x65 + x143 + x144 + x145 + x156 + x169 + x170 + x174 + x184 ++ x188 + x193 + x194 + x195 + x203 + x205 + x215 + x216 + x217 + x222 ++ x256 + x259 + x260 + x276 + x277 + x279 + x284 + x311 + x312 + x400 ++ x411 + x424 + x425 + x459 + x499 <= 1 + +x4 + x45 + x47 + x48 + x49 + x64 + x66 + x85 + x143 + x144 ++ x145 + x146 + x147 + x148 + x151 + x153 + x156 + x158 + x159 + x169 ++ x170 + x171 + x174 + x186 + x188 + x189 + x193 + x194 + x195 + x199 ++ x200 + x215 + x217 + x218 + x221 + x222 + x225 + x256 + x259 + x260 ++ x275 + x276 + x277 + x279 + x284 + x311 + x424 + x425 + x456 + x458 ++ x459 + x461 + x499 + x503 <= 1 + +x4 + x19 + x44 + x45 + x46 + x47 + x49 + x64 + x66 + x68 ++ x69 + x81 + x83 + x85 + x143 + x148 + x151 + x152 + x153 + x154 ++ x155 + x156 + x158 + x159 + x162 + x169 + x170 + x171 + x172 + x186 ++ x193 + x194 + x195 + x220 + x221 + x222 + x225 + x256 + x259 + x260 ++ x272 + x274 + x275 + x276 + x277 + x279 + x288 + x289 + x312 + x375 ++ x400 + x407 + x424 + x425 + x426 + x428 + x431 + x441 + x456 + x459 ++ x484 + x499 + x503 <= 1 + +x44 + x45 + x46 + x49 + x65 + x66 + x67 + x68 + x81 + x83 ++ x85 + x88 + x91 + x94 + x96 + x116 + x118 + x119 + x148 + x152 ++ x153 + x154 + x155 + x156 + x160 + x162 + x169 + x170 + x171 + x172 ++ x173 + x185 + x186 + x187 + x190 + x191 + x192 + x193 + x194 + x195 ++ x220 + x221 + x222 + x223 + x256 + x257 + x259 + x260 + x274 + x276 ++ x279 + x288 + x289 + x308 + x312 + x323 + x400 + x407 + x424 + x428 ++ x430 + x431 + x432 + x441 + x454 + x459 + x460 + x484 + x491 + x499 ++ x500 + x503 <= 1 + +x44 + x45 + x46 + x49 + x81 + x83 + x84 + x85 + x88 + x94 ++ x96 + x98 + x116 + x119 + x136 + x148 + x153 + x154 + x155 + x157 ++ x158 + x159 + x160 + x162 + x166 + x169 + x170 + x171 + x172 + x173 ++ x178 + x184 + x185 + x186 + x187 + x190 + x191 + x192 + x193 + x194 ++ x195 + x204 + x209 + x246 + x256 + x257 + x259 + x260 + x274 + x275 ++ x276 + x277 + x278 + x279 + x286 + x287 + x288 + x372 + x400 + x424 ++ x425 + x428 + x429 + x430 + x431 + x432 + x433 + x434 + x454 + x457 ++ x458 + x459 + x460 + x461 + x462 + x464 + x465 + x467 + x484 + x488 ++ x491 + x500 <= 1 + +x45 + x49 + x72 + x81 + x84 + x105 + x112 + x113 + x114 + x115 ++ x116 + x117 + x147 + x152 + x153 + x154 + x155 + x156 + x157 + x159 ++ x162 + x166 + x173 + x184 + x185 + x186 + x187 + x190 + x191 + x192 ++ x193 + x194 + x195 + x209 + x214 + x226 + x227 + x228 + x229 + x230 ++ x245 + x246 + x257 + x259 + x274 + x275 + x276 + x277 + x278 + x279 ++ x316 + x356 + x357 + x358 + x359 + x361 + x368 + x372 + x379 + x395 ++ x407 + x409 + x420 + x425 + x427 + x428 + x429 + x433 + x434 + x435 ++ x438 + x440 + x451 + x453 + x454 + x457 + x458 + x461 + x464 + x466 ++ x468 + x486 + x487 + x488 + x489 + x490 + x499 + x500 + x501 + x502 + <= 1 + +x22 + x44 + x45 + x46 + x47 + x48 + x49 + x51 + x76 + x81 ++ x84 + x93 + x95 + x96 + x97 + x105 + x109 + x112 + x113 + x114 ++ x115 + x116 + x117 + x152 + x153 + x154 + x155 + x156 + x157 + x161 ++ x163 + x164 + x165 + x167 + x168 + x172 + x190 + x191 + x192 + x193 ++ x194 + x195 + x226 + x227 + x228 + x229 + x230 + x245 + x246 + x257 ++ x258 + x259 + x274 + x276 + x277 + x278 + x279 + x339 + x357 + x358 ++ x359 + x368 + x372 + x373 + x374 + x379 + x395 + x401 + x403 + x407 ++ x409 + x420 + x426 + x427 + x428 + x429 + x435 + x451 + x453 + x454 ++ x457 + x458 + x461 + x462 + x463 + x464 + x465 + x466 + x468 + x486 ++ x487 + x488 + x490 + x499 + x500 + x501 + x502 <= 1 + +x21 + x22 + x44 + x45 + x46 + x47 + x48 + x49 + x51 + x52 ++ x76 + x93 + x96 + x105 + x109 + x112 + x113 + x115 + x116 + x117 ++ x151 + x152 + x153 + x154 + x155 + x156 + x161 + x163 + x164 + x165 ++ x168 + x185 + x190 + x191 + x192 + x193 + x194 + x195 + x226 + x230 ++ x231 + x258 + x274 + x339 + x373 + x374 + x378 + x406 + x407 + x409 ++ x451 + x453 + x455 + x457 + x458 + x461 + x462 + x463 + x465 + x467 ++ x468 + x483 + x499 + x500 + x501 + x502 <= 1 + +x17 + x22 + x44 + x46 + x48 + x49 + x50 + x51 + x52 + x53 ++ x54 + x86 + x93 + x95 + x105 + x109 + x112 + x113 + x114 + x115 ++ x117 + x151 + x152 + x153 + x154 + x155 + x156 + x161 + x165 + x185 ++ x190 + x193 + x226 + x230 + x231 + x266 + x274 + x294 + x310 + x334 ++ x374 + x377 + x378 + x406 + x407 + x409 + x428 + x433 + x437 + x451 ++ x453 + x454 + x455 + x457 + x458 + x461 + x462 + x463 + x465 + x467 ++ x468 + x483 + x499 + x500 + x501 <= 1 + +x22 + x44 + x46 + x48 + x49 + x52 + x84 + x93 + x95 + x105 ++ x109 + x112 + x113 + x114 + x115 + x151 + x152 + x153 + x154 + x155 ++ x156 + x161 + x165 + x190 + x191 + x192 + x193 + x195 + x230 + x231 ++ x266 + x310 + x312 + x378 + x407 + x409 + x428 + x453 + x454 + x455 ++ x457 + x458 + x461 + x462 + x463 + x481 + x483 + x499 + x500 <= 1 + +x64 + x65 + x69 + x82 + x83 + x85 + x143 + x144 + x145 + x146 ++ x169 + x170 + x174 + x184 + x188 + x189 + x191 + x193 + x194 + x195 ++ x200 + x201 + x203 + x205 + x206 + x216 + x256 + x260 + x274 + x275 ++ x277 + x279 + x308 + x310 + x311 + x312 + x317 + x320 + x375 + x411 ++ x424 + x425 + x458 + x460 + x499 <= 1 + +x16 + x48 + x49 + x64 + x82 + x83 + x85 + x110 + x143 + x144 ++ x146 + x153 + x154 + x156 + x189 + x193 + x194 + x195 + x196 + x197 ++ x198 + x199 + x200 + x201 + x205 + x215 + x216 + x217 + x218 + x248 ++ x256 + x260 + x274 + x277 + x279 + x311 + x312 + x320 + x375 + x424 ++ x425 + x427 + x428 + x429 + x456 + x458 + x459 + x460 + x461 + x462 ++ x503 <= 1 + +x12 + x44 + x45 + x46 + x49 + x68 + x69 + x83 + x85 + x90 ++ x93 + x114 + x146 + x151 + x152 + x153 + x154 + x155 + x156 + x166 ++ x172 + x186 + x188 + x189 + x190 + x191 + x192 + x193 + x194 + x195 ++ x196 + x197 + x198 + x200 + x201 + x205 + x220 + x225 + x246 + x248 ++ x254 + x260 + x274 + x277 + x278 + x279 + x296 + x297 + x300 + x311 ++ x312 + x375 + x424 + x425 + x426 + x429 + x431 + x456 + x458 + x459 ++ x460 + x461 + x462 + x484 + x499 + x503 <= 1 + +x44 + x45 + x46 + x49 + x65 + x66 + x67 + x68 + x81 + x83 ++ x84 + x85 + x88 + x91 + x114 + x116 + x153 + x154 + x155 + x156 ++ x162 + x163 + x166 + x169 + x170 + x171 + x172 + x173 + x186 + x187 ++ x189 + x190 + x191 + x193 + x195 + x197 + x198 + x245 + x256 + x259 ++ x274 + x275 + x276 + x277 + x278 + x279 + x288 + x297 + x308 + x400 ++ x407 + x425 + x426 + x427 + x428 + x429 + x430 + x433 + x434 + x435 ++ x440 + x441 + x458 + x459 + x460 + x461 + x464 + x479 + x484 + x486 ++ x499 + x503 <= 1 + +x44 + x45 + x46 + x49 + x72 + x81 + x83 + x84 + x85 + x91 ++ x96 + x98 + x116 + x131 + x147 + x148 + x152 + x153 + x154 + x155 ++ x156 + x157 + x158 + x160 + x162 + x163 + x166 + x168 + x169 + x170 ++ x171 + x172 + x173 + x184 + x185 + x186 + x187 + x189 + x190 + x191 ++ x192 + x193 + x194 + x195 + x196 + x209 + x214 + x226 + x241 + x245 ++ x246 + x257 + x259 + x260 + x273 + x274 + x275 + x276 + x277 + x278 ++ x279 + x308 + x341 + x347 + x356 + x358 + x361 + x372 + x375 + x403 ++ x420 + x425 + x427 + x428 + x429 + x430 + x432 + x433 + x434 + x435 ++ x438 + x440 + x451 + x457 + x458 + x460 + x461 + x462 + x464 + x466 ++ x467 + x468 + x484 + x486 + x488 + x489 + x490 + x499 + x500 <= 1 + +x45 + x46 + x47 + x49 + x72 + x81 + x84 + x91 + x96 + x98 ++ x131 + x147 + x152 + x153 + x154 + x155 + x156 + x157 + x159 + x160 ++ x162 + x163 + x167 + x168 + x172 + x184 + x185 + x186 + x187 + x190 ++ x192 + x193 + x195 + x209 + x214 + x229 + x241 + x245 + x257 + x258 ++ x259 + x272 + x274 + x275 + x276 + x277 + x278 + x279 + x318 + x337 ++ x340 + x341 + x356 + x357 + x358 + x359 + x361 + x372 + x373 + x376 ++ x395 + x425 + x427 + x428 + x429 + x432 + x434 + x435 + x440 + x451 ++ x453 + x454 + x457 + x458 + x460 + x461 + x462 + x464 + x466 + x467 ++ x468 + x486 + x489 + x490 + x493 + x499 + x500 + x501 + x503 <= 1 + +x22 + x31 + x44 + x45 + x46 + x47 + x48 + x49 + x81 + x84 ++ x95 + x97 + x114 + x147 + x154 + x155 + x157 + x160 + x161 + x163 ++ x164 + x165 + x167 + x168 + x172 + x184 + x185 + x186 + x187 + x190 ++ x191 + x192 + x193 + x194 + x195 + x212 + x228 + x229 + x236 + x241 ++ x257 + x258 + x272 + x273 + x274 + x275 + x276 + x277 + x278 + x279 ++ x337 + x339 + x341 + x359 + x361 + x373 + x374 + x376 + x379 + x401 ++ x403 + x409 + x425 + x428 + x440 + x453 + x457 + x458 + x460 + x461 ++ x462 + x464 + x465 + x466 + x468 + x487 + x493 + x499 + x500 + x501 ++ x503 <= 1 + +x21 + x44 + x45 + x46 + x47 + x48 + x49 + x75 + x76 + x84 ++ x96 + x97 + x151 + x153 + x154 + x155 + x156 + x161 + x184 + x185 ++ x187 + x190 + x193 + x194 + x195 + x223 + x228 + x236 + x238 + x257 ++ x258 + x274 + x275 + x276 + x277 + x278 + x279 + x373 + x374 + x378 ++ x401 + x403 + x409 + x425 + x428 + x440 + x451 + x453 + x455 + x457 ++ x458 + x461 + x462 + x465 + x466 + x493 + x499 + x501 + x502 <= 1 + +x4 + x17 + x22 + x44 + x46 + x47 + x49 + x50 + x53 + x54 ++ x58 + x86 + x93 + x94 + x95 + x97 + x100 + x105 + x109 + x112 ++ x113 + x114 + x115 + x151 + x152 + x153 + x154 + x155 + x156 + x161 ++ x184 + x185 + x231 + x274 + x291 + x292 + x294 + x310 + x332 + x334 ++ x335 + x374 + x377 + x378 + x379 + x402 + x407 + x409 + x428 + x437 ++ x453 + x455 + x457 + x458 + x459 + x461 + x462 + x463 + x480 + x483 ++ x498 + x499 + x500 <= 1 + +x4 + x17 + x22 + x44 + x47 + x50 + x53 + x54 + x58 + x93 ++ x97 + x105 + x109 + x112 + x113 + x115 + x145 + x184 + x274 + x332 ++ x334 + x335 + x377 + x379 + x399 + x402 + x403 + x457 + x458 + x461 ++ x462 + x463 <= 1 + +x13 + x15 + x64 + x65 + x67 + x69 + x82 + x83 + x85 + x108 ++ x110 + x144 + x146 + x154 + x169 + x188 + x189 + x191 + x194 + x195 ++ x196 + x197 + x200 + x201 + x203 + x205 + x206 + x256 + x260 + x277 ++ x279 + x307 + x308 + x310 + x311 + x312 + x317 + x318 + x319 + x320 ++ x370 + x420 + x424 + x425 + x428 + x429 + x458 + x460 + x469 + x499 + <= 1 + +x13 + x14 + x15 + x16 + x67 + x69 + x85 + x110 + x128 + x143 ++ x144 + x146 + x149 + x154 + x156 + x187 + x188 + x189 + x191 + x193 ++ x194 + x195 + x196 + x197 + x198 + x199 + x200 + x201 + x203 + x205 ++ x218 + x256 + x260 + x277 + x279 + x306 + x307 + x308 + x311 + x312 ++ x370 + x375 + x396 + x424 + x425 + x427 + x428 + x429 + x438 + x441 ++ x458 + x459 + x460 + x462 + x498 + x502 + x503 <= 1 + +x10 + x12 + x15 + x44 + x46 + x67 + x68 + x69 + x85 + x88 ++ x114 + x116 + x128 + x131 + x152 + x153 + x154 + x156 + x170 + x186 ++ x188 + x189 + x190 + x191 + x194 + x195 + x196 + x197 + x198 + x199 ++ x201 + x203 + x205 + x220 + x224 + x225 + x246 + x254 + x261 + x274 ++ x275 + x277 + x278 + x279 + x296 + x297 + x311 + x312 + x324 + x375 ++ x403 + x424 + x425 + x426 + x429 + x452 + x456 + x457 + x458 + x459 ++ x460 + x461 + x462 + x472 + x484 <= 1 + +x44 + x45 + x46 + x49 + x67 + x68 + x78 + x81 + x83 + x84 ++ x85 + x88 + x90 + x91 + x96 + x98 + x114 + x116 + x131 + x151 ++ x152 + x153 + x154 + x155 + x156 + x165 + x166 + x169 + x170 + x171 ++ x172 + x173 + x190 + x191 + x192 + x193 + x194 + x195 + x196 + x197 ++ x198 + x199 + x246 + x274 + x275 + x276 + x277 + x278 + x279 + x296 ++ x297 + x300 + x309 + x347 + x375 + x400 + x401 + x403 + x424 + x425 ++ x426 + x428 + x429 + x431 + x438 + x444 + x456 + x458 + x459 + x460 ++ x461 + x472 + x477 + x478 + x479 + x480 + x484 + x503 <= 1 + +x20 + x45 + x46 + x67 + x81 + x83 + x84 + x87 + x88 + x89 ++ x90 + x91 + x92 + x96 + x98 + x101 + x116 + x131 + x151 + x152 ++ x153 + x154 + x155 + x156 + x160 + x162 + x163 + x164 + x165 + x166 ++ x168 + x170 + x171 + x172 + x173 + x184 + x185 + x186 + x187 + x189 ++ x190 + x191 + x192 + x193 + x194 + x195 + x196 + x197 + x198 + x199 ++ x203 + x204 + x212 + x232 + x233 + x236 + x245 + x259 + x261 + x273 ++ x275 + x276 + x277 + x278 + x279 + x296 + x297 + x300 + x341 + x347 ++ x351 + x360 + x372 + x375 + x376 + x401 + x403 + x425 + x426 + x427 ++ x428 + x429 + x438 + x440 + x456 + x458 + x460 + x464 + x467 + x468 ++ x478 + x479 + x499 + x500 + x503 <= 1 + +x46 + x48 + x49 + x70 + x71 + x72 + x81 + x83 + x84 + x87 ++ x88 + x89 + x90 + x91 + x98 + x101 + x127 + x147 + x153 + x154 ++ x155 + x156 + x163 + x164 + x165 + x167 + x168 + x170 + x171 + x172 ++ x173 + x184 + x185 + x186 + x187 + x190 + x193 + x203 + x204 + x212 ++ x232 + x233 + x236 + x247 + x269 + x270 + x272 + x273 + x274 + x275 ++ x276 + x277 + x278 + x279 + x312 + x326 + x337 + x338 + x340 + x341 ++ x347 + x356 + x358 + x360 + x361 + x372 + x374 + x375 + x376 + x401 ++ x425 + x426 + x427 + x428 + x429 + x435 + x464 + x467 + x489 + x490 ++ x493 + x499 + x500 + x501 + x503 <= 1 + +x45 + x49 + x84 + x93 + x98 + x101 + x147 + x163 + x164 + x165 ++ x167 + x168 + x170 + x171 + x172 + x185 + x186 + x187 + x190 + x192 ++ x193 + x194 + x195 + x212 + x233 + x236 + x257 + x260 + x273 + x274 ++ x275 + x276 + x278 + x279 + x309 + x360 + x374 + x376 + x378 + x379 ++ x401 + x403 + x425 + x428 + x429 + x453 + x457 + x467 + x487 + x489 ++ x493 + x500 + x501 <= 1 + +x0 + x4 + x17 + x19 + x21 + x30 + x44 + x45 + x46 + x47 ++ x48 + x49 + x76 + x94 + x96 + x97 + x151 + x153 + x154 + x155 ++ x156 + x184 + x185 + x194 + x195 + x238 + x242 + x256 + x257 + x258 ++ x272 + x277 + x290 + x291 + x292 + x293 + x325 + x333 + x374 + x376 ++ x377 + x378 + x379 + x385 + x399 + x400 + x401 + x402 + x403 + x404 ++ x409 + x455 + x457 + x458 + x459 + x461 + x462 + x493 + x502 <= 1 + +x2 + x4 + x6 + x17 + x18 + x19 + x20 + x21 + x22 + x44 ++ x45 + x46 + x47 + x48 + x49 + x54 + x76 + x86 + x93 + x94 ++ x95 + x96 + x97 + x100 + x105 + x112 + x113 + x151 + x153 + x154 ++ x155 + x156 + x161 + x184 + x185 + x195 + x213 + x238 + x239 + x242 ++ x272 + x290 + x291 + x292 + x294 + x310 + x332 + x333 + x334 + x335 ++ x374 + x377 + x378 + x379 + x385 + x399 + x400 + x401 + x402 + x403 ++ x404 + x409 + x455 + x457 + x458 + x459 + x461 + x462 + x480 + x481 ++ x482 + x502 <= 1 + +x17 + x22 + x47 + x48 + x53 + x54 + x93 + x94 + x96 + x97 ++ x105 + x109 + x112 + x115 + x151 + x155 + x156 + x242 + x274 + x290 ++ x292 + x335 + x345 + x374 + x377 + x378 + x379 + x399 + x401 + x403 ++ x409 + x457 + x461 + x462 <= 1 + +x13 + x14 + x64 + x67 + x69 + x82 + x85 + x108 + x110 + x188 ++ x189 + x191 + x192 + x193 + x194 + x195 + x203 + x205 + x260 + x277 ++ x279 + x307 + x308 + x310 + x311 + x312 + x317 + x318 + x319 + x424 ++ x425 + x428 + x429 + x438 + x458 + x460 + x502 <= 1 + +x14 + x16 + x67 + x69 + x79 + x82 + x110 + x125 + x126 + x144 ++ x145 + x149 + x150 + x151 + x152 + x156 + x187 + x188 + x189 + x200 ++ x201 + x203 + x224 + x245 + x248 + x250 + x254 + x261 + x278 + x279 ++ x296 + x297 + x298 + x299 + x303 + x306 + x307 + x308 + x309 + x311 ++ x312 + x339 + x345 + x351 + x369 + x370 + x375 + x396 + x399 + x424 ++ x425 + x426 + x427 + x428 + x429 + x438 + x452 + x458 + x459 + x460 ++ x462 + x472 + x476 + x498 + x500 + x501 + x502 + x503 <= 1 + +x10 + x11 + x45 + x67 + x69 + x79 + x101 + x106 + x110 + x116 ++ x125 + x133 + x151 + x152 + x154 + x186 + x187 + x188 + x189 + x190 ++ x191 + x192 + x198 + x199 + x202 + x203 + x205 + x224 + x236 + x245 ++ x246 + x247 + x248 + x254 + x261 + x269 + x275 + x277 + x278 + x279 ++ x296 + x297 + x300 + x307 + x308 + x309 + x311 + x312 + x353 + x375 ++ x376 + x389 + x399 + x403 + x424 + x425 + x426 + x427 + x429 + x438 ++ x444 + x452 + x456 + x458 + x459 + x460 + x462 + x470 + x471 + x472 ++ x476 + x498 + x501 + x502 + x503 <= 1 + +x11 + x45 + x46 + x49 + x81 + x83 + x85 + x86 + x101 + x110 ++ x131 + x133 + x151 + x152 + x154 + x166 + x173 + x187 + x188 + x189 ++ x190 + x191 + x192 + x193 + x194 + x195 + x203 + x205 + x247 + x249 ++ x261 + x269 + x275 + x277 + x278 + x279 + x296 + x297 + x300 + x309 ++ x311 + x353 + x375 + x376 + x389 + x401 + x403 + x424 + x425 + x426 ++ x427 + x429 + x438 + x442 + x444 + x452 + x454 + x456 + x458 + x459 ++ x460 + x476 + x477 + x478 + x502 + x503 <= 1 + +x20 + x46 + x81 + x83 + x85 + x87 + x89 + x90 + x91 + x92 ++ x98 + x101 + x110 + x125 + x131 + x151 + x153 + x164 + x166 + x168 ++ x171 + x173 + x184 + x187 + x189 + x190 + x191 + x192 + x193 + x194 ++ x195 + x203 + x204 + x212 + x261 + x269 + x270 + x272 + x273 + x275 ++ x276 + x278 + x279 + x296 + x297 + x300 + x308 + x309 + x343 + x344 ++ x347 + x375 + x376 + x401 + x410 + x419 + x424 + x425 + x426 + x427 ++ x428 + x429 + x438 + x442 + x443 + x451 + x452 + x453 + x456 + x467 ++ x472 + x476 + x477 + x485 + x503 <= 1 + +x2 + x20 + x21 + x44 + x46 + x48 + x70 + x71 + x74 + x80 ++ x83 + x87 + x88 + x89 + x90 + x91 + x92 + x98 + x113 + x127 ++ x147 + x153 + x155 + x156 + x163 + x164 + x166 + x167 + x168 + x173 ++ x184 + x187 + x190 + x191 + x192 + x193 + x194 + x195 + x203 + x212 ++ x232 + x233 + x234 + x236 + x237 + x247 + x257 + x261 + x269 + x270 ++ x272 + x273 + x275 + x296 + x300 + x308 + x309 + x312 + x326 + x337 ++ x338 + x340 + x400 + x401 + x404 + x410 + x425 + x426 + x427 + x442 ++ x443 + x445 + x453 + x456 + x461 + x467 + x472 + x474 + x476 + x485 ++ x501 + x503 <= 1 + +x1 + x2 + x17 + x18 + x20 + x21 + x44 + x46 + x47 + x48 ++ x49 + x71 + x83 + x88 + x92 + x98 + x101 + x110 + x113 + x147 ++ x151 + x155 + x156 + x164 + x167 + x172 + x173 + x185 + x187 + x190 ++ x191 + x192 + x193 + x194 + x195 + x212 + x233 + x234 + x247 + x257 ++ x258 + x260 + x261 + x269 + x270 + x272 + x273 + x277 + x278 + x308 ++ x309 + x325 + x326 + x327 + x360 + x374 + x376 + x377 + x378 + x379 ++ x399 + x400 + x401 + x402 + x403 + x404 + x425 + x429 + x443 + x445 ++ x453 + x455 + x456 + x457 + x462 + x482 + x485 + x501 + x502 <= 1 + +x0 + x1 + x2 + x17 + x18 + x19 + x20 + x21 + x44 + x46 ++ x47 + x48 + x49 + x76 + x86 + x94 + x97 + x151 + x153 + x155 ++ x156 + x164 + x184 + x190 + x191 + x192 + x193 + x194 + x195 + x233 ++ x237 + x242 + x258 + x269 + x272 + x278 + x290 + x293 + x325 + x326 ++ x327 + x329 + x333 + x334 + x335 + x360 + x374 + x376 + x377 + x378 ++ x379 + x399 + x400 + x401 + x402 + x403 + x404 + x409 + x425 + x429 ++ x434 + x436 + x437 + x439 + x441 + x455 + x457 + x462 + x480 + x481 ++ x482 + x485 + x502 <= 1 + +x2 + x17 + x18 + x19 + x20 + x21 + x44 + x45 + x46 + x47 ++ x48 + x49 + x86 + x93 + x94 + x97 + x151 + x154 + x155 + x156 ++ x184 + x195 + x209 + x213 + x238 + x239 + x240 + x242 + x272 + x291 ++ x293 + x294 + x310 + x325 + x326 + x327 + x329 + x330 + x331 + x332 ++ x333 + x334 + x335 + x374 + x375 + x377 + x378 + x379 + x399 + x400 ++ x401 + x402 + x403 + x404 + x409 + x436 + x437 + x439 + x451 + x455 ++ x457 + x459 + x461 + x480 + x481 + x482 + x485 <= 1 + +x17 + x18 + x19 + x20 + x21 + x44 + x45 + x46 + x47 + x48 ++ x49 + x94 + x97 + x111 + x115 + x130 + x156 + x191 + x193 + x195 ++ x209 + x213 + x238 + x239 + x240 + x241 + x242 + x243 + x264 + x272 ++ x293 + x325 + x326 + x327 + x328 + x330 + x331 + x332 + x333 + x334 ++ x374 + x375 + x377 + x378 + x379 + x399 + x400 + x401 + x402 + x403 ++ x404 + x437 + x439 + x457 + x461 + x475 + x481 + x482 <= 1 + +x39 + x47 + x82 + x97 + x126 + x152 + x181 + x206 + x248 + x256 ++ x258 + x261 + x297 + x298 + x351 + x353 + x369 + x397 + x408 + x421 ++ x426 + x455 + x460 + x472 + x476 + x502 <= 1 + +x0 + x3 + x5 + x39 + x47 + x82 + x125 + x126 + x144 + x145 ++ x152 + x182 + x206 + x207 + x244 + x248 + x253 + x254 + x256 + x258 ++ x260 + x261 + x263 + x276 + x278 + x297 + x298 + x299 + x302 + x306 ++ x307 + x308 + x309 + x312 + x351 + x352 + x353 + x354 + x369 + x370 ++ x371 + x376 + x394 + x396 + x397 + x398 + x408 + x421 + x424 + x426 ++ x427 + x429 + x452 + x455 + x460 + x462 + x472 + x476 + x498 + x500 ++ x502 + x503 <= 1 + +x42 + x43 + x61 + x75 + x77 + x78 + x79 + x82 + x110 + x123 ++ x126 + x144 + x150 + x151 + x152 + x154 + x182 + x183 + x188 + x189 ++ x190 + x191 + x192 + x193 + x194 + x201 + x203 + x205 + x206 + x207 ++ x224 + x232 + x235 + x237 + x245 + x246 + x247 + x261 + x300 + x302 ++ x303 + x304 + x306 + x307 + x308 + x309 + x311 + x312 + x343 + x344 ++ x345 + x346 + x347 + x348 + x376 + x394 + x395 + x396 + x397 + x399 ++ x421 + x423 + x424 + x426 + x427 + x428 + x429 + x438 + x446 + x458 ++ x462 + x472 + x476 + x496 + x497 + x498 + x500 + x501 + x502 + x503 + <= 1 + +x38 + x43 + x48 + x61 + x62 + x63 + x75 + x77 + x78 + x79 ++ x98 + x101 + x106 + x110 + x126 + x129 + x130 + x131 + x132 + x133 ++ x134 + x151 + x152 + x154 + x183 + x187 + x188 + x189 + x190 + x191 ++ x192 + x193 + x194 + x202 + x205 + x206 + x210 + x232 + x234 + x235 ++ x237 + x245 + x246 + x247 + x249 + x261 + x275 + x277 + x278 + x300 ++ x302 + x303 + x304 + x307 + x308 + x309 + x311 + x312 + x343 + x345 ++ x347 + x348 + x376 + x393 + x394 + x395 + x396 + x397 + x398 + x399 ++ x411 + x421 + x424 + x426 + x427 + x429 + x438 + x456 + x458 + x462 ++ x471 + x472 + x476 + x496 + x498 + x500 + x501 + x502 + x503 <= 1 + +x9 + x74 + x75 + x77 + x79 + x80 + x81 + x83 + x85 + x89 ++ x90 + x92 + x98 + x100 + x101 + x129 + x130 + x131 + x134 + x151 ++ x171 + x173 + x190 + x206 + x212 + x232 + x233 + x234 + x235 + x237 ++ x240 + x261 + x268 + x269 + x270 + x272 + x273 + x275 + x278 + x296 ++ x297 + x300 + x307 + x308 + x309 + x311 + x312 + x342 + x343 + x344 ++ x346 + x347 + x348 + x376 + x395 + x396 + x398 + x410 + x411 + x413 ++ x419 + x424 + x425 + x427 + x429 + x436 + x438 + x471 + x472 + x474 ++ x476 + x485 + x496 + x497 + x498 + x500 + x503 <= 1 + +x7 + x8 + x9 + x70 + x71 + x74 + x80 + x87 + x89 + x90 ++ x92 + x98 + x100 + x127 + x151 + x153 + x190 + x191 + x192 + x193 ++ x194 + x195 + x208 + x212 + x232 + x233 + x234 + x235 + x237 + x247 ++ x257 + x261 + x268 + x269 + x270 + x272 + x275 + x284 + x300 + x308 ++ x312 + x337 + x340 + x342 + x343 + x347 + x348 + x384 + x408 + x410 ++ x412 + x413 + x426 + x429 + x436 + x445 + x471 + x474 + x476 + x485 ++ x496 <= 1 + +x7 + x8 + x9 + x47 + x48 + x57 + x86 + x89 + x90 + x92 ++ x100 + x103 + x104 + x142 + x153 + x190 + x191 + x192 + x193 + x194 ++ x195 + x202 + x208 + x212 + x218 + x232 + x234 + x235 + x237 + x247 ++ x248 + x257 + x268 + x269 + x270 + x272 + x273 + x284 + x308 + x347 ++ x348 + x404 + x413 + x436 + x437 + x439 + x441 + x459 + x460 + x474 + <= 1 + +x0 + x1 + x2 + x7 + x44 + x47 + x48 + x57 + x66 + x89 ++ x97 + x104 + x190 + x191 + x192 + x193 + x194 + x195 + x212 + x237 ++ x247 + x248 + x268 + x272 + x278 + x327 + x334 + x335 + x348 + x390 ++ x399 + x400 + x401 + x402 + x404 + x436 + x437 + x439 + x441 + x480 ++ x482 + x485 + x502 <= 1 + +x18 + x19 + x20 + x21 + x44 + x45 + x46 + x47 + x48 + x49 ++ x94 + x97 + x107 + x111 + x115 + x154 + x156 + x191 + x192 + x195 ++ x211 + x213 + x238 + x239 + x240 + x241 + x242 + x243 + x248 + x249 ++ x305 + x325 + x326 + x327 + x328 + x329 + x330 + x331 + x332 + x333 ++ x334 + x335 + x374 + x375 + x377 + x378 + x379 + x380 + x399 + x400 ++ x401 + x402 + x403 + x404 + x437 + x439 + x455 + x457 + x459 + x461 ++ x475 + x480 + x481 + x482 <= 1 + +x17 + x18 + x19 + x20 + x45 + x46 + x47 + x48 + x49 + x94 ++ x97 + x111 + x115 + x130 + x191 + x192 + x195 + x208 + x211 + x213 ++ x238 + x239 + x240 + x241 + x242 + x249 + x264 + x311 + x325 + x326 ++ x327 + x329 + x330 + x332 + x334 + x335 + x349 + x374 + x375 + x377 ++ x378 + x379 + x399 + x400 + x401 + x402 + x403 + x404 + x439 + x455 ++ x482 + x494 <= 1 + +x39 + x42 + x47 + x82 + x123 + x124 + x125 + x127 + x136 + x151 ++ x152 + x155 + x169 + x174 + x178 + x180 + x181 + x190 + x194 + x210 ++ x245 + x250 + x251 + x252 + x253 + x256 + x262 + x263 + x265 + x271 ++ x274 + x275 + x276 + x277 + x278 + x281 + x295 + x297 + x298 + x299 ++ x301 + x302 + x303 + x304 + x305 + x306 + x309 + x310 + x321 + x350 ++ x351 + x352 + x353 + x354 + x355 + x369 + x370 + x371 + x394 + x395 ++ x396 + x397 + x398 + x406 + x408 + x418 + x419 + x421 + x422 + x423 ++ x426 + x429 + x462 + x476 + x483 + x498 + x501 <= 1 + +x0 + x3 + x5 + x38 + x39 + x40 + x41 + x42 + x47 + x63 ++ x70 + x73 + x78 + x81 + x82 + x86 + x123 + x125 + x130 + x133 ++ x134 + x151 + x152 + x155 + x169 + x174 + x181 + x182 + x188 + x202 ++ x206 + x207 + x210 + x235 + x245 + x246 + x247 + x250 + x253 + x256 ++ x258 + x261 + x263 + x265 + x271 + x274 + x275 + x276 + x278 + x283 ++ x295 + x297 + x298 + x299 + x301 + x302 + x303 + x304 + x305 + x306 ++ x307 + x309 + x310 + x338 + x344 + x350 + x351 + x352 + x353 + x354 ++ x355 + x368 + x369 + x370 + x371 + x376 + x393 + x394 + x396 + x397 ++ x398 + x408 + x417 + x418 + x419 + x421 + x422 + x424 + x426 + x427 ++ x429 + x452 + x455 + x456 + x461 + x462 + x467 + x472 + x476 + x498 ++ x502 <= 1 + +x25 + x29 + x31 + x38 + x41 + x42 + x43 + x61 + x62 + x63 ++ x73 + x75 + x77 + x78 + x80 + x81 + x82 + x86 + x110 + x123 ++ x125 + x126 + x129 + x130 + x131 + x132 + x133 + x134 + x151 + x152 ++ x154 + x155 + x181 + x182 + x188 + x189 + x190 + x191 + x192 + x193 ++ x194 + x202 + x203 + x205 + x206 + x207 + x210 + x235 + x244 + x245 ++ x246 + x247 + x249 + x250 + x255 + x265 + x271 + x274 + x275 + x276 ++ x278 + x287 + x297 + x301 + x302 + x303 + x304 + x306 + x307 + x308 ++ x309 + x310 + x311 + x342 + x343 + x344 + x345 + x346 + x348 + x355 ++ x368 + x376 + x393 + x394 + x395 + x396 + x397 + x398 + x399 + x406 ++ x408 + x410 + x411 + x417 + x418 + x419 + x420 + x421 + x422 + x423 ++ x424 + x426 + x427 + x429 + x456 + x462 + x471 + x472 + x476 + x494 ++ x496 + x497 + x498 + x500 + x501 + x502 + x503 <= 1 + +x45 + x48 + x75 + x77 + x78 + x79 + x80 + x82 + x121 + x129 ++ x130 + x131 + x132 + x133 + x134 + x151 + x152 + x183 + x190 + x193 ++ x202 + x205 + x206 + x210 + x212 + x245 + x247 + x255 + x261 + x273 ++ x275 + x278 + x298 + x300 + x301 + x302 + x303 + x304 + x306 + x307 ++ x308 + x309 + x311 + x312 + x342 + x343 + x344 + x345 + x346 + x347 ++ x376 + x398 + x399 + x406 + x408 + x410 + x411 + x417 + x418 + x424 ++ x426 + x427 + x429 + x462 + x471 + x472 + x476 + x496 + x497 + x498 ++ x500 + x501 + x502 + x503 <= 1 + +x33 + x48 + x74 + x75 + x77 + x79 + x80 + x136 + x190 + x191 ++ x192 + x195 + x202 + x204 + x205 + x210 + x212 + x232 + x233 + x237 ++ x261 + x269 + x272 + x273 + x278 + x295 + x296 + x298 + x300 + x302 ++ x303 + x304 + x307 + x308 + x309 + x311 + x312 + x342 + x343 + x344 ++ x345 + x346 + x347 + x348 + x376 + x384 + x397 + x404 + x408 + x410 ++ x412 + x413 + x414 + x415 + x416 + x417 + x419 + x424 + x427 + x429 ++ x436 + x438 + x440 + x472 + x474 + x496 + x497 + x500 + x501 + x503 + <= 1 + +x8 + x44 + x48 + x60 + x80 + x87 + x89 + x92 + x127 + x136 ++ x155 + x190 + x191 + x192 + x193 + x194 + x195 + x204 + x208 + x211 ++ x212 + x247 + x248 + x268 + x269 + x270 + x271 + x272 + x308 + x340 ++ x343 + x344 + x384 + x388 + x390 + x391 + x392 + x402 + x404 + x408 ++ x410 + x412 + x413 + x414 + x415 + x416 + x436 + x437 + x439 + x440 ++ x441 + x471 + x472 + x474 + x496 <= 1 + +x1 + x7 + x8 + x9 + x44 + x55 + x57 + x86 + x87 + x92 ++ x100 + x103 + x104 + x136 + x141 + x153 + x190 + x191 + x192 + x193 ++ x194 + x195 + x202 + x204 + x208 + x211 + x212 + x213 + x218 + x234 ++ x244 + x247 + x248 + x264 + x267 + x268 + x269 + x270 + x272 + x273 ++ x355 + x364 + x365 + x366 + x387 + x388 + x390 + x391 + x392 + x402 ++ x404 + x410 + x436 + x437 + x439 + x440 + x441 + x459 + x460 + x473 ++ x474 + x492 <= 1 + +x0 + x1 + x2 + x44 + x57 + x97 + x100 + x103 + x104 + x141 ++ x153 + x190 + x191 + x192 + x193 + x194 + x195 + x208 + x213 + x247 ++ x248 + x264 + x268 + x387 + x388 + x390 + x391 + x399 + x400 + x402 ++ x404 + x436 + x437 + x439 + x441 + x460 + x480 <= 1 + +x18 + x19 + x21 + x44 + x46 + x47 + x48 + x102 + x107 + x111 ++ x191 + x192 + x195 + x208 + x209 + x211 + x213 + x238 + x239 + x240 ++ x241 + x242 + x243 + x248 + x249 + x305 + x325 + x326 + x327 + x328 ++ x329 + x330 + x331 + x332 + x333 + x335 + x374 + x375 + x377 + x378 ++ x380 + x388 + x389 + x391 + x392 + x399 + x400 + x401 + x402 + x403 ++ x404 + x411 + x425 + x450 + x457 + x459 + x473 + x475 + x496 <= 1 + +x18 + x19 + x20 + x47 + x48 + x191 + x192 + x208 + x209 + x211 ++ x213 + x239 + x240 + x241 + x243 + x248 + x249 + x305 + x325 + x326 ++ x327 + x328 + x329 + x330 + x332 + x333 + x374 + x377 + x378 + x379 ++ x391 + x399 + x400 + x401 + x402 + x403 + x404 + x425 + x439 + x459 ++ x473 + x494 + x503 <= 1 + +x0 + x3 + x5 + x38 + x39 + x41 + x42 + x45 + x47 + x68 ++ x117 + x123 + x124 + x127 + x129 + x132 + x133 + x134 + x136 + x151 ++ x152 + x169 + x174 + x178 + x179 + x180 + x181 + x182 + x190 + x191 ++ x206 + x207 + x210 + x235 + x244 + x245 + x246 + x251 + x252 + x253 ++ x258 + x262 + x263 + x265 + x271 + x276 + x277 + x278 + x280 + x281 ++ x283 + x295 + x298 + x299 + x301 + x302 + x303 + x304 + x305 + x306 ++ x307 + x309 + x310 + x321 + x322 + x350 + x351 + x352 + x354 + x355 ++ x368 + x369 + x370 + x371 + x393 + x394 + x395 + x396 + x397 + x398 ++ x406 + x418 + x419 + x421 + x422 + x423 + x426 + x427 + x429 + x452 ++ x456 + x461 + x462 + x472 + x476 + x498 + x501 + x502 <= 1 + +x3 + x5 + x26 + x38 + x39 + x40 + x41 + x42 + x45 + x47 ++ x73 + x82 + x117 + x129 + x130 + x132 + x133 + x134 + x151 + x152 ++ x174 + x181 + x190 + x191 + x192 + x194 + x202 + x206 + x207 + x210 ++ x244 + x245 + x246 + x250 + x251 + x252 + x253 + x258 + x271 + x274 ++ x275 + x276 + x277 + x278 + x280 + x281 + x282 + x283 + x298 + x299 ++ x301 + x302 + x303 + x304 + x305 + x306 + x307 + x309 + x310 + x338 ++ x344 + x345 + x350 + x351 + x352 + x354 + x355 + x370 + x371 + x393 ++ x394 + x395 + x396 + x398 + x406 + x408 + x411 + x418 + x419 + x420 ++ x421 + x422 + x423 + x426 + x449 + x452 + x456 + x461 + x462 + x471 ++ x475 + x476 + x498 + x501 + x502 <= 1 + +x3 + x5 + x24 + x26 + x33 + x40 + x41 + x43 + x45 + x47 ++ x48 + x73 + x77 + x82 + x110 + x124 + x129 + x130 + x131 + x132 ++ x133 + x134 + x138 + x152 + x174 + x182 + x188 + x190 + x191 + x192 ++ x193 + x194 + x206 + x207 + x210 + x235 + x244 + x246 + x247 + x249 ++ x251 + x258 + x271 + x274 + x275 + x276 + x282 + x295 + x297 + x298 ++ x299 + x301 + x302 + x303 + x304 + x306 + x307 + x308 + x309 + x310 ++ x311 + x319 + x338 + x345 + x348 + x350 + x352 + x354 + x355 + x371 ++ x393 + x394 + x395 + x396 + x398 + x406 + x408 + x410 + x411 + x418 ++ x419 + x420 + x421 + x422 + x423 + x426 + x427 + x461 + x462 + x471 ++ x475 + x476 + x494 + x495 + x497 + x498 + x501 + x502 + x503 <= 1 + +x24 + x25 + x27 + x29 + x33 + x43 + x45 + x48 + x62 + x78 ++ x98 + x107 + x110 + x118 + x121 + x123 + x126 + x129 + x130 + x132 ++ x133 + x134 + x138 + x151 + x188 + x190 + x191 + x192 + x193 + x194 ++ x195 + x202 + x203 + x205 + x206 + x207 + x210 + x244 + x246 + x247 ++ x249 + x255 + x271 + x278 + x295 + x298 + x299 + x300 + x301 + x302 ++ x303 + x304 + x306 + x307 + x309 + x310 + x344 + x345 + x346 + x348 ++ x350 + x352 + x354 + x355 + x393 + x394 + x395 + x396 + x397 + x398 ++ x406 + x408 + x410 + x414 + x417 + x418 + x420 + x422 + x423 + x424 ++ x426 + x427 + x471 + x472 + x473 + x494 + x497 + x498 + x500 + x501 ++ x502 + x503 <= 1 + +x25 + x27 + x45 + x48 + x98 + x99 + x107 + x110 + x121 + x151 ++ x190 + x191 + x192 + x194 + x195 + x202 + x204 + x207 + x210 + x244 ++ x247 + x249 + x271 + x273 + x295 + x300 + x343 + x344 + x346 + x348 ++ x350 + x352 + x353 + x365 + x384 + x386 + x394 + x395 + x396 + x397 ++ x398 + x410 + x412 + x413 + x414 + x415 + x416 + x419 + x420 + x423 ++ x424 + x426 + x427 + x471 + x472 + x473 + x474 + x475 + x494 + x495 ++ x497 + x498 + x500 <= 1 + +x27 + x55 + x57 + x60 + x87 + x99 + x102 + x104 + x107 + x108 ++ x111 + x127 + x136 + x137 + x151 + x190 + x191 + x192 + x193 + x194 ++ x195 + x202 + x204 + x205 + x207 + x208 + x211 + x212 + x213 + x244 ++ x247 + x248 + x267 + x271 + x273 + x300 + x313 + x314 + x343 + x346 ++ x363 + x365 + x366 + x388 + x389 + x391 + x392 + x404 + x412 + x414 ++ x416 + x423 + x436 + x439 + x440 + x460 + x473 + x474 + x475 + x492 ++ x494 + x495 + x496 + x497 <= 1 + +x44 + x55 + x56 + x57 + x59 + x60 + x86 + x94 + x100 + x102 ++ x103 + x104 + x106 + x107 + x108 + x111 + x136 + x137 + x190 + x191 ++ x192 + x193 + x195 + x202 + x204 + x208 + x211 + x212 + x213 + x234 ++ x236 + x243 + x244 + x248 + x249 + x262 + x264 + x267 + x268 + x269 ++ x270 + x271 + x273 + x311 + x313 + x314 + x315 + x331 + x336 + x343 ++ x346 + x355 + x362 + x363 + x364 + x365 + x366 + x367 + x387 + x388 ++ x389 + x390 + x391 + x392 + x402 + x404 + x436 + x439 + x440 + x441 ++ x457 + x459 + x460 + x473 + x474 + x475 + x492 + x494 + x495 + x496 + <= 1 + +x18 + x34 + x35 + x36 + x44 + x57 + x59 + x60 + x93 + x94 ++ x95 + x100 + x102 + x103 + x104 + x106 + x107 + x108 + x111 + x135 ++ x136 + x137 + x191 + x208 + x209 + x211 + x213 + x224 + x236 + x238 ++ x239 + x240 + x241 + x242 + x243 + x244 + x248 + x249 + x262 + x264 ++ x266 + x267 + x315 + x328 + x329 + x330 + x331 + x333 + x355 + x362 ++ x364 + x365 + x366 + x367 + x377 + x387 + x388 + x389 + x391 + x392 ++ x402 + x404 + x457 + x459 + x460 + x473 + x474 + x475 + x492 + x494 ++ x495 + x496 <= 1 + +x18 + x19 + x36 + x47 + x48 + x93 + x94 + x95 + x102 + x103 ++ x106 + x107 + x108 + x111 + x191 + x192 + x195 + x208 + x209 + x211 ++ x213 + x238 + x239 + x240 + x241 + x242 + x243 + x244 + x248 + x249 ++ x262 + x266 + x305 + x315 + x325 + x326 + x327 + x328 + x329 + x330 ++ x331 + x332 + x333 + x362 + x364 + x365 + x366 + x367 + x377 + x387 ++ x388 + x389 + x391 + x392 + x454 + x457 + x459 + x460 + x473 + x474 ++ x492 + x495 + x496 <= 1 + +x102 + x106 + x111 + x199 + x208 + x209 + x213 + x238 + x239 + x240 ++ x241 + x243 + x266 + x305 + x325 + x327 + x328 + x329 + x330 + x362 ++ x366 + x367 + x377 + x387 + x388 + x389 + x391 + x454 + x457 + x459 ++ x473 <= 1 + +x3 + x26 + x28 + x32 + x47 + x123 + x124 + x128 + x129 + x132 ++ x134 + x174 + x178 + x179 + x180 + x183 + x206 + x207 + x208 + x210 ++ x218 + x245 + x251 + x252 + x263 + x265 + x271 + x276 + x280 + x281 ++ x282 + x283 + x295 + x298 + x299 + x301 + x303 + x305 + x306 + x307 ++ x310 + x322 + x351 + x354 + x368 + x371 + x406 + x411 + x418 + x419 ++ x421 + x422 + x423 + x447 + x449 + x452 + x461 + x471 + x472 + x475 ++ x476 + x498 + x501 + x502 <= 1 + +x3 + x23 + x26 + x38 + x40 + x47 + x82 + x117 + x120 + x124 ++ x128 + x129 + x130 + x132 + x133 + x134 + x152 + x174 + x179 + x180 ++ x181 + x183 + x206 + x207 + x210 + x245 + x246 + x249 + x252 + x271 ++ x280 + x281 + x282 + x283 + x295 + x298 + x299 + x301 + x302 + x303 ++ x304 + x305 + x306 + x307 + x308 + x309 + x310 + x311 + x344 + x346 ++ x350 + x351 + x352 + x354 + x355 + x388 + x393 + x394 + x395 + x396 ++ x398 + x399 + x406 + x408 + x411 + x418 + x419 + x421 + x422 + x449 ++ x452 + x471 + x475 + x476 + x498 + x501 <= 1 + +x23 + x24 + x26 + x28 + x40 + x43 + x45 + x47 + x48 + x58 ++ x82 + x110 + x118 + x120 + x124 + x128 + x129 + x130 + x132 + x133 ++ x134 + x152 + x174 + x179 + x182 + x188 + x190 + x191 + x192 + x206 ++ x207 + x210 + x244 + x249 + x271 + x275 + x276 + x295 + x299 + x304 ++ x307 + x308 + x309 + x310 + x311 + x345 + x346 + x350 + x352 + x354 ++ x371 + x393 + x395 + x399 + x411 + x415 + x427 + x452 + x471 + x472 ++ x473 + x475 + x476 + x495 + x498 <= 1 + +x23 + x24 + x25 + x27 + x28 + x33 + x40 + x45 + x47 + x48 ++ x56 + x58 + x82 + x110 + x118 + x120 + x121 + x124 + x128 + x138 ++ x174 + x190 + x191 + x192 + x194 + x202 + x206 + x207 + x210 + x219 ++ x244 + x246 + x249 + x255 + x268 + x271 + x295 + x299 + x301 + x302 ++ x304 + x307 + x309 + x310 + x345 + x346 + x348 + x350 + x352 + x393 ++ x394 + x397 + x414 + x415 + x416 + x417 + x418 + x420 + x423 + x426 ++ x471 + x472 + x473 + x474 + x475 + x495 + x497 + x498 <= 1 + +x23 + x24 + x27 + x44 + x48 + x56 + x58 + x82 + x86 + x106 ++ x111 + x120 + x128 + x138 + x190 + x191 + x192 + x193 + x194 + x195 ++ x202 + x204 + x207 + x210 + x219 + x244 + x255 + x268 + x271 + x299 ++ x307 + x309 + x310 + x353 + x393 + x394 + x397 + x398 + x410 + x412 ++ x415 + x416 + x424 + x471 + x473 + x474 + x475 + x495 + x497 + x498 ++ x500 <= 1 + +x27 + x44 + x55 + x56 + x58 + x59 + x86 + x106 + x107 + x109 ++ x111 + x138 + x139 + x175 + x177 + x190 + x191 + x192 + x193 + x194 ++ x195 + x204 + x244 + x248 + x249 + x268 + x269 + x270 + x271 + x299 ++ x336 + x353 + x389 + x390 + x393 + x394 + x424 + x436 + x459 + x471 ++ x473 + x474 + x475 + x492 + x494 + x495 <= 1 + +x34 + x36 + x55 + x56 + x58 + x60 + x86 + x106 + x107 + x108 ++ x111 + x155 + x177 + x190 + x192 + x202 + x204 + x208 + x209 + x213 ++ x244 + x248 + x249 + x262 + x267 + x268 + x269 + x270 + x313 + x314 ++ x328 + x331 + x336 + x353 + x367 + x393 + x402 + x404 + x436 + x439 ++ x440 + x441 + x457 + x459 + x460 + x471 + x473 + x474 + x475 + x492 ++ x493 + x494 + x495 <= 1 + +x34 + x35 + x36 + x37 + x55 + x56 + x57 + x59 + x60 + x86 ++ x94 + x95 + x102 + x103 + x104 + x106 + x107 + x108 + x111 + x135 ++ x137 + x140 + x190 + x191 + x192 + x193 + x194 + x195 + x202 + x204 ++ x208 + x209 + x211 + x213 + x234 + x239 + x240 + x243 + x244 + x248 ++ x249 + x267 + x268 + x269 + x270 + x314 + x315 + x328 + x329 + x330 ++ x331 + x336 + x362 + x363 + x364 + x367 + x381 + x387 + x388 + x389 ++ x390 + x391 + x392 + x402 + x404 + x457 + x459 + x460 + x473 + x474 ++ x475 + x492 + x493 <= 1 + +x34 + x35 + x37 + x59 + x60 + x86 + x94 + x95 + x102 + x103 ++ x104 + x106 + x107 + x108 + x109 + x111 + x139 + x140 + x152 + x194 ++ x204 + x208 + x209 + x211 + x213 + x268 + x269 + x270 + x296 + x298 ++ x331 + x336 + x363 + x364 + x369 + x381 + x382 + x387 + x388 + x389 ++ x390 + x391 + x392 + x402 + x418 + x457 + x459 + x460 + x473 + x474 ++ x475 + x488 + x492 + x493 <= 1 + +x35 + x37 + x60 + x106 + x107 + x108 + x109 + x111 + x135 + x137 ++ x139 + x140 + x152 + x192 + x194 + x204 + x247 + x296 + x336 + x369 ++ x387 + x388 + x389 + x390 + x392 + x457 + x459 + x460 + x473 + x474 ++ x493 <= 1 + +x26 + x30 + x32 + x47 + x129 + x132 + x174 + x178 + x179 + x180 ++ x183 + x203 + x207 + x210 + x245 + x263 + x265 + x279 + x282 + x295 ++ x298 + x299 + x301 + x305 + x307 + x310 + x351 + x354 + x406 + x411 ++ x422 + x447 + x448 + x451 + x452 + x461 + x471 + x472 + x476 + x498 ++ x501 <= 1 + +x5 + x29 + x30 + x32 + x174 + x178 + x179 + x180 + x183 + x203 ++ x245 + x270 + x273 + x295 + x298 + x301 + x305 + x307 + x405 + x406 ++ x422 + x424 + x447 + x448 + x451 + x452 + x471 + x476 + x498 <= 1 + +x5 + x29 + x30 + x32 + x117 + x174 + x179 + x180 + x245 + x270 ++ x295 + x301 + x305 + x307 + x405 + x422 + x424 + x428 + x448 + x451 ++ x452 + x471 + x476 <= 1 + +x23 + x25 + x28 + x45 + x47 + x48 + x108 + x109 + x138 + x190 ++ x191 + x192 + x193 + x194 + x202 + x207 + x215 + x219 + x244 + x249 ++ x295 + x299 + x310 + x350 + x387 + x390 + x393 + x397 + x420 + x423 ++ x426 + x471 + x472 + x473 + x474 + x475 + x492 + x495 + x497 + x498 + <= 1 + +x23 + x25 + x28 + x44 + x47 + x108 + x109 + x135 + x138 + x139 ++ x140 + x153 + x189 + x190 + x192 + x194 + x207 + x211 + x219 + x249 ++ x268 + x270 + x271 + x273 + x387 + x390 + x392 + x393 + x397 + x471 ++ x473 + x475 + x492 + x494 + x497 + x498 <= 1 + +x28 + x41 + x44 + x55 + x56 + x58 + x59 + x86 + x106 + x108 ++ x109 + x135 + x138 + x139 + x140 + x174 + x175 + x176 + x190 + x192 ++ x193 + x194 + x195 + x211 + x219 + x244 + x249 + x268 + x269 + x270 ++ x271 + x273 + x353 + x387 + x389 + x390 + x391 + x392 + x471 + x473 ++ x474 + x475 + x492 + x494 + x495 + x498 <= 1 + +x55 + x56 + x59 + x106 + x107 + x108 + x109 + x135 + x137 + x138 ++ x139 + x140 + x176 + x190 + x192 + x193 + x194 + x211 + x244 + x270 ++ x274 + x328 + x336 + x387 + x389 + x390 + x391 + x392 + x427 + x475 + <= 1 + +x1 + x37 + x48 + x59 + x86 + x95 + x103 + x106 + x107 + x108 ++ x109 + x111 + x135 + x137 + x139 + x140 + x190 + x192 + x193 + x194 ++ x209 + x211 + x243 + x244 + x268 + x274 + x296 + x328 + x329 + x330 ++ x336 + x362 + x363 + x383 + x387 + x388 + x389 + x390 + x391 + x392 ++ x427 + x459 + x460 + x473 + x474 + x475 + x492 + x493 <= 1 + +x1 + x46 + x94 + x95 + x102 + x106 + x107 + x108 + x109 + x111 ++ x135 + x137 + x139 + x140 + x152 + x192 + x193 + x194 + x204 + x209 ++ x211 + x243 + x268 + x296 + x336 + x363 + x381 + x382 + x383 + x387 ++ x388 + x389 + x390 + x391 + x392 + x402 + x451 + x457 + x459 + x460 ++ x473 + x474 + x475 + x493 <= 1 + +x106 + x107 + x108 + x109 + x135 + x137 + x139 + x140 + x192 + x194 ++ x204 + x247 + x268 + x278 + x295 + x296 + x336 + x382 + x383 + x387 ++ x388 + x390 + x392 + x473 + x474 + x493 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x7 + x8 + x9 <= 1 + +x10 + x11 + x12 <= 1 + +x13 + x14 + x15 + x16 <= 1 + +x17 + x18 + x19 + x20 + x21 + x22 <= 1 + +x23 + x24 + x25 + x26 + x27 + x28 <= 1 + +x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 <= 1 + +x38 + x39 + x40 + x41 + x42 + x43 <= 1 + +x44 + x45 + x46 + x47 + x48 + x49 <= 1 + +x50 + x51 + x52 + x53 + x54 <= 1 + +x55 + x56 + x57 + x58 + x59 + x60 <= 1 + +x61 + x62 + x63 <= 1 + +x64 + x65 + x66 + x67 + x68 + x69 <= 1 + +x70 + x71 + x72 + x73 + x74 <= 1 + +x75 + x76 + x77 + x78 + x79 + x80 <= 1 + +x81 + x82 + x83 + x84 + x85 + x86 <= 1 + +x87 + x88 + x89 + x90 + x91 + x92 <= 1 + +x93 + x94 + x95 + x96 + x97 + x98 <= 1 + +x100 + x101 + x102 + x103 + x104 + x105 <= 1 + +x106 + x107 + x108 + x109 + x110 + x111 <= 1 + +x112 + x113 + x114 + x115 + x116 + x117 <= 1 + +x118 + x119 + x120 + x121 <= 1 + +x123 + x124 + x125 + x126 + x127 + x128 <= 1 + +x129 + x130 + x131 + x132 + x133 + x134 <= 1 + +x135 + x136 + x137 + x138 + x139 + x140 <= 1 + + <= 1 + +x143 + x144 + x145 + x146 + x147 + x148 <= 1 + +x149 + x150 <= 1 + +x151 + x152 + x153 + x154 + x155 + x156 <= 1 + +x157 + x158 + x159 + x160 + x161 + x162 <= 1 + +x163 + x164 + x165 + x166 + x167 + x168 <= 1 + +x169 + x170 + x171 + x172 + x173 + x174 <= 1 + +x175 + x176 + x177 <= 1 + +x178 + x179 + x180 + x181 + x182 + x183 <= 1 + +x184 + x185 + x186 + x187 + x188 + x189 <= 1 + +x190 + x191 + x192 + x193 + x194 + x195 <= 1 + +x196 + x197 + x198 + x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x208 + x209 + x210 + x211 + x212 + x213 <= 1 + +x215 + x216 + x217 + x218 + x219 <= 1 + +x220 + x221 + x222 + x223 + x224 + x225 <= 1 + +x226 + x227 + x228 + x229 + x230 + x231 <= 1 + +x232 + x233 + x234 + x235 + x236 + x237 <= 1 + +x238 + x239 + x240 + x241 + x242 + x243 <= 1 + +x244 + x245 + x246 + x247 + x248 + x249 <= 1 + +x250 + x251 + x252 + x253 + x254 + x255 <= 1 + +x256 + x257 + x258 + x259 + x260 + x261 <= 1 + +x262 + x263 + x264 + x265 + x266 + x267 <= 1 + +x268 + x269 + x270 + x271 + x272 + x273 <= 1 + +x274 + x275 + x276 + x277 + x278 + x279 <= 1 + +x280 + x281 + x282 + x283 + x284 <= 1 + +x286 + x287 + x288 + x289 <= 1 + +x290 + x291 + x292 + x293 + x294 <= 1 + +x295 + x296 + x297 + x298 + x299 + x300 <= 1 + +x301 + x302 + x303 + x304 + x305 + x306 <= 1 + +x307 + x308 + x309 + x310 + x311 + x312 <= 1 + +x313 + x314 + x315 + x316 <= 1 + +x317 + x318 + x319 + x320 <= 1 + +x321 + x322 <= 1 + +x325 + x326 + x327 + x328 + x329 + x330 <= 1 + +x331 + x332 + x333 + x334 + x335 + x336 <= 1 + +x337 + x338 + x339 + x340 + x341 + x342 <= 1 + +x343 + x344 + x345 + x346 + x347 + x348 <= 1 + +x350 + x351 + x352 + x353 + x354 + x355 <= 1 + +x356 + x357 + x358 + x359 + x360 + x361 <= 1 + +x362 + x363 + x364 + x365 + x366 + x367 <= 1 + +x368 + x369 + x370 + x371 + x372 + x373 <= 1 + +x374 + x375 + x376 + x377 + x378 + x379 <= 1 + +x381 + x382 + x383 <= 1 + + <= 1 + +x387 + x388 + x389 + x390 + x391 + x392 <= 1 + +x393 + x394 + x395 + x396 + x397 + x398 <= 1 + +x399 + x400 + x401 + x402 + x403 + x404 <= 1 + +x406 + x407 + x408 + x409 + x410 + x411 <= 1 + +x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 + x422 + x423 <= 1 + +x424 + x425 + x426 + x427 + x428 + x429 <= 1 + +x430 + x431 + x432 + x433 + x434 + x435 <= 1 + +x436 + x437 + x438 + x439 + x440 + x441 <= 1 + +x442 + x443 + x444 + x445 <= 1 + +x447 + x448 + x449 <= 1 + +x451 + x452 + x453 + x454 + x455 + x456 <= 1 + +x457 + x458 + x459 + x460 + x461 + x462 <= 1 + +x463 + x464 + x465 + x466 + x467 + x468 <= 1 + +x471 + x472 + x473 + x474 + x475 + x476 <= 1 + +x477 + x478 + x479 <= 1 + +x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x492 + x493 + x494 + x495 + x496 + x497 <= 1 + +x498 + x499 + x500 + x501 + x502 + x503 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 x503 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0013.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0013.lp new file mode 100755 index 000000000..b1c66505e --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0013.lp @@ -0,0 +1,1096 @@ +max + +719.895x0 + 923.047x1 + 869.499x2 + 863.733x3 + 847.622x4 + 847.466x5 + 1790.51x6 + 2075.04x7 + 1978.58x8 + 1877.97x9 + +1877.77x10 + 1820.54x11 + 850.36x12 + 932.075x13 + 863.092x14 + 814.873x15 + 789.22x16 + 788.598x17 + 663.62x18 + 664.31x19 + +621.786x20 + 598.787x21 + 568.438x22 + 547.063x23 + 1902.15x24 + 2212.74x25 + 2141.97x26 + 2116.21x27 + 2100.75x28 + 2099.17x29 + +1542.73x30 + 1634.68x31 + 1586.79x32 + 1530.87x33 + 1500.04x34 + 1482.76x35 + 767.008x36 + 905.632x37 + 889.217x38 + 783.232x39 + +762.646x40 + 754.307x41 + 696.899x42 + 738.706x43 + 652.906x44 + 649.984x45 + 637.595x46 + 609.768x47 + 143.033x48 + 155.995x49 + +874.213x50 + 1157.45x51 + 1108.13x52 + 1094.58x53 + 1069.64x54 + 1060.01x55 + 326.272x56 + 464.028x57 + 445.725x58 + 349.586x59 + +348.803x60 + 321.822x61 + 793.898x62 + 838.075x63 + 827.414x64 + 812.124x65 + 775.022x66 + 724.081x67 + 963.528x68 + 1300.09x69 + +1217.7x70 + 1147.44x71 + 1138.03x72 + 1084.28x73 + 1349.45x74 + 1445.18x75 + 1434.01x76 + 1416.69x77 + 1403.6x78 + 1358.56x79 + +102.488x80 + 350.385x81 + 383.814x82 + 355.136x83 + 346.791x84 + 319.794x85 + 591.293x86 + 601.949x87 + 548.806x88 + 454x89 + +451.95x90 + 450.862x91 + 784.482x92 + 830.017x93 + 801.513x94 + 744.062x95 + 716.153x96 + 708.773x97 + 89.2013x98 + 581.342x99 + +721.814x100 + 688.939x101 + 679.984x102 + 656.161x103 + 652.632x104 + 436.581x105 + 496.763x106 + 479.531x107 + 469.269x108 + 382.07x109 + +372.727x110 + 421.303x111 + 470.101x112 + 447.21x113 + 445.313x114 + 421.341x115 + 314.625x116 + 108.459x117 + 1068.98x118 + 1133.52x119 + +1131.17x120 + 1105.6x121 + 1092.93x122 + 1087.93x123 + 823.821x124 + 921.055x125 + 883.626x126 + 854.649x127 + 843.349x128 + 832.354x129 + +364.155x130 + 520.163x131 + 508.352x132 + 487.572x133 + 435.655x134 + 334.638x135 + 401.215x136 + 443.301x137 + 388.215x138 + 373.117x139 + +287.786x140 + 259.212x141 + 1134.27x142 + 1521.59x143 + 1243.44x144 + 1214.68x145 + 1199.87x146 + 1195.72x147 + 50.0749x148 + 139.264x149 + +472.991x150 + 621.46x151 + 604.157x152 + 583.153x153 + 567.621x154 + 530.613x155 + 191.792x156 + 284.496x157 + 242.534x158 + 1827.51x159 + +2059.58x160 + 2037.33x161 + 2018.26x162 + 2011.55x163 + 1976.71x164 + 292.295x165 + 300.121x166 + 274.428x167 + 259.199x168 + 245.437x169 + +620.527x170 + 714.848x171 + 706.029x172 + 651.337x173 + 639.438x174 + 606.237x175 + 1307.1x176 + 1447.88x177 + 1422.72x178 + 1406.15x179 + +1395.86x180 + 1388.23x181 + 21.6758x182 + 729.776x183 + 795.794x184 + 768.77x185 + 768.209x186 + 765.912x187 + 699.615x188 + 177.854x189 + +253.202x190 + 118.061x191 + 416.564x192 + 546.945x193 + 527.252x194 + 520.318x195 + 490.78x196 + 485.484x197 + 892.855x198 + 1192.36x199 + +1144.4x200 + 1093.08x201 + 1053.28x202 + 1035.9x203 + 140.996x204 + 230.149x205 + 227.815x206 + 221.555x207 + 218.96x208 + 188.912x209 + +371.923x210 + 448.159x211 + 431.904x212 + 429.223x213 + 426.969x214 + 364.313x215 + 867.922x216 + 1187.25x217 + 1174.18x218 + 1025.17x219 + +1005.6x220 + 1002.83x221 + 266.708x222 + 304.328x223 + 274.941x224 + 271.864x225 + 80.985x226 + 1190.29x227 + 1129.38x228 + 1098.91x229 + +1088.57x230 + 1036.96x231 + 1031.68x232 + 335.365x233 + 489.595x234 + 458.044x235 + 65.2368x236 + 50.3127x237 + 1170.03x238 + 1353.71x239 + +1243.25x240 + 1194.32x241 + 1186.23x242 + 1156.56x243 + 948.974x244 + 1247.04x245 + 1195.34x246 + 1171.23x247 + 1165.4x248 + 1137.16x249 + +513.94x250 + 678.984x251 + 665.018x252 + 629.684x253 + 625.937x254 + 609.277x255 + 493.543x256 + 551.328x257 + 509.443x258 + 509.08x259 + +433.441x260 + 414.861x261 + 129.367x262 + 154.215x263 + 74.7966x264 + 369.459x265 + 537.436x266 + 532.093x267 + 473.376x268 + 435.215x269 + +420.242x270 + 396.194x271 + 553.472x272 + 509.382x273 + 449.32x274 + 411.573x275 + 360.056x276 + 1460.56x277 + 1686.75x278 + 1680.4x279 + +1634.14x280 + 1583.19x281 + 1547.33x282 + 129.369x283 + 338.356x284 + 397.506x285 + 333.415x286 + 322.805x287 + 231.718x288 + 214.16x289 + +620.678x290 + 672.799x291 + 665.358x292 + 656.988x293 + 647.345x294 + 622.087x295 + 195.726x296 + 149.741x297 + 131.52x298 + 442.58x299 + +484.554x300 + 475.35x301 + 474.782x302 + 432.064x303 + 416.223x304 + 866.521x305 + 826.47x306 + 760.964x307 + 741.923x308 + 717.654x309 + +715.27x310 + 325.693x311 + 382.507x312 + 327.651x313 + 251.619x314 + 903.62x315 + 871.592x316 + 866.891x317 + 815.061x318 + 801.604x319 + +786.549x320 + 2243.46x321 + 2655.21x322 + 2500.86x323 + 2417.89x324 + 2396.49x325 + 2369.02x326 + 271.254x327 + 257.508x328 + 196.644x329 + +1001.5x330 + 1191.98x331 + 1129.72x332 + 1062.76x333 + 1053.88x334 + 1016.7x335 + 109.015x336 + 183.475x337 + 230.463x338 + 102.258x339 + +51.7399x340 + 57.1718x341 + 707.177x342 + 855.634x343 + 769.383x344 + 761.181x345 + 757.834x346 + 745.501x347 + 992.646x348 + 1156.36x349 + +1114.92x350 + 1082.73x351 + 1051.95x352 + 1035.74x353 + 388.057x354 + 514.838x355 + 463.843x356 + 444.802x357 + 340.728x358 + 302.208x359 + +229.721x360 + 226.555x361 + 200.905x362 + 180.961x363 + 74.1535x364 + 102.487x365 + 136.085x366 + 1353.26x367 + 1661.25x368 + 1605x369 + +1597.66x370 + 1585.63x371 + 1558.95x372 + 2750.54x373 + 2938.96x374 + 2924.36x375 + 2912.65x376 + 2838.15x377 + 2829.53x378 + 38.7741x379 + +81.2701x380 + 64.3393x381 + 122.447x382 + 138.851x383 + 101.633x384 + 2350.21x385 + 2502.6x386 + 2486.13x387 + 2449.67x388 + 2400.2x389 + +2394.98x390 + 347.158x391 + 438.399x392 + 428.285x393 + 340.22x394 + 313.202x395 + 118.838x396 + 89.4878x397 + 1378.3x398 + 1666.1x399 + +1501.17x400 + 1500.28x401 + 1489.53x402 + 1484.75x403 + 2077.39x404 + 2301.2x405 + 2298.32x406 + 2101.18x407 + 2080.03x408 + 2052.98x409 + +665.243x410 + 738.222x411 + 713.646x412 + 706.135x413 + 626.615x414 + 625.483x415 + 2149.07x416 + 2580.91x417 + 2548.03x418 + 2515.71x419 + +2502.41x420 + 2489.38x421 + 428.794x422 + 522.064x423 + 498.791x424 + 496.444x425 + 493.546x426 + 449.124x427 + 976.439x428 + 1308.27x429 + +1281.81x430 + 1253.98x431 + 1207.25x432 + 1183.41x433 + 1400.75x434 + 1573.89x435 + 1535.79x436 + 1517.42x437 + 1500.25x438 + 1471.9x439 + +596.92x440 + 586.08x441 + 542.223x442 + 537.222x443 + 527.955x444 + 511.856x445 + 387.603x446 + 497.516x447 + 447.822x448 + 419.298x449 + +382.846x450 + 377.231x451 + 69.3472x452 + 947.403x453 + 1064.69x454 + 1044.55x455 + 993.857x456 + 986.322x457 + 977.348x458 + 809.5x459 + +1066.75x460 + 932.895x461 + 929.293x462 + 925.021x463 + 903.552x464 + 1670.08x465 + 2080.79x466 + 2017.56x467 + 1980.46x468 + 1897.17x469 + +1892.41x470 + 63.6513x471 + 112.074x472 + 1000.61x473 + 1336.94x474 + 1313.55x475 + 1281.47x476 + 1194.24x477 + 1097.4x478 + 853.596x479 + +1021.18x480 + 993.268x481 + 945.893x482 + 919.156x483 + 918.848x484 + 69.0083x485 + 263.955x486 + 328.341x487 + 298.94x488 + 154.497x489 + +372.334x490 + 357.357x491 + 348.005x492 + 311.908x493 + 295.566x494 + 240.858x495 + 1846.04x496 + 2498.99x497 + 2406.54x498 + 2344.56x499 + +2323x500 + 2299.68x501 + +st + +x50 + x53 + x123 + x218 + x219 + x220 + x271 + x272 + x273 + x293 ++ x348 + x373 <= 1 + +x37 + x53 + x62 + x123 + x142 + x147 + x220 + x267 + x274 + x293 ++ x322 + x373 + x376 + x458 + x460 + x497 <= 1 + +x24 + x30 + x37 + x38 + x39 + x40 + x41 + x62 + x63 + x65 ++ x67 + x82 + x123 + x131 + x132 + x134 + x143 + x144 + x145 + x146 ++ x147 + x214 + x218 + x219 + x257 + x266 + x272 + x278 + x282 + x319 ++ x326 + x331 + x333 + x344 + x373 + x374 + x378 + x388 + x390 + x400 ++ x409 + x417 + x418 + x421 + x458 + x475 + x497 + x501 <= 1 + +x8 + x24 + x36 + x39 + x40 + x41 + x62 + x63 + x65 + x67 ++ x82 + x123 + x132 + x142 + x144 + x146 + x147 + x214 + x229 + x292 ++ x356 + x373 + x374 + x378 + x388 + x390 + x400 + x418 + x421 + x453 ++ x458 + x497 + x500 <= 1 + +x8 + x24 + x33 + x34 + x37 + x39 + x40 + x63 + x65 + x76 ++ x99 + x100 + x101 + x104 + x132 + x144 + x146 + x147 + x164 + x178 ++ x193 + x207 + x278 + x322 + x326 + x333 + x372 + x374 + x378 + x388 ++ x389 + x390 + x418 + x419 + x420 + x453 + x458 + x500 + x501 <= 1 + +x6 + x24 + x33 + x34 + x39 + x99 + x100 + x101 + x104 + x133 ++ x142 + x144 + x145 + x146 + x161 + x170 + x193 + x206 + x207 + x322 ++ x326 + x333 + x372 + x374 + x378 + x389 + x390 + x417 + x418 + x419 ++ x420 + x421 + x453 + x457 + x458 + x478 + x487 + x500 + x501 <= 1 + +x6 + x13 + x33 + x34 + x99 + x100 + x101 + x104 + x144 + x154 ++ x161 + x163 + x170 + x193 + x195 + x197 + x326 + x351 + x371 + x372 ++ x389 + x409 + x417 + x418 + x419 + x420 + x421 + x487 + x500 <= 1 + +x13 + x33 + x34 + x85 + x103 + x152 + x153 + x154 + x160 + x161 ++ x163 + x170 + x175 + x192 + x193 + x194 + x195 + x197 + x209 + x211 ++ x213 + x224 + x225 + x263 + x317 + x320 + x324 + x325 + x326 + x351 ++ x369 + x370 + x371 + x372 + x389 + x409 + x418 + x420 + x421 + x486 ++ x487 + x488 <= 1 + +x6 + x31 + x34 + x35 + x83 + x84 + x85 + x103 + x150 + x152 ++ x153 + x154 + x160 + x163 + x170 + x175 + x192 + x194 + x197 + x209 ++ x213 + x222 + x223 + x224 + x225 + x320 + x324 + x325 + x339 + x351 ++ x372 + x389 + x488 + x495 + x498 + x499 <= 1 + +x81 + x82 + x85 + x150 + x152 + x153 + x154 + x163 + x170 + x175 ++ x192 + x194 + x197 + x222 + x223 + x321 + x324 + x325 + x326 + x337 ++ x339 + x495 + x498 + x499 <= 1 + +x37 + x38 + x50 + x51 + x53 + x62 + x118 + x123 + x218 + x219 ++ x220 + x265 + x268 + x270 + x271 + x272 + x273 + x274 + x275 + x276 ++ x293 + x333 + x348 + x358 + x373 + x375 + x376 + x377 + x458 + x461 ++ x474 + x475 + x476 + x497 + x501 <= 1 + +x8 + x37 + x38 + x53 + x62 + x73 + x118 + x123 + x142 + x147 ++ x218 + x219 + x220 + x227 + x243 + x265 + x266 + x267 + x268 + x270 ++ x271 + x272 + x273 + x274 + x275 + x276 + x290 + x293 + x319 + x333 ++ x373 + x376 + x400 + x436 + x458 + x460 + x461 + x462 + x463 + x475 ++ x497 + x501 <= 1 + +x8 + x29 + x36 + x37 + x38 + x40 + x41 + x62 + x63 + x65 ++ x100 + x104 + x123 + x131 + x132 + x134 + x142 + x145 + x146 + x147 ++ x178 + x218 + x219 + x227 + x266 + x272 + x290 + x292 + x293 + x319 ++ x331 + x333 + x344 + x373 + x388 + x390 + x400 + x418 + x436 + x451 ++ x458 + x475 + x497 + x500 + x501 <= 1 + +x8 + x15 + x30 + x36 + x37 + x38 + x39 + x40 + x41 + x62 ++ x63 + x65 + x67 + x69 + x82 + x100 + x101 + x104 + x122 + x130 ++ x131 + x132 + x133 + x134 + x142 + x143 + x144 + x146 + x147 + x164 ++ x178 + x214 + x218 + x257 + x266 + x278 + x282 + x290 + x292 + x293 ++ x319 + x322 + x326 + x356 + x373 + x374 + x378 + x388 + x390 + x417 ++ x418 + x419 + x420 + x421 + x436 + x438 + x458 + x497 + x500 + x501 + <= 1 + +x8 + x16 + x30 + x33 + x37 + x38 + x39 + x40 + x63 + x65 ++ x69 + x101 + x104 + x130 + x133 + x142 + x144 + x145 + x146 + x147 ++ x164 + x178 + x205 + x207 + x218 + x282 + x292 + x322 + x326 + x329 ++ x330 + x333 + x356 + x374 + x378 + x388 + x390 + x417 + x418 + x419 ++ x420 + x421 + x438 + x453 + x470 + x471 + x500 + x501 <= 1 + +x6 + x16 + x30 + x31 + x33 + x34 + x55 + x99 + x100 + x101 ++ x104 + x133 + x142 + x144 + x145 + x146 + x147 + x161 + x162 + x164 ++ x179 + x193 + x205 + x206 + x208 + x218 + x264 + x282 + x321 + x322 ++ x323 + x326 + x327 + x329 + x333 + x351 + x374 + x389 + x390 + x416 ++ x417 + x418 + x419 + x420 + x421 + x438 + x457 + x470 + x497 + x500 + <= 1 + +x6 + x13 + x30 + x31 + x33 + x34 + x35 + x54 + x91 + x99 ++ x100 + x101 + x103 + x120 + x144 + x145 + x146 + x154 + x161 + x162 ++ x177 + x179 + x183 + x193 + x196 + x197 + x205 + x208 + x210 + x211 ++ x213 + x262 + x264 + x286 + x295 + x307 + x315 + x317 + x320 + x321 ++ x326 + x327 + x328 + x329 + x351 + x372 + x378 + x389 + x407 + x409 ++ x417 + x418 + x419 + x420 + x421 + x500 <= 1 + +x6 + x32 + x33 + x34 + x45 + x99 + x100 + x101 + x103 + x120 ++ x144 + x145 + x146 + x152 + x154 + x160 + x161 + x163 + x170 + x173 ++ x175 + x177 + x179 + x193 + x194 + x195 + x196 + x197 + x205 + x208 ++ x209 + x211 + x213 + x215 + x224 + x262 + x263 + x315 + x317 + x320 ++ x321 + x323 + x324 + x325 + x326 + x327 + x328 + x351 + x369 + x370 ++ x371 + x372 + x373 + x389 + x404 + x407 + x418 + x420 + x421 + x468 ++ x486 + x487 + x488 + x500 <= 1 + +x6 + x29 + x31 + x34 + x81 + x83 + x84 + x85 + x144 + x145 ++ x150 + x151 + x152 + x153 + x154 + x160 + x163 + x175 + x192 + x194 ++ x209 + x222 + x223 + x224 + x225 + x240 + x320 + x321 + x324 + x325 ++ x326 + x338 + x339 + x373 + x385 + x389 + x470 + x494 + x495 <= 1 + +x6 + x81 + x84 + x85 + x138 + x150 + x152 + x153 + x163 + x192 ++ x194 + x197 + x222 + x223 + x224 + x225 + x240 + x321 + x324 + x325 ++ x326 + x337 + x338 + x498 + x499 <= 1 + +x29 + x37 + x40 + x50 + x118 + x123 + x134 + x216 + x218 + x219 ++ x220 + x265 + x266 + x267 + x268 + x270 + x271 + x275 + x276 + x293 ++ x319 + x358 + x373 + x375 + x376 + x377 + x460 + x461 + x462 + x463 ++ x464 + x474 <= 1 + +x21 + x29 + x30 + x36 + x37 + x40 + x49 + x53 + x118 + x123 ++ x134 + x142 + x146 + x147 + x218 + x219 + x220 + x255 + x265 + x266 ++ x267 + x268 + x270 + x271 + x272 + x273 + x274 + x275 + x276 + x293 ++ x308 + x319 + x330 + x331 + x354 + x356 + x358 + x373 + x374 + x375 ++ x376 + x377 + x378 + x390 + x401 + x419 + x421 + x436 + x449 + x460 ++ x461 + x463 + x464 + x497 + x499 <= 1 + +x8 + x15 + x29 + x40 + x41 + x53 + x100 + x123 + x130 + x131 ++ x132 + x134 + x142 + x145 + x146 + x147 + x218 + x219 + x266 + x267 ++ x268 + x273 + x274 + x275 + x290 + x293 + x330 + x331 + x333 + x344 ++ x354 + x356 + x358 + x367 + x373 + x375 + x376 + x378 + x390 + x418 ++ x419 + x436 + x451 + x452 + x460 + x461 + x463 + x500 <= 1 + +x8 + x15 + x29 + x30 + x36 + x37 + x39 + x40 + x41 + x82 ++ x110 + x122 + x123 + x130 + x131 + x142 + x145 + x146 + x147 + x159 ++ x178 + x251 + x253 + x267 + x273 + x278 + x281 + x282 + x292 + x318 ++ x330 + x331 + x332 + x333 + x335 + x354 + x356 + x357 + x367 + x373 ++ x374 + x375 + x376 + x378 + x388 + x390 + x403 + x418 + x419 + x436 ++ x438 + x452 + x457 + x458 + x461 + x500 + x501 <= 1 + +x8 + x20 + x21 + x34 + x37 + x39 + x40 + x63 + x64 + x65 ++ x89 + x101 + x131 + x133 + x142 + x145 + x146 + x147 + x159 + x164 ++ x178 + x179 + x206 + x207 + x218 + x236 + x242 + x250 + x251 + x253 ++ x278 + x281 + x282 + x292 + x318 + x322 + x330 + x333 + x334 + x355 ++ x356 + x373 + x374 + x378 + x387 + x388 + x390 + x401 + x417 + x418 ++ x419 + x421 + x426 + x436 + x438 + x453 + x457 + x458 + x500 + x501 + <= 1 + +x6 + x9 + x14 + x16 + x17 + x19 + x20 + x22 + x30 + x31 ++ x32 + x33 + x34 + x35 + x63 + x64 + x65 + x73 + x77 + x99 ++ x101 + x104 + x120 + x142 + x144 + x145 + x146 + x160 + x161 + x162 ++ x163 + x172 + x175 + x179 + x193 + x196 + x206 + x215 + x241 + x282 ++ x292 + x323 + x333 + x373 + x374 + x375 + x378 + x386 + x387 + x388 ++ x389 + x390 + x416 + x417 + x418 + x419 + x420 + x421 + x438 + x457 ++ x458 + x497 + x500 <= 1 + +x6 + x8 + x18 + x31 + x33 + x34 + x45 + x54 + x63 + x73 ++ x77 + x91 + x99 + x100 + x103 + x120 + x144 + x145 + x146 + x160 ++ x161 + x162 + x163 + x171 + x172 + x174 + x175 + x177 + x195 + x196 ++ x210 + x211 + x213 + x215 + x232 + x241 + x307 + x310 + x315 + x317 ++ x320 + x321 + x323 + x324 + x325 + x326 + x351 + x371 + x372 + x373 ++ x374 + x378 + x388 + x402 + x404 + x407 + x409 + x416 + x417 + x418 ++ x419 + x420 + x421 <= 1 + +x5 + x6 + x31 + x32 + x33 + x34 + x45 + x91 + x99 + x103 ++ x115 + x120 + x144 + x145 + x146 + x160 + x161 + x162 + x163 + x171 ++ x173 + x174 + x175 + x179 + x192 + x195 + x196 + x208 + x210 + x211 ++ x215 + x219 + x230 + x232 + x247 + x305 + x310 + x317 + x320 + x321 ++ x323 + x324 + x325 + x326 + x369 + x370 + x371 + x372 + x373 + x374 ++ x378 + x389 + x404 + x407 + x409 + x417 + x418 + x419 + x420 + x421 ++ x465 + x468 + x476 + x490 + x491 + x492 + x493 + x494 <= 1 + +x6 + x29 + x31 + x32 + x34 + x35 + x66 + x81 + x83 + x84 ++ x120 + x144 + x145 + x146 + x150 + x151 + x152 + x153 + x154 + x192 ++ x195 + x196 + x210 + x211 + x215 + x240 + x245 + x247 + x317 + x320 ++ x321 + x323 + x324 + x325 + x326 + x369 + x370 + x372 + x373 + x374 ++ x377 + x378 + x385 + x387 + x388 + x389 + x404 + x407 + x408 + x409 ++ x465 + x468 + x472 + x490 + x491 + x492 + x493 + x494 + x495 <= 1 + +x8 + x81 + x84 + x150 + x152 + x153 + x192 + x194 + x222 + x225 ++ x321 + x324 + x325 + x326 + x337 + x338 + x419 + x451 + x498 + x499 + <= 1 + +x8 + x29 + x36 + x177 + x182 + x216 + x218 + x219 + x220 + x238 ++ x265 + x270 + x271 + x275 + x276 + x321 + x355 + x358 + x359 + x374 ++ x375 + x376 + x377 + x417 + x421 + x460 + x461 + x462 + x463 + x464 + <= 1 + +x8 + x12 + x15 + x21 + x29 + x30 + x36 + x41 + x48 + x49 ++ x60 + x107 + x108 + x109 + x142 + x159 + x193 + x216 + x217 + x218 ++ x219 + x220 + x235 + x255 + x268 + x269 + x319 + x321 + x331 + x354 ++ x355 + x357 + x358 + x359 + x373 + x374 + x375 + x376 + x377 + x378 ++ x401 + x402 + x403 + x417 + x419 + x421 + x449 + x459 + x460 + x461 ++ x462 + x463 + x497 + x499 <= 1 + +x8 + x12 + x13 + x15 + x21 + x29 + x36 + x38 + x48 + x70 ++ x73 + x105 + x107 + x108 + x109 + x110 + x122 + x123 + x142 + x145 ++ x159 + x160 + x162 + x176 + x178 + x181 + x216 + x220 + x235 + x238 ++ x241 + x242 + x250 + x255 + x256 + x257 + x258 + x260 + x261 + x269 ++ x330 + x331 + x332 + x333 + x334 + x335 + x354 + x355 + x357 + x358 ++ x359 + x364 + x365 + x373 + x375 + x376 + x377 + x378 + x388 + x401 ++ x402 + x403 + x407 + x417 + x418 + x420 + x421 + x436 + x437 + x438 ++ x449 + x459 + x460 + x461 + x462 + x463 + x496 + x497 + x499 <= 1 + +x8 + x12 + x15 + x21 + x29 + x31 + x33 + x36 + x40 + x69 ++ x71 + x73 + x89 + x109 + x110 + x119 + x122 + x123 + x125 + x133 ++ x142 + x145 + x147 + x159 + x160 + x162 + x163 + x178 + x179 + x181 ++ x199 + x218 + x238 + x242 + x250 + x251 + x253 + x254 + x255 + x261 ++ x267 + x269 + x278 + x281 + x292 + x313 + x318 + x322 + x323 + x330 ++ x331 + x332 + x333 + x334 + x335 + x355 + x357 + x373 + x374 + x375 ++ x376 + x377 + x378 + x388 + x390 + x398 + x401 + x402 + x403 + x416 ++ x417 + x418 + x419 + x420 + x421 + x426 + x436 + x437 + x438 + x460 ++ x461 + x462 + x463 + x497 + x499 + x500 <= 1 + +x8 + x9 + x14 + x17 + x18 + x19 + x20 + x21 + x31 + x32 ++ x33 + x34 + x71 + x72 + x73 + x89 + x125 + x142 + x143 + x147 ++ x159 + x160 + x161 + x162 + x163 + x164 + x177 + x199 + x232 + x250 ++ x251 + x253 + x254 + x258 + x278 + x307 + x308 + x313 + x315 + x316 ++ x318 + x322 + x323 + x324 + x330 + x331 + x332 + x333 + x334 + x373 ++ x375 + x377 + x378 + x386 + x387 + x388 + x389 + x390 + x398 + x401 ++ x402 + x403 + x416 + x417 + x418 + x419 + x420 + x421 + x434 + x457 ++ x460 + x497 + x499 <= 1 + +x6 + x8 + x9 + x13 + x14 + x16 + x17 + x18 + x19 + x20 ++ x25 + x30 + x31 + x32 + x33 + x34 + x35 + x64 + x65 + x72 ++ x73 + x104 + x118 + x120 + x121 + x128 + x159 + x160 + x161 + x162 ++ x163 + x164 + x171 + x172 + x174 + x177 + x178 + x179 + x232 + x239 ++ x240 + x241 + x251 + x253 + x278 + x282 + x305 + x307 + x308 + x310 ++ x315 + x316 + x318 + x323 + x324 + x326 + x347 + x351 + x373 + x375 ++ x377 + x378 + x385 + x386 + x387 + x388 + x389 + x390 + x401 + x402 ++ x403 + x404 + x407 + x409 + x416 + x417 + x418 + x419 + x420 + x421 ++ x438 + x454 + x457 + x458 + x467 + x468 + x497 + x498 + x499 + x500 + <= 1 + +x6 + x8 + x9 + x16 + x18 + x19 + x20 + x22 + x26 + x30 ++ x31 + x32 + x33 + x34 + x45 + x63 + x64 + x65 + x73 + x77 ++ x86 + x87 + x91 + x120 + x144 + x145 + x146 + x159 + x160 + x161 ++ x162 + x171 + x172 + x174 + x175 + x177 + x179 + x213 + x215 + x232 ++ x241 + x251 + x280 + x282 + x292 + x305 + x307 + x308 + x310 + x315 ++ x323 + x324 + x325 + x326 + x351 + x372 + x375 + x387 + x388 + x389 ++ x390 + x401 + x402 + x403 + x404 + x407 + x409 + x416 + x417 + x418 ++ x419 + x420 + x421 + x435 + x436 + x438 + x467 + x499 <= 1 + +x2 + x5 + x6 + x7 + x8 + x11 + x26 + x28 + x42 + x45 ++ x47 + x54 + x72 + x115 + x116 + x120 + x151 + x160 + x161 + x173 ++ x174 + x179 + x195 + x210 + x212 + x214 + x219 + x230 + x232 + x241 ++ x288 + x305 + x310 + x317 + x320 + x321 + x323 + x324 + x325 + x326 ++ x369 + x370 + x371 + x372 + x373 + x378 + x386 + x389 + x404 + x407 ++ x409 + x465 + x468 + x490 + x491 + x492 + x493 + x494 + x497 <= 1 + +x2 + x5 + x11 + x22 + x26 + x28 + x29 + x31 + x32 + x35 ++ x66 + x72 + x83 + x112 + x114 + x115 + x116 + x151 + x153 + x173 ++ x179 + x192 + x195 + x196 + x201 + x212 + x230 + x238 + x239 + x240 ++ x241 + x243 + x245 + x246 + x247 + x248 + x287 + x317 + x320 + x321 ++ x323 + x324 + x325 + x326 + x342 + x347 + x369 + x370 + x371 + x372 ++ x373 + x377 + x378 + x385 + x386 + x387 + x388 + x389 + x401 + x404 ++ x406 + x407 + x408 + x409 + x417 + x429 + x465 + x468 + x490 + x492 ++ x493 + x495 + x497 + x498 <= 1 + +x7 + x11 + x26 + x27 + x28 + x29 + x31 + x35 + x43 + x72 ++ x111 + x112 + x114 + x115 + x116 + x137 + x139 + x164 + x196 + x200 ++ x201 + x202 + x239 + x242 + x247 + x253 + x287 + x317 + x323 + x324 ++ x325 + x326 + x342 + x344 + x347 + x353 + x369 + x370 + x372 + x373 ++ x374 + x377 + x378 + x385 + x387 + x407 + x422 + x428 + x465 + x468 ++ x492 + x496 + x497 + x498 <= 1 + +x12 + x29 + x36 + x38 + x41 + x60 + x105 + x107 + x108 + x110 ++ x176 + x216 + x217 + x218 + x219 + x220 + x238 + x255 + x260 + x265 ++ x268 + x269 + x270 + x276 + x319 + x321 + x336 + x355 + x359 + x402 ++ x416 + x436 + x459 + x460 + x461 + x462 + x463 + x464 + x484 <= 1 + +x15 + x29 + x36 + x38 + x41 + x105 + x107 + x108 + x109 + x110 ++ x176 + x216 + x217 + x219 + x220 + x233 + x235 + x238 + x255 + x256 ++ x257 + x260 + x265 + x269 + x354 + x355 + x357 + x359 + x364 + x373 ++ x375 + x376 + x377 + x378 + x402 + x403 + x416 + x421 + x436 + x449 ++ x459 + x460 + x461 + x462 + x463 + x464 + x496 + x499 <= 1 + +x10 + x11 + x12 + x13 + x14 + x15 + x56 + x57 + x61 + x68 ++ x69 + x70 + x71 + x72 + x73 + x106 + x108 + x109 + x110 + x119 ++ x121 + x122 + x125 + x142 + x159 + x176 + x178 + x181 + x235 + x238 ++ x242 + x250 + x256 + x257 + x258 + x259 + x260 + x261 + x269 + x322 ++ x325 + x330 + x332 + x335 + x357 + x365 + x375 + x377 + x386 + x388 ++ x398 + x401 + x402 + x403 + x407 + x416 + x417 + x418 + x419 + x421 ++ x434 + x436 + x438 + x446 + x448 + x449 + x451 + x462 + x463 <= 1 + +x8 + x10 + x12 + x13 + x14 + x17 + x19 + x21 + x23 + x28 ++ x33 + x57 + x68 + x69 + x70 + x71 + x72 + x73 + x89 + x119 ++ x120 + x121 + x122 + x123 + x125 + x142 + x147 + x159 + x176 + x177 ++ x178 + x179 + x180 + x181 + x199 + x203 + x238 + x250 + x254 + x256 ++ x257 + x258 + x259 + x260 + x261 + x278 + x281 + x300 + x309 + x318 ++ x322 + x323 + x330 + x331 + x332 + x334 + x335 + x357 + x368 + x373 ++ x375 + x376 + x377 + x378 + x385 + x386 + x387 + x388 + x390 + x398 ++ x401 + x402 + x403 + x404 + x407 + x416 + x417 + x418 + x419 + x420 ++ x421 + x434 + x436 + x438 + x446 + x447 + x448 + x449 + x461 + x462 ++ x499 <= 1 + +x12 + x13 + x14 + x16 + x17 + x19 + x21 + x23 + x57 + x58 ++ x68 + x70 + x71 + x73 + x78 + x86 + x88 + x89 + x90 + x102 ++ x103 + x106 + x118 + x119 + x120 + x121 + x122 + x123 + x125 + x142 ++ x143 + x147 + x159 + x162 + x163 + x171 + x172 + x176 + x177 + x178 ++ x179 + x180 + x181 + x199 + x203 + x251 + x253 + x254 + x256 + x258 ++ x259 + x261 + x307 + x308 + x309 + x311 + x313 + x316 + x318 + x321 ++ x322 + x323 + x324 + x330 + x331 + x332 + x334 + x335 + x368 + x371 ++ x375 + x376 + x378 + x385 + x386 + x387 + x388 + x389 + x390 + x398 ++ x401 + x402 + x403 + x416 + x417 + x419 + x420 + x421 + x434 + x436 ++ x438 + x457 + x468 + x497 + x498 + x499 + x500 + x501 <= 1 + +x6 + x7 + x8 + x9 + x13 + x14 + x16 + x17 + x18 + x19 ++ x23 + x26 + x30 + x31 + x32 + x33 + x34 + x35 + x64 + x75 ++ x86 + x87 + x88 + x89 + x90 + x102 + x104 + x106 + x118 + x119 ++ x120 + x121 + x122 + x125 + x143 + x144 + x159 + x160 + x162 + x163 ++ x164 + x170 + x171 + x172 + x174 + x176 + x177 + x178 + x179 + x180 ++ x181 + x199 + x217 + x241 + x243 + x258 + x259 + x285 + x308 + x310 ++ x311 + x312 + x316 + x322 + x323 + x324 + x325 + x326 + x331 + x332 ++ x334 + x368 + x371 + x375 + x376 + x378 + x385 + x386 + x387 + x389 ++ x390 + x401 + x403 + x404 + x407 + x409 + x416 + x417 + x418 + x419 ++ x420 + x421 + x436 + x438 + x457 + x464 + x466 + x467 + x468 + x469 ++ x470 + x497 + x498 + x499 + x500 + x501 <= 1 + +x2 + x6 + x7 + x8 + x9 + x11 + x16 + x17 + x20 + x22 ++ x25 + x26 + x30 + x31 + x32 + x33 + x34 + x35 + x42 + x45 ++ x46 + x63 + x64 + x72 + x77 + x86 + x87 + x88 + x118 + x120 ++ x121 + x122 + x143 + x144 + x145 + x146 + x159 + x160 + x161 + x162 ++ x163 + x164 + x170 + x171 + x172 + x174 + x179 + x212 + x214 + x217 ++ x232 + x239 + x240 + x241 + x243 + x251 + x253 + x280 + x305 + x307 ++ x308 + x310 + x314 + x315 + x322 + x323 + x324 + x325 + x326 + x332 ++ x334 + x371 + x375 + x378 + x385 + x386 + x387 + x388 + x389 + x390 ++ x401 + x402 + x403 + x404 + x407 + x409 + x417 + x419 + x420 + x421 ++ x436 + x438 + x439 + x454 + x457 + x491 <= 1 + +x2 + x5 + x6 + x7 + x8 + x9 + x11 + x20 + x28 + x30 ++ x31 + x32 + x33 + x34 + x35 + x42 + x45 + x46 + x47 + x72 ++ x83 + x96 + x116 + x120 + x121 + x151 + x160 + x161 + x163 + x173 ++ x179 + x195 + x196 + x201 + x210 + x212 + x214 + x217 + x227 + x230 ++ x232 + x239 + x240 + x241 + x243 + x245 + x248 + x280 + x281 + x288 ++ x305 + x306 + x308 + x310 + x321 + x323 + x324 + x325 + x326 + x332 ++ x369 + x370 + x371 + x378 + x385 + x386 + x387 + x388 + x389 + x401 ++ x404 + x407 + x409 + x457 + x464 + x465 + x467 + x468 + x490 + x491 ++ x494 + x496 + x497 + x499 <= 1 + +x6 + x7 + x8 + x11 + x22 + x26 + x27 + x28 + x29 + x47 ++ x61 + x70 + x72 + x95 + x111 + x112 + x113 + x114 + x115 + x116 ++ x136 + x139 + x151 + x162 + x164 + x173 + x200 + x201 + x202 + x229 ++ x238 + x239 + x240 + x241 + x243 + x244 + x245 + x246 + x247 + x248 ++ x253 + x284 + x287 + x288 + x317 + x320 + x323 + x324 + x325 + x326 ++ x342 + x344 + x346 + x347 + x353 + x373 + x374 + x375 + x376 + x377 ++ x378 + x385 + x386 + x387 + x389 + x404 + x405 + x406 + x407 + x408 ++ x409 + x417 + x428 + x429 + x432 + x435 + x465 + x468 + x497 + x498 + <= 1 + +x26 + x28 + x29 + x35 + x43 + x72 + x77 + x111 + x114 + x116 ++ x137 + x139 + x151 + x164 + x239 + x240 + x241 + x242 + x243 + x245 ++ x247 + x248 + x287 + x317 + x323 + x324 + x325 + x326 + x342 + x344 ++ x346 + x347 + x369 + x370 + x371 + x373 + x374 + x375 + x376 + x378 ++ x385 + x386 + x387 + x389 + x399 + x422 + x428 + x435 + x465 + x468 ++ x496 + x498 <= 1 + +x23 + x25 + x29 + x30 + x38 + x41 + x60 + x92 + x93 + x94 ++ x105 + x107 + x108 + x110 + x126 + x127 + x176 + x216 + x235 + x238 ++ x269 + x270 + x301 + x315 + x319 + x321 + x322 + x359 + x416 + x459 ++ x462 + x463 + x468 + x483 + x484 + x488 + x501 <= 1 + +x23 + x29 + x41 + x105 + x107 + x108 + x109 + x110 + x176 + x216 ++ x217 + x220 + x221 + x233 + x235 + x252 + x260 + x319 + x321 + x334 ++ x354 + x359 + x416 + x459 + x460 + x462 + x463 + x483 + x484 + x501 + <= 1 + +x10 + x11 + x12 + x13 + x14 + x56 + x57 + x61 + x68 + x106 ++ x118 + x119 + x121 + x122 + x124 + x125 + x135 + x159 + x176 + x178 ++ x180 + x181 + x216 + x235 + x242 + x250 + x252 + x254 + x256 + x257 ++ x258 + x259 + x260 + x261 + x322 + x323 + x325 + x330 + x335 + x368 ++ x375 + x377 + x379 + x386 + x388 + x390 + x398 + x401 + x402 + x416 ++ x417 + x421 + x446 + x447 + x448 + x449 + x451 + x466 + x469 + x499 ++ x501 <= 1 + +x10 + x11 + x12 + x17 + x28 + x56 + x57 + x59 + x61 + x68 ++ x69 + x70 + x71 + x72 + x73 + x78 + x79 + x103 + x106 + x118 ++ x119 + x120 + x121 + x122 + x124 + x125 + x135 + x159 + x162 + x169 ++ x176 + x177 + x178 + x180 + x181 + x221 + x228 + x252 + x254 + x256 ++ x257 + x258 + x259 + x260 + x300 + x307 + x309 + x318 + x321 + x322 ++ x323 + x324 + x334 + x368 + x375 + x376 + x377 + x385 + x386 + x387 ++ x388 + x389 + x390 + x398 + x401 + x402 + x403 + x416 + x418 + x419 ++ x434 + x436 + x438 + x446 + x447 + x448 + x469 + x470 + x498 + x499 ++ x501 <= 1 + +x12 + x14 + x16 + x17 + x23 + x26 + x31 + x32 + x34 + x35 ++ x51 + x58 + x59 + x68 + x70 + x71 + x73 + x75 + x76 + x78 ++ x79 + x87 + x88 + x90 + x96 + x102 + x103 + x106 + x118 + x119 ++ x120 + x121 + x122 + x123 + x125 + x143 + x159 + x160 + x161 + x162 ++ x163 + x164 + x176 + x177 + x178 + x179 + x180 + x181 + x188 + x199 ++ x203 + x252 + x254 + x259 + x261 + x285 + x307 + x308 + x309 + x311 ++ x312 + x313 + x314 + x318 + x321 + x322 + x323 + x324 + x326 + x330 ++ x331 + x332 + x334 + x335 + x351 + x367 + x368 + x375 + x376 + x377 ++ x378 + x382 + x383 + x385 + x386 + x387 + x388 + x389 + x390 + x398 ++ x401 + x402 + x403 + x404 + x407 + x409 + x416 + x418 + x419 + x420 ++ x421 + x425 + x434 + x436 + x438 + x457 + x464 + x466 + x467 + x468 ++ x469 + x470 + x497 + x498 + x499 + x500 + x501 <= 1 + +x5 + x6 + x7 + x8 + x9 + x14 + x16 + x18 + x19 + x23 ++ x25 + x26 + x50 + x58 + x66 + x68 + x70 + x71 + x73 + x86 ++ x87 + x88 + x90 + x102 + x106 + x117 + x119 + x143 + x159 + x160 ++ x161 + x162 + x163 + x164 + x171 + x172 + x177 + x178 + x180 + x203 ++ x223 + x243 + x285 + x308 + x309 + x311 + x312 + x314 + x322 + x323 ++ x324 + x326 + x331 + x346 + x351 + x375 + x377 + x378 + x383 + x403 ++ x404 + x407 + x416 + x417 + x418 + x419 + x420 + x421 + x425 + x438 ++ x439 + x457 + x459 + x464 + x466 + x467 + x468 + x469 + x497 + x499 ++ x500 <= 1 + +x2 + x5 + x6 + x7 + x8 + x9 + x11 + x17 + x18 + x22 ++ x25 + x26 + x32 + x33 + x35 + x46 + x47 + x50 + x70 + x73 ++ x75 + x86 + x87 + x88 + x90 + x121 + x143 + x144 + x145 + x159 ++ x160 + x161 + x162 + x163 + x164 + x170 + x171 + x172 + x174 + x202 ++ x203 + x212 + x217 + x241 + x243 + x251 + x305 + x307 + x309 + x310 ++ x314 + x322 + x323 + x324 + x325 + x326 + x331 + x332 + x346 + x370 ++ x371 + x375 + x378 + x389 + x401 + x402 + x404 + x416 + x417 + x419 ++ x420 + x421 + x425 + x430 + x439 + x459 + x464 + x467 + x496 + x497 ++ x499 <= 1 + +x0 + x2 + x5 + x6 + x7 + x8 + x9 + x10 + x11 + x20 ++ x25 + x26 + x27 + x31 + x32 + x33 + x34 + x35 + x42 + x43 ++ x45 + x46 + x47 + x50 + x51 + x52 + x53 + x69 + x74 + x75 ++ x77 + x78 + x79 + x96 + x113 + x137 + x143 + x144 + x159 + x160 ++ x161 + x162 + x163 + x164 + x174 + x200 + x201 + x202 + x203 + x212 ++ x217 + x227 + x230 + x231 + x232 + x238 + x240 + x243 + x248 + x279 ++ x280 + x281 + x305 + x306 + x310 + x322 + x324 + x325 + x326 + x332 ++ x346 + x366 + x369 + x370 + x371 + x373 + x374 + x375 + x376 + x377 ++ x378 + x385 + x386 + x387 + x388 + x389 + x399 + x402 + x404 + x406 ++ x407 + x409 + x417 + x421 + x425 + x428 + x429 + x430 + x435 + x437 ++ x439 + x459 + x464 + x465 + x467 + x468 + x470 + x496 + x497 + x499 + <= 1 + +x2 + x5 + x6 + x7 + x8 + x11 + x18 + x22 + x25 + x26 ++ x27 + x29 + x33 + x42 + x43 + x44 + x46 + x47 + x51 + x52 ++ x54 + x70 + x72 + x74 + x75 + x76 + x77 + x79 + x91 + x95 ++ x96 + x111 + x112 + x113 + x114 + x115 + x136 + x137 + x139 + x151 ++ x161 + x162 + x163 + x173 + x200 + x201 + x202 + x217 + x229 + x232 ++ x238 + x239 + x240 + x241 + x242 + x243 + x244 + x245 + x246 + x247 ++ x248 + x249 + x279 + x280 + x281 + x284 + x287 + x288 + x305 + x306 ++ x317 + x320 + x322 + x324 + x325 + x326 + x332 + x342 + x344 + x345 ++ x346 + x347 + x353 + x369 + x371 + x373 + x374 + x375 + x376 + x377 ++ x378 + x385 + x386 + x387 + x389 + x399 + x400 + x402 + x404 + x405 ++ x406 + x407 + x408 + x409 + x417 + x421 + x428 + x429 + x430 + x431 ++ x432 + x435 + x437 + x439 + x459 + x465 + x470 + x497 <= 1 + +x11 + x27 + x35 + x42 + x43 + x44 + x47 + x74 + x77 + x91 ++ x95 + x96 + x111 + x112 + x137 + x140 + x173 + x200 + x229 + x238 ++ x239 + x240 + x241 + x242 + x243 + x277 + x280 + x281 + x295 + x342 ++ x344 + x345 + x346 + x353 + x369 + x370 + x371 + x373 + x385 + x386 ++ x387 + x389 + x399 + x400 + x402 + x409 + x430 + x431 + x434 + x435 ++ x437 + x439 + x465 + x468 + x473 + x482 + x496 + x497 + x498 <= 1 + +x25 + x29 + x30 + x41 + x60 + x92 + x93 + x94 + x105 + x107 ++ x108 + x118 + x124 + x126 + x127 + x176 + x181 + x197 + x216 + x220 ++ x221 + x235 + x252 + x301 + x304 + x315 + x319 + x321 + x322 + x335 ++ x344 + x390 + x394 + x396 + x397 + x398 + x399 + x406 + x416 + x459 ++ x468 + x473 + x479 + x483 + x484 + x501 <= 1 + +x27 + x30 + x56 + x59 + x60 + x69 + x93 + x94 + x98 + x105 ++ x109 + x124 + x125 + x126 + x127 + x128 + x130 + x135 + x159 + x176 ++ x181 + x198 + x203 + x216 + x221 + x226 + x233 + x250 + x252 + x254 ++ x261 + x299 + x300 + x301 + x304 + x315 + x319 + x321 + x344 + x390 ++ x396 + x398 + x399 + x403 + x416 + x451 + x459 + x462 + x469 + x473 ++ x476 + x483 + x484 <= 1 + +x27 + x28 + x30 + x56 + x59 + x60 + x61 + x69 + x71 + x93 ++ x94 + x98 + x105 + x106 + x109 + x118 + x121 + x122 + x124 + x125 ++ x127 + x130 + x135 + x159 + x166 + x176 + x178 + x180 + x181 + x184 ++ x203 + x216 + x228 + x250 + x252 + x254 + x256 + x259 + x279 + x299 ++ x300 + x304 + x316 + x321 + x322 + x323 + x325 + x330 + x334 + x335 ++ x344 + x368 + x375 + x376 + x377 + x385 + x386 + x387 + x388 + x390 ++ x398 + x399 + x401 + x403 + x416 + x417 + x434 + x438 + x446 + x447 ++ x448 + x451 + x466 + x469 + x473 + x498 + x499 + x500 + x501 <= 1 + +x9 + x11 + x12 + x17 + x28 + x30 + x56 + x57 + x58 + x59 ++ x61 + x68 + x69 + x70 + x71 + x72 + x73 + x76 + x78 + x79 ++ x102 + x118 + x119 + x121 + x122 + x125 + x135 + x165 + x166 + x169 ++ x176 + x177 + x178 + x180 + x181 + x184 + x188 + x203 + x216 + x228 ++ x244 + x279 + x286 + x299 + x300 + x309 + x316 + x321 + x322 + x323 ++ x325 + x334 + x335 + x368 + x375 + x376 + x377 + x384 + x385 + x387 ++ x390 + x398 + x401 + x402 + x403 + x405 + x416 + x424 + x425 + x434 ++ x436 + x438 + x447 + x448 + x466 + x467 + x469 + x470 + x473 + x496 ++ x498 + x499 + x500 + x501 <= 1 + +x9 + x10 + x11 + x14 + x16 + x23 + x26 + x28 + x30 + x32 ++ x35 + x51 + x52 + x54 + x58 + x59 + x68 + x71 + x72 + x75 ++ x76 + x78 + x79 + x90 + x96 + x102 + x103 + x118 + x119 + x121 ++ x122 + x159 + x160 + x161 + x162 + x164 + x165 + x166 + x167 + x169 ++ x176 + x177 + x178 + x179 + x180 + x181 + x188 + x199 + x203 + x217 ++ x244 + x249 + x284 + x285 + x286 + x300 + x309 + x318 + x330 + x332 ++ x334 + x340 + x351 + x367 + x375 + x376 + x377 + x382 + x384 + x385 ++ x387 + x388 + x390 + x398 + x403 + x404 + x405 + x408 + x416 + x418 ++ x421 + x424 + x425 + x428 + x447 + x464 + x466 + x467 + x468 + x469 ++ x470 + x496 + x498 + x499 + x500 + x501 <= 1 + +x0 + x1 + x2 + x3 + x4 + x9 + x11 + x24 + x25 + x26 ++ x28 + x32 + x35 + x50 + x51 + x52 + x53 + x54 + x68 + x71 ++ x75 + x76 + x78 + x79 + x96 + x119 + x121 + x156 + x160 + x161 ++ x162 + x164 + x165 + x167 + x168 + x169 + x176 + x180 + x188 + x189 ++ x191 + x217 + x244 + x246 + x247 + x248 + x249 + x277 + x279 + x280 ++ x281 + x284 + x285 + x286 + x306 + x309 + x340 + x341 + x371 + x374 ++ x375 + x376 + x377 + x385 + x388 + x398 + x404 + x406 + x408 + x422 ++ x424 + x425 + x428 + x429 + x430 + x431 + x433 + x435 + x437 + x439 ++ x447 + x465 + x466 + x467 + x468 + x469 + x470 + x477 + x496 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 + x10 + x24 + x25 + x26 ++ x27 + x31 + x32 + x35 + x50 + x51 + x52 + x53 + x68 + x71 ++ x74 + x75 + x78 + x79 + x96 + x156 + x157 + x158 + x160 + x161 ++ x162 + x163 + x164 + x188 + x190 + x191 + x217 + x227 + x229 + x230 ++ x231 + x232 + x244 + x246 + x248 + x249 + x278 + x279 + x280 + x281 ++ x294 + x298 + x324 + x340 + x341 + x345 + x367 + x371 + x373 + x374 ++ x375 + x376 + x377 + x378 + x385 + x386 + x387 + x388 + x389 + x408 ++ x409 + x417 + x422 + x424 + x427 + x431 + x432 + x433 + x434 + x435 ++ x437 + x439 + x454 + x455 + x456 + x465 + x466 + x467 + x473 + x474 ++ x477 + x496 + x498 + x499 <= 1 + +x0 + x1 + x2 + x3 + x5 + x6 + x7 + x9 + x10 + x11 ++ x24 + x25 + x26 + x27 + x31 + x32 + x35 + x43 + x44 + x45 ++ x46 + x47 + x50 + x51 + x52 + x53 + x74 + x75 + x77 + x78 ++ x79 + x92 + x95 + x96 + x113 + x143 + x157 + x158 + x161 + x162 ++ x163 + x164 + x200 + x201 + x202 + x217 + x227 + x228 + x229 + x230 ++ x231 + x232 + x240 + x242 + x243 + x244 + x246 + x247 + x248 + x249 ++ x279 + x280 + x281 + x294 + x296 + x298 + x305 + x306 + x322 + x324 ++ x325 + x326 + x343 + x345 + x346 + x347 + x353 + x367 + x371 + x373 ++ x374 + x375 + x376 + x377 + x378 + x385 + x386 + x387 + x388 + x389 ++ x390 + x400 + x404 + x405 + x406 + x407 + x408 + x409 + x417 + x428 ++ x429 + x430 + x431 + x432 + x433 + x434 + x435 + x437 + x439 + x441 ++ x450 + x453 + x455 + x456 + x465 + x466 + x467 + x470 + x496 + x497 ++ x498 + x499 <= 1 + +x0 + x7 + x11 + x22 + x42 + x43 + x44 + x46 + x51 + x52 ++ x54 + x55 + x74 + x75 + x76 + x77 + x78 + x79 + x92 + x95 ++ x96 + x111 + x112 + x113 + x114 + x136 + x139 + x140 + x141 + x155 ++ x161 + x163 + x173 + x200 + x201 + x202 + x204 + x229 + x231 + x232 ++ x238 + x239 + x240 + x241 + x242 + x243 + x244 + x245 + x246 + x247 ++ x248 + x249 + x255 + x279 + x280 + x281 + x296 + x297 + x306 + x312 ++ x324 + x325 + x326 + x342 + x343 + x345 + x346 + x347 + x362 + x369 ++ x373 + x374 + x375 + x376 + x377 + x385 + x386 + x387 + x388 + x389 ++ x390 + x399 + x400 + x404 + x405 + x406 + x407 + x408 + x409 + x417 ++ x427 + x428 + x429 + x430 + x431 + x432 + x433 + x434 + x435 + x437 ++ x439 + x441 + x450 + x453 + x455 + x456 + x465 + x466 + x467 + x470 ++ x477 + x496 + x497 <= 1 + +x0 + x11 + x42 + x43 + x44 + x46 + x47 + x55 + x65 + x74 ++ x95 + x140 + x141 + x155 + x163 + x204 + x231 + x238 + x239 + x240 ++ x242 + x243 + x255 + x277 + x280 + x281 + x306 + x325 + x342 + x367 ++ x369 + x370 + x371 + x373 + x374 + x376 + x377 + x385 + x386 + x387 ++ x390 + x400 + x404 + x406 + x408 + x409 + x417 + x428 + x429 + x430 ++ x431 + x432 + x433 + x434 + x435 + x437 + x439 + x450 + x465 + x467 ++ x472 + x496 <= 1 + +x24 + x25 + x27 + x28 + x29 + x30 + x54 + x92 + x93 + x94 ++ x97 + x107 + x124 + x126 + x127 + x128 + x129 + x159 + x197 + x216 ++ x220 + x226 + x235 + x252 + x301 + x303 + x304 + x321 + x335 + x352 ++ x394 + x395 + x397 + x398 + x399 + x406 + x410 + x414 + x415 + x416 ++ x420 + x459 + x470 + x473 + x476 + x479 + x483 + x484 + x496 + x498 ++ x499 + x501 <= 1 + +x7 + x25 + x27 + x28 + x29 + x30 + x54 + x124 + x126 + x128 ++ x129 + x143 + x159 + x184 + x186 + x187 + x198 + x203 + x216 + x220 ++ x221 + x226 + x249 + x299 + x301 + x302 + x303 + x304 + x315 + x316 ++ x321 + x335 + x349 + x350 + x352 + x373 + x394 + x398 + x399 + x401 ++ x405 + x406 + x408 + x410 + x411 + x412 + x415 + x416 + x420 + x467 ++ x469 + x470 + x476 + x479 + x483 + x484 + x496 + x498 + x499 + x501 + <= 1 + +x7 + x10 + x25 + x27 + x28 + x29 + x102 + x143 + x177 + x203 ++ x221 + x299 + x302 + x303 + x304 + x316 + x321 + x322 + x323 + x398 ++ x405 + x408 + x409 + x410 + x411 + x412 + x415 + x467 + x468 + x469 ++ x470 + x473 + x496 + x499 + x501 <= 1 + +x9 + x10 + x58 + x69 + x70 + x99 + x102 + x118 + x119 + x121 ++ x125 + x129 + x135 + x166 + x177 + x180 + x181 + x183 + x184 + x185 ++ x188 + x236 + x237 + x244 + x279 + x289 + x303 + x316 + x321 + x322 ++ x323 + x334 + x335 + x348 + x352 + x367 + x368 + x375 + x376 + x377 ++ x385 + x390 + x405 + x406 + x408 + x411 + x415 + x416 + x421 + x448 ++ x466 + x467 + x468 + x469 + x470 + x473 + x475 + x478 + x479 + x481 ++ x496 + x498 + x499 + x500 + x501 <= 1 + +x9 + x10 + x11 + x26 + x27 + x28 + x51 + x68 + x69 + x70 ++ x71 + x72 + x76 + x102 + x122 + x127 + x160 + x162 + x164 + x167 ++ x177 + x180 + x183 + x184 + x188 + x199 + x203 + x244 + x249 + x277 ++ x278 + x279 + x284 + x289 + x291 + x300 + x309 + x316 + x318 + x322 ++ x323 + x351 + x367 + x368 + x372 + x377 + x398 + x403 + x405 + x408 ++ x416 + x418 + x420 + x421 + x424 + x464 + x466 + x467 + x468 + x469 ++ x470 + x475 + x477 + x478 + x496 + x498 + x499 + x500 + x501 <= 1 + +x3 + x9 + x25 + x35 + x68 + x148 + x160 + x164 + x165 + x167 ++ x168 + x169 + x189 + x191 + x217 + x279 + x341 + x371 + x375 + x376 ++ x377 + x408 + x422 + x424 + x425 + x428 + x431 + x433 + x466 + x467 ++ x468 + x469 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 + x6 + x7 + x9 + x10 ++ x11 + x24 + x25 + x26 + x27 + x28 + x31 + x32 + x35 + x39 ++ x50 + x51 + x52 + x53 + x54 + x55 + x68 + x71 + x74 + x75 ++ x76 + x78 + x79 + x156 + x157 + x160 + x161 + x164 + x165 + x167 ++ x168 + x176 + x180 + x185 + x188 + x189 + x190 + x198 + x200 + x240 ++ x244 + x247 + x248 + x249 + x277 + x278 + x279 + x280 + x281 + x286 ++ x306 + x353 + x367 + x371 + x373 + x374 + x375 + x376 + x377 + x385 ++ x386 + x387 + x388 + x389 + x404 + x405 + x406 + x408 + x409 + x417 ++ x422 + x424 + x426 + x427 + x428 + x429 + x430 + x431 + x432 + x433 ++ x434 + x435 + x437 + x439 + x445 + x454 + x455 + x456 + x465 + x466 ++ x467 + x468 + x474 + x477 + x482 <= 1 + +x0 + x1 + x3 + x4 + x6 + x7 + x9 + x10 + x11 + x24 ++ x25 + x26 + x27 + x43 + x44 + x50 + x51 + x52 + x53 + x54 ++ x55 + x64 + x68 + x74 + x75 + x76 + x78 + x79 + x95 + x113 ++ x140 + x143 + x158 + x168 + x176 + x180 + x198 + x200 + x201 + x202 ++ x204 + x227 + x228 + x229 + x230 + x231 + x232 + x243 + x244 + x245 ++ x246 + x247 + x248 + x249 + x277 + x280 + x281 + x294 + x306 + x324 ++ x345 + x347 + x353 + x361 + x371 + x373 + x374 + x375 + x376 + x377 ++ x378 + x385 + x386 + x387 + x388 + x389 + x402 + x404 + x405 + x406 ++ x407 + x408 + x409 + x427 + x428 + x429 + x430 + x431 + x432 + x433 ++ x434 + x435 + x437 + x439 + x440 + x442 + x443 + x444 + x453 + x454 ++ x455 + x456 + x465 + x474 + x477 + x478 + x482 + x485 <= 1 + +x0 + x10 + x24 + x44 + x74 + x76 + x77 + x78 + x136 + x138 ++ x141 + x198 + x200 + x201 + x202 + x228 + x238 + x239 + x242 + x244 ++ x245 + x246 + x248 + x249 + x280 + x297 + x306 + x324 + x325 + x342 ++ x343 + x345 + x346 + x347 + x360 + x367 + x369 + x373 + x376 + x377 ++ x385 + x386 + x387 + x389 + x390 + x399 + x400 + x404 + x405 + x406 ++ x407 + x408 + x409 + x428 + x432 + x433 + x434 + x435 + x437 + x439 ++ x442 + x450 + x454 + x456 + x480 + x496 + x497 <= 1 + +x0 + x7 + x11 + x24 + x44 + x46 + x74 + x77 + x136 + x138 ++ x141 + x155 + x238 + x239 + x240 + x241 + x242 + x243 + x244 + x245 ++ x246 + x247 + x248 + x249 + x255 + x277 + x279 + x280 + x281 + x325 ++ x342 + x345 + x346 + x347 + x362 + x363 + x367 + x369 + x370 + x373 ++ x374 + x376 + x377 + x385 + x386 + x387 + x388 + x390 + x399 + x400 ++ x417 + x423 + x427 + x428 + x429 + x431 + x432 + x434 + x435 + x437 ++ x439 + x450 + x453 + x454 + x455 + x456 + x465 + x466 + x472 + x493 ++ x496 + x497 <= 1 + +x7 + x24 + x25 + x27 + x28 + x29 + x38 + x92 + x93 + x94 ++ x97 + x124 + x126 + x127 + x128 + x129 + x159 + x183 + x186 + x187 ++ x199 + x203 + x252 + x277 + x282 + x303 + x335 + x349 + x391 + x393 ++ x394 + x395 + x398 + x399 + x405 + x406 + x410 + x412 + x414 + x415 ++ x416 + x466 + x467 + x469 + x473 + x476 + x479 + x483 + x496 + x498 ++ x499 <= 1 + +x7 + x24 + x25 + x27 + x28 + x29 + x92 + x94 + x97 + x124 ++ x126 + x127 + x128 + x129 + x143 + x159 + x180 + x181 + x184 + x186 ++ x187 + x199 + x203 + x216 + x217 + x220 + x221 + x299 + x301 + x302 ++ x303 + x304 + x349 + x350 + x352 + x368 + x372 + x373 + x391 + x392 ++ x393 + x394 + x405 + x406 + x410 + x411 + x412 + x414 + x415 + x416 ++ x420 + x466 + x467 + x469 + x470 + x476 + x479 + x483 + x484 + x496 ++ x498 + x501 <= 1 + +x7 + x10 + x11 + x24 + x25 + x27 + x28 + x29 + x36 + x69 ++ x80 + x93 + x94 + x97 + x119 + x124 + x126 + x128 + x129 + x143 ++ x177 + x180 + x181 + x183 + x184 + x186 + x187 + x203 + x221 + x301 ++ x302 + x315 + x318 + x321 + x322 + x323 + x348 + x349 + x350 + x352 ++ x368 + x372 + x374 + x391 + x392 + x393 + x405 + x406 + x411 + x412 ++ x413 + x414 + x416 + x420 + x466 + x469 + x470 + x474 + x475 + x476 ++ x477 + x479 + x480 + x481 + x483 + x484 + x496 + x498 + x500 + x501 + <= 1 + +x7 + x9 + x10 + x24 + x25 + x27 + x28 + x29 + x66 + x69 ++ x70 + x102 + x128 + x129 + x143 + x164 + x166 + x177 + x180 + x181 ++ x183 + x184 + x185 + x186 + x187 + x198 + x199 + x221 + x229 + x237 ++ x282 + x321 + x322 + x323 + x348 + x349 + x350 + x352 + x367 + x368 ++ x372 + x386 + x392 + x405 + x406 + x408 + x410 + x411 + x412 + x413 ++ x414 + x415 + x416 + x420 + x466 + x467 + x468 + x469 + x470 + x473 ++ x475 + x477 + x478 + x479 + x480 + x481 + x482 + x483 + x484 + x496 ++ x497 + x498 + x499 + x500 + x501 <= 1 + +x9 + x10 + x15 + x27 + x28 + x67 + x69 + x70 + x71 + x76 ++ x127 + x128 + x129 + x162 + x164 + x180 + x183 + x198 + x199 + x221 ++ x230 + x234 + x244 + x277 + x278 + x279 + x282 + x289 + x291 + x348 ++ x351 + x352 + x367 + x368 + x372 + x376 + x386 + x403 + x405 + x406 ++ x408 + x416 + x418 + x420 + x421 + x424 + x426 + x430 + x433 + x444 ++ x445 + x466 + x467 + x468 + x469 + x473 + x475 + x477 + x478 + x479 ++ x480 + x481 + x482 + x496 + x498 + x499 + x500 + x501 <= 1 + +x7 + x9 + x10 + x11 + x15 + x24 + x25 + x26 + x27 + x28 ++ x52 + x55 + x62 + x66 + x67 + x70 + x74 + x75 + x76 + x79 ++ x128 + x129 + x147 + x183 + x185 + x198 + x221 + x227 + x228 + x230 ++ x231 + x234 + x277 + x278 + x279 + x282 + x289 + x290 + x291 + x294 ++ x295 + x343 + x348 + x349 + x350 + x352 + x353 + x367 + x368 + x369 ++ x370 + x372 + x374 + x375 + x376 + x381 + x385 + x386 + x387 + x388 ++ x399 + x400 + x405 + x406 + x408 + x413 + x418 + x419 + x426 + x427 ++ x429 + x430 + x431 + x432 + x433 + x440 + x441 + x443 + x444 + x445 ++ x466 + x469 + x473 + x474 + x476 + x477 + x478 + x480 + x481 + x482 ++ x498 + x500 + x501 <= 1 + +x6 + x7 + x9 + x10 + x11 + x15 + x24 + x25 + x26 + x27 ++ x28 + x32 + x35 + x39 + x50 + x51 + x52 + x53 + x54 + x55 ++ x62 + x64 + x67 + x68 + x74 + x75 + x76 + x79 + x95 + x164 ++ x185 + x186 + x188 + x190 + x198 + x200 + x227 + x228 + x229 + x230 ++ x231 + x233 + x234 + x239 + x245 + x246 + x247 + x277 + x278 + x279 ++ x280 + x281 + x290 + x291 + x294 + x295 + x348 + x349 + x350 + x353 ++ x367 + x374 + x375 + x376 + x377 + x385 + x386 + x387 + x388 + x399 ++ x400 + x404 + x405 + x406 + x413 + x418 + x419 + x422 + x423 + x426 ++ x427 + x428 + x429 + x430 + x431 + x432 + x433 + x440 + x441 + x442 ++ x443 + x444 + x445 + x454 + x465 + x467 + x474 + x476 + x477 + x478 ++ x480 + x481 + x482 + x498 <= 1 + +x1 + x3 + x4 + x6 + x7 + x9 + x10 + x11 + x24 + x25 ++ x26 + x27 + x28 + x32 + x39 + x50 + x51 + x52 + x53 + x54 ++ x55 + x64 + x67 + x74 + x75 + x76 + x77 + x78 + x79 + x95 ++ x138 + x140 + x168 + x198 + x200 + x201 + x202 + x204 + x227 + x228 ++ x229 + x230 + x231 + x233 + x234 + x239 + x242 + x245 + x246 + x247 ++ x290 + x294 + x295 + x316 + x343 + x345 + x350 + x353 + x361 + x374 ++ x375 + x376 + x377 + x385 + x386 + x387 + x388 + x390 + x398 + x399 ++ x400 + x404 + x405 + x406 + x407 + x408 + x409 + x418 + x419 + x422 ++ x423 + x426 + x427 + x428 + x429 + x430 + x431 + x432 + x433 + x434 ++ x435 + x437 + x439 + x440 + x441 + x442 + x443 + x444 + x445 + x453 ++ x454 + x455 + x456 + x465 + x474 + x476 + x477 + x478 + x480 + x482 ++ x496 + x498 <= 1 + +x1 + x3 + x4 + x7 + x10 + x11 + x24 + x26 + x39 + x51 ++ x54 + x55 + x74 + x75 + x76 + x77 + x78 + x79 + x138 + x149 ++ x155 + x179 + x194 + x198 + x200 + x201 + x202 + x227 + x228 + x231 ++ x234 + x239 + x242 + x245 + x246 + x248 + x249 + x277 + x279 + x280 ++ x281 + x291 + x316 + x324 + x325 + x328 + x342 + x343 + x345 + x360 ++ x361 + x370 + x374 + x375 + x376 + x377 + x378 + x385 + x386 + x387 ++ x389 + x390 + x398 + x399 + x400 + x404 + x405 + x406 + x407 + x408 ++ x409 + x418 + x419 + x428 + x429 + x430 + x431 + x432 + x433 + x434 ++ x435 + x437 + x439 + x440 + x442 + x453 + x454 + x455 + x456 + x465 ++ x480 + x489 + x496 <= 1 + +x0 + x1 + x4 + x10 + x24 + x26 + x44 + x74 + x77 + x78 ++ x141 + x155 + x194 + x198 + x201 + x202 + x231 + x234 + x239 + x242 ++ x244 + x246 + x248 + x249 + x277 + x280 + x281 + x360 + x362 + x363 ++ x367 + x370 + x374 + x377 + x385 + x386 + x387 + x389 + x390 + x399 ++ x400 + x404 + x405 + x406 + x407 + x408 + x409 + x417 + x418 + x419 ++ x423 + x432 + x437 + x439 + x442 + x446 + x450 + x454 + x455 + x456 ++ x465 + x472 + x486 + x489 <= 1 + +x24 + x25 + x27 + x28 + x29 + x38 + x92 + x93 + x97 + x124 ++ x126 + x127 + x128 + x129 + x186 + x187 + x274 + x282 + x391 + x395 ++ x414 + x415 + x416 + x469 + x483 + x496 + x498 <= 1 + +x7 + x24 + x25 + x27 + x28 + x29 + x55 + x66 + x92 + x93 ++ x94 + x97 + x124 + x126 + x127 + x128 + x129 + x143 + x181 + x186 ++ x187 + x199 + x219 + x221 + x277 + x282 + x299 + x302 + x303 + x321 ++ x349 + x350 + x352 + x374 + x391 + x393 + x395 + x399 + x410 + x412 ++ x414 + x416 + x420 + x466 + x469 + x470 + x479 + x483 + x484 + x496 ++ x500 <= 1 + +x7 + x24 + x25 + x27 + x28 + x29 + x55 + x66 + x92 + x93 ++ x94 + x97 + x124 + x126 + x127 + x129 + x143 + x181 + x183 + x186 ++ x187 + x199 + x219 + x221 + x277 + x278 + x282 + x302 + x321 + x322 ++ x348 + x349 + x350 + x352 + x368 + x369 + x372 + x374 + x392 + x393 ++ x395 + x405 + x406 + x408 + x410 + x411 + x412 + x413 + x414 + x416 ++ x420 + x466 + x469 + x470 + x474 + x475 + x476 + x478 + x479 + x481 ++ x483 + x496 + x498 + x500 + x501 <= 1 + +x7 + x10 + x13 + x24 + x25 + x27 + x55 + x66 + x69 + x97 ++ x119 + x126 + x127 + x128 + x129 + x143 + x180 + x184 + x185 + x187 ++ x199 + x221 + x232 + x277 + x278 + x282 + x302 + x321 + x322 + x323 ++ x348 + x349 + x350 + x352 + x367 + x368 + x369 + x374 + x376 + x392 ++ x405 + x406 + x408 + x410 + x411 + x412 + x413 + x414 + x415 + x416 ++ x420 + x465 + x466 + x469 + x470 + x473 + x474 + x475 + x476 + x478 ++ x480 + x481 + x482 + x484 + x497 + x498 + x500 + x501 <= 1 + +x7 + x9 + x10 + x24 + x25 + x26 + x27 + x28 + x55 + x66 ++ x67 + x97 + x119 + x126 + x185 + x199 + x221 + x227 + x228 + x277 ++ x278 + x279 + x282 + x322 + x343 + x348 + x349 + x350 + x352 + x353 ++ x368 + x369 + x370 + x374 + x376 + x386 + x400 + x405 + x408 + x411 ++ x413 + x420 + x465 + x466 + x469 + x470 + x474 + x475 + x476 + x478 ++ x479 + x480 + x481 + x482 + x484 + x497 + x498 + x500 + x501 <= 1 + +x9 + x10 + x24 + x25 + x26 + x27 + x28 + x50 + x55 + x62 ++ x66 + x67 + x79 + x97 + x147 + x185 + x221 + x227 + x228 + x229 ++ x230 + x231 + x233 + x234 + x277 + x278 + x279 + x282 + x288 + x343 ++ x348 + x349 + x350 + x352 + x353 + x367 + x368 + x369 + x370 + x372 ++ x374 + x376 + x380 + x381 + x385 + x386 + x400 + x405 + x406 + x408 ++ x413 + x418 + x419 + x420 + x429 + x433 + x443 + x444 + x445 + x455 ++ x465 + x466 + x469 + x470 + x473 + x474 + x475 + x477 + x478 + x479 ++ x480 + x481 + x482 + x500 + x501 <= 1 + +x1 + x3 + x4 + x6 + x8 + x9 + x10 + x11 + x24 + x25 ++ x26 + x27 + x28 + x50 + x52 + x53 + x54 + x55 + x62 + x64 ++ x66 + x67 + x147 + x185 + x198 + x202 + x228 + x229 + x231 + x233 ++ x234 + x245 + x277 + x278 + x279 + x280 + x282 + x289 + x290 + x291 ++ x294 + x295 + x343 + x348 + x349 + x350 + x352 + x353 + x367 + x368 ++ x369 + x370 + x372 + x374 + x375 + x376 + x377 + x378 + x380 + x385 ++ x386 + x387 + x399 + x400 + x405 + x406 + x408 + x413 + x419 + x420 ++ x423 + x426 + x429 + x430 + x431 + x432 + x433 + x440 + x441 + x443 ++ x445 + x455 + x465 + x467 + x470 + x473 + x474 + x475 + x476 + x477 ++ x478 + x481 + x482 <= 1 + +x1 + x3 + x4 + x9 + x10 + x24 + x26 + x27 + x32 + x52 ++ x64 + x67 + x74 + x75 + x76 + x77 + x78 + x95 + x155 + x198 ++ x200 + x201 + x202 + x227 + x228 + x229 + x230 + x231 + x233 + x234 ++ x245 + x246 + x247 + x249 + x277 + x278 + x279 + x280 + x281 + x282 ++ x283 + x290 + x291 + x294 + x295 + x323 + x343 + x345 + x348 + x349 ++ x350 + x353 + x361 + x367 + x368 + x369 + x370 + x378 + x398 + x399 ++ x400 + x404 + x405 + x406 + x407 + x408 + x409 + x419 + x420 + x423 ++ x429 + x430 + x431 + x432 + x433 + x434 + x435 + x437 + x439 + x440 ++ x441 + x442 + x443 + x444 + x445 + x453 + x454 + x455 + x456 + x474 ++ x475 + x476 + x477 + x478 + x480 + x481 + x482 + x496 <= 1 + +x1 + x3 + x4 + x9 + x10 + x24 + x26 + x52 + x150 + x155 ++ x179 + x198 + x200 + x201 + x202 + x227 + x228 + x229 + x230 + x231 ++ x233 + x245 + x246 + x249 + x277 + x278 + x279 + x280 + x281 + x282 ++ x291 + x294 + x295 + x325 + x343 + x363 + x367 + x368 + x370 + x374 ++ x377 + x378 + x385 + x389 + x399 + x400 + x405 + x407 + x419 + x423 ++ x430 + x431 + x432 + x433 + x435 + x437 + x440 + x441 + x442 + x443 ++ x444 + x453 + x454 + x455 + x456 + x474 + x475 + x477 + x478 + x480 ++ x481 + x489 + x496 <= 1 + +x4 + x10 + x24 + x26 + x42 + x77 + x150 + x155 + x198 + x200 ++ x201 + x202 + x277 + x280 + x281 + x291 + x295 + x325 + x360 + x362 ++ x363 + x367 + x368 + x370 + x374 + x377 + x378 + x387 + x400 + x405 ++ x406 + x407 + x408 + x423 + x435 + x437 + x439 + x446 + x450 + x456 ++ x486 + x489 + x496 + x500 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 + x22 + x23 <= 1 + +x24 + x25 + x26 + x27 + x28 + x29 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 <= 1 + +x36 + x37 + x38 + x39 + x40 + x41 <= 1 + +x42 + x43 + x44 + x45 + x46 + x47 <= 1 + +x48 + x49 <= 1 + +x50 + x51 + x52 + x53 + x54 + x55 <= 1 + +x56 + x57 + x58 + x59 + x60 + x61 <= 1 + +x62 + x63 + x64 + x65 + x66 + x67 <= 1 + +x68 + x69 + x70 + x71 + x72 + x73 <= 1 + +x74 + x75 + x76 + x77 + x78 + x79 <= 1 + +x81 + x82 + x83 + x84 + x85 <= 1 + +x86 + x87 + x88 + x89 + x90 + x91 <= 1 + +x92 + x93 + x94 + x95 + x96 + x97 <= 1 + +x99 + x100 + x101 + x102 + x103 + x104 <= 1 + +x105 + x106 + x107 + x108 + x109 + x110 <= 1 + +x111 + x112 + x113 + x114 + x115 + x116 <= 1 + +x118 + x119 + x120 + x121 + x122 + x123 <= 1 + +x124 + x125 + x126 + x127 + x128 + x129 <= 1 + +x130 + x131 + x132 + x133 + x134 + x135 <= 1 + +x136 + x137 + x138 + x139 + x140 + x141 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x150 + x151 + x152 + x153 + x154 + x155 <= 1 + +x156 + x157 + x158 <= 1 + +x159 + x160 + x161 + x162 + x163 + x164 <= 1 + +x165 + x166 + x167 + x168 + x169 <= 1 + +x170 + x171 + x172 + x173 + x174 + x175 <= 1 + +x176 + x177 + x178 + x179 + x180 + x181 <= 1 + +x183 + x184 + x185 + x186 + x187 + x188 <= 1 + +x189 + x190 + x191 <= 1 + +x192 + x193 + x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 + x221 <= 1 + +x222 + x223 + x224 + x225 <= 1 + + <= 1 + +x227 + x228 + x229 + x230 + x231 + x232 <= 1 + +x233 + x234 + x235 <= 1 + +x236 + x237 <= 1 + +x238 + x239 + x240 + x241 + x242 + x243 <= 1 + +x244 + x245 + x246 + x247 + x248 + x249 <= 1 + +x250 + x251 + x252 + x253 + x254 + x255 <= 1 + +x256 + x257 + x258 + x259 + x260 + x261 <= 1 + +x262 + x263 + x264 <= 1 + +x265 + x266 + x267 + x268 + x269 + x270 <= 1 + +x271 + x272 + x273 + x274 + x275 + x276 <= 1 + +x277 + x278 + x279 + x280 + x281 + x282 <= 1 + +x284 + x285 + x286 + x287 + x288 + x289 <= 1 + +x290 + x291 + x292 + x293 + x294 + x295 <= 1 + +x296 + x297 + x298 <= 1 + +x299 + x300 + x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 + x310 <= 1 + +x311 + x312 + x313 + x314 <= 1 + +x315 + x316 + x317 + x318 + x319 + x320 <= 1 + +x321 + x322 + x323 + x324 + x325 + x326 <= 1 + +x327 + x328 + x329 <= 1 + +x330 + x331 + x332 + x333 + x334 + x335 <= 1 + +x337 + x338 + x339 <= 1 + +x340 + x341 <= 1 + +x342 + x343 + x344 + x345 + x346 + x347 <= 1 + +x348 + x349 + x350 + x351 + x352 + x353 <= 1 + +x354 + x355 + x356 + x357 + x358 + x359 <= 1 + +x360 + x361 + x362 + x363 <= 1 + +x364 + x365 <= 1 + +x367 + x368 + x369 + x370 + x371 + x372 <= 1 + +x373 + x374 + x375 + x376 + x377 + x378 <= 1 + +x380 + x381 <= 1 + +x382 + x383 + x384 <= 1 + +x385 + x386 + x387 + x388 + x389 + x390 <= 1 + +x391 + x392 + x393 + x394 + x395 <= 1 + +x396 + x397 <= 1 + +x398 + x399 + x400 + x401 + x402 + x403 <= 1 + +x404 + x405 + x406 + x407 + x408 + x409 <= 1 + +x410 + x411 + x412 + x413 + x414 + x415 <= 1 + +x416 + x417 + x418 + x419 + x420 + x421 <= 1 + +x422 + x423 + x424 + x425 + x426 + x427 <= 1 + +x428 + x429 + x430 + x431 + x432 + x433 <= 1 + +x434 + x435 + x436 + x437 + x438 + x439 <= 1 + +x440 + x441 + x442 + x443 + x444 + x445 <= 1 + +x446 + x447 + x448 + x449 + x450 + x451 <= 1 + +x453 + x454 + x455 + x456 + x457 + x458 <= 1 + +x459 + x460 + x461 + x462 + x463 + x464 <= 1 + +x465 + x466 + x467 + x468 + x469 + x470 <= 1 + +x473 + x474 + x475 + x476 + x477 + x478 <= 1 + +x479 + x480 + x481 + x482 + x483 + x484 <= 1 + +x486 + x487 + x488 + x489 <= 1 + +x490 + x491 + x492 + x493 + x494 + x495 <= 1 + +x496 + x497 + x498 + x499 + x500 + x501 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0014.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0014.lp new file mode 100755 index 000000000..48ab003b5 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0014.lp @@ -0,0 +1,1075 @@ +max + +731.062x0 + 1095.73x1 + 1095.56x2 + 1008.96x3 + 868.115x4 + 826.533x5 + 350.337x6 + 518.933x7 + 490.88x8 + 485.707x9 + +464.248x10 + 451.668x11 + 256.348x12 + 308.079x13 + 306.442x14 + 305.929x15 + 295.383x16 + 249.464x17 + 526.923x18 + 638.166x19 + +570.616x20 + 535.704x21 + 508.521x22 + 490.799x23 + 582.27x24 + 566.159x25 + 529.236x26 + 527.143x27 + 485.367x28 + 469.262x29 + +497.995x30 + 674.695x31 + 660.583x32 + 653.254x33 + 644.856x34 + 633.509x35 + 582.258x36 + 718.335x37 + 620.466x38 + 593.242x39 + +566.118x40 + 564.744x41 + 133.013x42 + 109.339x43 + 2308.36x44 + 2666.37x45 + 2611.59x46 + 2573.07x47 + 2502.96x48 + 2466.69x49 + +618.474x50 + 847.517x51 + 746.469x52 + 745.445x53 + 744.125x54 + 637.923x55 + 44.4866x56 + 1097.3x57 + 1383.97x58 + 1273.82x59 + +1262.5x60 + 1258.55x61 + 1209.97x62 + 585.249x63 + 808.804x64 + 798.095x65 + 781.761x66 + 752.513x67 + 707.344x68 + 446.605x69 + +613.7x70 + 569.722x71 + 559.664x72 + 552.028x73 + 529.735x74 + 407.726x75 + 583.99x76 + 552.965x77 + 460.281x78 + 456.211x79 + +421.753x80 + 126.514x81 + 174.745x82 + 133.286x83 + 43.3261x84 + 421.459x85 + 575.922x86 + 564.911x87 + 531.64x88 + 531.312x89 + +504.581x90 + 118.223x91 + 228.308x92 + 235.632x93 + 200.786x94 + 162.814x95 + 131.556x96 + 346.868x97 + 426.574x98 + 387.105x99 + +344.006x100 + 313.296x101 + 303.547x102 + 153.116x103 + 168.183x104 + 147.352x105 + 81.9921x106 + 62.5957x107 + 42.3168x108 + 255.534x109 + +314.267x110 + 277.563x111 + 235.3x112 + 78.8314x113 + 18.5706x114 + 732.738x115 + 992.381x116 + 894.302x117 + 880.621x118 + 873.062x119 + +832.888x120 + 331.537x121 + 386.93x122 + 377.739x123 + 351.226x124 + 319.23x125 + 273.85x126 + 1185.56x127 + 1704.59x128 + 1675.03x129 + +1592.25x130 + 1572.55x131 + 1519.58x132 + 843.091x133 + 1244.31x134 + 1198.44x135 + 1194.35x136 + 1176.53x137 + 1170.66x138 + 289.696x139 + +339.761x140 + 308.366x141 + 274.722x142 + 250.425x143 + 250.267x144 + 322.858x145 + 249.935x146 + 241.533x147 + 238.778x148 + 231.346x149 + +1068.02x150 + 1121.4x151 + 1116.4x152 + 1095.39x153 + 1024.9x154 + 1005.62x155 + 1070.61x156 + 1579.32x157 + 1544.42x158 + 1490.66x159 + +1442.48x160 + 1262.61x161 + 377.916x162 + 430.859x163 + 383.571x164 + 342.048x165 + 318.766x166 + 222.028x167 + 146.953x168 + 89.376x169 + +589.273x170 + 871.364x171 + 836.103x172 + 808.78x173 + 808.211x174 + 755.225x175 + 832.934x176 + 1104.77x177 + 960.268x178 + 953.98x179 + +940.533x180 + 922.419x181 + 803.91x182 + 984.102x183 + 873.471x184 + 863.235x185 + 862.743x186 + 857.235x187 + 3066.64x188 + 3417.82x189 + +3398.28x190 + 3382.71x191 + 3306.89x192 + 3294.33x193 + 202.233x194 + 287.406x195 + 242.382x196 + 231.907x197 + 1887.82x198 + 2014.91x199 + +1985.76x200 + 1969.29x201 + 1959.27x202 + 1936.36x203 + 1794.52x204 + 2158.41x205 + 2106x206 + 2093.33x207 + 2087.69x208 + 1988.67x209 + +215.484x210 + 271.487x211 + 253.705x212 + 210.008x213 + 166.77x214 + 76.3515x215 + 58.365x216 + 97.8783x217 + 488.665x218 + 670.439x219 + +629.055x220 + 596.837x221 + 563.923x222 + 485.906x223 + 1130.31x224 + 1195.06x225 + 1152.47x226 + 1117x227 + 1111.1x228 + 1102.86x229 + +240.293x230 + 332.422x231 + 222.15x232 + 216.572x233 + 167.409x234 + 715.898x235 + 959.176x236 + 933.546x237 + 890.981x238 + 857.035x239 + +817.229x240 + 579.36x241 + 754.375x242 + 723.395x243 + 645.313x244 + 634.848x245 + 632.374x246 + 142.019x247 + 184.692x248 + 110.946x249 + +391.587x250 + 517.721x251 + 449.686x252 + 398.145x253 + 396.18x254 + 388.44x255 + 118.685x256 + 136.989x257 + 1442.66x258 + 1719.28x259 + +1652.49x260 + 1611.31x261 + 1575.99x262 + 1571.28x263 + 2047.75x264 + 2762.8x265 + 2656.38x266 + 2615.86x267 + 2607.12x268 + 2600.73x269 + +395.763x270 + 503.393x271 + 405.318x272 + 253.355x273 + 219.305x274 + 191.625x275 + 135.51x276 + 594.349x277 + 731.099x278 + 686.343x279 + +677.091x280 + 630.31x281 + 521.095x282 + 77.1424x283 + 105.755x284 + 23.0075x285 + 741.644x286 + 962.042x287 + 945.464x288 + 877.261x289 + +843.852x290 + 817.661x291 + 2818.69x292 + 3398.97x293 + 3375.41x294 + 3276.06x295 + 3243.04x296 + 3239.39x297 + 1373.43x298 + 2049.69x299 + +1959.53x300 + 1783.99x301 + 1779.95x302 + 1759.6x303 + 286.465x304 + 369.846x305 + 231.775x306 + 225.934x307 + 1010.72x308 + 1407.32x309 + +1236.79x310 + 1160.94x311 + 1136.75x312 + 1070.04x313 + 144.083x314 + 184.803x315 + 103.5x316 + 594.144x317 + 680.939x318 + 644.595x319 + +642.029x320 + 610.416x321 + 588.013x322 + 254.494x323 + 235.852x324 + 178.818x325 + 159.455x326 + 435.235x327 + 555.36x328 + 534.523x329 + +521.554x330 + 479.986x331 + 434.68x332 + 1045.26x333 + 1194.07x334 + 1183.53x335 + 1169.57x336 + 1151.28x337 + 1146.25x338 + 777.952x339 + +1015.62x340 + 977.499x341 + 914.381x342 + 913.929x343 + 860.83x344 + 432.073x345 + 590.35x346 + 544.654x347 + 511.254x348 + 443.966x349 + +437.639x350 + 485.984x351 + 670.208x352 + 640.728x353 + 619.195x354 + 611.665x355 + 573.444x356 + 238.415x357 + 137.108x358 + 41.1156x359 + +381.74x360 + 510.204x361 + 500.984x362 + 473.13x363 + 462.167x364 + 377.354x365 + 474.26x366 + 458.957x367 + 447.206x368 + 437.393x369 + +412.389x370 + 402.1x371 + 27.3978x372 + 725.023x373 + 765.64x374 + 741.211x375 + 718.677x376 + 702.765x377 + 660.886x378 + 1670.97x379 + +2257.65x380 + 1979.4x381 + 1976.58x382 + 1974.58x383 + 1885.63x384 + 778.789x385 + 961.009x386 + 847.742x387 + 810.212x388 + 772.06x389 + +765.266x390 + 885.074x391 + 1039.51x392 + 949.724x393 + 917.505x394 + 897.223x395 + 893.713x396 + 715.946x397 + 891.006x398 + 861.901x399 + +836.477x400 + 836.125x401 + 702.283x402 + 209.008x403 + 299.276x404 + 209.132x405 + 1942.9x406 + 1959.78x407 + 1936.55x408 + 1912.38x409 + +1864.34x410 + 1851.06x411 + 692.862x412 + 928.605x413 + 878.905x414 + 807.528x415 + 788.227x416 + 787.751x417 + 500.26x418 + 682.954x419 + +675.14x420 + 538.226x421 + 507.731x422 + 466.114x423 + 127.526x424 + 649.164x425 + 963.038x426 + 859.2x427 + 839.1x428 + 787.267x429 + +765.438x430 + 267.398x431 + 330.031x432 + 318.961x433 + 223.515x434 + 75.1178x435 + 984.736x436 + 1061.79x437 + 1053.95x438 + 1029.87x439 + +1022.64x440 + 1019.63x441 + 303.735x442 + 258.99x443 + 245.057x444 + 215.625x445 + 165.198x446 + 594.457x447 + 606.912x448 + 605.409x449 + +546.123x450 + 489.914x451 + 463.396x452 + 855.764x453 + 969.889x454 + 908.449x455 + 893.924x456 + 860.055x457 + 814.534x458 + 1421.37x459 + +1694.17x460 + 1680.82x461 + 1634.95x462 + 1632.31x463 + 1598.87x464 + 309.81x465 + 456.861x466 + 448.59x467 + 437.183x468 + 414.938x469 + +375.829x470 + 30.9159x471 + 459.615x472 + 400.508x473 + 319.056x474 + 302.595x475 + 261.505x476 + 184.068x477 + 267.941x478 + 212.173x479 + +200.768x480 + 279.801x481 + 360.273x482 + 341.496x483 + 265.597x484 + 191.186x485 + 607.072x486 + 714.586x487 + 612.51x488 + 607.72x489 + +563.119x490 + 558.113x491 + 164.519x492 + 240.854x493 + 112.188x494 + 103.784x495 + 587.862x496 + 569.156x497 + 554.194x498 + 437.948x499 + +408.447x500 + 384.526x501 + +st + +x168 + x169 + x192 + x204 + x207 + x209 + x228 + x229 + x264 + x336 ++ x339 + x341 + x397 + x402 + x410 + x429 + x444 + x463 <= 1 + +x5 + x66 + x132 + x139 + x140 + x142 + x143 + x168 + x189 + x190 ++ x192 + x204 + x207 + x208 + x209 + x219 + x220 + x221 + x224 + x227 ++ x228 + x229 + x264 + x294 + x316 + x336 + x339 + x340 + x341 + x380 ++ x383 + x397 + x402 + x410 + x428 + x429 + x442 + x444 + x463 <= 1 + +x5 + x65 + x66 + x132 + x198 + x200 + x204 + x206 + x207 + x208 ++ x209 + x219 + x220 + x221 + x222 + x227 + x228 + x229 + x264 + x294 ++ x320 + x336 + x340 + x341 + x380 + x383 + x397 + x402 + x410 + x428 ++ x429 + x442 + x443 <= 1 + +x2 + x66 + x71 + x132 + x198 + x200 + x204 + x206 + x207 + x209 ++ x218 + x219 + x220 + x222 + x223 + x227 + x228 + x229 + x264 + x293 ++ x294 + x320 + x380 + x383 + x397 + x410 + x425 + x428 + x429 <= 1 + +x49 + x63 + x64 + x67 + x114 + x156 + x184 + x223 + x292 + x297 ++ x317 + x318 + x321 + x322 + x422 + x439 + x459 <= 1 + +x45 + x63 + x64 + x67 + x70 + x86 + x127 + x156 + x176 + x184 ++ x223 + x253 + x264 + x286 + x292 + x294 + x298 + x299 + x317 + x318 ++ x320 + x321 + x322 + x383 + x390 + x417 + x422 + x428 + x436 + x437 ++ x439 + x459 + x476 + x492 + x493 + x494 + x495 <= 1 + +x10 + x26 + x63 + x64 + x67 + x86 + x104 + x156 + x176 + x184 ++ x188 + x206 + x223 + x292 + x294 + x298 + x299 + x317 + x318 + x320 ++ x321 + x322 + x380 + x383 + x390 + x436 + x437 + x439 + x440 + x452 ++ x459 + x462 + x472 + x473 + x476 + x483 + x492 + x493 + x494 <= 1 + +x3 + x8 + x10 + x26 + x29 + x45 + x64 + x86 + x103 + x104 ++ x156 + x184 + x188 + x202 + x206 + x232 + x287 + x294 + x296 + x299 ++ x300 + x305 + x317 + x321 + x322 + x380 + x383 + x387 + x390 + x426 ++ x436 + x439 + x440 + x447 + x450 + x451 + x452 + x462 + x472 + x473 ++ x475 + x476 + x481 + x482 + x483 + x493 + x498 <= 1 + +x3 + x6 + x8 + x10 + x24 + x25 + x26 + x28 + x29 + x35 ++ x45 + x46 + x64 + x103 + x104 + x105 + x182 + x183 + x184 + x185 ++ x186 + x187 + x206 + x236 + x288 + x289 + x293 + x294 + x296 + x299 ++ x300 + x306 + x321 + x322 + x383 + x385 + x387 + x390 + x426 + x439 ++ x440 + x447 + x451 + x452 + x462 + x475 + x481 + x482 + x483 + x484 ++ x485 + x496 + x497 + x498 <= 1 + +x10 + x28 + x29 + x103 + x105 + x183 + x185 + x186 + x187 + x288 ++ x290 + x292 + x294 + x296 + x299 + x300 + x322 + x390 + x402 + x436 ++ x439 + x440 + x447 + x450 + x451 + x452 + x462 + x475 <= 1 + +x14 + x48 + x50 + x143 + x188 + x198 + x199 + x207 + x208 + x209 ++ x221 + x228 + x229 + x264 + x268 + x341 + x358 + x402 + x415 <= 1 + +x5 + x14 + x46 + x48 + x55 + x65 + x110 + x132 + x136 + x138 ++ x139 + x140 + x142 + x143 + x180 + x188 + x189 + x190 + x198 + x199 ++ x204 + x207 + x208 + x209 + x219 + x220 + x221 + x224 + x228 + x229 ++ x264 + x268 + x269 + x294 + x309 + x313 + x339 + x340 + x341 + x358 ++ x380 + x383 + x402 + x415 + x429 + x442 + x443 + x444 + x445 + x478 + <= 1 + +x5 + x52 + x55 + x65 + x110 + x132 + x137 + x158 + x180 + x188 ++ x189 + x204 + x206 + x207 + x208 + x209 + x211 + x218 + x219 + x220 ++ x221 + x222 + x224 + x227 + x228 + x229 + x264 + x286 + x294 + x313 ++ x339 + x340 + x341 + x383 + x397 + x402 + x428 + x429 + x430 + x442 ++ x443 + x445 + x446 <= 1 + +x2 + x48 + x53 + x54 + x63 + x66 + x67 + x71 + x165 + x198 ++ x200 + x204 + x206 + x207 + x209 + x218 + x222 + x223 + x227 + x228 ++ x229 + x264 + x293 + x294 + x301 + x318 + x320 + x383 + x397 + x401 ++ x402 + x410 + x425 + x428 + x429 + x459 + x466 + x488 <= 1 + +x33 + x48 + x53 + x54 + x63 + x64 + x66 + x67 + x69 + x71 ++ x85 + x133 + x156 + x181 + x200 + x204 + x206 + x209 + x218 + x223 ++ x255 + x264 + x273 + x274 + x318 + x320 + x350 + x383 + x397 + x401 ++ x425 + x428 + x429 + x430 + x459 + x466 + x469 <= 1 + +x10 + x11 + x62 + x63 + x64 + x67 + x69 + x70 + x71 + x85 ++ x86 + x88 + x106 + x107 + x114 + x133 + x156 + x206 + x223 + x244 ++ x253 + x264 + x292 + x294 + x317 + x318 + x320 + x321 + x383 + x390 ++ x401 + x428 + x429 + x436 + x437 + x439 + x440 + x459 + x476 <= 1 + +x10 + x26 + x29 + x45 + x63 + x64 + x67 + x70 + x71 + x86 ++ x88 + x106 + x107 + x114 + x156 + x161 + x182 + x184 + x186 + x206 ++ x223 + x264 + x291 + x292 + x293 + x294 + x298 + x303 + x317 + x318 ++ x320 + x321 + x322 + x350 + x383 + x390 + x418 + x422 + x436 + x437 ++ x439 + x440 + x459 + x472 + x476 + x492 + x495 <= 1 + +x10 + x24 + x25 + x26 + x29 + x45 + x54 + x63 + x64 + x67 ++ x86 + x156 + x161 + x184 + x186 + x202 + x206 + x275 + x288 + x291 ++ x293 + x294 + x296 + x298 + x299 + x300 + x304 + x305 + x350 + x383 ++ x390 + x422 + x426 + x439 + x440 + x450 + x451 + x452 + x459 + x472 ++ x473 + x482 + x483 + x484 + x497 + x498 <= 1 + +x6 + x8 + x10 + x24 + x25 + x26 + x28 + x29 + x45 + x46 ++ x64 + x67 + x105 + x182 + x183 + x184 + x185 + x186 + x187 + x206 ++ x237 + x254 + x269 + x275 + x276 + x288 + x289 + x290 + x293 + x294 ++ x296 + x298 + x299 + x300 + x304 + x305 + x306 + x307 + x385 + x387 ++ x389 + x390 + x422 + x423 + x439 + x440 + x447 + x450 + x451 + x452 ++ x462 + x472 + x473 + x474 + x481 + x482 + x484 + x485 + x496 + x497 ++ x498 + x501 <= 1 + +x6 + x8 + x10 + x24 + x28 + x45 + x67 + x183 + x184 + x185 ++ x186 + x187 + x188 + x254 + x276 + x288 + x290 + x292 + x293 + x294 ++ x296 + x298 + x299 + x304 + x307 + x354 + x385 + x386 + x389 + x394 ++ x450 + x451 + x452 + x462 + x473 + x475 + x481 + x484 + x485 + x496 ++ x498 <= 1 + +x12 + x14 + x17 + x44 + x65 + x132 + x133 + x139 + x141 + x142 ++ x143 + x144 + x180 + x188 + x189 + x199 + x204 + x207 + x208 + x209 ++ x219 + x226 + x228 + x229 + x264 + x268 + x297 + x309 + x313 + x339 ++ x340 + x341 + x343 + x344 + x349 + x357 + x383 + x398 + x413 + x487 + <= 1 + +x0 + x2 + x5 + x14 + x15 + x16 + x44 + x46 + x48 + x52 ++ x53 + x55 + x65 + x68 + x110 + x132 + x133 + x135 + x136 + x138 ++ x139 + x140 + x141 + x142 + x143 + x180 + x188 + x189 + x199 + x204 ++ x207 + x208 + x209 + x219 + x221 + x222 + x224 + x226 + x227 + x228 ++ x229 + x264 + x267 + x268 + x269 + x300 + x301 + x302 + x308 + x309 ++ x313 + x318 + x325 + x339 + x340 + x341 + x343 + x344 + x357 + x358 ++ x359 + x383 + x402 + x415 + x429 + x444 + x445 + x446 + x487 <= 1 + +x16 + x44 + x48 + x50 + x52 + x53 + x54 + x55 + x63 + x65 ++ x68 + x88 + x110 + x132 + x133 + x136 + x137 + x138 + x158 + x176 ++ x180 + x188 + x189 + x199 + x204 + x207 + x208 + x209 + x218 + x220 ++ x221 + x222 + x224 + x227 + x228 + x229 + x235 + x252 + x264 + x300 ++ x308 + x313 + x318 + x339 + x340 + x359 + x365 + x372 + x383 + x402 ++ x415 + x430 + x443 + x446 + x470 + x474 <= 1 + +x9 + x33 + x50 + x52 + x53 + x54 + x56 + x62 + x63 + x65 ++ x68 + x71 + x88 + x132 + x133 + x136 + x158 + x180 + x204 + x207 ++ x209 + x218 + x220 + x222 + x224 + x227 + x228 + x229 + x252 + x253 ++ x264 + x293 + x300 + x301 + x318 + x320 + x383 + x397 + x401 + x402 ++ x425 + x428 + x429 + x430 + x465 + x466 + x470 + x474 <= 1 + +x9 + x30 + x33 + x44 + x48 + x50 + x51 + x52 + x53 + x54 ++ x62 + x63 + x64 + x66 + x69 + x71 + x85 + x86 + x87 + x88 ++ x89 + x90 + x119 + x133 + x156 + x158 + x161 + x171 + x176 + x179 ++ x181 + x200 + x204 + x206 + x209 + x218 + x228 + x229 + x250 + x253 ++ x255 + x261 + x264 + x269 + x273 + x274 + x289 + x291 + x298 + x300 ++ x301 + x317 + x318 + x320 + x379 + x382 + x383 + x397 + x401 + x425 ++ x428 + x430 + x465 + x466 + x467 + x469 + x470 + x474 <= 1 + +x10 + x27 + x30 + x31 + x33 + x50 + x52 + x62 + x63 + x70 ++ x85 + x86 + x87 + x88 + x106 + x108 + x156 + x161 + x176 + x178 ++ x179 + x181 + x185 + x204 + x206 + x218 + x220 + x244 + x249 + x250 ++ x253 + x259 + x264 + x274 + x286 + x288 + x291 + x292 + x298 + x301 ++ x317 + x318 + x320 + x321 + x345 + x350 + x383 + x401 + x425 + x437 ++ x439 + x465 + x466 + x467 + x469 <= 1 + +x30 + x33 + x45 + x50 + x64 + x66 + x67 + x71 + x85 + x86 ++ x87 + x88 + x95 + x107 + x108 + x156 + x160 + x161 + x176 + x182 ++ x187 + x206 + x247 + x249 + x264 + x273 + x286 + x287 + x289 + x291 ++ x292 + x298 + x317 + x319 + x321 + x322 + x345 + x349 + x350 + x356 ++ x389 + x390 + x418 + x420 + x422 + x423 + x425 + x437 + x439 + x448 ++ x495 + x501 <= 1 + +x8 + x9 + x11 + x25 + x30 + x33 + x35 + x57 + x61 + x88 ++ x92 + x94 + x95 + x161 + x176 + x179 + x182 + x185 + x186 + x187 ++ x190 + x206 + x248 + x254 + x264 + x265 + x269 + x274 + x286 + x287 ++ x289 + x290 + x291 + x293 + x294 + x298 + x317 + x321 + x345 + x347 ++ x349 + x350 + x351 + x354 + x356 + x384 + x385 + x387 + x389 + x418 ++ x423 + x425 + x427 + x439 + x496 + x497 + x500 + x501 <= 1 + +x6 + x8 + x11 + x25 + x28 + x29 + x35 + x64 + x92 + x95 ++ x182 + x183 + x184 + x185 + x186 + x187 + x206 + x243 + x269 + x278 ++ x286 + x287 + x288 + x289 + x290 + x291 + x293 + x294 + x296 + x298 ++ x299 + x306 + x307 + x349 + x354 + x356 + x385 + x387 + x389 + x390 ++ x418 + x423 + x427 + x439 + x440 + x450 + x451 + x462 + x496 + x497 ++ x500 + x501 <= 1 + +x6 + x8 + x11 + x25 + x28 + x59 + x160 + x183 + x185 + x186 ++ x222 + x238 + x269 + x278 + x287 + x288 + x289 + x290 + x293 + x294 ++ x296 + x298 + x299 + x349 + x354 + x385 + x389 + x427 + x450 + x451 ++ x452 + x462 + x475 + x485 + x500 <= 1 + +x5 + x12 + x13 + x15 + x16 + x17 + x46 + x49 + x53 + x65 ++ x68 + x110 + x127 + x132 + x133 + x135 + x136 + x138 + x140 + x141 ++ x142 + x144 + x175 + x177 + x180 + x188 + x189 + x192 + x199 + x204 ++ x207 + x209 + x224 + x226 + x227 + x228 + x229 + x264 + x266 + x268 ++ x297 + x300 + x302 + x308 + x309 + x313 + x325 + x339 + x340 + x341 ++ x343 + x344 + x357 + x383 + x413 + x429 + x436 <= 1 + +x1 + x5 + x16 + x17 + x44 + x45 + x46 + x47 + x48 + x49 ++ x55 + x59 + x65 + x74 + x110 + x112 + x128 + x132 + x133 + x135 ++ x138 + x139 + x140 + x141 + x144 + x170 + x171 + x175 + x177 + x179 ++ x180 + x188 + x189 + x192 + x199 + x204 + x207 + x208 + x209 + x219 ++ x221 + x224 + x226 + x227 + x229 + x232 + x252 + x264 + x266 + x267 ++ x268 + x269 + x293 + x298 + x301 + x309 + x313 + x326 + x339 + x340 ++ x341 + x342 + x343 + x344 + x383 + x402 + x412 + x413 + x415 + x416 ++ x429 + x487 <= 1 + +x0 + x1 + x2 + x5 + x14 + x27 + x34 + x44 + x45 + x48 ++ x50 + x52 + x53 + x55 + x59 + x63 + x65 + x68 + x74 + x89 ++ x132 + x133 + x134 + x135 + x136 + x138 + x141 + x158 + x170 + x171 ++ x175 + x177 + x179 + x180 + x188 + x189 + x192 + x199 + x204 + x205 ++ x207 + x208 + x209 + x219 + x220 + x224 + x226 + x227 + x228 + x229 ++ x244 + x250 + x252 + x264 + x268 + x269 + x292 + x297 + x300 + x301 ++ x308 + x309 + x310 + x313 + x339 + x340 + x341 + x343 + x344 + x383 ++ x402 + x409 + x413 + x414 + x415 + x416 + x430 + x438 + x445 + x446 ++ x474 <= 1 + +x1 + x2 + x4 + x5 + x24 + x26 + x27 + x34 + x36 + x39 ++ x44 + x45 + x46 + x47 + x48 + x49 + x53 + x55 + x59 + x65 ++ x66 + x68 + x69 + x74 + x85 + x87 + x89 + x90 + x132 + x133 ++ x135 + x136 + x138 + x157 + x160 + x161 + x171 + x176 + x179 + x188 ++ x189 + x192 + x199 + x204 + x205 + x207 + x208 + x209 + x224 + x226 ++ x227 + x228 + x244 + x250 + x252 + x255 + x264 + x268 + x292 + x293 ++ x295 + x297 + x300 + x301 + x302 + x308 + x310 + x313 + x340 + x344 ++ x383 + x401 + x409 + x416 + x438 + x447 + x463 + x464 + x489 <= 1 + +x1 + x2 + x4 + x24 + x27 + x30 + x34 + x39 + x44 + x45 ++ x46 + x47 + x49 + x50 + x51 + x52 + x53 + x54 + x55 + x62 ++ x66 + x69 + x71 + x72 + x85 + x87 + x88 + x89 + x90 + x94 ++ x119 + x132 + x136 + x138 + x156 + x158 + x160 + x161 + x171 + x176 ++ x179 + x181 + x189 + x192 + x193 + x205 + x209 + x224 + x225 + x227 ++ x244 + x250 + x251 + x253 + x254 + x259 + x260 + x261 + x264 + x267 ++ x269 + x273 + x274 + x292 + x300 + x301 + x302 + x308 + x332 + x353 ++ x355 + x383 + x384 + x401 + x425 + x426 + x430 + x467 + x469 + x470 + <= 1 + +x9 + x27 + x31 + x32 + x44 + x52 + x62 + x66 + x69 + x85 ++ x87 + x88 + x89 + x90 + x94 + x96 + x108 + x116 + x156 + x158 ++ x171 + x176 + x178 + x179 + x181 + x182 + x185 + x190 + x192 + x202 ++ x204 + x205 + x206 + x244 + x250 + x253 + x254 + x259 + x261 + x264 ++ x269 + x270 + x271 + x272 + x273 + x274 + x286 + x289 + x291 + x292 ++ x301 + x312 + x319 + x320 + x332 + x353 + x379 + x383 + x401 + x425 ++ x426 + x428 + x430 + x436 + x465 + x466 + x467 + x469 + x470 + x494 + <= 1 + +x9 + x11 + x31 + x33 + x35 + x57 + x66 + x85 + x86 + x87 ++ x89 + x90 + x92 + x94 + x95 + x96 + x116 + x156 + x161 + x176 ++ x179 + x182 + x185 + x187 + x190 + x206 + x216 + x225 + x247 + x249 ++ x254 + x264 + x265 + x269 + x270 + x272 + x273 + x274 + x286 + x287 ++ x289 + x291 + x292 + x298 + x301 + x317 + x319 + x321 + x350 + x351 ++ x354 + x356 + x379 + x384 + x387 + x388 + x409 + x418 + x419 + x423 ++ x425 + x426 + x439 + x465 + x467 + x468 + x470 + x501 <= 1 + +x9 + x11 + x35 + x57 + x59 + x61 + x92 + x94 + x96 + x116 ++ x161 + x182 + x183 + x186 + x187 + x206 + x225 + x247 + x248 + x269 ++ x286 + x287 + x289 + x290 + x291 + x294 + x298 + x321 + x345 + x347 ++ x349 + x351 + x354 + x356 + x379 + x384 + x385 + x387 + x388 + x423 ++ x426 + x427 + x460 <= 1 + +x6 + x8 + x9 + x25 + x35 + x57 + x84 + x179 + x182 + x183 ++ x186 + x187 + x193 + x213 + x248 + x269 + x286 + x287 + x288 + x289 ++ x290 + x291 + x293 + x294 + x296 + x345 + x349 + x351 + x352 + x354 ++ x355 + x356 + x385 + x387 + x388 + x389 + x390 + x399 + x427 + x460 ++ x462 + x497 + x500 + x501 <= 1 + +x6 + x8 + x25 + x28 + x35 + x59 + x61 + x93 + x182 + x183 ++ x185 + x187 + x202 + x212 + x213 + x238 + x286 + x287 + x288 + x289 ++ x290 + x294 + x299 + x349 + x351 + x354 + x356 + x385 + x387 + x388 ++ x399 + x427 + x460 + x500 <= 1 + +x0 + x5 + x12 + x13 + x15 + x16 + x17 + x46 + x47 + x48 ++ x49 + x68 + x109 + x110 + x111 + x127 + x132 + x133 + x135 + x175 ++ x177 + x180 + x188 + x189 + x192 + x204 + x207 + x209 + x226 + x228 ++ x229 + x230 + x233 + x234 + x264 + x266 + x267 + x268 + x297 + x298 ++ x300 + x302 + x323 + x325 + x326 + x339 + x342 + x343 + x344 + x379 ++ x383 + x413 + x416 + x436 + x438 + x441 <= 1 + +x0 + x5 + x12 + x15 + x29 + x46 + x47 + x48 + x49 + x111 ++ x112 + x132 + x134 + x135 + x138 + x144 + x172 + x175 + x176 + x177 ++ x180 + x188 + x189 + x192 + x193 + x205 + x208 + x209 + x224 + x230 ++ x232 + x243 + x266 + x267 + x268 + x297 + x298 + x302 + x313 + x323 ++ x324 + x326 + x339 + x342 + x344 + x409 + x412 + x413 + x416 + x438 + <= 1 + +x0 + x1 + x2 + x4 + x5 + x13 + x27 + x34 + x44 + x45 ++ x46 + x47 + x48 + x49 + x50 + x55 + x59 + x65 + x68 + x74 ++ x111 + x128 + x132 + x133 + x134 + x135 + x136 + x138 + x157 + x160 ++ x170 + x171 + x172 + x175 + x177 + x179 + x180 + x188 + x189 + x190 ++ x192 + x199 + x203 + x204 + x205 + x207 + x208 + x209 + x226 + x227 ++ x231 + x232 + x234 + x244 + x245 + x250 + x252 + x255 + x266 + x267 ++ x268 + x269 + x293 + x297 + x298 + x300 + x301 + x303 + x309 + x310 ++ x313 + x324 + x340 + x342 + x343 + x344 + x380 + x383 + x409 + x413 ++ x414 + x415 + x416 + x438 + x447 + x463 + x464 + x487 + x489 <= 1 + +x0 + x1 + x2 + x4 + x24 + x26 + x27 + x41 + x44 + x45 ++ x46 + x47 + x49 + x55 + x68 + x74 + x90 + x133 + x134 + x135 ++ x136 + x138 + x157 + x158 + x160 + x171 + x172 + x174 + x177 + x179 ++ x180 + x188 + x192 + x199 + x204 + x205 + x206 + x207 + x208 + x209 ++ x224 + x226 + x231 + x244 + x252 + x255 + x265 + x268 + x293 + x295 ++ x297 + x298 + x300 + x301 + x302 + x308 + x310 + x311 + x313 + x335 ++ x340 + x342 + x343 + x344 + x380 + x381 + x409 + x413 + x414 + x416 ++ x438 + x449 + x463 + x464 + x487 + x489 <= 1 + +x27 + x30 + x31 + x32 + x34 + x44 + x46 + x47 + x49 + x51 ++ x60 + x62 + x73 + x85 + x89 + x90 + x119 + x131 + x156 + x157 ++ x158 + x160 + x176 + x181 + x193 + x202 + x205 + x224 + x225 + x239 ++ x240 + x241 + x244 + x250 + x251 + x254 + x256 + x257 + x259 + x260 ++ x261 + x264 + x265 + x266 + x267 + x268 + x269 + x292 + x301 + x384 ++ x401 + x414 + x416 + x422 + x436 <= 1 + +x4 + x30 + x31 + x32 + x34 + x45 + x46 + x47 + x50 + x51 ++ x52 + x54 + x60 + x62 + x66 + x69 + x72 + x87 + x89 + x90 ++ x119 + x130 + x156 + x157 + x158 + x159 + x160 + x161 + x176 + x178 ++ x181 + x182 + x190 + x202 + x205 + x206 + x215 + x224 + x225 + x239 ++ x244 + x250 + x251 + x253 + x254 + x256 + x259 + x260 + x261 + x264 ++ x266 + x267 + x269 + x270 + x271 + x272 + x289 + x301 + x308 + x312 ++ x353 + x388 + x401 + x411 + x425 + x426 + x430 + x436 + x466 + x467 ++ x468 + x470 + x486 <= 1 + +x9 + x11 + x31 + x40 + x54 + x57 + x61 + x62 + x72 + x87 ++ x89 + x90 + x95 + x96 + x116 + x127 + x159 + x160 + x161 + x176 ++ x178 + x181 + x182 + x187 + x190 + x191 + x206 + x215 + x216 + x222 ++ x225 + x240 + x251 + x254 + x264 + x267 + x269 + x270 + x271 + x272 ++ x273 + x286 + x289 + x291 + x293 + x294 + x295 + x296 + x301 + x312 ++ x317 + x319 + x350 + x351 + x353 + x377 + x379 + x380 + x384 + x386 ++ x387 + x388 + x406 + x407 + x409 + x411 + x418 + x419 + x421 + x423 ++ x425 + x426 + x430 + x437 + x465 + x467 + x468 <= 1 + +x3 + x9 + x11 + x21 + x31 + x57 + x62 + x96 + x116 + x127 ++ x160 + x161 + x206 + x215 + x216 + x218 + x225 + x269 + x286 + x287 ++ x289 + x291 + x298 + x319 + x347 + x351 + x353 + x354 + x356 + x384 ++ x387 + x388 + x406 + x411 + x421 + x468 <= 1 + +x6 + x7 + x8 + x9 + x11 + x35 + x57 + x59 + x61 + x92 ++ x93 + x186 + x187 + x188 + x192 + x193 + x201 + x213 + x286 + x287 ++ x288 + x290 + x291 + x295 + x299 + x345 + x351 + x352 + x354 + x355 ++ x370 + x378 + x384 + x385 + x386 + x388 + x389 + x399 + x411 + x427 ++ x460 <= 1 + +x6 + x7 + x28 + x30 + x35 + x57 + x59 + x60 + x61 + x91 ++ x93 + x130 + x155 + x183 + x202 + x210 + x212 + x213 + x237 + x238 ++ x286 + x287 + x288 + x290 + x295 + x296 + x351 + x352 + x354 + x355 ++ x367 + x370 + x375 + x378 + x385 + x388 + x406 + x411 + x427 + x459 ++ x460 + x499 <= 1 + +x0 + x13 + x17 + x68 + x109 + x111 + x112 + x117 + x127 + x132 ++ x134 + x171 + x175 + x180 + x188 + x189 + x190 + x192 + x201 + x204 ++ x234 + x241 + x243 + x245 + x255 + x265 + x266 + x292 + x297 + x298 ++ x300 + x302 + x339 + x342 + x343 + x344 + x379 + x412 + x415 + x438 ++ x441 <= 1 + +x0 + x2 + x4 + x12 + x13 + x15 + x44 + x46 + x47 + x48 ++ x49 + x65 + x74 + x109 + x111 + x112 + x115 + x117 + x127 + x132 ++ x133 + x134 + x135 + x144 + x157 + x170 + x171 + x172 + x175 + x177 ++ x179 + x180 + x188 + x189 + x190 + x192 + x193 + x203 + x204 + x205 ++ x207 + x208 + x209 + x226 + x227 + x230 + x231 + x233 + x234 + x243 ++ x245 + x255 + x258 + x264 + x265 + x266 + x267 + x268 + x293 + x297 ++ x298 + x300 + x302 + x303 + x309 + x310 + x311 + x313 + x323 + x324 ++ x339 + x342 + x343 + x344 + x379 + x380 + x409 + x412 + x413 + x414 ++ x415 + x416 + x417 + x438 + x441 + x464 <= 1 + +x0 + x1 + x2 + x4 + x41 + x46 + x47 + x48 + x49 + x74 ++ x117 + x127 + x129 + x133 + x134 + x135 + x136 + x138 + x157 + x170 ++ x171 + x172 + x177 + x179 + x180 + x188 + x189 + x191 + x192 + x193 ++ x204 + x205 + x207 + x208 + x209 + x226 + x227 + x230 + x231 + x243 ++ x252 + x258 + x262 + x266 + x267 + x268 + x269 + x297 + x298 + x301 ++ x302 + x303 + x309 + x310 + x313 + x340 + x342 + x343 + x344 + x379 ++ x382 + x412 + x413 + x414 + x415 + x416 + x438 + x441 + x448 + x464 ++ x487 + x488 <= 1 + +x0 + x1 + x2 + x4 + x24 + x41 + x44 + x45 + x46 + x47 ++ x48 + x49 + x68 + x74 + x119 + x128 + x129 + x131 + x133 + x134 ++ x135 + x136 + x137 + x138 + x157 + x160 + x161 + x170 + x172 + x174 ++ x177 + x179 + x188 + x189 + x191 + x192 + x193 + x198 + x199 + x204 ++ x205 + x206 + x207 + x208 + x209 + x224 + x226 + x243 + x252 + x255 ++ x258 + x260 + x265 + x267 + x268 + x269 + x293 + x295 + x296 + x297 ++ x298 + x299 + x300 + x301 + x302 + x303 + x308 + x310 + x311 + x313 ++ x335 + x342 + x343 + x344 + x380 + x381 + x382 + x384 + x395 + x407 ++ x408 + x410 + x412 + x413 + x414 + x415 + x416 + x417 + x437 + x448 ++ x449 + x463 + x486 + x487 + x488 + x489 <= 1 + +x1 + x31 + x32 + x44 + x45 + x46 + x47 + x48 + x49 + x58 ++ x60 + x61 + x62 + x73 + x89 + x90 + x115 + x117 + x119 + x130 ++ x131 + x134 + x135 + x137 + x156 + x157 + x158 + x159 + x160 + x161 ++ x176 + x181 + x183 + x189 + x190 + x191 + x192 + x193 + x198 + x199 ++ x200 + x201 + x202 + x204 + x205 + x207 + x209 + x225 + x235 + x239 ++ x240 + x244 + x251 + x257 + x259 + x260 + x261 + x263 + x265 + x266 ++ x267 + x268 + x269 + x293 + x294 + x295 + x301 + x302 + x310 + x311 ++ x312 + x314 + x374 + x376 + x380 + x382 + x384 + x388 + x406 + x407 ++ x408 + x409 + x410 + x414 + x416 + x417 + x419 + x422 + x436 + x437 ++ x449 + x450 <= 1 + +x1 + x31 + x32 + x34 + x40 + x44 + x45 + x46 + x49 + x54 ++ x58 + x60 + x61 + x62 + x69 + x72 + x73 + x117 + x119 + x130 ++ x131 + x158 + x159 + x160 + x161 + x163 + x169 + x177 + x178 + x181 ++ x183 + x189 + x190 + x191 + x193 + x199 + x201 + x202 + x205 + x209 ++ x225 + x240 + x244 + x251 + x253 + x259 + x260 + x261 + x265 + x266 ++ x267 + x269 + x271 + x280 + x293 + x294 + x295 + x296 + x301 + x303 ++ x310 + x312 + x328 + x348 + x353 + x373 + x374 + x375 + x376 + x377 ++ x379 + x380 + x384 + x386 + x388 + x398 + x399 + x401 + x406 + x409 ++ x411 + x417 + x419 + x428 + x430 + x437 + x449 + x455 + x460 + x468 ++ x486 + x488 <= 1 + +x20 + x34 + x40 + x45 + x46 + x48 + x57 + x60 + x61 + x62 ++ x69 + x72 + x73 + x87 + x116 + x117 + x127 + x128 + x130 + x131 ++ x158 + x160 + x161 + x167 + x178 + x181 + x189 + x190 + x191 + x192 ++ x193 + x196 + x199 + x201 + x202 + x209 + x225 + x235 + x237 + x240 ++ x251 + x264 + x266 + x267 + x269 + x270 + x271 + x272 + x280 + x282 ++ x291 + x292 + x293 + x294 + x295 + x296 + x297 + x301 + x312 + x319 ++ x328 + x334 + x338 + x348 + x352 + x353 + x355 + x360 + x373 + x374 ++ x376 + x377 + x378 + x379 + x380 + x382 + x384 + x386 + x387 + x388 ++ x397 + x398 + x399 + x400 + x406 + x407 + x408 + x409 + x411 + x418 ++ x419 + x420 + x421 + x423 + x426 + x427 + x428 + x430 + x437 + x439 ++ x459 + x465 + x468 <= 1 + +x20 + x33 + x34 + x45 + x47 + x57 + x61 + x77 + x127 + x128 ++ x130 + x131 + x164 + x167 + x178 + x190 + x191 + x192 + x193 + x201 ++ x209 + x225 + x235 + x236 + x237 + x251 + x266 + x267 + x269 + x270 ++ x282 + x292 + x295 + x296 + x309 + x312 + x319 + x348 + x352 + x355 ++ x373 + x376 + x377 + x378 + x380 + x384 + x385 + x386 + x397 + x399 ++ x406 + x408 + x409 + x411 + x420 + x421 + x427 + x430 + x437 + x459 ++ x461 + x468 <= 1 + +x7 + x11 + x20 + x45 + x46 + x57 + x59 + x61 + x93 + x127 ++ x178 + x186 + x188 + x189 + x190 + x191 + x192 + x193 + x201 + x208 ++ x214 + x225 + x235 + x238 + x279 + x287 + x288 + x295 + x296 + x297 ++ x309 + x312 + x348 + x351 + x352 + x355 + x366 + x370 + x373 + x375 ++ x378 + x384 + x385 + x386 + x389 + x399 + x406 + x411 + x413 + x420 ++ x427 + x437 <= 1 + +x6 + x7 + x30 + x57 + x59 + x60 + x61 + x62 + x80 + x93 ++ x117 + x130 + x150 + x154 + x155 + x178 + x188 + x190 + x191 + x192 ++ x193 + x198 + x201 + x208 + x210 + x212 + x214 + x235 + x236 + x237 ++ x238 + x269 + x287 + x288 + x290 + x295 + x296 + x312 + x348 + x352 ++ x355 + x366 + x367 + x370 + x373 + x375 + x378 + x384 + x386 + x405 ++ x406 + x407 + x411 + x421 + x427 + x499 <= 1 + +x0 + x48 + x67 + x68 + x112 + x132 + x135 + x137 + x171 + x173 ++ x175 + x188 + x189 + x192 + x193 + x204 + x233 + x239 + x241 + x245 ++ x262 + x263 + x265 + x266 + x267 + x292 + x297 + x298 + x302 + x311 ++ x312 + x347 + x379 + x381 + x391 + x410 + x415 + x416 + x436 + x438 ++ x441 + x463 <= 1 + +x4 + x19 + x46 + x47 + x48 + x74 + x111 + x112 + x115 + x120 ++ x132 + x134 + x135 + x171 + x173 + x175 + x177 + x188 + x189 + x190 ++ x192 + x193 + x203 + x204 + x226 + x233 + x239 + x241 + x243 + x245 ++ x258 + x262 + x263 + x264 + x265 + x266 + x267 + x268 + x292 + x295 ++ x297 + x298 + x302 + x303 + x309 + x311 + x313 + x335 + x343 + x347 ++ x379 + x380 + x381 + x382 + x391 + x396 + x408 + x409 + x410 + x412 ++ x414 + x415 + x416 + x436 + x438 + x441 + x463 <= 1 + +x4 + x44 + x47 + x48 + x49 + x109 + x111 + x112 + x115 + x117 ++ x131 + x134 + x135 + x137 + x159 + x170 + x175 + x177 + x188 + x189 ++ x190 + x191 + x192 + x193 + x204 + x205 + x208 + x226 + x239 + x241 ++ x243 + x245 + x246 + x258 + x262 + x263 + x264 + x265 + x266 + x267 ++ x268 + x290 + x292 + x293 + x296 + x297 + x298 + x300 + x302 + x303 ++ x308 + x310 + x311 + x322 + x335 + x342 + x343 + x379 + x380 + x381 ++ x382 + x384 + x396 + x407 + x408 + x409 + x410 + x412 + x414 + x417 ++ x440 + x449 + x486 + x489 <= 1 + +x41 + x44 + x45 + x46 + x47 + x48 + x49 + x58 + x73 + x83 ++ x115 + x117 + x119 + x126 + x128 + x129 + x131 + x133 + x137 + x138 ++ x156 + x157 + x159 + x170 + x172 + x179 + x189 + x190 + x191 + x192 ++ x193 + x198 + x199 + x203 + x204 + x205 + x207 + x208 + x224 + x226 ++ x239 + x240 + x243 + x245 + x258 + x259 + x260 + x262 + x263 + x265 ++ x266 + x267 + x268 + x290 + x293 + x295 + x296 + x297 + x299 + x300 ++ x303 + x308 + x310 + x311 + x313 + x335 + x342 + x379 + x380 + x381 ++ x382 + x384 + x389 + x393 + x396 + x407 + x408 + x409 + x410 + x412 ++ x413 + x414 + x415 + x417 + x437 + x440 + x441 + x447 + x448 + x449 ++ x486 + x487 + x489 + x491 <= 1 + +x1 + x2 + x32 + x44 + x45 + x46 + x47 + x48 + x49 + x68 ++ x73 + x115 + x117 + x119 + x126 + x129 + x131 + x134 + x135 + x137 ++ x156 + x157 + x159 + x160 + x161 + x163 + x170 + x172 + x174 + x181 ++ x189 + x190 + x191 + x192 + x193 + x198 + x199 + x202 + x204 + x205 ++ x206 + x207 + x208 + x209 + x225 + x226 + x235 + x239 + x240 + x243 ++ x245 + x258 + x259 + x260 + x261 + x263 + x265 + x266 + x267 + x268 ++ x269 + x293 + x295 + x296 + x297 + x299 + x300 + x301 + x302 + x303 ++ x308 + x310 + x311 + x314 + x315 + x335 + x374 + x375 + x379 + x380 ++ x382 + x384 + x389 + x393 + x394 + x395 + x407 + x408 + x409 + x410 ++ x413 + x414 + x415 + x417 + x437 + x447 + x448 + x449 + x455 + x460 ++ x461 + x463 + x486 + x487 + x488 + x489 <= 1 + +x1 + x32 + x37 + x38 + x44 + x45 + x46 + x48 + x49 + x58 ++ x60 + x61 + x62 + x73 + x100 + x116 + x117 + x119 + x128 + x129 ++ x131 + x134 + x135 + x152 + x156 + x157 + x158 + x160 + x161 + x162 ++ x163 + x172 + x177 + x181 + x189 + x190 + x191 + x193 + x199 + x201 ++ x202 + x203 + x204 + x205 + x207 + x209 + x225 + x226 + x239 + x240 ++ x242 + x259 + x260 + x261 + x263 + x265 + x266 + x267 + x269 + x294 ++ x295 + x296 + x297 + x302 + x303 + x310 + x312 + x315 + x335 + x337 ++ x353 + x364 + x375 + x377 + x379 + x386 + x398 + x401 + x406 + x407 ++ x408 + x409 + x411 + x413 + x424 + x437 + x448 + x449 + x455 + x456 ++ x460 + x462 + x463 + x464 + x486 + x488 <= 1 + +x7 + x39 + x40 + x44 + x45 + x46 + x48 + x57 + x58 + x59 ++ x60 + x62 + x72 + x97 + x102 + x127 + x128 + x130 + x131 + x152 ++ x158 + x161 + x167 + x178 + x181 + x188 + x189 + x190 + x191 + x192 ++ x193 + x196 + x199 + x200 + x201 + x202 + x203 + x238 + x265 + x266 ++ x267 + x269 + x270 + x271 + x282 + x292 + x293 + x294 + x295 + x296 ++ x297 + x301 + x319 + x338 + x342 + x353 + x360 + x361 + x362 + x363 ++ x371 + x373 + x376 + x377 + x378 + x379 + x380 + x382 + x384 + x386 ++ x388 + x397 + x399 + x400 + x406 + x407 + x408 + x409 + x411 + x418 ++ x419 + x420 + x421 + x426 + x459 + x460 + x461 + x463 <= 1 + +x7 + x33 + x36 + x39 + x40 + x44 + x45 + x47 + x48 + x57 ++ x58 + x60 + x61 + x62 + x70 + x72 + x77 + x117 + x127 + x128 ++ x130 + x131 + x153 + x155 + x160 + x161 + x162 + x164 + x167 + x178 ++ x188 + x190 + x191 + x192 + x193 + x194 + x195 + x196 + x199 + x201 ++ x202 + x203 + x211 + x225 + x235 + x236 + x237 + x238 + x251 + x265 ++ x266 + x267 + x269 + x272 + x279 + x280 + x282 + x292 + x293 + x294 ++ x295 + x296 + x297 + x301 + x303 + x312 + x319 + x328 + x334 + x338 ++ x348 + x352 + x353 + x355 + x361 + x362 + x363 + x371 + x373 + x374 ++ x375 + x376 + x377 + x378 + x379 + x382 + x384 + x386 + x397 + x398 ++ x399 + x400 + x405 + x406 + x407 + x408 + x409 + x411 + x419 + x420 ++ x421 + x426 + x427 + x437 + x439 + x454 + x459 + x461 + x463 + x499 + <= 1 + +x7 + x36 + x39 + x41 + x42 + x43 + x57 + x58 + x59 + x60 ++ x61 + x62 + x70 + x80 + x117 + x127 + x128 + x130 + x131 + x154 ++ x155 + x178 + x188 + x189 + x190 + x191 + x192 + x193 + x194 + x195 ++ x201 + x205 + x208 + x210 + x211 + x212 + x214 + x225 + x235 + x236 ++ x237 + x238 + x266 + x269 + x279 + x282 + x287 + x288 + x292 + x294 ++ x295 + x296 + x297 + x309 + x312 + x319 + x334 + x348 + x351 + x352 ++ x355 + x361 + x362 + x366 + x370 + x373 + x375 + x378 + x384 + x386 ++ x398 + x399 + x405 + x406 + x407 + x408 + x409 + x411 + x420 + x421 ++ x437 + x499 <= 1 + +x7 + x42 + x57 + x59 + x60 + x61 + x70 + x76 + x80 + x127 ++ x130 + x150 + x154 + x178 + x190 + x191 + x192 + x193 + x194 + x197 ++ x210 + x214 + x235 + x236 + x237 + x238 + x279 + x281 + x294 + x295 ++ x296 + x309 + x312 + x333 + x345 + x348 + x352 + x355 + x366 + x369 ++ x371 + x373 + x375 + x378 + x384 + x398 + x403 + x405 + x406 + x407 ++ x408 + x409 + x411 + x462 <= 1 + +x0 + x3 + x19 + x21 + x22 + x48 + x49 + x67 + x118 + x122 ++ x124 + x132 + x137 + x157 + x173 + x185 + x188 + x189 + x191 + x192 ++ x193 + x199 + x204 + x205 + x207 + x245 + x246 + x259 + x262 + x263 ++ x265 + x266 + x267 + x268 + x302 + x309 + x310 + x322 + x347 + x380 ++ x381 + x412 + x438 + x441 + x463 <= 1 + +x3 + x4 + x18 + x19 + x21 + x22 + x47 + x48 + x49 + x109 ++ x118 + x120 + x132 + x134 + x137 + x157 + x159 + x173 + x175 + x188 ++ x189 + x190 + x191 + x192 + x193 + x198 + x200 + x205 + x221 + x239 ++ x241 + x243 + x245 + x246 + x258 + x259 + x262 + x263 + x264 + x265 ++ x266 + x267 + x268 + x293 + x295 + x297 + x302 + x309 + x310 + x311 ++ x322 + x347 + x380 + x381 + x391 + x392 + x393 + x394 + x407 + x408 ++ x412 + x414 + x416 + x417 + x436 + x441 + x463 + x490 <= 1 + +x3 + x4 + x21 + x22 + x38 + x41 + x44 + x46 + x47 + x49 ++ x109 + x115 + x118 + x120 + x121 + x126 + x134 + x137 + x157 + x159 ++ x170 + x173 + x174 + x177 + x188 + x189 + x190 + x191 + x192 + x193 ++ x198 + x200 + x205 + x207 + x241 + x242 + x245 + x246 + x258 + x262 ++ x263 + x265 + x266 + x267 + x268 + x292 + x293 + x295 + x297 + x300 ++ x303 + x310 + x311 + x322 + x379 + x380 + x381 + x382 + x384 + x391 ++ x393 + x394 + x395 + x407 + x408 + x412 + x414 + x416 + x417 + x435 ++ x436 + x440 + x441 + x457 + x464 + x489 + x490 + x491 <= 1 + +x18 + x38 + x41 + x44 + x45 + x46 + x47 + x49 + x58 + x66 ++ x73 + x81 + x83 + x109 + x115 + x118 + x120 + x126 + x128 + x129 ++ x137 + x138 + x147 + x156 + x157 + x159 + x160 + x170 + x172 + x173 ++ x174 + x190 + x191 + x192 + x193 + x200 + x202 + x203 + x206 + x207 ++ x208 + x209 + x241 + x242 + x258 + x259 + x260 + x262 + x263 + x265 ++ x266 + x267 + x268 + x269 + x290 + x292 + x293 + x295 + x297 + x300 ++ x302 + x303 + x308 + x310 + x311 + x379 + x380 + x381 + x382 + x384 ++ x389 + x394 + x395 + x396 + x408 + x409 + x414 + x417 + x431 + x435 ++ x440 + x441 + x448 + x457 + x461 + x464 + x486 + x490 + x491 <= 1 + +x32 + x38 + x41 + x44 + x45 + x46 + x47 + x49 + x58 + x73 ++ x115 + x118 + x119 + x120 + x129 + x134 + x137 + x138 + x147 + x151 ++ x152 + x153 + x157 + x158 + x159 + x160 + x163 + x164 + x172 + x173 ++ x174 + x181 + x188 + x190 + x191 + x192 + x193 + x198 + x200 + x201 ++ x202 + x203 + x205 + x207 + x209 + x235 + x239 + x240 + x242 + x243 ++ x246 + x258 + x259 + x260 + x261 + x263 + x265 + x266 + x267 + x268 ++ x269 + x292 + x295 + x296 + x299 + x301 + x302 + x303 + x308 + x311 ++ x312 + x335 + x336 + x338 + x375 + x379 + x380 + x381 + x382 + x384 ++ x389 + x393 + x394 + x395 + x396 + x400 + x407 + x408 + x409 + x410 ++ x415 + x431 + x432 + x435 + x441 + x448 + x457 + x461 + x463 + x464 ++ x488 + x490 + x491 <= 1 + +x32 + x36 + x37 + x38 + x44 + x45 + x46 + x48 + x49 + x58 ++ x60 + x61 + x62 + x97 + x99 + x100 + x115 + x116 + x118 + x119 ++ x127 + x128 + x129 + x131 + x134 + x137 + x151 + x152 + x155 + x157 ++ x158 + x160 + x162 + x163 + x164 + x166 + x174 + x181 + x188 + x189 ++ x190 + x191 + x193 + x198 + x200 + x201 + x202 + x203 + x205 + x225 ++ x239 + x240 + x242 + x246 + x258 + x259 + x260 + x261 + x262 + x265 ++ x266 + x267 + x268 + x292 + x293 + x294 + x295 + x296 + x297 + x299 ++ x301 + x302 + x303 + x311 + x312 + x333 + x336 + x337 + x338 + x346 ++ x364 + x365 + x377 + x379 + x380 + x381 + x382 + x384 + x395 + x398 ++ x400 + x406 + x407 + x408 + x409 + x411 + x413 + x433 + x434 + x454 ++ x455 + x456 + x457 + x460 + x461 + x462 + x463 + x464 + x486 + x488 ++ x491 <= 1 + +x7 + x36 + x37 + x38 + x40 + x44 + x48 + x49 + x51 + x58 ++ x59 + x60 + x61 + x72 + x97 + x100 + x101 + x102 + x119 + x120 ++ x127 + x128 + x130 + x131 + x151 + x152 + x155 + x158 + x159 + x160 ++ x162 + x164 + x165 + x166 + x174 + x188 + x189 + x190 + x191 + x193 ++ x198 + x199 + x200 + x201 + x202 + x203 + x205 + x236 + x238 + x240 ++ x242 + x260 + x261 + x262 + x265 + x268 + x269 + x278 + x282 + x292 ++ x293 + x294 + x295 + x296 + x297 + x301 + x302 + x303 + x319 + x333 ++ x336 + x337 + x338 + x342 + x346 + x353 + x360 + x361 + x362 + x363 ++ x364 + x365 + x368 + x371 + x377 + x379 + x380 + x381 + x382 + x384 ++ x386 + x395 + x398 + x399 + x400 + x406 + x407 + x408 + x411 + x454 ++ x456 + x459 + x460 + x461 + x462 + x463 + x464 + x488 + x491 <= 1 + +x36 + x37 + x40 + x44 + x47 + x51 + x57 + x58 + x59 + x60 ++ x61 + x76 + x77 + x102 + x127 + x128 + x129 + x130 + x131 + x149 ++ x150 + x151 + x152 + x153 + x154 + x155 + x162 + x165 + x166 + x167 ++ x178 + x188 + x189 + x190 + x191 + x192 + x193 + x199 + x200 + x201 ++ x205 + x208 + x223 + x236 + x237 + x261 + x262 + x265 + x268 + x269 ++ x277 + x278 + x279 + x280 + x282 + x292 + x293 + x294 + x295 + x296 ++ x297 + x303 + x319 + x328 + x330 + x332 + x334 + x336 + x337 + x338 ++ x341 + x360 + x361 + x362 + x363 + x364 + x370 + x371 + x374 + x376 ++ x379 + x381 + x382 + x398 + x399 + x400 + x406 + x407 + x410 + x411 ++ x419 + x420 + x426 + x439 + x453 + x454 + x456 + x458 + x459 + x460 ++ x461 + x462 + x499 <= 1 + +x7 + x36 + x39 + x40 + x41 + x43 + x57 + x59 + x60 + x62 ++ x70 + x76 + x78 + x127 + x128 + x130 + x131 + x150 + x154 + x178 ++ x188 + x189 + x190 + x191 + x192 + x193 + x195 + x197 + x201 + x205 ++ x208 + x211 + x235 + x236 + x237 + x238 + x269 + x277 + x279 + x281 ++ x282 + x292 + x294 + x295 + x296 + x309 + x333 + x346 + x352 + x360 ++ x361 + x363 + x364 + x367 + x369 + x370 + x371 + x373 + x374 + x376 ++ x382 + x384 + x398 + x399 + x406 + x407 + x408 + x410 + x411 + x459 ++ x461 + x462 <= 1 + +x36 + x48 + x57 + x59 + x60 + x61 + x70 + x75 + x76 + x78 ++ x80 + x127 + x130 + x131 + x150 + x154 + x178 + x188 + x189 + x190 ++ x191 + x193 + x197 + x201 + x205 + x207 + x208 + x236 + x237 + x238 ++ x269 + x277 + x279 + x280 + x281 + x292 + x295 + x296 + x331 + x333 ++ x334 + x345 + x346 + x366 + x367 + x369 + x371 + x374 + x382 + x384 ++ x393 + x398 + x403 + x406 + x411 + x453 + x459 + x460 + x461 + x462 + <= 1 + +x3 + x18 + x19 + x20 + x39 + x47 + x59 + x113 + x118 + x122 ++ x124 + x129 + x173 + x177 + x185 + x188 + x191 + x192 + x193 + x199 ++ x203 + x206 + x207 + x258 + x259 + x263 + x264 + x265 + x266 + x267 ++ x268 + x295 + x347 + x391 + x392 + x393 + x394 + x412 + x438 + x441 ++ x463 + x498 <= 1 + +x3 + x18 + x19 + x20 + x21 + x22 + x47 + x49 + x118 + x121 ++ x122 + x124 + x129 + x159 + x173 + x175 + x188 + x189 + x191 + x192 ++ x193 + x198 + x200 + x205 + x206 + x246 + x258 + x259 + x263 + x264 ++ x265 + x266 + x267 + x268 + x284 + x293 + x295 + x297 + x303 + x379 ++ x381 + x382 + x391 + x392 + x393 + x394 + x417 + x436 + x438 + x441 ++ x463 <= 1 + +x3 + x18 + x19 + x20 + x21 + x22 + x44 + x45 + x46 + x47 ++ x49 + x82 + x117 + x118 + x120 + x121 + x122 + x123 + x124 + x125 ++ x129 + x137 + x157 + x159 + x170 + x173 + x188 + x191 + x193 + x198 ++ x200 + x202 + x203 + x206 + x258 + x260 + x262 + x263 + x264 + x265 ++ x266 + x267 + x268 + x285 + x292 + x293 + x295 + x296 + x297 + x303 ++ x308 + x335 + x338 + x379 + x381 + x391 + x393 + x394 + x396 + x412 ++ x417 + x436 + x438 + x440 + x441 + x457 + x464 <= 1 + +x18 + x21 + x44 + x46 + x47 + x49 + x81 + x82 + x115 + x118 ++ x120 + x121 + x123 + x124 + x126 + x128 + x129 + x134 + x137 + x138 ++ x147 + x152 + x157 + x159 + x170 + x172 + x173 + x174 + x183 + x188 ++ x190 + x191 + x192 + x193 + x198 + x200 + x203 + x206 + x241 + x242 ++ x245 + x246 + x258 + x260 + x261 + x262 + x263 + x265 + x266 + x267 ++ x268 + x292 + x293 + x295 + x296 + x297 + x300 + x302 + x303 + x308 ++ x311 + x337 + x338 + x379 + x380 + x381 + x382 + x391 + x393 + x394 ++ x395 + x396 + x412 + x414 + x417 + x435 + x440 + x441 + x457 + x464 ++ x489 + x490 <= 1 + +x37 + x44 + x45 + x46 + x49 + x51 + x72 + x97 + x98 + x99 ++ x115 + x116 + x118 + x120 + x128 + x129 + x130 + x137 + x138 + x151 ++ x152 + x153 + x159 + x172 + x174 + x188 + x189 + x190 + x191 + x192 ++ x193 + x198 + x200 + x201 + x202 + x203 + x206 + x241 + x242 + x246 ++ x259 + x260 + x261 + x263 + x265 + x266 + x267 + x268 + x292 + x293 ++ x294 + x295 + x296 + x297 + x299 + x302 + x303 + x308 + x311 + x333 ++ x335 + x336 + x337 + x338 + x368 + x380 + x381 + x382 + x391 + x393 ++ x395 + x396 + x408 + x410 + x431 + x432 + x433 + x440 + x457 + x458 ++ x460 + x461 + x464 + x478 + x490 + x491 <= 1 + +x23 + x37 + x38 + x44 + x45 + x49 + x51 + x58 + x97 + x98 ++ x99 + x100 + x115 + x116 + x118 + x119 + x128 + x129 + x130 + x131 ++ x137 + x151 + x152 + x153 + x154 + x155 + x158 + x159 + x166 + x174 ++ x188 + x189 + x190 + x191 + x193 + x198 + x201 + x202 + x203 + x240 ++ x241 + x242 + x258 + x259 + x260 + x261 + x262 + x265 + x266 + x267 ++ x268 + x269 + x292 + x293 + x294 + x295 + x296 + x297 + x299 + x302 ++ x303 + x311 + x312 + x329 + x330 + x333 + x334 + x335 + x336 + x337 ++ x338 + x365 + x368 + x380 + x381 + x382 + x392 + x395 + x408 + x410 ++ x431 + x433 + x434 + x440 + x453 + x454 + x455 + x457 + x458 + x460 ++ x461 + x462 + x463 + x464 + x490 <= 1 + +x23 + x36 + x37 + x38 + x45 + x49 + x51 + x58 + x79 + x98 ++ x100 + x101 + x102 + x120 + x127 + x128 + x129 + x130 + x131 + x146 ++ x150 + x151 + x152 + x153 + x154 + x155 + x158 + x159 + x165 + x166 ++ x174 + x184 + x189 + x190 + x191 + x193 + x198 + x199 + x200 + x201 ++ x202 + x203 + x259 + x260 + x261 + x262 + x265 + x266 + x268 + x269 ++ x278 + x292 + x293 + x294 + x295 + x296 + x297 + x299 + x302 + x303 ++ x327 + x329 + x330 + x332 + x333 + x334 + x336 + x337 + x338 + x342 ++ x346 + x364 + x365 + x368 + x369 + x377 + x380 + x381 + x382 + x400 ++ x404 + x408 + x410 + x434 + x453 + x454 + x455 + x456 + x457 + x458 ++ x459 + x460 + x461 + x462 + x463 + x464 + x469 + x471 + x477 + x479 ++ x480 <= 1 + +x23 + x37 + x40 + x47 + x48 + x51 + x60 + x77 + x79 + x101 ++ x127 + x128 + x129 + x130 + x131 + x136 + x146 + x149 + x150 + x151 ++ x152 + x153 + x154 + x155 + x158 + x165 + x184 + x189 + x190 + x191 ++ x192 + x193 + x198 + x199 + x200 + x201 + x202 + x203 + x205 + x208 ++ x261 + x262 + x269 + x278 + x280 + x281 + x292 + x293 + x294 + x295 ++ x296 + x297 + x299 + x327 + x328 + x329 + x330 + x332 + x333 + x334 ++ x336 + x337 + x341 + x346 + x356 + x360 + x362 + x363 + x365 + x366 ++ x368 + x370 + x374 + x376 + x379 + x381 + x382 + x398 + x400 + x404 ++ x406 + x407 + x410 + x411 + x453 + x454 + x455 + x456 + x458 + x459 ++ x460 + x461 + x462 + x463 + x464 + x469 + x477 + x479 + x496 + x499 + <= 1 + +x47 + x48 + x58 + x60 + x75 + x76 + x77 + x78 + x79 + x127 ++ x129 + x130 + x136 + x148 + x149 + x150 + x153 + x154 + x190 + x191 ++ x192 + x200 + x201 + x203 + x205 + x208 + x265 + x269 + x277 + x278 ++ x280 + x281 + x292 + x293 + x294 + x295 + x296 + x297 + x299 + x300 ++ x327 + x328 + x329 + x330 + x331 + x332 + x333 + x334 + x336 + x337 ++ x346 + x356 + x366 + x367 + x369 + x374 + x381 + x382 + x383 + x384 ++ x400 + x403 + x404 + x406 + x407 + x410 + x411 + x453 + x454 + x456 ++ x458 + x459 + x460 + x461 + x462 + x464 <= 1 + +x48 + x57 + x60 + x75 + x76 + x77 + x78 + x80 + x127 + x129 ++ x130 + x148 + x150 + x151 + x153 + x154 + x190 + x191 + x192 + x201 ++ x207 + x208 + x236 + x237 + x277 + x279 + x280 + x281 + x292 + x294 ++ x295 + x296 + x297 + x300 + x331 + x333 + x334 + x336 + x346 + x356 ++ x366 + x367 + x369 + x371 + x381 + x382 + x383 + x384 + x403 + x411 ++ x453 + x458 + x460 + x461 + x462 + x464 <= 1 + +x3 + x18 + x19 + x22 + x39 + x47 + x59 + x122 + x123 + x188 ++ x189 + x191 + x192 + x193 + x200 + x203 + x207 + x246 + x258 + x259 ++ x263 + x264 + x265 + x266 + x267 + x268 + x296 + x381 + x391 + x392 ++ x394 + x396 + x412 + x417 + x438 + x441 <= 1 + +x3 + x19 + x20 + x21 + x22 + x23 + x39 + x47 + x123 + x125 ++ x132 + x189 + x191 + x193 + x200 + x202 + x203 + x205 + x206 + x246 ++ x258 + x263 + x264 + x265 + x266 + x267 + x268 + x283 + x284 + x293 ++ x295 + x296 + x297 + x379 + x381 + x391 + x392 + x393 + x394 + x396 ++ x417 + x438 + x441 + x500 <= 1 + +x3 + x18 + x20 + x22 + x23 + x47 + x120 + x121 + x123 + x125 ++ x129 + x157 + x173 + x188 + x189 + x191 + x193 + x198 + x200 + x202 ++ x203 + x206 + x258 + x260 + x262 + x263 + x264 + x265 + x266 + x267 ++ x268 + x283 + x285 + x292 + x293 + x295 + x296 + x297 + x335 + x337 ++ x376 + x379 + x381 + x391 + x392 + x393 + x394 + x395 + x396 + x438 ++ x461 <= 1 + +x44 + x47 + x99 + x116 + x118 + x125 + x128 + x129 + x159 + x173 ++ x190 + x191 + x193 + x198 + x200 + x202 + x203 + x242 + x255 + x258 ++ x260 + x262 + x263 + x265 + x266 + x267 + x268 + x292 + x293 + x294 ++ x295 + x296 + x297 + x335 + x337 + x338 + x379 + x381 + x391 + x392 ++ x395 + x396 + x440 + x457 + x461 + x491 <= 1 + +x44 + x46 + x99 + x116 + x118 + x120 + x125 + x128 + x129 + x130 ++ x150 + x151 + x152 + x153 + x159 + x190 + x191 + x193 + x198 + x200 ++ x202 + x203 + x242 + x246 + x258 + x260 + x261 + x262 + x263 + x265 ++ x266 + x267 + x268 + x271 + x292 + x293 + x294 + x295 + x296 + x297 ++ x334 + x335 + x337 + x338 + x368 + x380 + x381 + x382 + x392 + x396 ++ x408 + x432 + x455 + x457 + x460 + x461 + x464 + x478 + x491 <= 1 + +x23 + x37 + x58 + x98 + x115 + x116 + x120 + x128 + x129 + x130 ++ x131 + x136 + x150 + x151 + x152 + x153 + x155 + x159 + x174 + x190 ++ x191 + x198 + x200 + x201 + x202 + x203 + x241 + x242 + x258 + x259 ++ x260 + x261 + x262 + x263 + x265 + x266 + x267 + x292 + x293 + x294 ++ x295 + x296 + x297 + x299 + x303 + x333 + x334 + x335 + x337 + x338 ++ x368 + x381 + x392 + x395 + x400 + x406 + x410 + x432 + x433 + x434 ++ x455 + x458 + x459 + x460 + x461 + x463 + x464 + x477 + x478 <= 1 + +x23 + x38 + x45 + x49 + x58 + x79 + x98 + x101 + x102 + x116 ++ x120 + x128 + x129 + x130 + x131 + x136 + x145 + x146 + x150 + x151 ++ x152 + x153 + x154 + x155 + x184 + x189 + x190 + x191 + x198 + x199 ++ x200 + x203 + x205 + x208 + x259 + x260 + x261 + x262 + x265 + x268 ++ x272 + x292 + x293 + x294 + x295 + x296 + x297 + x299 + x303 + x327 ++ x329 + x330 + x331 + x333 + x334 + x335 + x336 + x337 + x338 + x368 ++ x381 + x382 + x392 + x400 + x406 + x410 + x453 + x454 + x455 + x456 ++ x458 + x459 + x460 + x461 + x462 + x463 + x464 + x477 + x479 + x480 + <= 1 + +x23 + x49 + x58 + x75 + x79 + x101 + x131 + x136 + x145 + x146 ++ x148 + x149 + x150 + x151 + x152 + x153 + x154 + x155 + x191 + x198 ++ x199 + x201 + x203 + x205 + x208 + x261 + x262 + x265 + x277 + x292 ++ x293 + x294 + x295 + x296 + x297 + x299 + x303 + x327 + x328 + x329 ++ x330 + x331 + x333 + x334 + x336 + x337 + x341 + x381 + x382 + x392 ++ x400 + x404 + x406 + x407 + x410 + x411 + x453 + x454 + x455 + x456 ++ x458 + x459 + x460 + x461 + x462 + x463 + x464 + x479 + x480 <= 1 + +x58 + x75 + x78 + x79 + x136 + x145 + x147 + x150 + x151 + x153 ++ x154 + x155 + x190 + x191 + x201 + x203 + x208 + x261 + x265 + x269 ++ x277 + x278 + x281 + x292 + x294 + x295 + x296 + x297 + x299 + x327 ++ x329 + x331 + x332 + x333 + x334 + x336 + x367 + x369 + x381 + x382 ++ x383 + x392 + x407 + x410 + x453 + x454 + x456 + x458 + x459 + x460 ++ x461 + x462 + x464 + x480 + x490 <= 1 + +x58 + x75 + x78 + x80 + x145 + x148 + x150 + x151 + x153 + x154 ++ x155 + x190 + x191 + x192 + x201 + x208 + x217 + x227 + x236 + x277 ++ x281 + x292 + x294 + x295 + x297 + x299 + x327 + x331 + x333 + x334 ++ x367 + x369 + x382 + x383 + x384 + x387 + x390 + x453 + x456 + x459 ++ x460 + x461 + x462 + x464 + x490 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x6 + x7 + x8 + x9 + x10 + x11 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 + x21 + x22 + x23 <= 1 + +x24 + x25 + x26 + x27 + x28 + x29 <= 1 + +x30 + x31 + x32 + x33 + x34 + x35 <= 1 + +x36 + x37 + x38 + x39 + x40 + x41 <= 1 + +x42 + x43 <= 1 + +x44 + x45 + x46 + x47 + x48 + x49 <= 1 + +x50 + x51 + x52 + x53 + x54 + x55 <= 1 + +x57 + x58 + x59 + x60 + x61 + x62 <= 1 + +x63 + x64 + x65 + x66 + x67 + x68 <= 1 + +x69 + x70 + x71 + x72 + x73 + x74 <= 1 + +x75 + x76 + x77 + x78 + x79 + x80 <= 1 + +x81 + x82 + x83 <= 1 + +x85 + x86 + x87 + x88 + x89 + x90 <= 1 + +x92 + x93 + x94 + x95 + x96 <= 1 + +x97 + x98 + x99 + x100 + x101 + x102 <= 1 + +x103 + x104 + x105 <= 1 + +x106 + x107 + x108 <= 1 + +x109 + x110 + x111 + x112 <= 1 + +x115 + x116 + x117 + x118 + x119 + x120 <= 1 + +x121 + x122 + x123 + x124 + x125 + x126 <= 1 + +x127 + x128 + x129 + x130 + x131 + x132 <= 1 + +x133 + x134 + x135 + x136 + x137 + x138 <= 1 + +x139 + x140 + x141 + x142 + x143 + x144 <= 1 + +x145 + x146 + x147 + x148 + x149 <= 1 + +x150 + x151 + x152 + x153 + x154 + x155 <= 1 + +x156 + x157 + x158 + x159 + x160 + x161 <= 1 + +x162 + x163 + x164 + x165 + x166 + x167 <= 1 + +x168 + x169 <= 1 + +x170 + x171 + x172 + x173 + x174 + x175 <= 1 + +x176 + x177 + x178 + x179 + x180 + x181 <= 1 + +x182 + x183 + x184 + x185 + x186 + x187 <= 1 + +x188 + x189 + x190 + x191 + x192 + x193 <= 1 + +x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 + x213 + x214 <= 1 + +x215 + x216 <= 1 + +x218 + x219 + x220 + x221 + x222 + x223 <= 1 + +x224 + x225 + x226 + x227 + x228 + x229 <= 1 + +x230 + x231 + x232 + x233 + x234 <= 1 + +x235 + x236 + x237 + x238 + x239 + x240 <= 1 + +x241 + x242 + x243 + x244 + x245 + x246 <= 1 + +x247 + x248 + x249 <= 1 + +x250 + x251 + x252 + x253 + x254 + x255 <= 1 + +x256 + x257 <= 1 + +x258 + x259 + x260 + x261 + x262 + x263 <= 1 + +x264 + x265 + x266 + x267 + x268 + x269 <= 1 + +x270 + x271 + x272 + x273 + x274 <= 1 + +x275 + x276 <= 1 + +x277 + x278 + x279 + x280 + x281 + x282 <= 1 + +x283 + x284 + x285 <= 1 + +x286 + x287 + x288 + x289 + x290 + x291 <= 1 + +x292 + x293 + x294 + x295 + x296 + x297 <= 1 + +x298 + x299 + x300 + x301 + x302 + x303 <= 1 + +x304 + x305 + x306 + x307 <= 1 + +x308 + x309 + x310 + x311 + x312 + x313 <= 1 + +x314 + x315 <= 1 + +x317 + x318 + x319 + x320 + x321 + x322 <= 1 + +x323 + x324 + x325 + x326 <= 1 + +x327 + x328 + x329 + x330 + x331 + x332 <= 1 + +x333 + x334 + x335 + x336 + x337 + x338 <= 1 + +x339 + x340 + x341 + x342 + x343 + x344 <= 1 + +x345 + x346 + x347 + x348 + x349 + x350 <= 1 + +x351 + x352 + x353 + x354 + x355 + x356 <= 1 + +x357 + x358 <= 1 + + <= 1 + +x360 + x361 + x362 + x363 + x364 + x365 <= 1 + +x366 + x367 + x368 + x369 + x370 + x371 <= 1 + +x373 + x374 + x375 + x376 + x377 + x378 <= 1 + +x379 + x380 + x381 + x382 + x383 + x384 <= 1 + +x385 + x386 + x387 + x388 + x389 + x390 <= 1 + +x391 + x392 + x393 + x394 + x395 + x396 <= 1 + +x397 + x398 + x399 + x400 + x401 + x402 <= 1 + +x403 + x404 + x405 <= 1 + +x406 + x407 + x408 + x409 + x410 + x411 <= 1 + +x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 + x422 + x423 <= 1 + +x425 + x426 + x427 + x428 + x429 + x430 <= 1 + +x431 + x432 + x433 + x434 + x435 <= 1 + +x436 + x437 + x438 + x439 + x440 + x441 <= 1 + +x442 + x443 + x444 + x445 + x446 <= 1 + +x447 + x448 + x449 + x450 + x451 + x452 <= 1 + +x453 + x454 + x455 + x456 + x457 + x458 <= 1 + +x459 + x460 + x461 + x462 + x463 + x464 <= 1 + +x465 + x466 + x467 + x468 + x469 + x470 <= 1 + +x472 + x473 + x474 + x475 + x476 <= 1 + +x477 + x478 + x479 + x480 <= 1 + +x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x492 + x493 + x494 + x495 <= 1 + +x496 + x497 + x498 + x499 + x500 + x501 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0015.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0015.lp new file mode 100755 index 000000000..40306f17c --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0015.lp @@ -0,0 +1,1049 @@ +max + +78.5424x0 + 491.182x1 + 438.962x2 + 341.335x3 + 325.517x4 + 161.452x5 + 215.406x6 + 160.207x7 + 121.741x8 + 383.052x9 + +540.39x10 + 457.766x11 + 440x12 + 436.308x13 + 392.641x14 + 255.534x15 + 350.945x16 + 324.868x17 + 296.235x18 + 269.208x19 + +240.159x20 + 1704.37x21 + 2207.46x22 + 2143.7x23 + 2142.12x24 + 2131.24x25 + 2103.21x26 + 90.1545x27 + 860.306x28 + 1249.36x29 + +1097.1x30 + 1079.39x31 + 1009.36x32 + 939.755x33 + 880.141x34 + 921.906x35 + 897.375x36 + 852.085x37 + 847.823x38 + 839.699x39 + +275.316x40 + 387.833x41 + 344.031x42 + 341.878x43 + 262.818x44 + 132.123x45 + 735.873x46 + 791.852x47 + 776.626x48 + 771.83x49 + +745.534x50 + 733.279x51 + 1189.94x52 + 1657.52x53 + 1570.51x54 + 1554.96x55 + 1552.44x56 + 1527.25x57 + 119.764x58 + 295.87x59 + +419.567x60 + 281.74x61 + 269.854x62 + 243.069x63 + 229.023x64 + 624.822x65 + 682.163x66 + 615.671x67 + 580.212x68 + 549.726x69 + +536.624x70 + 117.324x71 + 127.078x72 + 1013.73x73 + 1123.37x74 + 996.363x75 + 989.267x76 + 934.402x77 + 931.005x78 + 368.032x79 + +475.327x80 + 426.648x81 + 403.699x82 + 400.732x83 + 391.423x84 + 408.783x85 + 528.855x86 + 521.346x87 + 510.799x88 + 452.296x89 + +431.119x90 + 401.996x91 + 587.517x92 + 472.496x93 + 452.113x94 + 427.512x95 + 400.06x96 + 507.148x97 + 687.89x98 + 644.018x99 + +625.401x100 + 621.597x101 + 600.262x102 + 1071.66x103 + 1049.81x104 + 1024.28x105 + 1020.12x106 + 999.629x107 + 901.311x108 + 164.843x109 + +211.725x110 + 101.307x111 + 90.5037x112 + 236.561x113 + 274.409x114 + 243.682x115 + 169.656x116 + 169.307x117 + 156.296x118 + 780.916x119 + +989.012x120 + 964.247x121 + 950.309x122 + 944.816x123 + 932.387x124 + 157.221x125 + 180.671x126 + 133.146x127 + 79.63x128 + 77.7877x129 + +581.511x130 + 610.464x131 + 603.538x132 + 597.498x133 + 489.429x134 + 489.207x135 + 356.294x136 + 494.254x137 + 478.543x138 + 391.382x139 + +388.265x140 + 330.706x141 + 424.415x142 + 619.258x143 + 569.338x144 + 543.015x145 + 496.414x146 + 482.648x147 + 1092.39x148 + 1530.02x149 + +1477.2x150 + 1455.75x151 + 1352.4x152 + 1327.53x153 + 516.983x154 + 689.765x155 + 551.283x156 + 551.169x157 + 547.237x158 + 542.31x159 + +767.573x160 + 913.396x161 + 902.178x162 + 853.067x163 + 852.897x164 + 830.062x165 + 334.136x166 + 417.749x167 + 414.659x168 + 382.749x169 + +298.891x170 + 293.631x171 + 229.605x172 + 297.733x173 + 283.715x174 + 260.447x175 + 228.259x176 + 272.082x177 + 319.229x178 + 237.638x179 + +227.822x180 + 84.7515x181 + 1008.89x182 + 1242.14x183 + 1171.93x184 + 1112.16x185 + 1109.17x186 + 1072.91x187 + 1136.19x188 + 1207.14x189 + +1206.13x190 + 1174.44x191 + 1147.86x192 + 1131.27x193 + 154.257x194 + 122.361x195 + 113.273x196 + 71.463x197 + 1991.71x198 + 2395.88x199 + +2345.91x200 + 2230.87x201 + 2223.39x202 + 2173.78x203 + 128.727x204 + 191.668x205 + 121.854x206 + 247.685x207 + 325.338x208 + 306.563x209 + +275.507x210 + 248.843x211 + 203.321x212 + 174.283x213 + 241.733x214 + 605.225x215 + 825.138x216 + 822.01x217 + 810.455x218 + 794.677x219 + +753.876x220 + 7.63654x221 + 687.4x222 + 958.501x223 + 954.948x224 + 894.678x225 + 884.006x226 + 852.841x227 + 1068.99x228 + 1543.63x229 + +1468.83x230 + 1320.45x231 + 1317.28x232 + 1294.2x233 + 1237.22x234 + 1677.56x235 + 1572.52x236 + 1568.88x237 + 1524.71x238 + 1506.1x239 + +794.38x240 + 958.475x241 + 902.585x242 + 896.302x243 + 881.55x244 + 872.764x245 + 764.342x246 + 907.255x247 + 839.398x248 + 832.788x249 + +817.629x250 + 801.039x251 + 294.658x252 + 424.751x253 + 392.522x254 + 342.087x255 + 338.321x256 + 292.108x257 + 406.252x258 + 516.269x259 + +454.472x260 + 443.379x261 + 396.433x262 + 360.295x263 + 202.479x264 + 291.381x265 + 220.514x266 + 216.159x267 + 241.022x268 + 289.316x269 + +236.542x270 + 224.501x271 + 147.271x272 + 353.661x273 + 429.358x274 + 367.414x275 + 307.645x276 + 306.635x277 + 294.037x278 + 558.838x279 + +620.651x280 + 575.535x281 + 559.788x282 + 540.465x283 + 521.599x284 + 55.1983x285 + 287.665x286 + 349.535x287 + 339.583x288 + 305.301x289 + +280.379x290 + 987.764x291 + 1155.3x292 + 1133.8x293 + 1129.97x294 + 1116.53x295 + 1080.9x296 + 959.448x297 + 1095.72x298 + 1068.4x299 + +1028.79x300 + 961.339x301 + 935.495x302 + 421.955x303 + 541.48x304 + 499.067x305 + 486.929x306 + 475.76x307 + 408.365x308 + 316.817x309 + +469.696x310 + 365.523x311 + 270.245x312 + 226.576x313 + 232.105x314 + 339.927x315 + 288.13x316 + 257.251x317 + 198.376x318 + 170.609x319 + +478.326x320 + 587.877x321 + 582.035x322 + 526.674x323 + 523.808x324 + 394.644x325 + 485.886x326 + 664.964x327 + 642.01x328 + 614.201x329 + +598.484x330 + 598.355x331 + 952.007x332 + 1021.32x333 + 989.335x334 + 953.917x335 + 906.291x336 + 888.217x337 + 621.8x338 + 882.998x339 + +856.278x340 + 848.727x341 + 798.83x342 + 796.81x343 + 582.825x344 + 670.598x345 + 652.273x346 + 627.907x347 + 618.239x348 + 593.817x349 + +102.082x350 + 143.367x351 + 355.344x352 + 529.738x353 + 500.959x354 + 497.485x355 + 438.436x356 + 351.473x357 + 375.861x358 + 506.443x359 + +492.614x360 + 476.278x361 + 465.967x362 + 447.35x363 + 666.057x364 + 709.369x365 + 675.261x366 + 620.484x367 + 618.582x368 + 581.114x369 + +168.148x370 + 239.085x371 + 202.354x372 + 120.565x373 + 853.727x374 + 814.696x375 + 807.174x376 + 775.381x377 + 774.837x378 + 766.185x379 + +97.7717x380 + 188.317x381 + 267.156x382 + 260.871x383 + 189.334x384 + 136.619x385 + 595.433x386 + 877.968x387 + 782.113x388 + 694.123x389 + +687.357x390 + 664.703x391 + 1379.52x392 + 1639.82x393 + 1619.55x394 + 1614.73x395 + 1579.5x396 + 1541.97x397 + 980.688x398 + 966.995x399 + +947.728x400 + 924.433x401 + 887.81x402 + 884.523x403 + 2121.81x404 + 2376.77x405 + 2358.27x406 + 2335.67x407 + 2310.91x408 + 2308.36x409 + +237.632x410 + 197.612x411 + 142.928x412 + 222.119x413 + 241.432x414 + 240.742x415 + 148.827x416 + 618.574x417 + 927.173x418 + 900.188x419 + +882.801x420 + 854.538x421 + 802.315x422 + 73.3312x423 + 34.2356x424 + 173.187x425 + 140.221x426 + 414.874x427 + 401.684x428 + 397.692x429 + +295.66x430 + 278.951x431 + 238.641x432 + 322.265x433 + 402.526x434 + 357.495x435 + 324.108x436 + 283.69x437 + 200.677x438 + 195.969x439 + +163.593x440 + 106.963x441 + 1350.38x442 + 1348.3x443 + 1332.55x444 + 1317.86x445 + 1291.03x446 + 1277.33x447 + 197.637x448 + 181.643x449 + +174.533x450 + 72.6764x451 + 76.1273x452 + 206.761x453 + 307.488x454 + 284.402x455 + 268.275x456 + 264.102x457 + 206.074x458 + 183.954x459 + +175.239x460 + 149.642x461 + 672.444x462 + 976.707x463 + 924.851x464 + 912.68x465 + 906.711x466 + 902.282x467 + 699.28x468 + 685.793x469 + +678.753x470 + 674.002x471 + 661.311x472 + 629.478x473 + 179.658x474 + 234.354x475 + 204.489x476 + 172.989x477 + 170.901x478 + 4080.47x479 + +4769.47x480 + 4602.51x481 + 4586.63x482 + 4556.74x483 + 4549.36x484 + 1018.78x485 + 1365.57x486 + 1226.86x487 + 1216.5x488 + 1180.53x489 + +1156.5x490 + 134.681x491 + 134.417x492 + 174.595x493 + 220.244x494 + 69.2125x495 + 656.301x496 + 806.537x497 + 681.76x498 + 675.36x499 + +603.726x500 + 598.682x501 + +st + +x25 + x78 + x137 + x162 + x199 + x200 + x203 + x226 + x238 + x255 ++ x260 + x291 + x292 + x339 + x342 + x369 + x370 + x371 + x375 + x380 ++ x392 + x401 + x406 + x407 + x436 + x479 + x480 + x481 + x482 + x483 ++ x484 + x485 + x486 + x487 + x488 + x490 <= 1 + +x73 + x75 + x78 + x162 + x200 + x203 + x291 + x292 + x293 + x339 ++ x355 + x369 + x370 + x373 + x392 + x401 + x402 + x471 + x479 + x480 ++ x481 + x482 + x483 + x484 + x485 + x486 + x488 + x490 <= 1 + +x73 + x75 + x78 + x98 + x100 + x165 + x191 + x200 + x203 + x252 ++ x255 + x293 + x339 + x355 + x364 + x365 + x366 + x369 + x373 + x398 ++ x401 + x407 + x419 + x471 + x479 + x480 + x482 + x483 + x484 + x485 ++ x488 + x490 + x494 <= 1 + +x24 + x75 + x78 + x98 + x102 + x114 + x143 + x146 + x160 + x162 ++ x164 + x171 + x181 + x203 + x225 + x232 + x234 + x255 + x293 + x325 ++ x339 + x352 + x353 + x355 + x364 + x365 + x366 + x369 + x373 + x398 ++ x401 + x405 + x407 + x434 + x438 + x471 + x480 + x481 + x482 + x483 ++ x484 + x485 + x488 + x490 <= 1 + +x23 + x38 + x48 + x75 + x78 + x98 + x114 + x144 + x160 + x161 ++ x162 + x164 + x165 + x185 + x216 + x217 + x225 + x231 + x232 + x234 ++ x293 + x325 + x352 + x353 + x355 + x356 + x357 + x364 + x365 + x366 ++ x367 + x369 + x387 + x392 + x395 + x402 + x405 + x407 + x433 + x434 ++ x435 + x464 + x466 + x467 + x471 + x480 + x482 + x483 + x484 + x488 ++ x490 <= 1 + +x21 + x23 + x30 + x34 + x38 + x75 + x109 + x112 + x160 + x161 ++ x163 + x164 + x165 + x185 + x200 + x216 + x217 + x218 + x228 + x231 ++ x233 + x249 + x293 + x325 + x338 + x340 + x352 + x354 + x357 + x361 ++ x365 + x387 + x402 + x405 + x434 + x442 + x447 + x462 + x464 + x465 ++ x466 + x467 + x480 + x481 + x482 + x483 + x484 <= 1 + +x21 + x23 + x25 + x30 + x34 + x38 + x46 + x50 + x109 + x110 ++ x112 + x116 + x148 + x160 + x161 + x163 + x164 + x185 + x200 + x215 ++ x218 + x221 + x231 + x249 + x352 + x357 + x361 + x387 + x405 + x409 ++ x447 + x462 + x464 + x465 + x466 + x480 + x481 + x482 + x483 + x484 + <= 1 + +x21 + x23 + x33 + x38 + x50 + x51 + x110 + x116 + x117 + x148 ++ x161 + x163 + x182 + x185 + x231 + x233 + x245 + x246 + x250 + x357 ++ x360 + x361 + x362 + x387 + x395 + x422 + x462 + x463 + x464 + x465 ++ x466 + x479 + x480 + x481 + x482 + x483 + x484 + x486 <= 1 + +x21 + x25 + x27 + x33 + x38 + x46 + x48 + x51 + x54 + x81 ++ x82 + x83 + x119 + x148 + x182 + x185 + x231 + x245 + x246 + x248 ++ x250 + x251 + x261 + x262 + x293 + x329 + x357 + x360 + x361 + x387 ++ x395 + x404 + x413 + x414 + x415 + x462 + x463 + x464 + x465 + x466 ++ x479 + x480 + x481 + x482 + x483 + x484 + x486 <= 1 + +x33 + x46 + x48 + x51 + x79 + x81 + x82 + x83 + x119 + x148 ++ x182 + x185 + x231 + x250 + x251 + x257 + x280 + x293 + x404 + x462 ++ x465 + x479 + x480 <= 1 + +x21 + x25 + x78 + x199 + x200 + x203 + x226 + x238 + x255 + x260 ++ x291 + x292 + x339 + x342 + x343 + x392 + x406 + x479 + x480 + x481 ++ x482 + x483 + x484 + x485 + x486 + x487 + x488 + x490 <= 1 + +x25 + x78 + x162 + x165 + x199 + x202 + x203 + x226 + x252 + x255 ++ x291 + x292 + x339 + x369 + x370 + x371 + x372 + x392 + x401 + x402 ++ x406 + x407 + x436 + x479 + x480 + x481 + x482 + x483 + x484 + x485 ++ x487 + x488 + x490 + x493 + x494 + x495 <= 1 + +x21 + x28 + x38 + x48 + x75 + x78 + x97 + x98 + x99 + x100 ++ x102 + x162 + x164 + x165 + x185 + x203 + x216 + x226 + x252 + x255 ++ x291 + x292 + x293 + x339 + x355 + x364 + x365 + x366 + x367 + x369 ++ x372 + x392 + x398 + x401 + x402 + x407 + x436 + x467 + x480 + x481 ++ x482 + x483 + x484 + x488 + x490 + x493 + x494 + x495 <= 1 + +x21 + x23 + x24 + x28 + x35 + x37 + x38 + x48 + x75 + x78 ++ x97 + x98 + x100 + x101 + x102 + x114 + x143 + x146 + x160 + x161 ++ x162 + x164 + x165 + x181 + x185 + x216 + x228 + x231 + x232 + x234 ++ x255 + x293 + x325 + x338 + x339 + x352 + x353 + x355 + x356 + x358 ++ x363 + x364 + x365 + x366 + x367 + x369 + x398 + x401 + x402 + x405 ++ x407 + x433 + x434 + x435 + x436 + x438 + x465 + x467 + x471 + x480 ++ x481 + x482 + x483 + x484 + x485 + x488 + x490 <= 1 + +x12 + x21 + x23 + x24 + x34 + x38 + x48 + x52 + x75 + x78 ++ x98 + x100 + x102 + x114 + x115 + x133 + x142 + x143 + x144 + x145 ++ x160 + x161 + x162 + x164 + x165 + x181 + x185 + x216 + x217 + x228 ++ x229 + x231 + x233 + x234 + x320 + x325 + x338 + x352 + x353 + x354 ++ x355 + x363 + x364 + x365 + x366 + x387 + x395 + x402 + x405 + x406 ++ x407 + x433 + x434 + x465 + x466 + x467 + x471 + x480 + x481 + x482 ++ x483 + x484 + x485 + x488 + x490 <= 1 + +x12 + x21 + x23 + x111 + x112 + x113 + x114 + x115 + x142 + x145 ++ x146 + x160 + x161 + x162 + x163 + x198 + x200 + x215 + x216 + x217 ++ x218 + x220 + x228 + x229 + x231 + x233 + x293 + x325 + x338 + x340 ++ x353 + x354 + x355 + x356 + x357 + x360 + x361 + x362 + x364 + x387 ++ x395 + x402 + x405 + x406 + x409 + x462 + x463 + x465 + x466 + x467 ++ x479 + x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x12 + x21 + x23 + x25 + x28 + x33 + x34 + x36 + x50 + x55 ++ x57 + x109 + x110 + x111 + x113 + x115 + x116 + x117 + x118 + x119 ++ x124 + x142 + x152 + x161 + x163 + x164 + x185 + x198 + x200 + x215 ++ x218 + x219 + x220 + x221 + x231 + x233 + x244 + x250 + x338 + x353 ++ x357 + x360 + x361 + x362 + x387 + x395 + x402 + x409 + x447 + x462 ++ x463 + x464 + x465 + x466 + x479 + x480 + x481 + x482 + x483 + x484 + <= 1 + +x21 + x25 + x33 + x34 + x46 + x50 + x51 + x80 + x81 + x82 ++ x113 + x117 + x119 + x147 + x148 + x161 + x163 + x182 + x185 + x199 ++ x215 + x231 + x235 + x246 + x249 + x250 + x287 + x307 + x322 + x357 ++ x358 + x360 + x362 + x387 + x395 + x397 + x422 + x462 + x463 + x464 ++ x465 + x480 + x481 + x482 + x483 + x484 <= 1 + +x18 + x21 + x25 + x33 + x46 + x48 + x51 + x54 + x57 + x79 ++ x80 + x81 + x82 + x83 + x119 + x148 + x161 + x163 + x180 + x182 ++ x185 + x189 + x199 + x201 + x231 + x237 + x246 + x248 + x249 + x250 ++ x251 + x258 + x261 + x262 + x263 + x287 + x289 + x293 + x301 + x360 ++ x395 + x397 + x414 + x415 + x422 + x462 + x463 + x464 + x465 + x480 ++ x481 + x482 + x483 + x484 <= 1 + +x25 + x33 + x46 + x48 + x51 + x54 + x79 + x81 + x82 + x83 ++ x119 + x148 + x180 + x182 + x185 + x199 + x237 + x246 + x248 + x249 ++ x250 + x251 + x261 + x280 + x293 + x413 + x414 + x416 + x462 + x464 ++ x465 + x466 + x480 + x481 + x483 <= 1 + +x21 + x24 + x66 + x96 + x97 + x198 + x226 + x254 + x255 + x291 ++ x343 + x389 + x392 + x437 + x471 + x479 + x480 + x481 + x482 + x483 ++ x484 + x487 + x488 + x490 <= 1 + +x21 + x24 + x37 + x66 + x78 + x86 + x96 + x97 + x198 + x199 ++ x226 + x230 + x253 + x254 + x291 + x292 + x302 + x339 + x343 + x365 ++ x392 + x401 + x402 + x406 + x471 + x479 + x480 + x481 + x482 + x483 ++ x484 + x485 + x487 + x488 + x490 <= 1 + +x21 + x24 + x35 + x37 + x45 + x75 + x78 + x86 + x97 + x98 ++ x99 + x100 + x101 + x102 + x143 + x145 + x160 + x162 + x164 + x203 ++ x216 + x231 + x291 + x292 + x293 + x325 + x339 + x363 + x364 + x365 ++ x366 + x369 + x372 + x392 + x398 + x401 + x402 + x406 + x407 + x433 ++ x434 + x435 + x436 + x438 + x465 + x467 + x468 + x471 + x479 + x480 ++ x481 + x482 + x483 + x484 + x485 + x488 + x490 + x493 <= 1 + +x21 + x24 + x28 + x34 + x35 + x37 + x52 + x62 + x75 + x78 ++ x97 + x98 + x100 + x101 + x102 + x144 + x145 + x146 + x160 + x162 ++ x164 + x165 + x198 + x216 + x217 + x228 + x231 + x234 + x293 + x352 ++ x353 + x356 + x358 + x359 + x363 + x366 + x367 + x405 + x406 + x407 ++ x433 + x436 + x438 + x467 + x479 + x481 + x482 + x483 + x484 + x485 ++ x488 + x489 + x490 <= 1 + +x5 + x6 + x21 + x24 + x28 + x34 + x35 + x37 + x38 + x52 ++ x75 + x78 + x98 + x100 + x102 + x118 + x133 + x142 + x143 + x144 ++ x145 + x160 + x164 + x165 + x177 + x181 + x190 + x198 + x215 + x228 ++ x229 + x233 + x234 + x320 + x332 + x336 + x338 + x343 + x352 + x354 ++ x356 + x358 + x359 + x360 + x363 + x367 + x402 + x405 + x406 + x407 ++ x438 + x466 + x467 + x479 + x480 + x482 + x483 + x484 + x485 + x488 ++ x490 <= 1 + +x5 + x6 + x12 + x21 + x23 + x25 + x26 + x28 + x34 + x46 ++ x49 + x50 + x56 + x100 + x111 + x113 + x115 + x116 + x118 + x124 ++ x142 + x145 + x146 + x160 + x161 + x165 + x191 + x198 + x200 + x215 ++ x216 + x218 + x219 + x220 + x229 + x232 + x233 + x247 + x334 + x340 ++ x353 + x354 + x356 + x358 + x360 + x361 + x362 + x363 + x367 + x387 ++ x395 + x405 + x406 + x407 + x409 + x438 + x462 + x466 + x479 + x480 ++ x481 + x482 + x483 + x484 <= 1 + +x21 + x23 + x25 + x28 + x31 + x32 + x33 + x46 + x47 + x49 ++ x50 + x54 + x55 + x57 + x92 + x113 + x115 + x116 + x118 + x119 ++ x120 + x121 + x122 + x124 + x142 + x147 + x148 + x163 + x185 + x189 ++ x191 + x198 + x201 + x215 + x218 + x219 + x220 + x233 + x244 + x247 ++ x250 + x261 + x286 + x287 + x288 + x289 + x334 + x354 + x356 + x362 ++ x363 + x367 + x387 + x395 + x397 + x405 + x409 + x461 + x462 + x463 ++ x464 + x466 + x479 + x480 + x482 + x483 + x484 <= 1 + +x25 + x33 + x46 + x47 + x48 + x49 + x51 + x53 + x54 + x55 ++ x57 + x73 + x82 + x108 + x117 + x119 + x120 + x121 + x124 + x147 ++ x148 + x161 + x163 + x185 + x189 + x192 + x199 + x201 + x236 + x237 ++ x244 + x246 + x249 + x250 + x251 + x258 + x260 + x261 + x262 + x263 ++ x286 + x287 + x289 + x307 + x354 + x387 + x395 + x397 + x405 + x409 ++ x415 + x422 + x462 + x463 + x464 + x465 + x479 + x480 + x481 + x482 ++ x483 + x484 <= 1 + +x18 + x23 + x25 + x33 + x47 + x48 + x51 + x54 + x57 + x79 ++ x80 + x81 + x83 + x84 + x117 + x119 + x121 + x147 + x148 + x163 ++ x180 + x189 + x199 + x201 + x231 + x246 + x248 + x249 + x250 + x251 ++ x258 + x261 + x262 + x263 + x287 + x289 + x293 + x307 + x318 + x395 ++ x396 + x397 + x440 + x462 + x463 + x464 + x479 + x480 + x482 + x483 ++ x484 <= 1 + +x23 + x25 + x46 + x48 + x51 + x52 + x54 + x57 + x79 + x80 ++ x81 + x82 + x83 + x84 + x119 + x121 + x153 + x177 + x180 + x182 ++ x188 + x199 + x201 + x246 + x248 + x249 + x250 + x251 + x287 + x293 ++ x395 + x397 + x413 + x416 + x441 + x462 + x464 + x465 + x479 + x481 ++ x484 <= 1 + +x10 + x21 + x24 + x30 + x58 + x60 + x96 + x101 + x199 + x226 ++ x282 + x291 + x302 + x332 + x335 + x343 + x407 + x437 + x446 + x471 ++ x479 + x480 + x481 + x482 + x483 + x484 + x485 + x487 + x488 <= 1 + +x5 + x24 + x30 + x52 + x63 + x86 + x101 + x102 + x103 + x120 ++ x198 + x199 + x224 + x253 + x254 + x257 + x302 + x319 + x332 + x336 ++ x359 + x375 + x407 + x437 + x442 + x446 + x447 + x456 + x471 + x479 ++ x480 + x481 + x482 + x483 + x484 + x485 + x486 + x487 + x488 + x489 ++ x490 <= 1 + +x5 + x21 + x24 + x35 + x37 + x59 + x62 + x63 + x97 + x99 ++ x100 + x101 + x102 + x144 + x145 + x160 + x179 + x198 + x199 + x228 ++ x233 + x253 + x254 + x257 + x292 + x302 + x332 + x333 + x335 + x363 ++ x382 + x401 + x406 + x407 + x433 + x435 + x437 + x467 + x468 + x479 ++ x480 + x481 + x482 + x483 + x484 + x485 + x486 + x487 + x488 + x490 + <= 1 + +x5 + x21 + x24 + x34 + x35 + x37 + x38 + x62 + x98 + x100 ++ x102 + x142 + x143 + x144 + x145 + x146 + x160 + x164 + x165 + x177 ++ x178 + x179 + x198 + x199 + x215 + x217 + x228 + x233 + x293 + x320 ++ x330 + x332 + x333 + x336 + x338 + x339 + x356 + x358 + x359 + x360 ++ x363 + x367 + x375 + x382 + x406 + x407 + x435 + x453 + x457 + x467 ++ x479 + x480 + x482 + x483 + x484 + x485 + x486 + x487 + x488 + x489 ++ x490 <= 1 + +x6 + x21 + x22 + x24 + x25 + x26 + x28 + x29 + x30 + x32 ++ x34 + x35 + x37 + x38 + x47 + x50 + x52 + x55 + x73 + x75 ++ x123 + x124 + x142 + x143 + x144 + x146 + x150 + x152 + x153 + x160 ++ x161 + x164 + x165 + x177 + x178 + x179 + x190 + x198 + x205 + x215 ++ x217 + x218 + x219 + x220 + x228 + x229 + x231 + x232 + x233 + x247 ++ x308 + x332 + x333 + x334 + x336 + x339 + x343 + x358 + x359 + x361 ++ x375 + x386 + x395 + x404 + x407 + x408 + x435 + x457 + x466 + x467 ++ x479 + x480 + x481 + x482 + x483 + x484 + x487 + x488 + x489 + x490 + <= 1 + +x6 + x21 + x23 + x26 + x28 + x31 + x33 + x51 + x55 + x56 ++ x57 + x67 + x68 + x73 + x107 + x120 + x123 + x124 + x143 + x145 ++ x152 + x164 + x178 + x186 + x190 + x198 + x215 + x217 + x218 + x219 ++ x220 + x223 + x233 + x247 + x261 + x286 + x288 + x305 + x308 + x334 ++ x339 + x343 + x354 + x358 + x362 + x386 + x387 + x392 + x397 + x398 ++ x404 + x408 + x462 + x479 + x480 + x481 + x482 + x483 + x484 + x488 ++ x490 <= 1 + +x18 + x21 + x23 + x25 + x28 + x29 + x31 + x32 + x33 + x46 ++ x47 + x49 + x50 + x51 + x53 + x54 + x55 + x57 + x68 + x73 ++ x107 + x118 + x120 + x121 + x122 + x123 + x124 + x138 + x142 + x147 ++ x152 + x163 + x187 + x190 + x191 + x192 + x201 + x215 + x218 + x219 ++ x220 + x225 + x231 + x244 + x247 + x260 + x261 + x267 + x286 + x288 ++ x289 + x290 + x301 + x303 + x304 + x306 + x308 + x362 + x367 + x392 ++ x394 + x395 + x397 + x408 + x461 + x462 + x464 + x466 + x477 + x479 ++ x482 + x483 <= 1 + +x21 + x23 + x25 + x33 + x46 + x47 + x48 + x49 + x50 + x51 ++ x53 + x54 + x55 + x57 + x68 + x73 + x80 + x119 + x120 + x121 ++ x122 + x123 + x124 + x147 + x148 + x153 + x163 + x187 + x189 + x190 ++ x192 + x199 + x201 + x202 + x203 + x218 + x231 + x244 + x246 + x247 ++ x248 + x249 + x258 + x260 + x263 + x290 + x301 + x307 + x378 + x392 ++ x395 + x396 + x397 + x408 + x421 + x440 + x459 + x460 + x462 + x464 ++ x479 + x480 + x482 + x487 <= 1 + +x23 + x25 + x47 + x54 + x55 + x57 + x73 + x84 + x107 + x119 ++ x121 + x122 + x123 + x124 + x147 + x148 + x183 + x187 + x189 + x190 ++ x199 + x201 + x246 + x248 + x249 + x250 + x251 + x258 + x262 + x263 ++ x306 + x386 + x392 + x394 + x395 + x396 + x397 + x406 + x439 + x440 ++ x464 + x479 + x480 + x484 <= 1 + +x23 + x25 + x47 + x48 + x52 + x54 + x55 + x57 + x79 + x84 ++ x119 + x121 + x122 + x147 + x153 + x188 + x190 + x199 + x246 + x248 ++ x249 + x250 + x262 + x293 + x297 + x371 + x378 + x395 + x396 + x397 ++ x406 + x416 + x439 + x441 + x464 + x465 + x479 + x481 + x484 <= 1 + +x24 + x60 + x96 + x101 + x199 + x224 + x226 + x279 + x282 + x283 ++ x302 + x332 + x333 + x334 + x335 + x343 + x403 + x407 + x419 + x437 ++ x442 + x443 + x445 + x447 + x467 + x479 + x480 + x481 + x482 + x483 ++ x484 + x486 + x487 <= 1 + +x23 + x24 + x30 + x31 + x59 + x60 + x63 + x96 + x97 + x101 ++ x103 + x197 + x198 + x199 + x224 + x226 + x252 + x254 + x257 + x298 ++ x299 + x302 + x314 + x332 + x333 + x334 + x335 + x336 + x337 + x385 ++ x403 + x407 + x422 + x442 + x443 + x446 + x447 + x456 + x467 + x474 ++ x475 + x479 + x480 + x481 + x482 + x483 + x484 + x485 + x486 + x487 ++ x489 <= 1 + +x21 + x23 + x24 + x30 + x37 + x52 + x59 + x60 + x62 + x63 ++ x64 + x97 + x101 + x103 + x104 + x152 + x198 + x199 + x226 + x232 ++ x234 + x238 + x252 + x253 + x254 + x257 + x298 + x299 + x314 + x315 ++ x316 + x318 + x319 + x332 + x333 + x334 + x335 + x336 + x337 + x359 ++ x375 + x381 + x385 + x388 + x390 + x407 + x437 + x442 + x443 + x446 ++ x447 + x453 + x454 + x455 + x456 + x467 + x474 + x476 + x479 + x480 ++ x481 + x482 + x483 + x484 + x485 + x486 + x487 + x489 + x490 <= 1 + +x6 + x21 + x22 + x24 + x26 + x28 + x29 + x30 + x37 + x38 ++ x49 + x52 + x55 + x59 + x61 + x62 + x63 + x101 + x126 + x143 ++ x144 + x146 + x152 + x161 + x165 + x179 + x198 + x199 + x201 + x202 ++ x204 + x217 + x220 + x223 + x226 + x228 + x229 + x232 + x234 + x247 ++ x254 + x276 + x294 + x315 + x332 + x334 + x335 + x336 + x359 + x375 ++ x378 + x381 + x382 + x385 + x388 + x407 + x447 + x453 + x454 + x455 ++ x457 + x467 + x479 + x480 + x481 + x482 + x483 + x484 + x485 + x487 ++ x488 + x489 + x490 <= 1 + +x21 + x22 + x26 + x28 + x29 + x30 + x32 + x37 + x38 + x47 ++ x49 + x52 + x55 + x57 + x62 + x63 + x65 + x67 + x75 + x122 ++ x123 + x124 + x133 + x144 + x146 + x150 + x152 + x153 + x165 + x178 ++ x190 + x198 + x202 + x204 + x205 + x215 + x217 + x218 + x219 + x220 ++ x228 + x229 + x231 + x232 + x233 + x247 + x256 + x290 + x302 + x305 ++ x315 + x330 + x332 + x333 + x334 + x336 + x350 + x359 + x375 + x382 ++ x386 + x388 + x397 + x447 + x453 + x455 + x458 + x460 + x466 + x467 ++ x479 + x480 + x481 + x482 + x483 + x484 + x487 <= 1 + +x18 + x21 + x23 + x28 + x32 + x37 + x47 + x49 + x50 + x52 ++ x55 + x56 + x57 + x65 + x67 + x68 + x122 + x123 + x148 + x149 ++ x152 + x153 + x186 + x190 + x198 + x200 + x215 + x217 + x218 + x219 ++ x220 + x228 + x229 + x233 + x256 + x267 + x286 + x288 + x290 + x303 ++ x305 + x308 + x358 + x362 + x386 + x393 + x397 + x404 + x408 + x453 ++ x458 + x459 + x460 + x466 + x479 + x480 + x481 + x482 + x483 + x484 ++ x487 <= 1 + +x18 + x23 + x25 + x26 + x28 + x31 + x32 + x33 + x47 + x49 ++ x50 + x52 + x53 + x54 + x55 + x56 + x57 + x65 + x66 + x67 ++ x68 + x76 + x77 + x107 + x120 + x121 + x122 + x123 + x124 + x138 ++ x153 + x187 + x188 + x189 + x190 + x192 + x202 + x203 + x231 + x233 ++ x267 + x286 + x288 + x289 + x290 + x294 + x303 + x305 + x306 + x307 ++ x308 + x313 + x326 + x330 + x386 + x393 + x394 + x397 + x404 + x408 ++ x444 + x445 + x459 + x461 + x466 + x479 + x483 <= 1 + +x21 + x23 + x25 + x29 + x31 + x32 + x33 + x46 + x47 + x49 ++ x50 + x51 + x53 + x54 + x55 + x57 + x65 + x67 + x68 + x71 ++ x73 + x76 + x77 + x80 + x107 + x119 + x120 + x121 + x122 + x123 ++ x124 + x138 + x147 + x153 + x159 + x163 + x182 + x183 + x187 + x188 ++ x189 + x190 + x191 + x192 + x199 + x201 + x202 + x203 + x218 + x225 ++ x231 + x244 + x246 + x247 + x248 + x258 + x259 + x260 + x263 + x303 ++ x304 + x305 + x306 + x307 + x312 + x313 + x330 + x345 + x378 + x386 ++ x392 + x393 + x394 + x395 + x396 + x397 + x404 + x406 + x408 + x421 ++ x444 + x459 + x464 + x466 + x479 + x480 + x481 + x482 + x483 + x487 + <= 1 + +x23 + x25 + x47 + x49 + x54 + x55 + x57 + x68 + x84 + x107 ++ x119 + x120 + x121 + x122 + x123 + x124 + x182 + x183 + x186 + x187 ++ x201 + x246 + x247 + x248 + x250 + x258 + x259 + x262 + x263 + x306 ++ x309 + x312 + x378 + x386 + x391 + x392 + x393 + x394 + x395 + x396 ++ x397 + x406 + x439 + x479 + x481 + x482 <= 1 + +x23 + x25 + x54 + x55 + x57 + x79 + x84 + x119 + x121 + x122 ++ x123 + x153 + x182 + x184 + x188 + x199 + x201 + x203 + x225 + x246 ++ x247 + x248 + x262 + x263 + x292 + x297 + x312 + x378 + x391 + x392 ++ x393 + x396 + x397 + x404 + x406 + x441 + x465 + x479 + x481 + x482 + <= 1 + +x24 + x95 + x222 + x224 + x229 + x239 + x279 + x281 + x282 + x283 ++ x292 + x299 + x319 + x333 + x335 + x338 + x343 + x390 + x403 + x407 ++ x419 + x422 + x443 + x445 + x475 + x477 + x479 + x480 + x481 + x482 ++ x483 + x484 + x486 + x487 + x489 <= 1 + +x21 + x24 + x26 + x30 + x60 + x95 + x96 + x97 + x103 + x104 ++ x199 + x202 + x223 + x224 + x229 + x234 + x238 + x257 + x282 + x283 ++ x292 + x298 + x299 + x300 + x316 + x319 + x328 + x332 + x333 + x334 ++ x335 + x336 + x337 + x375 + x388 + x390 + x403 + x407 + x409 + x417 ++ x422 + x442 + x443 + x446 + x447 + x456 + x474 + x475 + x477 + x479 ++ x480 + x481 + x482 + x483 + x484 + x485 + x486 + x489 <= 1 + +x21 + x23 + x24 + x26 + x29 + x30 + x52 + x53 + x56 + x59 ++ x61 + x64 + x70 + x89 + x91 + x96 + x103 + x130 + x152 + x158 ++ x199 + x203 + x223 + x224 + x228 + x229 + x230 + x232 + x234 + x252 ++ x299 + x300 + x314 + x315 + x316 + x317 + x318 + x319 + x328 + x332 ++ x333 + x335 + x337 + x381 + x383 + x384 + x405 + x407 + x417 + x421 ++ x426 + x442 + x443 + x444 + x445 + x446 + x447 + x475 + x476 + x479 ++ x481 + x482 + x483 + x484 + x486 + x489 <= 1 + +x21 + x22 + x23 + x24 + x26 + x28 + x29 + x30 + x32 + x37 ++ x38 + x52 + x53 + x56 + x60 + x61 + x70 + x89 + x94 + x104 ++ x125 + x126 + x133 + x152 + x193 + x198 + x199 + x201 + x202 + x203 ++ x223 + x226 + x228 + x229 + x232 + x234 + x238 + x252 + x253 + x254 ++ x285 + x294 + x300 + x314 + x315 + x318 + x334 + x336 + x337 + x359 ++ x384 + x385 + x388 + x390 + x393 + x405 + x418 + x420 + x442 + x443 ++ x444 + x445 + x446 + x447 + x454 + x455 + x456 + x467 + x476 + x479 ++ x480 + x481 + x482 + x483 + x484 + x487 + x489 + x497 <= 1 + +x22 + x24 + x26 + x29 + x31 + x32 + x36 + x49 + x52 + x53 ++ x56 + x61 + x65 + x69 + x70 + x133 + x149 + x150 + x152 + x153 ++ x171 + x173 + x192 + x193 + x198 + x201 + x202 + x203 + x204 + x205 ++ x206 + x219 + x220 + x222 + x223 + x226 + x227 + x228 + x229 + x232 ++ x233 + x236 + x237 + x239 + x251 + x252 + x256 + x267 + x294 + x302 ++ x317 + x330 + x334 + x336 + x342 + x388 + x393 + x394 + x404 + x406 ++ x409 + x418 + x420 + x421 + x444 + x446 + x455 + x458 + x460 + x479 ++ x480 + x481 + x482 + x483 + x487 + x489 + x496 <= 1 + +x11 + x21 + x22 + x23 + x24 + x25 + x26 + x31 + x32 + x34 ++ x36 + x39 + x49 + x52 + x55 + x56 + x61 + x65 + x66 + x67 ++ x69 + x70 + x123 + x124 + x138 + x148 + x149 + x150 + x152 + x153 ++ x157 + x166 + x170 + x173 + x188 + x189 + x192 + x193 + x198 + x201 ++ x202 + x206 + x217 + x219 + x220 + x222 + x227 + x232 + x233 + x236 ++ x237 + x245 + x251 + x256 + x264 + x267 + x294 + x302 + x305 + x308 ++ x317 + x330 + x379 + x393 + x396 + x397 + x404 + x406 + x409 + x420 ++ x444 + x446 + x458 + x479 + x482 + x483 + x496 <= 1 + +x15 + x18 + x23 + x25 + x26 + x31 + x32 + x35 + x36 + x53 ++ x54 + x55 + x56 + x57 + x61 + x65 + x66 + x69 + x70 + x76 ++ x120 + x123 + x124 + x136 + x138 + x139 + x150 + x152 + x153 + x157 ++ x168 + x182 + x187 + x188 + x189 + x192 + x193 + x198 + x202 + x203 ++ x217 + x219 + x236 + x251 + x288 + x290 + x294 + x302 + x303 + x326 ++ x330 + x386 + x393 + x394 + x396 + x397 + x404 + x408 + x444 + x461 ++ x479 + x480 <= 1 + +x22 + x31 + x50 + x53 + x54 + x55 + x57 + x69 + x71 + x72 ++ x73 + x76 + x77 + x107 + x119 + x120 + x121 + x122 + x123 + x124 ++ x157 + x159 + x162 + x183 + x184 + x186 + x187 + x188 + x189 + x190 ++ x191 + x192 + x199 + x200 + x201 + x202 + x203 + x208 + x231 + x240 ++ x243 + x247 + x248 + x259 + x260 + x291 + x294 + x297 + x303 + x304 ++ x307 + x309 + x313 + x345 + x374 + x378 + x389 + x392 + x393 + x394 ++ x395 + x396 + x397 + x404 + x406 + x444 + x479 + x481 + x484 <= 1 + +x22 + x25 + x29 + x53 + x54 + x55 + x56 + x57 + x67 + x68 ++ x73 + x76 + x77 + x80 + x84 + x120 + x121 + x122 + x123 + x124 ++ x156 + x159 + x163 + x182 + x183 + x184 + x186 + x187 + x188 + x189 ++ x190 + x191 + x192 + x203 + x225 + x235 + x243 + x247 + x258 + x259 ++ x260 + x266 + x291 + x297 + x303 + x306 + x309 + x310 + x312 + x313 ++ x345 + x347 + x374 + x375 + x378 + x386 + x391 + x392 + x393 + x394 ++ x395 + x396 + x397 + x404 + x406 + x479 + x482 + x484 + x487 <= 1 + +x54 + x57 + x119 + x121 + x122 + x123 + x153 + x156 + x159 + x182 ++ x183 + x184 + x186 + x187 + x188 + x189 + x203 + x207 + x209 + x210 ++ x225 + x243 + x292 + x297 + x306 + x374 + x375 + x378 + x389 + x390 ++ x391 + x392 + x395 + x396 + x404 + x406 + x479 + x480 + x481 <= 1 + +x23 + x24 + x86 + x87 + x92 + x94 + x95 + x104 + x106 + x120 ++ x199 + x200 + x201 + x224 + x229 + x230 + x234 + x238 + x239 + x279 ++ x280 + x281 + x282 + x283 + x292 + x298 + x300 + x333 + x335 + x337 ++ x338 + x341 + x342 + x343 + x383 + x405 + x417 + x419 + x420 + x422 ++ x425 + x426 + x442 + x443 + x445 + x446 + x480 + x481 + x482 + x483 ++ x484 + x486 + x489 + x498 <= 1 + +x23 + x24 + x30 + x52 + x89 + x91 + x93 + x95 + x99 + x104 ++ x120 + x158 + x199 + x201 + x202 + x229 + x230 + x234 + x237 + x238 ++ x239 + x279 + x282 + x292 + x298 + x299 + x300 + x314 + x316 + x318 ++ x319 + x328 + x333 + x334 + x335 + x337 + x338 + x341 + x342 + x343 ++ x383 + x384 + x403 + x405 + x409 + x417 + x419 + x420 + x421 + x422 ++ x425 + x426 + x442 + x443 + x445 + x446 + x447 + x474 + x477 + x478 ++ x479 + x481 + x482 + x483 + x484 + x485 + x486 + x489 <= 1 + +x22 + x23 + x24 + x26 + x52 + x53 + x56 + x59 + x64 + x70 ++ x88 + x96 + x106 + x127 + x130 + x134 + x152 + x193 + x198 + x199 ++ x200 + x201 + x202 + x223 + x228 + x229 + x232 + x234 + x237 + x238 ++ x239 + x247 + x249 + x284 + x298 + x300 + x314 + x317 + x318 + x322 ++ x328 + x337 + x342 + x381 + x383 + x388 + x405 + x407 + x408 + x409 ++ x417 + x419 + x420 + x421 + x442 + x445 + x446 + x479 + x481 + x482 ++ x483 + x484 + x486 + x489 + x496 + x497 + x498 + x499 + x501 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 + x29 + x31 + x36 + x37 ++ x52 + x53 + x56 + x66 + x70 + x85 + x99 + x106 + x125 + x127 ++ x130 + x132 + x133 + x134 + x149 + x152 + x171 + x193 + x198 + x199 ++ x200 + x201 + x202 + x203 + x214 + x223 + x224 + x228 + x232 + x234 ++ x236 + x237 + x238 + x239 + x249 + x253 + x270 + x294 + x300 + x302 ++ x315 + x317 + x336 + x337 + x342 + x348 + x368 + x388 + x393 + x404 ++ x405 + x408 + x409 + x410 + x411 + x418 + x419 + x420 + x421 + x442 ++ x443 + x444 + x447 + x452 + x454 + x458 + x463 + x476 + x479 + x480 ++ x481 + x482 + x483 + x484 + x486 + x489 + x496 + x497 + x498 + x499 ++ x500 <= 1 + +x14 + x21 + x22 + x23 + x24 + x25 + x26 + x29 + x31 + x32 ++ x34 + x36 + x39 + x52 + x53 + x56 + x66 + x69 + x70 + x77 ++ x149 + x150 + x152 + x153 + x166 + x171 + x173 + x174 + x184 + x189 ++ x193 + x198 + x200 + x201 + x202 + x206 + x219 + x220 + x227 + x228 ++ x232 + x233 + x234 + x236 + x237 + x238 + x239 + x251 + x253 + x256 ++ x265 + x294 + x296 + x297 + x300 + x301 + x302 + x305 + x308 + x330 ++ x336 + x388 + x401 + x404 + x406 + x408 + x409 + x410 + x412 + x418 ++ x420 + x421 + x479 + x480 + x481 + x482 + x483 + x489 + x492 + x496 ++ x500 <= 1 + +x9 + x10 + x17 + x22 + x24 + x25 + x26 + x32 + x34 + x35 ++ x36 + x39 + x52 + x55 + x56 + x57 + x69 + x77 + x107 + x149 ++ x150 + x151 + x152 + x153 + x166 + x170 + x171 + x174 + x184 + x188 ++ x193 + x198 + x201 + x202 + x222 + x227 + x230 + x233 + x234 + x236 ++ x237 + x245 + x256 + x264 + x265 + x266 + x294 + x301 + x330 + x331 ++ x341 + x366 + x393 + x394 + x404 + x406 + x408 + x409 + x412 + x420 ++ x444 + x469 + x472 + x479 + x481 + x482 + x483 <= 1 + +x10 + x11 + x14 + x17 + x22 + x25 + x26 + x31 + x32 + x35 ++ x36 + x39 + x55 + x56 + x57 + x65 + x66 + x69 + x76 + x77 ++ x107 + x108 + x123 + x124 + x138 + x139 + x150 + x151 + x152 + x153 ++ x157 + x166 + x168 + x169 + x184 + x188 + x192 + x193 + x198 + x200 ++ x201 + x202 + x203 + x222 + x227 + x230 + x232 + x235 + x236 + x237 ++ x240 + x251 + x256 + x259 + x264 + x265 + x266 + x291 + x294 + x296 ++ x301 + x302 + x329 + x330 + x348 + x379 + x391 + x392 + x393 + x394 ++ x396 + x397 + x404 + x405 + x406 + x407 + x408 + x409 + x428 + x444 ++ x469 + x470 + x472 + x479 + x480 + x482 + x483 + x489 <= 1 + +x22 + x25 + x26 + x31 + x35 + x36 + x41 + x43 + x53 + x54 ++ x55 + x56 + x57 + x69 + x72 + x73 + x76 + x77 + x120 + x122 ++ x138 + x150 + x151 + x152 + x154 + x157 + x158 + x159 + x162 + x183 ++ x184 + x186 + x187 + x188 + x189 + x190 + x191 + x192 + x193 + x198 ++ x199 + x200 + x201 + x202 + x203 + x208 + x212 + x222 + x227 + x235 ++ x236 + x240 + x242 + x243 + x244 + x251 + x259 + x264 + x265 + x266 ++ x291 + x294 + x296 + x297 + x304 + x311 + x330 + x345 + x347 + x374 ++ x379 + x389 + x390 + x391 + x392 + x393 + x394 + x395 + x396 + x397 ++ x404 + x406 + x408 + x409 + x428 + x469 + x479 + x480 + x481 + x483 ++ x484 <= 1 + +x22 + x25 + x26 + x35 + x42 + x43 + x53 + x54 + x55 + x56 ++ x57 + x67 + x74 + x77 + x120 + x121 + x122 + x150 + x151 + x154 ++ x156 + x157 + x159 + x182 + x183 + x184 + x186 + x187 + x188 + x189 ++ x190 + x192 + x193 + x200 + x201 + x202 + x203 + x210 + x211 + x222 ++ x223 + x227 + x235 + x236 + x240 + x243 + x244 + x259 + x266 + x291 ++ x296 + x297 + x304 + x310 + x311 + x347 + x374 + x375 + x379 + x386 ++ x389 + x390 + x391 + x392 + x393 + x394 + x395 + x396 + x404 + x406 ++ x409 + x429 + x468 + x479 + x480 + x481 + x484 <= 1 + +x26 + x40 + x42 + x43 + x54 + x55 + x121 + x122 + x137 + x150 ++ x151 + x156 + x157 + x158 + x159 + x182 + x183 + x184 + x186 + x187 ++ x188 + x189 + x190 + x192 + x193 + x198 + x201 + x203 + x207 + x208 ++ x209 + x210 + x222 + x223 + x225 + x227 + x235 + x236 + x240 + x241 ++ x243 + x244 + x296 + x297 + x310 + x311 + x347 + x374 + x375 + x378 ++ x386 + x389 + x390 + x391 + x394 + x395 + x396 + x404 + x406 + x409 ++ x422 + x429 + x457 + x479 + x480 + x481 + x484 <= 1 + +x1 + x3 + x22 + x23 + x24 + x26 + x88 + x91 + x92 + x93 ++ x94 + x95 + x103 + x104 + x105 + x106 + x120 + x131 + x157 + x199 ++ x200 + x224 + x229 + x230 + x239 + x241 + x279 + x280 + x281 + x282 ++ x298 + x299 + x335 + x338 + x340 + x341 + x342 + x343 + x368 + x398 ++ x399 + x400 + x403 + x405 + x408 + x419 + x422 + x442 + x443 + x444 ++ x445 + x446 + x447 + x465 + x480 + x481 + x482 + x483 + x484 + x486 ++ x489 <= 1 + +x3 + x4 + x22 + x23 + x24 + x26 + x30 + x52 + x53 + x85 ++ x86 + x87 + x88 + x89 + x91 + x92 + x93 + x94 + x95 + x99 ++ x103 + x104 + x105 + x106 + x131 + x199 + x200 + x202 + x224 + x229 ++ x230 + x233 + x239 + x241 + x257 + x279 + x280 + x281 + x282 + x283 ++ x292 + x297 + x298 + x299 + x316 + x333 + x335 + x337 + x338 + x340 ++ x341 + x342 + x343 + x398 + x399 + x400 + x403 + x405 + x406 + x408 ++ x409 + x417 + x418 + x419 + x420 + x421 + x422 + x425 + x442 + x443 ++ x445 + x446 + x463 + x478 + x481 + x482 + x486 + x489 + x497 + x498 + <= 1 + +x22 + x23 + x24 + x26 + x52 + x53 + x56 + x64 + x85 + x86 ++ x87 + x88 + x92 + x99 + x103 + x106 + x130 + x131 + x132 + x133 ++ x134 + x135 + x149 + x152 + x155 + x189 + x199 + x200 + x202 + x213 ++ x214 + x229 + x230 + x234 + x238 + x239 + x248 + x249 + x270 + x279 ++ x283 + x284 + x295 + x297 + x298 + x299 + x300 + x316 + x320 + x321 ++ x322 + x323 + x326 + x327 + x328 + x337 + x338 + x378 + x388 + x393 ++ x398 + x399 + x404 + x405 + x407 + x408 + x409 + x417 + x418 + x419 ++ x421 + x442 + x443 + x445 + x446 + x447 + x463 + x480 + x483 + x486 ++ x496 + x497 + x498 + x500 + x501 <= 1 + +x9 + x19 + x20 + x22 + x26 + x29 + x52 + x53 + x56 + x64 ++ x85 + x86 + x87 + x88 + x90 + x99 + x105 + x106 + x130 + x131 ++ x132 + x133 + x134 + x135 + x149 + x150 + x151 + x153 + x172 + x173 ++ x174 + x176 + x198 + x200 + x201 + x202 + x203 + x213 + x214 + x224 ++ x232 + x234 + x238 + x239 + x248 + x270 + x272 + x294 + x295 + x297 ++ x300 + x302 + x317 + x321 + x322 + x326 + x328 + x337 + x349 + x368 ++ x388 + x393 + x399 + x404 + x405 + x408 + x409 + x411 + x417 + x418 ++ x424 + x442 + x443 + x445 + x446 + x451 + x454 + x463 + x473 + x480 ++ x482 + x483 + x484 + x495 + x496 + x497 + x498 + x499 + x500 + x501 + <= 1 + +x9 + x14 + x20 + x22 + x24 + x25 + x26 + x29 + x31 + x32 ++ x52 + x53 + x56 + x85 + x88 + x105 + x106 + x141 + x149 + x150 ++ x152 + x153 + x169 + x171 + x172 + x173 + x174 + x175 + x176 + x193 ++ x198 + x200 + x201 + x202 + x224 + x234 + x235 + x236 + x238 + x239 ++ x242 + x253 + x265 + x297 + x300 + x301 + x302 + x321 + x323 + x377 ++ x388 + x394 + x401 + x404 + x405 + x408 + x409 + x420 + x421 + x472 ++ x473 + x481 + x482 + x483 + x491 + x492 + x496 + x497 + x498 + x499 ++ x500 + x501 <= 1 + +x9 + x10 + x11 + x13 + x14 + x17 + x20 + x22 + x24 + x25 ++ x26 + x36 + x39 + x74 + x77 + x104 + x107 + x141 + x148 + x149 ++ x150 + x151 + x152 + x155 + x158 + x167 + x168 + x169 + x170 + x174 ++ x176 + x183 + x193 + x194 + x196 + x198 + x202 + x203 + x212 + x227 ++ x230 + x233 + x234 + x235 + x236 + x237 + x238 + x239 + x242 + x243 ++ x245 + x277 + x278 + x295 + x296 + x300 + x301 + x323 + x331 + x341 ++ x348 + x376 + x377 + x393 + x394 + x396 + x397 + x404 + x405 + x407 ++ x408 + x409 + x432 + x468 + x469 + x470 + x472 + x473 + x479 + x480 ++ x482 + x483 + x484 + x491 + x497 + x501 <= 1 + +x9 + x10 + x11 + x12 + x14 + x17 + x22 + x25 + x36 + x39 ++ x53 + x54 + x55 + x56 + x57 + x74 + x104 + x107 + x108 + x123 ++ x129 + x139 + x141 + x148 + x149 + x150 + x151 + x152 + x153 + x154 ++ x155 + x156 + x158 + x166 + x167 + x168 + x169 + x170 + x183 + x184 ++ x192 + x193 + x195 + x200 + x201 + x202 + x203 + x212 + x227 + x230 ++ x232 + x234 + x235 + x236 + x237 + x240 + x241 + x242 + x243 + x245 ++ x278 + x294 + x295 + x296 + x301 + x302 + x329 + x330 + x346 + x348 ++ x349 + x361 + x374 + x376 + x378 + x379 + x389 + x393 + x394 + x396 ++ x397 + x404 + x405 + x407 + x408 + x409 + x428 + x432 + x444 + x468 ++ x469 + x470 + x472 + x473 + x479 + x480 + x501 <= 1 + +x9 + x12 + x22 + x26 + x42 + x54 + x55 + x56 + x73 + x74 ++ x76 + x120 + x122 + x136 + x139 + x148 + x149 + x151 + x154 + x155 ++ x156 + x158 + x184 + x190 + x192 + x193 + x199 + x200 + x201 + x202 ++ x203 + x207 + x211 + x212 + x222 + x223 + x225 + x227 + x234 + x235 ++ x237 + x240 + x242 + x243 + x244 + x245 + x264 + x291 + x294 + x296 ++ x329 + x345 + x347 + x348 + x374 + x376 + x389 + x392 + x393 + x394 ++ x404 + x405 + x406 + x407 + x408 + x409 + x427 + x428 + x429 + x430 ++ x432 + x468 + x469 + x470 + x472 + x473 + x479 + x480 + x483 <= 1 + +x26 + x40 + x41 + x42 + x43 + x53 + x54 + x55 + x57 + x73 ++ x74 + x76 + x77 + x121 + x139 + x140 + x151 + x154 + x156 + x157 ++ x158 + x159 + x182 + x183 + x184 + x186 + x187 + x188 + x189 + x190 ++ x191 + x192 + x193 + x198 + x200 + x201 + x202 + x203 + x207 + x208 ++ x209 + x210 + x211 + x222 + x223 + x225 + x227 + x235 + x236 + x240 ++ x242 + x243 + x244 + x245 + x259 + x291 + x296 + x297 + x304 + x309 ++ x310 + x311 + x345 + x347 + x374 + x389 + x390 + x391 + x392 + x393 ++ x394 + x395 + x396 + x404 + x406 + x408 + x409 + x429 + x457 + x468 ++ x479 + x480 + x481 + x484 <= 1 + +x26 + x40 + x41 + x43 + x54 + x77 + x137 + x151 + x157 + x158 ++ x159 + x182 + x186 + x187 + x188 + x190 + x191 + x192 + x193 + x198 ++ x200 + x201 + x202 + x203 + x207 + x208 + x209 + x211 + x222 + x223 ++ x225 + x232 + x235 + x236 + x240 + x241 + x242 + x243 + x244 + x296 ++ x304 + x344 + x347 + x386 + x389 + x391 + x394 + x396 + x404 + x406 ++ x408 + x427 + x429 + x479 + x480 + x481 + x484 <= 1 + +x1 + x2 + x3 + x23 + x24 + x87 + x88 + x90 + x91 + x92 ++ x93 + x94 + x95 + x103 + x104 + x105 + x106 + x131 + x199 + x200 ++ x202 + x224 + x229 + x230 + x233 + x241 + x257 + x279 + x280 + x281 ++ x282 + x284 + x292 + x298 + x299 + x322 + x341 + x342 + x348 + x351 ++ x398 + x399 + x400 + x403 + x406 + x408 + x409 + x417 + x419 + x442 ++ x443 + x444 + x445 + x446 + x447 + x463 + x478 + x480 + x482 + x483 ++ x486 + x489 + x497 <= 1 + +x1 + x2 + x4 + x22 + x23 + x24 + x26 + x30 + x53 + x85 ++ x87 + x89 + x91 + x92 + x93 + x94 + x105 + x106 + x130 + x131 ++ x132 + x135 + x149 + x151 + x188 + x191 + x199 + x200 + x202 + x229 ++ x230 + x239 + x279 + x281 + x283 + x284 + x292 + x298 + x299 + x300 ++ x321 + x322 + x327 + x340 + x341 + x342 + x348 + x368 + x398 + x399 ++ x400 + x403 + x405 + x408 + x409 + x417 + x419 + x423 + x442 + x443 ++ x444 + x445 + x446 + x447 + x478 + x480 + x481 + x482 + x483 + x497 ++ x499 <= 1 + +x15 + x22 + x26 + x29 + x52 + x53 + x64 + x85 + x90 + x94 ++ x99 + x105 + x106 + x130 + x131 + x132 + x134 + x135 + x149 + x151 ++ x153 + x155 + x162 + x176 + x191 + x198 + x199 + x200 + x202 + x213 ++ x230 + x234 + x238 + x239 + x256 + x268 + x270 + x271 + x275 + x281 ++ x283 + x284 + x295 + x297 + x298 + x299 + x300 + x320 + x321 + x322 ++ x324 + x326 + x327 + x328 + x331 + x337 + x340 + x341 + x342 + x368 ++ x377 + x393 + x399 + x400 + x405 + x407 + x408 + x409 + x417 + x418 ++ x421 + x423 + x424 + x442 + x444 + x445 + x446 + x447 + x449 + x480 ++ x482 + x483 + x484 + x496 + x498 + x499 + x500 + x501 <= 1 + +x15 + x16 + x19 + x22 + x29 + x52 + x53 + x56 + x90 + x103 ++ x105 + x106 + x108 + x130 + x132 + x134 + x135 + x149 + x150 + x151 ++ x153 + x155 + x172 + x173 + x174 + x175 + x176 + x191 + x198 + x199 ++ x200 + x202 + x234 + x235 + x238 + x239 + x268 + x269 + x272 + x273 ++ x274 + x275 + x276 + x280 + x295 + x297 + x298 + x299 + x300 + x301 ++ x320 + x321 + x324 + x326 + x327 + x328 + x329 + x331 + x340 + x349 ++ x364 + x368 + x377 + x388 + x399 + x400 + x404 + x405 + x407 + x408 ++ x409 + x418 + x443 + x444 + x445 + x448 + x451 + x480 + x481 + x482 ++ x484 + x496 + x499 + x500 <= 1 + +x14 + x15 + x16 + x19 + x22 + x24 + x25 + x39 + x53 + x56 ++ x103 + x105 + x108 + x149 + x150 + x151 + x152 + x153 + x172 + x173 ++ x174 + x175 + x176 + x193 + x198 + x200 + x202 + x236 + x238 + x239 ++ x272 + x278 + x295 + x301 + x323 + x324 + x326 + x327 + x328 + x329 ++ x331 + x340 + x346 + x377 + x379 + x396 + x400 + x404 + x405 + x408 ++ x409 + x420 + x443 + x470 + x480 + x481 + x482 + x484 + x498 + x500 ++ x501 <= 1 + +x10 + x11 + x14 + x15 + x16 + x17 + x22 + x24 + x25 + x26 ++ x36 + x39 + x56 + x103 + x104 + x105 + x108 + x128 + x134 + x148 ++ x149 + x150 + x151 + x169 + x170 + x172 + x175 + x183 + x194 + x196 ++ x197 + x202 + x203 + x227 + x228 + x230 + x235 + x236 + x237 + x238 ++ x239 + x276 + x277 + x278 + x295 + x296 + x301 + x323 + x326 + x329 ++ x331 + x340 + x341 + x344 + x346 + x349 + x377 + x379 + x393 + x394 ++ x396 + x397 + x400 + x404 + x405 + x407 + x408 + x409 + x443 + x445 ++ x468 + x469 + x470 + x473 + x484 + x500 <= 1 + +x0 + x9 + x10 + x11 + x12 + x13 + x17 + x20 + x22 + x25 ++ x26 + x35 + x36 + x39 + x56 + x74 + x76 + x104 + x105 + x107 ++ x108 + x128 + x129 + x141 + x148 + x149 + x150 + x151 + x154 + x155 ++ x156 + x166 + x167 + x168 + x169 + x170 + x183 + x194 + x195 + x198 ++ x200 + x201 + x202 + x203 + x216 + x228 + x230 + x232 + x235 + x236 ++ x237 + x239 + x240 + x242 + x243 + x245 + x273 + x277 + x278 + x295 ++ x296 + x301 + x331 + x341 + x344 + x345 + x346 + x348 + x349 + x374 ++ x376 + x377 + x379 + x393 + x394 + x396 + x404 + x405 + x406 + x407 ++ x408 + x409 + x430 + x468 + x469 + x470 + x472 + x473 + x479 + x483 ++ x484 + x501 <= 1 + +x13 + x22 + x26 + x34 + x44 + x54 + x74 + x76 + x89 + x108 ++ x136 + x137 + x139 + x140 + x141 + x148 + x150 + x151 + x154 + x155 ++ x156 + x167 + x168 + x183 + x184 + x186 + x200 + x201 + x203 + x212 ++ x216 + x235 + x236 + x237 + x239 + x240 + x241 + x242 + x243 + x245 ++ x294 + x295 + x296 + x344 + x345 + x346 + x347 + x349 + x374 + x376 ++ x377 + x379 + x389 + x392 + x393 + x394 + x396 + x406 + x408 + x409 ++ x427 + x428 + x430 + x432 + x468 + x469 + x470 + x472 + x473 + x479 ++ x483 <= 1 + +x13 + x26 + x41 + x42 + x44 + x54 + x74 + x76 + x77 + x89 ++ x136 + x137 + x139 + x140 + x154 + x159 + x167 + x183 + x184 + x186 ++ x187 + x192 + x198 + x200 + x201 + x202 + x203 + x209 + x210 + x211 ++ x216 + x222 + x225 + x235 + x236 + x237 + x238 + x241 + x242 + x244 ++ x245 + x291 + x295 + x296 + x344 + x345 + x346 + x347 + x349 + x376 ++ x377 + x389 + x390 + x392 + x393 + x394 + x396 + x404 + x406 + x408 ++ x427 + x429 + x431 + x463 + x469 + x473 + x479 + x481 + x483 <= 1 + +x40 + x41 + x44 + x74 + x75 + x132 + x137 + x140 + x153 + x158 ++ x186 + x198 + x201 + x203 + x222 + x225 + x232 + x235 + x236 + x240 ++ x241 + x242 + x295 + x296 + x344 + x347 + x349 + x376 + x390 + x391 ++ x394 + x396 + x406 + x408 + x427 + x431 + x463 + x473 + x479 + x480 ++ x481 + x484 <= 1 + +x2 + x3 + x4 + x87 + x90 + x92 + x93 + x94 + x95 + x104 ++ x106 + x108 + x151 + x185 + x191 + x200 + x202 + x229 + x230 + x241 ++ x274 + x280 + x281 + x298 + x299 + x327 + x342 + x350 + x351 + x398 ++ x399 + x403 + x405 + x442 + x443 + x444 + x445 + x446 + x447 + x450 ++ x482 + x483 + x489 <= 1 + +x1 + x2 + x4 + x22 + x57 + x90 + x91 + x93 + x105 + x108 ++ x131 + x151 + x155 + x184 + x185 + x188 + x191 + x200 + x202 + x230 ++ x238 + x239 + x269 + x274 + x280 + x281 + x283 + x284 + x292 + x298 ++ x299 + x321 + x324 + x326 + x327 + x329 + x348 + x399 + x400 + x403 ++ x405 + x407 + x409 + x417 + x418 + x442 + x443 + x444 + x445 + x446 ++ x447 + x448 + x449 + x450 + x481 + x482 + x483 + x499 <= 1 + +x19 + x22 + x52 + x90 + x93 + x99 + x103 + x105 + x106 + x108 ++ x135 + x149 + x151 + x155 + x172 + x175 + x176 + x184 + x191 + x230 ++ x238 + x268 + x269 + x271 + x274 + x275 + x276 + x284 + x298 + x299 ++ x300 + x320 + x324 + x326 + x327 + x328 + x329 + x331 + x340 + x368 ++ x399 + x400 + x403 + x404 + x405 + x407 + x409 + x418 + x444 + x448 ++ x449 + x450 + x480 + x481 + x482 + x483 + x499 + x500 <= 1 + +x16 + x19 + x22 + x39 + x53 + x105 + x106 + x108 + x132 + x135 ++ x149 + x150 + x172 + x175 + x191 + x200 + x235 + x237 + x238 + x239 ++ x268 + x269 + x271 + x273 + x274 + x275 + x284 + x324 + x326 + x327 ++ x328 + x329 + x331 + x340 + x368 + x399 + x400 + x404 + x405 + x407 ++ x408 + x409 + x418 + x444 + x445 + x480 + x481 + x482 + x484 + x499 + <= 1 + +x15 + x19 + x20 + x22 + x39 + x53 + x105 + x108 + x134 + x135 ++ x149 + x151 + x175 + x191 + x196 + x197 + x200 + x228 + x235 + x237 ++ x238 + x239 + x271 + x272 + x273 + x274 + x275 + x276 + x278 + x284 ++ x295 + x301 + x323 + x326 + x327 + x328 + x329 + x331 + x340 + x346 ++ x349 + x368 + x391 + x397 + x400 + x404 + x405 + x407 + x408 + x409 ++ x445 + x451 + x469 + x470 + x481 + x484 + x498 <= 1 + +x7 + x11 + x16 + x20 + x21 + x22 + x26 + x39 + x74 + x103 ++ x104 + x107 + x148 + x149 + x150 + x151 + x191 + x200 + x203 + x228 ++ x230 + x235 + x236 + x237 + x238 + x239 + x273 + x275 + x276 + x277 ++ x295 + x301 + x323 + x324 + x327 + x329 + x331 + x341 + x344 + x346 ++ x376 + x377 + x379 + x391 + x404 + x405 + x407 + x408 + x409 + x472 ++ x473 + x481 + x484 <= 1 + +x7 + x8 + x13 + x16 + x22 + x26 + x39 + x56 + x74 + x83 ++ x104 + x107 + x108 + x136 + x141 + x148 + x149 + x150 + x156 + x167 ++ x183 + x186 + x195 + x201 + x203 + x216 + x230 + x235 + x237 + x238 ++ x245 + x273 + x277 + x291 + x295 + x301 + x327 + x331 + x341 + x344 ++ x345 + x346 + x348 + x374 + x376 + x404 + x407 + x408 + x430 + x431 ++ x432 + x470 + x472 + x479 + x484 + x501 <= 1 + +x8 + x13 + x22 + x26 + x35 + x36 + x39 + x56 + x74 + x76 ++ x103 + x107 + x108 + x136 + x140 + x141 + x148 + x149 + x150 + x151 ++ x154 + x186 + x201 + x203 + x230 + x235 + x236 + x237 + x241 + x242 ++ x245 + x277 + x294 + x295 + x296 + x344 + x345 + x346 + x348 + x349 ++ x376 + x377 + x379 + x384 + x404 + x405 + x406 + x408 + x409 + x430 ++ x431 + x432 + x468 + x470 + x472 + x479 + x481 + x484 <= 1 + +x13 + x22 + x44 + x74 + x76 + x77 + x136 + x140 + x148 + x154 ++ x186 + x201 + x202 + x203 + x235 + x236 + x237 + x239 + x240 + x241 ++ x242 + x294 + x295 + x296 + x344 + x346 + x349 + x376 + x377 + x389 ++ x390 + x392 + x394 + x396 + x406 + x408 + x427 + x428 + x430 + x431 ++ x463 + x479 + x481 <= 1 + +x40 + x44 + x74 + x91 + x137 + x140 + x153 + x187 + x201 + x203 ++ x219 + x232 + x235 + x237 + x241 + x295 + x296 + x344 + x347 + x376 ++ x379 + x390 + x394 + x406 + x431 + x463 + x479 + x484 <= 1 + +x1 + x2 + x3 + x4 <= 1 + +x5 + x6 <= 1 + +x7 + x8 <= 1 + +x9 + x10 + x11 + x12 + x13 + x14 <= 1 + +x15 + x16 + x17 + x18 + x19 + x20 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 + x38 + x39 <= 1 + +x40 + x41 + x42 + x43 + x44 <= 1 + +x46 + x47 + x48 + x49 + x50 + x51 <= 1 + +x52 + x53 + x54 + x55 + x56 + x57 <= 1 + +x59 + x60 + x61 + x62 + x63 + x64 <= 1 + +x65 + x66 + x67 + x68 + x69 + x70 <= 1 + +x71 + x72 <= 1 + +x73 + x74 + x75 + x76 + x77 + x78 <= 1 + +x79 + x80 + x81 + x82 + x83 + x84 <= 1 + +x85 + x86 + x87 + x88 + x89 + x90 <= 1 + +x91 + x92 + x93 + x94 + x95 + x96 <= 1 + +x97 + x98 + x99 + x100 + x101 + x102 <= 1 + +x103 + x104 + x105 + x106 + x107 + x108 <= 1 + +x109 + x110 + x111 + x112 <= 1 + +x113 + x114 + x115 + x116 + x117 + x118 <= 1 + +x119 + x120 + x121 + x122 + x123 + x124 <= 1 + +x125 + x126 + x127 <= 1 + +x128 + x129 <= 1 + +x130 + x131 + x132 + x133 + x134 + x135 <= 1 + +x136 + x137 + x138 + x139 + x140 + x141 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x148 + x149 + x150 + x151 + x152 + x153 <= 1 + +x154 + x155 + x156 + x157 + x158 + x159 <= 1 + +x160 + x161 + x162 + x163 + x164 + x165 <= 1 + +x166 + x167 + x168 + x169 + x170 + x171 <= 1 + +x172 + x173 + x174 + x175 + x176 <= 1 + +x177 + x178 + x179 + x180 + x181 <= 1 + +x182 + x183 + x184 + x185 + x186 + x187 <= 1 + +x188 + x189 + x190 + x191 + x192 + x193 <= 1 + +x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 <= 1 + +x207 + x208 + x209 + x210 + x211 + x212 <= 1 + +x213 + x214 <= 1 + +x215 + x216 + x217 + x218 + x219 + x220 <= 1 + +x222 + x223 + x224 + x225 + x226 + x227 <= 1 + +x228 + x229 + x230 + x231 + x232 + x233 <= 1 + +x234 + x235 + x236 + x237 + x238 + x239 <= 1 + +x240 + x241 + x242 + x243 + x244 + x245 <= 1 + +x246 + x247 + x248 + x249 + x250 + x251 <= 1 + +x252 + x253 + x254 + x255 + x256 + x257 <= 1 + +x258 + x259 + x260 + x261 + x262 + x263 <= 1 + +x264 + x265 + x266 + x267 <= 1 + +x268 + x269 + x270 + x271 + x272 <= 1 + +x273 + x274 + x275 + x276 + x277 + x278 <= 1 + +x279 + x280 + x281 + x282 + x283 + x284 <= 1 + +x286 + x287 + x288 + x289 + x290 <= 1 + +x291 + x292 + x293 + x294 + x295 + x296 <= 1 + +x297 + x298 + x299 + x300 + x301 + x302 <= 1 + +x303 + x304 + x305 + x306 + x307 + x308 <= 1 + +x309 + x310 + x311 + x312 + x313 <= 1 + +x314 + x315 + x316 + x317 + x318 + x319 <= 1 + +x320 + x321 + x322 + x323 + x324 + x325 <= 1 + +x326 + x327 + x328 + x329 + x330 + x331 <= 1 + +x332 + x333 + x334 + x335 + x336 + x337 <= 1 + +x338 + x339 + x340 + x341 + x342 + x343 <= 1 + +x344 + x345 + x346 + x347 + x348 + x349 <= 1 + +x350 + x351 <= 1 + +x352 + x353 + x354 + x355 + x356 + x357 <= 1 + +x358 + x359 + x360 + x361 + x362 + x363 <= 1 + +x364 + x365 + x366 + x367 + x368 + x369 <= 1 + +x370 + x371 + x372 + x373 <= 1 + +x374 + x375 + x376 + x377 + x378 + x379 <= 1 + +x381 + x382 + x383 + x384 + x385 <= 1 + +x386 + x387 + x388 + x389 + x390 + x391 <= 1 + +x392 + x393 + x394 + x395 + x396 + x397 <= 1 + +x398 + x399 + x400 + x401 + x402 + x403 <= 1 + +x404 + x405 + x406 + x407 + x408 + x409 <= 1 + +x410 + x411 + x412 <= 1 + +x413 + x414 + x415 + x416 <= 1 + +x417 + x418 + x419 + x420 + x421 + x422 <= 1 + +x423 + x424 <= 1 + +x425 + x426 <= 1 + +x427 + x428 + x429 + x430 + x431 + x432 <= 1 + +x433 + x434 + x435 + x436 + x437 + x438 <= 1 + +x439 + x440 + x441 <= 1 + +x442 + x443 + x444 + x445 + x446 + x447 <= 1 + +x448 + x449 + x450 + x451 <= 1 + +x453 + x454 + x455 + x456 + x457 + x458 <= 1 + +x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 + x478 <= 1 + +x479 + x480 + x481 + x482 + x483 + x484 <= 1 + +x485 + x486 + x487 + x488 + x489 + x490 <= 1 + +x491 + x492 <= 1 + +x493 + x494 + x495 <= 1 + +x496 + x497 + x498 + x499 + x500 + x501 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0016.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0016.lp new file mode 100755 index 000000000..fdaefb637 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0016.lp @@ -0,0 +1,1011 @@ +max + +1314.91x0 + 1339.69x1 + 1315.48x2 + 1295.88x3 + 1294.8x4 + 1290.94x5 + 118.627x6 + 579.041x7 + 635.578x8 + 627.366x9 + +577.993x10 + 547.949x11 + 534.982x12 + 650.051x13 + 844.12x14 + 817.431x15 + 808.521x16 + 807.564x17 + 767.427x18 + 112.798x19 + +109.043x20 + 87.8935x21 + 291.824x22 + 399.553x23 + 354.782x24 + 342.374x25 + 293.954x26 + 258.592x27 + 450.795x28 + 548.99x29 + +498.716x30 + 455.469x31 + 396.324x32 + 320.238x33 + 483.79x34 + 536.601x35 + 532.617x36 + 520.427x37 + 501.446x38 + 487.44x39 + +146.143x40 + 126.918x41 + 365.371x42 + 453.772x43 + 407.06x44 + 374.027x45 + 359.76x46 + 346.313x47 + 52.017x48 + 1552.07x49 + +1664x50 + 1647.51x51 + 1636.58x52 + 1569.96x53 + 1545.77x54 + 62.8208x55 + 315.859x56 + 473.543x57 + 445.156x58 + 440.91x59 + +356.628x60 + 112.791x61 + 130.958x62 + 2098.34x63 + 2352.45x64 + 2252.5x65 + 2249.58x66 + 2204.25x67 + 2193.84x68 + 1335.43x69 + +1370.63x70 + 1293.84x71 + 1286.62x72 + 1283.7x73 + 1260.8x74 + 457.126x75 + 577.522x76 + 364.573x77 + 306.07x78 + 288.148x79 + +220.408x80 + 61.5049x81 + 485.583x82 + 649.897x83 + 633.308x84 + 558.825x85 + 535.506x86 + 416.425x87 + 47.297x88 + 455.116x89 + +648.409x90 + 618.617x91 + 581.489x92 + 512.417x93 + 503.557x94 + 317.198x95 + 295.239x96 + 278.089x97 + 229.745x98 + 77.5315x99 + +248.366x100 + 276.895x101 + 244.089x102 + 187.845x103 + 88.8936x104 + 1449.81x105 + 1519.94x106 + 1496.91x107 + 1491.1x108 + 1486.11x109 + +1440.95x110 + 649.502x111 + 929.298x112 + 792.782x113 + 792.595x114 + 792.078x115 + 770.633x116 + 472.1x117 + 668.443x118 + 498.699x119 + +492.192x120 + 462.999x121 + 403.136x122 + 316.099x123 + 342.61x124 + 329.215x125 + 274.268x126 + 272.28x127 + 1089.81x128 + 1426.96x129 + +1288.1x130 + 1237.75x131 + 1229.86x132 + 1213.33x133 + 225.383x134 + 310.628x135 + 261.458x136 + 126.295x137 + 1928.33x138 + 2329.61x139 + +2318.17x140 + 2311.66x141 + 2300.03x142 + 2264.74x143 + 806.766x144 + 977.418x145 + 963.515x146 + 959.434x147 + 956.346x148 + 949.524x149 + +2340.69x150 + 2541.95x151 + 2496.84x152 + 2435.74x153 + 2425.09x154 + 2408.98x155 + 90.1383x156 + 135.136x157 + 88.5906x158 + 966.505x159 + +1056.06x160 + 1001.49x161 + 1001.49x162 + 953.069x163 + 915.7x164 + 264.759x165 + 342.684x166 + 270.243x167 + 195.18x168 + 283.537x169 + +330.945x170 + 316.434x171 + 316.296x172 + 158.874x173 + 455.967x174 + 546.843x175 + 530.838x176 + 487.879x177 + 483.089x178 + 473.159x179 + +843.977x180 + 1075.54x181 + 940.011x182 + 930.164x183 + 913.573x184 + 841.949x185 + 883.089x186 + 1171.2x187 + 1127.12x188 + 1098.08x189 + +1093.55x190 + 1063.7x191 + 1013.62x192 + 1206.4x193 + 1183.49x194 + 1080.74x195 + 1076.16x196 + 1048.79x197 + 285.394x198 + 288.664x199 + +256.619x200 + 254.41x201 + 233.663x202 + 215.519x203 + 529.132x204 + 557.201x205 + 515.887x206 + 511.767x207 + 483.656x208 + 473.368x209 + +165.123x210 + 124.31x211 + 121.069x212 + 1867.43x213 + 2246.49x214 + 2206.66x215 + 2171.51x216 + 2156.73x217 + 2144.38x218 + 366.802x219 + +529.727x220 + 470.955x221 + 443.375x222 + 442.054x223 + 426.909x224 + 235.894x225 + 322.104x226 + 280.641x227 + 250.427x228 + 233.501x229 + +198.127x230 + 275.249x231 + 352.281x232 + 346.856x233 + 205.745x234 + 1052x235 + 1284.73x236 + 1230.96x237 + 1220.92x238 + 1184.34x239 + +1156.05x240 + 402.713x241 + 523.599x242 + 515.952x243 + 435.039x244 + 413.678x245 + 411.298x246 + 321.336x247 + 345.54x248 + 317.241x249 + +296.971x250 + 295.074x251 + 245.488x252 + 628.812x253 + 715.713x254 + 691.431x255 + 606.193x256 + 568.806x257 + 539.598x258 + 248.792x259 + +279.328x260 + 263.327x261 + 242.246x262 + 232.08x263 + 1017.73x264 + 1264.47x265 + 1156.59x266 + 1115.84x267 + 1091.07x268 + 1077.3x269 + +196.797x270 + 282.013x271 + 176.326x272 + 225.929x273 + 315.418x274 + 307.135x275 + 295.282x276 + 271.044x277 + 79.2452x278 + 697.653x279 + +967.43x280 + 899.834x281 + 894.119x282 + 890.417x283 + 829.964x284 + 462.724x285 + 634.061x286 + 596.15x287 + 590.922x288 + 583.226x289 + +568.029x290 + 529.019x291 + 619.588x292 + 590.793x293 + 528.49x294 + 508.725x295 + 508.607x296 + 172.75x297 + 228.985x298 + 146.667x299 + +340.651x300 + 459.392x301 + 447.022x302 + 411.217x303 + 384.13x304 + 320.808x305 + 445.513x306 + 596.748x307 + 499.688x308 + 469.971x309 + +446.867x310 + 411.695x311 + 195.959x312 + 229.362x313 + 114.596x314 + 62.7305x315 + 940.67x316 + 1193.75x317 + 1067.07x318 + 1011.63x319 + +1009.98x320 + 989.009x321 + 324.742x322 + 357.123x323 + 266.067x324 + 222.767x325 + 191.138x326 + 143.591x327 + 182.068x328 + 258.814x329 + +224.505x330 + 124.161x331 + 1991.1x332 + 2264.5x333 + 2224.84x334 + 2064.29x335 + 2058.83x336 + 2021.42x337 + 570.876x338 + 820.202x339 + +755.742x340 + 726.372x341 + 719.601x342 + 712.435x343 + 1293.67x344 + 1443.88x345 + 1375.8x346 + 1301.53x347 + 1282.31x348 + 1271.36x349 + +538.52x350 + 792.112x351 + 777.252x352 + 720.912x353 + 697.321x354 + 630.488x355 + 287.635x356 + 323.519x357 + 295.333x358 + 294.961x359 + +231.27x360 + 194.766x361 + 335.335x362 + 445.445x363 + 439.932x364 + 435.654x365 + 405.791x366 + 356.958x367 + 983.322x368 + 1066.63x369 + +1022.74x370 + 1017.79x371 + 1005.99x372 + 969.524x373 + 94.0255x374 + 664.93x375 + 818.072x376 + 791.946x377 + 790.239x378 + 781.21x379 + +747.741x380 + 294.887x381 + 345.811x382 + 269.018x383 + 124.896x384 + 122.426x385 + 621.066x386 + 690.686x387 + 664.187x388 + 651.592x389 + +629.94x390 + 620.312x391 + 334.83x392 + 387.454x393 + 357.996x394 + 326.671x395 + 321.66x396 + 312.963x397 + 382.277x398 + 531.576x399 + +498.552x400 + 470.505x401 + 468.355x402 + 425.147x403 + 89.4514x404 + 99.7638x405 + 642.537x406 + 710.075x407 + 665.643x408 + 664.622x409 + +662.575x410 + 636.647x411 + 96.3786x412 + 55.7679x413 + 457.038x414 + 630.991x415 + 588.872x416 + 588.674x417 + 496.226x418 + 474.216x419 + +1393.12x420 + 1645.82x421 + 1554.19x422 + 1514.06x423 + 1505.76x424 + 1484.17x425 + 108.753x426 + 125.16x427 + 66.2618x428 + 444.974x429 + +604.339x430 + 512.929x431 + 498.597x432 + 419.878x433 + 363.822x434 + 201.647x435 + 265.994x436 + 249.203x437 + 218.903x438 + 92.0124x439 + +254.73x440 + 279.182x441 + 256.123x442 + 248.926x443 + 170.433x444 + 371.106x445 + 428.335x446 + 426.052x447 + 390.825x448 + 364.982x449 + +349.071x450 + 340.661x451 + 340.498x452 + 328.691x453 + 265.217x454 + 245.253x455 + 368.194x456 + 384.262x457 + 381.785x458 + 351.456x459 + +339.471x460 + 338.007x461 + 971.756x462 + 1107.06x463 + 966.047x464 + 961.553x465 + 924.32x466 + 846.681x467 + 304.014x468 + 322.016x469 + +285.208x470 + 263.472x471 + 234.144x472 + 196.057x473 + 188.504x474 + 279.942x475 + 162.391x476 + 124.697x477 + 701.241x478 + 757.828x479 + +712.817x480 + 667.907x481 + 658.857x482 + 647.71x483 + 428.716x484 + 617.408x485 + 515.406x486 + 512.729x487 + 503.794x488 + 479.817x489 + +464.754x490 + 600.957x491 + 594.796x492 + 578.034x493 + 534.113x494 + 468.593x495 + 117.307x496 + 94.2007x497 + 292.089x498 + 338.317x499 + +292.958x500 + 174.022x501 + +st + +x7 + x10 + x47 + x57 + x88 + x120 + x142 + x159 + x160 + x161 ++ x162 + x163 + x169 + x170 + x172 + x197 + x203 + x336 + x351 + x353 ++ x442 + x444 <= 1 + +x9 + x57 + x71 + x120 + x121 + x140 + x142 + x144 + x145 + x147 ++ x149 + x159 + x160 + x161 + x162 + x163 + x164 + x169 + x170 + x171 ++ x172 + x182 + x197 + x203 + x237 + x238 + x254 + x283 + x317 + x318 ++ x320 + x351 + x353 + x440 + x442 + x443 + x444 + x463 <= 1 + +x8 + x64 + x71 + x112 + x120 + x121 + x139 + x140 + x141 + x142 ++ x143 + x144 + x159 + x160 + x161 + x164 + x169 + x170 + x171 + x172 ++ x176 + x182 + x184 + x186 + x192 + x236 + x237 + x238 + x253 + x254 ++ x282 + x283 + x316 + x317 + x318 + x320 + x329 + x346 + x351 + x390 ++ x440 + x441 + x442 + x478 + x480 + x483 <= 1 + +x54 + x73 + x107 + x112 + x122 + x139 + x141 + x142 + x143 + x145 ++ x154 + x164 + x174 + x177 + x178 + x182 + x197 + x213 + x217 + x235 ++ x237 + x257 + x301 + x302 + x316 + x318 + x320 + x321 + x326 + x338 ++ x340 + x342 + x346 + x349 + x386 + x389 + x390 + x416 + x441 + x473 ++ x478 + x481 + x482 <= 1 + +x49 + x64 + x73 + x105 + x107 + x112 + x130 + x141 + x142 + x150 ++ x154 + x158 + x177 + x213 + x214 + x217 + x235 + x237 + x256 + x273 ++ x278 + x280 + x283 + x284 + x301 + x302 + x316 + x318 + x320 + x321 ++ x338 + x340 + x342 + x346 + x349 + x353 + x373 + x386 + x389 + x390 ++ x424 + x473 + x478 + x480 + x481 + x482 <= 1 + +x36 + x39 + x49 + x54 + x64 + x68 + x73 + x105 + x107 + x112 ++ x130 + x140 + x141 + x142 + x150 + x154 + x156 + x158 + x177 + x191 ++ x213 + x214 + x216 + x217 + x235 + x237 + x256 + x273 + x276 + x278 ++ x279 + x280 + x284 + x289 + x316 + x320 + x340 + x342 + x344 + x349 ++ x373 + x386 + x387 + x388 + x389 + x390 + x424 + x478 + x479 + x481 ++ x482 <= 1 + +x34 + x36 + x39 + x54 + x64 + x67 + x68 + x69 + x73 + x105 ++ x107 + x112 + x133 + x140 + x141 + x142 + x148 + x150 + x154 + x156 ++ x157 + x177 + x213 + x214 + x216 + x217 + x237 + x256 + x266 + x273 ++ x274 + x275 + x276 + x279 + x280 + x284 + x289 + x312 + x314 + x316 ++ x320 + x335 + x338 + x342 + x349 + x386 + x388 + x389 + x390 + x391 ++ x420 + x424 + x430 + x450 + x451 + x452 + x478 + x479 + x481 + x482 + <= 1 + +x34 + x36 + x39 + x54 + x64 + x67 + x68 + x107 + x140 + x141 ++ x142 + x150 + x153 + x154 + x190 + x193 + x213 + x214 + x216 + x217 ++ x218 + x279 + x280 + x284 + x285 + x286 + x289 + x313 + x314 + x320 ++ x325 + x335 + x348 + x349 + x364 + x386 + x387 + x389 + x391 + x421 ++ x422 + x424 + x451 + x453 + x479 <= 1 + +x34 + x36 + x37 + x54 + x64 + x77 + x107 + x122 + x128 + x140 ++ x150 + x153 + x154 + x193 + x213 + x214 + x216 + x217 + x218 + x223 ++ x265 + x267 + x279 + x282 + x284 + x285 + x286 + x322 + x325 + x327 ++ x364 + x387 + x388 + x391 + x422 + x424 + x436 + x439 + x479 <= 1 + +x4 + x34 + x35 + x36 + x37 + x154 + x213 + x214 + x216 + x217 ++ x265 + x267 + x279 + x282 + x284 + x285 + x327 + x347 + x422 + x435 ++ x439 + x492 <= 1 + +x7 + x10 + x42 + x47 + x52 + x57 + x88 + x117 + x120 + x121 ++ x142 + x144 + x145 + x147 + x149 + x159 + x160 + x161 + x162 + x163 ++ x164 + x169 + x170 + x171 + x172 + x173 + x197 + x198 + x199 + x200 ++ x203 + x319 + x321 + x336 + x351 + x353 + x375 + x400 + x440 + x443 ++ x444 <= 1 + +x7 + x9 + x39 + x42 + x47 + x57 + x71 + x120 + x121 + x139 ++ x141 + x142 + x143 + x144 + x145 + x147 + x149 + x159 + x160 + x161 ++ x162 + x163 + x164 + x169 + x170 + x171 + x192 + x197 + x198 + x200 ++ x203 + x234 + x237 + x238 + x254 + x257 + x283 + x321 + x332 + x333 ++ x334 + x336 + x351 + x353 + x440 + x442 + x443 + x444 + x485 <= 1 + +x8 + x12 + x54 + x65 + x71 + x94 + x112 + x117 + x119 + x120 ++ x122 + x139 + x140 + x141 + x142 + x143 + x144 + x160 + x164 + x170 ++ x172 + x174 + x175 + x176 + x178 + x179 + x182 + x184 + x186 + x190 ++ x192 + x193 + x196 + x214 + x215 + x236 + x237 + x238 + x253 + x254 ++ x255 + x256 + x257 + x268 + x282 + x283 + x302 + x307 + x316 + x317 ++ x318 + x319 + x320 + x321 + x329 + x330 + x340 + x342 + x346 + x349 ++ x353 + x373 + x390 + x402 + x441 + x478 + x480 + x482 + x483 <= 1 + +x9 + x12 + x49 + x54 + x65 + x73 + x94 + x112 + x122 + x139 ++ x140 + x141 + x142 + x143 + x144 + x150 + x154 + x155 + x160 + x163 ++ x164 + x174 + x175 + x176 + x178 + x179 + x182 + x186 + x190 + x191 ++ x193 + x194 + x196 + x197 + x214 + x215 + x216 + x235 + x236 + x237 ++ x238 + x253 + x254 + x255 + x256 + x257 + x273 + x277 + x279 + x282 ++ x283 + x302 + x316 + x317 + x318 + x319 + x320 + x321 + x338 + x340 ++ x344 + x346 + x349 + x353 + x373 + x387 + x389 + x390 + x402 + x420 ++ x441 + x454 + x478 + x479 + x480 + x482 + x486 <= 1 + +x12 + x49 + x54 + x58 + x69 + x73 + x107 + x112 + x122 + x130 ++ x139 + x141 + x142 + x143 + x146 + x150 + x154 + x160 + x163 + x164 ++ x174 + x175 + x179 + x191 + x193 + x214 + x216 + x217 + x235 + x236 ++ x237 + x253 + x256 + x257 + x273 + x274 + x275 + x276 + x277 + x282 ++ x283 + x300 + x302 + x316 + x318 + x319 + x320 + x321 + x323 + x333 ++ x338 + x340 + x346 + x349 + x353 + x373 + x386 + x387 + x389 + x390 ++ x391 + x420 + x421 + x424 + x454 + x478 + x479 + x480 + x481 + x482 ++ x486 <= 1 + +x12 + x39 + x49 + x51 + x54 + x58 + x68 + x69 + x73 + x107 ++ x112 + x138 + x140 + x141 + x142 + x148 + x150 + x154 + x160 + x161 ++ x191 + x213 + x214 + x216 + x217 + x235 + x237 + x255 + x256 + x274 ++ x275 + x276 + x277 + x278 + x279 + x280 + x282 + x284 + x289 + x312 ++ x314 + x316 + x318 + x320 + x333 + x335 + x338 + x342 + x344 + x349 ++ x386 + x387 + x388 + x389 + x390 + x391 + x420 + x421 + x424 + x451 ++ x454 + x455 + x459 + x478 + x479 + x480 + x481 + x482 <= 1 + +x34 + x36 + x37 + x39 + x51 + x54 + x64 + x65 + x67 + x68 ++ x69 + x73 + x107 + x138 + x141 + x148 + x150 + x154 + x157 + x213 ++ x214 + x216 + x217 + x237 + x240 + x256 + x266 + x276 + x277 + x279 ++ x280 + x282 + x289 + x312 + x313 + x335 + x338 + x342 + x347 + x349 ++ x386 + x387 + x388 + x389 + x391 + x420 + x421 + x422 + x424 + x425 ++ x430 + x451 + x452 + x453 + x455 + x479 + x481 <= 1 + +x1 + x34 + x36 + x37 + x38 + x54 + x64 + x66 + x67 + x68 ++ x107 + x138 + x148 + x150 + x154 + x193 + x213 + x214 + x216 + x217 ++ x237 + x239 + x264 + x265 + x266 + x267 + x279 + x285 + x289 + x313 ++ x320 + x325 + x335 + x342 + x347 + x349 + x371 + x386 + x387 + x388 ++ x391 + x420 + x421 + x422 + x424 + x425 + x430 + x453 + x479 + x481 + <= 1 + +x16 + x37 + x54 + x64 + x107 + x148 + x150 + x153 + x154 + x168 ++ x193 + x213 + x216 + x217 + x264 + x265 + x267 + x284 + x285 + x286 ++ x289 + x322 + x325 + x347 + x364 + x387 + x388 + x391 + x422 + x425 ++ x439 + x453 + x491 <= 1 + +x16 + x17 + x34 + x35 + x36 + x37 + x54 + x64 + x65 + x77 ++ x107 + x150 + x154 + x213 + x214 + x216 + x217 + x218 + x265 + x266 ++ x267 + x279 + x282 + x284 + x285 + x286 + x290 + x327 + x347 + x348 ++ x371 + x387 + x388 + x422 + x435 + x436 + x437 + x439 + x491 + x492 + <= 1 + +x4 + x7 + x9 + x10 + x11 + x12 + x47 + x52 + x57 + x67 ++ x108 + x116 + x117 + x119 + x120 + x121 + x139 + x141 + x142 + x143 ++ x144 + x147 + x149 + x159 + x160 + x161 + x162 + x163 + x164 + x169 ++ x172 + x173 + x192 + x196 + x197 + x198 + x199 + x201 + x214 + x234 ++ x235 + x283 + x287 + x319 + x321 + x333 + x336 + x337 + x338 + x344 ++ x349 + x350 + x351 + x352 + x353 + x375 + x379 + x380 + x384 + x400 + <= 1 + +x4 + x7 + x8 + x9 + x11 + x12 + x26 + x39 + x47 + x56 ++ x57 + x71 + x74 + x108 + x117 + x118 + x119 + x120 + x121 + x139 ++ x141 + x142 + x143 + x144 + x147 + x149 + x159 + x160 + x161 + x162 ++ x163 + x164 + x171 + x173 + x174 + x192 + x193 + x194 + x196 + x197 ++ x198 + x199 + x200 + x201 + x203 + x214 + x226 + x231 + x234 + x235 ++ x238 + x240 + x253 + x254 + x267 + x283 + x287 + x317 + x318 + x319 ++ x321 + x328 + x330 + x333 + x334 + x336 + x342 + x344 + x349 + x350 ++ x351 + x352 + x353 + x375 + x379 + x380 + x390 + x402 + x443 + x482 ++ x483 + x485 + x486 <= 1 + +x7 + x8 + x9 + x11 + x12 + x25 + x26 + x47 + x54 + x56 ++ x57 + x65 + x67 + x69 + x71 + x73 + x74 + x79 + x91 + x94 ++ x101 + x107 + x112 + x117 + x118 + x119 + x120 + x138 + x139 + x140 ++ x141 + x142 + x143 + x144 + x147 + x149 + x159 + x160 + x161 + x163 ++ x164 + x174 + x175 + x176 + x178 + x179 + x182 + x184 + x186 + x190 ++ x192 + x193 + x194 + x196 + x197 + x213 + x214 + x220 + x226 + x230 ++ x234 + x235 + x236 + x237 + x238 + x240 + x253 + x254 + x255 + x256 ++ x257 + x258 + x268 + x283 + x307 + x316 + x317 + x318 + x319 + x321 ++ x328 + x329 + x330 + x332 + x333 + x334 + x340 + x342 + x343 + x344 ++ x349 + x351 + x353 + x373 + x374 + x375 + x377 + x380 + x390 + x402 ++ x403 + x446 + x478 + x480 + x482 + x483 + x486 <= 1 + +x4 + x9 + x11 + x12 + x26 + x54 + x58 + x60 + x65 + x67 ++ x69 + x71 + x73 + x74 + x91 + x94 + x100 + x101 + x103 + x107 ++ x112 + x116 + x118 + x119 + x122 + x138 + x139 + x140 + x141 + x142 ++ x143 + x144 + x150 + x154 + x155 + x160 + x161 + x163 + x174 + x175 ++ x176 + x178 + x179 + x186 + x190 + x191 + x192 + x193 + x194 + x196 ++ x197 + x220 + x235 + x236 + x237 + x238 + x253 + x254 + x255 + x257 ++ x268 + x269 + x275 + x277 + x279 + x283 + x302 + x310 + x316 + x317 ++ x318 + x319 + x320 + x321 + x333 + x334 + x336 + x340 + x344 + x351 ++ x371 + x373 + x377 + x389 + x398 + x402 + x403 + x446 + x447 + x463 ++ x480 + x482 + x483 + x486 <= 1 + +x4 + x12 + x18 + x46 + x49 + x51 + x54 + x58 + x60 + x69 ++ x70 + x71 + x73 + x74 + x101 + x107 + x112 + x122 + x130 + x138 ++ x139 + x140 + x141 + x142 + x143 + x144 + x146 + x160 + x161 + x163 ++ x164 + x175 + x176 + x186 + x191 + x193 + x194 + x196 + x197 + x217 ++ x235 + x236 + x237 + x240 + x253 + x254 + x255 + x264 + x269 + x274 ++ x275 + x279 + x308 + x317 + x318 + x320 + x321 + x323 + x333 + x344 ++ x346 + x349 + x351 + x371 + x402 + x403 + x420 + x424 + x478 + x480 ++ x486 + x489 <= 1 + +x13 + x49 + x51 + x54 + x65 + x68 + x111 + x112 + x138 + x139 ++ x140 + x141 + x142 + x143 + x144 + x148 + x150 + x161 + x189 + x191 ++ x196 + x216 + x235 + x240 + x255 + x274 + x278 + x279 + x316 + x317 ++ x318 + x320 + x333 + x334 + x335 + x336 + x338 + x342 + x344 + x346 ++ x349 + x386 + x391 + x408 + x420 + x421 + x424 + x425 + x455 + x481 + <= 1 + +x51 + x54 + x64 + x65 + x66 + x67 + x68 + x73 + x138 + x139 ++ x140 + x141 + x143 + x148 + x150 + x154 + x191 + x213 + x214 + x216 ++ x217 + x218 + x240 + x266 + x284 + x287 + x333 + x335 + x387 + x388 ++ x389 + x391 + x420 + x421 + x422 + x424 + x425 + x452 + x455 + x479 ++ x481 <= 1 + +x13 + x34 + x38 + x54 + x64 + x65 + x66 + x68 + x83 + x107 ++ x138 + x141 + x148 + x154 + x193 + x213 + x214 + x216 + x217 + x218 ++ x237 + x239 + x263 + x264 + x266 + x287 + x325 + x332 + x333 + x335 ++ x347 + x386 + x388 + x391 + x420 + x421 + x422 + x424 + x425 + x430 ++ x432 + x452 + x479 + x481 + x490 <= 1 + +x13 + x17 + x29 + x37 + x64 + x65 + x66 + x138 + x140 + x152 ++ x154 + x187 + x213 + x214 + x216 + x217 + x218 + x235 + x264 + x265 ++ x266 + x267 + x268 + x282 + x284 + x285 + x288 + x347 + x368 + x370 ++ x371 + x420 + x421 + x422 + x437 + x491 + x492 + x493 + x495 <= 1 + +x17 + x35 + x37 + x52 + x64 + x65 + x66 + x70 + x132 + x138 ++ x154 + x187 + x196 + x213 + x214 + x216 + x218 + x235 + x249 + x264 ++ x265 + x266 + x267 + x282 + x284 + x285 + x287 + x290 + x347 + x348 ++ x371 + x421 + x422 + x432 + x435 + x436 + x437 + x490 + x491 + x492 ++ x493 + x501 <= 1 + +x1 + x4 + x7 + x8 + x9 + x10 + x11 + x26 + x49 + x67 ++ x71 + x91 + x108 + x116 + x117 + x118 + x121 + x124 + x139 + x140 ++ x141 + x142 + x143 + x147 + x149 + x154 + x155 + x159 + x160 + x161 ++ x162 + x163 + x164 + x171 + x173 + x174 + x192 + x193 + x194 + x195 ++ x197 + x198 + x199 + x200 + x201 + x202 + x214 + x225 + x226 + x229 ++ x231 + x238 + x267 + x283 + x319 + x321 + x333 + x334 + x337 + x338 ++ x343 + x350 + x351 + x352 + x353 + x375 + x379 + x380 + x381 + x384 ++ x402 + x465 + x485 <= 1 + +x1 + x4 + x7 + x8 + x11 + x22 + x24 + x26 + x49 + x67 ++ x71 + x79 + x91 + x117 + x118 + x138 + x139 + x140 + x141 + x142 ++ x143 + x147 + x154 + x159 + x161 + x162 + x163 + x173 + x192 + x196 ++ x197 + x200 + x202 + x213 + x225 + x226 + x229 + x230 + x238 + x258 ++ x268 + x283 + x311 + x331 + x332 + x333 + x334 + x336 + x339 + x341 ++ x343 + x350 + x351 + x352 + x353 + x355 + x375 + x376 + x378 + x379 ++ x380 + x384 + x465 + x483 <= 1 + +x1 + x4 + x7 + x8 + x11 + x22 + x23 + x24 + x25 + x56 ++ x60 + x67 + x69 + x71 + x74 + x79 + x80 + x89 + x91 + x93 ++ x94 + x104 + x116 + x117 + x118 + x119 + x122 + x138 + x139 + x140 ++ x141 + x142 + x143 + x144 + x162 + x163 + x164 + x176 + x178 + x179 ++ x192 + x193 + x194 + x196 + x197 + x213 + x214 + x226 + x230 + x238 ++ x240 + x253 + x257 + x258 + x268 + x306 + x307 + x310 + x311 + x317 ++ x318 + x321 + x328 + x331 + x332 + x333 + x334 + x336 + x337 + x339 ++ x341 + x342 + x343 + x350 + x354 + x355 + x375 + x376 + x377 + x379 ++ x380 + x446 + x447 + x483 <= 1 + +x1 + x4 + x11 + x22 + x23 + x24 + x27 + x54 + x56 + x58 ++ x60 + x65 + x67 + x69 + x71 + x73 + x74 + x78 + x79 + x80 ++ x91 + x93 + x100 + x102 + x103 + x112 + x113 + x116 + x118 + x119 ++ x122 + x138 + x139 + x140 + x141 + x142 + x143 + x144 + x163 + x178 ++ x179 + x186 + x188 + x190 + x191 + x192 + x193 + x194 + x196 + x197 ++ x215 + x218 + x219 + x220 + x221 + x235 + x237 + x238 + x240 + x255 ++ x257 + x258 + x268 + x269 + x306 + x308 + x310 + x318 + x319 + x331 ++ x332 + x333 + x334 + x335 + x336 + x337 + x339 + x341 + x343 + x350 ++ x351 + x354 + x355 + x373 + x377 + x378 + x398 + x403 + x445 + x446 ++ x447 + x448 + x463 + x480 + x483 + x487 + x489 <= 1 + +x18 + x51 + x54 + x56 + x58 + x60 + x65 + x67 + x69 + x70 ++ x71 + x73 + x74 + x78 + x93 + x103 + x138 + x139 + x140 + x141 ++ x142 + x143 + x146 + x186 + x188 + x189 + x190 + x191 + x193 + x194 ++ x196 + x220 + x222 + x235 + x237 + x238 + x240 + x264 + x269 + x279 ++ x308 + x309 + x310 + x311 + x333 + x334 + x344 + x348 + x355 + x377 ++ x398 + x402 + x403 + x420 + x484 + x486 + x489 <= 1 + +x13 + x14 + x16 + x18 + x51 + x52 + x53 + x54 + x65 + x66 ++ x70 + x71 + x73 + x74 + x85 + x93 + x135 + x138 + x139 + x140 ++ x141 + x143 + x148 + x150 + x152 + x153 + x155 + x161 + x186 + x188 ++ x189 + x191 + x214 + x216 + x218 + x237 + x238 + x240 + x264 + x269 ++ x280 + x281 + x306 + x308 + x309 + x310 + x311 + x316 + x332 + x333 ++ x334 + x335 + x336 + x342 + x344 + x346 + x347 + x348 + x349 + x382 ++ x383 + x403 + x407 + x408 + x410 + x420 + x424 + x425 + x432 + x486 ++ x489 + x494 <= 1 + +x13 + x14 + x16 + x45 + x50 + x51 + x52 + x54 + x64 + x65 ++ x66 + x70 + x71 + x107 + x126 + x130 + x134 + x135 + x138 + x139 ++ x141 + x143 + x148 + x152 + x153 + x188 + x189 + x213 + x216 + x218 ++ x227 + x238 + x240 + x249 + x264 + x266 + x269 + x281 + x316 + x332 ++ x335 + x336 + x340 + x344 + x345 + x346 + x347 + x348 + x349 + x368 ++ x370 + x381 + x383 + x400 + x404 + x405 + x406 + x407 + x408 + x410 ++ x420 + x421 + x422 + x424 + x425 + x429 + x433 + x457 + x461 + x490 ++ x494 + x495 <= 1 + +x13 + x17 + x38 + x50 + x51 + x54 + x64 + x65 + x66 + x70 ++ x71 + x83 + x107 + x138 + x141 + x143 + x153 + x188 + x213 + x214 ++ x216 + x217 + x218 + x225 + x227 + x249 + x263 + x264 + x266 + x282 ++ x287 + x332 + x333 + x335 + x336 + x340 + x344 + x345 + x346 + x347 ++ x348 + x368 + x370 + x371 + x403 + x405 + x408 + x410 + x420 + x421 ++ x422 + x424 + x425 + x429 + x430 + x431 + x432 + x433 + x475 + x490 ++ x495 <= 1 + +x17 + x35 + x38 + x44 + x46 + x64 + x65 + x66 + x70 + x73 ++ x110 + x130 + x132 + x138 + x140 + x152 + x153 + x154 + x187 + x196 ++ x213 + x214 + x216 + x217 + x218 + x227 + x235 + x247 + x249 + x264 ++ x265 + x266 + x267 + x268 + x282 + x284 + x285 + x287 + x288 + x290 ++ x335 + x340 + x344 + x347 + x348 + x368 + x370 + x371 + x407 + x408 ++ x410 + x420 + x421 + x422 + x424 + x431 + x432 + x435 + x436 + x437 ++ x438 + x471 + x490 + x491 + x492 + x493 + x495 + x501 <= 1 + +x17 + x23 + x35 + x38 + x65 + x73 + x154 + x187 + x213 + x214 ++ x216 + x218 + x235 + x249 + x264 + x265 + x266 + x267 + x268 + x284 ++ x287 + x288 + x290 + x347 + x368 + x371 + x421 + x422 + x424 + x490 ++ x491 + x492 + x493 + x498 + x501 <= 1 + +x8 + x9 + x10 + x49 + x67 + x108 + x117 + x121 + x139 + x141 ++ x142 + x143 + x149 + x155 + x159 + x162 + x164 + x190 + x192 + x195 ++ x197 + x201 + x202 + x224 + x225 + x228 + x229 + x283 + x294 + x319 ++ x332 + x334 + x337 + x338 + x339 + x341 + x343 + x350 + x352 + x375 ++ x376 + x379 + x380 + x384 + x402 + x484 + x485 <= 1 + +x0 + x1 + x8 + x49 + x59 + x63 + x67 + x72 + x89 + x116 ++ x138 + x139 + x140 + x141 + x142 + x143 + x151 + x154 + x155 + x159 ++ x181 + x186 + x192 + x195 + x202 + x213 + x219 + x228 + x229 + x230 ++ x238 + x268 + x283 + x293 + x294 + x334 + x335 + x337 + x338 + x339 ++ x341 + x343 + x350 + x352 + x375 + x376 + x377 + x378 + x379 + x380 ++ x399 + x447 + x462 + x483 + x484 + x485 + x487 + x488 + x489 <= 1 + +x1 + x4 + x11 + x22 + x23 + x25 + x27 + x49 + x56 + x59 ++ x60 + x63 + x67 + x69 + x71 + x72 + x75 + x79 + x80 + x89 ++ x91 + x94 + x116 + x118 + x139 + x140 + x142 + x143 + x155 + x162 ++ x176 + x179 + x186 + x194 + x213 + x215 + x219 + x222 + x223 + x238 ++ x240 + x258 + x269 + x306 + x307 + x310 + x311 + x321 + x333 + x334 ++ x336 + x337 + x341 + x343 + x350 + x354 + x375 + x376 + x377 + x378 ++ x379 + x380 + x445 + x446 + x447 + x448 + x462 + x480 + x483 + x484 ++ x485 + x487 + x489 <= 1 + +x1 + x4 + x22 + x23 + x24 + x25 + x27 + x54 + x56 + x59 ++ x60 + x63 + x65 + x67 + x68 + x69 + x70 + x71 + x72 + x74 ++ x75 + x78 + x80 + x90 + x93 + x94 + x100 + x102 + x109 + x113 ++ x118 + x138 + x139 + x142 + x143 + x155 + x162 + x178 + x181 + x186 ++ x188 + x190 + x193 + x194 + x195 + x196 + x197 + x215 + x219 + x220 ++ x221 + x222 + x223 + x235 + x238 + x239 + x240 + x246 + x255 + x258 ++ x269 + x298 + x306 + x307 + x308 + x309 + x310 + x311 + x332 + x333 ++ x334 + x335 + x336 + x337 + x339 + x341 + x343 + x345 + x348 + x350 ++ x352 + x354 + x355 + x375 + x376 + x377 + x378 + x393 + x398 + x403 ++ x445 + x446 + x447 + x448 + x450 + x462 + x463 + x465 + x483 + x484 ++ x485 + x487 + x489 <= 1 + +x14 + x18 + x27 + x59 + x63 + x65 + x67 + x68 + x69 + x70 ++ x73 + x78 + x80 + x138 + x139 + x142 + x143 + x153 + x188 + x189 ++ x190 + x191 + x194 + x220 + x221 + x222 + x223 + x239 + x240 + x269 ++ x306 + x307 + x309 + x311 + x333 + x334 + x339 + x343 + x348 + x355 ++ x398 + x445 + x450 + x484 + x486 + x487 + x489 <= 1 + +x1 + x14 + x18 + x27 + x51 + x52 + x53 + x63 + x64 + x65 ++ x67 + x70 + x71 + x73 + x85 + x130 + x131 + x138 + x139 + x141 ++ x143 + x148 + x150 + x153 + x186 + x188 + x189 + x190 + x191 + x194 ++ x216 + x240 + x280 + x281 + x306 + x308 + x309 + x311 + x324 + x332 ++ x333 + x335 + x336 + x348 + x349 + x398 + x407 + x410 + x425 + x434 ++ x484 + x486 <= 1 + +x13 + x14 + x16 + x17 + x18 + x19 + x50 + x51 + x52 + x53 ++ x63 + x64 + x65 + x66 + x69 + x70 + x73 + x83 + x85 + x93 ++ x107 + x109 + x128 + x130 + x131 + x135 + x138 + x139 + x140 + x141 ++ x143 + x148 + x150 + x152 + x153 + x155 + x188 + x189 + x191 + x194 ++ x213 + x214 + x216 + x217 + x218 + x227 + x238 + x240 + x264 + x266 ++ x269 + x280 + x281 + x308 + x309 + x332 + x333 + x334 + x335 + x336 ++ x340 + x344 + x345 + x346 + x347 + x348 + x349 + x370 + x379 + x381 ++ x382 + x383 + x398 + x400 + x403 + x404 + x406 + x407 + x408 + x409 ++ x410 + x419 + x420 + x421 + x423 + x424 + x425 + x429 + x431 + x432 ++ x433 + x434 + x458 + x459 + x461 + x465 + x484 + x495 <= 1 + +x3 + x13 + x14 + x15 + x16 + x17 + x18 + x38 + x45 + x46 ++ x50 + x51 + x52 + x53 + x54 + x63 + x64 + x65 + x66 + x70 ++ x83 + x85 + x107 + x108 + x110 + x128 + x131 + x132 + x133 + x134 ++ x135 + x138 + x140 + x141 + x148 + x152 + x153 + x155 + x181 + x188 ++ x189 + x191 + x213 + x214 + x216 + x217 + x218 + x263 + x264 + x265 ++ x266 + x267 + x281 + x282 + x288 + x332 + x333 + x335 + x336 + x340 ++ x344 + x345 + x346 + x347 + x348 + x349 + x368 + x370 + x371 + x372 ++ x382 + x400 + x401 + x406 + x407 + x408 + x409 + x410 + x417 + x420 ++ x421 + x422 + x424 + x425 + x429 + x430 + x431 + x432 + x433 + x434 ++ x456 + x457 + x458 + x459 + x461 + x474 + x475 + x490 + x491 + x494 ++ x495 <= 1 + +x13 + x14 + x15 + x16 + x17 + x18 + x42 + x44 + x46 + x53 ++ x54 + x64 + x65 + x66 + x70 + x110 + x128 + x130 + x132 + x138 ++ x148 + x152 + x153 + x154 + x187 + x188 + x191 + x213 + x214 + x217 ++ x218 + x227 + x264 + x265 + x267 + x268 + x282 + x284 + x288 + x345 ++ x346 + x347 + x348 + x368 + x369 + x370 + x371 + x372 + x373 + x401 ++ x407 + x410 + x421 + x422 + x424 + x429 + x430 + x431 + x461 + x471 ++ x491 + x492 + x493 + x494 + x495 + x501 <= 1 + +x5 + x17 + x29 + x35 + x73 + x128 + x132 + x140 + x154 + x187 ++ x196 + x213 + x216 + x218 + x264 + x265 + x266 + x267 + x268 + x288 ++ x290 + x336 + x345 + x347 + x348 + x369 + x421 + x490 + x493 + x498 ++ x499 + x500 <= 1 + +x10 + x39 + x49 + x67 + x68 + x89 + x92 + x116 + x121 + x139 ++ x140 + x141 + x142 + x143 + x155 + x159 + x162 + x181 + x187 + x192 ++ x195 + x197 + x201 + x215 + x219 + x224 + x225 + x228 + x229 + x239 ++ x246 + x293 + x319 + x332 + x334 + x338 + x339 + x341 + x343 + x350 ++ x352 + x354 + x375 + x376 + x378 + x379 + x394 + x484 + x485 + x487 + <= 1 + +x0 + x1 + x10 + x49 + x53 + x59 + x63 + x67 + x68 + x89 ++ x90 + x92 + x106 + x116 + x138 + x139 + x140 + x141 + x142 + x143 ++ x146 + x151 + x154 + x155 + x162 + x181 + x192 + x194 + x195 + x205 ++ x212 + x215 + x219 + x223 + x224 + x228 + x239 + x240 + x246 + x292 ++ x293 + x294 + x295 + x332 + x333 + x334 + x335 + x337 + x339 + x341 ++ x343 + x352 + x354 + x358 + x375 + x378 + x379 + x380 + x393 + x394 ++ x399 + x417 + x484 + x485 + x487 + x488 <= 1 + +x0 + x1 + x49 + x52 + x59 + x63 + x67 + x69 + x70 + x71 ++ x72 + x74 + x89 + x90 + x92 + x93 + x94 + x138 + x139 + x141 ++ x142 + x143 + x151 + x154 + x155 + x181 + x193 + x194 + x195 + x196 ++ x205 + x208 + x215 + x216 + x219 + x220 + x221 + x222 + x223 + x224 ++ x235 + x239 + x240 + x243 + x246 + x258 + x293 + x294 + x307 + x308 ++ x332 + x333 + x334 + x335 + x337 + x339 + x341 + x350 + x352 + x354 ++ x358 + x360 + x376 + x378 + x380 + x393 + x398 + x399 + x417 + x448 ++ x450 + x487 + x488 + x489 <= 1 + +x1 + x24 + x25 + x49 + x52 + x53 + x59 + x63 + x64 + x65 ++ x66 + x67 + x68 + x69 + x70 + x71 + x72 + x74 + x75 + x76 ++ x78 + x86 + x94 + x102 + x106 + x108 + x109 + x110 + x113 + x129 ++ x139 + x143 + x150 + x151 + x155 + x180 + x181 + x185 + x190 + x215 ++ x218 + x220 + x221 + x231 + x233 + x238 + x239 + x258 + x269 + x297 ++ x298 + x306 + x332 + x333 + x334 + x335 + x336 + x337 + x339 + x341 ++ x345 + x348 + x354 + x355 + x376 + x377 + x425 + x445 + x448 + x449 ++ x450 + x462 + x463 + x465 + x466 + x500 <= 1 + +x1 + x50 + x51 + x52 + x53 + x63 + x64 + x65 + x66 + x67 ++ x68 + x70 + x72 + x74 + x75 + x77 + x84 + x86 + x106 + x108 ++ x109 + x110 + x113 + x129 + x130 + x139 + x143 + x147 + x150 + x151 ++ x153 + x155 + x180 + x181 + x183 + x185 + x188 + x190 + x213 + x218 ++ x231 + x232 + x233 + x236 + x269 + x280 + x324 + x332 + x333 + x334 ++ x335 + x336 + x345 + x355 + x357 + x369 + x370 + x372 + x376 + x407 ++ x409 + x423 + x434 + x445 + x448 + x449 + x462 + x463 + x464 + x465 ++ x466 + x467 <= 1 + +x1 + x14 + x46 + x50 + x51 + x52 + x53 + x63 + x64 + x65 ++ x66 + x68 + x70 + x71 + x72 + x74 + x84 + x106 + x107 + x108 ++ x109 + x110 + x128 + x130 + x137 + x138 + x139 + x150 + x152 + x153 ++ x155 + x180 + x184 + x186 + x188 + x189 + x190 + x194 + x218 + x233 ++ x236 + x280 + x281 + x309 + x324 + x326 + x332 + x333 + x335 + x336 ++ x337 + x345 + x346 + x347 + x349 + x355 + x357 + x370 + x372 + x401 ++ x407 + x409 + x415 + x420 + x423 + x429 + x434 + x462 + x465 + x466 + <= 1 + +x3 + x13 + x14 + x16 + x17 + x19 + x20 + x46 + x50 + x51 ++ x52 + x53 + x63 + x64 + x65 + x70 + x72 + x73 + x83 + x84 ++ x107 + x108 + x109 + x110 + x119 + x128 + x130 + x132 + x133 + x134 ++ x137 + x140 + x141 + x150 + x152 + x153 + x155 + x186 + x187 + x188 ++ x189 + x190 + x191 + x213 + x214 + x216 + x217 + x218 + x240 + x266 ++ x267 + x281 + x288 + x332 + x333 + x335 + x336 + x344 + x345 + x346 ++ x347 + x348 + x370 + x371 + x372 + x382 + x383 + x398 + x400 + x401 ++ x406 + x407 + x408 + x409 + x410 + x419 + x420 + x421 + x423 + x425 ++ x429 + x431 + x433 + x434 + x456 + x457 + x458 + x460 + x461 + x462 ++ x464 + x465 + x495 <= 1 + +x3 + x13 + x14 + x15 + x16 + x18 + x20 + x42 + x45 + x50 ++ x51 + x52 + x53 + x63 + x64 + x65 + x66 + x70 + x72 + x107 ++ x109 + x110 + x119 + x128 + x130 + x131 + x132 + x133 + x134 + x135 ++ x136 + x140 + x152 + x153 + x181 + x186 + x187 + x188 + x189 + x195 ++ x214 + x217 + x218 + x265 + x266 + x281 + x288 + x290 + x335 + x344 ++ x345 + x346 + x347 + x368 + x370 + x371 + x372 + x401 + x408 + x409 ++ x410 + x420 + x421 + x423 + x425 + x433 + x438 + x456 + x457 + x458 ++ x459 + x460 + x464 + x475 + x494 <= 1 + +x13 + x14 + x15 + x16 + x30 + x42 + x43 + x44 + x45 + x50 ++ x51 + x63 + x64 + x65 + x66 + x70 + x110 + x126 + x127 + x128 ++ x130 + x131 + x132 + x133 + x134 + x136 + x140 + x151 + x152 + x153 ++ x154 + x187 + x188 + x189 + x195 + x214 + x215 + x216 + x217 + x218 ++ x264 + x265 + x268 + x290 + x303 + x334 + x335 + x336 + x337 + x345 ++ x346 + x347 + x368 + x369 + x371 + x373 + x421 + x425 + x457 + x458 ++ x472 + x492 + x493 + x494 + x499 <= 1 + +x5 + x15 + x29 + x43 + x45 + x50 + x63 + x66 + x128 + x132 ++ x136 + x138 + x140 + x142 + x152 + x153 + x154 + x187 + x196 + x214 ++ x215 + x216 + x217 + x218 + x265 + x267 + x268 + x290 + x303 + x334 ++ x335 + x336 + x337 + x345 + x346 + x369 + x469 + x493 + x498 + x499 ++ x500 <= 1 + +x0 + x4 + x35 + x91 + x99 + x115 + x142 + x146 + x175 + x183 ++ x209 + x262 + x319 + x334 + x388 + x392 + x395 + x417 + x418 + x423 + <= 1 + +x0 + x1 + x10 + x49 + x52 + x53 + x63 + x67 + x68 + x72 ++ x74 + x89 + x90 + x92 + x93 + x105 + x106 + x115 + x116 + x129 ++ x139 + x141 + x142 + x143 + x145 + x146 + x150 + x151 + x154 + x155 ++ x181 + x192 + x195 + x204 + x205 + x206 + x208 + x209 + x210 + x212 ++ x215 + x223 + x224 + x228 + x239 + x246 + x291 + x292 + x293 + x294 ++ x295 + x296 + x299 + x334 + x335 + x337 + x339 + x341 + x352 + x354 ++ x358 + x360 + x378 + x379 + x392 + x393 + x394 + x395 + x399 + x411 ++ x417 + x418 + x423 + x428 + x467 + x485 + x487 + x488 <= 1 + +x0 + x1 + x10 + x49 + x52 + x53 + x63 + x67 + x68 + x72 ++ x74 + x89 + x90 + x92 + x106 + x116 + x129 + x131 + x139 + x141 ++ x142 + x143 + x145 + x146 + x151 + x154 + x181 + x194 + x195 + x205 ++ x208 + x209 + x210 + x211 + x215 + x219 + x223 + x224 + x239 + x241 ++ x243 + x246 + x258 + x292 + x293 + x294 + x295 + x332 + x333 + x334 ++ x336 + x337 + x341 + x343 + x350 + x352 + x354 + x358 + x360 + x376 ++ x378 + x379 + x380 + x393 + x394 + x399 + x400 + x411 + x417 + x427 ++ x467 + x488 + x489 <= 1 + +x6 + x18 + x49 + x52 + x63 + x64 + x65 + x68 + x69 + x72 ++ x74 + x76 + x106 + x109 + x110 + x113 + x115 + x129 + x145 + x147 ++ x150 + x151 + x152 + x153 + x155 + x181 + x183 + x190 + x195 + x215 ++ x221 + x232 + x233 + x236 + x239 + x265 + x269 + x296 + x297 + x298 ++ x332 + x333 + x334 + x335 + x336 + x337 + x355 + x356 + x357 + x366 ++ x376 + x377 + x411 + x420 + x423 + x425 + x449 + x450 + x462 + x463 ++ x464 + x465 + x466 + x500 <= 1 + +x1 + x21 + x35 + x49 + x50 + x51 + x52 + x53 + x63 + x64 ++ x65 + x66 + x67 + x68 + x72 + x75 + x76 + x77 + x83 + x84 ++ x105 + x106 + x108 + x109 + x110 + x113 + x114 + x115 + x129 + x139 ++ x145 + x147 + x150 + x151 + x152 + x153 + x155 + x181 + x183 + x185 ++ x190 + x218 + x232 + x236 + x239 + x269 + x280 + x281 + x324 + x327 ++ x332 + x333 + x334 + x335 + x336 + x337 + x355 + x357 + x366 + x370 ++ x372 + x376 + x377 + x401 + x419 + x423 + x449 + x462 + x463 + x464 ++ x465 + x467 <= 1 + +x2 + x3 + x49 + x50 + x51 + x52 + x53 + x63 + x64 + x65 ++ x66 + x68 + x72 + x76 + x83 + x84 + x105 + x106 + x107 + x108 ++ x109 + x110 + x114 + x115 + x128 + x129 + x130 + x131 + x137 + x139 ++ x145 + x147 + x149 + x150 + x151 + x152 + x153 + x180 + x184 + x185 ++ x186 + x187 + x188 + x189 + x195 + x218 + x236 + x239 + x242 + x269 ++ x280 + x281 + x309 + x322 + x324 + x326 + x332 + x333 + x335 + x336 ++ x337 + x361 + x372 + x400 + x401 + x406 + x409 + x411 + x415 + x416 ++ x422 + x423 + x425 + x449 + x462 + x463 + x464 + x465 + x466 + x467 + <= 1 + +x3 + x14 + x15 + x16 + x17 + x49 + x50 + x51 + x52 + x53 ++ x63 + x64 + x66 + x68 + x72 + x83 + x105 + x106 + x109 + x110 ++ x115 + x128 + x129 + x130 + x131 + x132 + x133 + x140 + x151 + x152 ++ x153 + x185 + x187 + x188 + x189 + x190 + x191 + x216 + x218 + x236 ++ x240 + x281 + x286 + x322 + x326 + x332 + x333 + x336 + x337 + x344 ++ x345 + x346 + x370 + x371 + x372 + x400 + x401 + x406 + x409 + x421 ++ x422 + x423 + x425 + x431 + x434 + x438 + x456 + x460 + x462 + x464 ++ x466 + x494 <= 1 + +x3 + x15 + x32 + x45 + x50 + x51 + x53 + x63 + x64 + x65 ++ x66 + x83 + x87 + x106 + x115 + x128 + x131 + x133 + x138 + x140 ++ x152 + x153 + x187 + x189 + x217 + x218 + x281 + x288 + x290 + x336 ++ x337 + x344 + x345 + x346 + x371 + x372 + x401 + x409 + x423 + x433 ++ x438 + x456 + x459 + x460 + x464 + x494 <= 1 + +x3 + x15 + x30 + x31 + x42 + x43 + x44 + x50 + x70 + x123 ++ x124 + x126 + x127 + x128 + x130 + x132 + x133 + x136 + x140 + x151 ++ x152 + x154 + x187 + x215 + x217 + x218 + x303 + x336 + x337 + x345 ++ x347 + x368 + x369 + x373 + x468 + x469 + x471 + x472 <= 1 + +x5 + x15 + x29 + x30 + x43 + x44 + x66 + x123 + x124 + x127 ++ x128 + x132 + x133 + x136 + x138 + x140 + x151 + x152 + x153 + x154 ++ x187 + x215 + x216 + x217 + x218 + x265 + x268 + x300 + x303 + x336 ++ x337 + x345 + x368 + x369 + x373 + x418 + x454 + x468 + x469 + x471 ++ x472 + x473 + x498 + x499 <= 1 + +x0 + x2 + x4 + x63 + x87 + x90 + x91 + x92 + x111 + x115 ++ x116 + x142 + x143 + x146 + x153 + x154 + x155 + x175 + x183 + x204 ++ x205 + x206 + x207 + x208 + x209 + x239 + x261 + x262 + x293 + x319 ++ x334 + x392 + x395 + x396 + x397 + x399 + x414 + x417 + x418 + x423 ++ x426 + x488 <= 1 + +x0 + x4 + x49 + x52 + x53 + x63 + x68 + x87 + x89 + x90 ++ x92 + x93 + x105 + x109 + x110 + x111 + x115 + x142 + x143 + x144 ++ x145 + x146 + x150 + x151 + x153 + x154 + x155 + x204 + x205 + x206 ++ x208 + x209 + x224 + x239 + x291 + x292 + x293 + x296 + x333 + x334 ++ x335 + x337 + x339 + x354 + x366 + x392 + x393 + x395 + x397 + x399 ++ x417 + x418 + x423 + x426 + x428 + x467 + x477 + x487 + x488 <= 1 + +x0 + x4 + x49 + x51 + x52 + x53 + x63 + x68 + x81 + x90 ++ x105 + x106 + x109 + x111 + x115 + x129 + x131 + x142 + x143 + x145 ++ x146 + x150 + x151 + x153 + x154 + x155 + x177 + x195 + x204 + x205 ++ x208 + x209 + x211 + x215 + x224 + x239 + x241 + x243 + x269 + x291 ++ x292 + x293 + x294 + x296 + x299 + x332 + x333 + x334 + x335 + x336 ++ x337 + x352 + x354 + x356 + x358 + x360 + x366 + x378 + x380 + x385 ++ x394 + x397 + x399 + x411 + x417 + x426 + x427 + x488 <= 1 + +x18 + x49 + x51 + x52 + x53 + x63 + x64 + x68 + x69 + x72 ++ x105 + x106 + x108 + x109 + x110 + x111 + x113 + x115 + x129 + x145 ++ x146 + x150 + x151 + x155 + x177 + x192 + x195 + x232 + x236 + x239 ++ x241 + x242 + x245 + x250 + x252 + x269 + x294 + x296 + x297 + x299 ++ x332 + x333 + x334 + x335 + x337 + x348 + x354 + x355 + x356 + x357 ++ x358 + x359 + x360 + x361 + x366 + x368 + x385 + x399 + x411 + x419 ++ x420 + x423 + x427 + x465 + x466 + x467 <= 1 + +x0 + x1 + x5 + x49 + x50 + x51 + x52 + x53 + x62 + x64 ++ x68 + x69 + x72 + x77 + x82 + x84 + x105 + x106 + x108 + x109 ++ x110 + x111 + x113 + x114 + x115 + x129 + x131 + x137 + x139 + x145 ++ x149 + x150 + x151 + x152 + x153 + x155 + x180 + x184 + x185 + x190 ++ x195 + x236 + x239 + x242 + x245 + x251 + x252 + x280 + x281 + x326 ++ x327 + x332 + x334 + x335 + x336 + x337 + x348 + x355 + x359 + x361 ++ x364 + x366 + x370 + x406 + x411 + x416 + x419 + x423 + x425 + x449 ++ x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x1 + x2 + x3 + x5 + x61 + x63 + x66 + x68 + x72 + x76 ++ x82 + x84 + x85 + x86 + x96 + x105 + x106 + x108 + x109 + x110 ++ x111 + x114 + x115 + x128 + x129 + x131 + x139 + x145 + x149 + x150 ++ x151 + x152 + x155 + x180 + x182 + x184 + x185 + x187 + x188 + x189 ++ x215 + x218 + x236 + x242 + x244 + x245 + x251 + x280 + x286 + x295 ++ x323 + x332 + x337 + x348 + x359 + x361 + x364 + x365 + x370 + x372 ++ x411 + x415 + x416 + x423 + x425 + x462 + x463 + x464 + x466 + x467 + <= 1 + +x1 + x2 + x5 + x32 + x49 + x50 + x51 + x52 + x53 + x63 ++ x65 + x66 + x68 + x72 + x82 + x83 + x86 + x87 + x108 + x109 ++ x110 + x113 + x128 + x129 + x130 + x131 + x132 + x133 + x139 + x149 ++ x150 + x151 + x152 + x153 + x155 + x180 + x185 + x186 + x187 + x189 ++ x191 + x215 + x218 + x236 + x244 + x281 + x286 + x322 + x323 + x332 ++ x336 + x346 + x365 + x370 + x372 + x406 + x409 + x415 + x416 + x421 ++ x423 + x425 + x462 + x463 + x464 + x466 <= 1 + +x3 + x32 + x50 + x51 + x53 + x65 + x66 + x83 + x87 + x110 ++ x128 + x131 + x132 + x133 + x138 + x151 + x152 + x185 + x187 + x189 ++ x215 + x217 + x218 + x244 + x279 + x281 + x286 + x315 + x323 + x344 ++ x345 + x369 + x372 + x416 + x423 + x460 + x464 <= 1 + +x3 + x5 + x15 + x28 + x29 + x30 + x31 + x32 + x43 + x50 ++ x66 + x67 + x70 + x82 + x87 + x123 + x124 + x125 + x126 + x127 ++ x130 + x132 + x133 + x140 + x151 + x152 + x215 + x217 + x268 + x272 ++ x301 + x303 + x304 + x336 + x337 + x345 + x368 + x369 + x373 + x468 ++ x470 + x471 + x472 + x473 <= 1 + +x5 + x15 + x29 + x30 + x31 + x43 + x44 + x50 + x65 + x67 ++ x123 + x125 + x132 + x138 + x140 + x151 + x152 + x155 + x166 + x215 ++ x216 + x217 + x268 + x300 + x301 + x303 + x304 + x305 + x316 + x337 ++ x345 + x368 + x369 + x373 + x418 + x422 + x468 + x469 + x472 + x473 + <= 1 + +x0 + x2 + x4 + x92 + x105 + x116 + x146 + x155 + x173 + x183 ++ x204 + x206 + x207 + x221 + x259 + x261 + x262 + x319 + x335 + x392 ++ x395 + x396 + x397 + x412 + x413 + x414 + x417 + x418 + x474 + x476 ++ x477 + x488 <= 1 + +x0 + x2 + x4 + x90 + x92 + x105 + x110 + x146 + x151 + x153 ++ x155 + x204 + x206 + x207 + x221 + x239 + x259 + x260 + x261 + x263 ++ x291 + x292 + x296 + x337 + x378 + x395 + x396 + x397 + x413 + x414 ++ x418 + x423 + x428 + x474 + x476 + x477 + x488 <= 1 + +x33 + x63 + x68 + x69 + x105 + x109 + x113 + x143 + x151 + x153 ++ x155 + x177 + x184 + x195 + x208 + x209 + x215 + x239 + x241 + x243 ++ x245 + x252 + x287 + x289 + x294 + x296 + x310 + x334 + x337 + x356 ++ x360 + x361 + x381 + x385 + x394 + x425 + x467 <= 1 + +x2 + x18 + x33 + x63 + x64 + x66 + x68 + x69 + x84 + x105 ++ x106 + x109 + x111 + x113 + x143 + x145 + x150 + x151 + x152 + x153 ++ x155 + x177 + x184 + x230 + x241 + x242 + x243 + x245 + x247 + x250 ++ x251 + x252 + x278 + x296 + x332 + x334 + x337 + x348 + x356 + x357 ++ x361 + x385 + x415 + x423 + x466 + x467 <= 1 + +x0 + x2 + x5 + x33 + x50 + x51 + x52 + x53 + x61 + x62 ++ x63 + x64 + x66 + x68 + x72 + x82 + x84 + x85 + x86 + x95 ++ x96 + x97 + x98 + x105 + x106 + x108 + x109 + x111 + x113 + x114 ++ x115 + x129 + x137 + x149 + x150 + x151 + x152 + x153 + x155 + x180 ++ x182 + x183 + x184 + x185 + x195 + x222 + x236 + x242 + x243 + x245 ++ x247 + x248 + x250 + x251 + x252 + x296 + x332 + x334 + x335 + x337 ++ x348 + x356 + x359 + x362 + x363 + x364 + x365 + x366 + x406 + x411 ++ x415 + x416 + x419 + x423 + x463 + x464 + x465 + x466 + x467 <= 1 + +x0 + x2 + x3 + x5 + x33 + x52 + x53 + x63 + x66 + x68 ++ x72 + x74 + x84 + x85 + x86 + x95 + x96 + x98 + x105 + x106 ++ x108 + x109 + x110 + x111 + x113 + x114 + x129 + x131 + x149 + x150 ++ x151 + x152 + x153 + x155 + x180 + x182 + x183 + x184 + x185 + x199 ++ x215 + x222 + x236 + x251 + x286 + x295 + x332 + x337 + x359 + x362 ++ x364 + x365 + x367 + x372 + x406 + x414 + x415 + x416 + x423 + x463 ++ x467 <= 1 + +x2 + x3 + x5 + x33 + x50 + x63 + x66 + x67 + x68 + x74 ++ x82 + x85 + x86 + x87 + x105 + x106 + x108 + x109 + x110 + x111 ++ x113 + x114 + x129 + x131 + x132 + x133 + x149 + x150 + x151 + x152 ++ x153 + x155 + x180 + x185 + x215 + x295 + x332 + x362 + x365 + x367 ++ x369 + x372 + x415 + x416 + x464 + x466 + x467 <= 1 + +x2 + x3 + x5 + x28 + x30 + x32 + x33 + x50 + x66 + x67 ++ x82 + x87 + x108 + x110 + x111 + x128 + x132 + x133 + x138 + x150 ++ x151 + x152 + x153 + x155 + x167 + x185 + x189 + x215 + x217 + x241 ++ x244 + x267 + x332 + x362 + x363 + x367 + x369 + x372 + x373 <= 1 + +x2 + x3 + x5 + x28 + x29 + x30 + x32 + x50 + x66 + x67 ++ x82 + x87 + x110 + x132 + x133 + x138 + x140 + x151 + x152 + x155 ++ x202 + x215 + x270 + x272 + x289 + x300 + x301 + x304 + x317 + x336 ++ x337 + x368 + x369 + x373 + x422 + x470 <= 1 + +x15 + x28 + x29 + x30 + x31 + x48 + x50 + x67 + x86 + x125 ++ x133 + x138 + x152 + x165 + x166 + x192 + x213 + x215 + x270 + x271 ++ x272 + x300 + x301 + x304 + x305 + x317 + x337 + x345 + x368 + x369 ++ x418 + x422 + x468 + x469 + x470 <= 1 + +x0 + x2 + x4 + x116 + x146 + x154 + x162 + x183 + x259 + x261 ++ x262 + x335 + x344 + x392 + x396 + x397 + x412 + x414 + x418 + x422 ++ x476 <= 1 + +x0 + x2 + x4 + x5 + x105 + x106 + x108 + x114 + x146 + x147 ++ x151 + x153 + x204 + x206 + x207 + x248 + x259 + x260 + x291 + x292 ++ x337 + x378 + x396 + x414 <= 1 + +x0 + x2 + x3 + x4 + x5 + x40 + x105 + x106 + x108 + x114 ++ x147 + x151 + x159 + x180 + x182 + x183 + x206 + x207 + x248 + x260 ++ x291 + x292 + x396 + x414 + x419 + x424 + x497 <= 1 + +x0 + x2 + x3 + x5 + x40 + x41 + x63 + x68 + x105 + x106 ++ x108 + x109 + x111 + x114 + x147 + x151 + x159 + x180 + x182 + x183 ++ x207 + x247 + x248 + x250 + x260 + x291 + x292 + x359 + x363 + x414 ++ x419 + x424 + x496 + x497 <= 1 + +x0 + x2 + x3 + x5 + x40 + x41 + x50 + x63 + x64 + x66 ++ x67 + x68 + x69 + x72 + x82 + x84 + x85 + x86 + x95 + x97 ++ x105 + x106 + x108 + x109 + x111 + x114 + x129 + x131 + x151 + x152 ++ x180 + x182 + x183 + x184 + x207 + x222 + x247 + x248 + x250 + x291 ++ x295 + x334 + x363 + x365 + x367 + x408 + x411 + x414 + x415 + x419 ++ x466 + x496 <= 1 + +x0 + x2 + x3 + x5 + x38 + x41 + x63 + x66 + x67 + x68 ++ x74 + x82 + x85 + x86 + x97 + x98 + x105 + x106 + x108 + x114 ++ x129 + x131 + x151 + x152 + x155 + x182 + x183 + x184 + x186 + x215 ++ x236 + x291 + x295 + x332 + x362 + x363 + x365 + x367 + x414 + x415 ++ x416 + x419 <= 1 + +x2 + x3 + x5 + x28 + x31 + x32 + x33 + x53 + x66 + x67 ++ x68 + x74 + x82 + x85 + x86 + x87 + x114 + x129 + x131 + x151 ++ x152 + x153 + x168 + x215 + x295 + x305 + x317 + x332 + x362 + x363 ++ x367 <= 1 + +x2 + x3 + x5 + x16 + x28 + x31 + x32 + x33 + x38 + x53 ++ x58 + x66 + x67 + x74 + x87 + x114 + x133 + x138 + x148 + x150 ++ x151 + x152 + x165 + x167 + x168 + x215 + x244 + x305 + x317 + x362 ++ x363 + x367 <= 1 + +x28 + x31 + x55 + x74 + x133 + x138 + x141 + x152 + x165 + x166 ++ x167 + x168 + x215 + x244 + x271 + x304 + x305 + x307 + x369 + x377 ++ x470 <= 1 + +x28 + x31 + x48 + x50 + x125 + x133 + x138 + x152 + x165 + x166 ++ x167 + x213 + x215 + x270 + x271 + x300 + x304 + x305 + x317 + x369 ++ x377 + x470 <= 1 + +x0 + x1 + x2 + x3 + x4 + x5 <= 1 + +x7 + x8 + x9 + x10 + x11 + x12 <= 1 + +x13 + x14 + x15 + x16 + x17 + x18 <= 1 + +x19 + x20 <= 1 + +x22 + x23 + x24 + x25 + x26 + x27 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 + x38 + x39 <= 1 + +x40 + x41 <= 1 + +x42 + x43 + x44 + x45 + x46 + x47 <= 1 + +x49 + x50 + x51 + x52 + x53 + x54 <= 1 + +x56 + x57 + x58 + x59 + x60 <= 1 + +x61 + x62 <= 1 + +x63 + x64 + x65 + x66 + x67 + x68 <= 1 + +x69 + x70 + x71 + x72 + x73 + x74 <= 1 + +x75 + x76 + x77 + x78 + x79 + x80 <= 1 + +x82 + x83 + x84 + x85 + x86 + x87 <= 1 + +x89 + x90 + x91 + x92 + x93 + x94 <= 1 + +x95 + x96 + x97 + x98 <= 1 + +x100 + x101 + x102 + x103 <= 1 + +x105 + x106 + x107 + x108 + x109 + x110 <= 1 + +x111 + x112 + x113 + x114 + x115 + x116 <= 1 + +x117 + x118 + x119 + x120 + x121 + x122 <= 1 + +x123 + x124 + x125 + x126 + x127 <= 1 + +x128 + x129 + x130 + x131 + x132 + x133 <= 1 + +x134 + x135 + x136 + x137 <= 1 + +x138 + x139 + x140 + x141 + x142 + x143 <= 1 + +x144 + x145 + x146 + x147 + x148 + x149 <= 1 + +x150 + x151 + x152 + x153 + x154 + x155 <= 1 + +x156 + x157 + x158 <= 1 + +x159 + x160 + x161 + x162 + x163 + x164 <= 1 + +x165 + x166 + x167 + x168 <= 1 + +x169 + x170 + x171 + x172 + x173 <= 1 + +x174 + x175 + x176 + x177 + x178 + x179 <= 1 + +x180 + x181 + x182 + x183 + x184 + x185 <= 1 + +x186 + x187 + x188 + x189 + x190 + x191 <= 1 + +x192 + x193 + x194 + x195 + x196 + x197 <= 1 + +x198 + x199 + x200 + x201 + x202 + x203 <= 1 + +x204 + x205 + x206 + x207 + x208 + x209 <= 1 + +x210 + x211 + x212 <= 1 + +x213 + x214 + x215 + x216 + x217 + x218 <= 1 + +x219 + x220 + x221 + x222 + x223 + x224 <= 1 + +x225 + x226 + x227 + x228 + x229 + x230 <= 1 + +x231 + x232 + x233 + x234 <= 1 + +x235 + x236 + x237 + x238 + x239 + x240 <= 1 + +x241 + x242 + x243 + x244 + x245 + x246 <= 1 + +x247 + x248 + x249 + x250 + x251 + x252 <= 1 + +x253 + x254 + x255 + x256 + x257 + x258 <= 1 + +x259 + x260 + x261 + x262 + x263 <= 1 + +x264 + x265 + x266 + x267 + x268 + x269 <= 1 + +x270 + x271 + x272 <= 1 + +x273 + x274 + x275 + x276 + x277 + x278 <= 1 + +x279 + x280 + x281 + x282 + x283 + x284 <= 1 + +x285 + x286 + x287 + x288 + x289 + x290 <= 1 + +x291 + x292 + x293 + x294 + x295 + x296 <= 1 + +x297 + x298 + x299 <= 1 + +x300 + x301 + x302 + x303 + x304 + x305 <= 1 + +x306 + x307 + x308 + x309 + x310 + x311 <= 1 + +x312 + x313 + x314 <= 1 + +x316 + x317 + x318 + x319 + x320 + x321 <= 1 + +x322 + x323 + x324 + x325 + x326 + x327 <= 1 + +x328 + x329 + x330 + x331 <= 1 + +x332 + x333 + x334 + x335 + x336 + x337 <= 1 + +x338 + x339 + x340 + x341 + x342 + x343 <= 1 + +x344 + x345 + x346 + x347 + x348 + x349 <= 1 + +x350 + x351 + x352 + x353 + x354 + x355 <= 1 + +x356 + x357 + x358 + x359 + x360 + x361 <= 1 + +x362 + x363 + x364 + x365 + x366 + x367 <= 1 + +x368 + x369 + x370 + x371 + x372 + x373 <= 1 + +x375 + x376 + x377 + x378 + x379 + x380 <= 1 + +x381 + x382 + x383 + x384 + x385 <= 1 + +x386 + x387 + x388 + x389 + x390 + x391 <= 1 + +x392 + x393 + x394 + x395 + x396 + x397 <= 1 + +x398 + x399 + x400 + x401 + x402 + x403 <= 1 + +x404 + x405 <= 1 + +x406 + x407 + x408 + x409 + x410 + x411 <= 1 + +x412 + x413 <= 1 + +x414 + x415 + x416 + x417 + x418 + x419 <= 1 + +x420 + x421 + x422 + x423 + x424 + x425 <= 1 + +x426 + x427 + x428 <= 1 + +x429 + x430 + x431 + x432 + x433 + x434 <= 1 + +x435 + x436 + x437 + x438 + x439 <= 1 + +x440 + x441 + x442 + x443 + x444 <= 1 + +x445 + x446 + x447 + x448 + x449 + x450 <= 1 + +x451 + x452 + x453 + x454 + x455 <= 1 + +x456 + x457 + x458 + x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 <= 1 + +x478 + x479 + x480 + x481 + x482 + x483 <= 1 + +x484 + x485 + x486 + x487 + x488 + x489 <= 1 + +x490 + x491 + x492 + x493 + x494 + x495 <= 1 + +x496 + x497 <= 1 + +x498 + x499 + x500 + x501 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0017.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0017.lp new file mode 100755 index 000000000..18a768319 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0017.lp @@ -0,0 +1,996 @@ +max + +265.32x0 + 306.877x1 + 237.848x2 + 209.834x3 + 182.252x4 + 987.41x5 + 1260.26x6 + 1252.61x7 + 1235.4x8 + 1225.1x9 + +1187.26x10 + 55.6167x11 + 1140.26x12 + 1272.47x13 + 1114.6x14 + 1106.01x15 + 1104.75x16 + 1084.07x17 + 142.398x18 + 191.162x19 + +150.6x20 + 947.583x21 + 1376.71x22 + 1285.63x23 + 1268.83x24 + 1254.48x25 + 1134.37x26 + 224.182x27 + 146.351x28 + 265.018x29 + +376.514x30 + 224.174x31 + 216.058x32 + 180.145x33 + 831.017x34 + 981.22x35 + 957.278x36 + 950.427x37 + 938.608x38 + 935.6x39 + +538.999x40 + 634.359x41 + 610.75x42 + 604.278x43 + 602.187x44 + 592.621x45 + 93.4248x46 + 421.922x47 + 35.7434x48 + 710.499x49 + +781.085x50 + 752.837x51 + 722.971x52 + 704.692x53 + 702.919x54 + 540.916x55 + 738.155x56 + 737.85x57 + 671.904x58 + 645.541x59 + +575.381x60 + 1348.17x61 + 1557.58x62 + 1407.59x63 + 1391.89x64 + 1324.27x65 + 1322.48x66 + 304.217x67 + 432.021x68 + 386.154x69 + +374.529x70 + 373.298x71 + 334.784x72 + 32.1045x73 + 756.378x74 + 1076.05x75 + 1055.13x76 + 1012.42x77 + 1007.28x78 + 939.423x79 + +450.903x80 + 502.72x81 + 497.012x82 + 424.184x83 + 418.8x84 + 365.348x85 + 55.4462x86 + 56.2172x87 + 53.4087x88 + 181.682x89 + +206.394x90 + 189.911x91 + 163.888x92 + 611.73x93 + 663.621x94 + 651.238x95 + 597.302x96 + 589.628x97 + 524.904x98 + 278.207x99 + +360.231x100 + 339.712x101 + 328.507x102 + 277.954x103 + 228.464x104 + 249.222x105 + 265.848x106 + 195.83x107 + 155.169x108 + 455.247x109 + +543.813x110 + 534.724x111 + 516.082x112 + 502.951x113 + 466.881x114 + 381.236x115 + 423.818x116 + 368.247x117 + 321.931x118 + 301.067x119 + +258.835x120 + 193.838x121 + 222.132x122 + 191.406x123 + 122.17x124 + 115.183x125 + 57.3967x126 + 414.238x127 + 448.186x128 + 444.129x129 + +433.374x130 + 408.762x131 + 398.812x132 + 671.305x133 + 693.52x134 + 650.624x135 + 626.348x136 + 524.263x137 + 523.354x138 + 122.978x139 + +176.194x140 + 165x141 + 507.083x142 + 705.095x143 + 669.99x144 + 633.061x145 + 602.779x146 + 597.54x147 + 368.854x148 + 402.835x149 + +271.664x150 + 214.146x151 + 148.794x152 + 235.476x153 + 274.525x154 + 249.354x155 + 236.6x156 + 231.626x157 + 1190.63x158 + 1290.8x159 + +1251.02x160 + 1248.02x161 + 1206.52x162 + 1171.65x163 + 26.9367x164 + 67.0508x165 + 261.417x166 + 305.294x167 + 252.85x168 + 251.298x169 + +206.059x170 + 586.405x171 + 558.416x172 + 527.963x173 + 499.867x174 + 446.633x175 + 446.029x176 + 6.51164x177 + 1144.87x178 + 1236.29x179 + +1192.51x180 + 1150.68x181 + 1125.45x182 + 1124.78x183 + 672.252x184 + 943.425x185 + 935.848x186 + 919.832x187 + 895.04x188 + 890.882x189 + +1002.1x190 + 1274.83x191 + 1144.24x192 + 1103.1x193 + 1099.16x194 + 1094.47x195 + 554.906x196 + 645.563x197 + 620.249x198 + 545.973x199 + +511.114x200 + 502.661x201 + 1050.74x202 + 1198.41x203 + 1152.74x204 + 1113.82x205 + 1030.99x206 + 1007.96x207 + 1009.1x208 + 1059.72x209 + +1039.46x210 + 977.461x211 + 953.65x212 + 953.041x213 + 126.935x214 + 170.501x215 + 150.258x216 + 198.918x217 + 192.12x218 + 180.181x219 + +255.775x220 + 345.738x221 + 338.414x222 + 329.416x223 + 321.027x224 + 266.77x225 + 333.803x226 + 334.822x227 + 300.752x228 + 276.958x229 + +207.868x230 + 527.094x231 + 587.736x232 + 528.542x233 + 513.322x234 + 433.327x235 + 46.6359x236 + 925.275x237 + 1021.7x238 + 1020.84x239 + +1003.89x240 + 995.779x241 + 950.428x242 + 2696.5x243 + 3215.89x244 + 3211.58x245 + 3210.02x246 + 3149.65x247 + 3125.91x248 + 266.506x249 + +375.457x250 + 351.501x251 + 342.323x252 + 279.943x253 + 227.605x254 + 48.3147x255 + 334.991x256 + 478.134x257 + 419.93x258 + 405.859x259 + +355.935x260 + 1364.57x261 + 1479.14x262 + 1337.15x263 + 1317.78x264 + 1270.5x265 + 1258.58x266 + 370.647x267 + 459.553x268 + 448.143x269 + +444.177x270 + 388.959x271 + 357.736x272 + 1879.53x273 + 2023.79x274 + 2013.87x275 + 1980x276 + 1979.82x277 + 1965.81x278 + 654.47x279 + +715.216x280 + 648.796x281 + 602.911x282 + 580.354x283 + 561.447x284 + 311.327x285 + 447.437x286 + 425.14x287 + 407.03x288 + 361.482x289 + +349.262x290 + 152.365x291 + 222.291x292 + 148.688x293 + 203.858x294 + 189.712x295 + 94.0571x296 + 1084.64x297 + 1202.71x298 + 1161.2x299 + +1153.72x300 + 1150.4x301 + 1149.48x302 + 207.816x303 + 298.42x304 + 259.863x305 + 259.724x306 + 204.334x307 + 115.433x308 + 57.32x309 + +85.2228x310 + 67.0621x311 + 27.6862x312 + 139.802x313 + 194.519x314 + 193.68x315 + 408.67x316 + 605.234x317 + 576.518x318 + 434.196x319 + +432.825x320 + 376.146x321 + 392.117x322 + 330.632x323 + 313.195x324 + 312.858x325 + 263.89x326 + 237.57x327 + 1242.7x328 + 1684.6x329 + +1587.05x330 + 1574.56x331 + 1500.91x332 + 1433.28x333 + 695.129x334 + 1034.67x335 + 968.592x336 + 967.576x337 + 893.498x338 + 874.955x339 + +833.896x340 + 1174.03x341 + 1132.16x342 + 1096.69x343 + 1091.89x344 + 1060.82x345 + 1104.06x346 + 1403.93x347 + 1399.47x348 + 1398.52x349 + +1374.56x350 + 1364.15x351 + 963.006x352 + 1200.41x353 + 1074.31x354 + 1068.23x355 + 1049.55x356 + 992.571x357 + 734.662x358 + 1034.25x359 + +989.235x360 + 915.576x361 + 860.15x362 + 794.323x363 + 1231.03x364 + 1334.75x365 + 1266.02x366 + 1234.85x367 + 1191.51x368 + 1185.79x369 + +285.226x370 + 330.331x371 + 320.075x372 + 278.893x373 + 216.88x374 + 211.415x375 + 274.575x376 + 156.021x377 + 115.43x378 + 139.136x379 + +177.863x380 + 133.01x381 + 160.495x382 + 134.057x383 + 131.516x384 + 1152.65x385 + 1261.01x386 + 1201.27x387 + 1194.95x388 + 1157.05x389 + +1155.12x390 + 606.64x391 + 859.451x392 + 829.778x393 + 765.558x394 + 720.079x395 + 710.084x396 + 641.253x397 + 671.633x398 + 651.303x399 + +634.917x400 + 592.804x401 + 568.614x402 + 104.723x403 + 74.5648x404 + 69.5958x405 + 207.64x406 + 311.42x407 + 303.263x408 + 295.45x409 + +286.67x410 + 251.441x411 + 327.492x412 + 389.85x413 + 386.907x414 + 353.592x415 + 341.93x416 + 339.768x417 + 254.99x418 + 325.061x419 + +146.552x420 + 128.748x421 + 385.663x422 + 365.341x423 + 353.345x424 + 305.499x425 + 284.152x426 + 263.847x427 + 964.845x428 + 1131.09x429 + +1081.86x430 + 1069.14x431 + 1049.16x432 + 1043.67x433 + 757.98x434 + 1018.73x435 + 995.498x436 + 930.45x437 + 908.748x438 + 902.421x439 + +644.705x440 + 794.434x441 + 734.365x442 + 729.967x443 + 726.244x444 + 701.765x445 + 402.792x446 + 511.005x447 + 400.364x448 + 395.467x449 + +377.169x450 + 358.686x451 + 418.549x452 + 550.71x453 + 533.959x454 + 486.015x455 + 464.489x456 + 434.448x457 + 713.648x458 + 815.417x459 + +802.148x460 + 796.975x461 + 787.461x462 + 715.183x463 + 633.905x464 + 608.773x465 + 590.933x466 + 578.657x467 + 480.315x468 + 479.32x469 + +128.217x470 + 160.873x471 + 156.755x472 + 85.7403x473 + 84.3404x474 + 142.674x475 + 125.727x476 + 37.573x477 + 288.45x478 + 282.044x479 + +263.089x480 + 243.887x481 + 165.504x482 + 733.228x483 + 1004.53x484 + 947.074x485 + 921.878x486 + 918.539x487 + 895.67x488 + 255.53x489 + +257.508x490 + 182.087x491 + 149.678x492 + 184.138x493 + 173.443x494 + 170.348x495 + 146.583x496 + 58.0698x497 + 234.953x498 + 256.858x499 + +196.784x500 + 184.504x501 + 166.617x502 + +st + +x4 + x12 + x13 + x45 + x71 + x74 + x130 + x178 + x179 + x182 ++ x183 + x185 + x203 + x208 + x209 + x213 + x235 + x243 + x245 + x326 ++ x338 + x341 + x410 + x432 + x436 + x488 <= 1 + +x4 + x12 + x13 + x14 + x40 + x45 + x71 + x130 + x178 + x179 ++ x182 + x183 + x203 + x208 + x209 + x212 + x213 + x243 + x312 + x326 ++ x333 + x341 + x342 + x406 + x432 + x436 + x488 + x501 <= 1 + +x0 + x1 + x2 + x4 + x13 + x14 + x40 + x45 + x74 + x78 ++ x130 + x178 + x179 + x182 + x203 + x205 + x209 + x210 + x243 + x247 ++ x311 + x312 + x326 + x327 + x333 + x342 + x345 + x432 + x436 + x470 ++ x474 + x487 + x500 + x501 <= 1 + +x0 + x1 + x2 + x4 + x13 + x14 + x21 + x26 + x45 + x61 ++ x72 + x74 + x78 + x126 + x163 + x184 + x186 + x189 + x193 + x210 ++ x243 + x247 + x266 + x277 + x311 + x312 + x327 + x333 + x342 + x345 ++ x380 + x381 + x407 + x428 + x430 + x432 + x474 + x484 + x487 <= 1 + +x8 + x21 + x31 + x39 + x65 + x70 + x74 + x75 + x77 + x170 ++ x189 + x243 + x282 + x291 + x329 + x345 + x379 + x399 + x428 + x430 ++ x432 + x433 + x444 <= 1 + +x14 + x62 + x63 + x65 + x66 + x67 + x68 + x74 + x76 + x79 ++ x87 + x118 + x122 + x159 + x170 + x184 + x238 + x243 + x247 + x277 ++ x291 + x320 + x328 + x329 + x365 + x428 + x430 + x431 + x432 + x433 ++ x461 + x474 + x484 + x487 <= 1 + +x6 + x9 + x22 + x25 + x34 + x57 + x60 + x62 + x63 + x65 ++ x67 + x68 + x69 + x75 + x86 + x121 + x124 + x150 + x166 + x170 ++ x184 + x243 + x250 + x273 + x274 + x276 + x277 + x279 + x281 + x282 ++ x291 + x292 + x316 + x329 + x348 + x350 + x353 + x355 + x364 + x365 ++ x366 + x368 + x374 + x387 + x390 + x394 + x396 + x429 + x430 + x431 ++ x432 + x461 + x467 + x469 + x484 + x487 <= 1 + +x24 + x25 + x34 + x43 + x62 + x63 + x102 + x124 + x129 + x131 ++ x148 + x150 + x151 + x159 + x166 + x169 + x170 + x179 + x236 + x243 ++ x273 + x274 + x276 + x277 + x279 + x280 + x281 + x282 + x284 + x291 ++ x292 + x329 + x330 + x352 + x353 + x354 + x355 + x356 + x357 + x366 ++ x367 + x368 + x369 + x371 + x372 + x374 + x394 + x396 + x429 + x431 ++ x448 + x449 + x461 + x462 + x464 + x465 + x467 + x468 + x487 <= 1 + +x9 + x22 + x24 + x25 + x43 + x57 + x62 + x63 + x64 + x66 ++ x99 + x101 + x102 + x127 + x129 + x130 + x131 + x132 + x133 + x148 ++ x149 + x150 + x159 + x169 + x173 + x211 + x243 + x244 + x262 + x273 ++ x274 + x276 + x277 + x279 + x280 + x284 + x310 + x329 + x331 + x352 ++ x353 + x354 + x355 + x356 + x357 + x361 + x364 + x366 + x367 + x368 ++ x370 + x371 + x372 + x374 + x390 + x429 + x431 + x449 + x458 + x460 ++ x461 + x462 + x464 + x465 + x467 + x468 + x487 + x490 <= 1 + +x62 + x66 + x101 + x102 + x127 + x128 + x129 + x130 + x131 + x132 ++ x133 + x149 + x159 + x211 + x227 + x262 + x274 + x276 + x277 + x279 ++ x280 + x310 + x348 + x352 + x353 + x354 + x355 + x356 + x357 + x364 ++ x366 + x367 + x370 + x372 + x373 + x374 + x386 + x390 + x429 + x449 ++ x464 + x465 + x466 + x467 + x487 <= 1 + +x4 + x47 + x74 + x144 + x178 + x179 + x182 + x183 + x184 + x185 ++ x208 + x209 + x212 + x213 + x232 + x235 + x243 + x255 + x257 + x333 ++ x334 + x341 + x345 + x346 + x380 + x410 + x460 + x472 <= 1 + +x4 + x12 + x14 + x47 + x74 + x160 + x178 + x179 + x182 + x183 ++ x185 + x203 + x208 + x209 + x210 + x212 + x213 + x232 + x243 + x246 ++ x255 + x273 + x318 + x322 + x323 + x324 + x326 + x342 + x345 + x380 ++ x406 + x407 + x409 + x410 + x432 + x460 + x472 + x488 + x498 + x500 ++ x501 <= 1 + +x0 + x1 + x2 + x12 + x13 + x14 + x45 + x47 + x54 + x74 ++ x77 + x112 + x125 + x160 + x178 + x179 + x182 + x184 + x185 + x186 ++ x193 + x197 + x203 + x205 + x208 + x209 + x210 + x212 + x213 + x232 ++ x243 + x260 + x273 + x296 + x311 + x322 + x325 + x327 + x333 + x339 ++ x342 + x345 + x380 + x407 + x432 + x470 + x472 + x473 + x488 + x498 ++ x500 <= 1 + +x0 + x1 + x2 + x14 + x70 + x74 + x76 + x77 + x78 + x79 ++ x112 + x125 + x126 + x159 + x163 + x164 + x184 + x186 + x188 + x193 ++ x200 + x208 + x209 + x210 + x212 + x213 + x238 + x239 + x243 + x246 ++ x247 + x259 + x260 + x320 + x322 + x325 + x327 + x342 + x345 + x379 ++ x380 + x381 + x407 + x430 + x432 + x470 + x473 + x474 + x484 <= 1 + +x2 + x7 + x8 + x14 + x21 + x26 + x29 + x31 + x32 + x33 ++ x61 + x65 + x67 + x68 + x70 + x72 + x74 + x75 + x76 + x77 ++ x78 + x79 + x159 + x160 + x163 + x184 + x186 + x188 + x189 + x200 ++ x238 + x243 + x246 + x247 + x277 + x282 + x291 + x320 + x325 + x327 ++ x329 + x330 + x345 + x348 + x379 + x381 + x428 + x430 + x432 + x433 ++ x461 + x473 + x474 + x484 + x487 <= 1 + +x2 + x5 + x6 + x7 + x8 + x9 + x14 + x21 + x24 + x25 ++ x26 + x29 + x32 + x33 + x61 + x62 + x63 + x65 + x66 + x67 ++ x68 + x70 + x72 + x75 + x76 + x77 + x78 + x79 + x87 + x97 ++ x118 + x122 + x159 + x160 + x161 + x179 + x186 + x188 + x189 + x204 ++ x238 + x243 + x244 + x246 + x247 + x248 + x250 + x273 + x276 + x277 ++ x278 + x320 + x329 + x330 + x335 + x348 + x355 + x365 + x367 + x368 ++ x379 + x381 + x388 + x390 + x391 + x392 + x393 + x394 + x395 + x396 ++ x428 + x430 + x431 + x432 + x433 + x439 + x461 + x474 + x479 + x483 ++ x484 + x487 <= 1 + +x5 + x6 + x8 + x9 + x22 + x24 + x25 + x29 + x30 + x32 ++ x57 + x61 + x62 + x63 + x65 + x66 + x68 + x69 + x72 + x75 ++ x77 + x78 + x79 + x97 + x100 + x121 + x122 + x128 + x151 + x159 ++ x160 + x162 + x163 + x179 + x186 + x188 + x204 + x239 + x243 + x244 ++ x246 + x248 + x250 + x273 + x276 + x277 + x278 + x279 + x281 + x282 ++ x292 + x316 + x317 + x320 + x321 + x329 + x330 + x348 + x349 + x350 ++ x353 + x354 + x355 + x364 + x365 + x366 + x367 + x368 + x375 + x376 ++ x379 + x384 + x387 + x388 + x390 + x391 + x392 + x393 + x394 + x396 ++ x428 + x429 + x430 + x431 + x432 + x433 + x448 + x461 + x468 + x479 ++ x483 + x484 + x487 <= 1 + +x24 + x32 + x57 + x61 + x62 + x63 + x65 + x66 + x75 + x83 ++ x102 + x121 + x123 + x124 + x127 + x128 + x129 + x150 + x151 + x159 ++ x160 + x169 + x179 + x186 + x229 + x244 + x246 + x248 + x260 + x273 ++ x274 + x276 + x277 + x278 + x279 + x281 + x282 + x284 + x292 + x321 ++ x330 + x352 + x353 + x354 + x355 + x356 + x357 + x364 + x366 + x367 ++ x368 + x369 + x370 + x375 + x378 + x386 + x388 + x389 + x392 + x393 ++ x396 + x428 + x429 + x431 + x448 + x449 + x461 + x466 + x468 + x478 ++ x479 + x484 + x487 <= 1 + +x5 + x8 + x9 + x43 + x61 + x62 + x63 + x64 + x66 + x102 ++ x123 + x127 + x128 + x130 + x131 + x132 + x148 + x151 + x159 + x169 ++ x173 + x180 + x198 + x211 + x227 + x229 + x244 + x246 + x260 + x262 ++ x273 + x274 + x275 + x276 + x277 + x281 + x284 + x292 + x329 + x330 ++ x331 + x352 + x353 + x354 + x355 + x356 + x357 + x361 + x364 + x366 ++ x367 + x368 + x370 + x372 + x373 + x386 + x387 + x390 + x396 + x410 ++ x429 + x431 + x449 + x461 + x462 + x464 + x465 + x466 + x467 + x468 ++ x469 + x484 <= 1 + +x3 + x8 + x43 + x57 + x62 + x64 + x66 + x99 + x101 + x127 ++ x128 + x129 + x130 + x131 + x132 + x133 + x137 + x148 + x149 + x159 ++ x162 + x180 + x211 + x226 + x227 + x228 + x229 + x244 + x262 + x273 ++ x274 + x276 + x277 + x279 + x282 + x283 + x284 + x329 + x331 + x352 ++ x353 + x354 + x355 + x356 + x357 + x361 + x364 + x366 + x367 + x368 ++ x369 + x370 + x371 + x372 + x373 + x374 + x377 + x383 + x386 + x387 ++ x389 + x390 + x448 + x458 + x460 + x462 + x464 + x465 + x466 + x467 ++ x469 <= 1 + +x15 + x47 + x74 + x97 + x110 + x144 + x178 + x179 + x182 + x183 ++ x184 + x185 + x206 + x208 + x209 + x211 + x212 + x213 + x221 + x223 ++ x224 + x232 + x243 + x245 + x246 + x257 + x260 + x263 + x276 + x321 ++ x324 + x326 + x333 + x334 + x346 + x406 + x407 + x410 <= 1 + +x13 + x14 + x38 + x47 + x74 + x76 + x178 + x179 + x182 + x183 ++ x184 + x185 + x205 + x208 + x209 + x211 + x212 + x213 + x221 + x224 ++ x231 + x232 + x243 + x245 + x246 + x259 + x260 + x263 + x276 + x318 ++ x321 + x322 + x323 + x324 + x326 + x333 + x334 + x342 + x345 + x389 ++ x406 + x407 + x409 + x410 + x488 + x501 + x502 <= 1 + +x13 + x14 + x47 + x73 + x76 + x77 + x79 + x138 + x178 + x179 ++ x182 + x184 + x185 + x186 + x188 + x193 + x197 + x203 + x204 + x205 ++ x207 + x208 + x209 + x210 + x212 + x213 + x220 + x224 + x243 + x244 ++ x246 + x256 + x259 + x260 + x263 + x293 + x294 + x296 + x321 + x322 ++ x323 + x325 + x327 + x333 + x339 + x340 + x342 + x389 + x407 + x409 ++ x410 + x411 + x432 + x470 + x471 + x472 + x473 + x488 + x498 + x500 ++ x502 <= 1 + +x0 + x6 + x14 + x21 + x47 + x63 + x74 + x75 + x76 + x79 ++ x94 + x125 + x126 + x138 + x163 + x179 + x182 + x184 + x186 + x188 ++ x189 + x193 + x197 + x203 + x204 + x208 + x209 + x210 + x212 + x213 ++ x224 + x235 + x239 + x243 + x244 + x246 + x247 + x248 + x258 + x259 ++ x260 + x280 + x294 + x319 + x340 + x342 + x345 + x348 + x362 + x407 ++ x409 + x433 + x470 + x471 + x473 + x488 + x498 + x499 + x502 <= 1 + +x6 + x7 + x8 + x14 + x21 + x22 + x25 + x26 + x31 + x33 ++ x55 + x62 + x63 + x65 + x74 + x75 + x76 + x77 + x79 + x94 ++ x158 + x161 + x163 + x166 + x168 + x181 + x182 + x184 + x185 + x186 ++ x188 + x189 + x193 + x197 + x203 + x204 + x205 + x207 + x235 + x238 ++ x239 + x243 + x244 + x245 + x246 + x247 + x248 + x258 + x259 + x265 ++ x274 + x275 + x276 + x277 + x278 + x280 + x317 + x319 + x320 + x325 ++ x342 + x345 + x348 + x349 + x362 + x367 + x381 + x395 + x433 + x454 ++ x473 + x499 <= 1 + +x5 + x6 + x7 + x8 + x9 + x14 + x21 + x22 + x23 + x25 ++ x26 + x33 + x61 + x62 + x63 + x65 + x75 + x76 + x77 + x79 ++ x97 + x158 + x159 + x160 + x161 + x163 + x168 + x180 + x181 + x186 ++ x188 + x189 + x196 + x199 + x207 + x238 + x239 + x243 + x244 + x246 ++ x247 + x248 + x273 + x274 + x275 + x276 + x277 + x278 + x320 + x329 ++ x330 + x332 + x335 + x342 + x348 + x349 + x355 + x365 + x366 + x367 ++ x385 + x388 + x391 + x394 + x395 + x430 + x431 + x433 + x441 + x461 ++ x480 + x484 + x487 <= 1 + +x5 + x6 + x7 + x8 + x9 + x22 + x25 + x30 + x57 + x61 ++ x62 + x63 + x64 + x65 + x66 + x67 + x69 + x70 + x72 + x75 ++ x77 + x78 + x95 + x97 + x113 + x118 + x121 + x145 + x158 + x159 ++ x160 + x162 + x163 + x186 + x188 + x189 + x204 + x207 + x212 + x239 ++ x243 + x244 + x246 + x248 + x262 + x273 + x274 + x275 + x276 + x277 ++ x278 + x316 + x320 + x329 + x330 + x335 + x342 + x348 + x349 + x350 ++ x353 + x355 + x359 + x360 + x364 + x365 + x366 + x367 + x368 + x386 ++ x388 + x390 + x391 + x392 + x393 + x394 + x395 + x396 + x428 + x430 ++ x431 + x432 + x433 + x439 + x441 + x461 + x468 + x480 + x484 + x487 + <= 1 + +x5 + x6 + x7 + x8 + x9 + x25 + x29 + x30 + x55 + x57 ++ x61 + x62 + x63 + x64 + x65 + x66 + x68 + x70 + x77 + x78 ++ x95 + x100 + x122 + x124 + x128 + x129 + x158 + x159 + x160 + x162 ++ x186 + x188 + x189 + x198 + x204 + x207 + x211 + x212 + x244 + x246 ++ x248 + x260 + x262 + x273 + x274 + x275 + x276 + x277 + x278 + x279 ++ x281 + x282 + x283 + x320 + x329 + x330 + x349 + x350 + x352 + x353 ++ x354 + x355 + x357 + x359 + x364 + x366 + x367 + x368 + x369 + x375 ++ x376 + x377 + x378 + x385 + x386 + x387 + x389 + x390 + x391 + x392 ++ x393 + x395 + x396 + x428 + x429 + x430 + x431 + x432 + x433 + x439 ++ x441 + x446 + x448 + x449 + x460 + x461 + x462 + x466 + x468 + x478 ++ x479 + x480 + x481 + x484 + x485 <= 1 + +x5 + x7 + x8 + x9 + x43 + x55 + x57 + x61 + x63 + x64 ++ x66 + x99 + x100 + x101 + x103 + x123 + x127 + x128 + x129 + x131 ++ x132 + x133 + x136 + x138 + x141 + x149 + x162 + x173 + x180 + x188 ++ x194 + x198 + x204 + x209 + x211 + x226 + x228 + x229 + x244 + x246 ++ x262 + x273 + x274 + x275 + x276 + x277 + x282 + x283 + x284 + x329 ++ x330 + x331 + x352 + x353 + x354 + x355 + x357 + x364 + x366 + x367 ++ x369 + x373 + x377 + x382 + x383 + x386 + x387 + x389 + x390 + x392 ++ x396 + x429 + x446 + x448 + x449 + x460 + x462 + x465 + x466 + x478 ++ x481 + x482 + x484 <= 1 + +x3 + x5 + x8 + x45 + x57 + x62 + x64 + x66 + x101 + x127 ++ x131 + x132 + x133 + x134 + x135 + x136 + x137 + x141 + x176 + x194 ++ x211 + x227 + x262 + x263 + x273 + x274 + x276 + x277 + x279 + x283 ++ x284 + x350 + x352 + x354 + x355 + x356 + x357 + x364 + x366 + x367 ++ x369 + x371 + x382 + x385 + x386 + x387 + x389 + x390 + x393 + x448 ++ x460 + x462 + x464 + x465 + x466 + x467 + x469 + x478 + x481 + x482 + <= 1 + +x13 + x15 + x16 + x47 + x89 + x90 + x92 + x144 + x178 + x179 ++ x181 + x182 + x183 + x184 + x202 + x205 + x208 + x209 + x211 + x212 ++ x213 + x220 + x221 + x223 + x224 + x231 + x232 + x234 + x243 + x246 ++ x257 + x263 + x295 + x300 + x309 + x321 + x324 + x334 + x409 + x410 ++ x453 + x472 + x488 <= 1 + +x13 + x14 + x15 + x17 + x38 + x89 + x90 + x91 + x178 + x179 ++ x181 + x182 + x183 + x185 + x186 + x197 + x202 + x205 + x208 + x209 ++ x211 + x212 + x213 + x220 + x221 + x224 + x231 + x232 + x243 + x246 ++ x248 + x258 + x260 + x263 + x293 + x295 + x318 + x319 + x324 + x333 ++ x334 + x391 + x406 + x408 + x409 + x472 + x483 + x484 + x487 + x488 + <= 1 + +x13 + x14 + x15 + x17 + x90 + x107 + x181 + x182 + x183 + x184 ++ x185 + x186 + x197 + x202 + x203 + x205 + x207 + x208 + x210 + x212 ++ x213 + x220 + x221 + x224 + x243 + x244 + x245 + x246 + x256 + x257 ++ x258 + x259 + x260 + x293 + x294 + x296 + x318 + x319 + x322 + x323 ++ x324 + x406 + x409 + x411 + x470 + x471 + x484 + x488 <= 1 + +x6 + x14 + x21 + x25 + x26 + x31 + x61 + x74 + x75 + x76 ++ x77 + x134 + x138 + x158 + x182 + x184 + x185 + x186 + x188 + x189 ++ x197 + x202 + x203 + x204 + x205 + x207 + x209 + x210 + x235 + x238 ++ x243 + x244 + x245 + x246 + x247 + x248 + x256 + x258 + x259 + x260 ++ x319 + x325 + x342 + x409 + x433 + x454 + x471 + x488 + x499 <= 1 + +x6 + x13 + x14 + x21 + x23 + x25 + x26 + x61 + x63 + x74 ++ x75 + x76 + x77 + x79 + x94 + x134 + x158 + x163 + x168 + x188 ++ x189 + x197 + x203 + x204 + x205 + x206 + x207 + x209 + x235 + x237 ++ x238 + x239 + x243 + x244 + x245 + x246 + x247 + x248 + x256 + x258 ++ x259 + x274 + x275 + x276 + x277 + x281 + x317 + x342 + x348 + x430 ++ x433 + x454 + x471 + x499 <= 1 + +x6 + x7 + x8 + x9 + x13 + x17 + x21 + x23 + x25 + x26 ++ x56 + x61 + x62 + x63 + x64 + x75 + x76 + x77 + x79 + x93 ++ x94 + x95 + x96 + x134 + x158 + x159 + x160 + x161 + x163 + x168 ++ x172 + x178 + x180 + x181 + x186 + x188 + x189 + x192 + x196 + x199 ++ x203 + x204 + x206 + x207 + x237 + x238 + x239 + x243 + x244 + x246 ++ x247 + x248 + x262 + x274 + x275 + x276 + x277 + x281 + x301 + x329 ++ x330 + x332 + x335 + x342 + x348 + x349 + x356 + x359 + x364 + x365 ++ x366 + x367 + x369 + x385 + x387 + x390 + x391 + x394 + x395 + x408 ++ x430 + x433 + x435 + x439 + x441 + x442 <= 1 + +x6 + x8 + x9 + x13 + x17 + x21 + x22 + x23 + x25 + x26 ++ x57 + x61 + x62 + x64 + x65 + x69 + x76 + x78 + x93 + x95 ++ x97 + x158 + x159 + x160 + x161 + x163 + x172 + x180 + x181 + x188 ++ x199 + x204 + x207 + x234 + x237 + x238 + x239 + x243 + x246 + x247 ++ x248 + x262 + x273 + x274 + x275 + x276 + x277 + x278 + x329 + x330 ++ x332 + x335 + x342 + x349 + x356 + x357 + x359 + x360 + x364 + x365 ++ x366 + x368 + x369 + x385 + x386 + x387 + x390 + x391 + x392 + x393 ++ x394 + x395 + x414 + x431 + x441 + x445 + x463 + x476 <= 1 + +x5 + x6 + x7 + x8 + x9 + x10 + x17 + x23 + x25 + x26 ++ x30 + x61 + x64 + x65 + x66 + x69 + x76 + x78 + x93 + x95 ++ x100 + x136 + x159 + x160 + x162 + x178 + x180 + x188 + x204 + x228 ++ x244 + x246 + x247 + x248 + x262 + x273 + x274 + x275 + x276 + x277 ++ x278 + x330 + x332 + x346 + x349 + x350 + x351 + x357 + x364 + x365 ++ x366 + x369 + x376 + x378 + x385 + x386 + x387 + x389 + x390 + x391 ++ x392 + x393 + x394 + x395 + x396 + x429 + x430 + x431 + x441 + x448 ++ x460 + x462 + x480 + x481 + x482 + x484 + x485 <= 1 + +x5 + x6 + x8 + x23 + x25 + x43 + x64 + x65 + x66 + x69 ++ x99 + x100 + x103 + x104 + x132 + x135 + x136 + x137 + x138 + x139 ++ x140 + x173 + x180 + x211 + x226 + x228 + x244 + x248 + x262 + x263 ++ x273 + x274 + x275 + x276 + x277 + x278 + x283 + x284 + x330 + x331 ++ x337 + x346 + x349 + x350 + x351 + x353 + x354 + x355 + x357 + x364 ++ x366 + x367 + x369 + x373 + x385 + x386 + x387 + x389 + x390 + x392 ++ x393 + x428 + x429 + x431 + x449 + x460 + x462 + x469 + x482 <= 1 + +x5 + x45 + x64 + x66 + x99 + x103 + x104 + x133 + x134 + x135 ++ x136 + x137 + x139 + x141 + x176 + x180 + x194 + x211 + x247 + x248 ++ x262 + x263 + x273 + x274 + x275 + x276 + x278 + x284 + x337 + x350 ++ x351 + x354 + x355 + x357 + x364 + x367 + x369 + x371 + x385 + x386 ++ x387 + x389 + x390 + x393 + x429 + x462 + x469 <= 1 + +x15 + x16 + x62 + x92 + x178 + x179 + x181 + x183 + x184 + x188 ++ x202 + x205 + x208 + x209 + x211 + x212 + x213 + x221 + x223 + x232 ++ x234 + x243 + x244 + x246 + x248 + x257 + x263 + x298 + x299 + x300 ++ x316 + x318 + x333 + x334 + x351 + x408 + x417 + x453 + x483 <= 1 + +x13 + x15 + x16 + x17 + x36 + x89 + x91 + x92 + x181 + x183 ++ x185 + x187 + x202 + x205 + x208 + x209 + x211 + x212 + x213 + x223 ++ x231 + x234 + x243 + x245 + x246 + x248 + x256 + x257 + x258 + x259 ++ x263 + x266 + x295 + x298 + x299 + x318 + x333 + x334 + x343 + x408 ++ x417 + x483 + x485 + x487 + x488 <= 1 + +x13 + x15 + x17 + x182 + x183 + x185 + x187 + x199 + x202 + x203 ++ x206 + x207 + x208 + x211 + x212 + x213 + x220 + x221 + x223 + x225 ++ x231 + x234 + x243 + x244 + x245 + x246 + x256 + x257 + x258 + x259 ++ x260 + x266 + x299 + x318 + x319 + x406 + x408 + x411 + x488 <= 1 + +x13 + x15 + x17 + x183 + x184 + x185 + x187 + x189 + x199 + x202 ++ x203 + x204 + x206 + x207 + x217 + x220 + x224 + x225 + x231 + x235 ++ x243 + x244 + x245 + x246 + x256 + x257 + x258 + x259 + x319 + x321 ++ x323 + x406 + x408 + x454 + x471 + x488 <= 1 + +x13 + x21 + x23 + x24 + x26 + x56 + x61 + x63 + x75 + x77 ++ x143 + x158 + x160 + x161 + x163 + x185 + x187 + x196 + x197 + x199 ++ x201 + x202 + x203 + x204 + x206 + x207 + x237 + x238 + x239 + x242 ++ x244 + x245 + x246 + x248 + x256 + x259 + x274 + x275 + x276 + x278 ++ x281 + x301 + x317 + x334 + x335 + x343 + x348 + x356 + x365 + x387 ++ x394 + x395 + x408 + x430 + x433 + x435 + x437 + x445 + x454 <= 1 + +x6 + x10 + x13 + x22 + x23 + x24 + x26 + x56 + x60 + x61 ++ x63 + x77 + x79 + x93 + x94 + x95 + x96 + x98 + x152 + x158 ++ x160 + x161 + x163 + x178 + x181 + x188 + x192 + x196 + x197 + x207 ++ x237 + x238 + x239 + x240 + x241 + x242 + x244 + x245 + x246 + x248 ++ x263 + x274 + x275 + x276 + x277 + x278 + x301 + x317 + x330 + x335 ++ x341 + x342 + x343 + x346 + x348 + x356 + x359 + x365 + x385 + x386 ++ x387 + x388 + x392 + x394 + x433 + x437 + x439 + x445 + x463 <= 1 + +x6 + x7 + x8 + x9 + x10 + x22 + x23 + x24 + x26 + x53 ++ x55 + x56 + x60 + x61 + x62 + x63 + x64 + x65 + x76 + x78 ++ x93 + x94 + x95 + x96 + x97 + x98 + x158 + x159 + x160 + x161 ++ x163 + x180 + x181 + x191 + x196 + x198 + x199 + x206 + x235 + x237 ++ x239 + x242 + x245 + x246 + x247 + x248 + x254 + x262 + x263 + x273 ++ x274 + x275 + x276 + x277 + x278 + x317 + x330 + x332 + x337 + x346 ++ x349 + x350 + x356 + x359 + x360 + x365 + x368 + x369 + x385 + x386 ++ x387 + x388 + x389 + x392 + x393 + x394 + x431 + x441 + x445 + x463 ++ x475 + x476 <= 1 + +x5 + x6 + x7 + x9 + x10 + x17 + x24 + x43 + x60 + x64 ++ x65 + x66 + x158 + x159 + x161 + x162 + x180 + x190 + x191 + x194 ++ x198 + x246 + x247 + x248 + x262 + x263 + x273 + x274 + x275 + x276 ++ x277 + x278 + x328 + x330 + x337 + x346 + x349 + x350 + x351 + x357 ++ x364 + x369 + x385 + x386 + x387 + x388 + x389 + x391 + x392 + x395 ++ x429 + x440 + x459 <= 1 + +x5 + x23 + x47 + x64 + x66 + x82 + x103 + x133 + x134 + x135 ++ x136 + x137 + x138 + x140 + x161 + x171 + x173 + x175 + x176 + x180 ++ x194 + x226 + x230 + x247 + x248 + x262 + x263 + x265 + x271 + x273 ++ x274 + x275 + x277 + x278 + x283 + x330 + x337 + x346 + x349 + x350 ++ x351 + x354 + x357 + x369 + x385 + x386 + x388 + x389 + x390 + x402 ++ x428 + x429 + x440 + x443 + x444 + x458 + x460 + x463 + x469 <= 1 + +x5 + x7 + x45 + x64 + x103 + x104 + x110 + x133 + x134 + x135 ++ x136 + x137 + x138 + x139 + x140 + x161 + x162 + x171 + x175 + x176 ++ x180 + x194 + x245 + x247 + x248 + x261 + x262 + x263 + x265 + x273 ++ x274 + x275 + x277 + x278 + x308 + x330 + x346 + x349 + x350 + x351 ++ x357 + x385 + x386 + x388 + x389 + x390 + x393 + x428 + x429 + x443 ++ x444 + x463 <= 1 + +x15 + x16 + x62 + x183 + x202 + x205 + x208 + x212 + x221 + x223 ++ x225 + x232 + x233 + x234 + x243 + x244 + x247 + x257 + x263 + x299 ++ x316 + x318 + x400 + x411 <= 1 + +x24 + x35 + x36 + x62 + x71 + x91 + x181 + x183 + x185 + x187 ++ x199 + x202 + x205 + x208 + x211 + x213 + x219 + x223 + x225 + x231 ++ x233 + x234 + x243 + x244 + x245 + x246 + x247 + x248 + x252 + x256 ++ x257 + x258 + x263 + x298 + x299 + x302 + x315 + x316 + x318 + x397 ++ x400 + x401 + x411 + x417 + x434 + x483 + x485 <= 1 + +x12 + x13 + x15 + x17 + x183 + x185 + x187 + x195 + x199 + x202 ++ x206 + x207 + x217 + x218 + x219 + x220 + x223 + x225 + x231 + x233 ++ x234 + x243 + x244 + x245 + x246 + x247 + x248 + x256 + x257 + x258 ++ x264 + x266 + x299 + x301 + x302 + x316 + x317 + x319 + x321 + x411 ++ x417 + x434 + x483 + x488 <= 1 + +x1 + x25 + x26 + x56 + x75 + x143 + x161 + x163 + x183 + x185 ++ x187 + x189 + x196 + x199 + x202 + x204 + x206 + x207 + x217 + x218 ++ x225 + x231 + x233 + x234 + x235 + x243 + x244 + x245 + x246 + x247 ++ x248 + x256 + x258 + x259 + x275 + x316 + x317 + x319 + x321 + x335 ++ x408 + x417 + x445 + x487 + x488 <= 1 + +x21 + x22 + x23 + x24 + x39 + x56 + x59 + x61 + x63 + x75 ++ x94 + x96 + x160 + x163 + x174 + x181 + x196 + x201 + x202 + x203 ++ x204 + x206 + x237 + x238 + x239 + x240 + x242 + x244 + x246 + x248 ++ x257 + x264 + x266 + x270 + x274 + x275 + x276 + x301 + x317 + x332 ++ x334 + x335 + x340 + x341 + x343 + x348 + x356 + x359 + x363 + x387 ++ x388 + x395 + x421 + x430 + x433 + x435 + x437 + x439 + x440 + x441 ++ x445 + x462 + x463 <= 1 + +x21 + x22 + x23 + x24 + x53 + x55 + x56 + x58 + x59 + x61 ++ x63 + x78 + x96 + x162 + x181 + x194 + x196 + x201 + x206 + x216 ++ x237 + x238 + x239 + x240 + x242 + x244 + x245 + x246 + x248 + x274 ++ x275 + x276 + x335 + x337 + x340 + x346 + x356 + x359 + x387 + x388 ++ x395 + x420 + x440 + x441 + x442 + x445 <= 1 + +x7 + x10 + x21 + x23 + x24 + x53 + x55 + x56 + x60 + x65 ++ x78 + x93 + x95 + x96 + x97 + x158 + x160 + x161 + x162 + x163 ++ x180 + x181 + x191 + x194 + x206 + x238 + x239 + x244 + x245 + x246 ++ x247 + x248 + x273 + x274 + x275 + x278 + x330 + x332 + x337 + x346 ++ x349 + x350 + x351 + x356 + x358 + x359 + x360 + x368 + x386 + x388 ++ x389 + x393 + x394 + x420 + x440 + x441 + x445 + x463 + x477 <= 1 + +x5 + x7 + x9 + x10 + x23 + x24 + x56 + x60 + x66 + x93 ++ x96 + x98 + x110 + x158 + x160 + x161 + x162 + x175 + x180 + x181 ++ x190 + x191 + x194 + x196 + x198 + x206 + x230 + x237 + x244 + x245 ++ x246 + x247 + x248 + x261 + x262 + x263 + x271 + x273 + x274 + x275 ++ x276 + x277 + x278 + x328 + x330 + x332 + x337 + x346 + x349 + x350 ++ x351 + x352 + x356 + x359 + x360 + x365 + x369 + x385 + x386 + x387 ++ x388 + x389 + x392 + x429 + x440 + x443 + x458 + x459 + x463 + x464 ++ x475 + x477 <= 1 + +x5 + x7 + x9 + x10 + x23 + x45 + x54 + x64 + x66 + x104 ++ x110 + x133 + x134 + x136 + x138 + x158 + x160 + x161 + x162 + x171 ++ x175 + x176 + x190 + x194 + x198 + x206 + x230 + x244 + x245 + x246 ++ x247 + x248 + x261 + x262 + x263 + x273 + x274 + x275 + x277 + x278 ++ x330 + x332 + x337 + x346 + x347 + x349 + x350 + x351 + x352 + x359 ++ x360 + x369 + x388 + x389 + x390 + x440 + x443 + x444 + x458 + x459 ++ x460 + x463 <= 1 + +x5 + x7 + x64 + x104 + x136 + x137 + x138 + x158 + x176 + x189 ++ x194 + x243 + x262 + x263 + x265 + x267 + x273 + x278 + x346 + x385 ++ x388 + x428 + x443 + x444 + x463 <= 1 + +x0 + x3 + x12 + x17 + x34 + x36 + x88 + x142 + x143 + x146 ++ x147 + x215 + x222 + x243 + x246 + x247 + x249 + x253 + x265 + x297 ++ x368 + x397 + x398 + x401 + x483 + x485 + x486 <= 1 + +x12 + x15 + x17 + x35 + x36 + x71 + x88 + x142 + x143 + x145 ++ x146 + x147 + x158 + x202 + x205 + x211 + x213 + x215 + x225 + x233 ++ x243 + x244 + x246 + x247 + x248 + x249 + x252 + x253 + x254 + x256 ++ x257 + x258 + x263 + x265 + x297 + x298 + x299 + x300 + x302 + x315 ++ x316 + x329 + x333 + x340 + x345 + x358 + x368 + x397 + x398 + x400 ++ x401 + x411 + x416 + x417 + x434 + x438 + x483 + x485 + x486 <= 1 + +x12 + x15 + x17 + x34 + x36 + x39 + x40 + x42 + x43 + x44 ++ x67 + x71 + x146 + x147 + x153 + x155 + x183 + x187 + x195 + x202 ++ x205 + x206 + x207 + x218 + x219 + x220 + x222 + x225 + x233 + x243 ++ x244 + x245 + x246 + x247 + x248 + x264 + x266 + x297 + x298 + x299 ++ x300 + x301 + x302 + x333 + x340 + x341 + x343 + x354 + x358 + x361 ++ x362 + x405 + x412 + x416 + x417 + x434 + x435 + x438 + x459 + x483 ++ x485 + x486 <= 1 + +x17 + x36 + x39 + x42 + x43 + x44 + x71 + x111 + x145 + x147 ++ x155 + x178 + x184 + x187 + x195 + x202 + x205 + x222 + x233 + x240 ++ x243 + x244 + x245 + x246 + x247 + x248 + x261 + x264 + x266 + x268 ++ x286 + x297 + x300 + x301 + x302 + x333 + x338 + x340 + x341 + x347 ++ x348 + x353 + x358 + x361 + x363 + x399 + x403 + x405 + x421 + x435 ++ x442 + x447 + x457 + x459 + x485 <= 1 + +x22 + x26 + x39 + x41 + x42 + x44 + x56 + x59 + x79 + x94 ++ x96 + x98 + x108 + x144 + x163 + x174 + x187 + x195 + x237 + x240 ++ x242 + x244 + x245 + x247 + x264 + x266 + x269 + x270 + x271 + x286 ++ x300 + x301 + x332 + x333 + x334 + x335 + x338 + x340 + x341 + x343 ++ x344 + x354 + x363 + x388 + x395 + x396 + x402 + x418 + x421 + x435 ++ x437 + x439 + x440 + x442 + x445 + x455 + x462 + x486 <= 1 + +x21 + x22 + x23 + x24 + x39 + x42 + x53 + x55 + x58 + x59 ++ x61 + x78 + x79 + x108 + x144 + x162 + x181 + x195 + x201 + x206 ++ x210 + x216 + x237 + x238 + x239 + x240 + x242 + x244 + x245 + x246 ++ x247 + x265 + x267 + x269 + x270 + x271 + x286 + x287 + x301 + x333 ++ x337 + x338 + x339 + x340 + x341 + x346 + x347 + x365 + x398 + x418 ++ x420 + x426 + x435 + x436 + x437 + x440 + x441 + x442 + x445 + x452 ++ x455 + x486 <= 1 + +x42 + x53 + x54 + x60 + x78 + x98 + x117 + x120 + x161 + x162 ++ x198 + x201 + x242 + x244 + x245 + x246 + x247 + x265 + x267 + x270 ++ x271 + x301 + x330 + x337 + x339 + x346 + x347 + x350 + x365 + x418 ++ x420 + x436 + x440 + x442 + x444 + x455 <= 1 + +x7 + x10 + x20 + x42 + x54 + x60 + x65 + x83 + x84 + x98 ++ x115 + x117 + x120 + x135 + x161 + x162 + x175 + x180 + x181 + x190 ++ x194 + x198 + x201 + x206 + x214 + x230 + x237 + x242 + x244 + x245 ++ x246 + x247 + x261 + x265 + x270 + x271 + x273 + x278 + x301 + x328 ++ x330 + x331 + x334 + x337 + x339 + x346 + x347 + x349 + x350 + x352 ++ x365 + x388 + x440 + x443 + x444 + x458 + x459 + x460 + x463 <= 1 + +x9 + x10 + x54 + x60 + x64 + x66 + x98 + x110 + x117 + x134 ++ x135 + x158 + x162 + x165 + x171 + x175 + x176 + x194 + x237 + x242 ++ x261 + x263 + x265 + x275 + x278 + x280 + x283 + x328 + x330 + x331 ++ x337 + x346 + x347 + x349 + x350 + x351 + x352 + x359 + x389 + x428 ++ x440 + x443 + x444 + x458 + x459 + x463 <= 1 + +x54 + x60 + x64 + x66 + x117 + x158 + x175 + x180 + x189 + x190 ++ x194 + x262 + x265 + x273 + x278 + x280 + x283 + x346 + x351 + x428 + <= 1 + +x3 + x12 + x15 + x16 + x17 + x27 + x28 + x34 + x142 + x192 ++ x200 + x210 + x215 + x222 + x243 + x247 + x248 + x249 + x253 + x254 ++ x265 + x286 + x298 + x302 + x343 + x345 + x358 + x360 + x368 + x397 ++ x398 + x400 + x401 + x402 + x415 + x438 + x483 <= 1 + +x3 + x12 + x15 + x16 + x17 + x34 + x35 + x36 + x37 + x38 ++ x52 + x142 + x143 + x145 + x146 + x147 + x167 + x177 + x187 + x192 ++ x200 + x222 + x233 + x243 + x245 + x246 + x247 + x248 + x249 + x251 ++ x252 + x253 + x254 + x256 + x297 + x298 + x299 + x300 + x302 + x329 ++ x332 + x340 + x343 + x345 + x358 + x360 + x362 + x368 + x397 + x398 ++ x400 + x401 + x402 + x412 + x415 + x416 + x434 + x438 + x483 <= 1 + +x3 + x12 + x15 + x16 + x17 + x34 + x36 + x37 + x39 + x40 ++ x42 + x44 + x50 + x51 + x52 + x106 + x113 + x142 + x143 + x144 ++ x145 + x146 + x147 + x153 + x155 + x157 + x166 + x167 + x187 + x200 ++ x222 + x233 + x241 + x243 + x244 + x245 + x246 + x247 + x248 + x251 ++ x252 + x266 + x297 + x298 + x299 + x300 + x302 + x329 + x331 + x332 ++ x336 + x340 + x343 + x344 + x345 + x353 + x354 + x358 + x362 + x385 ++ x391 + x397 + x398 + x399 + x401 + x412 + x415 + x416 + x423 + x434 ++ x435 + x438 + x439 + x483 + x485 + x486 <= 1 + +x12 + x15 + x34 + x36 + x39 + x40 + x41 + x44 + x50 + x51 ++ x58 + x81 + x106 + x111 + x113 + x114 + x142 + x143 + x144 + x145 ++ x147 + x157 + x187 + x191 + x195 + x222 + x240 + x241 + x245 + x247 ++ x248 + x251 + x264 + x266 + x268 + x272 + x297 + x298 + x299 + x300 ++ x301 + x302 + x328 + x329 + x331 + x332 + x333 + x336 + x338 + x340 ++ x343 + x344 + x348 + x353 + x358 + x361 + x362 + x363 + x385 + x398 ++ x399 + x414 + x422 + x423 + x424 + x426 + x434 + x435 + x437 + x438 ++ x439 + x445 + x447 + x453 + x457 + x459 + x485 + x486 + x497 <= 1 + +x37 + x39 + x42 + x44 + x58 + x79 + x105 + x107 + x111 + x114 ++ x143 + x144 + x145 + x147 + x173 + x178 + x187 + x195 + x240 + x241 ++ x243 + x244 + x245 + x247 + x248 + x261 + x264 + x266 + x268 + x270 ++ x285 + x286 + x297 + x298 + x300 + x301 + x302 + x313 + x314 + x323 ++ x328 + x331 + x332 + x333 + x334 + x335 + x336 + x338 + x340 + x341 ++ x343 + x344 + x348 + x353 + x358 + x361 + x363 + x385 + x399 + x402 ++ x403 + x404 + x421 + x434 + x435 + x436 + x437 + x438 + x439 + x441 ++ x442 + x445 + x447 + x455 + x456 + x457 + x459 + x486 + x497 + x502 + <= 1 + +x22 + x24 + x26 + x39 + x41 + x42 + x52 + x55 + x58 + x59 ++ x79 + x82 + x105 + x108 + x113 + x144 + x162 + x163 + x174 + x187 ++ x195 + x201 + x210 + x216 + x237 + x240 + x241 + x242 + x244 + x245 ++ x247 + x261 + x264 + x266 + x267 + x268 + x269 + x270 + x271 + x285 ++ x286 + x287 + x297 + x301 + x313 + x314 + x315 + x328 + x331 + x332 ++ x333 + x334 + x335 + x336 + x338 + x339 + x340 + x341 + x343 + x347 ++ x350 + x363 + x396 + x402 + x413 + x418 + x419 + x426 + x435 + x436 ++ x437 + x438 + x439 + x440 + x441 + x442 + x445 + x450 + x451 + x452 ++ x455 + x457 + x486 + x491 <= 1 + +x54 + x55 + x80 + x81 + x119 + x172 + x210 + x214 + x216 + x240 ++ x241 + x242 + x245 + x248 + x261 + x264 + x266 + x313 + x314 + x315 ++ x328 + x333 + x334 + x336 + x338 + x339 + x341 + x344 + x347 + x350 ++ x351 + x419 + x437 + x439 + x446 + x450 + x452 + x455 + x457 <= 1 + +x10 + x20 + x54 + x80 + x83 + x84 + x98 + x115 + x116 + x117 ++ x120 + x161 + x172 + x180 + x190 + x191 + x193 + x198 + x201 + x214 ++ x241 + x244 + x245 + x246 + x247 + x248 + x253 + x261 + x264 + x265 ++ x266 + x275 + x278 + x314 + x328 + x331 + x334 + x336 + x338 + x339 ++ x346 + x347 + x349 + x350 + x351 + x352 + x365 + x388 + x419 + x437 ++ x443 + x451 + x455 + x458 <= 1 + +x10 + x17 + x18 + x20 + x22 + x49 + x53 + x54 + x64 + x83 ++ x115 + x118 + x120 + x135 + x137 + x162 + x190 + x191 + x193 + x194 ++ x214 + x215 + x244 + x245 + x247 + x248 + x261 + x264 + x265 + x275 ++ x278 + x280 + x304 + x328 + x334 + x336 + x337 + x346 + x347 + x349 ++ x350 + x351 + x352 + x362 + x389 + x437 + x443 + x444 + x459 <= 1 + +x17 + x22 + x54 + x83 + x118 + x137 + x190 + x244 + x265 + x273 ++ x278 + x280 + x283 + x328 + x337 + x346 + x351 + x352 + x428 + x459 + <= 1 + +x12 + x27 + x34 + x35 + x37 + x38 + x51 + x142 + x187 + x210 ++ x245 + x247 + x248 + x249 + x250 + x253 + x254 + x297 + x298 + x302 ++ x343 + x397 + x400 + x401 + x402 + x434 + x436 + x438 + x483 <= 1 + +x12 + x15 + x16 + x27 + x34 + x35 + x36 + x37 + x38 + x51 ++ x59 + x142 + x143 + x145 + x146 + x147 + x154 + x156 + x177 + x187 ++ x192 + x200 + x243 + x245 + x246 + x247 + x248 + x250 + x251 + x252 ++ x254 + x297 + x298 + x299 + x300 + x302 + x329 + x331 + x332 + x343 ++ x344 + x345 + x358 + x391 + x397 + x398 + x399 + x400 + x401 + x402 ++ x412 + x415 + x416 + x427 + x431 + x434 + x436 + x438 + x483 <= 1 + +x12 + x15 + x16 + x34 + x35 + x36 + x37 + x38 + x39 + x40 ++ x44 + x50 + x51 + x52 + x109 + x142 + x143 + x145 + x146 + x147 ++ x153 + x154 + x155 + x156 + x167 + x187 + x200 + x240 + x243 + x244 ++ x245 + x246 + x247 + x248 + x266 + x297 + x298 + x299 + x300 + x302 ++ x329 + x331 + x332 + x338 + x343 + x344 + x345 + x362 + x391 + x397 ++ x398 + x399 + x400 + x401 + x402 + x412 + x413 + x415 + x416 + x423 ++ x424 + x427 + x434 + x436 + x438 + x442 + x456 + x483 + x485 + x486 + <= 1 + +x12 + x15 + x16 + x35 + x37 + x38 + x40 + x41 + x44 + x50 ++ x51 + x52 + x58 + x59 + x109 + x112 + x114 + x142 + x145 + x146 ++ x147 + x154 + x157 + x167 + x182 + x195 + x200 + x240 + x243 + x245 ++ x246 + x247 + x248 + x264 + x272 + x297 + x298 + x299 + x300 + x302 ++ x328 + x329 + x331 + x332 + x333 + x336 + x338 + x340 + x341 + x344 ++ x347 + x348 + x358 + x360 + x361 + x362 + x363 + x397 + x398 + x399 ++ x413 + x414 + x422 + x423 + x424 + x425 + x427 + x434 + x435 + x436 ++ x437 + x438 + x439 + x442 + x446 + x447 + x453 + x456 + x485 + x486 ++ x495 <= 1 + +x1 + x16 + x37 + x38 + x40 + x41 + x44 + x48 + x51 + x58 ++ x59 + x81 + x82 + x105 + x106 + x107 + x109 + x111 + x112 + x113 ++ x114 + x144 + x145 + x157 + x173 + x178 + x189 + x191 + x195 + x201 ++ x222 + x241 + x243 + x244 + x245 + x247 + x248 + x261 + x264 + x267 ++ x268 + x269 + x272 + x297 + x298 + x300 + x301 + x307 + x328 + x331 ++ x332 + x333 + x335 + x336 + x338 + x340 + x341 + x344 + x347 + x348 ++ x361 + x362 + x363 + x385 + x398 + x399 + x404 + x414 + x422 + x423 ++ x425 + x426 + x427 + x434 + x435 + x436 + x437 + x438 + x439 + x442 ++ x446 + x447 + x456 + x485 + x486 + x491 + x492 + x493 + x495 + x497 + <= 1 + +x16 + x35 + x37 + x41 + x48 + x49 + x50 + x51 + x52 + x53 ++ x58 + x59 + x76 + x81 + x82 + x109 + x111 + x112 + x113 + x114 ++ x119 + x144 + x146 + x162 + x171 + x172 + x174 + x190 + x191 + x192 ++ x193 + x195 + x201 + x210 + x240 + x241 + x242 + x244 + x245 + x247 ++ x248 + x261 + x264 + x266 + x267 + x268 + x269 + x272 + x285 + x287 ++ x288 + x290 + x301 + x307 + x313 + x328 + x331 + x332 + x333 + x335 ++ x336 + x338 + x339 + x340 + x341 + x344 + x347 + x348 + x351 + x361 ++ x363 + x396 + x413 + x425 + x426 + x437 + x439 + x443 + x446 + x447 ++ x450 + x451 + x452 + x453 + x455 + x456 + x457 + x485 + x486 + x489 ++ x491 + x492 + x493 + x494 + x496 + x497 <= 1 + +x16 + x41 + x49 + x50 + x51 + x52 + x53 + x55 + x59 + x81 ++ x84 + x114 + x116 + x119 + x172 + x174 + x190 + x191 + x192 + x193 ++ x195 + x210 + x240 + x241 + x242 + x244 + x245 + x247 + x248 + x261 ++ x264 + x265 + x266 + x269 + x272 + x285 + x288 + x289 + x290 + x301 ++ x307 + x328 + x334 + x335 + x336 + x338 + x339 + x344 + x347 + x349 ++ x351 + x363 + x425 + x446 + x447 + x450 + x451 + x452 + x453 + x456 ++ x457 + x458 + x489 + x492 <= 1 + +x10 + x19 + x39 + x41 + x49 + x50 + x52 + x65 + x72 + x80 ++ x84 + x85 + x115 + x116 + x117 + x119 + x120 + x161 + x171 + x172 ++ x190 + x191 + x192 + x193 + x200 + x241 + x242 + x245 + x247 + x248 ++ x261 + x264 + x265 + x266 + x275 + x288 + x289 + x290 + x304 + x306 ++ x307 + x328 + x336 + x338 + x339 + x347 + x349 + x419 + x437 + x443 ++ x451 + x452 + x458 <= 1 + +x10 + x18 + x19 + x49 + x50 + x53 + x54 + x80 + x83 + x84 ++ x85 + x119 + x120 + x190 + x191 + x192 + x193 + x194 + x237 + x245 ++ x261 + x265 + x275 + x278 + x289 + x304 + x305 + x306 + x328 + x331 ++ x336 + x337 + x347 + x351 + x443 + x444 + x451 <= 1 + +x10 + x83 + x85 + x118 + x119 + x135 + x179 + x186 + x190 + x192 ++ x193 + x194 + x203 + x237 + x244 + x245 + x265 + x275 + x278 + x303 ++ x304 + x305 + x306 + x328 + x331 + x339 + x347 + x351 + x443 + x444 ++ x459 <= 1 + +x16 + x34 + x35 + x36 + x37 + x38 + x51 + x142 + x192 + x210 ++ x245 + x247 + x248 + x249 + x250 + x251 + x252 + x297 + x298 + x300 ++ x302 + x343 + x344 + x397 + x400 + x401 + x402 + x415 + x416 + x427 ++ x434 + x438 <= 1 + +x12 + x16 + x34 + x35 + x36 + x38 + x142 + x143 + x196 + x200 ++ x243 + x245 + x251 + x297 + x298 + x299 + x302 + x331 + x337 + x343 ++ x369 + x400 + x401 + x402 + x411 + x415 + x436 + x438 <= 1 + +x12 + x16 + x35 + x37 + x38 + x40 + x49 + x50 + x51 + x52 ++ x109 + x110 + x143 + x145 + x146 + x147 + x153 + x154 + x156 + x210 ++ x243 + x244 + x245 + x246 + x247 + x248 + x264 + x266 + x297 + x298 ++ x299 + x300 + x302 + x329 + x332 + x360 + x362 + x399 + x400 + x412 ++ x413 + x414 + x434 + x435 + x436 + x438 + x485 + x486 <= 1 + +x11 + x12 + x16 + x35 + x37 + x38 + x49 + x50 + x51 + x52 ++ x109 + x110 + x111 + x112 + x113 + x114 + x146 + x156 + x182 + x240 ++ x241 + x243 + x245 + x246 + x247 + x248 + x264 + x288 + x297 + x299 ++ x300 + x302 + x328 + x329 + x331 + x332 + x333 + x338 + x344 + x348 ++ x358 + x360 + x361 + x362 + x363 + x399 + x412 + x413 + x414 + x422 ++ x424 + x434 + x435 + x436 + x442 + x450 + x453 + x485 + x486 + x495 + <= 1 + +x16 + x35 + x37 + x38 + x46 + x49 + x50 + x51 + x52 + x81 ++ x82 + x109 + x110 + x111 + x112 + x113 + x114 + x146 + x189 + x191 ++ x192 + x195 + x240 + x241 + x243 + x245 + x247 + x248 + x261 + x264 ++ x267 + x272 + x288 + x299 + x300 + x301 + x328 + x329 + x331 + x332 ++ x333 + x335 + x336 + x338 + x341 + x344 + x347 + x348 + x360 + x361 ++ x363 + x414 + x422 + x424 + x425 + x435 + x436 + x437 + x439 + x442 ++ x447 + x450 + x453 + x486 + x493 + x494 + x495 <= 1 + +x16 + x41 + x49 + x50 + x52 + x53 + x58 + x80 + x81 + x82 ++ x85 + x109 + x111 + x112 + x144 + x171 + x174 + x191 + x192 + x193 ++ x195 + x241 + x244 + x245 + x261 + x264 + x266 + x268 + x269 + x272 ++ x287 + x288 + x328 + x330 + x331 + x332 + x333 + x336 + x339 + x341 ++ x344 + x347 + x413 + x450 + x452 + x453 + x454 + x455 + x456 + x489 ++ x490 + x493 + x494 + x496 <= 1 + +x49 + x50 + x52 + x53 + x58 + x80 + x81 + x82 + x84 + x85 ++ x93 + x123 + x174 + x190 + x191 + x192 + x193 + x195 + x241 + x244 ++ x245 + x261 + x264 + x266 + x285 + x287 + x290 + x303 + x307 + x328 ++ x331 + x332 + x336 + x339 + x344 + x347 + x446 + x450 + x451 + x452 ++ x454 + x456 + x457 + x458 + x490 + x494 + x496 <= 1 + +x10 + x39 + x49 + x53 + x54 + x65 + x80 + x82 + x84 + x85 ++ x115 + x116 + x190 + x191 + x192 + x193 + x195 + x241 + x242 + x245 ++ x247 + x261 + x264 + x265 + x266 + x285 + x287 + x289 + x290 + x303 ++ x305 + x328 + x331 + x332 + x339 + x344 + x347 + x451 + x452 + x454 ++ x456 + x457 + x458 + x496 <= 1 + +x10 + x18 + x19 + x49 + x53 + x54 + x65 + x78 + x80 + x83 ++ x84 + x85 + x115 + x116 + x190 + x191 + x192 + x193 + x195 + x245 ++ x261 + x262 + x265 + x278 + x289 + x290 + x303 + x304 + x305 + x306 ++ x328 + x331 + x336 + x339 + x347 + x351 + x444 + x454 <= 1 + +x10 + x14 + x49 + x85 + x116 + x190 + x192 + x244 + x245 + x261 ++ x265 + x289 + x303 + x305 + x306 + x328 + x339 + x351 + x444 <= 1 + +x0 + x1 + x2 + x3 + x4 <= 1 + +x5 + x6 + x7 + x8 + x9 + x10 <= 1 + +x12 + x13 + x14 + x15 + x16 + x17 <= 1 + +x18 + x19 + x20 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 <= 1 + + <= 1 + +x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 + x38 + x39 <= 1 + +x40 + x41 + x42 + x43 + x44 + x45 <= 1 + + <= 1 + +x49 + x50 + x51 + x52 + x53 + x54 <= 1 + +x55 + x56 + x57 + x58 + x59 + x60 <= 1 + +x61 + x62 + x63 + x64 + x65 + x66 <= 1 + +x67 + x68 + x69 + x70 + x71 + x72 <= 1 + +x74 + x75 + x76 + x77 + x78 + x79 <= 1 + +x80 + x81 + x82 + x83 + x84 + x85 <= 1 + + <= 1 + +x89 + x90 + x91 + x92 <= 1 + +x93 + x94 + x95 + x96 + x97 + x98 <= 1 + +x99 + x100 + x101 + x102 + x103 + x104 <= 1 + +x105 + x106 + x107 + x108 <= 1 + +x109 + x110 + x111 + x112 + x113 + x114 <= 1 + +x115 + x116 + x117 + x118 + x119 + x120 <= 1 + +x121 + x122 + x123 + x124 <= 1 + +x125 + x126 <= 1 + +x127 + x128 + x129 + x130 + x131 + x132 <= 1 + +x133 + x134 + x135 + x136 + x137 + x138 <= 1 + +x139 + x140 + x141 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x148 + x149 + x150 + x151 <= 1 + +x153 + x154 + x155 + x156 + x157 <= 1 + +x158 + x159 + x160 + x161 + x162 + x163 <= 1 + +x166 + x167 + x168 + x169 + x170 <= 1 + +x171 + x172 + x173 + x174 + x175 + x176 <= 1 + +x178 + x179 + x180 + x181 + x182 + x183 <= 1 + +x184 + x185 + x186 + x187 + x188 + x189 <= 1 + +x190 + x191 + x192 + x193 + x194 + x195 <= 1 + +x196 + x197 + x198 + x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x208 + x209 + x210 + x211 + x212 + x213 <= 1 + +x214 + x215 + x216 <= 1 + +x217 + x218 + x219 <= 1 + +x220 + x221 + x222 + x223 + x224 + x225 <= 1 + +x226 + x227 + x228 + x229 + x230 <= 1 + +x47 + x231 + x232 + x233 + x234 + x235 <= 1 + +x237 + x238 + x239 + x240 + x241 + x242 <= 1 + +x243 + x244 + x245 + x246 + x247 + x248 <= 1 + +x249 + x250 + x251 + x252 + x253 + x254 <= 1 + +x256 + x257 + x258 + x259 + x260 <= 1 + +x261 + x262 + x263 + x264 + x265 + x266 <= 1 + +x267 + x268 + x269 + x270 + x271 + x272 <= 1 + +x273 + x274 + x275 + x276 + x277 + x278 <= 1 + +x279 + x280 + x281 + x282 + x283 + x284 <= 1 + +x285 + x286 + x287 + x288 + x289 + x290 <= 1 + +x291 + x292 <= 1 + +x293 + x294 + x295 + x296 <= 1 + +x297 + x298 + x299 + x300 + x301 + x302 <= 1 + +x303 + x304 + x305 + x306 + x307 <= 1 + +x311 + x312 <= 1 + +x313 + x314 + x315 <= 1 + +x316 + x317 + x318 + x319 + x320 + x321 <= 1 + + <= 1 + +x322 + x323 + x324 + x325 + x326 + x327 <= 1 + +x328 + x329 + x330 + x331 + x332 + x333 <= 1 + +x334 + x335 + x336 + x337 + x338 + x339 <= 1 + +x340 + x341 + x342 + x343 + x344 + x345 <= 1 + +x346 + x347 + x348 + x349 + x350 + x351 <= 1 + +x352 + x353 + x354 + x355 + x356 + x357 <= 1 + +x358 + x359 + x360 + x361 + x362 + x363 <= 1 + +x364 + x365 + x366 + x367 + x368 + x369 <= 1 + +x370 + x371 + x372 + x373 + x374 <= 1 + +x375 + x376 + x377 + x378 <= 1 + +x379 + x380 + x381 <= 1 + +x382 + x383 <= 1 + +x385 + x386 + x387 + x388 + x389 + x390 <= 1 + +x391 + x392 + x393 + x394 + x395 + x396 <= 1 + +x397 + x398 + x399 + x400 + x401 + x402 <= 1 + +x403 + x404 + x405 <= 1 + +x406 + x407 + x408 + x409 + x410 + x411 <= 1 + +x412 + x413 + x414 + x415 + x416 + x417 <= 1 + +x418 + x419 + x420 + x421 <= 1 + +x422 + x423 + x424 + x425 + x426 + x427 <= 1 + +x428 + x429 + x430 + x431 + x432 + x433 <= 1 + +x434 + x435 + x436 + x437 + x438 + x439 <= 1 + +x440 + x441 + x442 + x443 + x444 + x445 <= 1 + +x446 + x447 + x448 + x449 + x450 + x451 <= 1 + +x452 + x453 + x454 + x455 + x456 + x457 <= 1 + +x458 + x459 + x460 + x461 + x462 + x463 <= 1 + +x464 + x465 + x466 + x467 + x468 + x469 <= 1 + +x470 + x471 + x472 + x473 + x474 <= 1 + +x475 + x476 + x477 <= 1 + +x478 + x479 + x480 + x481 + x482 <= 1 + +x483 + x484 + x485 + x486 + x487 + x488 <= 1 + +x489 + x490 + x491 + x492 <= 1 + +x493 + x494 + x495 + x496 + x497 <= 1 + +x498 + x499 + x500 + x501 + x502 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0018.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0018.lp new file mode 100755 index 000000000..b3ac7ea36 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0018.lp @@ -0,0 +1,1134 @@ +max + +405.955x0 + 505.074x1 + 433.484x2 + 432.879x3 + 427.194x4 + 73.9565x5 + 81.8412x6 + 551.935x7 + 689.346x8 + 669.126x9 + +566.354x10 + 555.537x11 + 548.073x12 + 456.902x13 + 449.817x14 + 426.775x15 + 423.809x16 + 397.995x17 + 360.937x18 + 496.975x19 + +399.29x20 + 289.115x21 + 284.715x22 + 220.814x23 + 715.018x24 + 1061.29x25 + 1030.6x26 + 1024.95x27 + 998.313x28 + 980.39x29 + +4.69384x30 + 653.213x31 + 563.727x32 + 560.894x33 + 548.742x34 + 504.838x35 + 429.519x36 + 957.193x37 + 1205.36x38 + 1201.26x39 + +1174.85x40 + 1158.62x41 + 1141.04x42 + 40.037x43 + 695.433x44 + 695.713x45 + 651.842x46 + 603.878x47 + 563.623x48 + 554.811x49 + +634.652x50 + 784.252x51 + 644.84x52 + 614.421x53 + 612.721x54 + 594.288x55 + 382.508x56 + 433.331x57 + 428.569x58 + 392.818x59 + +306.82x60 + 278.954x61 + 34.6708x62 + 70.369x63 + 60.2241x64 + 649.822x65 + 846.49x66 + 698.958x67 + 658.254x68 + 627.809x69 + +594.969x70 + 2662.52x71 + 3214.23x72 + 3158.26x73 + 3090.35x74 + 3074.65x75 + 3047.05x76 + 530.272x77 + 637.127x78 + 632.281x79 + +584.548x80 + 567.749x81 + 552.592x82 + 20.2299x83 + 451.958x84 + 630.006x85 + 600.785x86 + 578.534x87 + 537.655x88 + 505.999x89 + +812.223x90 + 874.364x91 + 815.459x92 + 810.694x93 + 778.675x94 + 772.032x95 + 890.107x96 + 1299.08x97 + 1175.23x98 + 1005.18x99 + +967.645x100 + 959.565x101 + 530.865x102 + 536.952x103 + 480.476x104 + 475.928x105 + 462.484x106 + 436.517x107 + 1634.84x108 + 1893.1x109 + +1767.49x110 + 1750.85x111 + 1659.94x112 + 1635.8x113 + 239.471x114 + 297.67x115 + 232.125x116 + 202.918x117 + 239.535x118 + 283.352x119 + +224.348x120 + 168.376x121 + 46.9742x122 + 50.9715x123 + 327.222x124 + 465.074x125 + 332.465x126 + 286.918x127 + 282.982x128 + 219.879x129 + +2977.99x130 + 3022.88x131 + 3004x132 + 2894.65x133 + 2867.15x134 + 2863.12x135 + 3129.54x136 + 3594.64x137 + 3524.93x138 + 3505.75x139 + +3505.48x140 + 3473.33x141 + 1765.09x142 + 1941.24x143 + 1931.72x144 + 1904.99x145 + 1898.91x146 + 1894.61x147 + 277.341x148 + 247.38x149 + +224.384x150 + 175.108x151 + 211.51x152 + 262.042x153 + 191.515x154 + 171.047x155 + 124.643x156 + 355.607x157 + 359.278x158 + 277.114x159 + +198.92x160 + 327.458x161 + 461.589x162 + 437.863x163 + 351.437x164 + 293.004x165 + 262.946x166 + 587.535x167 + 695.415x168 + 658.813x169 + +595.069x170 + 441.089x171 + 397.5x172 + 149.398x173 + 54.5437x174 + 104.942x175 + 996.762x176 + 1082.43x177 + 1064.55x178 + 994.442x179 + +976.357x180 + 935.527x181 + 312.006x182 + 464.675x183 + 402.981x184 + 401.632x185 + 325.281x186 + 528.589x187 + 547.927x188 + 520.336x189 + +501.304x190 + 485.878x191 + 434.667x192 + 562.97x193 + 813.383x194 + 804.42x195 + 768.522x196 + 706.744x197 + 702.865x198 + 1659.3x199 + +1731.91x200 + 1671.72x201 + 1646.4x202 + 1643.97x203 + 1624.97x204 + 522.331x205 + 513.535x206 + 502.931x207 + 465.645x208 + 359.161x209 + +305.375x210 + 240.728x211 + 329.396x212 + 198.423x213 + 169.485x214 + 148.891x215 + 575.566x216 + 810.887x217 + 742.08x218 + 737.724x219 + +731.695x220 + 717.093x221 + 460.924x222 + 669.703x223 + 651.374x224 + 640.368x225 + 620.213x226 + 604.422x227 + 1072.98x228 + 1364.17x229 + +1149x230 + 1143.07x231 + 1113.93x232 + 1102.86x233 + 175.568x234 + 162.216x235 + 104.181x236 + 777.014x237 + 1082.47x238 + 1062.4x239 + +949.05x240 + 929.992x241 + 910.648x242 + 3932.92x243 + 4224.63x244 + 4160.15x245 + 4128.27x246 + 4120.92x247 + 4094.08x248 + 252.673x249 + +226.462x250 + 203.543x251 + 172.288x252 + 156.486x253 + 131.215x254 + 168.454x255 + 81.7452x256 + 1359.48x257 + 1773.19x258 + 1686.01x259 + +1653.21x260 + 1607.31x261 + 1597.15x262 + 662.832x263 + 807.935x264 + 781.392x265 + 760.636x266 + 708.694x267 + 678.664x268 + 434.492x269 + +588.375x270 + 558.242x271 + 523.378x272 + 500.56x273 + 500.375x274 + 2630.17x275 + 3047.76x276 + 2982.6x277 + 2928.29x278 + 2871.71x279 + +2841.59x280 + 612.59x281 + 531.667x282 + 526.214x283 + 467.351x284 + 448.963x285 + 447.326x286 + 732.447x287 + 939.004x288 + 926.503x289 + +921.432x290 + 876.366x291 + 863.389x292 + 415.935x293 + 550.352x294 + 516.476x295 + 489.077x296 + 485.331x297 + 473.638x298 + 1195.08x299 + +1301.36x300 + 1232.82x301 + 1158.89x302 + 1147.84x303 + 1110.1x304 + 2155.69x305 + 2683.31x306 + 2513.6x307 + 2407.4x308 + 2406.32x309 + +2395.02x310 + 462.021x311 + 573.353x312 + 533.871x313 + 529.373x314 + 499.057x315 + 466.843x316 + 520.86x317 + 713.217x318 + 689.429x319 + +636.509x320 + 631.79x321 + 609.183x322 + 67.4425x323 + 1539.03x324 + 1677.4x325 + 1611.67x326 + 1585.88x327 + 1532.54x328 + 1529.84x329 + +67.467x330 + 801.417x331 + 965.055x332 + 930.891x333 + 927.685x334 + 890.207x335 + 875.043x336 + 618.246x337 + 679.94x338 + 644.391x339 + +636.99x340 + 625.683x341 + 611.387x342 + 889.245x343 + 999.689x344 + 898.061x345 + 882.2x346 + 832.274x347 + 816.376x348 + 230.558x349 + +246.735x350 + 237.791x351 + 208.116x352 + 194.869x353 + 457.217x354 + 380.225x355 + 367.605x356 + 349.779x357 + 322.194x358 + 314.58x359 + +48.7036x360 + 3065.39x361 + 3218.32x362 + 3188.29x363 + 3143.76x364 + 3140.83x365 + 3139.35x366 + 401.738x367 + 538.772x368 + 472.697x369 + +444.048x370 + 406.908x371 + 394.884x372 + 523.709x373 + 581.606x374 + 510.397x375 + 490.336x376 + 473.95x377 + 464.967x378 + 127.436x379 + +174.068x380 + 172.7x381 + 169.437x382 + 666.874x383 + 943.415x384 + 931.568x385 + 894.24x386 + 890.861x387 + 854.724x388 + 82.847x389 + +101.774x390 + 394.099x391 + 552.199x392 + 469.863x393 + 451.095x394 + 436.758x395 + 436.444x396 + 446.887x397 + 476.356x398 + 466.569x399 + +458.857x400 + 383.393x401 + 343.984x402 + 885.201x403 + 1264.57x404 + 1237.34x405 + 1227.19x406 + 1175.83x407 + 1165.09x408 + 538.771x409 + +558.26x410 + 528.688x411 + 449.741x412 + 422.986x413 + 398.772x414 + 202.295x415 + 254.296x416 + 238.772x417 + 211.798x418 + 144.692x419 + +89.2776x420 + 105.835x421 + 1809.02x422 + 2486.08x423 + 2457.42x424 + 2381.19x425 + 2346.97x426 + 2302.41x427 + 283.186x428 + 391.237x429 + +388.872x430 + 253.912x431 + 202.002x432 + 557.176x433 + 584.801x434 + 540.435x435 + 503.366x436 + 489.677x437 + 363.961x438 + 370.496x439 + +455.687x440 + 428.449x441 + 417.756x442 + 339.743x443 + 304.806x444 + 421.721x445 + 589.145x446 + 587.345x447 + 562.85x448 + 561.244x449 + +463.173x450 + 16.4535x451 + 704.525x452 + 721.271x453 + 687.176x454 + 649.758x455 + 615.22x456 + 609.551x457 + 488.924x458 + 504.279x459 + +496.409x460 + 459.609x461 + 418.893x462 + 374.572x463 + 157.676x464 + 197.046x465 + 138.75x466 + 138.683x467 + 728.181x468 + 944.723x469 + +802.628x470 + 757.681x471 + 734.092x472 + 731.02x473 + 969.142x474 + 1163.7x475 + 1025.95x476 + 1021.83x477 + 999.892x478 + 999.235x479 + +1230.67x480 + 1430.02x481 + 1386.91x482 + 1368.85x483 + 1364.31x484 + 1359.13x485 + 513.173x486 + 594.52x487 + 558.345x488 + 517.431x489 + +506.781x490 + 455.305x491 + 619.744x492 + 878.119x493 + 777.576x494 + 750.479x495 + 740.293x496 + 728.394x497 + 269.298x498 + 338.837x499 + +266.635x500 + 188.234x501 + 109.692x502 + +st + +x36 + x101 + x110 + x130 + x133 + x134 + x135 + x142 + x147 + x153 ++ x154 + x156 + x245 + x286 + x307 + x327 + x361 + x363 + x364 + x365 ++ x405 + x468 + x469 + x471 + x472 + x473 + x478 + x494 <= 1 + +x31 + x36 + x82 + x101 + x110 + x130 + x132 + x133 + x134 + x135 ++ x142 + x147 + x152 + x153 + x155 + x156 + x192 + x235 + x245 + x284 ++ x286 + x307 + x327 + x329 + x361 + x363 + x364 + x365 + x405 + x468 ++ x469 + x471 + x472 + x473 + x478 <= 1 + +x20 + x22 + x23 + x77 + x81 + x82 + x96 + x101 + x109 + x110 ++ x130 + x131 + x132 + x133 + x134 + x135 + x137 + x139 + x142 + x147 ++ x153 + x170 + x192 + x201 + x231 + x245 + x246 + x248 + x260 + x281 ++ x283 + x286 + x306 + x307 + x329 + x331 + x343 + x344 + x346 + x347 ++ x348 + x360 + x361 + x363 + x364 + x365 + x405 + x423 + x427 + x469 + <= 1 + +x19 + x20 + x22 + x23 + x27 + x41 + x72 + x73 + x77 + x78 ++ x81 + x101 + x108 + x109 + x110 + x111 + x112 + x130 + x131 + x132 ++ x133 + x134 + x135 + x137 + x139 + x142 + x143 + x146 + x147 + x167 ++ x170 + x177 + x190 + x229 + x231 + x232 + x245 + x246 + x247 + x248 ++ x260 + x279 + x281 + x282 + x283 + x284 + x286 + x293 + x296 + x297 ++ x298 + x306 + x310 + x331 + x332 + x343 + x344 + x345 + x346 + x348 ++ x361 + x363 + x364 + x365 + x366 + x404 + x406 + x415 + x416 + x423 ++ x427 + x469 <= 1 + +x7 + x19 + x20 + x22 + x27 + x33 + x41 + x71 + x72 + x73 ++ x74 + x76 + x77 + x78 + x81 + x101 + x108 + x109 + x110 + x111 ++ x112 + x113 + x130 + x131 + x132 + x133 + x134 + x135 + x137 + x138 ++ x139 + x141 + x142 + x143 + x144 + x146 + x147 + x168 + x170 + x177 ++ x190 + x199 + x229 + x230 + x231 + x232 + x233 + x244 + x245 + x246 ++ x247 + x248 + x259 + x260 + x276 + x277 + x278 + x279 + x281 + x282 ++ x283 + x284 + x293 + x295 + x296 + x297 + x298 + x301 + x306 + x307 ++ x310 + x331 + x332 + x343 + x344 + x345 + x346 + x347 + x348 + x361 ++ x362 + x363 + x364 + x365 + x366 + x374 + x404 + x406 + x413 + x415 ++ x417 + x418 + x422 + x424 + x427 + x452 + x454 + x455 + x469 + x482 + <= 1 + +x7 + x21 + x27 + x41 + x42 + x54 + x71 + x72 + x73 + x74 ++ x77 + x78 + x79 + x81 + x108 + x109 + x110 + x111 + x112 + x113 ++ x130 + x131 + x132 + x133 + x134 + x135 + x139 + x141 + x142 + x143 ++ x146 + x147 + x168 + x170 + x190 + x207 + x228 + x231 + x232 + x244 ++ x245 + x246 + x247 + x248 + x252 + x259 + x260 + x266 + x276 + x279 ++ x283 + x284 + x291 + x293 + x296 + x297 + x298 + x302 + x306 + x331 ++ x332 + x343 + x345 + x346 + x347 + x361 + x362 + x363 + x364 + x365 ++ x366 + x404 + x413 + x415 + x417 + x418 + x419 + x422 + x425 + x427 ++ x452 + x454 + x455 + x456 + x489 <= 1 + +x3 + x21 + x24 + x25 + x26 + x28 + x37 + x41 + x42 + x51 ++ x52 + x54 + x61 + x71 + x72 + x73 + x74 + x75 + x77 + x78 ++ x79 + x108 + x110 + x111 + x112 + x113 + x130 + x131 + x132 + x134 ++ x135 + x137 + x139 + x140 + x141 + x143 + x145 + x146 + x147 + x168 ++ x169 + x206 + x207 + x209 + x210 + x228 + x232 + x243 + x244 + x245 ++ x246 + x247 + x248 + x252 + x266 + x276 + x279 + x280 + x291 + x305 ++ x306 + x320 + x331 + x332 + x333 + x335 + x336 + x361 + x362 + x363 ++ x364 + x366 + x409 + x410 + x413 + x419 + x422 + x424 + x425 + x427 ++ x446 + x456 + x481 + x484 + x488 + x489 <= 1 + +x1 + x24 + x27 + x28 + x37 + x41 + x42 + x54 + x56 + x61 ++ x72 + x73 + x74 + x75 + x78 + x130 + x131 + x132 + x134 + x135 ++ x137 + x141 + x143 + x147 + x206 + x209 + x210 + x220 + x232 + x242 ++ x245 + x247 + x248 + x276 + x279 + x280 + x325 + x331 + x332 + x333 ++ x334 + x335 + x336 + x361 + x362 + x363 + x364 + x366 + x405 + x409 ++ x410 + x413 + x414 + x423 + x424 + x425 + x480 + x483 + x484 + x485 ++ x486 + x488 + x489 + x490 <= 1 + +x1 + x29 + x51 + x54 + x57 + x61 + x71 + x72 + x73 + x74 ++ x75 + x108 + x109 + x130 + x131 + x132 + x134 + x135 + x147 + x209 ++ x210 + x220 + x232 + x244 + x247 + x248 + x266 + x276 + x278 + x279 ++ x280 + x325 + x331 + x332 + x333 + x334 + x335 + x336 + x361 + x362 ++ x363 + x366 + x405 + x409 + x413 + x414 + x424 + x425 + x480 + x485 ++ x486 + x489 + x491 <= 1 + +x24 + x40 + x42 + x51 + x61 + x71 + x72 + x73 + x74 + x75 ++ x108 + x130 + x131 + x132 + x134 + x209 + x210 + x232 + x244 + x245 ++ x247 + x248 + x266 + x278 + x279 + x325 + x331 + x332 + x333 + x334 ++ x335 + x336 + x361 + x414 + x480 + x485 <= 1 + +x36 + x96 + x101 + x110 + x130 + x133 + x134 + x135 + x139 + x147 ++ x152 + x154 + x155 + x156 + x235 + x261 + x264 + x284 + x286 + x329 ++ x363 + x364 + x365 + x405 + x426 + x468 + x469 + x471 + x472 + x473 ++ x478 + x494 <= 1 + +x31 + x36 + x82 + x101 + x110 + x130 + x133 + x134 + x135 + x139 ++ x147 + x152 + x153 + x154 + x155 + x156 + x181 + x188 + x235 + x244 ++ x245 + x261 + x264 + x270 + x277 + x284 + x286 + x319 + x324 + x327 ++ x329 + x348 + x363 + x364 + x365 + x468 + x469 + x471 + x472 + x473 ++ x474 + x478 + x493 + x494 <= 1 + +x19 + x20 + x23 + x46 + x77 + x81 + x96 + x101 + x109 + x110 ++ x111 + x130 + x131 + x132 + x133 + x134 + x135 + x142 + x143 + x144 ++ x146 + x147 + x153 + x167 + x168 + x170 + x181 + x188 + x192 + x196 ++ x201 + x218 + x231 + x245 + x246 + x247 + x248 + x253 + x282 + x283 ++ x286 + x288 + x295 + x306 + x307 + x324 + x326 + x338 + x343 + x344 ++ x345 + x347 + x348 + x361 + x362 + x363 + x364 + x365 + x366 + x406 ++ x416 + x423 + x427 + x471 + x473 <= 1 + +x19 + x23 + x46 + x51 + x72 + x73 + x74 + x77 + x78 + x81 ++ x96 + x101 + x108 + x109 + x110 + x111 + x130 + x131 + x132 + x133 ++ x134 + x135 + x141 + x142 + x143 + x144 + x146 + x147 + x167 + x168 ++ x170 + x177 + x188 + x229 + x230 + x231 + x245 + x246 + x247 + x248 ++ x276 + x279 + x281 + x282 + x283 + x284 + x288 + x289 + x293 + x295 ++ x296 + x297 + x298 + x306 + x307 + x310 + x326 + x343 + x344 + x345 ++ x347 + x361 + x362 + x363 + x364 + x365 + x366 + x404 + x406 + x416 ++ x417 + x422 + x423 + x424 + x427 + x452 + x455 + x469 + x471 + x473 + <= 1 + +x19 + x20 + x21 + x22 + x27 + x57 + x71 + x72 + x73 + x74 ++ x75 + x76 + x78 + x81 + x95 + x99 + x101 + x109 + x110 + x111 ++ x112 + x113 + x130 + x131 + x132 + x133 + x134 + x135 + x137 + x138 ++ x139 + x140 + x141 + x142 + x143 + x144 + x146 + x168 + x170 + x177 ++ x190 + x228 + x229 + x230 + x231 + x232 + x233 + x244 + x245 + x246 ++ x247 + x248 + x260 + x276 + x277 + x278 + x279 + x280 + x281 + x282 ++ x283 + x284 + x293 + x294 + x295 + x296 + x297 + x298 + x302 + x306 ++ x321 + x331 + x332 + x343 + x344 + x345 + x346 + x347 + x361 + x362 ++ x363 + x364 + x365 + x366 + x386 + x406 + x408 + x412 + x415 + x417 ++ x418 + x422 + x424 + x427 + x452 + x453 + x454 + x455 + x457 + x469 ++ x482 <= 1 + +x17 + x21 + x22 + x27 + x41 + x42 + x52 + x54 + x72 + x73 ++ x74 + x75 + x81 + x95 + x99 + x101 + x109 + x110 + x111 + x112 ++ x113 + x130 + x131 + x132 + x134 + x135 + x138 + x139 + x140 + x142 ++ x143 + x145 + x146 + x147 + x170 + x190 + x207 + x217 + x220 + x228 ++ x229 + x230 + x231 + x233 + x244 + x245 + x247 + x248 + x259 + x260 ++ x277 + x279 + x280 + x284 + x293 + x296 + x297 + x302 + x306 + x322 ++ x326 + x331 + x343 + x346 + x347 + x361 + x362 + x363 + x364 + x365 ++ x366 + x386 + x404 + x408 + x412 + x418 + x419 + x422 + x424 + x425 ++ x426 + x427 + x452 + x453 + x454 + x455 + x456 + x457 + x475 + x481 ++ x482 + x483 + x484 + x490 <= 1 + +x21 + x24 + x26 + x27 + x28 + x39 + x41 + x42 + x50 + x52 ++ x53 + x54 + x55 + x56 + x58 + x59 + x72 + x73 + x74 + x75 ++ x99 + x101 + x108 + x109 + x110 + x111 + x112 + x113 + x130 + x131 ++ x132 + x133 + x134 + x135 + x138 + x139 + x140 + x141 + x142 + x143 ++ x145 + x146 + x147 + x171 + x205 + x209 + x217 + x219 + x220 + x228 ++ x229 + x230 + x231 + x233 + x243 + x244 + x245 + x246 + x247 + x248 ++ x259 + x266 + x276 + x279 + x280 + x297 + x302 + x325 + x329 + x333 ++ x334 + x335 + x336 + x361 + x362 + x363 + x364 + x365 + x366 + x386 ++ x404 + x408 + x409 + x410 + x412 + x413 + x414 + x422 + x423 + x424 ++ x425 + x426 + x427 + x452 + x453 + x454 + x456 + x457 + x475 + x480 ++ x481 + x482 + x483 + x484 + x487 + x490 <= 1 + +x0 + x1 + x2 + x3 + x24 + x25 + x26 + x27 + x28 + x29 ++ x37 + x40 + x41 + x42 + x50 + x51 + x52 + x53 + x54 + x55 ++ x56 + x58 + x59 + x71 + x72 + x73 + x74 + x75 + x78 + x79 ++ x95 + x97 + x108 + x109 + x110 + x112 + x113 + x130 + x131 + x132 ++ x133 + x134 + x135 + x137 + x138 + x140 + x141 + x142 + x143 + x145 ++ x146 + x147 + x169 + x171 + x188 + x205 + x206 + x207 + x208 + x209 ++ x217 + x218 + x219 + x220 + x228 + x229 + x243 + x244 + x245 + x246 ++ x247 + x248 + x259 + x260 + x262 + x266 + x276 + x277 + x279 + x280 ++ x291 + x294 + x302 + x305 + x306 + x320 + x324 + x332 + x333 + x334 ++ x335 + x336 + x361 + x362 + x363 + x364 + x365 + x366 + x394 + x405 ++ x408 + x409 + x410 + x411 + x413 + x414 + x422 + x423 + x424 + x425 ++ x426 + x427 + x430 + x456 + x457 + x475 + x478 + x480 + x481 + x482 ++ x483 + x484 + x485 + x487 + x488 + x489 + x490 <= 1 + +x1 + x4 + x24 + x26 + x28 + x29 + x37 + x40 + x41 + x42 ++ x50 + x51 + x54 + x56 + x57 + x58 + x59 + x71 + x72 + x73 ++ x74 + x75 + x108 + x109 + x112 + x113 + x130 + x131 + x132 + x134 ++ x142 + x145 + x169 + x188 + x205 + x206 + x207 + x208 + x209 + x210 ++ x220 + x228 + x229 + x230 + x231 + x232 + x242 + x243 + x244 + x245 ++ x246 + x247 + x248 + x266 + x275 + x276 + x278 + x279 + x280 + x291 ++ x294 + x300 + x306 + x308 + x323 + x325 + x326 + x327 + x332 + x333 ++ x334 + x335 + x336 + x361 + x362 + x366 + x405 + x409 + x414 + x423 ++ x425 + x426 + x427 + x435 + x480 + x482 + x483 + x484 + x485 + x486 ++ x488 + x490 + x491 <= 1 + +x24 + x40 + x42 + x50 + x58 + x61 + x72 + x73 + x74 + x75 ++ x108 + x130 + x131 + x132 + x134 + x135 + x142 + x188 + x208 + x210 ++ x220 + x228 + x232 + x244 + x245 + x246 + x247 + x248 + x266 + x275 ++ x278 + x279 + x280 + x325 + x331 + x333 + x334 + x335 + x336 + x355 ++ x361 + x366 + x390 + x405 + x408 + x414 + x480 + x485 + x491 <= 1 + +x36 + x82 + x96 + x101 + x130 + x133 + x134 + x135 + x139 + x147 ++ x152 + x154 + x156 + x167 + x261 + x277 + x315 + x329 + x361 + x362 ++ x363 + x364 + x365 + x426 + x468 + x469 + x471 + x472 + x473 + x493 + <= 1 + +x36 + x77 + x82 + x96 + x100 + x110 + x130 + x132 + x133 + x134 ++ x135 + x139 + x144 + x147 + x152 + x154 + x155 + x156 + x164 + x165 ++ x167 + x172 + x181 + x188 + x189 + x201 + x234 + x235 + x245 + x253 ++ x254 + x257 + x261 + x270 + x277 + x309 + x311 + x313 + x314 + x315 ++ x319 + x324 + x327 + x329 + x344 + x348 + x361 + x362 + x363 + x364 ++ x365 + x422 + x468 + x469 + x471 + x472 + x473 + x474 + x478 + x493 + <= 1 + +x9 + x23 + x46 + x77 + x80 + x82 + x96 + x100 + x101 + x110 ++ x130 + x131 + x132 + x133 + x134 + x135 + x139 + x144 + x146 + x147 ++ x152 + x153 + x172 + x181 + x187 + x188 + x189 + x192 + x196 + x201 ++ x204 + x218 + x231 + x235 + x245 + x248 + x249 + x250 + x253 + x257 ++ x259 + x261 + x270 + x273 + x282 + x285 + x286 + x288 + x306 + x307 ++ x313 + x314 + x324 + x327 + x329 + x344 + x345 + x347 + x348 + x361 ++ x362 + x363 + x364 + x365 + x406 + x416 + x422 + x469 + x471 + x472 ++ x473 + x478 <= 1 + +x74 + x96 + x112 + x113 + x123 + x130 + x131 + x132 + x134 + x135 ++ x182 + x185 + x190 + x192 + x228 + x230 + x231 + x233 + x244 + x245 ++ x247 + x248 + x257 + x259 + x260 + x274 + x276 + x277 + x293 + x294 ++ x302 + x317 + x318 + x321 + x322 + x327 + x361 + x362 + x363 + x364 ++ x365 + x406 + x422 + x424 + x427 + x482 <= 1 + +x17 + x27 + x40 + x41 + x57 + x72 + x74 + x75 + x76 + x78 ++ x96 + x97 + x101 + x106 + x109 + x110 + x111 + x112 + x113 + x130 ++ x131 + x132 + x133 + x134 + x135 + x137 + x138 + x139 + x140 + x141 ++ x142 + x143 + x144 + x145 + x146 + x147 + x168 + x185 + x187 + x190 ++ x228 + x229 + x230 + x231 + x233 + x244 + x245 + x246 + x247 + x248 ++ x257 + x259 + x260 + x262 + x274 + x276 + x277 + x278 + x279 + x280 ++ x288 + x293 + x294 + x295 + x296 + x297 + x299 + x302 + x304 + x306 ++ x317 + x318 + x320 + x321 + x322 + x327 + x331 + x332 + x333 + x343 ++ x344 + x346 + x361 + x362 + x363 + x365 + x366 + x404 + x405 + x406 ++ x407 + x408 + x422 + x423 + x424 + x425 + x427 + x454 + x455 + x469 ++ x480 + x482 <= 1 + +x17 + x25 + x26 + x27 + x28 + x41 + x50 + x57 + x59 + x60 ++ x72 + x73 + x74 + x75 + x81 + x95 + x97 + x99 + x101 + x108 ++ x109 + x110 + x111 + x112 + x113 + x130 + x131 + x132 + x133 + x134 ++ x135 + x138 + x139 + x140 + x141 + x142 + x143 + x144 + x145 + x146 ++ x147 + x185 + x216 + x217 + x219 + x220 + x228 + x229 + x230 + x231 ++ x233 + x244 + x245 + x247 + x248 + x259 + x260 + x276 + x277 + x279 ++ x280 + x288 + x295 + x297 + x299 + x302 + x304 + x306 + x318 + x321 ++ x322 + x324 + x326 + x327 + x328 + x331 + x332 + x333 + x336 + x343 ++ x344 + x346 + x347 + x361 + x362 + x363 + x364 + x365 + x366 + x394 ++ x403 + x404 + x405 + x407 + x408 + x412 + x419 + x422 + x423 + x424 ++ x425 + x427 + x453 + x455 + x456 + x478 + x480 + x481 + x482 + x483 ++ x484 + x485 <= 1 + +x0 + x2 + x3 + x24 + x25 + x26 + x27 + x28 + x29 + x37 ++ x39 + x40 + x41 + x42 + x50 + x51 + x52 + x53 + x54 + x55 ++ x56 + x58 + x59 + x60 + x72 + x73 + x74 + x75 + x79 + x95 ++ x97 + x99 + x108 + x109 + x110 + x111 + x112 + x113 + x130 + x131 ++ x132 + x133 + x134 + x135 + x137 + x138 + x139 + x140 + x141 + x142 ++ x143 + x144 + x145 + x146 + x147 + x169 + x171 + x203 + x216 + x217 ++ x218 + x219 + x220 + x228 + x229 + x230 + x233 + x243 + x244 + x245 ++ x246 + x247 + x248 + x259 + x260 + x261 + x262 + x266 + x276 + x277 ++ x279 + x280 + x291 + x302 + x306 + x320 + x322 + x324 + x325 + x326 ++ x332 + x333 + x334 + x336 + x346 + x361 + x362 + x363 + x364 + x365 ++ x366 + x391 + x394 + x403 + x404 + x405 + x407 + x408 + x410 + x412 ++ x422 + x423 + x424 + x425 + x426 + x427 + x452 + x453 + x454 + x456 ++ x457 + x478 + x480 + x481 + x482 + x483 + x484 + x485 + x487 + x489 + <= 1 + +x0 + x1 + x2 + x3 + x4 + x24 + x25 + x26 + x27 + x28 ++ x29 + x37 + x40 + x41 + x42 + x50 + x51 + x52 + x55 + x60 ++ x71 + x72 + x73 + x74 + x75 + x78 + x82 + x95 + x97 + x108 ++ x109 + x110 + x111 + x112 + x113 + x130 + x131 + x132 + x133 + x134 ++ x135 + x137 + x138 + x139 + x140 + x141 + x142 + x143 + x144 + x145 ++ x147 + x167 + x169 + x185 + x205 + x206 + x207 + x218 + x219 + x220 ++ x228 + x229 + x230 + x232 + x233 + x243 + x244 + x245 + x246 + x247 ++ x248 + x259 + x260 + x261 + x262 + x275 + x276 + x277 + x279 + x280 ++ x291 + x302 + x306 + x320 + x324 + x325 + x326 + x334 + x335 + x336 ++ x361 + x362 + x363 + x364 + x366 + x385 + x394 + x405 + x407 + x408 ++ x410 + x411 + x423 + x424 + x425 + x426 + x427 + x430 + x478 + x480 ++ x481 + x482 + x483 + x484 + x485 + x486 + x487 + x488 + x489 + x491 + <= 1 + +x0 + x3 + x4 + x24 + x26 + x28 + x29 + x37 + x42 + x60 ++ x72 + x73 + x74 + x75 + x76 + x95 + x108 + x111 + x112 + x130 ++ x131 + x132 + x134 + x138 + x141 + x142 + x145 + x203 + x205 + x206 ++ x207 + x208 + x210 + x229 + x230 + x232 + x242 + x243 + x244 + x245 ++ x246 + x247 + x248 + x261 + x275 + x276 + x277 + x279 + x280 + x294 ++ x300 + x306 + x308 + x320 + x324 + x325 + x326 + x334 + x336 + x361 ++ x362 + x364 + x366 + x385 + x389 + x408 + x409 + x410 + x411 + x423 ++ x425 + x427 + x430 + x432 + x442 + x480 + x481 + x482 + x484 + x485 ++ x486 + x487 + x488 + x490 + x491 <= 1 + +x24 + x72 + x73 + x74 + x75 + x95 + x111 + x130 + x132 + x134 ++ x188 + x228 + x229 + x230 + x232 + x242 + x243 + x246 + x247 + x248 ++ x275 + x279 + x280 + x306 + x308 + x325 + x333 + x334 + x336 + x361 ++ x366 + x389 + x390 + x408 + x411 + x423 + x425 + x427 + x432 + x484 ++ x485 + x491 <= 1 + +x65 + x66 + x68 + x69 + x80 + x82 + x100 + x130 + x133 + x134 ++ x135 + x139 + x162 + x163 + x164 + x172 + x177 + x189 + x192 + x217 ++ x243 + x246 + x257 + x258 + x259 + x261 + x269 + x270 + x272 + x312 ++ x315 + x319 + x361 + x363 + x365 + x448 + x468 + x470 + x472 + x483 + <= 1 + +x16 + x36 + x47 + x65 + x75 + x80 + x82 + x100 + x130 + x132 ++ x133 + x134 + x135 + x139 + x147 + x161 + x162 + x163 + x164 + x165 ++ x167 + x172 + x181 + x189 + x192 + x197 + x217 + x243 + x245 + x247 ++ x251 + x254 + x257 + x259 + x261 + x270 + x272 + x288 + x309 + x311 ++ x312 + x313 + x314 + x315 + x317 + x318 + x319 + x324 + x327 + x329 ++ x348 + x361 + x362 + x363 + x365 + x422 + x448 + x468 + x470 + x471 ++ x472 + x478 + x483 + x493 <= 1 + +x16 + x44 + x45 + x46 + x47 + x75 + x77 + x80 + x96 + x99 ++ x100 + x106 + x132 + x133 + x134 + x135 + x138 + x139 + x143 + x144 ++ x146 + x147 + x163 + x172 + x181 + x186 + x187 + x189 + x192 + x196 ++ x197 + x204 + x217 + x218 + x247 + x249 + x250 + x251 + x253 + x254 ++ x257 + x259 + x261 + x270 + x272 + x273 + x274 + x277 + x282 + x285 ++ x288 + x294 + x301 + x306 + x311 + x312 + x313 + x314 + x317 + x318 ++ x319 + x321 + x322 + x327 + x348 + x361 + x362 + x363 + x364 + x365 ++ x393 + x406 + x422 + x427 + x448 + x468 + x470 + x471 + x472 + x481 ++ x483 + x493 <= 1 + +x16 + x41 + x74 + x75 + x92 + x96 + x99 + x100 + x102 + x106 ++ x109 + x111 + x112 + x113 + x122 + x123 + x133 + x135 + x136 + x137 ++ x138 + x139 + x142 + x143 + x144 + x146 + x166 + x181 + x182 + x186 ++ x187 + x189 + x190 + x192 + x208 + x230 + x231 + x233 + x247 + x248 ++ x250 + x257 + x274 + x276 + x277 + x287 + x288 + x294 + x295 + x302 ++ x317 + x318 + x320 + x321 + x322 + x327 + x361 + x362 + x363 + x364 ++ x365 + x406 + x422 + x424 + x427 + x448 + x471 + x481 + x482 + x486 + <= 1 + +x16 + x18 + x25 + x41 + x72 + x74 + x75 + x76 + x96 + x97 ++ x98 + x99 + x101 + x106 + x109 + x110 + x111 + x112 + x113 + x122 ++ x123 + x130 + x131 + x132 + x134 + x135 + x136 + x137 + x138 + x139 ++ x140 + x141 + x142 + x143 + x144 + x146 + x168 + x187 + x216 + x228 ++ x229 + x230 + x231 + x233 + x243 + x244 + x245 + x246 + x247 + x248 ++ x256 + x257 + x260 + x262 + x265 + x276 + x277 + x279 + x280 + x288 ++ x293 + x294 + x295 + x296 + x299 + x302 + x304 + x317 + x318 + x320 ++ x321 + x322 + x324 + x326 + x327 + x328 + x332 + x333 + x361 + x362 ++ x365 + x366 + x403 + x404 + x406 + x407 + x408 + x422 + x423 + x424 ++ x425 + x426 + x427 + x471 + x480 + x481 + x482 + x483 <= 1 + +x13 + x17 + x18 + x24 + x25 + x26 + x29 + x39 + x40 + x50 ++ x51 + x53 + x60 + x72 + x73 + x74 + x75 + x76 + x79 + x96 ++ x97 + x99 + x100 + x106 + x109 + x110 + x111 + x112 + x113 + x130 ++ x131 + x132 + x133 + x134 + x135 + x136 + x137 + x138 + x139 + x140 ++ x141 + x142 + x143 + x144 + x145 + x147 + x177 + x178 + x203 + x216 ++ x217 + x218 + x219 + x220 + x228 + x229 + x230 + x233 + x243 + x244 ++ x245 + x246 + x247 + x248 + x255 + x256 + x260 + x262 + x265 + x275 ++ x276 + x277 + x279 + x280 + x295 + x302 + x306 + x318 + x320 + x321 ++ x322 + x324 + x326 + x328 + x331 + x333 + x334 + x346 + x356 + x361 ++ x362 + x363 + x365 + x366 + x394 + x403 + x404 + x405 + x406 + x408 ++ x422 + x423 + x424 + x425 + x426 + x427 + x453 + x457 + x478 + x480 ++ x481 + x482 + x483 + x484 <= 1 + +x0 + x2 + x4 + x17 + x24 + x25 + x26 + x27 + x28 + x29 ++ x37 + x39 + x40 + x41 + x42 + x50 + x55 + x72 + x73 + x74 ++ x75 + x95 + x97 + x108 + x110 + x111 + x112 + x113 + x131 + x132 ++ x133 + x134 + x135 + x137 + x138 + x139 + x140 + x141 + x142 + x144 ++ x145 + x169 + x171 + x203 + x216 + x218 + x219 + x229 + x230 + x244 ++ x247 + x248 + x255 + x256 + x260 + x276 + x277 + x279 + x280 + x291 ++ x306 + x320 + x321 + x324 + x325 + x326 + x335 + x336 + x361 + x362 ++ x366 + x394 + x403 + x405 + x406 + x407 + x408 + x412 + x422 + x423 ++ x425 + x478 + x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x2 + x4 + x14 + x25 + x26 + x29 + x37 + x38 + x39 + x40 ++ x41 + x42 + x47 + x52 + x53 + x55 + x67 + x72 + x73 + x74 ++ x75 + x76 + x82 + x97 + x108 + x110 + x112 + x113 + x130 + x131 ++ x132 + x134 + x135 + x137 + x138 + x139 + x140 + x141 + x142 + x143 ++ x144 + x145 + x147 + x167 + x169 + x171 + x185 + x201 + x202 + x203 ++ x205 + x216 + x218 + x219 + x228 + x232 + x233 + x243 + x244 + x245 ++ x246 + x247 + x248 + x255 + x260 + x276 + x279 + x291 + x306 + x324 ++ x325 + x326 + x334 + x335 + x355 + x361 + x362 + x364 + x366 + x385 ++ x394 + x405 + x407 + x408 + x411 + x422 + x423 + x425 + x427 + x430 ++ x460 + x478 + x480 + x481 + x482 + x484 + x485 + x487 <= 1 + +x5 + x14 + x28 + x29 + x37 + x67 + x72 + x73 + x74 + x75 ++ x76 + x97 + x108 + x130 + x131 + x132 + x134 + x139 + x140 + x141 ++ x144 + x145 + x147 + x171 + x203 + x208 + x224 + x232 + x239 + x242 ++ x243 + x244 + x245 + x247 + x248 + x275 + x276 + x277 + x279 + x280 ++ x300 + x302 + x308 + x324 + x325 + x326 + x334 + x361 + x362 + x364 ++ x366 + x385 + x405 + x411 + x422 + x425 + x427 + x428 + x430 + x431 ++ x432 + x439 + x440 + x442 + x444 + x480 + x484 + x485 + x486 + x488 ++ x491 <= 1 + +x5 + x37 + x72 + x73 + x74 + x75 + x76 + x97 + x108 + x130 ++ x131 + x132 + x134 + x140 + x141 + x144 + x145 + x201 + x203 + x224 ++ x239 + x243 + x244 + x245 + x247 + x248 + x262 + x275 + x276 + x279 ++ x280 + x308 + x325 + x326 + x364 + x385 + x422 + x425 + x428 + x431 ++ x432 + x440 + x441 + x444 + x461 + x462 + x484 + x485 <= 1 + +x30 + x65 + x66 + x68 + x69 + x71 + x80 + x108 + x130 + x132 ++ x133 + x134 + x135 + x149 + x155 + x161 + x162 + x163 + x164 + x181 ++ x243 + x247 + x251 + x257 + x258 + x259 + x261 + x269 + x270 + x272 ++ x278 + x301 + x304 + x308 + x312 + x315 + x316 + x319 + x340 + x361 ++ x363 + x364 + x365 + x472 + x483 + x493 <= 1 + +x46 + x47 + x65 + x66 + x67 + x68 + x69 + x71 + x80 + x100 ++ x108 + x111 + x128 + x130 + x133 + x134 + x135 + x139 + x143 + x161 ++ x162 + x163 + x164 + x165 + x166 + x181 + x191 + x194 + x197 + x200 ++ x217 + x243 + x244 + x245 + x247 + x249 + x251 + x254 + x257 + x258 ++ x259 + x261 + x269 + x272 + x273 + x274 + x288 + x299 + x301 + x304 ++ x309 + x311 + x312 + x313 + x314 + x315 + x316 + x319 + x324 + x327 ++ x361 + x362 + x363 + x364 + x365 + x448 + x468 + x470 + x472 + x478 ++ x483 + x493 <= 1 + +x15 + x44 + x45 + x46 + x47 + x75 + x80 + x96 + x100 + x106 ++ x132 + x133 + x134 + x135 + x136 + x139 + x143 + x147 + x161 + x164 ++ x166 + x181 + x187 + x189 + x191 + x194 + x196 + x197 + x204 + x214 ++ x232 + x233 + x243 + x246 + x247 + x249 + x250 + x251 + x252 + x254 ++ x257 + x258 + x259 + x261 + x269 + x271 + x273 + x274 + x275 + x278 ++ x279 + x288 + x299 + x301 + x304 + x306 + x307 + x311 + x312 + x314 ++ x316 + x317 + x319 + x321 + x327 + x348 + x361 + x362 + x363 + x364 ++ x365 + x366 + x393 + x422 + x446 + x448 + x468 + x470 + x481 + x483 ++ x493 <= 1 + +x44 + x46 + x47 + x80 + x92 + x96 + x106 + x113 + x122 + x132 ++ x133 + x135 + x136 + x138 + x139 + x143 + x144 + x146 + x161 + x166 ++ x186 + x187 + x189 + x190 + x191 + x194 + x204 + x231 + x233 + x247 ++ x248 + x249 + x250 + x252 + x271 + x273 + x274 + x288 + x302 + x307 ++ x312 + x314 + x317 + x318 + x321 + x362 + x363 + x365 + x422 + x424 ++ x448 + x470 + x481 <= 1 + +x16 + x18 + x109 + x111 + x112 + x113 + x131 + x132 + x137 + x139 ++ x140 + x143 + x144 + x146 + x243 + x244 + x246 + x248 + x260 + x262 ++ x277 + x296 + x302 + x317 + x320 + x322 + x324 + x403 + x406 + x422 ++ x426 + x480 <= 1 + +x13 + x16 + x17 + x18 + x25 + x37 + x40 + x53 + x72 + x73 ++ x74 + x75 + x76 + x98 + x99 + x100 + x106 + x109 + x111 + x112 ++ x113 + x131 + x132 + x134 + x136 + x137 + x138 + x139 + x140 + x141 ++ x142 + x143 + x144 + x145 + x177 + x178 + x185 + x216 + x217 + x218 ++ x219 + x233 + x243 + x244 + x245 + x246 + x247 + x248 + x255 + x256 ++ x257 + x260 + x262 + x265 + x267 + x275 + x276 + x277 + x279 + x304 ++ x306 + x310 + x318 + x322 + x324 + x327 + x328 + x356 + x361 + x362 ++ x365 + x366 + x394 + x403 + x404 + x405 + x406 + x408 + x422 + x423 ++ x425 + x426 + x457 + x480 + x481 + x484 + x496 <= 1 + +x13 + x14 + x16 + x17 + x18 + x25 + x26 + x29 + x37 + x39 ++ x40 + x53 + x55 + x72 + x73 + x74 + x75 + x76 + x97 + x100 ++ x108 + x112 + x113 + x131 + x132 + x134 + x136 + x137 + x138 + x139 ++ x140 + x141 + x142 + x144 + x145 + x171 + x185 + x201 + x216 + x218 ++ x243 + x244 + x247 + x248 + x276 + x279 + x280 + x306 + x328 + x335 ++ x355 + x361 + x362 + x364 + x366 + x403 + x407 + x408 + x412 + x422 ++ x423 + x425 + x478 + x480 + x481 + x484 <= 1 + +x13 + x14 + x26 + x37 + x38 + x39 + x40 + x42 + x53 + x55 ++ x72 + x73 + x74 + x75 + x76 + x83 + x98 + x105 + x108 + x112 ++ x113 + x130 + x131 + x132 + x135 + x136 + x137 + x138 + x140 + x141 ++ x144 + x145 + x169 + x171 + x185 + x201 + x202 + x203 + x205 + x216 ++ x219 + x232 + x243 + x244 + x245 + x246 + x247 + x248 + x276 + x279 ++ x303 + x305 + x335 + x354 + x355 + x356 + x361 + x362 + x363 + x364 ++ x366 + x387 + x403 + x407 + x408 + x422 + x423 + x424 + x425 + x427 ++ x459 + x460 + x475 + x478 + x480 + x481 + x484 + x485 + x487 <= 1 + +x6 + x14 + x28 + x29 + x39 + x72 + x73 + x74 + x75 + x76 ++ x97 + x98 + x108 + x130 + x131 + x132 + x134 + x136 + x137 + x138 ++ x139 + x140 + x141 + x145 + x201 + x202 + x208 + x224 + x239 + x242 ++ x243 + x244 + x245 + x247 + x248 + x258 + x275 + x276 + x277 + x279 ++ x280 + x302 + x303 + x305 + x308 + x325 + x358 + x361 + x364 + x365 ++ x366 + x371 + x385 + x407 + x411 + x422 + x423 + x424 + x425 + x426 ++ x427 + x428 + x431 + x439 + x440 + x441 + x442 + x443 + x458 + x462 ++ x485 <= 1 + +x28 + x29 + x37 + x39 + x71 + x72 + x73 + x74 + x75 + x76 ++ x94 + x97 + x98 + x131 + x132 + x138 + x140 + x141 + x145 + x201 ++ x202 + x224 + x239 + x242 + x243 + x244 + x245 + x275 + x276 + x279 ++ x280 + x302 + x305 + x308 + x325 + x351 + x358 + x364 + x371 + x385 ++ x422 + x428 + x431 + x432 + x439 + x440 + x441 + x443 + x444 + x458 ++ x461 + x462 + x463 + x473 + x485 <= 1 + +x48 + x65 + x66 + x68 + x69 + x71 + x80 + x130 + x132 + x135 ++ x139 + x149 + x155 + x162 + x173 + x178 + x181 + x191 + x197 + x198 ++ x225 + x243 + x244 + x247 + x257 + x258 + x259 + x261 + x263 + x265 ++ x270 + x271 + x272 + x278 + x301 + x304 + x308 + x309 + x315 + x319 ++ x340 + x349 + x350 + x351 + x352 + x361 + x363 + x365 + x438 + x446 ++ x448 + x449 + x483 + x493 <= 1 + +x15 + x44 + x46 + x48 + x49 + x66 + x68 + x69 + x75 + x100 ++ x111 + x128 + x135 + x139 + x143 + x149 + x150 + x154 + x161 + x162 ++ x163 + x165 + x166 + x173 + x178 + x187 + x191 + x194 + x197 + x198 ++ x204 + x213 + x234 + x243 + x244 + x245 + x247 + x257 + x259 + x261 ++ x265 + x269 + x271 + x272 + x273 + x278 + x285 + x288 + x299 + x301 ++ x304 + x308 + x309 + x312 + x314 + x315 + x316 + x319 + x327 + x340 ++ x349 + x350 + x351 + x352 + x361 + x363 + x365 + x446 + x448 + x449 ++ x468 + x470 + x472 + x493 <= 1 + +x15 + x44 + x45 + x46 + x47 + x49 + x68 + x70 + x80 + x100 ++ x135 + x136 + x139 + x143 + x176 + x178 + x181 + x186 + x187 + x189 ++ x191 + x193 + x194 + x196 + x197 + x204 + x214 + x233 + x234 + x243 ++ x244 + x246 + x247 + x248 + x252 + x257 + x258 + x261 + x269 + x271 ++ x272 + x273 + x275 + x278 + x279 + x285 + x299 + x301 + x304 + x307 ++ x309 + x311 + x312 + x315 + x316 + x317 + x324 + x327 + x328 + x361 ++ x363 + x364 + x365 + x366 + x382 + x420 + x421 + x445 + x446 + x468 ++ x470 + x497 <= 1 + +x40 + x44 + x45 + x49 + x52 + x62 + x74 + x89 + x103 + x126 ++ x135 + x136 + x137 + x139 + x143 + x176 + x178 + x180 + x181 + x186 ++ x191 + x196 + x204 + x234 + x236 + x243 + x244 + x246 + x247 + x248 ++ x257 + x267 + x269 + x271 + x273 + x274 + x275 + x278 + x299 + x301 ++ x304 + x305 + x309 + x310 + x311 + x316 + x324 + x326 + x328 + x337 ++ x365 + x420 + x421 + x426 <= 1 + +x13 + x44 + x45 + x49 + x52 + x62 + x74 + x75 + x98 + x99 ++ x100 + x134 + x136 + x137 + x138 + x139 + x140 + x141 + x144 + x176 ++ x178 + x181 + x186 + x216 + x221 + x243 + x244 + x246 + x247 + x248 ++ x260 + x262 + x267 + x269 + x273 + x274 + x275 + x299 + x301 + x304 ++ x310 + x311 + x316 + x326 + x328 + x337 + x340 + x392 + x420 + x426 ++ x436 + x450 <= 1 + +x18 + x25 + x45 + x72 + x73 + x74 + x75 + x76 + x92 + x98 ++ x99 + x100 + x111 + x113 + x118 + x120 + x131 + x132 + x134 + x136 ++ x137 + x138 + x139 + x140 + x141 + x144 + x177 + x178 + x181 + x186 ++ x199 + x200 + x201 + x202 + x204 + x216 + x221 + x243 + x244 + x245 ++ x246 + x247 + x248 + x257 + x260 + x262 + x267 + x275 + x276 + x277 ++ x278 + x279 + x299 + x300 + x301 + x303 + x304 + x307 + x310 + x316 ++ x318 + x324 + x326 + x328 + x337 + x340 + x341 + x354 + x357 + x362 ++ x365 + x366 + x388 + x399 + x403 + x406 + x426 + x433 + x434 + x436 ++ x447 + x450 + x477 + x481 + x484 + x485 + x496 <= 1 + +x10 + x11 + x35 + x39 + x71 + x72 + x74 + x76 + x98 + x99 ++ x100 + x102 + x103 + x105 + x107 + x120 + x136 + x137 + x138 + x139 ++ x140 + x141 + x181 + x199 + x200 + x201 + x202 + x221 + x243 + x244 ++ x245 + x246 + x247 + x248 + x257 + x262 + x275 + x276 + x279 + x299 ++ x300 + x303 + x304 + x305 + x307 + x308 + x309 + x310 + x324 + x325 ++ x327 + x328 + x340 + x341 + x357 + x362 + x363 + x364 + x366 + x376 ++ x388 + x398 + x400 + x403 + x406 + x407 + x423 + x424 + x425 + x426 ++ x429 + x433 + x434 + x435 + x436 + x450 + x473 + x479 + x481 + x485 + <= 1 + +x13 + x14 + x37 + x38 + x39 + x41 + x42 + x55 + x72 + x73 ++ x74 + x76 + x98 + x105 + x108 + x112 + x113 + x130 + x131 + x132 ++ x136 + x137 + x138 + x140 + x141 + x144 + x145 + x179 + x200 + x201 ++ x202 + x203 + x212 + x219 + x238 + x239 + x240 + x241 + x243 + x244 ++ x245 + x246 + x247 + x248 + x258 + x262 + x275 + x276 + x277 + x278 ++ x279 + x280 + x299 + x303 + x305 + x308 + x309 + x317 + x325 + x327 ++ x340 + x354 + x355 + x356 + x358 + x362 + x363 + x364 + x365 + x366 ++ x374 + x398 + x403 + x407 + x422 + x423 + x424 + x425 + x426 + x427 ++ x435 + x437 + x441 + x458 + x459 + x460 + x475 + x484 + x485 <= 1 + +x14 + x37 + x38 + x39 + x71 + x72 + x73 + x74 + x75 + x76 ++ x92 + x94 + x96 + x97 + x98 + x102 + x136 + x137 + x138 + x139 ++ x140 + x141 + x144 + x145 + x178 + x200 + x201 + x202 + x203 + x212 ++ x237 + x238 + x239 + x240 + x242 + x243 + x244 + x245 + x246 + x247 ++ x248 + x258 + x275 + x276 + x277 + x279 + x280 + x287 + x290 + x300 ++ x303 + x305 + x308 + x309 + x325 + x345 + x354 + x355 + x356 + x358 ++ x361 + x362 + x364 + x365 + x366 + x374 + x376 + x384 + x385 + x387 ++ x403 + x407 + x423 + x424 + x425 + x426 + x427 + x428 + x429 + x433 ++ x439 + x440 + x441 + x442 + x443 + x458 + x459 + x460 + x461 + x462 ++ x473 + x475 <= 1 + +x8 + x38 + x39 + x71 + x72 + x73 + x74 + x75 + x76 + x94 ++ x96 + x97 + x98 + x102 + x137 + x138 + x139 + x140 + x141 + x182 ++ x191 + x199 + x201 + x202 + x203 + x238 + x239 + x242 + x243 + x245 ++ x246 + x247 + x248 + x275 + x276 + x279 + x287 + x300 + x303 + x305 ++ x308 + x309 + x310 + x325 + x351 + x358 + x362 + x364 + x366 + x385 ++ x387 + x404 + x424 + x427 + x429 + x431 + x439 + x442 + x443 + x444 ++ x458 + x460 + x461 + x462 + x463 + x475 + x490 <= 1 + +x15 + x48 + x53 + x65 + x66 + x68 + x69 + x70 + x71 + x109 ++ x130 + x132 + x135 + x148 + x149 + x165 + x197 + x198 + x204 + x223 ++ x225 + x247 + x253 + x257 + x258 + x259 + x261 + x263 + x264 + x265 ++ x267 + x270 + x272 + x281 + x285 + x301 + x304 + x308 + x309 + x361 ++ x363 + x365 + x368 + x438 + x445 + x446 + x449 + x470 + x492 + x493 ++ x494 + x497 <= 1 + +x13 + x15 + x44 + x47 + x48 + x66 + x68 + x69 + x70 + x71 ++ x75 + x109 + x111 + x129 + x132 + x148 + x150 + x165 + x180 + x193 ++ x194 + x197 + x198 + x204 + x211 + x213 + x223 + x225 + x234 + x241 ++ x244 + x246 + x247 + x248 + x257 + x258 + x259 + x261 + x265 + x267 ++ x271 + x276 + x278 + x279 + x285 + x304 + x309 + x314 + x316 + x319 ++ x327 + x349 + x350 + x352 + x361 + x363 + x365 + x368 + x445 + x446 ++ x447 + x448 + x449 + x466 + x470 + x492 + x493 + x497 <= 1 + +x15 + x44 + x47 + x68 + x70 + x71 + x75 + x76 + x129 + x136 ++ x143 + x148 + x150 + x180 + x186 + x191 + x193 + x194 + x196 + x197 ++ x198 + x204 + x211 + x214 + x223 + x225 + x246 + x257 + x258 + x259 ++ x263 + x264 + x269 + x271 + x275 + x276 + x278 + x279 + x285 + x301 ++ x304 + x307 + x309 + x327 + x350 + x353 + x363 + x382 + x396 + x445 ++ x446 + x447 + x449 + x470 + x492 + x493 + x494 + x497 <= 1 + +x31 + x33 + x40 + x45 + x49 + x67 + x70 + x89 + x103 + x124 ++ x126 + x127 + x136 + x137 + x138 + x140 + x176 + x177 + x178 + x180 ++ x194 + x200 + x204 + x223 + x236 + x243 + x244 + x245 + x246 + x248 ++ x262 + x275 + x278 + x289 + x299 + x300 + x301 + x305 + x307 + x308 ++ x309 + x310 + x311 + x328 + x337 + x339 + x359 + x365 + x366 + x399 ++ x402 + x421 + x425 + x445 + x447 + x474 + x479 + x495 + x497 <= 1 + +x31 + x32 + x33 + x34 + x35 + x38 + x40 + x45 + x49 + x72 ++ x73 + x76 + x87 + x88 + x89 + x98 + x99 + x103 + x104 + x126 ++ x136 + x137 + x138 + x139 + x140 + x141 + x176 + x177 + x178 + x179 ++ x180 + x195 + x199 + x200 + x202 + x204 + x221 + x226 + x243 + x244 ++ x245 + x246 + x248 + x262 + x268 + x275 + x276 + x278 + x280 + x289 ++ x290 + x300 + x305 + x307 + x308 + x309 + x310 + x326 + x337 + x339 ++ x341 + x354 + x357 + x359 + x363 + x366 + x371 + x388 + x399 + x425 ++ x426 + x445 + x450 + x474 + x476 + x477 + x479 + x495 + x496 + x502 + <= 1 + +x25 + x31 + x32 + x34 + x35 + x38 + x45 + x71 + x73 + x74 ++ x75 + x76 + x92 + x98 + x99 + x102 + x103 + x118 + x121 + x131 ++ x133 + x134 + x136 + x137 + x138 + x139 + x140 + x141 + x146 + x176 ++ x178 + x179 + x180 + x198 + x202 + x204 + x221 + x243 + x244 + x245 ++ x246 + x247 + x248 + x262 + x275 + x276 + x277 + x278 + x279 + x280 ++ x289 + x299 + x300 + x301 + x303 + x305 + x306 + x307 + x308 + x309 ++ x310 + x313 + x324 + x326 + x328 + x337 + x339 + x340 + x341 + x354 ++ x357 + x362 + x363 + x366 + x371 + x386 + x387 + x388 + x397 + x399 ++ x400 + x401 + x423 + x425 + x426 + x436 + x447 + x450 + x476 + x477 ++ x479 + x495 + x496 <= 1 + +x11 + x34 + x35 + x38 + x42 + x71 + x72 + x74 + x76 + x89 ++ x92 + x93 + x94 + x102 + x103 + x104 + x105 + x107 + x118 + x119 ++ x120 + x131 + x136 + x137 + x138 + x139 + x140 + x141 + x178 + x179 ++ x199 + x200 + x201 + x202 + x203 + x204 + x221 + x237 + x238 + x243 ++ x244 + x245 + x246 + x247 + x248 + x258 + x262 + x275 + x276 + x280 ++ x289 + x292 + x299 + x300 + x303 + x305 + x306 + x307 + x308 + x309 ++ x310 + x313 + x327 + x328 + x340 + x341 + x357 + x363 + x366 + x376 ++ x384 + x386 + x387 + x388 + x397 + x398 + x399 + x400 + x401 + x402 ++ x403 + x423 + x424 + x425 + x426 + x434 + x435 + x436 + x437 + x447 ++ x450 + x475 + x476 + x479 + x495 <= 1 + +x7 + x10 + x11 + x37 + x38 + x39 + x42 + x71 + x72 + x73 ++ x74 + x75 + x76 + x91 + x92 + x93 + x94 + x97 + x98 + x102 ++ x105 + x107 + x119 + x131 + x133 + x136 + x137 + x138 + x139 + x140 ++ x141 + x144 + x145 + x178 + x179 + x199 + x200 + x201 + x202 + x203 ++ x212 + x221 + x223 + x237 + x238 + x239 + x240 + x241 + x242 + x243 ++ x244 + x245 + x246 + x247 + x248 + x258 + x262 + x275 + x276 + x277 ++ x278 + x280 + x289 + x299 + x300 + x303 + x305 + x308 + x309 + x310 ++ x325 + x327 + x328 + x329 + x340 + x345 + x356 + x358 + x362 + x363 ++ x364 + x365 + x366 + x374 + x376 + x384 + x387 + x388 + x398 + x403 ++ x407 + x423 + x424 + x425 + x426 + x429 + x433 + x434 + x435 + x436 ++ x437 + x447 + x459 + x461 + x473 + x475 + x479 <= 1 + +x7 + x8 + x9 + x10 + x38 + x72 + x73 + x76 + x86 + x94 ++ x98 + x102 + x105 + x107 + x114 + x117 + x131 + x133 + x136 + x137 ++ x138 + x140 + x141 + x145 + x146 + x184 + x201 + x202 + x203 + x223 ++ x237 + x238 + x239 + x240 + x241 + x243 + x245 + x246 + x247 + x248 ++ x258 + x262 + x275 + x276 + x287 + x290 + x305 + x307 + x308 + x309 ++ x310 + x325 + x327 + x328 + x329 + x330 + x364 + x366 + x375 + x376 ++ x383 + x387 + x388 + x407 + x423 + x424 + x426 + x434 + x435 + x459 ++ x475 + x476 <= 1 + +x8 + x10 + x38 + x73 + x76 + x94 + x98 + x100 + x105 + x116 ++ x117 + x136 + x137 + x138 + x140 + x141 + x146 + x182 + x199 + x201 ++ x202 + x203 + x238 + x239 + x241 + x243 + x245 + x246 + x248 + x275 ++ x276 + x287 + x303 + x305 + x308 + x310 + x328 + x364 + x366 + x383 ++ x385 + x387 + x388 + x399 + x404 + x407 + x424 + x427 + x429 + x443 ++ x444 + x463 <= 1 + +x65 + x68 + x69 + x71 + x109 + x129 + x132 + x135 + x180 + x194 ++ x198 + x204 + x223 + x225 + x243 + x244 + x246 + x247 + x258 + x259 ++ x261 + x264 + x265 + x267 + x278 + x281 + x285 + x304 + x308 + x361 ++ x365 + x438 + x449 + x467 + x470 + x492 + x493 + x494 + x497 <= 1 + +x48 + x65 + x66 + x68 + x69 + x70 + x71 + x79 + x128 + x129 ++ x135 + x136 + x137 + x150 + x180 + x193 + x194 + x196 + x198 + x204 ++ x211 + x212 + x213 + x215 + x222 + x223 + x224 + x225 + x243 + x244 ++ x247 + x248 + x257 + x259 + x263 + x264 + x267 + x268 + x278 + x279 ++ x281 + x285 + x310 + x338 + x352 + x363 + x365 + x438 + x445 + x446 ++ x449 + x464 + x466 + x467 + x470 + x492 + x494 + x497 <= 1 + +x15 + x63 + x70 + x71 + x75 + x76 + x124 + x128 + x129 + x136 ++ x137 + x148 + x151 + x160 + x176 + x179 + x180 + x193 + x194 + x196 ++ x197 + x198 + x211 + x214 + x215 + x222 + x223 + x225 + x243 + x257 ++ x259 + x263 + x264 + x271 + x278 + x301 + x307 + x309 + x353 + x362 ++ x363 + x365 + x380 + x382 + x393 + x396 + x445 + x447 + x464 + x465 ++ x466 + x467 + x492 + x494 + x497 <= 1 + +x33 + x49 + x63 + x64 + x67 + x70 + x71 + x76 + x84 + x88 ++ x89 + x124 + x127 + x133 + x136 + x138 + x140 + x141 + x157 + x158 ++ x160 + x176 + x177 + x179 + x180 + x193 + x194 + x198 + x199 + x200 ++ x204 + x215 + x222 + x223 + x224 + x226 + x227 + x236 + x243 + x246 ++ x263 + x268 + x278 + x280 + x301 + x305 + x307 + x308 + x309 + x310 ++ x326 + x337 + x339 + x341 + x342 + x362 + x363 + x379 + x388 + x392 ++ x396 + x402 + x445 + x447 + x479 + x495 + x496 + x497 + x502 <= 1 + +x33 + x35 + x38 + x40 + x63 + x64 + x67 + x71 + x72 + x76 ++ x84 + x87 + x88 + x89 + x103 + x121 + x127 + x131 + x133 + x136 ++ x137 + x138 + x139 + x140 + x141 + x142 + x159 + x176 + x177 + x179 ++ x180 + x193 + x195 + x198 + x199 + x200 + x202 + x204 + x222 + x226 ++ x227 + x237 + x240 + x243 + x244 + x245 + x246 + x262 + x268 + x275 ++ x277 + x278 + x280 + x289 + x290 + x305 + x306 + x307 + x308 + x309 ++ x310 + x326 + x337 + x339 + x341 + x342 + x362 + x363 + x366 + x367 ++ x369 + x370 + x371 + x372 + x380 + x383 + x388 + x393 + x401 + x402 ++ x426 + x474 + x476 + x477 + x483 + x495 + x496 + x502 <= 1 + +x31 + x32 + x33 + x35 + x40 + x71 + x72 + x76 + x87 + x88 ++ x89 + x93 + x99 + x103 + x104 + x121 + x126 + x131 + x133 + x134 ++ x136 + x137 + x138 + x139 + x140 + x141 + x142 + x177 + x178 + x179 ++ x202 + x204 + x221 + x243 + x244 + x245 + x246 + x248 + x262 + x275 ++ x277 + x278 + x279 + x280 + x289 + x290 + x292 + x300 + x305 + x306 ++ x307 + x308 + x309 + x310 + x313 + x324 + x326 + x328 + x329 + x339 ++ x341 + x342 + x357 + x359 + x362 + x366 + x369 + x371 + x372 + x386 ++ x388 + x397 + x400 + x402 + x426 + x445 + x450 + x474 + x476 + x477 ++ x479 + x495 + x496 <= 1 + +x9 + x11 + x12 + x31 + x32 + x33 + x34 + x38 + x43 + x71 ++ x72 + x73 + x74 + x76 + x85 + x88 + x89 + x91 + x92 + x93 ++ x104 + x131 + x133 + x136 + x137 + x138 + x139 + x140 + x141 + x179 ++ x195 + x200 + x201 + x202 + x227 + x237 + x238 + x240 + x241 + x243 ++ x244 + x245 + x246 + x247 + x248 + x262 + x275 + x277 + x278 + x280 ++ x286 + x287 + x289 + x292 + x299 + x300 + x303 + x305 + x306 + x307 ++ x308 + x309 + x310 + x313 + x326 + x328 + x329 + x359 + x366 + x384 ++ x386 + x387 + x388 + x397 + x398 + x400 + x401 + x402 + x407 + x423 ++ x450 + x474 + x475 + x476 + x477 + x479 + x482 + x495 + x496 <= 1 + +x7 + x8 + x9 + x10 + x11 + x12 + x32 + x34 + x71 + x72 ++ x73 + x74 + x76 + x90 + x91 + x104 + x107 + x119 + x131 + x133 ++ x136 + x137 + x138 + x139 + x140 + x141 + x144 + x178 + x179 + x184 ++ x195 + x199 + x200 + x201 + x202 + x203 + x227 + x237 + x240 + x241 ++ x243 + x244 + x245 + x246 + x247 + x248 + x260 + x275 + x276 + x277 ++ x278 + x280 + x287 + x289 + x290 + x292 + x299 + x300 + x303 + x305 ++ x306 + x307 + x308 + x309 + x310 + x325 + x328 + x329 + x340 + x364 ++ x365 + x366 + x373 + x374 + x375 + x384 + x387 + x397 + x398 + x400 ++ x403 + x407 + x423 + x426 + x433 + x434 + x437 + x450 + x474 + x475 ++ x476 + x477 + x479 + x482 + x495 <= 1 + +x7 + x8 + x9 + x10 + x11 + x12 + x38 + x39 + x66 + x73 ++ x76 + x90 + x105 + x107 + x114 + x115 + x116 + x126 + x130 + x136 ++ x137 + x138 + x139 + x140 + x141 + x145 + x146 + x166 + x182 + x183 ++ x184 + x199 + x200 + x201 + x202 + x203 + x237 + x238 + x239 + x240 ++ x243 + x244 + x245 + x246 + x247 + x248 + x258 + x260 + x275 + x276 ++ x277 + x278 + x287 + x290 + x292 + x303 + x305 + x306 + x307 + x308 ++ x309 + x310 + x325 + x328 + x329 + x361 + x364 + x373 + x374 + x375 ++ x376 + x377 + x378 + x383 + x384 + x385 + x387 + x403 + x423 + x424 ++ x426 + x463 + x475 + x476 <= 1 + +x8 + x9 + x10 + x11 + x12 + x39 + x94 + x107 + x114 + x115 ++ x116 + x130 + x136 + x138 + x140 + x141 + x146 + x182 + x183 + x184 ++ x199 + x201 + x202 + x203 + x237 + x239 + x240 + x241 + x243 + x245 ++ x246 + x247 + x248 + x275 + x287 + x292 + x305 + x307 + x310 + x328 ++ x329 + x383 + x385 + x387 + x403 + x426 + x463 + x475 + x476 <= 1 + +x65 + x69 + x71 + x98 + x109 + x136 + x175 + x204 + x223 + x224 ++ x225 + x237 + x243 + x246 + x247 + x258 + x263 + x264 + x265 + x267 ++ x268 + x281 + x338 + x365 + x404 + x492 + x494 + x497 <= 1 + +x48 + x65 + x71 + x93 + x136 + x151 + x160 + x176 + x193 + x194 ++ x195 + x196 + x198 + x204 + x213 + x222 + x223 + x224 + x237 + x258 ++ x263 + x264 + x266 + x267 + x268 + x278 + x307 + x310 + x338 + x365 ++ x391 + x396 + x404 + x406 + x433 + x438 + x446 + x449 + x465 + x479 ++ x492 + x494 + x497 + x501 <= 1 + +x48 + x70 + x71 + x76 + x86 + x93 + x124 + x125 + x128 + x136 ++ x137 + x141 + x151 + x158 + x160 + x176 + x179 + x180 + x193 + x194 ++ x195 + x196 + x197 + x198 + x204 + x215 + x222 + x224 + x225 + x226 ++ x236 + x243 + x257 + x258 + x261 + x263 + x264 + x268 + x278 + x280 ++ x301 + x305 + x307 + x310 + x338 + x353 + x362 + x363 + x369 + x379 ++ x380 + x382 + x391 + x393 + x395 + x396 + x404 + x426 + x447 + x449 ++ x464 + x465 + x492 + x494 + x497 + x499 <= 1 + +x49 + x67 + x70 + x71 + x76 + x84 + x86 + x87 + x89 + x93 ++ x95 + x124 + x125 + x127 + x131 + x133 + x136 + x137 + x140 + x141 ++ x157 + x158 + x159 + x176 + x177 + x179 + x180 + x193 + x195 + x196 ++ x197 + x198 + x199 + x200 + x204 + x206 + x222 + x224 + x226 + x227 ++ x236 + x243 + x244 + x258 + x261 + x262 + x263 + x268 + x277 + x278 ++ x280 + x289 + x298 + x305 + x307 + x308 + x309 + x310 + x324 + x341 ++ x342 + x363 + x367 + x369 + x379 + x380 + x381 + x388 + x392 + x393 ++ x395 + x477 + x483 + x492 + x495 + x496 + x497 + x498 + x502 <= 1 + +x49 + x63 + x64 + x67 + x71 + x76 + x79 + x84 + x87 + x88 ++ x90 + x91 + x93 + x95 + x125 + x127 + x131 + x133 + x136 + x137 ++ x138 + x140 + x141 + x157 + x158 + x159 + x176 + x179 + x180 + x193 ++ x198 + x199 + x200 + x222 + x226 + x237 + x242 + x243 + x244 + x246 ++ x268 + x278 + x305 + x306 + x307 + x308 + x309 + x310 + x328 + x337 ++ x338 + x339 + x342 + x347 + x367 + x368 + x369 + x370 + x371 + x388 ++ x392 + x395 + x401 + x476 + x477 + x492 + x495 + x496 + x501 <= 1 + +x32 + x34 + x38 + x64 + x67 + x71 + x76 + x84 + x85 + x87 ++ x88 + x89 + x90 + x91 + x93 + x95 + x99 + x104 + x133 + x135 ++ x136 + x137 + x138 + x139 + x140 + x141 + x142 + x176 + x177 + x179 ++ x180 + x193 + x195 + x199 + x200 + x202 + x204 + x221 + x226 + x227 ++ x237 + x240 + x241 + x242 + x244 + x246 + x262 + x275 + x277 + x278 ++ x280 + x289 + x290 + x300 + x305 + x306 + x307 + x308 + x309 + x310 ++ x326 + x328 + x329 + x338 + x339 + x341 + x342 + x359 + x362 + x366 ++ x367 + x368 + x369 + x372 + x383 + x388 + x397 + x401 + x426 + x450 ++ x474 + x476 + x477 + x479 + x483 + x495 + x496 <= 1 + +x32 + x34 + x38 + x71 + x75 + x76 + x84 + x85 + x87 + x88 ++ x90 + x91 + x92 + x93 + x104 + x131 + x133 + x135 + x136 + x137 ++ x138 + x140 + x141 + x176 + x179 + x195 + x199 + x200 + x202 + x203 ++ x221 + x226 + x227 + x237 + x240 + x241 + x243 + x244 + x245 + x246 ++ x248 + x275 + x277 + x278 + x280 + x287 + x290 + x291 + x292 + x303 ++ x305 + x306 + x307 + x308 + x309 + x310 + x326 + x328 + x329 + x338 ++ x339 + x341 + x342 + x359 + x362 + x364 + x366 + x368 + x369 + x370 ++ x372 + x377 + x383 + x384 + x386 + x437 + x474 + x476 + x477 + x479 ++ x495 + x496 <= 1 + +x7 + x9 + x10 + x12 + x18 + x38 + x71 + x73 + x76 + x85 ++ x90 + x91 + x92 + x107 + x130 + x131 + x133 + x135 + x136 + x137 ++ x138 + x139 + x140 + x146 + x195 + x199 + x201 + x202 + x203 + x227 ++ x240 + x241 + x243 + x245 + x246 + x247 + x248 + x275 + x277 + x287 ++ x290 + x291 + x292 + x300 + x303 + x305 + x306 + x307 + x308 + x309 ++ x310 + x329 + x335 + x364 + x366 + x370 + x373 + x374 + x377 + x378 ++ x383 + x384 + x386 + x387 + x424 + x437 + x474 + x475 + x477 <= 1 + +x7 + x8 + x9 + x12 + x39 + x66 + x71 + x73 + x85 + x90 ++ x91 + x94 + x115 + x130 + x136 + x137 + x138 + x140 + x141 + x145 ++ x146 + x182 + x183 + x184 + x195 + x199 + x201 + x203 + x238 + x239 ++ x240 + x241 + x243 + x244 + x245 + x246 + x247 + x248 + x260 + x275 ++ x277 + x280 + x287 + x290 + x291 + x292 + x298 + x305 + x306 + x307 ++ x308 + x309 + x310 + x328 + x329 + x361 + x364 + x366 + x373 + x375 ++ x377 + x378 + x383 + x384 + x385 + x386 + x387 + x424 + x426 + x475 ++ x476 <= 1 + +x8 + x11 + x12 + x38 + x39 + x66 + x73 + x90 + x94 + x130 ++ x136 + x137 + x138 + x140 + x141 + x145 + x146 + x172 + x182 + x183 ++ x184 + x195 + x199 + x200 + x201 + x202 + x203 + x238 + x239 + x240 ++ x241 + x243 + x244 + x245 + x246 + x248 + x260 + x275 + x287 + x290 ++ x291 + x292 + x298 + x305 + x307 + x308 + x309 + x310 + x329 + x364 ++ x365 + x366 + x375 + x376 + x383 + x384 + x385 + x386 + x387 + x424 ++ x427 + x453 + x476 <= 1 + +x69 + x71 + x86 + x136 + x146 + x222 + x224 + x246 + x258 + x263 ++ x265 + x267 + x268 + x282 + x391 + x395 + x396 + x404 + x492 + x494 ++ x501 <= 1 + +x48 + x71 + x76 + x86 + x136 + x193 + x194 + x196 + x197 + x222 ++ x223 + x224 + x246 + x258 + x261 + x263 + x264 + x266 + x267 + x278 ++ x282 + x310 + x362 + x365 + x381 + x384 + x391 + x395 + x396 + x438 ++ x479 + x492 + x494 + x498 + x499 + x500 + x501 <= 1 + +x48 + x70 + x71 + x76 + x86 + x125 + x136 + x141 + x151 + x197 ++ x222 + x225 + x226 + x227 + x258 + x261 + x264 + x266 + x268 + x278 ++ x280 + x310 + x349 + x353 + x362 + x379 + x381 + x384 + x391 + x392 ++ x393 + x395 + x396 + x449 + x479 + x494 + x496 + x497 + x498 + x499 ++ x500 <= 1 + +x65 + x67 + x71 + x76 + x84 + x85 + x86 + x93 + x125 + x133 ++ x136 + x141 + x157 + x176 + x180 + x193 + x195 + x196 + x200 + x204 ++ x222 + x224 + x226 + x227 + x258 + x261 + x268 + x278 + x280 + x289 ++ x305 + x306 + x342 + x381 + x391 + x392 + x393 + x474 + x477 + x479 ++ x495 + x496 + x498 + x499 + x500 <= 1 + +x67 + x71 + x76 + x79 + x84 + x85 + x86 + x87 + x93 + x95 ++ x133 + x136 + x137 + x138 + x141 + x159 + x193 + x195 + x196 + x199 ++ x200 + x222 + x226 + x227 + x265 + x277 + x278 + x280 + x305 + x342 ++ x362 + x367 + x368 + x370 + x391 + x392 + x395 + x474 + x476 + x477 ++ x492 + x500 <= 1 + +x35 + x75 + x79 + x81 + x84 + x85 + x86 + x87 + x88 + x90 ++ x91 + x92 + x93 + x133 + x136 + x137 + x138 + x140 + x177 + x195 ++ x199 + x200 + x202 + x221 + x225 + x226 + x227 + x242 + x243 + x244 ++ x246 + x262 + x265 + x277 + x278 + x283 + x305 + x307 + x309 + x329 ++ x338 + x339 + x362 + x366 + x367 + x368 + x370 + x372 + x383 + x392 ++ x474 + x477 + x479 <= 1 + +x75 + x79 + x84 + x85 + x86 + x87 + x88 + x90 + x91 + x92 ++ x104 + x133 + x136 + x138 + x140 + x183 + x199 + x200 + x203 + x225 ++ x226 + x227 + x242 + x243 + x244 + x245 + x246 + x275 + x277 + x278 ++ x283 + x290 + x292 + x305 + x308 + x309 + x310 + x325 + x329 + x337 ++ x338 + x339 + x342 + x345 + x367 + x370 + x372 + x377 + x378 + x383 ++ x386 + x395 + x474 + x477 <= 1 + +x76 + x90 + x91 + x92 + x94 + x117 + x133 + x136 + x137 + x138 ++ x140 + x183 + x199 + x200 + x203 + x225 + x238 + x243 + x244 + x245 ++ x246 + x275 + x277 + x278 + x291 + x292 + x300 + x303 + x305 + x306 ++ x307 + x309 + x310 + x329 + x337 + x338 + x342 + x364 + x372 + x373 ++ x377 + x378 + x383 + x384 + x386 + x474 + x475 + x477 + x482 <= 1 + +x12 + x85 + x90 + x91 + x94 + x133 + x136 + x140 + x145 + x172 ++ x183 + x184 + x199 + x200 + x203 + x238 + x241 + x243 + x244 + x245 ++ x246 + x248 + x275 + x277 + x280 + x303 + x305 + x307 + x308 + x309 ++ x310 + x329 + x364 + x373 + x375 + x377 + x378 + x383 + x384 + x386 ++ x451 + x474 + x482 <= 1 + +x90 + x91 + x94 + x136 + x137 + x138 + x140 + x145 + x146 + x172 ++ x174 + x183 + x184 + x199 + x200 + x203 + x238 + x243 + x244 + x245 ++ x246 + x260 + x275 + x277 + x292 + x298 + x305 + x307 + x308 + x309 ++ x310 + x364 + x365 + x373 + x375 + x378 + x383 + x384 + x385 + x386 ++ x476 <= 1 + +x0 + x1 + x2 + x3 + x4 <= 1 + + <= 1 + +x7 + x8 + x9 + x10 + x11 + x12 <= 1 + +x13 + x14 + x15 + x16 + x17 + x18 <= 1 + +x19 + x20 + x21 + x22 + x23 <= 1 + +x24 + x25 + x26 + x27 + x28 + x29 <= 1 + +x31 + x32 + x33 + x34 + x35 + x36 <= 1 + +x37 + x38 + x39 + x40 + x41 + x42 <= 1 + +x44 + x45 + x46 + x47 + x48 + x49 <= 1 + +x50 + x51 + x52 + x53 + x54 + x55 <= 1 + +x56 + x57 + x58 + x59 + x60 + x61 <= 1 + +x63 + x64 <= 1 + +x65 + x66 + x67 + x68 + x69 + x70 <= 1 + +x71 + x72 + x73 + x74 + x75 + x76 <= 1 + +x77 + x78 + x79 + x80 + x81 + x82 <= 1 + +x84 + x85 + x86 + x87 + x88 + x89 <= 1 + +x90 + x91 + x92 + x93 + x94 + x95 <= 1 + +x96 + x97 + x98 + x99 + x100 + x101 <= 1 + +x102 + x103 + x104 + x105 + x106 + x107 <= 1 + +x108 + x109 + x110 + x111 + x112 + x113 <= 1 + +x114 + x115 + x116 + x117 <= 1 + +x118 + x119 + x120 + x121 <= 1 + +x122 + x123 <= 1 + +x124 + x125 + x126 + x127 + x128 + x129 <= 1 + +x130 + x131 + x132 + x133 + x134 + x135 <= 1 + +x136 + x137 + x138 + x139 + x140 + x141 <= 1 + +x142 + x143 + x144 + x145 + x146 + x147 <= 1 + +x148 + x149 + x150 + x151 <= 1 + +x152 + x153 + x154 + x155 + x156 <= 1 + +x157 + x158 + x159 + x160 <= 1 + +x161 + x162 + x163 + x164 + x165 + x166 <= 1 + +x167 + x168 + x169 + x170 + x171 + x172 <= 1 + +x176 + x177 + x178 + x179 + x180 + x181 <= 1 + +x182 + x183 + x184 + x185 + x186 <= 1 + +x187 + x188 + x189 + x190 + x191 + x192 <= 1 + +x193 + x194 + x195 + x196 + x197 + x198 <= 1 + +x199 + x200 + x201 + x202 + x203 + x204 <= 1 + +x205 + x206 + x207 + x208 + x209 + x210 <= 1 + +x211 + x212 + x213 + x214 + x215 <= 1 + +x216 + x217 + x218 + x219 + x220 + x221 <= 1 + +x222 + x223 + x224 + x225 + x226 + x227 <= 1 + +x228 + x229 + x230 + x231 + x232 + x233 <= 1 + +x234 + x235 + x236 <= 1 + +x237 + x238 + x239 + x240 + x241 + x242 <= 1 + +x243 + x244 + x245 + x246 + x247 + x248 <= 1 + +x249 + x250 + x251 + x252 + x253 + x254 <= 1 + +x255 + x256 <= 1 + +x257 + x258 + x259 + x260 + x261 + x262 <= 1 + +x263 + x264 + x265 + x266 + x267 + x268 <= 1 + +x269 + x270 + x271 + x272 + x273 + x274 <= 1 + +x275 + x276 + x277 + x278 + x279 + x280 <= 1 + +x281 + x282 + x283 + x284 + x285 + x286 <= 1 + +x287 + x288 + x289 + x290 + x291 + x292 <= 1 + +x293 + x294 + x295 + x296 + x297 + x298 <= 1 + +x299 + x300 + x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 + x310 <= 1 + +x311 + x312 + x313 + x314 + x315 + x316 <= 1 + +x317 + x318 + x319 + x320 + x321 + x322 <= 1 + +x324 + x325 + x326 + x327 + x328 + x329 <= 1 + +x331 + x332 + x333 + x334 + x335 + x336 <= 1 + +x337 + x338 + x339 + x340 + x341 + x342 <= 1 + +x343 + x344 + x345 + x346 + x347 + x348 <= 1 + +x349 + x350 + x351 + x352 + x353 <= 1 + +x354 + x355 + x356 + x357 + x358 + x359 <= 1 + +x361 + x362 + x363 + x364 + x365 + x366 <= 1 + +x367 + x368 + x369 + x370 + x371 + x372 <= 1 + +x373 + x374 + x375 + x376 + x377 + x378 <= 1 + +x379 + x380 + x381 + x382 <= 1 + +x383 + x384 + x385 + x386 + x387 + x388 <= 1 + +x389 + x390 <= 1 + +x391 + x392 + x393 + x394 + x395 + x396 <= 1 + +x397 + x398 + x399 + x400 + x401 + x402 <= 1 + +x403 + x404 + x405 + x406 + x407 + x408 <= 1 + +x409 + x410 + x411 + x412 + x413 + x414 <= 1 + +x415 + x416 + x417 + x418 + x419 <= 1 + +x420 + x421 <= 1 + +x422 + x423 + x424 + x425 + x426 + x427 <= 1 + +x428 + x429 + x430 + x431 + x432 <= 1 + +x433 + x434 + x435 + x436 + x437 + x438 <= 1 + +x439 + x440 + x441 + x442 + x443 + x444 <= 1 + +x445 + x446 + x447 + x448 + x449 + x450 <= 1 + +x452 + x453 + x454 + x455 + x456 + x457 <= 1 + +x458 + x459 + x460 + x461 + x462 + x463 <= 1 + +x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 + x488 + x489 + x490 + x491 <= 1 + +x492 + x493 + x494 + x495 + x496 + x497 <= 1 + +x498 + x499 + x500 + x501 + x502 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 x501 x502 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0019.lp b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0019.lp new file mode 100755 index 000000000..50d3c3e91 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS-regions/CATS-d_regions-goods100-bids500_0019.lp @@ -0,0 +1,1053 @@ +max + +303.838x0 + 232.057x1 + 177.694x2 + 898.372x3 + 1208.13x4 + 1095.63x5 + 1090.35x6 + 1062.74x7 + 1024.01x8 + 123.176x9 + +131.139x10 + 110.428x11 + 116.709x12 + 205.653x13 + 271.364x14 + 403.688x15 + 412.833x16 + 410.691x17 + 328.124x18 + 326.425x19 + +232.175x20 + 1881.13x21 + 2418.24x22 + 2369.89x23 + 2262.01x24 + 2195.91x25 + 2155.5x26 + 62.3669x27 + 712.285x28 + 796.286x29 + +790.533x30 + 785.298x31 + 783.488x32 + 729.291x33 + 901.43x34 + 1069.23x35 + 946.752x36 + 922.685x37 + 901.683x38 + 888.332x39 + +1038.86x40 + 1256.74x41 + 1253.15x42 + 1237.63x43 + 1228.44x44 + 1189.34x45 + 319.13x46 + 459.917x47 + 308.746x48 + 252.975x49 + +216.784x50 + 443.176x51 + 539.471x52 + 538.555x53 + 531.84x54 + 508.184x55 + 488.819x56 + 761.406x57 + 751.118x58 + 748.505x59 + +722.314x60 + 691.868x61 + 590.265x62 + 212.364x63 + 259.989x64 + 221.158x65 + 198.857x66 + 255.271x67 + 280.951x68 + 280.14x69 + +265.12x70 + 345.473x71 + 338.404x72 + 291.908x73 + 163.762x74 + 150.338x75 + 171.788x76 + 87.717x77 + 578.028x78 + 744.327x79 + +643.789x80 + 640.002x81 + 623.768x82 + 593.298x83 + 1309.23x84 + 1353.64x85 + 1349.12x86 + 1338.85x87 + 1301.22x88 + 1246.22x89 + +449.586x90 + 648.162x91 + 582.586x92 + 573.465x93 + 547.24x94 + 505.342x95 + 498.197x96 + 561.612x97 + 502.685x98 + 485.581x99 + +483.971x100 + 468.951x101 + 85.428x102 + 1010.15x103 + 1127.96x104 + 1080.2x105 + 1030.07x106 + 1020.12x107 + 992.84x108 + 677.79x109 + +1015.45x110 + 1014.32x111 + 857.442x112 + 828.609x113 + 760.299x114 + 378.022x115 + 397.217x116 + 367.535x117 + 360.337x118 + 274.111x119 + +225.545x120 + 503.794x121 + 711.858x122 + 550.517x123 + 461.616x124 + 393.761x125 + 391.616x126 + 173.543x127 + 140.48x128 + 115.734x129 + +144.509x130 + 202.579x131 + 422.191x132 + 495.44x133 + 461.381x134 + 426.845x135 + 386.866x136 + 271.376x137 + 1054.14x138 + 1199.85x139 + +1146.14x140 + 1135.05x141 + 1040.68x142 + 1003.05x143 + 318.351x144 + 351.262x145 + 338.132x146 + 332.817x147 + 263.537x148 + 247.719x149 + +1039.53x150 + 1375.9x151 + 1333.71x152 + 1308.14x153 + 1270.5x154 + 1226.28x155 + 184.941x156 + 277.02x157 + 264.977x158 + 257.035x159 + +158.508x160 + 136.564x161 + 96.0704x162 + 301.598x163 + 383.126x164 + 164.876x165 + 143.693x166 + 805.076x167 + 1056.64x168 + 955.899x169 + +954.9x170 + 940.194x171 + 930.805x172 + 549.436x173 + 801.227x174 + 773.697x175 + 695.498x176 + 595.104x177 + 447.289x178 + 479.715x179 + +471.073x180 + 445.368x181 + 405.166x182 + 395.185x183 + 9.16192x184 + 1095.53x185 + 1214.8x186 + 1202.66x187 + 1197.05x188 + 1196.01x189 + +1170.31x190 + 189.655x191 + 171.624x192 + 265.467x193 + 197.768x194 + 191.121x195 + 1307.13x196 + 1837.65x197 + 1807.76x198 + 1722.75x199 + +1660.17x200 + 1614.69x201 + 648.451x202 + 739.496x203 + 718.919x204 + 715.918x205 + 709.107x206 + 621.402x207 + 93.1289x208 + 1560.53x209 + +1716.94x210 + 1630.51x211 + 1554.96x212 + 1550.55x213 + 1478.45x214 + 711.947x215 + 1009.06x216 + 913.03x217 + 909.314x218 + 888.316x219 + +877.575x220 + 600.025x221 + 710.042x222 + 608.215x223 + 543.941x224 + 535.777x225 + 534.042x226 + 73.8682x227 + 204.092x228 + 153.976x229 + +159.288x230 + 79.3705x231 + 25.2924x232 + 39.2651x233 + 2327.86x234 + 2543.59x235 + 2506.98x236 + 2480.92x237 + 2427.97x238 + 2413.28x239 + +582.521x240 + 666.671x241 + 657.433x242 + 599.774x243 + 590.782x244 + 572.661x245 + 202.564x246 + 281.82x247 + 270.153x248 + 202.668x249 + +177.854x250 + 1156.58x251 + 1451.21x252 + 1395.42x253 + 1363.13x254 + 1353.42x255 + 1326.68x256 + 1192.72x257 + 1310.52x258 + 1194.93x259 + +1178.2x260 + 1166.12x261 + 1145.98x262 + 98.2782x263 + 124.778x264 + 141.518x265 + 130.316x266 + 107.292x267 + 41.382x268 + 451.515x269 + +632.458x270 + 587.015x271 + 561.725x272 + 541.136x273 + 530.392x274 + 1382.26x275 + 1474.15x276 + 1439.24x277 + 1391.56x278 + 1387.28x279 + +1372.98x280 + 992.028x281 + 989.922x282 + 986.138x283 + 981.109x284 + 933.373x285 + 919.375x286 + 564.429x287 + 699.139x288 + 607.666x289 + +540.205x290 + 535.892x291 + 523.756x292 + 1763.46x293 + 1876.01x294 + 1732.14x295 + 1718.84x296 + 1699.08x297 + 1675.33x298 + 335.248x299 + +450.435x300 + 440.788x301 + 415.55x302 + 402.19x303 + 392.664x304 + 723.247x305 + 1040.26x306 + 928.73x307 + 926.275x308 + 920.676x309 + +909.089x310 + 427.203x311 + 573.957x312 + 489.694x313 + 485.168x314 + 474.881x315 + 434.48x316 + 391.469x317 + 460.157x318 + 411.742x319 + +391.673x320 + 343.89x321 + 297.951x322 + 270.846x323 + 240.018x324 + 227.621x325 + 499.235x326 + 665.463x327 + 652.582x328 + 582.004x329 + +541.177x330 + 479.183x331 + 216.326x332 + 154.021x333 + 106.279x334 + 522.459x335 + 648.852x336 + 599.211x337 + 595.654x338 + 568.659x339 + +529.359x340 + 218.415x341 + 324.066x342 + 242.493x343 + 198.427x344 + 1237.63x345 + 1348.9x346 + 1226.57x347 + 1209.86x348 + 1129.34x349 + +1110.23x350 + 112.108x351 + 127.686x352 + 112.794x353 + 182.985x354 + 190.744x355 + 1076.34x356 + 1492.18x357 + 1456.12x358 + 1415.37x359 + +1385.88x360 + 1329.7x361 + 234.597x362 + 275.76x363 + 262.365x364 + 234.066x365 + 211.521x366 + 188.023x367 + 432.578x368 + 513.577x369 + +489.504x370 + 455.531x371 + 431.386x372 + 430.404x373 + 806.6x374 + 874.424x375 + 776.374x376 + 754x377 + 722.61x378 + 722.42x379 + +223.566x380 + 287.38x381 + 239.252x382 + 177.387x383 + 1676.74x384 + 2040.44x385 + 2039.42x386 + 2034.4x387 + 2024.74x388 + 1980.82x389 + +937.276x390 + 1131.62x391 + 1118.16x392 + 1085.87x393 + 1065.14x394 + 1057.13x395 + 154.893x396 + 124.123x397 + 107x398 + 130.406x399 + +119.186x400 + 92.4777x401 + 46.0491x402 + 1028.81x403 + 1280.15x404 + 1212.4x405 + 1158.57x406 + 1115.36x407 + 1107.68x408 + 198.754x409 + +279.31x410 + 253.882x411 + 186.226x412 + 1876.6x413 + 2116.94x414 + 2101.55x415 + 2067.15x416 + 2063.56x417 + 2052.42x418 + 3.28325x419 + +625.956x420 + 665.97x421 + 648.091x422 + 624.64x423 + 619.332x424 + 602.36x425 + 213.241x426 + 281.232x427 + 277.645x428 + 266.271x429 + +165.569x430 + 156.382x431 + 332.904x432 + 447.562x433 + 398.645x434 + 348.803x435 + 254.798x436 + 215.938x437 + 1700.1x438 + 1974.42x439 + +1939.66x440 + 1855.82x441 + 1816.4x442 + 1806.08x443 + 1175.29x444 + 1346.69x445 + 1232.91x446 + 1217.89x447 + 1216.19x448 + 1189.01x449 + +411.53x450 + 453.473x451 + 447.468x452 + 419.808x453 + 412.801x454 + 389.213x455 + 1179.76x456 + 1667.24x457 + 1615.84x458 + 1578x459 + +1512.76x460 + 1491.47x461 + 307.523x462 + 345.028x463 + 298.268x464 + 295.874x465 + 177.776x466 + 175.811x467 + 502.036x468 + 717.065x469 + +677.49x470 + 657.491x471 + 647.824x472 + 624.02x473 + 922.835x474 + 1172.34x475 + 1122.53x476 + 1048.43x477 + 1040.32x478 + 1017.07x479 + +432.498x480 + 486.202x481 + 484.434x482 + 455.276x483 + 376.059x484 + 333.552x485 + 112.698x486 + 75.4738x487 + 42.3585x488 + 462.879x489 + +581.692x490 + 579.598x491 + 488.014x492 + 483.636x493 + 482.998x494 + 966.325x495 + 976.021x496 + 912.341x497 + 898.249x498 + 890.309x499 + +870.955x500 + +st + +x13 + x140 + x141 + x142 + x154 + x202 + x207 + x261 + x285 + x373 ++ x409 + x410 + x411 + x412 + x413 + x415 + x418 + x440 + x444 + x447 ++ x449 + x456 + x458 <= 1 + +x25 + x123 + x138 + x140 + x141 + x142 + x154 + x202 + x204 + x206 ++ x207 + x251 + x254 + x256 + x261 + x285 + x373 + x384 + x403 + x405 ++ x409 + x410 + x411 + x413 + x415 + x418 + x438 + x445 + x446 + x447 ++ x449 + x495 + x499 <= 1 + +x23 + x24 + x138 + x139 + x140 + x142 + x156 + x158 + x159 + x161 ++ x202 + x203 + x205 + x206 + x207 + x215 + x216 + x218 + x235 + x238 ++ x251 + x254 + x256 + x274 + x289 + x349 + x368 + x384 + x386 + x389 ++ x401 + x402 + x413 + x429 + x438 + x441 + x445 + x446 + x447 + x448 ++ x449 + x474 + x495 + x499 <= 1 + +x51 + x52 + x53 + x117 + x140 + x141 + x142 + x156 + x157 + x159 ++ x160 + x202 + x203 + x205 + x206 + x213 + x215 + x218 + x219 + x235 ++ x251 + x254 + x255 + x256 + x289 + x349 + x367 + x370 + x371 + x384 ++ x386 + x389 + x399 + x401 + x402 + x403 + x412 + x413 + x441 + x444 ++ x445 + x446 + x447 + x448 + x449 + x474 + x495 + x499 <= 1 + +x52 + x141 + x142 + x160 + x203 + x205 + x215 + x218 + x219 + x235 ++ x236 + x238 + x251 + x254 + x255 + x289 + x349 + x384 + x386 + x399 ++ x400 + x402 + x403 + x413 + x415 + x417 + x444 + x445 + x446 + x447 ++ x448 + x449 + x456 + x495 + x498 + x499 <= 1 + +x52 + x73 + x215 + x220 + x235 + x251 + x269 + x273 + x293 + x338 ++ x379 + x386 + x389 + x413 + x417 + x447 + x449 + x467 <= 1 + +x11 + x21 + x28 + x32 + x40 + x42 + x43 + x45 + x90 + x126 ++ x165 + x220 + x287 + x288 + x346 + x387 + x389 + x398 + x413 + x444 ++ x448 + x462 + x464 <= 1 + +x21 + x28 + x32 + x40 + x42 + x43 + x45 + x74 + x126 + x220 ++ x257 + x260 + x287 + x290 + x291 + x385 + x387 + x389 + x396 + x398 ++ x413 + x462 + x464 + x465 + x474 + x477 <= 1 + +x21 + x26 + x28 + x31 + x32 + x33 + x40 + x43 + x45 + x74 ++ x75 + x98 + x148 + x196 + x220 + x256 + x257 + x276 + x287 + x290 ++ x291 + x345 + x385 + x387 + x396 + x397 + x404 + x414 + x451 + x462 ++ x464 + x465 + x466 + x477 <= 1 + +x21 + x26 + x28 + x31 + x33 + x40 + x43 + x56 + x70 + x74 ++ x75 + x96 + x98 + x114 + x256 + x287 + x290 + x291 + x292 + x345 ++ x385 + x387 + x404 + x442 + x462 + x463 + x464 + x465 <= 1 + +x13 + x14 + x24 + x119 + x138 + x141 + x142 + x202 + x207 + x254 ++ x256 + x261 + x289 + x337 + x371 + x373 + x384 + x403 + x405 + x409 ++ x410 + x411 + x412 + x413 + x415 + x442 + x444 + x446 + x447 + x449 + <= 1 + +x13 + x14 + x24 + x54 + x92 + x119 + x138 + x139 + x140 + x141 ++ x142 + x158 + x159 + x161 + x200 + x201 + x202 + x204 + x206 + x207 ++ x218 + x238 + x251 + x254 + x256 + x261 + x289 + x337 + x368 + x371 ++ x373 + x384 + x403 + x405 + x406 + x409 + x410 + x411 + x412 + x413 ++ x415 + x418 + x435 + x438 + x442 + x444 + x445 + x446 + x447 + x449 ++ x495 + x499 <= 1 + +x23 + x24 + x39 + x51 + x53 + x61 + x138 + x139 + x140 + x142 ++ x156 + x158 + x159 + x160 + x161 + x197 + x200 + x202 + x203 + x204 ++ x205 + x206 + x207 + x215 + x216 + x218 + x232 + x235 + x238 + x239 ++ x251 + x254 + x256 + x289 + x337 + x347 + x349 + x368 + x371 + x373 ++ x378 + x384 + x386 + x389 + x401 + x403 + x409 + x410 + x411 + x412 ++ x413 + x415 + x417 + x419 + x438 + x440 + x441 + x444 + x445 + x447 ++ x449 + x495 + x499 <= 1 + +x21 + x24 + x42 + x45 + x51 + x52 + x53 + x87 + x117 + x138 ++ x139 + x140 + x141 + x142 + x156 + x157 + x158 + x159 + x160 + x200 ++ x201 + x203 + x204 + x205 + x206 + x207 + x211 + x213 + x214 + x215 ++ x218 + x219 + x229 + x230 + x232 + x235 + x237 + x238 + x251 + x254 ++ x256 + x278 + x287 + x289 + x347 + x349 + x368 + x370 + x371 + x373 ++ x384 + x386 + x389 + x399 + x400 + x401 + x402 + x403 + x410 + x412 ++ x413 + x414 + x415 + x417 + x444 + x445 + x446 + x447 + x448 + x449 ++ x474 + x495 + x498 + x499 + x500 <= 1 + +x21 + x24 + x39 + x45 + x51 + x52 + x53 + x54 + x87 + x121 ++ x138 + x139 + x142 + x159 + x201 + x203 + x204 + x205 + x206 + x213 ++ x214 + x215 + x218 + x219 + x229 + x232 + x235 + x236 + x237 + x238 ++ x251 + x254 + x255 + x256 + x273 + x276 + x284 + x287 + x289 + x293 ++ x347 + x349 + x371 + x379 + x384 + x386 + x389 + x394 + x399 + x400 ++ x403 + x413 + x414 + x415 + x417 + x444 + x445 + x446 + x447 + x448 ++ x449 + x456 + x479 + x495 + x498 <= 1 + +x24 + x40 + x42 + x52 + x53 + x90 + x138 + x139 + x165 + x214 ++ x215 + x218 + x219 + x220 + x235 + x237 + x238 + x251 + x254 + x273 ++ x276 + x284 + x287 + x289 + x293 + x338 + x379 + x386 + x387 + x389 ++ x394 + x400 + x404 + x413 + x414 + x417 + x445 + x447 + x448 + x449 ++ x456 + x459 + x498 <= 1 + +x6 + x11 + x12 + x21 + x22 + x23 + x26 + x32 + x40 + x42 ++ x43 + x45 + x53 + x90 + x96 + x102 + x126 + x165 + x187 + x211 ++ x215 + x217 + x218 + x219 + x220 + x236 + x237 + x276 + x284 + x287 ++ x288 + x310 + x327 + x344 + x354 + x385 + x386 + x387 + x388 + x389 ++ x413 + x414 + x415 + x416 + x417 + x439 + x441 + x444 + x448 + x459 ++ x477 <= 1 + +x6 + x11 + x12 + x21 + x26 + x32 + x40 + x42 + x43 + x44 ++ x45 + x55 + x101 + x102 + x123 + x163 + x165 + x187 + x215 + x217 ++ x220 + x256 + x266 + x276 + x279 + x343 + x344 + x384 + x385 + x386 ++ x387 + x388 + x389 + x404 + x414 + x415 + x417 + x439 + x444 + x448 ++ x466 + x477 <= 1 + +x11 + x21 + x23 + x26 + x28 + x29 + x31 + x32 + x33 + x40 ++ x43 + x44 + x55 + x74 + x75 + x98 + x99 + x101 + x123 + x139 ++ x148 + x163 + x164 + x166 + x171 + x187 + x190 + x210 + x217 + x220 ++ x256 + x257 + x258 + x264 + x265 + x266 + x276 + x287 + x290 + x291 ++ x292 + x341 + x343 + x344 + x345 + x377 + x384 + x385 + x386 + x387 ++ x388 + x389 + x404 + x413 + x414 + x417 + x448 + x462 + x465 + x466 ++ x467 + x477 <= 1 + +x21 + x28 + x29 + x31 + x32 + x33 + x40 + x43 + x44 + x70 ++ x74 + x75 + x98 + x99 + x144 + x148 + x149 + x166 + x187 + x217 ++ x257 + x265 + x287 + x290 + x291 + x292 + x345 + x385 + x387 + x389 ++ x414 + x442 + x448 + x462 + x463 + x464 + x465 + x466 + x477 <= 1 + +x13 + x14 + x207 + x256 + x261 + x337 + x405 + x409 + x410 + x411 ++ x412 + x413 + x415 + x447 <= 1 + +x4 + x14 + x38 + x55 + x86 + x87 + x138 + x140 + x141 + x142 ++ x156 + x161 + x196 + x200 + x201 + x202 + x204 + x211 + x213 + x214 ++ x218 + x219 + x237 + x238 + x251 + x254 + x256 + x271 + x347 + x368 ++ x378 + x406 + x409 + x411 + x413 + x415 + x438 + x446 + x447 + x449 ++ x495 + x498 + x499 <= 1 + +x4 + x21 + x23 + x24 + x38 + x39 + x51 + x54 + x55 + x61 ++ x79 + x85 + x86 + x87 + x138 + x139 + x140 + x141 + x142 + x156 ++ x160 + x161 + x169 + x196 + x197 + x198 + x200 + x201 + x202 + x203 ++ x204 + x205 + x206 + x207 + x210 + x211 + x213 + x214 + x216 + x218 ++ x219 + x235 + x236 + x237 + x238 + x239 + x251 + x254 + x256 + x271 ++ x273 + x290 + x339 + x347 + x349 + x368 + x371 + x372 + x373 + x374 ++ x378 + x379 + x384 + x386 + x392 + x395 + x404 + x406 + x408 + x409 ++ x412 + x413 + x415 + x416 + x438 + x440 + x441 + x444 + x446 + x447 ++ x449 + x470 + x495 + x497 + x498 + x499 <= 1 + +x4 + x21 + x23 + x24 + x39 + x42 + x51 + x53 + x55 + x61 ++ x86 + x87 + x125 + x126 + x138 + x139 + x140 + x141 + x142 + x157 ++ x196 + x197 + x200 + x201 + x203 + x204 + x206 + x209 + x210 + x211 ++ x212 + x213 + x214 + x215 + x216 + x218 + x219 + x230 + x234 + x236 ++ x237 + x251 + x254 + x255 + x256 + x273 + x278 + x289 + x347 + x368 ++ x370 + x371 + x372 + x373 + x379 + x386 + x389 + x390 + x406 + x410 ++ x413 + x414 + x415 + x416 + x439 + x441 + x444 + x446 + x447 + x448 ++ x449 + x470 + x474 + x495 + x498 + x499 + x500 <= 1 + +x4 + x6 + x7 + x21 + x23 + x24 + x39 + x41 + x42 + x43 ++ x45 + x51 + x52 + x54 + x55 + x86 + x87 + x95 + x107 + x121 ++ x125 + x126 + x139 + x141 + x142 + x153 + x157 + x187 + x189 + x197 ++ x198 + x199 + x201 + x203 + x204 + x206 + x209 + x210 + x211 + x213 ++ x215 + x217 + x219 + x220 + x229 + x230 + x231 + x234 + x235 + x236 ++ x237 + x238 + x251 + x252 + x254 + x255 + x256 + x273 + x276 + x278 ++ x284 + x289 + x314 + x340 + x347 + x361 + x368 + x369 + x370 + x371 ++ x372 + x379 + x386 + x389 + x390 + x392 + x394 + x403 + x413 + x414 ++ x415 + x416 + x417 + x438 + x439 + x440 + x441 + x442 + x444 + x447 ++ x448 + x453 + x456 + x473 + x474 + x477 + x479 + x498 + x500 <= 1 + +x6 + x11 + x12 + x21 + x23 + x26 + x39 + x42 + x43 + x45 ++ x53 + x54 + x72 + x84 + x90 + x93 + x107 + x121 + x126 + x157 ++ x187 + x189 + x209 + x211 + x215 + x217 + x219 + x220 + x231 + x235 ++ x236 + x237 + x238 + x252 + x260 + x273 + x276 + x284 + x353 + x361 ++ x370 + x372 + x385 + x386 + x389 + x403 + x413 + x414 + x415 + x416 ++ x417 + x438 + x439 + x440 + x444 + x459 + x473 + x479 + x500 <= 1 + +x12 + x21 + x22 + x23 + x26 + x40 + x41 + x42 + x43 + x44 ++ x45 + x72 + x85 + x94 + x96 + x97 + x99 + x121 + x122 + x123 ++ x126 + x157 + x187 + x190 + x209 + x210 + x211 + x212 + x217 + x219 ++ x220 + x235 + x237 + x238 + x276 + x280 + x284 + x288 + x291 + x327 ++ x330 + x348 + x354 + x355 + x358 + x360 + x370 + x385 + x386 + x387 ++ x388 + x389 + x413 + x414 + x415 + x416 + x417 + x418 + x439 + x440 ++ x441 + x444 + x448 + x459 + x467 + x476 + x500 <= 1 + +x12 + x21 + x22 + x23 + x26 + x29 + x30 + x32 + x40 + x41 ++ x42 + x43 + x44 + x45 + x55 + x68 + x85 + x96 + x98 + x99 ++ x101 + x123 + x139 + x163 + x164 + x171 + x185 + x187 + x190 + x203 ++ x209 + x210 + x211 + x212 + x217 + x219 + x220 + x237 + x256 + x260 ++ x264 + x266 + x276 + x278 + x279 + x280 + x290 + x291 + x292 + x341 ++ x342 + x343 + x344 + x345 + x349 + x355 + x384 + x385 + x386 + x387 ++ x388 + x389 + x413 + x414 + x416 + x417 + x418 + x439 + x441 + x444 ++ x448 + x451 + x466 + x467 + x476 + x477 <= 1 + +x25 + x29 + x33 + x40 + x44 + x67 + x96 + x98 + x99 + x139 ++ x148 + x163 + x164 + x166 + x171 + x187 + x210 + x257 + x258 + x264 ++ x265 + x276 + x283 + x290 + x292 + x295 + x297 + x316 + x341 + x342 ++ x345 + x384 + x385 + x387 + x389 + x413 + x414 + x418 + x441 + x465 ++ x467 <= 1 + +x21 + x23 + x26 + x28 + x29 + x31 + x32 + x33 + x40 + x43 ++ x44 + x55 + x75 + x99 + x101 + x139 + x144 + x148 + x217 + x257 ++ x258 + x261 + x287 + x290 + x291 + x292 + x297 + x320 + x345 + x384 ++ x385 + x387 + x388 + x389 + x437 + x448 + x464 + x466 + x477 <= 1 + +x4 + x5 + x6 + x9 + x23 + x57 + x59 + x60 + x61 + x84 ++ x87 + x141 + x179 + x197 + x209 + x210 + x211 + x213 + x214 + x216 ++ x234 + x237 + x281 + x282 + x283 + x284 + x285 + x336 + x340 + x376 ++ x403 + x404 + x406 + x407 + x408 + x420 + x422 + x425 + x438 + x440 ++ x441 + x443 + x448 + x457 + x458 + x462 + x496 + x497 <= 1 + +x3 + x4 + x6 + x8 + x21 + x23 + x39 + x57 + x59 + x60 ++ x61 + x84 + x85 + x86 + x87 + x141 + x195 + x197 + x199 + x200 ++ x201 + x209 + x210 + x211 + x213 + x214 + x216 + x234 + x237 + x239 ++ x255 + x281 + x284 + x286 + x336 + x340 + x372 + x374 + x375 + x376 ++ x378 + x379 + x404 + x406 + x407 + x408 + x420 + x422 + x423 + x425 ++ x438 + x440 + x441 + x448 + x457 + x470 + x495 + x496 + x497 + x500 + <= 1 + +x4 + x6 + x8 + x16 + x21 + x23 + x24 + x35 + x37 + x38 ++ x39 + x54 + x57 + x59 + x60 + x61 + x79 + x84 + x85 + x86 ++ x87 + x92 + x139 + x140 + x141 + x142 + x169 + x196 + x197 + x198 ++ x199 + x200 + x201 + x202 + x204 + x207 + x209 + x210 + x211 + x213 ++ x214 + x216 + x218 + x219 + x234 + x236 + x237 + x238 + x239 + x251 ++ x254 + x255 + x256 + x273 + x282 + x283 + x284 + x290 + x327 + x336 ++ x339 + x340 + x347 + x361 + x368 + x369 + x372 + x373 + x374 + x375 ++ x376 + x378 + x379 + x386 + x392 + x394 + x395 + x404 + x406 + x407 ++ x408 + x420 + x421 + x422 + x423 + x425 + x438 + x439 + x440 + x441 ++ x442 + x443 + x446 + x447 + x449 + x457 + x469 + x470 + x495 + x496 ++ x497 + x498 + x500 <= 1 + +x3 + x4 + x6 + x8 + x16 + x21 + x23 + x24 + x26 + x38 ++ x39 + x52 + x54 + x57 + x71 + x84 + x85 + x87 + x92 + x95 ++ x125 + x139 + x140 + x154 + x197 + x198 + x200 + x209 + x210 + x212 ++ x213 + x234 + x236 + x237 + x238 + x239 + x251 + x252 + x254 + x255 ++ x260 + x283 + x314 + x327 + x336 + x340 + x369 + x374 + x376 + x378 ++ x392 + x394 + x395 + x406 + x407 + x417 + x418 + x420 + x423 + x425 ++ x438 + x439 + x440 + x441 + x442 + x443 + x468 + x470 + x471 + x473 ++ x488 + x496 + x500 <= 1 + +x7 + x8 + x21 + x23 + x24 + x26 + x39 + x41 + x42 + x45 ++ x51 + x52 + x53 + x54 + x71 + x72 + x84 + x87 + x92 + x95 ++ x107 + x121 + x125 + x142 + x153 + x197 + x198 + x199 + x201 + x209 ++ x211 + x212 + x213 + x215 + x217 + x219 + x234 + x236 + x237 + x238 ++ x239 + x251 + x252 + x254 + x255 + x260 + x278 + x298 + x314 + x340 ++ x361 + x369 + x370 + x390 + x391 + x392 + x394 + x395 + x408 + x413 ++ x414 + x416 + x417 + x424 + x425 + x438 + x439 + x440 + x441 + x442 ++ x468 + x471 + x472 + x473 + x477 + x479 + x498 + x500 <= 1 + +x7 + x8 + x20 + x21 + x23 + x26 + x33 + x39 + x42 + x43 ++ x44 + x45 + x53 + x54 + x70 + x71 + x72 + x84 + x86 + x87 ++ x90 + x91 + x92 + x93 + x97 + x189 + x209 + x211 + x212 + x213 ++ x214 + x215 + x217 + x234 + x235 + x236 + x237 + x238 + x239 + x252 ++ x255 + x260 + x276 + x277 + x278 + x280 + x314 + x330 + x351 + x353 ++ x360 + x361 + x370 + x385 + x386 + x387 + x391 + x394 + x413 + x414 ++ x415 + x416 + x417 + x439 + x440 + x444 + x454 + x459 + x471 + x479 ++ x498 + x500 <= 1 + +x18 + x20 + x21 + x23 + x25 + x26 + x33 + x40 + x41 + x43 ++ x44 + x45 + x54 + x65 + x85 + x90 + x91 + x94 + x96 + x97 ++ x98 + x99 + x100 + x121 + x122 + x123 + x124 + x185 + x187 + x188 ++ x189 + x190 + x197 + x209 + x210 + x211 + x212 + x217 + x220 + x234 ++ x238 + x256 + x257 + x258 + x260 + x261 + x276 + x278 + x280 + x330 ++ x345 + x348 + x354 + x355 + x358 + x360 + x370 + x385 + x386 + x387 ++ x388 + x389 + x413 + x414 + x415 + x416 + x417 + x418 + x439 + x440 ++ x441 + x459 + x471 + x475 + x476 + x478 + x479 + x498 + x500 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 + x28 + x29 + x30 + x33 ++ x40 + x41 + x42 + x43 + x44 + x45 + x55 + x68 + x85 + x94 ++ x96 + x97 + x98 + x99 + x101 + x122 + x145 + x146 + x147 + x185 ++ x187 + x188 + x190 + x210 + x211 + x212 + x220 + x256 + x257 + x258 ++ x260 + x261 + x277 + x278 + x280 + x291 + x292 + x295 + x297 + x310 ++ x319 + x329 + x330 + x331 + x341 + x342 + x343 + x345 + x346 + x348 ++ x349 + x360 + x364 + x385 + x387 + x388 + x389 + x413 + x414 + x415 ++ x416 + x417 + x418 + x439 + x441 + x451 + x456 + x466 + x467 + x471 ++ x476 + x479 <= 1 + +x21 + x22 + x25 + x26 + x28 + x29 + x33 + x40 + x41 + x44 ++ x67 + x69 + x96 + x97 + x98 + x99 + x101 + x144 + x145 + x146 ++ x147 + x164 + x185 + x187 + x188 + x190 + x210 + x257 + x258 + x260 ++ x261 + x275 + x276 + x277 + x280 + x291 + x292 + x295 + x297 + x316 ++ x317 + x329 + x330 + x342 + x345 + x346 + x348 + x364 + x385 + x387 ++ x388 + x389 + x414 + x417 + x418 + x456 + x463 + x467 <= 1 + +x10 + x21 + x25 + x26 + x28 + x29 + x31 + x33 + x40 + x55 ++ x56 + x69 + x96 + x97 + x101 + x144 + x146 + x147 + x173 + x190 ++ x217 + x258 + x261 + x276 + x277 + x280 + x291 + x292 + x297 + x305 ++ x310 + x316 + x317 + x319 + x320 + x330 + x346 + x348 + x357 + x358 ++ x364 + x384 + x385 + x387 + x388 + x389 + x414 + x417 + x456 + x463 ++ x485 <= 1 + +x4 + x5 + x6 + x59 + x60 + x82 + x85 + x87 + x88 + x174 ++ x182 + x193 + x195 + x197 + x200 + x201 + x209 + x210 + x211 + x213 ++ x214 + x234 + x237 + x281 + x282 + x283 + x284 + x285 + x286 + x304 ++ x336 + x339 + x376 + x403 + x404 + x407 + x408 + x422 + x423 + x432 ++ x433 + x434 + x438 + x443 + x445 + x457 + x496 + x497 <= 1 + +x3 + x4 + x5 + x6 + x8 + x23 + x24 + x36 + x59 + x60 ++ x61 + x85 + x86 + x87 + x88 + x140 + x168 + x174 + x195 + x197 ++ x199 + x200 + x201 + x205 + x209 + x213 + x214 + x234 + x237 + x238 ++ x239 + x281 + x282 + x283 + x284 + x286 + x304 + x328 + x335 + x336 ++ x339 + x340 + x375 + x376 + x378 + x403 + x404 + x405 + x406 + x407 ++ x408 + x420 + x421 + x422 + x423 + x424 + x425 + x433 + x434 + x438 ++ x439 + x441 + x443 + x449 + x457 + x470 + x495 + x496 + x497 <= 1 + +x3 + x4 + x5 + x6 + x8 + x23 + x24 + x34 + x35 + x36 ++ x37 + x38 + x39 + x59 + x60 + x61 + x73 + x79 + x82 + x84 ++ x85 + x86 + x87 + x88 + x89 + x110 + x139 + x140 + x142 + x154 ++ x169 + x196 + x197 + x198 + x199 + x200 + x201 + x205 + x209 + x210 ++ x211 + x213 + x214 + x216 + x234 + x236 + x237 + x238 + x239 + x252 ++ x253 + x254 + x255 + x273 + x278 + x281 + x282 + x283 + x286 + x327 ++ x328 + x335 + x336 + x337 + x338 + x339 + x340 + x361 + x369 + x374 ++ x375 + x376 + x378 + x379 + x385 + x386 + x403 + x404 + x405 + x406 ++ x407 + x408 + x416 + x417 + x420 + x421 + x423 + x424 + x425 + x433 ++ x438 + x439 + x440 + x441 + x442 + x443 + x446 + x449 + x457 + x471 ++ x473 + x496 + x498 + x500 <= 1 + +x3 + x6 + x8 + x16 + x22 + x23 + x24 + x26 + x34 + x35 ++ x36 + x38 + x39 + x52 + x59 + x61 + x73 + x79 + x84 + x85 ++ x86 + x87 + x88 + x89 + x125 + x135 + x140 + x143 + x151 + x154 ++ x169 + x186 + x189 + x197 + x198 + x199 + x200 + x201 + x209 + x212 ++ x213 + x214 + x216 + x234 + x236 + x237 + x238 + x239 + x248 + x251 ++ x252 + x253 + x254 + x255 + x272 + x277 + x278 + x283 + x286 + x303 ++ x314 + x327 + x328 + x335 + x336 + x338 + x361 + x369 + x374 + x375 ++ x376 + x377 + x378 + x386 + x388 + x391 + x392 + x394 + x395 + x403 ++ x406 + x407 + x413 + x414 + x416 + x417 + x418 + x420 + x423 + x424 ++ x438 + x439 + x440 + x441 + x442 + x443 + x445 + x446 + x459 + x468 ++ x470 + x471 + x472 + x473 + x475 + x478 + x496 + x500 <= 1 + +x6 + x7 + x8 + x20 + x23 + x24 + x26 + x36 + x38 + x41 ++ x42 + x61 + x70 + x71 + x73 + x84 + x86 + x87 + x89 + x90 ++ x91 + x92 + x93 + x95 + x100 + x121 + x124 + x125 + x140 + x141 ++ x154 + x186 + x189 + x197 + x198 + x199 + x201 + x209 + x211 + x212 ++ x213 + x214 + x216 + x231 + x234 + x236 + x237 + x238 + x239 + x251 ++ x252 + x254 + x255 + x260 + x277 + x278 + x280 + x298 + x303 + x314 ++ x326 + x328 + x358 + x360 + x361 + x369 + x385 + x386 + x388 + x389 ++ x390 + x391 + x392 + x393 + x394 + x395 + x406 + x413 + x414 + x416 ++ x417 + x424 + x425 + x439 + x440 + x441 + x442 + x443 + x445 + x446 ++ x455 + x468 + x470 + x471 + x472 + x473 + x475 + x477 + x478 + x479 ++ x496 + x500 <= 1 + +x7 + x18 + x20 + x21 + x24 + x26 + x30 + x36 + x42 + x45 ++ x70 + x72 + x84 + x86 + x90 + x91 + x92 + x93 + x95 + x100 ++ x124 + x125 + x143 + x185 + x189 + x209 + x212 + x213 + x214 + x234 ++ x236 + x237 + x238 + x239 + x252 + x254 + x255 + x260 + x277 + x278 ++ x280 + x295 + x348 + x351 + x352 + x358 + x360 + x361 + x385 + x386 ++ x387 + x389 + x390 + x391 + x392 + x393 + x395 + x405 + x414 + x416 ++ x417 + x439 + x440 + x441 + x443 + x446 + x454 + x455 + x474 + x475 ++ x476 + x478 + x479 + x498 <= 1 + +x5 + x7 + x15 + x18 + x19 + x21 + x22 + x23 + x24 + x25 ++ x26 + x30 + x41 + x43 + x44 + x45 + x56 + x63 + x64 + x65 ++ x76 + x84 + x85 + x89 + x91 + x92 + x93 + x94 + x95 + x97 ++ x100 + x105 + x114 + x122 + x123 + x124 + x185 + x186 + x187 + x188 ++ x189 + x190 + x199 + x212 + x217 + x238 + x239 + x252 + x255 + x260 ++ x261 + x275 + x277 + x278 + x280 + x297 + x329 + x331 + x346 + x348 ++ x352 + x358 + x359 + x360 + x387 + x388 + x389 + x391 + x392 + x393 ++ x395 + x405 + x414 + x416 + x417 + x439 + x440 + x441 + x443 + x455 ++ x474 + x475 + x476 + x478 + x479 <= 1 + +x5 + x18 + x19 + x21 + x22 + x23 + x24 + x25 + x26 + x29 ++ x30 + x41 + x42 + x44 + x45 + x56 + x64 + x65 + x66 + x76 ++ x77 + x94 + x97 + x100 + x104 + x105 + x106 + x107 + x114 + x122 ++ x145 + x147 + x154 + x185 + x186 + x187 + x188 + x189 + x190 + x210 ++ x211 + x212 + x238 + x259 + x260 + x261 + x275 + x276 + x277 + x278 ++ x280 + x297 + x306 + x309 + x310 + x319 + x320 + x326 + x329 + x330 ++ x331 + x345 + x346 + x348 + x357 + x358 + x359 + x360 + x385 + x387 ++ x388 + x389 + x393 + x405 + x414 + x416 + x417 + x424 + x439 + x450 ++ x451 + x452 + x455 + x457 + x460 + x474 + x475 + x476 + x479 <= 1 + +x18 + x21 + x22 + x23 + x25 + x28 + x29 + x30 + x40 + x41 ++ x44 + x56 + x67 + x68 + x69 + x94 + x97 + x101 + x115 + x118 ++ x144 + x145 + x146 + x147 + x176 + x185 + x186 + x188 + x189 + x190 ++ x210 + x212 + x238 + x257 + x261 + x275 + x276 + x277 + x278 + x280 ++ x292 + x297 + x309 + x310 + x317 + x319 + x320 + x321 + x329 + x330 ++ x345 + x346 + x348 + x357 + x358 + x359 + x360 + x364 + x385 + x387 ++ x388 + x389 + x414 + x417 + x439 + x440 + x451 + x456 + x457 + x461 + <= 1 + +x10 + x21 + x22 + x25 + x31 + x56 + x120 + x146 + x173 + x176 ++ x217 + x234 + x276 + x277 + x293 + x297 + x305 + x310 + x316 + x317 ++ x320 + x322 + x362 + x364 + x384 + x385 + x387 + x388 + x414 + x417 ++ x456 + x458 + x463 + x485 <= 1 + +x3 + x4 + x48 + x59 + x60 + x82 + x83 + x88 + x151 + x154 ++ x168 + x170 + x177 + x178 + x182 + x193 + x194 + x198 + x200 + x201 ++ x208 + x209 + x214 + x234 + x236 + x237 + x281 + x282 + x283 + x284 ++ x285 + x372 + x391 + x404 + x405 + x407 + x421 + x422 + x423 + x432 ++ x433 + x434 + x438 + x442 + x443 + x445 + x457 + x472 + x476 + x482 ++ x497 <= 1 + +x3 + x4 + x5 + x6 + x23 + x36 + x37 + x46 + x48 + x59 ++ x60 + x78 + x79 + x82 + x83 + x84 + x85 + x86 + x88 + x89 ++ x168 + x169 + x174 + x177 + x182 + x194 + x197 + x198 + x199 + x200 ++ x201 + x209 + x214 + x216 + x234 + x235 + x236 + x237 + x238 + x239 ++ x250 + x281 + x282 + x283 + x284 + x285 + x286 + x299 + x300 + x301 ++ x302 + x303 + x304 + x328 + x335 + x337 + x339 + x372 + x375 + x376 ++ x377 + x390 + x391 + x404 + x405 + x406 + x407 + x408 + x420 + x421 ++ x422 + x424 + x425 + x432 + x433 + x434 + x437 + x438 + x439 + x442 ++ x443 + x457 + x469 + x472 + x476 + x497 <= 1 + +x3 + x4 + x5 + x6 + x23 + x34 + x36 + x37 + x78 + x79 ++ x82 + x84 + x85 + x86 + x87 + x88 + x89 + x110 + x131 + x143 ++ x154 + x169 + x186 + x196 + x197 + x198 + x199 + x200 + x201 + x205 ++ x209 + x213 + x214 + x216 + x228 + x234 + x235 + x236 + x237 + x238 ++ x239 + x252 + x253 + x254 + x255 + x256 + x281 + x283 + x285 + x286 ++ x299 + x300 + x301 + x302 + x324 + x326 + x327 + x328 + x335 + x337 ++ x338 + x339 + x372 + x374 + x375 + x377 + x385 + x390 + x391 + x392 ++ x393 + x404 + x405 + x406 + x408 + x420 + x421 + x422 + x423 + x424 ++ x425 + x432 + x433 + x434 + x438 + x439 + x440 + x442 + x443 + x445 ++ x468 + x469 + x472 + x476 + x496 + x497 + x499 <= 1 + +x5 + x22 + x23 + x25 + x26 + x34 + x35 + x36 + x37 + x38 ++ x79 + x80 + x84 + x85 + x86 + x87 + x88 + x89 + x135 + x140 ++ x143 + x151 + x154 + x169 + x186 + x188 + x196 + x197 + x198 + x199 ++ x200 + x209 + x234 + x237 + x238 + x239 + x248 + x251 + x252 + x253 ++ x255 + x272 + x281 + x285 + x286 + x294 + x301 + x303 + x314 + x319 ++ x323 + x324 + x326 + x327 + x328 + x335 + x337 + x338 + x361 + x374 ++ x375 + x377 + x378 + x385 + x390 + x391 + x392 + x393 + x394 + x395 ++ x403 + x404 + x406 + x408 + x423 + x424 + x438 + x439 + x440 + x441 ++ x442 + x443 + x445 + x459 + x468 + x469 + x475 + x496 + x499 <= 1 + +x3 + x7 + x22 + x23 + x24 + x25 + x26 + x35 + x36 + x38 ++ x41 + x84 + x86 + x88 + x89 + x91 + x93 + x95 + x124 + x149 ++ x150 + x152 + x154 + x185 + x186 + x187 + x188 + x189 + x190 + x197 ++ x198 + x199 + x201 + x212 + x216 + x234 + x235 + x236 + x237 + x238 ++ x239 + x248 + x251 + x252 + x253 + x255 + x260 + x277 + x278 + x280 ++ x285 + x286 + x295 + x298 + x306 + x319 + x326 + x335 + x358 + x359 ++ x360 + x361 + x369 + x374 + x377 + x378 + x385 + x388 + x390 + x391 ++ x392 + x393 + x394 + x395 + x403 + x406 + x408 + x423 + x439 + x440 ++ x441 + x442 + x443 + x445 + x446 + x459 + x468 + x472 + x475 + x478 ++ x479 + x496 <= 1 + +x7 + x15 + x17 + x19 + x20 + x22 + x23 + x24 + x25 + x26 ++ x30 + x31 + x36 + x38 + x41 + x43 + x44 + x71 + x73 + x84 ++ x85 + x86 + x89 + x91 + x93 + x94 + x95 + x100 + x113 + x124 ++ x141 + x143 + x149 + x154 + x185 + x186 + x187 + x188 + x189 + x190 ++ x199 + x212 + x213 + x234 + x235 + x236 + x237 + x238 + x239 + x252 ++ x253 + x255 + x260 + x261 + x275 + x277 + x278 + x280 + x295 + x297 ++ x298 + x309 + x310 + x325 + x348 + x358 + x359 + x360 + x361 + x369 ++ x385 + x387 + x388 + x390 + x391 + x392 + x393 + x395 + x405 + x408 ++ x414 + x416 + x424 + x439 + x440 + x441 + x442 + x443 + x446 + x450 ++ x452 + x454 + x455 + x460 + x471 + x473 + x474 + x475 + x476 + x478 + <= 1 + +x5 + x15 + x19 + x21 + x22 + x24 + x25 + x26 + x30 + x41 ++ x45 + x63 + x66 + x77 + x89 + x93 + x94 + x100 + x105 + x113 ++ x122 + x124 + x154 + x166 + x185 + x186 + x187 + x188 + x189 + x190 ++ x212 + x213 + x238 + x239 + x259 + x260 + x261 + x275 + x277 + x278 ++ x280 + x296 + x297 + x298 + x306 + x307 + x309 + x310 + x314 + x326 ++ x329 + x348 + x358 + x359 + x360 + x361 + x385 + x387 + x388 + x389 ++ x390 + x392 + x393 + x395 + x405 + x415 + x416 + x417 + x424 + x441 ++ x442 + x450 + x451 + x452 + x454 + x455 + x460 + x474 + x475 + x476 ++ x478 + x479 <= 1 + +x5 + x21 + x22 + x24 + x25 + x26 + x29 + x44 + x63 + x64 ++ x66 + x104 + x105 + x107 + x111 + x113 + x114 + x116 + x120 + x122 ++ x128 + x172 + x176 + x185 + x186 + x188 + x189 + x212 + x238 + x259 ++ x260 + x261 + x270 + x275 + x277 + x279 + x280 + x294 + x296 + x297 ++ x298 + x306 + x307 + x309 + x310 + x316 + x326 + x329 + x331 + x346 ++ x348 + x350 + x357 + x358 + x359 + x360 + x361 + x363 + x365 + x385 ++ x387 + x388 + x389 + x393 + x416 + x417 + x441 + x442 + x450 + x452 ++ x460 + x461 + x470 + x472 + x474 + x475 + x476 + x478 + x479 <= 1 + +x5 + x21 + x22 + x25 + x30 + x40 + x44 + x56 + x101 + x106 ++ x113 + x114 + x115 + x118 + x120 + x145 + x173 + x174 + x176 + x177 ++ x188 + x190 + x196 + x210 + x212 + x233 + x257 + x259 + x260 + x261 ++ x270 + x276 + x277 + x292 + x305 + x309 + x310 + x311 + x316 + x320 ++ x321 + x329 + x346 + x348 + x350 + x360 + x362 + x363 + x366 + x384 ++ x385 + x387 + x388 + x389 + x417 + x440 + x456 + x457 + x461 + x472 ++ x477 + x481 + x485 <= 1 + +x22 + x25 + x30 + x56 + x115 + x118 + x119 + x120 + x129 + x173 ++ x175 + x176 + x177 + x188 + x196 + x212 + x220 + x234 + x261 + x276 ++ x277 + x279 + x293 + x297 + x305 + x306 + x307 + x310 + x316 + x317 ++ x321 + x322 + x346 + x350 + x360 + x362 + x366 + x384 + x385 + x387 ++ x388 + x456 + x457 + x458 + x461 + x477 + x480 + x485 <= 1 + +x34 + x37 + x48 + x50 + x78 + x83 + x88 + x89 + x151 + x168 ++ x170 + x175 + x178 + x182 + x193 + x194 + x201 + x208 + x214 + x234 ++ x235 + x236 + x237 + x239 + x250 + x282 + x283 + x285 + x299 + x301 ++ x302 + x303 + x304 + x356 + x404 + x405 + x407 + x421 + x422 + x432 ++ x433 + x434 + x435 + x436 + x437 + x438 + x443 + x457 + x476 + x482 + <= 1 + +x3 + x5 + x37 + x46 + x47 + x48 + x59 + x78 + x79 + x82 ++ x83 + x88 + x143 + x150 + x168 + x169 + x170 + x174 + x177 + x180 ++ x182 + x199 + x234 + x235 + x236 + x239 + x250 + x253 + x281 + x282 ++ x283 + x284 + x285 + x286 + x299 + x300 + x302 + x303 + x304 + x318 ++ x328 + x356 + x375 + x376 + x405 + x407 + x408 + x418 + x420 + x421 ++ x422 + x432 + x434 + x435 + x436 + x437 + x438 + x443 + x469 + x476 ++ x493 + x497 <= 1 + +x3 + x4 + x26 + x34 + x35 + x37 + x41 + x78 + x79 + x80 ++ x83 + x84 + x85 + x86 + x88 + x89 + x131 + x143 + x151 + x154 ++ x168 + x169 + x170 + x175 + x181 + x196 + x198 + x199 + x214 + x216 ++ x227 + x234 + x235 + x236 + x237 + x238 + x239 + x245 + x252 + x253 ++ x281 + x285 + x286 + x294 + x300 + x301 + x302 + x339 + x356 + x360 ++ x361 + x374 + x375 + x377 + x385 + x390 + x391 + x393 + x395 + x420 ++ x421 + x425 + x438 + x440 + x443 + x458 + x460 + x469 + x497 + x499 + <= 1 + +x3 + x7 + x22 + x23 + x24 + x25 + x26 + x31 + x34 + x35 ++ x36 + x38 + x41 + x80 + x84 + x85 + x86 + x88 + x89 + x135 ++ x143 + x149 + x150 + x151 + x152 + x154 + x185 + x186 + x196 + x198 ++ x199 + x214 + x216 + x234 + x235 + x237 + x238 + x239 + x242 + x245 ++ x248 + x251 + x252 + x253 + x280 + x281 + x285 + x286 + x294 + x308 ++ x323 + x335 + x338 + x356 + x359 + x360 + x361 + x374 + x375 + x377 ++ x383 + x385 + x390 + x391 + x392 + x393 + x394 + x395 + x403 + x416 ++ x438 + x439 + x440 + x443 + x445 + x458 + x459 + x460 + x468 + x469 ++ x475 + x478 + x496 + x499 <= 1 + +x3 + x7 + x22 + x24 + x26 + x31 + x36 + x80 + x112 + x143 ++ x149 + x151 + x152 + x153 + x154 + x155 + x171 + x172 + x199 + x234 ++ x235 + x237 + x239 + x242 + x253 + x280 + x294 + x295 + x308 + x309 ++ x323 + x325 + x356 + x357 + x359 + x360 + x361 + x386 + x394 + x415 ++ x416 + x418 + x438 + x439 + x442 + x443 + x445 + x453 + x458 + x460 ++ x461 + x475 + x478 + x490 + x491 + x492 + x494 + x496 <= 1 + +x7 + x15 + x16 + x17 + x22 + x24 + x25 + x26 + x31 + x41 ++ x44 + x80 + x89 + x100 + x113 + x130 + x138 + x143 + x152 + x154 ++ x172 + x185 + x186 + x188 + x190 + x199 + x235 + x236 + x237 + x238 ++ x239 + x242 + x252 + x253 + x255 + x275 + x277 + x280 + x295 + x298 ++ x307 + x308 + x309 + x310 + x311 + x313 + x325 + x331 + x356 + x357 ++ x358 + x359 + x360 + x361 + x384 + x391 + x393 + x405 + x408 + x414 ++ x415 + x416 + x427 + x439 + x442 + x443 + x450 + x453 + x454 + x458 ++ x460 + x476 + x478 + x490 + x494 <= 1 + +x15 + x16 + x17 + x19 + x22 + x24 + x25 + x26 + x32 + x44 ++ x89 + x100 + x105 + x107 + x108 + x109 + x110 + x112 + x113 + x127 ++ x130 + x136 + x143 + x154 + x155 + x172 + x173 + x174 + x185 + x186 ++ x188 + x189 + x196 + x199 + x201 + x228 + x235 + x236 + x238 + x255 ++ x262 + x269 + x275 + x277 + x279 + x280 + x294 + x295 + x296 + x298 ++ x306 + x307 + x308 + x309 + x310 + x311 + x312 + x313 + x314 + x331 ++ x346 + x348 + x357 + x358 + x359 + x360 + x361 + x363 + x388 + x393 ++ x405 + x408 + x414 + x415 + x416 + x426 + x427 + x429 + x431 + x441 ++ x442 + x450 + x452 + x453 + x454 + x456 + x457 + x458 + x459 + x460 ++ x461 + x478 <= 1 + +x5 + x17 + x22 + x24 + x25 + x27 + x62 + x104 + x105 + x107 ++ x108 + x109 + x110 + x111 + x113 + x114 + x116 + x127 + x128 + x161 ++ x173 + x174 + x176 + x185 + x186 + x188 + x189 + x196 + x212 + x238 ++ x259 + x262 + x271 + x275 + x277 + x279 + x280 + x293 + x294 + x295 ++ x296 + x297 + x298 + x305 + x306 + x307 + x308 + x309 + x310 + x311 ++ x312 + x313 + x315 + x326 + x331 + x346 + x347 + x348 + x350 + x357 ++ x358 + x359 + x360 + x362 + x363 + x365 + x384 + x385 + x387 + x388 ++ x415 + x416 + x426 + x427 + x429 + x430 + x431 + x452 + x456 + x457 ++ x458 + x459 + x460 + x461 + x474 + x475 + x478 + x479 + x481 <= 1 + +x17 + x22 + x25 + x62 + x82 + x103 + x105 + x106 + x108 + x109 ++ x110 + x113 + x114 + x115 + x116 + x117 + x118 + x127 + x129 + x173 ++ x174 + x175 + x176 + x177 + x196 + x212 + x244 + x257 + x259 + x260 ++ x262 + x270 + x275 + x276 + x277 + x279 + x295 + x297 + x305 + x306 ++ x307 + x308 + x309 + x310 + x311 + x312 + x313 + x315 + x316 + x321 ++ x331 + x346 + x347 + x348 + x357 + x358 + x360 + x362 + x363 + x365 ++ x366 + x367 + x384 + x387 + x388 + x415 + x416 + x417 + x427 + x428 ++ x440 + x456 + x457 + x458 + x459 + x460 + x461 + x474 + x477 + x478 ++ x479 + x480 + x481 + x483 + x484 <= 1 + +x25 + x57 + x62 + x105 + x106 + x108 + x113 + x117 + x118 + x119 ++ x120 + x129 + x173 + x175 + x176 + x177 + x196 + x257 + x259 + x261 ++ x267 + x276 + x277 + x279 + x293 + x297 + x305 + x306 + x307 + x309 ++ x316 + x346 + x350 + x365 + x366 + x367 + x384 + x387 + x388 + x417 ++ x456 + x457 + x458 + x459 + x480 + x481 + x482 + x483 + x485 <= 1 + +x0 + x2 + x22 + x46 + x48 + x49 + x50 + x58 + x81 + x83 ++ x88 + x151 + x167 + x168 + x169 + x170 + x175 + x176 + x177 + x178 ++ x179 + x180 + x181 + x182 + x183 + x234 + x282 + x296 + x299 + x304 ++ x318 + x356 + x407 + x415 + x436 + x437 + x438 + x443 + x497 <= 1 + +x34 + x37 + x46 + x48 + x49 + x50 + x78 + x80 + x81 + x83 ++ x88 + x89 + x143 + x150 + x151 + x155 + x167 + x168 + x169 + x170 ++ x175 + x177 + x178 + x179 + x180 + x181 + x182 + x183 + x196 + x198 ++ x201 + x208 + x227 + x234 + x235 + x236 + x237 + x250 + x252 + x253 ++ x272 + x281 + x282 + x283 + x285 + x286 + x296 + x299 + x300 + x301 ++ x302 + x303 + x304 + x318 + x356 + x376 + x390 + x407 + x415 + x418 ++ x422 + x432 + x435 + x436 + x437 + x438 + x440 + x443 + x458 + x493 ++ x494 + x497 <= 1 + +x3 + x7 + x34 + x37 + x38 + x49 + x78 + x81 + x83 + x88 ++ x89 + x104 + x112 + x134 + x143 + x150 + x151 + x153 + x155 + x167 ++ x169 + x170 + x175 + x181 + x183 + x197 + x198 + x234 + x235 + x236 ++ x239 + x240 + x241 + x245 + x246 + x249 + x250 + x253 + x281 + x282 ++ x293 + x294 + x295 + x296 + x301 + x349 + x356 + x357 + x418 + x436 ++ x442 + x443 + x463 + x493 + x494 + x497 <= 1 + +x3 + x7 + x24 + x26 + x35 + x36 + x37 + x38 + x41 + x42 ++ x89 + x103 + x104 + x112 + x134 + x143 + x150 + x151 + x152 + x155 ++ x186 + x197 + x198 + x199 + x200 + x223 + x226 + x234 + x235 + x238 ++ x239 + x240 + x241 + x242 + x243 + x245 + x246 + x247 + x248 + x252 ++ x253 + x262 + x280 + x286 + x293 + x294 + x295 + x338 + x349 + x356 ++ x359 + x361 + x380 + x382 + x383 + x390 + x393 + x395 + x416 + x418 ++ x436 + x442 + x443 + x458 + x459 + x460 + x461 + x463 + x475 + x490 ++ x492 + x494 <= 1 + +x7 + x22 + x23 + x26 + x35 + x41 + x103 + x112 + x133 + x134 ++ x143 + x150 + x151 + x152 + x153 + x154 + x155 + x158 + x171 + x172 ++ x197 + x198 + x199 + x200 + x221 + x222 + x223 + x226 + x235 + x239 ++ x240 + x241 + x242 + x243 + x245 + x246 + x247 + x253 + x258 + x262 ++ x279 + x293 + x294 + x295 + x296 + x298 + x308 + x349 + x356 + x357 ++ x359 + x361 + x380 + x381 + x386 + x394 + x414 + x418 + x438 + x442 ++ x443 + x453 + x458 + x459 + x461 + x475 + x490 + x491 + x492 + x494 + <= 1 + +x110 + x112 + x132 + x133 + x134 + x143 + x150 + x152 + x155 + x167 ++ x171 + x172 + x199 + x200 + x221 + x223 + x235 + x241 + x243 + x245 ++ x247 + x253 + x258 + x262 + x279 + x293 + x294 + x295 + x296 + x298 ++ x350 + x356 + x357 + x359 + x361 + x381 + x386 + x414 + x418 + x442 ++ x458 + x459 + x460 + x461 + x489 + x490 + x491 + x492 + x494 <= 1 + +x5 + x22 + x24 + x25 + x89 + x103 + x104 + x105 + x107 + x108 ++ x109 + x110 + x111 + x112 + x113 + x114 + x128 + x136 + x152 + x155 ++ x172 + x173 + x174 + x188 + x189 + x255 + x258 + x259 + x262 + x269 ++ x271 + x274 + x275 + x279 + x288 + x293 + x294 + x295 + x296 + x297 ++ x298 + x302 + x306 + x307 + x308 + x309 + x310 + x311 + x312 + x313 ++ x315 + x346 + x347 + x348 + x350 + x357 + x358 + x359 + x360 + x365 ++ x388 + x416 + x426 + x429 + x430 + x431 + x453 + x456 + x457 + x458 ++ x459 + x460 + x461 + x474 + x484 <= 1 + +x22 + x58 + x62 + x82 + x105 + x107 + x108 + x109 + x110 + x111 ++ x112 + x113 + x114 + x116 + x127 + x128 + x137 + x150 + x155 + x162 ++ x173 + x174 + x176 + x177 + x185 + x188 + x189 + x190 + x196 + x225 ++ x257 + x258 + x259 + x262 + x269 + x271 + x275 + x279 + x290 + x293 ++ x294 + x295 + x296 + x297 + x298 + x305 + x306 + x307 + x308 + x309 ++ x310 + x311 + x312 + x313 + x315 + x347 + x350 + x357 + x358 + x359 ++ x384 + x388 + x415 + x416 + x426 + x427 + x430 + x431 + x456 + x457 ++ x458 + x459 + x460 + x461 + x474 + x481 + x484 <= 1 + +x25 + x57 + x58 + x62 + x82 + x103 + x105 + x106 + x107 + x108 ++ x109 + x114 + x115 + x116 + x117 + x119 + x129 + x137 + x173 + x174 ++ x176 + x177 + x190 + x196 + x198 + x225 + x244 + x252 + x257 + x259 ++ x262 + x270 + x271 + x279 + x294 + x295 + x296 + x297 + x298 + x305 ++ x306 + x307 + x308 + x309 + x311 + x313 + x315 + x348 + x357 + x367 ++ x384 + x387 + x388 + x397 + x415 + x416 + x426 + x427 + x428 + x440 ++ x456 + x457 + x458 + x459 + x460 + x461 + x477 + x480 + x481 + x482 ++ x483 + x484 <= 1 + +x25 + x57 + x62 + x91 + x105 + x106 + x108 + x114 + x173 + x175 ++ x176 + x177 + x196 + x244 + x252 + x257 + x259 + x262 + x267 + x279 ++ x297 + x298 + x305 + x306 + x307 + x309 + x321 + x357 + x366 + x384 ++ x387 + x388 + x415 + x428 + x456 + x457 + x458 + x460 + x480 + x481 ++ x482 + x483 + x484 + x485 <= 1 + +x0 + x1 + x2 + x46 + x49 + x50 + x80 + x81 + x153 + x167 ++ x168 + x169 + x170 + x175 + x178 + x179 + x180 + x181 + x183 + x234 ++ x236 + x282 + x318 + x349 + x356 + x407 + x411 + x415 + x435 + x437 ++ x478 <= 1 + +x1 + x2 + x8 + x34 + x37 + x49 + x50 + x78 + x80 + x81 ++ x83 + x150 + x151 + x153 + x167 + x168 + x169 + x170 + x175 + x178 ++ x179 + x180 + x181 + x183 + x192 + x201 + x234 + x236 + x237 + x240 ++ x244 + x249 + x253 + x268 + x272 + x296 + x299 + x300 + x318 + x356 ++ x407 + x415 + x418 + x435 + x436 + x493 <= 1 + +x25 + x34 + x35 + x37 + x60 + x80 + x88 + x104 + x150 + x151 ++ x152 + x153 + x155 + x167 + x169 + x170 + x175 + x183 + x186 + x234 ++ x235 + x236 + x239 + x240 + x243 + x244 + x249 + x253 + x293 + x294 ++ x296 + x300 + x345 + x349 + x350 + x356 + x377 + x408 + x418 + x443 ++ x482 + x493 + x494 <= 1 + +x7 + x34 + x35 + x88 + x104 + x111 + x143 + x150 + x151 + x152 ++ x153 + x155 + x167 + x168 + x170 + x171 + x186 + x198 + x200 + x221 ++ x222 + x223 + x224 + x226 + x235 + x236 + x239 + x240 + x243 + x244 ++ x246 + x249 + x252 + x253 + x279 + x293 + x294 + x296 + x322 + x345 ++ x349 + x350 + x356 + x380 + x382 + x383 + x386 + x408 + x418 + x443 + <= 1 + +x22 + x23 + x26 + x32 + x35 + x47 + x103 + x104 + x106 + x111 ++ x133 + x141 + x150 + x151 + x152 + x153 + x155 + x158 + x167 + x170 ++ x171 + x172 + x197 + x198 + x200 + x221 + x222 + x223 + x224 + x226 ++ x235 + x239 + x240 + x241 + x242 + x243 + x244 + x245 + x246 + x247 ++ x253 + x258 + x262 + x279 + x288 + x293 + x294 + x296 + x298 + x306 ++ x345 + x347 + x349 + x350 + x356 + x359 + x380 + x381 + x383 + x386 ++ x389 + x394 + x418 + x442 + x461 + x487 + x489 + x491 + x492 <= 1 + +x22 + x47 + x58 + x103 + x104 + x106 + x108 + x109 + x110 + x111 ++ x112 + x132 + x133 + x134 + x136 + x138 + x150 + x152 + x153 + x155 ++ x167 + x170 + x171 + x172 + x218 + x221 + x222 + x223 + x235 + x236 ++ x239 + x241 + x242 + x245 + x247 + x258 + x262 + x275 + x279 + x288 ++ x293 + x294 + x295 + x296 + x297 + x298 + x306 + x307 + x312 + x345 ++ x346 + x347 + x349 + x350 + x356 + x357 + x359 + x361 + x381 + x384 ++ x386 + x389 + x404 + x413 + x414 + x418 + x429 + x442 + x459 + x460 ++ x461 + x489 + x490 + x491 + x492 <= 1 + +x22 + x24 + x25 + x47 + x58 + x103 + x104 + x105 + x106 + x107 ++ x108 + x109 + x110 + x111 + x112 + x113 + x132 + x135 + x136 + x138 ++ x150 + x152 + x153 + x155 + x162 + x171 + x172 + x222 + x224 + x225 ++ x239 + x242 + x258 + x259 + x262 + x269 + x270 + x271 + x272 + x274 ++ x275 + x279 + x288 + x293 + x294 + x295 + x296 + x297 + x298 + x305 ++ x306 + x307 + x308 + x311 + x312 + x313 + x315 + x333 + x345 + x346 ++ x347 + x350 + x356 + x357 + x358 + x384 + x386 + x388 + x418 + x429 ++ x430 + x457 + x458 + x459 + x460 + x461 + x490 + x491 <= 1 + +x8 + x22 + x47 + x57 + x58 + x62 + x103 + x105 + x106 + x107 ++ x108 + x109 + x111 + x112 + x132 + x135 + x136 + x137 + x138 + x150 ++ x162 + x172 + x173 + x174 + x176 + x177 + x184 + x196 + x224 + x225 ++ x257 + x258 + x259 + x262 + x269 + x270 + x272 + x274 + x275 + x278 ++ x279 + x288 + x293 + x295 + x296 + x298 + x305 + x308 + x309 + x315 ++ x350 + x357 + x358 + x359 + x384 + x416 + x418 + x430 + x431 + x456 ++ x458 + x459 + x460 + x461 + x480 + x483 <= 1 + +x8 + x57 + x58 + x62 + x103 + x105 + x106 + x107 + x108 + x109 ++ x137 + x138 + x172 + x173 + x174 + x175 + x176 + x177 + x184 + x190 ++ x210 + x225 + x257 + x258 + x259 + x262 + x269 + x270 + x271 + x274 ++ x275 + x294 + x297 + x298 + x305 + x307 + x308 + x312 + x315 + x357 ++ x359 + x367 + x379 + x384 + x388 + x416 + x418 + x426 + x428 + x431 ++ x456 + x457 + x458 + x459 + x460 + x461 + x468 + x477 + x480 + x481 ++ x482 + x483 + x484 + x485 <= 1 + +x25 + x103 + x106 + x107 + x108 + x160 + x173 + x174 + x175 + x176 ++ x177 + x184 + x210 + x259 + x274 + x278 + x305 + x306 + x307 + x308 ++ x321 + x324 + x379 + x384 + x387 + x388 + x418 + x421 + x428 + x456 ++ x457 + x459 + x460 + x461 + x480 + x482 + x483 + x484 + x485 <= 1 + +x0 + x1 + x42 + x46 + x49 + x81 + x153 + x167 + x169 + x178 ++ x179 + x180 + x183 + x234 + x236 + x282 + x317 + x318 + x349 + x356 ++ x407 <= 1 + +x8 + x34 + x50 + x51 + x56 + x78 + x81 + x150 + x151 + x152 ++ x153 + x167 + x168 + x170 + x171 + x175 + x179 + x180 + x181 + x185 ++ x191 + x192 + x234 + x235 + x236 + x239 + x253 + x272 + x296 + x356 ++ x406 + x407 + x435 + x493 <= 1 + +x25 + x30 + x51 + x56 + x60 + x81 + x104 + x139 + x150 + x151 ++ x152 + x153 + x155 + x167 + x168 + x170 + x171 + x175 + x187 + x191 ++ x192 + x235 + x236 + x239 + x240 + x243 + x253 + x272 + x293 + x294 ++ x296 + x356 + x377 + x382 + x406 + x418 + x489 + x493 <= 1 + +x22 + x25 + x35 + x81 + x88 + x104 + x150 + x151 + x152 + x153 ++ x155 + x167 + x168 + x170 + x171 + x191 + x198 + x221 + x222 + x224 ++ x226 + x235 + x236 + x239 + x240 + x241 + x243 + x244 + x249 + x263 ++ x293 + x294 + x296 + x322 + x359 + x377 + x382 + x418 + x486 + x489 ++ x493 <= 1 + +x22 + x25 + x103 + x104 + x152 + x153 + x155 + x167 + x168 + x171 ++ x200 + x211 + x221 + x224 + x225 + x226 + x236 + x241 + x242 + x243 ++ x244 + x245 + x262 + x293 + x294 + x295 + x296 + x298 + x322 + x334 ++ x347 + x350 + x358 + x359 + x386 + x416 + x418 + x442 + x461 + x486 ++ x487 + x489 + x492 <= 1 + +x22 + x25 + x58 + x103 + x104 + x106 + x110 + x111 + x133 + x134 ++ x152 + x153 + x155 + x167 + x168 + x171 + x172 + x211 + x218 + x221 ++ x222 + x223 + x224 + x225 + x226 + x235 + x236 + x237 + x239 + x241 ++ x258 + x259 + x262 + x275 + x279 + x288 + x293 + x294 + x295 + x296 ++ x297 + x298 + x322 + x332 + x334 + x345 + x347 + x350 + x356 + x357 ++ x358 + x386 + x413 + x418 + x458 + x460 + x461 + x465 + x469 + x489 ++ x490 + x491 + x492 <= 1 + +x24 + x25 + x47 + x58 + x103 + x104 + x106 + x107 + x108 + x110 ++ x111 + x112 + x133 + x152 + x153 + x155 + x171 + x172 + x222 + x223 ++ x224 + x225 + x226 + x235 + x237 + x239 + x258 + x259 + x262 + x274 ++ x275 + x279 + x288 + x293 + x294 + x295 + x296 + x297 + x298 + x305 ++ x313 + x332 + x333 + x346 + x347 + x357 + x358 + x386 + x418 + x458 ++ x460 + x461 + x469 + x489 + x491 <= 1 + +x8 + x62 + x103 + x106 + x108 + x109 + x132 + x135 + x136 + x137 ++ x172 + x174 + x177 + x184 + x196 + x269 + x270 + x272 + x274 + x275 ++ x298 + x308 + x350 + x384 + x430 + x456 + x461 <= 1 + +x8 + x57 + x58 + x62 + x103 + x105 + x107 + x108 + x109 + x111 ++ x114 + x132 + x137 + x138 + x172 + x173 + x174 + x176 + x177 + x196 ++ x210 + x234 + x257 + x258 + x259 + x262 + x269 + x270 + x271 + x274 ++ x275 + x278 + x279 + x288 + x293 + x295 + x298 + x305 + x307 + x308 ++ x312 + x315 + x350 + x357 + x384 + x418 + x456 + x457 + x458 + x459 ++ x460 + x461 + x473 + x483 <= 1 + +x43 + x106 + x173 + x174 + x175 + x176 + x184 + x259 + x275 + x278 ++ x305 + x308 + x384 + x388 + x421 + x428 + x456 + x457 + x460 + x461 ++ x464 + x484 <= 1 + +x0 + x1 + x2 <= 1 + +x3 + x4 + x5 + x6 + x7 + x8 <= 1 + +x11 + x12 <= 1 + +x13 + x14 <= 1 + +x15 + x16 + x17 + x18 + x19 + x20 <= 1 + +x21 + x22 + x23 + x24 + x25 + x26 <= 1 + +x28 + x29 + x30 + x31 + x32 + x33 <= 1 + +x34 + x35 + x36 + x37 + x38 + x39 <= 1 + +x40 + x41 + x42 + x43 + x44 + x45 <= 1 + +x46 + x47 + x48 + x49 + x50 <= 1 + +x51 + x52 + x53 + x54 + x55 + x56 <= 1 + +x57 + x58 + x59 + x60 + x61 + x62 <= 1 + +x63 + x64 + x65 + x66 <= 1 + +x67 + x68 + x69 <= 1 + +x70 + x71 + x72 + x73 + x74 + x75 <= 1 + +x76 + x77 <= 1 + +x78 + x79 + x80 + x81 + x82 + x83 <= 1 + +x84 + x85 + x86 + x87 + x88 + x89 <= 1 + +x90 + x91 + x92 + x93 + x94 + x95 <= 1 + +x96 + x97 + x98 + x99 + x100 + x101 <= 1 + +x103 + x104 + x105 + x106 + x107 + x108 <= 1 + +x109 + x110 + x111 + x112 + x113 + x114 <= 1 + +x115 + x116 + x117 + x118 + x119 + x120 <= 1 + +x121 + x122 + x123 + x124 + x125 + x126 <= 1 + +x127 + x128 + x129 <= 1 + +x132 + x133 + x134 + x135 + x136 + x137 <= 1 + +x138 + x139 + x140 + x141 + x142 + x143 <= 1 + +x144 + x145 + x146 + x147 + x148 + x149 <= 1 + +x150 + x151 + x152 + x153 + x154 + x155 <= 1 + +x156 + x157 + x158 + x159 + x160 + x161 <= 1 + +x163 + x164 + x165 + x166 <= 1 + +x167 + x168 + x169 + x170 + x171 + x172 <= 1 + +x173 + x174 + x175 + x176 + x177 <= 1 + +x178 + x179 + x180 + x181 + x182 + x183 <= 1 + +x185 + x186 + x187 + x188 + x189 + x190 <= 1 + +x191 + x192 <= 1 + +x193 + x194 + x195 <= 1 + +x196 + x197 + x198 + x199 + x200 + x201 <= 1 + +x202 + x203 + x204 + x205 + x206 + x207 <= 1 + +x209 + x210 + x211 + x212 + x213 + x214 <= 1 + +x215 + x216 + x217 + x218 + x219 + x220 <= 1 + +x221 + x222 + x223 + x224 + x225 + x226 <= 1 + +x227 + x228 <= 1 + +x229 + x230 + x231 + x232 <= 1 + +x234 + x235 + x236 + x237 + x238 + x239 <= 1 + +x240 + x241 + x242 + x243 + x244 + x245 <= 1 + +x246 + x247 + x248 + x249 + x250 <= 1 + +x251 + x252 + x253 + x254 + x255 + x256 <= 1 + +x257 + x258 + x259 + x260 + x261 + x262 <= 1 + +x264 + x265 + x266 <= 1 + + <= 1 + +x269 + x270 + x271 + x272 + x273 + x274 <= 1 + +x275 + x276 + x277 + x278 + x279 + x280 <= 1 + +x281 + x282 + x283 + x284 + x285 + x286 <= 1 + +x287 + x288 + x289 + x290 + x291 + x292 <= 1 + +x293 + x294 + x295 + x296 + x297 + x298 <= 1 + +x299 + x300 + x301 + x302 + x303 + x304 <= 1 + +x305 + x306 + x307 + x308 + x309 + x310 <= 1 + +x311 + x312 + x313 + x314 + x315 + x316 <= 1 + +x317 + x318 + x319 + x320 + x321 + x322 <= 1 + +x323 + x324 + x325 <= 1 + +x326 + x327 + x328 + x329 + x330 + x331 <= 1 + +x332 + x333 + x334 <= 1 + +x335 + x336 + x337 + x338 + x339 + x340 <= 1 + +x341 + x342 + x343 + x344 <= 1 + +x345 + x346 + x347 + x348 + x349 + x350 <= 1 + +x351 + x352 + x353 <= 1 + +x354 + x355 <= 1 + +x356 + x357 + x358 + x359 + x360 + x361 <= 1 + +x362 + x363 + x364 + x365 + x366 + x367 <= 1 + +x368 + x369 + x370 + x371 + x372 + x373 <= 1 + +x374 + x375 + x376 + x377 + x378 + x379 <= 1 + +x380 + x381 + x382 + x383 <= 1 + +x384 + x385 + x386 + x387 + x388 + x389 <= 1 + +x390 + x391 + x392 + x393 + x394 + x395 <= 1 + +x396 + x397 + x398 <= 1 + +x399 + x400 + x401 + x402 <= 1 + +x403 + x404 + x405 + x406 + x407 + x408 <= 1 + +x409 + x410 + x411 + x412 <= 1 + +x413 + x414 + x415 + x416 + x417 + x418 <= 1 + +x420 + x421 + x422 + x423 + x424 + x425 <= 1 + +x426 + x427 + x428 + x429 + x430 + x431 <= 1 + +x432 + x433 + x434 + x435 + x436 + x437 <= 1 + +x438 + x439 + x440 + x441 + x442 + x443 <= 1 + +x444 + x445 + x446 + x447 + x448 + x449 <= 1 + +x450 + x451 + x452 + x453 + x454 + x455 <= 1 + +x456 + x457 + x458 + x459 + x460 + x461 <= 1 + +x462 + x463 + x464 + x465 + x466 + x467 <= 1 + +x468 + x469 + x470 + x471 + x472 + x473 <= 1 + +x474 + x475 + x476 + x477 + x478 + x479 <= 1 + +x480 + x481 + x482 + x483 + x484 + x485 <= 1 + +x486 + x487 <= 1 + +x489 + x490 + x491 + x492 + x493 + x494 <= 1 + +x495 + x496 + x497 + x498 + x499 + x500 <= 1 + +integer + +x0 x1 x2 x3 x4 x5 x6 x7 x8 x9 +x10 x11 x12 x13 x14 x15 x16 x17 x18 x19 +x20 x21 x22 x23 x24 x25 x26 x27 x28 x29 +x30 x31 x32 x33 x34 x35 x36 x37 x38 x39 +x40 x41 x42 x43 x44 x45 x46 x47 x48 x49 +x50 x51 x52 x53 x54 x55 x56 x57 x58 x59 +x60 x61 x62 x63 x64 x65 x66 x67 x68 x69 +x70 x71 x72 x73 x74 x75 x76 x77 x78 x79 +x80 x81 x82 x83 x84 x85 x86 x87 x88 x89 +x90 x91 x92 x93 x94 x95 x96 x97 x98 x99 +x100 x101 x102 x103 x104 x105 x106 x107 x108 x109 +x110 x111 x112 x113 x114 x115 x116 x117 x118 x119 +x120 x121 x122 x123 x124 x125 x126 x127 x128 x129 +x130 x131 x132 x133 x134 x135 x136 x137 x138 x139 +x140 x141 x142 x143 x144 x145 x146 x147 x148 x149 +x150 x151 x152 x153 x154 x155 x156 x157 x158 x159 +x160 x161 x162 x163 x164 x165 x166 x167 x168 x169 +x170 x171 x172 x173 x174 x175 x176 x177 x178 x179 +x180 x181 x182 x183 x184 x185 x186 x187 x188 x189 +x190 x191 x192 x193 x194 x195 x196 x197 x198 x199 +x200 x201 x202 x203 x204 x205 x206 x207 x208 x209 +x210 x211 x212 x213 x214 x215 x216 x217 x218 x219 +x220 x221 x222 x223 x224 x225 x226 x227 x228 x229 +x230 x231 x232 x233 x234 x235 x236 x237 x238 x239 +x240 x241 x242 x243 x244 x245 x246 x247 x248 x249 +x250 x251 x252 x253 x254 x255 x256 x257 x258 x259 +x260 x261 x262 x263 x264 x265 x266 x267 x268 x269 +x270 x271 x272 x273 x274 x275 x276 x277 x278 x279 +x280 x281 x282 x283 x284 x285 x286 x287 x288 x289 +x290 x291 x292 x293 x294 x295 x296 x297 x298 x299 +x300 x301 x302 x303 x304 x305 x306 x307 x308 x309 +x310 x311 x312 x313 x314 x315 x316 x317 x318 x319 +x320 x321 x322 x323 x324 x325 x326 x327 x328 x329 +x330 x331 x332 x333 x334 x335 x336 x337 x338 x339 +x340 x341 x342 x343 x344 x345 x346 x347 x348 x349 +x350 x351 x352 x353 x354 x355 x356 x357 x358 x359 +x360 x361 x362 x363 x364 x365 x366 x367 x368 x369 +x370 x371 x372 x373 x374 x375 x376 x377 x378 x379 +x380 x381 x382 x383 x384 x385 x386 x387 x388 x389 +x390 x391 x392 x393 x394 x395 x396 x397 x398 x399 +x400 x401 x402 x403 x404 x405 x406 x407 x408 x409 +x410 x411 x412 x413 x414 x415 x416 x417 x418 x419 +x420 x421 x422 x423 x424 x425 x426 x427 x428 x429 +x430 x431 x432 x433 x434 x435 x436 x437 x438 x439 +x440 x441 x442 x443 x444 x445 x446 x447 x448 x449 +x450 x451 x452 x453 x454 x455 x456 x457 x458 x459 +x460 x461 x462 x463 x464 x465 x466 x467 x468 x469 +x470 x471 x472 x473 x474 x475 x476 x477 x478 x479 +x480 x481 x482 x483 x484 x485 x486 x487 x488 x489 +x490 x491 x492 x493 x494 x495 x496 x497 x498 x499 +x500 + +end diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS100-small-test.txt b/sparkle/Components/paramils2.3.8-source/example_data/CATS100-small-test.txt new file mode 100755 index 000000000..16f09c50d --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS100-small-test.txt @@ -0,0 +1,10 @@ +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0000.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0001.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0003.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0006.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0010.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0013.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0014.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0015.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0017.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0019.lp diff --git a/sparkle/Components/paramils2.3.8-source/example_data/CATS100-small-train.txt b/sparkle/Components/paramils2.3.8-source/example_data/CATS100-small-train.txt new file mode 100755 index 000000000..20ab10bdf --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/CATS100-small-train.txt @@ -0,0 +1,10 @@ +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0002.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0004.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0005.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0007.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0008.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0009.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0011.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0012.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0016.lp +example_data/CATS-regions/CATS-d_regions-goods100-bids500_0018.lp diff --git a/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf new file mode 100755 index 000000000..50a1f0323 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf @@ -0,0 +1,5936 @@ +c created by edge2cnf +p cnf 774 5934 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-25 -769 0 +-26 -770 0 +-27 -771 0 +-28 -772 0 +-29 -773 0 +-30 -774 0 +-19 -769 0 +-20 -770 0 +-21 -771 0 +-22 -772 0 +-23 -773 0 +-24 -774 0 +-13 -769 0 +-14 -770 0 +-15 -771 0 +-16 -772 0 +-17 -773 0 +-18 -774 0 +-7 -769 0 +-8 -770 0 +-9 -771 0 +-10 -772 0 +-11 -773 0 +-12 -774 0 +-1 -769 0 +-2 -770 0 +-3 -771 0 +-4 -772 0 +-5 -773 0 +-6 -774 0 +-19 -763 0 +-20 -764 0 +-21 -765 0 +-22 -766 0 +-23 -767 0 +-24 -768 0 +-13 -763 0 +-14 -764 0 +-15 -765 0 +-16 -766 0 +-17 -767 0 +-18 -768 0 +-7 -763 0 +-8 -764 0 +-9 -765 0 +-10 -766 0 +-11 -767 0 +-12 -768 0 +-1 -763 0 +-2 -764 0 +-3 -765 0 +-4 -766 0 +-5 -767 0 +-6 -768 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-13 -757 0 +-14 -758 0 +-15 -759 0 +-16 -760 0 +-17 -761 0 +-18 -762 0 +-7 -757 0 +-8 -758 0 +-9 -759 0 +-10 -760 0 +-11 -761 0 +-12 -762 0 +-1 -757 0 +-2 -758 0 +-3 -759 0 +-4 -760 0 +-5 -761 0 +-6 -762 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-7 -751 0 +-8 -752 0 +-9 -753 0 +-10 -754 0 +-11 -755 0 +-12 -756 0 +-1 -751 0 +-2 -752 0 +-3 -753 0 +-4 -754 0 +-5 -755 0 +-6 -756 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-1 -745 0 +-2 -746 0 +-3 -747 0 +-4 -748 0 +-5 -749 0 +-6 -750 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-271 -679 0 +-272 -680 0 +-273 -681 0 +-274 -682 0 +-275 -683 0 +-276 -684 0 +-511 -715 0 +-512 -716 0 +-513 -717 0 +-514 -718 0 +-515 -719 0 +-516 -720 0 +-103 -289 0 +-104 -290 0 +-105 -291 0 +-106 -292 0 +-107 -293 0 +-108 -294 0 +-67 -301 0 +-68 -302 0 +-69 -303 0 +-70 -304 0 +-71 -305 0 +-72 -306 0 +-343 -577 0 +-344 -578 0 +-345 -579 0 +-346 -580 0 +-347 -581 0 +-348 -582 0 diff --git a/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf new file mode 100755 index 000000000..acc999adb --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf @@ -0,0 +1,7546 @@ +c created by edge2cnf +p cnf 984 7544 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-979 -980 0 +-979 -981 0 +-979 -982 0 +-979 -983 0 +-979 -984 0 +-980 -981 0 +-980 -982 0 +-980 -983 0 +-980 -984 0 +-981 -982 0 +-981 -983 0 +-981 -984 0 +-982 -983 0 +-982 -984 0 +-983 -984 0 +979 980 981 982 983 984 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-19 -973 0 +-20 -974 0 +-21 -975 0 +-22 -976 0 +-23 -977 0 +-24 -978 0 +-25 -979 0 +-26 -980 0 +-27 -981 0 +-28 -982 0 +-29 -983 0 +-30 -984 0 +-19 -979 0 +-20 -980 0 +-21 -981 0 +-22 -982 0 +-23 -983 0 +-24 -984 0 +-13 -979 0 +-14 -980 0 +-15 -981 0 +-16 -982 0 +-17 -983 0 +-18 -984 0 +-7 -979 0 +-8 -980 0 +-9 -981 0 +-10 -982 0 +-11 -983 0 +-12 -984 0 +-1 -979 0 +-2 -980 0 +-3 -981 0 +-4 -982 0 +-5 -983 0 +-6 -984 0 +-13 -973 0 +-14 -974 0 +-15 -975 0 +-16 -976 0 +-17 -977 0 +-18 -978 0 +-1 -973 0 +-2 -974 0 +-3 -975 0 +-4 -976 0 +-5 -977 0 +-6 -978 0 +-973 -979 0 +-974 -980 0 +-975 -981 0 +-976 -982 0 +-977 -983 0 +-978 -984 0 +-13 -967 0 +-14 -968 0 +-15 -969 0 +-16 -970 0 +-17 -971 0 +-18 -972 0 +-7 -967 0 +-8 -968 0 +-9 -969 0 +-10 -970 0 +-11 -971 0 +-12 -972 0 +-1 -967 0 +-2 -968 0 +-3 -969 0 +-4 -970 0 +-5 -971 0 +-6 -972 0 +-967 -979 0 +-968 -980 0 +-969 -981 0 +-970 -982 0 +-971 -983 0 +-972 -984 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-7 -961 0 +-8 -962 0 +-9 -963 0 +-10 -964 0 +-11 -965 0 +-12 -966 0 +-1 -961 0 +-2 -962 0 +-3 -963 0 +-4 -964 0 +-5 -965 0 +-6 -966 0 +-961 -979 0 +-962 -980 0 +-963 -981 0 +-964 -982 0 +-965 -983 0 +-966 -984 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-1 -955 0 +-2 -956 0 +-3 -957 0 +-4 -958 0 +-5 -959 0 +-6 -960 0 +-955 -979 0 +-956 -980 0 +-957 -981 0 +-958 -982 0 +-959 -983 0 +-960 -984 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-949 -979 0 +-950 -980 0 +-951 -981 0 +-952 -982 0 +-953 -983 0 +-954 -984 0 +-949 -973 0 +-950 -974 0 +-951 -975 0 +-952 -976 0 +-953 -977 0 +-954 -978 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -919 0 +-890 -920 0 +-891 -921 0 +-892 -922 0 +-893 -923 0 +-894 -924 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-7 -265 0 +-8 -266 0 +-9 -267 0 +-10 -268 0 +-11 -269 0 +-12 -270 0 +-295 -625 0 +-296 -626 0 +-297 -627 0 +-298 -628 0 +-299 -629 0 +-300 -630 0 +-397 -559 0 +-398 -560 0 +-399 -561 0 +-400 -562 0 +-401 -563 0 +-402 -564 0 +-235 -727 0 +-236 -728 0 +-237 -729 0 +-238 -730 0 +-239 -731 0 +-240 -732 0 +-43 -661 0 +-44 -662 0 +-45 -663 0 +-46 -664 0 +-47 -665 0 +-48 -666 0 +-523 -793 0 +-524 -794 0 +-525 -795 0 +-526 -796 0 +-527 -797 0 +-528 -798 0 diff --git a/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf new file mode 100755 index 000000000..039a62814 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf @@ -0,0 +1,7868 @@ +c created by edge2cnf +p cnf 1026 7866 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-979 -980 0 +-979 -981 0 +-979 -982 0 +-979 -983 0 +-979 -984 0 +-980 -981 0 +-980 -982 0 +-980 -983 0 +-980 -984 0 +-981 -982 0 +-981 -983 0 +-981 -984 0 +-982 -983 0 +-982 -984 0 +-983 -984 0 +979 980 981 982 983 984 0 +-985 -986 0 +-985 -987 0 +-985 -988 0 +-985 -989 0 +-985 -990 0 +-986 -987 0 +-986 -988 0 +-986 -989 0 +-986 -990 0 +-987 -988 0 +-987 -989 0 +-987 -990 0 +-988 -989 0 +-988 -990 0 +-989 -990 0 +985 986 987 988 989 990 0 +-991 -992 0 +-991 -993 0 +-991 -994 0 +-991 -995 0 +-991 -996 0 +-992 -993 0 +-992 -994 0 +-992 -995 0 +-992 -996 0 +-993 -994 0 +-993 -995 0 +-993 -996 0 +-994 -995 0 +-994 -996 0 +-995 -996 0 +991 992 993 994 995 996 0 +-997 -998 0 +-997 -999 0 +-997 -1000 0 +-997 -1001 0 +-997 -1002 0 +-998 -999 0 +-998 -1000 0 +-998 -1001 0 +-998 -1002 0 +-999 -1000 0 +-999 -1001 0 +-999 -1002 0 +-1000 -1001 0 +-1000 -1002 0 +-1001 -1002 0 +997 998 999 1000 1001 1002 0 +-1003 -1004 0 +-1003 -1005 0 +-1003 -1006 0 +-1003 -1007 0 +-1003 -1008 0 +-1004 -1005 0 +-1004 -1006 0 +-1004 -1007 0 +-1004 -1008 0 +-1005 -1006 0 +-1005 -1007 0 +-1005 -1008 0 +-1006 -1007 0 +-1006 -1008 0 +-1007 -1008 0 +1003 1004 1005 1006 1007 1008 0 +-1009 -1010 0 +-1009 -1011 0 +-1009 -1012 0 +-1009 -1013 0 +-1009 -1014 0 +-1010 -1011 0 +-1010 -1012 0 +-1010 -1013 0 +-1010 -1014 0 +-1011 -1012 0 +-1011 -1013 0 +-1011 -1014 0 +-1012 -1013 0 +-1012 -1014 0 +-1013 -1014 0 +1009 1010 1011 1012 1013 1014 0 +-1015 -1016 0 +-1015 -1017 0 +-1015 -1018 0 +-1015 -1019 0 +-1015 -1020 0 +-1016 -1017 0 +-1016 -1018 0 +-1016 -1019 0 +-1016 -1020 0 +-1017 -1018 0 +-1017 -1019 0 +-1017 -1020 0 +-1018 -1019 0 +-1018 -1020 0 +-1019 -1020 0 +1015 1016 1017 1018 1019 1020 0 +-1021 -1022 0 +-1021 -1023 0 +-1021 -1024 0 +-1021 -1025 0 +-1021 -1026 0 +-1022 -1023 0 +-1022 -1024 0 +-1022 -1025 0 +-1022 -1026 0 +-1023 -1024 0 +-1023 -1025 0 +-1023 -1026 0 +-1024 -1025 0 +-1024 -1026 0 +-1025 -1026 0 +1021 1022 1023 1024 1025 1026 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-1003 -1021 0 +-1004 -1022 0 +-1005 -1023 0 +-1006 -1024 0 +-1007 -1025 0 +-1008 -1026 0 +-25 -1021 0 +-26 -1022 0 +-27 -1023 0 +-28 -1024 0 +-29 -1025 0 +-30 -1026 0 +-19 -1021 0 +-20 -1022 0 +-21 -1023 0 +-22 -1024 0 +-23 -1025 0 +-24 -1026 0 +-13 -1021 0 +-14 -1022 0 +-15 -1023 0 +-16 -1024 0 +-17 -1025 0 +-18 -1026 0 +-7 -1021 0 +-8 -1022 0 +-9 -1023 0 +-10 -1024 0 +-11 -1025 0 +-12 -1026 0 +-1 -1021 0 +-2 -1022 0 +-3 -1023 0 +-4 -1024 0 +-5 -1025 0 +-6 -1026 0 +-19 -1015 0 +-20 -1016 0 +-21 -1017 0 +-22 -1018 0 +-23 -1019 0 +-24 -1020 0 +-13 -1015 0 +-14 -1016 0 +-15 -1017 0 +-16 -1018 0 +-17 -1019 0 +-18 -1020 0 +-7 -1015 0 +-8 -1016 0 +-9 -1017 0 +-10 -1018 0 +-11 -1019 0 +-12 -1020 0 +-1 -1015 0 +-2 -1016 0 +-3 -1017 0 +-4 -1018 0 +-5 -1019 0 +-6 -1020 0 +-1015 -1021 0 +-1016 -1022 0 +-1017 -1023 0 +-1018 -1024 0 +-1019 -1025 0 +-1020 -1026 0 +-13 -1009 0 +-14 -1010 0 +-15 -1011 0 +-16 -1012 0 +-17 -1013 0 +-18 -1014 0 +-7 -1009 0 +-8 -1010 0 +-9 -1011 0 +-10 -1012 0 +-11 -1013 0 +-12 -1014 0 +-1 -1009 0 +-2 -1010 0 +-3 -1011 0 +-4 -1012 0 +-5 -1013 0 +-6 -1014 0 +-1009 -1021 0 +-1010 -1022 0 +-1011 -1023 0 +-1012 -1024 0 +-1013 -1025 0 +-1014 -1026 0 +-1009 -1015 0 +-1010 -1016 0 +-1011 -1017 0 +-1012 -1018 0 +-1013 -1019 0 +-1014 -1020 0 +-7 -1003 0 +-8 -1004 0 +-9 -1005 0 +-10 -1006 0 +-11 -1007 0 +-12 -1008 0 +-1 -1003 0 +-2 -1004 0 +-3 -1005 0 +-4 -1006 0 +-5 -1007 0 +-6 -1008 0 +-1003 -1015 0 +-1004 -1016 0 +-1005 -1017 0 +-1006 -1018 0 +-1007 -1019 0 +-1008 -1020 0 +-1003 -1009 0 +-1004 -1010 0 +-1005 -1011 0 +-1006 -1012 0 +-1007 -1013 0 +-1008 -1014 0 +-1 -997 0 +-2 -998 0 +-3 -999 0 +-4 -1000 0 +-5 -1001 0 +-6 -1002 0 +-997 -1021 0 +-998 -1022 0 +-999 -1023 0 +-1000 -1024 0 +-1001 -1025 0 +-1002 -1026 0 +-997 -1015 0 +-998 -1016 0 +-999 -1017 0 +-1000 -1018 0 +-1001 -1019 0 +-1002 -1020 0 +-997 -1009 0 +-998 -1010 0 +-999 -1011 0 +-1000 -1012 0 +-1001 -1013 0 +-1002 -1014 0 +-997 -1003 0 +-998 -1004 0 +-999 -1005 0 +-1000 -1006 0 +-1001 -1007 0 +-1002 -1008 0 +-991 -1021 0 +-992 -1022 0 +-993 -1023 0 +-994 -1024 0 +-995 -1025 0 +-996 -1026 0 +-991 -1015 0 +-992 -1016 0 +-993 -1017 0 +-994 -1018 0 +-995 -1019 0 +-996 -1020 0 +-991 -1009 0 +-992 -1010 0 +-993 -1011 0 +-994 -1012 0 +-995 -1013 0 +-996 -1014 0 +-991 -1003 0 +-992 -1004 0 +-993 -1005 0 +-994 -1006 0 +-995 -1007 0 +-996 -1008 0 +-991 -997 0 +-992 -998 0 +-993 -999 0 +-994 -1000 0 +-995 -1001 0 +-996 -1002 0 +-985 -1015 0 +-986 -1016 0 +-987 -1017 0 +-988 -1018 0 +-989 -1019 0 +-990 -1020 0 +-985 -1009 0 +-986 -1010 0 +-987 -1011 0 +-988 -1012 0 +-989 -1013 0 +-990 -1014 0 +-985 -1003 0 +-986 -1004 0 +-987 -1005 0 +-988 -1006 0 +-989 -1007 0 +-990 -1008 0 +-985 -997 0 +-986 -998 0 +-987 -999 0 +-988 -1000 0 +-989 -1001 0 +-990 -1002 0 +-985 -991 0 +-986 -992 0 +-987 -993 0 +-988 -994 0 +-989 -995 0 +-990 -996 0 +-979 -1009 0 +-980 -1010 0 +-981 -1011 0 +-982 -1012 0 +-983 -1013 0 +-984 -1014 0 +-979 -1003 0 +-980 -1004 0 +-981 -1005 0 +-982 -1006 0 +-983 -1007 0 +-984 -1008 0 +-979 -997 0 +-980 -998 0 +-981 -999 0 +-982 -1000 0 +-983 -1001 0 +-984 -1002 0 +-979 -991 0 +-980 -992 0 +-981 -993 0 +-982 -994 0 +-983 -995 0 +-984 -996 0 +-979 -985 0 +-980 -986 0 +-981 -987 0 +-982 -988 0 +-983 -989 0 +-984 -990 0 +-973 -1003 0 +-974 -1004 0 +-975 -1005 0 +-976 -1006 0 +-977 -1007 0 +-978 -1008 0 +-973 -997 0 +-974 -998 0 +-975 -999 0 +-976 -1000 0 +-977 -1001 0 +-978 -1002 0 +-973 -991 0 +-974 -992 0 +-975 -993 0 +-976 -994 0 +-977 -995 0 +-978 -996 0 +-973 -985 0 +-974 -986 0 +-975 -987 0 +-976 -988 0 +-977 -989 0 +-978 -990 0 +-973 -979 0 +-974 -980 0 +-975 -981 0 +-976 -982 0 +-977 -983 0 +-978 -984 0 +-967 -997 0 +-968 -998 0 +-969 -999 0 +-970 -1000 0 +-971 -1001 0 +-972 -1002 0 +-967 -991 0 +-968 -992 0 +-969 -993 0 +-970 -994 0 +-971 -995 0 +-972 -996 0 +-967 -985 0 +-968 -986 0 +-969 -987 0 +-970 -988 0 +-971 -989 0 +-972 -990 0 +-967 -979 0 +-968 -980 0 +-969 -981 0 +-970 -982 0 +-971 -983 0 +-972 -984 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-961 -991 0 +-962 -992 0 +-963 -993 0 +-964 -994 0 +-965 -995 0 +-966 -996 0 +-961 -985 0 +-962 -986 0 +-963 -987 0 +-964 -988 0 +-965 -989 0 +-966 -990 0 +-961 -979 0 +-962 -980 0 +-963 -981 0 +-964 -982 0 +-965 -983 0 +-966 -984 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-955 -985 0 +-956 -986 0 +-957 -987 0 +-958 -988 0 +-959 -989 0 +-960 -990 0 +-955 -979 0 +-956 -980 0 +-957 -981 0 +-958 -982 0 +-959 -983 0 +-960 -984 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -967 0 +-956 -968 0 +-957 -969 0 +-958 -970 0 +-959 -971 0 +-960 -972 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-949 -979 0 +-950 -980 0 +-951 -981 0 +-952 -982 0 +-953 -983 0 +-954 -984 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-289 -823 0 +-290 -824 0 +-291 -825 0 +-292 -826 0 +-293 -827 0 +-294 -828 0 +-517 -577 0 +-518 -578 0 +-519 -579 0 +-520 -580 0 +-521 -581 0 +-522 -582 0 +-169 -829 0 +-170 -830 0 +-171 -831 0 +-172 -832 0 +-173 -833 0 +-174 -834 0 +-499 -859 0 +-500 -860 0 +-501 -861 0 +-502 -862 0 +-503 -863 0 +-504 -864 0 +-151 -313 0 +-152 -314 0 +-153 -315 0 +-154 -316 0 +-155 -317 0 +-156 -318 0 +-385 -775 0 +-386 -776 0 +-387 -777 0 +-388 -778 0 +-389 -779 0 +-390 -780 0 diff --git a/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf new file mode 100755 index 000000000..238c88df9 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf @@ -0,0 +1,11916 @@ +c created by edge2cnf +p cnf 1554 11914 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-979 -980 0 +-979 -981 0 +-979 -982 0 +-979 -983 0 +-979 -984 0 +-980 -981 0 +-980 -982 0 +-980 -983 0 +-980 -984 0 +-981 -982 0 +-981 -983 0 +-981 -984 0 +-982 -983 0 +-982 -984 0 +-983 -984 0 +979 980 981 982 983 984 0 +-985 -986 0 +-985 -987 0 +-985 -988 0 +-985 -989 0 +-985 -990 0 +-986 -987 0 +-986 -988 0 +-986 -989 0 +-986 -990 0 +-987 -988 0 +-987 -989 0 +-987 -990 0 +-988 -989 0 +-988 -990 0 +-989 -990 0 +985 986 987 988 989 990 0 +-991 -992 0 +-991 -993 0 +-991 -994 0 +-991 -995 0 +-991 -996 0 +-992 -993 0 +-992 -994 0 +-992 -995 0 +-992 -996 0 +-993 -994 0 +-993 -995 0 +-993 -996 0 +-994 -995 0 +-994 -996 0 +-995 -996 0 +991 992 993 994 995 996 0 +-997 -998 0 +-997 -999 0 +-997 -1000 0 +-997 -1001 0 +-997 -1002 0 +-998 -999 0 +-998 -1000 0 +-998 -1001 0 +-998 -1002 0 +-999 -1000 0 +-999 -1001 0 +-999 -1002 0 +-1000 -1001 0 +-1000 -1002 0 +-1001 -1002 0 +997 998 999 1000 1001 1002 0 +-1003 -1004 0 +-1003 -1005 0 +-1003 -1006 0 +-1003 -1007 0 +-1003 -1008 0 +-1004 -1005 0 +-1004 -1006 0 +-1004 -1007 0 +-1004 -1008 0 +-1005 -1006 0 +-1005 -1007 0 +-1005 -1008 0 +-1006 -1007 0 +-1006 -1008 0 +-1007 -1008 0 +1003 1004 1005 1006 1007 1008 0 +-1009 -1010 0 +-1009 -1011 0 +-1009 -1012 0 +-1009 -1013 0 +-1009 -1014 0 +-1010 -1011 0 +-1010 -1012 0 +-1010 -1013 0 +-1010 -1014 0 +-1011 -1012 0 +-1011 -1013 0 +-1011 -1014 0 +-1012 -1013 0 +-1012 -1014 0 +-1013 -1014 0 +1009 1010 1011 1012 1013 1014 0 +-1015 -1016 0 +-1015 -1017 0 +-1015 -1018 0 +-1015 -1019 0 +-1015 -1020 0 +-1016 -1017 0 +-1016 -1018 0 +-1016 -1019 0 +-1016 -1020 0 +-1017 -1018 0 +-1017 -1019 0 +-1017 -1020 0 +-1018 -1019 0 +-1018 -1020 0 +-1019 -1020 0 +1015 1016 1017 1018 1019 1020 0 +-1021 -1022 0 +-1021 -1023 0 +-1021 -1024 0 +-1021 -1025 0 +-1021 -1026 0 +-1022 -1023 0 +-1022 -1024 0 +-1022 -1025 0 +-1022 -1026 0 +-1023 -1024 0 +-1023 -1025 0 +-1023 -1026 0 +-1024 -1025 0 +-1024 -1026 0 +-1025 -1026 0 +1021 1022 1023 1024 1025 1026 0 +-1027 -1028 0 +-1027 -1029 0 +-1027 -1030 0 +-1027 -1031 0 +-1027 -1032 0 +-1028 -1029 0 +-1028 -1030 0 +-1028 -1031 0 +-1028 -1032 0 +-1029 -1030 0 +-1029 -1031 0 +-1029 -1032 0 +-1030 -1031 0 +-1030 -1032 0 +-1031 -1032 0 +1027 1028 1029 1030 1031 1032 0 +-1033 -1034 0 +-1033 -1035 0 +-1033 -1036 0 +-1033 -1037 0 +-1033 -1038 0 +-1034 -1035 0 +-1034 -1036 0 +-1034 -1037 0 +-1034 -1038 0 +-1035 -1036 0 +-1035 -1037 0 +-1035 -1038 0 +-1036 -1037 0 +-1036 -1038 0 +-1037 -1038 0 +1033 1034 1035 1036 1037 1038 0 +-1039 -1040 0 +-1039 -1041 0 +-1039 -1042 0 +-1039 -1043 0 +-1039 -1044 0 +-1040 -1041 0 +-1040 -1042 0 +-1040 -1043 0 +-1040 -1044 0 +-1041 -1042 0 +-1041 -1043 0 +-1041 -1044 0 +-1042 -1043 0 +-1042 -1044 0 +-1043 -1044 0 +1039 1040 1041 1042 1043 1044 0 +-1045 -1046 0 +-1045 -1047 0 +-1045 -1048 0 +-1045 -1049 0 +-1045 -1050 0 +-1046 -1047 0 +-1046 -1048 0 +-1046 -1049 0 +-1046 -1050 0 +-1047 -1048 0 +-1047 -1049 0 +-1047 -1050 0 +-1048 -1049 0 +-1048 -1050 0 +-1049 -1050 0 +1045 1046 1047 1048 1049 1050 0 +-1051 -1052 0 +-1051 -1053 0 +-1051 -1054 0 +-1051 -1055 0 +-1051 -1056 0 +-1052 -1053 0 +-1052 -1054 0 +-1052 -1055 0 +-1052 -1056 0 +-1053 -1054 0 +-1053 -1055 0 +-1053 -1056 0 +-1054 -1055 0 +-1054 -1056 0 +-1055 -1056 0 +1051 1052 1053 1054 1055 1056 0 +-1057 -1058 0 +-1057 -1059 0 +-1057 -1060 0 +-1057 -1061 0 +-1057 -1062 0 +-1058 -1059 0 +-1058 -1060 0 +-1058 -1061 0 +-1058 -1062 0 +-1059 -1060 0 +-1059 -1061 0 +-1059 -1062 0 +-1060 -1061 0 +-1060 -1062 0 +-1061 -1062 0 +1057 1058 1059 1060 1061 1062 0 +-1063 -1064 0 +-1063 -1065 0 +-1063 -1066 0 +-1063 -1067 0 +-1063 -1068 0 +-1064 -1065 0 +-1064 -1066 0 +-1064 -1067 0 +-1064 -1068 0 +-1065 -1066 0 +-1065 -1067 0 +-1065 -1068 0 +-1066 -1067 0 +-1066 -1068 0 +-1067 -1068 0 +1063 1064 1065 1066 1067 1068 0 +-1069 -1070 0 +-1069 -1071 0 +-1069 -1072 0 +-1069 -1073 0 +-1069 -1074 0 +-1070 -1071 0 +-1070 -1072 0 +-1070 -1073 0 +-1070 -1074 0 +-1071 -1072 0 +-1071 -1073 0 +-1071 -1074 0 +-1072 -1073 0 +-1072 -1074 0 +-1073 -1074 0 +1069 1070 1071 1072 1073 1074 0 +-1075 -1076 0 +-1075 -1077 0 +-1075 -1078 0 +-1075 -1079 0 +-1075 -1080 0 +-1076 -1077 0 +-1076 -1078 0 +-1076 -1079 0 +-1076 -1080 0 +-1077 -1078 0 +-1077 -1079 0 +-1077 -1080 0 +-1078 -1079 0 +-1078 -1080 0 +-1079 -1080 0 +1075 1076 1077 1078 1079 1080 0 +-1081 -1082 0 +-1081 -1083 0 +-1081 -1084 0 +-1081 -1085 0 +-1081 -1086 0 +-1082 -1083 0 +-1082 -1084 0 +-1082 -1085 0 +-1082 -1086 0 +-1083 -1084 0 +-1083 -1085 0 +-1083 -1086 0 +-1084 -1085 0 +-1084 -1086 0 +-1085 -1086 0 +1081 1082 1083 1084 1085 1086 0 +-1087 -1088 0 +-1087 -1089 0 +-1087 -1090 0 +-1087 -1091 0 +-1087 -1092 0 +-1088 -1089 0 +-1088 -1090 0 +-1088 -1091 0 +-1088 -1092 0 +-1089 -1090 0 +-1089 -1091 0 +-1089 -1092 0 +-1090 -1091 0 +-1090 -1092 0 +-1091 -1092 0 +1087 1088 1089 1090 1091 1092 0 +-1093 -1094 0 +-1093 -1095 0 +-1093 -1096 0 +-1093 -1097 0 +-1093 -1098 0 +-1094 -1095 0 +-1094 -1096 0 +-1094 -1097 0 +-1094 -1098 0 +-1095 -1096 0 +-1095 -1097 0 +-1095 -1098 0 +-1096 -1097 0 +-1096 -1098 0 +-1097 -1098 0 +1093 1094 1095 1096 1097 1098 0 +-1099 -1100 0 +-1099 -1101 0 +-1099 -1102 0 +-1099 -1103 0 +-1099 -1104 0 +-1100 -1101 0 +-1100 -1102 0 +-1100 -1103 0 +-1100 -1104 0 +-1101 -1102 0 +-1101 -1103 0 +-1101 -1104 0 +-1102 -1103 0 +-1102 -1104 0 +-1103 -1104 0 +1099 1100 1101 1102 1103 1104 0 +-1105 -1106 0 +-1105 -1107 0 +-1105 -1108 0 +-1105 -1109 0 +-1105 -1110 0 +-1106 -1107 0 +-1106 -1108 0 +-1106 -1109 0 +-1106 -1110 0 +-1107 -1108 0 +-1107 -1109 0 +-1107 -1110 0 +-1108 -1109 0 +-1108 -1110 0 +-1109 -1110 0 +1105 1106 1107 1108 1109 1110 0 +-1111 -1112 0 +-1111 -1113 0 +-1111 -1114 0 +-1111 -1115 0 +-1111 -1116 0 +-1112 -1113 0 +-1112 -1114 0 +-1112 -1115 0 +-1112 -1116 0 +-1113 -1114 0 +-1113 -1115 0 +-1113 -1116 0 +-1114 -1115 0 +-1114 -1116 0 +-1115 -1116 0 +1111 1112 1113 1114 1115 1116 0 +-1117 -1118 0 +-1117 -1119 0 +-1117 -1120 0 +-1117 -1121 0 +-1117 -1122 0 +-1118 -1119 0 +-1118 -1120 0 +-1118 -1121 0 +-1118 -1122 0 +-1119 -1120 0 +-1119 -1121 0 +-1119 -1122 0 +-1120 -1121 0 +-1120 -1122 0 +-1121 -1122 0 +1117 1118 1119 1120 1121 1122 0 +-1123 -1124 0 +-1123 -1125 0 +-1123 -1126 0 +-1123 -1127 0 +-1123 -1128 0 +-1124 -1125 0 +-1124 -1126 0 +-1124 -1127 0 +-1124 -1128 0 +-1125 -1126 0 +-1125 -1127 0 +-1125 -1128 0 +-1126 -1127 0 +-1126 -1128 0 +-1127 -1128 0 +1123 1124 1125 1126 1127 1128 0 +-1129 -1130 0 +-1129 -1131 0 +-1129 -1132 0 +-1129 -1133 0 +-1129 -1134 0 +-1130 -1131 0 +-1130 -1132 0 +-1130 -1133 0 +-1130 -1134 0 +-1131 -1132 0 +-1131 -1133 0 +-1131 -1134 0 +-1132 -1133 0 +-1132 -1134 0 +-1133 -1134 0 +1129 1130 1131 1132 1133 1134 0 +-1135 -1136 0 +-1135 -1137 0 +-1135 -1138 0 +-1135 -1139 0 +-1135 -1140 0 +-1136 -1137 0 +-1136 -1138 0 +-1136 -1139 0 +-1136 -1140 0 +-1137 -1138 0 +-1137 -1139 0 +-1137 -1140 0 +-1138 -1139 0 +-1138 -1140 0 +-1139 -1140 0 +1135 1136 1137 1138 1139 1140 0 +-1141 -1142 0 +-1141 -1143 0 +-1141 -1144 0 +-1141 -1145 0 +-1141 -1146 0 +-1142 -1143 0 +-1142 -1144 0 +-1142 -1145 0 +-1142 -1146 0 +-1143 -1144 0 +-1143 -1145 0 +-1143 -1146 0 +-1144 -1145 0 +-1144 -1146 0 +-1145 -1146 0 +1141 1142 1143 1144 1145 1146 0 +-1147 -1148 0 +-1147 -1149 0 +-1147 -1150 0 +-1147 -1151 0 +-1147 -1152 0 +-1148 -1149 0 +-1148 -1150 0 +-1148 -1151 0 +-1148 -1152 0 +-1149 -1150 0 +-1149 -1151 0 +-1149 -1152 0 +-1150 -1151 0 +-1150 -1152 0 +-1151 -1152 0 +1147 1148 1149 1150 1151 1152 0 +-1153 -1154 0 +-1153 -1155 0 +-1153 -1156 0 +-1153 -1157 0 +-1153 -1158 0 +-1154 -1155 0 +-1154 -1156 0 +-1154 -1157 0 +-1154 -1158 0 +-1155 -1156 0 +-1155 -1157 0 +-1155 -1158 0 +-1156 -1157 0 +-1156 -1158 0 +-1157 -1158 0 +1153 1154 1155 1156 1157 1158 0 +-1159 -1160 0 +-1159 -1161 0 +-1159 -1162 0 +-1159 -1163 0 +-1159 -1164 0 +-1160 -1161 0 +-1160 -1162 0 +-1160 -1163 0 +-1160 -1164 0 +-1161 -1162 0 +-1161 -1163 0 +-1161 -1164 0 +-1162 -1163 0 +-1162 -1164 0 +-1163 -1164 0 +1159 1160 1161 1162 1163 1164 0 +-1165 -1166 0 +-1165 -1167 0 +-1165 -1168 0 +-1165 -1169 0 +-1165 -1170 0 +-1166 -1167 0 +-1166 -1168 0 +-1166 -1169 0 +-1166 -1170 0 +-1167 -1168 0 +-1167 -1169 0 +-1167 -1170 0 +-1168 -1169 0 +-1168 -1170 0 +-1169 -1170 0 +1165 1166 1167 1168 1169 1170 0 +-1171 -1172 0 +-1171 -1173 0 +-1171 -1174 0 +-1171 -1175 0 +-1171 -1176 0 +-1172 -1173 0 +-1172 -1174 0 +-1172 -1175 0 +-1172 -1176 0 +-1173 -1174 0 +-1173 -1175 0 +-1173 -1176 0 +-1174 -1175 0 +-1174 -1176 0 +-1175 -1176 0 +1171 1172 1173 1174 1175 1176 0 +-1177 -1178 0 +-1177 -1179 0 +-1177 -1180 0 +-1177 -1181 0 +-1177 -1182 0 +-1178 -1179 0 +-1178 -1180 0 +-1178 -1181 0 +-1178 -1182 0 +-1179 -1180 0 +-1179 -1181 0 +-1179 -1182 0 +-1180 -1181 0 +-1180 -1182 0 +-1181 -1182 0 +1177 1178 1179 1180 1181 1182 0 +-1183 -1184 0 +-1183 -1185 0 +-1183 -1186 0 +-1183 -1187 0 +-1183 -1188 0 +-1184 -1185 0 +-1184 -1186 0 +-1184 -1187 0 +-1184 -1188 0 +-1185 -1186 0 +-1185 -1187 0 +-1185 -1188 0 +-1186 -1187 0 +-1186 -1188 0 +-1187 -1188 0 +1183 1184 1185 1186 1187 1188 0 +-1189 -1190 0 +-1189 -1191 0 +-1189 -1192 0 +-1189 -1193 0 +-1189 -1194 0 +-1190 -1191 0 +-1190 -1192 0 +-1190 -1193 0 +-1190 -1194 0 +-1191 -1192 0 +-1191 -1193 0 +-1191 -1194 0 +-1192 -1193 0 +-1192 -1194 0 +-1193 -1194 0 +1189 1190 1191 1192 1193 1194 0 +-1195 -1196 0 +-1195 -1197 0 +-1195 -1198 0 +-1195 -1199 0 +-1195 -1200 0 +-1196 -1197 0 +-1196 -1198 0 +-1196 -1199 0 +-1196 -1200 0 +-1197 -1198 0 +-1197 -1199 0 +-1197 -1200 0 +-1198 -1199 0 +-1198 -1200 0 +-1199 -1200 0 +1195 1196 1197 1198 1199 1200 0 +-1201 -1202 0 +-1201 -1203 0 +-1201 -1204 0 +-1201 -1205 0 +-1201 -1206 0 +-1202 -1203 0 +-1202 -1204 0 +-1202 -1205 0 +-1202 -1206 0 +-1203 -1204 0 +-1203 -1205 0 +-1203 -1206 0 +-1204 -1205 0 +-1204 -1206 0 +-1205 -1206 0 +1201 1202 1203 1204 1205 1206 0 +-1207 -1208 0 +-1207 -1209 0 +-1207 -1210 0 +-1207 -1211 0 +-1207 -1212 0 +-1208 -1209 0 +-1208 -1210 0 +-1208 -1211 0 +-1208 -1212 0 +-1209 -1210 0 +-1209 -1211 0 +-1209 -1212 0 +-1210 -1211 0 +-1210 -1212 0 +-1211 -1212 0 +1207 1208 1209 1210 1211 1212 0 +-1213 -1214 0 +-1213 -1215 0 +-1213 -1216 0 +-1213 -1217 0 +-1213 -1218 0 +-1214 -1215 0 +-1214 -1216 0 +-1214 -1217 0 +-1214 -1218 0 +-1215 -1216 0 +-1215 -1217 0 +-1215 -1218 0 +-1216 -1217 0 +-1216 -1218 0 +-1217 -1218 0 +1213 1214 1215 1216 1217 1218 0 +-1219 -1220 0 +-1219 -1221 0 +-1219 -1222 0 +-1219 -1223 0 +-1219 -1224 0 +-1220 -1221 0 +-1220 -1222 0 +-1220 -1223 0 +-1220 -1224 0 +-1221 -1222 0 +-1221 -1223 0 +-1221 -1224 0 +-1222 -1223 0 +-1222 -1224 0 +-1223 -1224 0 +1219 1220 1221 1222 1223 1224 0 +-1225 -1226 0 +-1225 -1227 0 +-1225 -1228 0 +-1225 -1229 0 +-1225 -1230 0 +-1226 -1227 0 +-1226 -1228 0 +-1226 -1229 0 +-1226 -1230 0 +-1227 -1228 0 +-1227 -1229 0 +-1227 -1230 0 +-1228 -1229 0 +-1228 -1230 0 +-1229 -1230 0 +1225 1226 1227 1228 1229 1230 0 +-1231 -1232 0 +-1231 -1233 0 +-1231 -1234 0 +-1231 -1235 0 +-1231 -1236 0 +-1232 -1233 0 +-1232 -1234 0 +-1232 -1235 0 +-1232 -1236 0 +-1233 -1234 0 +-1233 -1235 0 +-1233 -1236 0 +-1234 -1235 0 +-1234 -1236 0 +-1235 -1236 0 +1231 1232 1233 1234 1235 1236 0 +-1237 -1238 0 +-1237 -1239 0 +-1237 -1240 0 +-1237 -1241 0 +-1237 -1242 0 +-1238 -1239 0 +-1238 -1240 0 +-1238 -1241 0 +-1238 -1242 0 +-1239 -1240 0 +-1239 -1241 0 +-1239 -1242 0 +-1240 -1241 0 +-1240 -1242 0 +-1241 -1242 0 +1237 1238 1239 1240 1241 1242 0 +-1243 -1244 0 +-1243 -1245 0 +-1243 -1246 0 +-1243 -1247 0 +-1243 -1248 0 +-1244 -1245 0 +-1244 -1246 0 +-1244 -1247 0 +-1244 -1248 0 +-1245 -1246 0 +-1245 -1247 0 +-1245 -1248 0 +-1246 -1247 0 +-1246 -1248 0 +-1247 -1248 0 +1243 1244 1245 1246 1247 1248 0 +-1249 -1250 0 +-1249 -1251 0 +-1249 -1252 0 +-1249 -1253 0 +-1249 -1254 0 +-1250 -1251 0 +-1250 -1252 0 +-1250 -1253 0 +-1250 -1254 0 +-1251 -1252 0 +-1251 -1253 0 +-1251 -1254 0 +-1252 -1253 0 +-1252 -1254 0 +-1253 -1254 0 +1249 1250 1251 1252 1253 1254 0 +-1255 -1256 0 +-1255 -1257 0 +-1255 -1258 0 +-1255 -1259 0 +-1255 -1260 0 +-1256 -1257 0 +-1256 -1258 0 +-1256 -1259 0 +-1256 -1260 0 +-1257 -1258 0 +-1257 -1259 0 +-1257 -1260 0 +-1258 -1259 0 +-1258 -1260 0 +-1259 -1260 0 +1255 1256 1257 1258 1259 1260 0 +-1261 -1262 0 +-1261 -1263 0 +-1261 -1264 0 +-1261 -1265 0 +-1261 -1266 0 +-1262 -1263 0 +-1262 -1264 0 +-1262 -1265 0 +-1262 -1266 0 +-1263 -1264 0 +-1263 -1265 0 +-1263 -1266 0 +-1264 -1265 0 +-1264 -1266 0 +-1265 -1266 0 +1261 1262 1263 1264 1265 1266 0 +-1267 -1268 0 +-1267 -1269 0 +-1267 -1270 0 +-1267 -1271 0 +-1267 -1272 0 +-1268 -1269 0 +-1268 -1270 0 +-1268 -1271 0 +-1268 -1272 0 +-1269 -1270 0 +-1269 -1271 0 +-1269 -1272 0 +-1270 -1271 0 +-1270 -1272 0 +-1271 -1272 0 +1267 1268 1269 1270 1271 1272 0 +-1273 -1274 0 +-1273 -1275 0 +-1273 -1276 0 +-1273 -1277 0 +-1273 -1278 0 +-1274 -1275 0 +-1274 -1276 0 +-1274 -1277 0 +-1274 -1278 0 +-1275 -1276 0 +-1275 -1277 0 +-1275 -1278 0 +-1276 -1277 0 +-1276 -1278 0 +-1277 -1278 0 +1273 1274 1275 1276 1277 1278 0 +-1279 -1280 0 +-1279 -1281 0 +-1279 -1282 0 +-1279 -1283 0 +-1279 -1284 0 +-1280 -1281 0 +-1280 -1282 0 +-1280 -1283 0 +-1280 -1284 0 +-1281 -1282 0 +-1281 -1283 0 +-1281 -1284 0 +-1282 -1283 0 +-1282 -1284 0 +-1283 -1284 0 +1279 1280 1281 1282 1283 1284 0 +-1285 -1286 0 +-1285 -1287 0 +-1285 -1288 0 +-1285 -1289 0 +-1285 -1290 0 +-1286 -1287 0 +-1286 -1288 0 +-1286 -1289 0 +-1286 -1290 0 +-1287 -1288 0 +-1287 -1289 0 +-1287 -1290 0 +-1288 -1289 0 +-1288 -1290 0 +-1289 -1290 0 +1285 1286 1287 1288 1289 1290 0 +-1291 -1292 0 +-1291 -1293 0 +-1291 -1294 0 +-1291 -1295 0 +-1291 -1296 0 +-1292 -1293 0 +-1292 -1294 0 +-1292 -1295 0 +-1292 -1296 0 +-1293 -1294 0 +-1293 -1295 0 +-1293 -1296 0 +-1294 -1295 0 +-1294 -1296 0 +-1295 -1296 0 +1291 1292 1293 1294 1295 1296 0 +-1297 -1298 0 +-1297 -1299 0 +-1297 -1300 0 +-1297 -1301 0 +-1297 -1302 0 +-1298 -1299 0 +-1298 -1300 0 +-1298 -1301 0 +-1298 -1302 0 +-1299 -1300 0 +-1299 -1301 0 +-1299 -1302 0 +-1300 -1301 0 +-1300 -1302 0 +-1301 -1302 0 +1297 1298 1299 1300 1301 1302 0 +-1303 -1304 0 +-1303 -1305 0 +-1303 -1306 0 +-1303 -1307 0 +-1303 -1308 0 +-1304 -1305 0 +-1304 -1306 0 +-1304 -1307 0 +-1304 -1308 0 +-1305 -1306 0 +-1305 -1307 0 +-1305 -1308 0 +-1306 -1307 0 +-1306 -1308 0 +-1307 -1308 0 +1303 1304 1305 1306 1307 1308 0 +-1309 -1310 0 +-1309 -1311 0 +-1309 -1312 0 +-1309 -1313 0 +-1309 -1314 0 +-1310 -1311 0 +-1310 -1312 0 +-1310 -1313 0 +-1310 -1314 0 +-1311 -1312 0 +-1311 -1313 0 +-1311 -1314 0 +-1312 -1313 0 +-1312 -1314 0 +-1313 -1314 0 +1309 1310 1311 1312 1313 1314 0 +-1315 -1316 0 +-1315 -1317 0 +-1315 -1318 0 +-1315 -1319 0 +-1315 -1320 0 +-1316 -1317 0 +-1316 -1318 0 +-1316 -1319 0 +-1316 -1320 0 +-1317 -1318 0 +-1317 -1319 0 +-1317 -1320 0 +-1318 -1319 0 +-1318 -1320 0 +-1319 -1320 0 +1315 1316 1317 1318 1319 1320 0 +-1321 -1322 0 +-1321 -1323 0 +-1321 -1324 0 +-1321 -1325 0 +-1321 -1326 0 +-1322 -1323 0 +-1322 -1324 0 +-1322 -1325 0 +-1322 -1326 0 +-1323 -1324 0 +-1323 -1325 0 +-1323 -1326 0 +-1324 -1325 0 +-1324 -1326 0 +-1325 -1326 0 +1321 1322 1323 1324 1325 1326 0 +-1327 -1328 0 +-1327 -1329 0 +-1327 -1330 0 +-1327 -1331 0 +-1327 -1332 0 +-1328 -1329 0 +-1328 -1330 0 +-1328 -1331 0 +-1328 -1332 0 +-1329 -1330 0 +-1329 -1331 0 +-1329 -1332 0 +-1330 -1331 0 +-1330 -1332 0 +-1331 -1332 0 +1327 1328 1329 1330 1331 1332 0 +-1333 -1334 0 +-1333 -1335 0 +-1333 -1336 0 +-1333 -1337 0 +-1333 -1338 0 +-1334 -1335 0 +-1334 -1336 0 +-1334 -1337 0 +-1334 -1338 0 +-1335 -1336 0 +-1335 -1337 0 +-1335 -1338 0 +-1336 -1337 0 +-1336 -1338 0 +-1337 -1338 0 +1333 1334 1335 1336 1337 1338 0 +-1339 -1340 0 +-1339 -1341 0 +-1339 -1342 0 +-1339 -1343 0 +-1339 -1344 0 +-1340 -1341 0 +-1340 -1342 0 +-1340 -1343 0 +-1340 -1344 0 +-1341 -1342 0 +-1341 -1343 0 +-1341 -1344 0 +-1342 -1343 0 +-1342 -1344 0 +-1343 -1344 0 +1339 1340 1341 1342 1343 1344 0 +-1345 -1346 0 +-1345 -1347 0 +-1345 -1348 0 +-1345 -1349 0 +-1345 -1350 0 +-1346 -1347 0 +-1346 -1348 0 +-1346 -1349 0 +-1346 -1350 0 +-1347 -1348 0 +-1347 -1349 0 +-1347 -1350 0 +-1348 -1349 0 +-1348 -1350 0 +-1349 -1350 0 +1345 1346 1347 1348 1349 1350 0 +-1351 -1352 0 +-1351 -1353 0 +-1351 -1354 0 +-1351 -1355 0 +-1351 -1356 0 +-1352 -1353 0 +-1352 -1354 0 +-1352 -1355 0 +-1352 -1356 0 +-1353 -1354 0 +-1353 -1355 0 +-1353 -1356 0 +-1354 -1355 0 +-1354 -1356 0 +-1355 -1356 0 +1351 1352 1353 1354 1355 1356 0 +-1357 -1358 0 +-1357 -1359 0 +-1357 -1360 0 +-1357 -1361 0 +-1357 -1362 0 +-1358 -1359 0 +-1358 -1360 0 +-1358 -1361 0 +-1358 -1362 0 +-1359 -1360 0 +-1359 -1361 0 +-1359 -1362 0 +-1360 -1361 0 +-1360 -1362 0 +-1361 -1362 0 +1357 1358 1359 1360 1361 1362 0 +-1363 -1364 0 +-1363 -1365 0 +-1363 -1366 0 +-1363 -1367 0 +-1363 -1368 0 +-1364 -1365 0 +-1364 -1366 0 +-1364 -1367 0 +-1364 -1368 0 +-1365 -1366 0 +-1365 -1367 0 +-1365 -1368 0 +-1366 -1367 0 +-1366 -1368 0 +-1367 -1368 0 +1363 1364 1365 1366 1367 1368 0 +-1369 -1370 0 +-1369 -1371 0 +-1369 -1372 0 +-1369 -1373 0 +-1369 -1374 0 +-1370 -1371 0 +-1370 -1372 0 +-1370 -1373 0 +-1370 -1374 0 +-1371 -1372 0 +-1371 -1373 0 +-1371 -1374 0 +-1372 -1373 0 +-1372 -1374 0 +-1373 -1374 0 +1369 1370 1371 1372 1373 1374 0 +-1375 -1376 0 +-1375 -1377 0 +-1375 -1378 0 +-1375 -1379 0 +-1375 -1380 0 +-1376 -1377 0 +-1376 -1378 0 +-1376 -1379 0 +-1376 -1380 0 +-1377 -1378 0 +-1377 -1379 0 +-1377 -1380 0 +-1378 -1379 0 +-1378 -1380 0 +-1379 -1380 0 +1375 1376 1377 1378 1379 1380 0 +-1381 -1382 0 +-1381 -1383 0 +-1381 -1384 0 +-1381 -1385 0 +-1381 -1386 0 +-1382 -1383 0 +-1382 -1384 0 +-1382 -1385 0 +-1382 -1386 0 +-1383 -1384 0 +-1383 -1385 0 +-1383 -1386 0 +-1384 -1385 0 +-1384 -1386 0 +-1385 -1386 0 +1381 1382 1383 1384 1385 1386 0 +-1387 -1388 0 +-1387 -1389 0 +-1387 -1390 0 +-1387 -1391 0 +-1387 -1392 0 +-1388 -1389 0 +-1388 -1390 0 +-1388 -1391 0 +-1388 -1392 0 +-1389 -1390 0 +-1389 -1391 0 +-1389 -1392 0 +-1390 -1391 0 +-1390 -1392 0 +-1391 -1392 0 +1387 1388 1389 1390 1391 1392 0 +-1393 -1394 0 +-1393 -1395 0 +-1393 -1396 0 +-1393 -1397 0 +-1393 -1398 0 +-1394 -1395 0 +-1394 -1396 0 +-1394 -1397 0 +-1394 -1398 0 +-1395 -1396 0 +-1395 -1397 0 +-1395 -1398 0 +-1396 -1397 0 +-1396 -1398 0 +-1397 -1398 0 +1393 1394 1395 1396 1397 1398 0 +-1399 -1400 0 +-1399 -1401 0 +-1399 -1402 0 +-1399 -1403 0 +-1399 -1404 0 +-1400 -1401 0 +-1400 -1402 0 +-1400 -1403 0 +-1400 -1404 0 +-1401 -1402 0 +-1401 -1403 0 +-1401 -1404 0 +-1402 -1403 0 +-1402 -1404 0 +-1403 -1404 0 +1399 1400 1401 1402 1403 1404 0 +-1405 -1406 0 +-1405 -1407 0 +-1405 -1408 0 +-1405 -1409 0 +-1405 -1410 0 +-1406 -1407 0 +-1406 -1408 0 +-1406 -1409 0 +-1406 -1410 0 +-1407 -1408 0 +-1407 -1409 0 +-1407 -1410 0 +-1408 -1409 0 +-1408 -1410 0 +-1409 -1410 0 +1405 1406 1407 1408 1409 1410 0 +-1411 -1412 0 +-1411 -1413 0 +-1411 -1414 0 +-1411 -1415 0 +-1411 -1416 0 +-1412 -1413 0 +-1412 -1414 0 +-1412 -1415 0 +-1412 -1416 0 +-1413 -1414 0 +-1413 -1415 0 +-1413 -1416 0 +-1414 -1415 0 +-1414 -1416 0 +-1415 -1416 0 +1411 1412 1413 1414 1415 1416 0 +-1417 -1418 0 +-1417 -1419 0 +-1417 -1420 0 +-1417 -1421 0 +-1417 -1422 0 +-1418 -1419 0 +-1418 -1420 0 +-1418 -1421 0 +-1418 -1422 0 +-1419 -1420 0 +-1419 -1421 0 +-1419 -1422 0 +-1420 -1421 0 +-1420 -1422 0 +-1421 -1422 0 +1417 1418 1419 1420 1421 1422 0 +-1423 -1424 0 +-1423 -1425 0 +-1423 -1426 0 +-1423 -1427 0 +-1423 -1428 0 +-1424 -1425 0 +-1424 -1426 0 +-1424 -1427 0 +-1424 -1428 0 +-1425 -1426 0 +-1425 -1427 0 +-1425 -1428 0 +-1426 -1427 0 +-1426 -1428 0 +-1427 -1428 0 +1423 1424 1425 1426 1427 1428 0 +-1429 -1430 0 +-1429 -1431 0 +-1429 -1432 0 +-1429 -1433 0 +-1429 -1434 0 +-1430 -1431 0 +-1430 -1432 0 +-1430 -1433 0 +-1430 -1434 0 +-1431 -1432 0 +-1431 -1433 0 +-1431 -1434 0 +-1432 -1433 0 +-1432 -1434 0 +-1433 -1434 0 +1429 1430 1431 1432 1433 1434 0 +-1435 -1436 0 +-1435 -1437 0 +-1435 -1438 0 +-1435 -1439 0 +-1435 -1440 0 +-1436 -1437 0 +-1436 -1438 0 +-1436 -1439 0 +-1436 -1440 0 +-1437 -1438 0 +-1437 -1439 0 +-1437 -1440 0 +-1438 -1439 0 +-1438 -1440 0 +-1439 -1440 0 +1435 1436 1437 1438 1439 1440 0 +-1441 -1442 0 +-1441 -1443 0 +-1441 -1444 0 +-1441 -1445 0 +-1441 -1446 0 +-1442 -1443 0 +-1442 -1444 0 +-1442 -1445 0 +-1442 -1446 0 +-1443 -1444 0 +-1443 -1445 0 +-1443 -1446 0 +-1444 -1445 0 +-1444 -1446 0 +-1445 -1446 0 +1441 1442 1443 1444 1445 1446 0 +-1447 -1448 0 +-1447 -1449 0 +-1447 -1450 0 +-1447 -1451 0 +-1447 -1452 0 +-1448 -1449 0 +-1448 -1450 0 +-1448 -1451 0 +-1448 -1452 0 +-1449 -1450 0 +-1449 -1451 0 +-1449 -1452 0 +-1450 -1451 0 +-1450 -1452 0 +-1451 -1452 0 +1447 1448 1449 1450 1451 1452 0 +-1453 -1454 0 +-1453 -1455 0 +-1453 -1456 0 +-1453 -1457 0 +-1453 -1458 0 +-1454 -1455 0 +-1454 -1456 0 +-1454 -1457 0 +-1454 -1458 0 +-1455 -1456 0 +-1455 -1457 0 +-1455 -1458 0 +-1456 -1457 0 +-1456 -1458 0 +-1457 -1458 0 +1453 1454 1455 1456 1457 1458 0 +-1459 -1460 0 +-1459 -1461 0 +-1459 -1462 0 +-1459 -1463 0 +-1459 -1464 0 +-1460 -1461 0 +-1460 -1462 0 +-1460 -1463 0 +-1460 -1464 0 +-1461 -1462 0 +-1461 -1463 0 +-1461 -1464 0 +-1462 -1463 0 +-1462 -1464 0 +-1463 -1464 0 +1459 1460 1461 1462 1463 1464 0 +-1465 -1466 0 +-1465 -1467 0 +-1465 -1468 0 +-1465 -1469 0 +-1465 -1470 0 +-1466 -1467 0 +-1466 -1468 0 +-1466 -1469 0 +-1466 -1470 0 +-1467 -1468 0 +-1467 -1469 0 +-1467 -1470 0 +-1468 -1469 0 +-1468 -1470 0 +-1469 -1470 0 +1465 1466 1467 1468 1469 1470 0 +-1471 -1472 0 +-1471 -1473 0 +-1471 -1474 0 +-1471 -1475 0 +-1471 -1476 0 +-1472 -1473 0 +-1472 -1474 0 +-1472 -1475 0 +-1472 -1476 0 +-1473 -1474 0 +-1473 -1475 0 +-1473 -1476 0 +-1474 -1475 0 +-1474 -1476 0 +-1475 -1476 0 +1471 1472 1473 1474 1475 1476 0 +-1477 -1478 0 +-1477 -1479 0 +-1477 -1480 0 +-1477 -1481 0 +-1477 -1482 0 +-1478 -1479 0 +-1478 -1480 0 +-1478 -1481 0 +-1478 -1482 0 +-1479 -1480 0 +-1479 -1481 0 +-1479 -1482 0 +-1480 -1481 0 +-1480 -1482 0 +-1481 -1482 0 +1477 1478 1479 1480 1481 1482 0 +-1483 -1484 0 +-1483 -1485 0 +-1483 -1486 0 +-1483 -1487 0 +-1483 -1488 0 +-1484 -1485 0 +-1484 -1486 0 +-1484 -1487 0 +-1484 -1488 0 +-1485 -1486 0 +-1485 -1487 0 +-1485 -1488 0 +-1486 -1487 0 +-1486 -1488 0 +-1487 -1488 0 +1483 1484 1485 1486 1487 1488 0 +-1489 -1490 0 +-1489 -1491 0 +-1489 -1492 0 +-1489 -1493 0 +-1489 -1494 0 +-1490 -1491 0 +-1490 -1492 0 +-1490 -1493 0 +-1490 -1494 0 +-1491 -1492 0 +-1491 -1493 0 +-1491 -1494 0 +-1492 -1493 0 +-1492 -1494 0 +-1493 -1494 0 +1489 1490 1491 1492 1493 1494 0 +-1495 -1496 0 +-1495 -1497 0 +-1495 -1498 0 +-1495 -1499 0 +-1495 -1500 0 +-1496 -1497 0 +-1496 -1498 0 +-1496 -1499 0 +-1496 -1500 0 +-1497 -1498 0 +-1497 -1499 0 +-1497 -1500 0 +-1498 -1499 0 +-1498 -1500 0 +-1499 -1500 0 +1495 1496 1497 1498 1499 1500 0 +-1501 -1502 0 +-1501 -1503 0 +-1501 -1504 0 +-1501 -1505 0 +-1501 -1506 0 +-1502 -1503 0 +-1502 -1504 0 +-1502 -1505 0 +-1502 -1506 0 +-1503 -1504 0 +-1503 -1505 0 +-1503 -1506 0 +-1504 -1505 0 +-1504 -1506 0 +-1505 -1506 0 +1501 1502 1503 1504 1505 1506 0 +-1507 -1508 0 +-1507 -1509 0 +-1507 -1510 0 +-1507 -1511 0 +-1507 -1512 0 +-1508 -1509 0 +-1508 -1510 0 +-1508 -1511 0 +-1508 -1512 0 +-1509 -1510 0 +-1509 -1511 0 +-1509 -1512 0 +-1510 -1511 0 +-1510 -1512 0 +-1511 -1512 0 +1507 1508 1509 1510 1511 1512 0 +-1513 -1514 0 +-1513 -1515 0 +-1513 -1516 0 +-1513 -1517 0 +-1513 -1518 0 +-1514 -1515 0 +-1514 -1516 0 +-1514 -1517 0 +-1514 -1518 0 +-1515 -1516 0 +-1515 -1517 0 +-1515 -1518 0 +-1516 -1517 0 +-1516 -1518 0 +-1517 -1518 0 +1513 1514 1515 1516 1517 1518 0 +-1519 -1520 0 +-1519 -1521 0 +-1519 -1522 0 +-1519 -1523 0 +-1519 -1524 0 +-1520 -1521 0 +-1520 -1522 0 +-1520 -1523 0 +-1520 -1524 0 +-1521 -1522 0 +-1521 -1523 0 +-1521 -1524 0 +-1522 -1523 0 +-1522 -1524 0 +-1523 -1524 0 +1519 1520 1521 1522 1523 1524 0 +-1525 -1526 0 +-1525 -1527 0 +-1525 -1528 0 +-1525 -1529 0 +-1525 -1530 0 +-1526 -1527 0 +-1526 -1528 0 +-1526 -1529 0 +-1526 -1530 0 +-1527 -1528 0 +-1527 -1529 0 +-1527 -1530 0 +-1528 -1529 0 +-1528 -1530 0 +-1529 -1530 0 +1525 1526 1527 1528 1529 1530 0 +-1531 -1532 0 +-1531 -1533 0 +-1531 -1534 0 +-1531 -1535 0 +-1531 -1536 0 +-1532 -1533 0 +-1532 -1534 0 +-1532 -1535 0 +-1532 -1536 0 +-1533 -1534 0 +-1533 -1535 0 +-1533 -1536 0 +-1534 -1535 0 +-1534 -1536 0 +-1535 -1536 0 +1531 1532 1533 1534 1535 1536 0 +-1537 -1538 0 +-1537 -1539 0 +-1537 -1540 0 +-1537 -1541 0 +-1537 -1542 0 +-1538 -1539 0 +-1538 -1540 0 +-1538 -1541 0 +-1538 -1542 0 +-1539 -1540 0 +-1539 -1541 0 +-1539 -1542 0 +-1540 -1541 0 +-1540 -1542 0 +-1541 -1542 0 +1537 1538 1539 1540 1541 1542 0 +-1543 -1544 0 +-1543 -1545 0 +-1543 -1546 0 +-1543 -1547 0 +-1543 -1548 0 +-1544 -1545 0 +-1544 -1546 0 +-1544 -1547 0 +-1544 -1548 0 +-1545 -1546 0 +-1545 -1547 0 +-1545 -1548 0 +-1546 -1547 0 +-1546 -1548 0 +-1547 -1548 0 +1543 1544 1545 1546 1547 1548 0 +-1549 -1550 0 +-1549 -1551 0 +-1549 -1552 0 +-1549 -1553 0 +-1549 -1554 0 +-1550 -1551 0 +-1550 -1552 0 +-1550 -1553 0 +-1550 -1554 0 +-1551 -1552 0 +-1551 -1553 0 +-1551 -1554 0 +-1552 -1553 0 +-1552 -1554 0 +-1553 -1554 0 +1549 1550 1551 1552 1553 1554 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-973 -1003 0 +-974 -1004 0 +-975 -1005 0 +-976 -1006 0 +-977 -1007 0 +-978 -1008 0 +-985 -1003 0 +-986 -1004 0 +-987 -1005 0 +-988 -1006 0 +-989 -1007 0 +-990 -1008 0 +-997 -1009 0 +-998 -1010 0 +-999 -1011 0 +-1000 -1012 0 +-1001 -1013 0 +-1002 -1014 0 +-1033 -1057 0 +-1034 -1058 0 +-1035 -1059 0 +-1036 -1060 0 +-1037 -1061 0 +-1038 -1062 0 +-1051 -1081 0 +-1052 -1082 0 +-1053 -1083 0 +-1054 -1084 0 +-1055 -1085 0 +-1056 -1086 0 +-1063 -1075 0 +-1064 -1076 0 +-1065 -1077 0 +-1066 -1078 0 +-1067 -1079 0 +-1068 -1080 0 +-1063 -1081 0 +-1064 -1082 0 +-1065 -1083 0 +-1066 -1084 0 +-1067 -1085 0 +-1068 -1086 0 +-1069 -1087 0 +-1070 -1088 0 +-1071 -1089 0 +-1072 -1090 0 +-1073 -1091 0 +-1074 -1092 0 +-1135 -1147 0 +-1136 -1148 0 +-1137 -1149 0 +-1138 -1150 0 +-1139 -1151 0 +-1140 -1152 0 +-1159 -1177 0 +-1160 -1178 0 +-1161 -1179 0 +-1162 -1180 0 +-1163 -1181 0 +-1164 -1182 0 +-1189 -1201 0 +-1190 -1202 0 +-1191 -1203 0 +-1192 -1204 0 +-1193 -1205 0 +-1194 -1206 0 +-1345 -1357 0 +-1346 -1358 0 +-1347 -1359 0 +-1348 -1360 0 +-1349 -1361 0 +-1350 -1362 0 +-1387 -1411 0 +-1388 -1412 0 +-1389 -1413 0 +-1390 -1414 0 +-1391 -1415 0 +-1392 -1416 0 +-1405 -1435 0 +-1406 -1436 0 +-1407 -1437 0 +-1408 -1438 0 +-1409 -1439 0 +-1410 -1440 0 +-1417 -1447 0 +-1418 -1448 0 +-1419 -1449 0 +-1420 -1450 0 +-1421 -1451 0 +-1422 -1452 0 +-1453 -1459 0 +-1454 -1460 0 +-1455 -1461 0 +-1456 -1462 0 +-1457 -1463 0 +-1458 -1464 0 +-1453 -1465 0 +-1454 -1466 0 +-1455 -1467 0 +-1456 -1468 0 +-1457 -1469 0 +-1458 -1470 0 +-1501 -1519 0 +-1502 -1520 0 +-1503 -1521 0 +-1504 -1522 0 +-1505 -1523 0 +-1506 -1524 0 +-13 -1537 0 +-14 -1538 0 +-15 -1539 0 +-16 -1540 0 +-17 -1541 0 +-18 -1542 0 +-25 -1549 0 +-26 -1550 0 +-27 -1551 0 +-28 -1552 0 +-29 -1553 0 +-30 -1554 0 +-19 -1549 0 +-20 -1550 0 +-21 -1551 0 +-22 -1552 0 +-23 -1553 0 +-24 -1554 0 +-13 -1549 0 +-14 -1550 0 +-15 -1551 0 +-16 -1552 0 +-17 -1553 0 +-18 -1554 0 +-7 -1549 0 +-8 -1550 0 +-9 -1551 0 +-10 -1552 0 +-11 -1553 0 +-12 -1554 0 +-1 -1549 0 +-2 -1550 0 +-3 -1551 0 +-4 -1552 0 +-5 -1553 0 +-6 -1554 0 +-19 -1543 0 +-20 -1544 0 +-21 -1545 0 +-22 -1546 0 +-23 -1547 0 +-24 -1548 0 +-13 -1543 0 +-14 -1544 0 +-15 -1545 0 +-16 -1546 0 +-17 -1547 0 +-18 -1548 0 +-7 -1543 0 +-8 -1544 0 +-9 -1545 0 +-10 -1546 0 +-11 -1547 0 +-12 -1548 0 +-1 -1543 0 +-2 -1544 0 +-3 -1545 0 +-4 -1546 0 +-5 -1547 0 +-6 -1548 0 +-1543 -1549 0 +-1544 -1550 0 +-1545 -1551 0 +-1546 -1552 0 +-1547 -1553 0 +-1548 -1554 0 +-7 -1537 0 +-8 -1538 0 +-9 -1539 0 +-10 -1540 0 +-11 -1541 0 +-12 -1542 0 +-1 -1537 0 +-2 -1538 0 +-3 -1539 0 +-4 -1540 0 +-5 -1541 0 +-6 -1542 0 +-1537 -1549 0 +-1538 -1550 0 +-1539 -1551 0 +-1540 -1552 0 +-1541 -1553 0 +-1542 -1554 0 +-1537 -1543 0 +-1538 -1544 0 +-1539 -1545 0 +-1540 -1546 0 +-1541 -1547 0 +-1542 -1548 0 +-7 -1531 0 +-8 -1532 0 +-9 -1533 0 +-10 -1534 0 +-11 -1535 0 +-12 -1536 0 +-1 -1531 0 +-2 -1532 0 +-3 -1533 0 +-4 -1534 0 +-5 -1535 0 +-6 -1536 0 +-1531 -1549 0 +-1532 -1550 0 +-1533 -1551 0 +-1534 -1552 0 +-1535 -1553 0 +-1536 -1554 0 +-1531 -1543 0 +-1532 -1544 0 +-1533 -1545 0 +-1534 -1546 0 +-1535 -1547 0 +-1536 -1548 0 +-1531 -1537 0 +-1532 -1538 0 +-1533 -1539 0 +-1534 -1540 0 +-1535 -1541 0 +-1536 -1542 0 +-1 -1525 0 +-2 -1526 0 +-3 -1527 0 +-4 -1528 0 +-5 -1529 0 +-6 -1530 0 +-1525 -1549 0 +-1526 -1550 0 +-1527 -1551 0 +-1528 -1552 0 +-1529 -1553 0 +-1530 -1554 0 +-1525 -1543 0 +-1526 -1544 0 +-1527 -1545 0 +-1528 -1546 0 +-1529 -1547 0 +-1530 -1548 0 +-1525 -1537 0 +-1526 -1538 0 +-1527 -1539 0 +-1528 -1540 0 +-1529 -1541 0 +-1530 -1542 0 +-1525 -1531 0 +-1526 -1532 0 +-1527 -1533 0 +-1528 -1534 0 +-1529 -1535 0 +-1530 -1536 0 +-1519 -1549 0 +-1520 -1550 0 +-1521 -1551 0 +-1522 -1552 0 +-1523 -1553 0 +-1524 -1554 0 +-1519 -1543 0 +-1520 -1544 0 +-1521 -1545 0 +-1522 -1546 0 +-1523 -1547 0 +-1524 -1548 0 +-1519 -1537 0 +-1520 -1538 0 +-1521 -1539 0 +-1522 -1540 0 +-1523 -1541 0 +-1524 -1542 0 +-1519 -1531 0 +-1520 -1532 0 +-1521 -1533 0 +-1522 -1534 0 +-1523 -1535 0 +-1524 -1536 0 +-1519 -1525 0 +-1520 -1526 0 +-1521 -1527 0 +-1522 -1528 0 +-1523 -1529 0 +-1524 -1530 0 +-1513 -1543 0 +-1514 -1544 0 +-1515 -1545 0 +-1516 -1546 0 +-1517 -1547 0 +-1518 -1548 0 +-1513 -1537 0 +-1514 -1538 0 +-1515 -1539 0 +-1516 -1540 0 +-1517 -1541 0 +-1518 -1542 0 +-1513 -1531 0 +-1514 -1532 0 +-1515 -1533 0 +-1516 -1534 0 +-1517 -1535 0 +-1518 -1536 0 +-1513 -1525 0 +-1514 -1526 0 +-1515 -1527 0 +-1516 -1528 0 +-1517 -1529 0 +-1518 -1530 0 +-1513 -1519 0 +-1514 -1520 0 +-1515 -1521 0 +-1516 -1522 0 +-1517 -1523 0 +-1518 -1524 0 +-1507 -1537 0 +-1508 -1538 0 +-1509 -1539 0 +-1510 -1540 0 +-1511 -1541 0 +-1512 -1542 0 +-1507 -1531 0 +-1508 -1532 0 +-1509 -1533 0 +-1510 -1534 0 +-1511 -1535 0 +-1512 -1536 0 +-1507 -1525 0 +-1508 -1526 0 +-1509 -1527 0 +-1510 -1528 0 +-1511 -1529 0 +-1512 -1530 0 +-1507 -1519 0 +-1508 -1520 0 +-1509 -1521 0 +-1510 -1522 0 +-1511 -1523 0 +-1512 -1524 0 +-1507 -1513 0 +-1508 -1514 0 +-1509 -1515 0 +-1510 -1516 0 +-1511 -1517 0 +-1512 -1518 0 +-1501 -1531 0 +-1502 -1532 0 +-1503 -1533 0 +-1504 -1534 0 +-1505 -1535 0 +-1506 -1536 0 +-1501 -1525 0 +-1502 -1526 0 +-1503 -1527 0 +-1504 -1528 0 +-1505 -1529 0 +-1506 -1530 0 +-1501 -1513 0 +-1502 -1514 0 +-1503 -1515 0 +-1504 -1516 0 +-1505 -1517 0 +-1506 -1518 0 +-1501 -1507 0 +-1502 -1508 0 +-1503 -1509 0 +-1504 -1510 0 +-1505 -1511 0 +-1506 -1512 0 +-1495 -1525 0 +-1496 -1526 0 +-1497 -1527 0 +-1498 -1528 0 +-1499 -1529 0 +-1500 -1530 0 +-1495 -1519 0 +-1496 -1520 0 +-1497 -1521 0 +-1498 -1522 0 +-1499 -1523 0 +-1500 -1524 0 +-1495 -1513 0 +-1496 -1514 0 +-1497 -1515 0 +-1498 -1516 0 +-1499 -1517 0 +-1500 -1518 0 +-1495 -1507 0 +-1496 -1508 0 +-1497 -1509 0 +-1498 -1510 0 +-1499 -1511 0 +-1500 -1512 0 +-1495 -1501 0 +-1496 -1502 0 +-1497 -1503 0 +-1498 -1504 0 +-1499 -1505 0 +-1500 -1506 0 +-1489 -1519 0 +-1490 -1520 0 +-1491 -1521 0 +-1492 -1522 0 +-1493 -1523 0 +-1494 -1524 0 +-1489 -1513 0 +-1490 -1514 0 +-1491 -1515 0 +-1492 -1516 0 +-1493 -1517 0 +-1494 -1518 0 +-1489 -1507 0 +-1490 -1508 0 +-1491 -1509 0 +-1492 -1510 0 +-1493 -1511 0 +-1494 -1512 0 +-1489 -1501 0 +-1490 -1502 0 +-1491 -1503 0 +-1492 -1504 0 +-1493 -1505 0 +-1494 -1506 0 +-1489 -1495 0 +-1490 -1496 0 +-1491 -1497 0 +-1492 -1498 0 +-1493 -1499 0 +-1494 -1500 0 +-1483 -1513 0 +-1484 -1514 0 +-1485 -1515 0 +-1486 -1516 0 +-1487 -1517 0 +-1488 -1518 0 +-1483 -1507 0 +-1484 -1508 0 +-1485 -1509 0 +-1486 -1510 0 +-1487 -1511 0 +-1488 -1512 0 +-1483 -1501 0 +-1484 -1502 0 +-1485 -1503 0 +-1486 -1504 0 +-1487 -1505 0 +-1488 -1506 0 +-1483 -1495 0 +-1484 -1496 0 +-1485 -1497 0 +-1486 -1498 0 +-1487 -1499 0 +-1488 -1500 0 +-1483 -1489 0 +-1484 -1490 0 +-1485 -1491 0 +-1486 -1492 0 +-1487 -1493 0 +-1488 -1494 0 +-1477 -1507 0 +-1478 -1508 0 +-1479 -1509 0 +-1480 -1510 0 +-1481 -1511 0 +-1482 -1512 0 +-1477 -1501 0 +-1478 -1502 0 +-1479 -1503 0 +-1480 -1504 0 +-1481 -1505 0 +-1482 -1506 0 +-1477 -1495 0 +-1478 -1496 0 +-1479 -1497 0 +-1480 -1498 0 +-1481 -1499 0 +-1482 -1500 0 +-1477 -1489 0 +-1478 -1490 0 +-1479 -1491 0 +-1480 -1492 0 +-1481 -1493 0 +-1482 -1494 0 +-1477 -1483 0 +-1478 -1484 0 +-1479 -1485 0 +-1480 -1486 0 +-1481 -1487 0 +-1482 -1488 0 +-1471 -1501 0 +-1472 -1502 0 +-1473 -1503 0 +-1474 -1504 0 +-1475 -1505 0 +-1476 -1506 0 +-1471 -1495 0 +-1472 -1496 0 +-1473 -1497 0 +-1474 -1498 0 +-1475 -1499 0 +-1476 -1500 0 +-1471 -1489 0 +-1472 -1490 0 +-1473 -1491 0 +-1474 -1492 0 +-1475 -1493 0 +-1476 -1494 0 +-1471 -1483 0 +-1472 -1484 0 +-1473 -1485 0 +-1474 -1486 0 +-1475 -1487 0 +-1476 -1488 0 +-1471 -1477 0 +-1472 -1478 0 +-1473 -1479 0 +-1474 -1480 0 +-1475 -1481 0 +-1476 -1482 0 +-1465 -1495 0 +-1466 -1496 0 +-1467 -1497 0 +-1468 -1498 0 +-1469 -1499 0 +-1470 -1500 0 +-1465 -1489 0 +-1466 -1490 0 +-1467 -1491 0 +-1468 -1492 0 +-1469 -1493 0 +-1470 -1494 0 +-1465 -1483 0 +-1466 -1484 0 +-1467 -1485 0 +-1468 -1486 0 +-1469 -1487 0 +-1470 -1488 0 +-1465 -1477 0 +-1466 -1478 0 +-1467 -1479 0 +-1468 -1480 0 +-1469 -1481 0 +-1470 -1482 0 +-1465 -1471 0 +-1466 -1472 0 +-1467 -1473 0 +-1468 -1474 0 +-1469 -1475 0 +-1470 -1476 0 +-1459 -1489 0 +-1460 -1490 0 +-1461 -1491 0 +-1462 -1492 0 +-1463 -1493 0 +-1464 -1494 0 +-1459 -1483 0 +-1460 -1484 0 +-1461 -1485 0 +-1462 -1486 0 +-1463 -1487 0 +-1464 -1488 0 +-1459 -1477 0 +-1460 -1478 0 +-1461 -1479 0 +-1462 -1480 0 +-1463 -1481 0 +-1464 -1482 0 +-1459 -1471 0 +-1460 -1472 0 +-1461 -1473 0 +-1462 -1474 0 +-1463 -1475 0 +-1464 -1476 0 +-1459 -1465 0 +-1460 -1466 0 +-1461 -1467 0 +-1462 -1468 0 +-1463 -1469 0 +-1464 -1470 0 +-1453 -1483 0 +-1454 -1484 0 +-1455 -1485 0 +-1456 -1486 0 +-1457 -1487 0 +-1458 -1488 0 +-1453 -1477 0 +-1454 -1478 0 +-1455 -1479 0 +-1456 -1480 0 +-1457 -1481 0 +-1458 -1482 0 +-1453 -1471 0 +-1454 -1472 0 +-1455 -1473 0 +-1456 -1474 0 +-1457 -1475 0 +-1458 -1476 0 +-1447 -1477 0 +-1448 -1478 0 +-1449 -1479 0 +-1450 -1480 0 +-1451 -1481 0 +-1452 -1482 0 +-1447 -1471 0 +-1448 -1472 0 +-1449 -1473 0 +-1450 -1474 0 +-1451 -1475 0 +-1452 -1476 0 +-1447 -1465 0 +-1448 -1466 0 +-1449 -1467 0 +-1450 -1468 0 +-1451 -1469 0 +-1452 -1470 0 +-1447 -1459 0 +-1448 -1460 0 +-1449 -1461 0 +-1450 -1462 0 +-1451 -1463 0 +-1452 -1464 0 +-1447 -1453 0 +-1448 -1454 0 +-1449 -1455 0 +-1450 -1456 0 +-1451 -1457 0 +-1452 -1458 0 +-1441 -1471 0 +-1442 -1472 0 +-1443 -1473 0 +-1444 -1474 0 +-1445 -1475 0 +-1446 -1476 0 +-1441 -1465 0 +-1442 -1466 0 +-1443 -1467 0 +-1444 -1468 0 +-1445 -1469 0 +-1446 -1470 0 +-1441 -1459 0 +-1442 -1460 0 +-1443 -1461 0 +-1444 -1462 0 +-1445 -1463 0 +-1446 -1464 0 +-1441 -1453 0 +-1442 -1454 0 +-1443 -1455 0 +-1444 -1456 0 +-1445 -1457 0 +-1446 -1458 0 +-1441 -1447 0 +-1442 -1448 0 +-1443 -1449 0 +-1444 -1450 0 +-1445 -1451 0 +-1446 -1452 0 +-1435 -1465 0 +-1436 -1466 0 +-1437 -1467 0 +-1438 -1468 0 +-1439 -1469 0 +-1440 -1470 0 +-1435 -1459 0 +-1436 -1460 0 +-1437 -1461 0 +-1438 -1462 0 +-1439 -1463 0 +-1440 -1464 0 +-1435 -1453 0 +-1436 -1454 0 +-1437 -1455 0 +-1438 -1456 0 +-1439 -1457 0 +-1440 -1458 0 +-1435 -1447 0 +-1436 -1448 0 +-1437 -1449 0 +-1438 -1450 0 +-1439 -1451 0 +-1440 -1452 0 +-1435 -1441 0 +-1436 -1442 0 +-1437 -1443 0 +-1438 -1444 0 +-1439 -1445 0 +-1440 -1446 0 +-1429 -1459 0 +-1430 -1460 0 +-1431 -1461 0 +-1432 -1462 0 +-1433 -1463 0 +-1434 -1464 0 +-1429 -1453 0 +-1430 -1454 0 +-1431 -1455 0 +-1432 -1456 0 +-1433 -1457 0 +-1434 -1458 0 +-1429 -1447 0 +-1430 -1448 0 +-1431 -1449 0 +-1432 -1450 0 +-1433 -1451 0 +-1434 -1452 0 +-1429 -1441 0 +-1430 -1442 0 +-1431 -1443 0 +-1432 -1444 0 +-1433 -1445 0 +-1434 -1446 0 +-1429 -1435 0 +-1430 -1436 0 +-1431 -1437 0 +-1432 -1438 0 +-1433 -1439 0 +-1434 -1440 0 +-1423 -1453 0 +-1424 -1454 0 +-1425 -1455 0 +-1426 -1456 0 +-1427 -1457 0 +-1428 -1458 0 +-1423 -1447 0 +-1424 -1448 0 +-1425 -1449 0 +-1426 -1450 0 +-1427 -1451 0 +-1428 -1452 0 +-1423 -1441 0 +-1424 -1442 0 +-1425 -1443 0 +-1426 -1444 0 +-1427 -1445 0 +-1428 -1446 0 +-1423 -1435 0 +-1424 -1436 0 +-1425 -1437 0 +-1426 -1438 0 +-1427 -1439 0 +-1428 -1440 0 +-1423 -1429 0 +-1424 -1430 0 +-1425 -1431 0 +-1426 -1432 0 +-1427 -1433 0 +-1428 -1434 0 +-1417 -1441 0 +-1418 -1442 0 +-1419 -1443 0 +-1420 -1444 0 +-1421 -1445 0 +-1422 -1446 0 +-1417 -1435 0 +-1418 -1436 0 +-1419 -1437 0 +-1420 -1438 0 +-1421 -1439 0 +-1422 -1440 0 +-1417 -1429 0 +-1418 -1430 0 +-1419 -1431 0 +-1420 -1432 0 +-1421 -1433 0 +-1422 -1434 0 +-1417 -1423 0 +-1418 -1424 0 +-1419 -1425 0 +-1420 -1426 0 +-1421 -1427 0 +-1422 -1428 0 +-1411 -1441 0 +-1412 -1442 0 +-1413 -1443 0 +-1414 -1444 0 +-1415 -1445 0 +-1416 -1446 0 +-1411 -1435 0 +-1412 -1436 0 +-1413 -1437 0 +-1414 -1438 0 +-1415 -1439 0 +-1416 -1440 0 +-1411 -1429 0 +-1412 -1430 0 +-1413 -1431 0 +-1414 -1432 0 +-1415 -1433 0 +-1416 -1434 0 +-1411 -1423 0 +-1412 -1424 0 +-1413 -1425 0 +-1414 -1426 0 +-1415 -1427 0 +-1416 -1428 0 +-1411 -1417 0 +-1412 -1418 0 +-1413 -1419 0 +-1414 -1420 0 +-1415 -1421 0 +-1416 -1422 0 +-1405 -1429 0 +-1406 -1430 0 +-1407 -1431 0 +-1408 -1432 0 +-1409 -1433 0 +-1410 -1434 0 +-1405 -1423 0 +-1406 -1424 0 +-1407 -1425 0 +-1408 -1426 0 +-1409 -1427 0 +-1410 -1428 0 +-1405 -1417 0 +-1406 -1418 0 +-1407 -1419 0 +-1408 -1420 0 +-1409 -1421 0 +-1410 -1422 0 +-1405 -1411 0 +-1406 -1412 0 +-1407 -1413 0 +-1408 -1414 0 +-1409 -1415 0 +-1410 -1416 0 +-1399 -1429 0 +-1400 -1430 0 +-1401 -1431 0 +-1402 -1432 0 +-1403 -1433 0 +-1404 -1434 0 +-1399 -1423 0 +-1400 -1424 0 +-1401 -1425 0 +-1402 -1426 0 +-1403 -1427 0 +-1404 -1428 0 +-1399 -1417 0 +-1400 -1418 0 +-1401 -1419 0 +-1402 -1420 0 +-1403 -1421 0 +-1404 -1422 0 +-1399 -1411 0 +-1400 -1412 0 +-1401 -1413 0 +-1402 -1414 0 +-1403 -1415 0 +-1404 -1416 0 +-1399 -1405 0 +-1400 -1406 0 +-1401 -1407 0 +-1402 -1408 0 +-1403 -1409 0 +-1404 -1410 0 +-1393 -1423 0 +-1394 -1424 0 +-1395 -1425 0 +-1396 -1426 0 +-1397 -1427 0 +-1398 -1428 0 +-1393 -1417 0 +-1394 -1418 0 +-1395 -1419 0 +-1396 -1420 0 +-1397 -1421 0 +-1398 -1422 0 +-1393 -1411 0 +-1394 -1412 0 +-1395 -1413 0 +-1396 -1414 0 +-1397 -1415 0 +-1398 -1416 0 +-1393 -1405 0 +-1394 -1406 0 +-1395 -1407 0 +-1396 -1408 0 +-1397 -1409 0 +-1398 -1410 0 +-1393 -1399 0 +-1394 -1400 0 +-1395 -1401 0 +-1396 -1402 0 +-1397 -1403 0 +-1398 -1404 0 +-1387 -1417 0 +-1388 -1418 0 +-1389 -1419 0 +-1390 -1420 0 +-1391 -1421 0 +-1392 -1422 0 +-1387 -1405 0 +-1388 -1406 0 +-1389 -1407 0 +-1390 -1408 0 +-1391 -1409 0 +-1392 -1410 0 +-1387 -1399 0 +-1388 -1400 0 +-1389 -1401 0 +-1390 -1402 0 +-1391 -1403 0 +-1392 -1404 0 +-1387 -1393 0 +-1388 -1394 0 +-1389 -1395 0 +-1390 -1396 0 +-1391 -1397 0 +-1392 -1398 0 +-1381 -1411 0 +-1382 -1412 0 +-1383 -1413 0 +-1384 -1414 0 +-1385 -1415 0 +-1386 -1416 0 +-1381 -1405 0 +-1382 -1406 0 +-1383 -1407 0 +-1384 -1408 0 +-1385 -1409 0 +-1386 -1410 0 +-1381 -1399 0 +-1382 -1400 0 +-1383 -1401 0 +-1384 -1402 0 +-1385 -1403 0 +-1386 -1404 0 +-1381 -1393 0 +-1382 -1394 0 +-1383 -1395 0 +-1384 -1396 0 +-1385 -1397 0 +-1386 -1398 0 +-1381 -1387 0 +-1382 -1388 0 +-1383 -1389 0 +-1384 -1390 0 +-1385 -1391 0 +-1386 -1392 0 +-1375 -1405 0 +-1376 -1406 0 +-1377 -1407 0 +-1378 -1408 0 +-1379 -1409 0 +-1380 -1410 0 +-1375 -1399 0 +-1376 -1400 0 +-1377 -1401 0 +-1378 -1402 0 +-1379 -1403 0 +-1380 -1404 0 +-1375 -1393 0 +-1376 -1394 0 +-1377 -1395 0 +-1378 -1396 0 +-1379 -1397 0 +-1380 -1398 0 +-1375 -1387 0 +-1376 -1388 0 +-1377 -1389 0 +-1378 -1390 0 +-1379 -1391 0 +-1380 -1392 0 +-1375 -1381 0 +-1376 -1382 0 +-1377 -1383 0 +-1378 -1384 0 +-1379 -1385 0 +-1380 -1386 0 +-1369 -1399 0 +-1370 -1400 0 +-1371 -1401 0 +-1372 -1402 0 +-1373 -1403 0 +-1374 -1404 0 +-1369 -1393 0 +-1370 -1394 0 +-1371 -1395 0 +-1372 -1396 0 +-1373 -1397 0 +-1374 -1398 0 +-1369 -1387 0 +-1370 -1388 0 +-1371 -1389 0 +-1372 -1390 0 +-1373 -1391 0 +-1374 -1392 0 +-1369 -1381 0 +-1370 -1382 0 +-1371 -1383 0 +-1372 -1384 0 +-1373 -1385 0 +-1374 -1386 0 +-1369 -1375 0 +-1370 -1376 0 +-1371 -1377 0 +-1372 -1378 0 +-1373 -1379 0 +-1374 -1380 0 +-1363 -1393 0 +-1364 -1394 0 +-1365 -1395 0 +-1366 -1396 0 +-1367 -1397 0 +-1368 -1398 0 +-1363 -1387 0 +-1364 -1388 0 +-1365 -1389 0 +-1366 -1390 0 +-1367 -1391 0 +-1368 -1392 0 +-1363 -1381 0 +-1364 -1382 0 +-1365 -1383 0 +-1366 -1384 0 +-1367 -1385 0 +-1368 -1386 0 +-1363 -1375 0 +-1364 -1376 0 +-1365 -1377 0 +-1366 -1378 0 +-1367 -1379 0 +-1368 -1380 0 +-1363 -1369 0 +-1364 -1370 0 +-1365 -1371 0 +-1366 -1372 0 +-1367 -1373 0 +-1368 -1374 0 +-1357 -1387 0 +-1358 -1388 0 +-1359 -1389 0 +-1360 -1390 0 +-1361 -1391 0 +-1362 -1392 0 +-1357 -1381 0 +-1358 -1382 0 +-1359 -1383 0 +-1360 -1384 0 +-1361 -1385 0 +-1362 -1386 0 +-1357 -1375 0 +-1358 -1376 0 +-1359 -1377 0 +-1360 -1378 0 +-1361 -1379 0 +-1362 -1380 0 +-1357 -1369 0 +-1358 -1370 0 +-1359 -1371 0 +-1360 -1372 0 +-1361 -1373 0 +-1362 -1374 0 +-1357 -1363 0 +-1358 -1364 0 +-1359 -1365 0 +-1360 -1366 0 +-1361 -1367 0 +-1362 -1368 0 +-1351 -1381 0 +-1352 -1382 0 +-1353 -1383 0 +-1354 -1384 0 +-1355 -1385 0 +-1356 -1386 0 +-1351 -1375 0 +-1352 -1376 0 +-1353 -1377 0 +-1354 -1378 0 +-1355 -1379 0 +-1356 -1380 0 +-1351 -1369 0 +-1352 -1370 0 +-1353 -1371 0 +-1354 -1372 0 +-1355 -1373 0 +-1356 -1374 0 +-1351 -1363 0 +-1352 -1364 0 +-1353 -1365 0 +-1354 -1366 0 +-1355 -1367 0 +-1356 -1368 0 +-1351 -1357 0 +-1352 -1358 0 +-1353 -1359 0 +-1354 -1360 0 +-1355 -1361 0 +-1356 -1362 0 +-1345 -1375 0 +-1346 -1376 0 +-1347 -1377 0 +-1348 -1378 0 +-1349 -1379 0 +-1350 -1380 0 +-1345 -1369 0 +-1346 -1370 0 +-1347 -1371 0 +-1348 -1372 0 +-1349 -1373 0 +-1350 -1374 0 +-1345 -1363 0 +-1346 -1364 0 +-1347 -1365 0 +-1348 -1366 0 +-1349 -1367 0 +-1350 -1368 0 +-1345 -1351 0 +-1346 -1352 0 +-1347 -1353 0 +-1348 -1354 0 +-1349 -1355 0 +-1350 -1356 0 +-1339 -1369 0 +-1340 -1370 0 +-1341 -1371 0 +-1342 -1372 0 +-1343 -1373 0 +-1344 -1374 0 +-1339 -1363 0 +-1340 -1364 0 +-1341 -1365 0 +-1342 -1366 0 +-1343 -1367 0 +-1344 -1368 0 +-1339 -1357 0 +-1340 -1358 0 +-1341 -1359 0 +-1342 -1360 0 +-1343 -1361 0 +-1344 -1362 0 +-1339 -1351 0 +-1340 -1352 0 +-1341 -1353 0 +-1342 -1354 0 +-1343 -1355 0 +-1344 -1356 0 +-1339 -1345 0 +-1340 -1346 0 +-1341 -1347 0 +-1342 -1348 0 +-1343 -1349 0 +-1344 -1350 0 +-1333 -1363 0 +-1334 -1364 0 +-1335 -1365 0 +-1336 -1366 0 +-1337 -1367 0 +-1338 -1368 0 +-1333 -1357 0 +-1334 -1358 0 +-1335 -1359 0 +-1336 -1360 0 +-1337 -1361 0 +-1338 -1362 0 +-1333 -1351 0 +-1334 -1352 0 +-1335 -1353 0 +-1336 -1354 0 +-1337 -1355 0 +-1338 -1356 0 +-1333 -1345 0 +-1334 -1346 0 +-1335 -1347 0 +-1336 -1348 0 +-1337 -1349 0 +-1338 -1350 0 +-1333 -1339 0 +-1334 -1340 0 +-1335 -1341 0 +-1336 -1342 0 +-1337 -1343 0 +-1338 -1344 0 +-1327 -1357 0 +-1328 -1358 0 +-1329 -1359 0 +-1330 -1360 0 +-1331 -1361 0 +-1332 -1362 0 +-1327 -1351 0 +-1328 -1352 0 +-1329 -1353 0 +-1330 -1354 0 +-1331 -1355 0 +-1332 -1356 0 +-1327 -1345 0 +-1328 -1346 0 +-1329 -1347 0 +-1330 -1348 0 +-1331 -1349 0 +-1332 -1350 0 +-1327 -1339 0 +-1328 -1340 0 +-1329 -1341 0 +-1330 -1342 0 +-1331 -1343 0 +-1332 -1344 0 +-1327 -1333 0 +-1328 -1334 0 +-1329 -1335 0 +-1330 -1336 0 +-1331 -1337 0 +-1332 -1338 0 +-1321 -1351 0 +-1322 -1352 0 +-1323 -1353 0 +-1324 -1354 0 +-1325 -1355 0 +-1326 -1356 0 +-1321 -1345 0 +-1322 -1346 0 +-1323 -1347 0 +-1324 -1348 0 +-1325 -1349 0 +-1326 -1350 0 +-1321 -1339 0 +-1322 -1340 0 +-1323 -1341 0 +-1324 -1342 0 +-1325 -1343 0 +-1326 -1344 0 +-1321 -1333 0 +-1322 -1334 0 +-1323 -1335 0 +-1324 -1336 0 +-1325 -1337 0 +-1326 -1338 0 +-1321 -1327 0 +-1322 -1328 0 +-1323 -1329 0 +-1324 -1330 0 +-1325 -1331 0 +-1326 -1332 0 +-1315 -1345 0 +-1316 -1346 0 +-1317 -1347 0 +-1318 -1348 0 +-1319 -1349 0 +-1320 -1350 0 +-1315 -1339 0 +-1316 -1340 0 +-1317 -1341 0 +-1318 -1342 0 +-1319 -1343 0 +-1320 -1344 0 +-1315 -1333 0 +-1316 -1334 0 +-1317 -1335 0 +-1318 -1336 0 +-1319 -1337 0 +-1320 -1338 0 +-1315 -1327 0 +-1316 -1328 0 +-1317 -1329 0 +-1318 -1330 0 +-1319 -1331 0 +-1320 -1332 0 +-1315 -1321 0 +-1316 -1322 0 +-1317 -1323 0 +-1318 -1324 0 +-1319 -1325 0 +-1320 -1326 0 +-1309 -1339 0 +-1310 -1340 0 +-1311 -1341 0 +-1312 -1342 0 +-1313 -1343 0 +-1314 -1344 0 +-1309 -1333 0 +-1310 -1334 0 +-1311 -1335 0 +-1312 -1336 0 +-1313 -1337 0 +-1314 -1338 0 +-1309 -1327 0 +-1310 -1328 0 +-1311 -1329 0 +-1312 -1330 0 +-1313 -1331 0 +-1314 -1332 0 +-1309 -1321 0 +-1310 -1322 0 +-1311 -1323 0 +-1312 -1324 0 +-1313 -1325 0 +-1314 -1326 0 +-1309 -1315 0 +-1310 -1316 0 +-1311 -1317 0 +-1312 -1318 0 +-1313 -1319 0 +-1314 -1320 0 +-1303 -1333 0 +-1304 -1334 0 +-1305 -1335 0 +-1306 -1336 0 +-1307 -1337 0 +-1308 -1338 0 +-1303 -1327 0 +-1304 -1328 0 +-1305 -1329 0 +-1306 -1330 0 +-1307 -1331 0 +-1308 -1332 0 +-1303 -1321 0 +-1304 -1322 0 +-1305 -1323 0 +-1306 -1324 0 +-1307 -1325 0 +-1308 -1326 0 +-1303 -1315 0 +-1304 -1316 0 +-1305 -1317 0 +-1306 -1318 0 +-1307 -1319 0 +-1308 -1320 0 +-1303 -1309 0 +-1304 -1310 0 +-1305 -1311 0 +-1306 -1312 0 +-1307 -1313 0 +-1308 -1314 0 +-1297 -1327 0 +-1298 -1328 0 +-1299 -1329 0 +-1300 -1330 0 +-1301 -1331 0 +-1302 -1332 0 +-1297 -1321 0 +-1298 -1322 0 +-1299 -1323 0 +-1300 -1324 0 +-1301 -1325 0 +-1302 -1326 0 +-1297 -1315 0 +-1298 -1316 0 +-1299 -1317 0 +-1300 -1318 0 +-1301 -1319 0 +-1302 -1320 0 +-1297 -1309 0 +-1298 -1310 0 +-1299 -1311 0 +-1300 -1312 0 +-1301 -1313 0 +-1302 -1314 0 +-1297 -1303 0 +-1298 -1304 0 +-1299 -1305 0 +-1300 -1306 0 +-1301 -1307 0 +-1302 -1308 0 +-1291 -1321 0 +-1292 -1322 0 +-1293 -1323 0 +-1294 -1324 0 +-1295 -1325 0 +-1296 -1326 0 +-1291 -1315 0 +-1292 -1316 0 +-1293 -1317 0 +-1294 -1318 0 +-1295 -1319 0 +-1296 -1320 0 +-1291 -1309 0 +-1292 -1310 0 +-1293 -1311 0 +-1294 -1312 0 +-1295 -1313 0 +-1296 -1314 0 +-1291 -1303 0 +-1292 -1304 0 +-1293 -1305 0 +-1294 -1306 0 +-1295 -1307 0 +-1296 -1308 0 +-1291 -1297 0 +-1292 -1298 0 +-1293 -1299 0 +-1294 -1300 0 +-1295 -1301 0 +-1296 -1302 0 +-1285 -1315 0 +-1286 -1316 0 +-1287 -1317 0 +-1288 -1318 0 +-1289 -1319 0 +-1290 -1320 0 +-1285 -1309 0 +-1286 -1310 0 +-1287 -1311 0 +-1288 -1312 0 +-1289 -1313 0 +-1290 -1314 0 +-1285 -1303 0 +-1286 -1304 0 +-1287 -1305 0 +-1288 -1306 0 +-1289 -1307 0 +-1290 -1308 0 +-1285 -1297 0 +-1286 -1298 0 +-1287 -1299 0 +-1288 -1300 0 +-1289 -1301 0 +-1290 -1302 0 +-1285 -1291 0 +-1286 -1292 0 +-1287 -1293 0 +-1288 -1294 0 +-1289 -1295 0 +-1290 -1296 0 +-1279 -1309 0 +-1280 -1310 0 +-1281 -1311 0 +-1282 -1312 0 +-1283 -1313 0 +-1284 -1314 0 +-1279 -1303 0 +-1280 -1304 0 +-1281 -1305 0 +-1282 -1306 0 +-1283 -1307 0 +-1284 -1308 0 +-1279 -1297 0 +-1280 -1298 0 +-1281 -1299 0 +-1282 -1300 0 +-1283 -1301 0 +-1284 -1302 0 +-1279 -1291 0 +-1280 -1292 0 +-1281 -1293 0 +-1282 -1294 0 +-1283 -1295 0 +-1284 -1296 0 +-1279 -1285 0 +-1280 -1286 0 +-1281 -1287 0 +-1282 -1288 0 +-1283 -1289 0 +-1284 -1290 0 +-1273 -1303 0 +-1274 -1304 0 +-1275 -1305 0 +-1276 -1306 0 +-1277 -1307 0 +-1278 -1308 0 +-1273 -1297 0 +-1274 -1298 0 +-1275 -1299 0 +-1276 -1300 0 +-1277 -1301 0 +-1278 -1302 0 +-1273 -1291 0 +-1274 -1292 0 +-1275 -1293 0 +-1276 -1294 0 +-1277 -1295 0 +-1278 -1296 0 +-1273 -1285 0 +-1274 -1286 0 +-1275 -1287 0 +-1276 -1288 0 +-1277 -1289 0 +-1278 -1290 0 +-1273 -1279 0 +-1274 -1280 0 +-1275 -1281 0 +-1276 -1282 0 +-1277 -1283 0 +-1278 -1284 0 +-1267 -1297 0 +-1268 -1298 0 +-1269 -1299 0 +-1270 -1300 0 +-1271 -1301 0 +-1272 -1302 0 +-1267 -1291 0 +-1268 -1292 0 +-1269 -1293 0 +-1270 -1294 0 +-1271 -1295 0 +-1272 -1296 0 +-1267 -1285 0 +-1268 -1286 0 +-1269 -1287 0 +-1270 -1288 0 +-1271 -1289 0 +-1272 -1290 0 +-1267 -1279 0 +-1268 -1280 0 +-1269 -1281 0 +-1270 -1282 0 +-1271 -1283 0 +-1272 -1284 0 +-1267 -1273 0 +-1268 -1274 0 +-1269 -1275 0 +-1270 -1276 0 +-1271 -1277 0 +-1272 -1278 0 +-1261 -1291 0 +-1262 -1292 0 +-1263 -1293 0 +-1264 -1294 0 +-1265 -1295 0 +-1266 -1296 0 +-1261 -1285 0 +-1262 -1286 0 +-1263 -1287 0 +-1264 -1288 0 +-1265 -1289 0 +-1266 -1290 0 +-1261 -1279 0 +-1262 -1280 0 +-1263 -1281 0 +-1264 -1282 0 +-1265 -1283 0 +-1266 -1284 0 +-1261 -1273 0 +-1262 -1274 0 +-1263 -1275 0 +-1264 -1276 0 +-1265 -1277 0 +-1266 -1278 0 +-1261 -1267 0 +-1262 -1268 0 +-1263 -1269 0 +-1264 -1270 0 +-1265 -1271 0 +-1266 -1272 0 +-1255 -1285 0 +-1256 -1286 0 +-1257 -1287 0 +-1258 -1288 0 +-1259 -1289 0 +-1260 -1290 0 +-1255 -1279 0 +-1256 -1280 0 +-1257 -1281 0 +-1258 -1282 0 +-1259 -1283 0 +-1260 -1284 0 +-1255 -1273 0 +-1256 -1274 0 +-1257 -1275 0 +-1258 -1276 0 +-1259 -1277 0 +-1260 -1278 0 +-1255 -1267 0 +-1256 -1268 0 +-1257 -1269 0 +-1258 -1270 0 +-1259 -1271 0 +-1260 -1272 0 +-1255 -1261 0 +-1256 -1262 0 +-1257 -1263 0 +-1258 -1264 0 +-1259 -1265 0 +-1260 -1266 0 +-1249 -1279 0 +-1250 -1280 0 +-1251 -1281 0 +-1252 -1282 0 +-1253 -1283 0 +-1254 -1284 0 +-1249 -1273 0 +-1250 -1274 0 +-1251 -1275 0 +-1252 -1276 0 +-1253 -1277 0 +-1254 -1278 0 +-1249 -1267 0 +-1250 -1268 0 +-1251 -1269 0 +-1252 -1270 0 +-1253 -1271 0 +-1254 -1272 0 +-1249 -1261 0 +-1250 -1262 0 +-1251 -1263 0 +-1252 -1264 0 +-1253 -1265 0 +-1254 -1266 0 +-1249 -1255 0 +-1250 -1256 0 +-1251 -1257 0 +-1252 -1258 0 +-1253 -1259 0 +-1254 -1260 0 +-1243 -1273 0 +-1244 -1274 0 +-1245 -1275 0 +-1246 -1276 0 +-1247 -1277 0 +-1248 -1278 0 +-1243 -1267 0 +-1244 -1268 0 +-1245 -1269 0 +-1246 -1270 0 +-1247 -1271 0 +-1248 -1272 0 +-1243 -1261 0 +-1244 -1262 0 +-1245 -1263 0 +-1246 -1264 0 +-1247 -1265 0 +-1248 -1266 0 +-1243 -1255 0 +-1244 -1256 0 +-1245 -1257 0 +-1246 -1258 0 +-1247 -1259 0 +-1248 -1260 0 +-1243 -1249 0 +-1244 -1250 0 +-1245 -1251 0 +-1246 -1252 0 +-1247 -1253 0 +-1248 -1254 0 +-1237 -1267 0 +-1238 -1268 0 +-1239 -1269 0 +-1240 -1270 0 +-1241 -1271 0 +-1242 -1272 0 +-1237 -1261 0 +-1238 -1262 0 +-1239 -1263 0 +-1240 -1264 0 +-1241 -1265 0 +-1242 -1266 0 +-1237 -1255 0 +-1238 -1256 0 +-1239 -1257 0 +-1240 -1258 0 +-1241 -1259 0 +-1242 -1260 0 +-1237 -1249 0 +-1238 -1250 0 +-1239 -1251 0 +-1240 -1252 0 +-1241 -1253 0 +-1242 -1254 0 +-1237 -1243 0 +-1238 -1244 0 +-1239 -1245 0 +-1240 -1246 0 +-1241 -1247 0 +-1242 -1248 0 +-1231 -1261 0 +-1232 -1262 0 +-1233 -1263 0 +-1234 -1264 0 +-1235 -1265 0 +-1236 -1266 0 +-1231 -1255 0 +-1232 -1256 0 +-1233 -1257 0 +-1234 -1258 0 +-1235 -1259 0 +-1236 -1260 0 +-1231 -1249 0 +-1232 -1250 0 +-1233 -1251 0 +-1234 -1252 0 +-1235 -1253 0 +-1236 -1254 0 +-1231 -1243 0 +-1232 -1244 0 +-1233 -1245 0 +-1234 -1246 0 +-1235 -1247 0 +-1236 -1248 0 +-1231 -1237 0 +-1232 -1238 0 +-1233 -1239 0 +-1234 -1240 0 +-1235 -1241 0 +-1236 -1242 0 +-1225 -1255 0 +-1226 -1256 0 +-1227 -1257 0 +-1228 -1258 0 +-1229 -1259 0 +-1230 -1260 0 +-1225 -1249 0 +-1226 -1250 0 +-1227 -1251 0 +-1228 -1252 0 +-1229 -1253 0 +-1230 -1254 0 +-1225 -1243 0 +-1226 -1244 0 +-1227 -1245 0 +-1228 -1246 0 +-1229 -1247 0 +-1230 -1248 0 +-1225 -1237 0 +-1226 -1238 0 +-1227 -1239 0 +-1228 -1240 0 +-1229 -1241 0 +-1230 -1242 0 +-1225 -1231 0 +-1226 -1232 0 +-1227 -1233 0 +-1228 -1234 0 +-1229 -1235 0 +-1230 -1236 0 +-1219 -1249 0 +-1220 -1250 0 +-1221 -1251 0 +-1222 -1252 0 +-1223 -1253 0 +-1224 -1254 0 +-1219 -1243 0 +-1220 -1244 0 +-1221 -1245 0 +-1222 -1246 0 +-1223 -1247 0 +-1224 -1248 0 +-1219 -1237 0 +-1220 -1238 0 +-1221 -1239 0 +-1222 -1240 0 +-1223 -1241 0 +-1224 -1242 0 +-1219 -1231 0 +-1220 -1232 0 +-1221 -1233 0 +-1222 -1234 0 +-1223 -1235 0 +-1224 -1236 0 +-1219 -1225 0 +-1220 -1226 0 +-1221 -1227 0 +-1222 -1228 0 +-1223 -1229 0 +-1224 -1230 0 +-1213 -1243 0 +-1214 -1244 0 +-1215 -1245 0 +-1216 -1246 0 +-1217 -1247 0 +-1218 -1248 0 +-1213 -1237 0 +-1214 -1238 0 +-1215 -1239 0 +-1216 -1240 0 +-1217 -1241 0 +-1218 -1242 0 +-1213 -1231 0 +-1214 -1232 0 +-1215 -1233 0 +-1216 -1234 0 +-1217 -1235 0 +-1218 -1236 0 +-1213 -1225 0 +-1214 -1226 0 +-1215 -1227 0 +-1216 -1228 0 +-1217 -1229 0 +-1218 -1230 0 +-1213 -1219 0 +-1214 -1220 0 +-1215 -1221 0 +-1216 -1222 0 +-1217 -1223 0 +-1218 -1224 0 +-1207 -1237 0 +-1208 -1238 0 +-1209 -1239 0 +-1210 -1240 0 +-1211 -1241 0 +-1212 -1242 0 +-1207 -1231 0 +-1208 -1232 0 +-1209 -1233 0 +-1210 -1234 0 +-1211 -1235 0 +-1212 -1236 0 +-1207 -1225 0 +-1208 -1226 0 +-1209 -1227 0 +-1210 -1228 0 +-1211 -1229 0 +-1212 -1230 0 +-1207 -1219 0 +-1208 -1220 0 +-1209 -1221 0 +-1210 -1222 0 +-1211 -1223 0 +-1212 -1224 0 +-1207 -1213 0 +-1208 -1214 0 +-1209 -1215 0 +-1210 -1216 0 +-1211 -1217 0 +-1212 -1218 0 +-1201 -1231 0 +-1202 -1232 0 +-1203 -1233 0 +-1204 -1234 0 +-1205 -1235 0 +-1206 -1236 0 +-1201 -1225 0 +-1202 -1226 0 +-1203 -1227 0 +-1204 -1228 0 +-1205 -1229 0 +-1206 -1230 0 +-1201 -1219 0 +-1202 -1220 0 +-1203 -1221 0 +-1204 -1222 0 +-1205 -1223 0 +-1206 -1224 0 +-1201 -1213 0 +-1202 -1214 0 +-1203 -1215 0 +-1204 -1216 0 +-1205 -1217 0 +-1206 -1218 0 +-1201 -1207 0 +-1202 -1208 0 +-1203 -1209 0 +-1204 -1210 0 +-1205 -1211 0 +-1206 -1212 0 +-1195 -1225 0 +-1196 -1226 0 +-1197 -1227 0 +-1198 -1228 0 +-1199 -1229 0 +-1200 -1230 0 +-1195 -1219 0 +-1196 -1220 0 +-1197 -1221 0 +-1198 -1222 0 +-1199 -1223 0 +-1200 -1224 0 +-1195 -1213 0 +-1196 -1214 0 +-1197 -1215 0 +-1198 -1216 0 +-1199 -1217 0 +-1200 -1218 0 +-1195 -1207 0 +-1196 -1208 0 +-1197 -1209 0 +-1198 -1210 0 +-1199 -1211 0 +-1200 -1212 0 +-1195 -1201 0 +-1196 -1202 0 +-1197 -1203 0 +-1198 -1204 0 +-1199 -1205 0 +-1200 -1206 0 +-1189 -1219 0 +-1190 -1220 0 +-1191 -1221 0 +-1192 -1222 0 +-1193 -1223 0 +-1194 -1224 0 +-1189 -1213 0 +-1190 -1214 0 +-1191 -1215 0 +-1192 -1216 0 +-1193 -1217 0 +-1194 -1218 0 +-1189 -1207 0 +-1190 -1208 0 +-1191 -1209 0 +-1192 -1210 0 +-1193 -1211 0 +-1194 -1212 0 +-1189 -1195 0 +-1190 -1196 0 +-1191 -1197 0 +-1192 -1198 0 +-1193 -1199 0 +-1194 -1200 0 +-1183 -1213 0 +-1184 -1214 0 +-1185 -1215 0 +-1186 -1216 0 +-1187 -1217 0 +-1188 -1218 0 +-1183 -1207 0 +-1184 -1208 0 +-1185 -1209 0 +-1186 -1210 0 +-1187 -1211 0 +-1188 -1212 0 +-1183 -1201 0 +-1184 -1202 0 +-1185 -1203 0 +-1186 -1204 0 +-1187 -1205 0 +-1188 -1206 0 +-1183 -1195 0 +-1184 -1196 0 +-1185 -1197 0 +-1186 -1198 0 +-1187 -1199 0 +-1188 -1200 0 +-1183 -1189 0 +-1184 -1190 0 +-1185 -1191 0 +-1186 -1192 0 +-1187 -1193 0 +-1188 -1194 0 +-1177 -1207 0 +-1178 -1208 0 +-1179 -1209 0 +-1180 -1210 0 +-1181 -1211 0 +-1182 -1212 0 +-1177 -1201 0 +-1178 -1202 0 +-1179 -1203 0 +-1180 -1204 0 +-1181 -1205 0 +-1182 -1206 0 +-1177 -1195 0 +-1178 -1196 0 +-1179 -1197 0 +-1180 -1198 0 +-1181 -1199 0 +-1182 -1200 0 +-1177 -1183 0 +-1178 -1184 0 +-1179 -1185 0 +-1180 -1186 0 +-1181 -1187 0 +-1182 -1188 0 +-1171 -1201 0 +-1172 -1202 0 +-1173 -1203 0 +-1174 -1204 0 +-1175 -1205 0 +-1176 -1206 0 +-1171 -1195 0 +-1172 -1196 0 +-1173 -1197 0 +-1174 -1198 0 +-1175 -1199 0 +-1176 -1200 0 +-1171 -1189 0 +-1172 -1190 0 +-1173 -1191 0 +-1174 -1192 0 +-1175 -1193 0 +-1176 -1194 0 +-1171 -1183 0 +-1172 -1184 0 +-1173 -1185 0 +-1174 -1186 0 +-1175 -1187 0 +-1176 -1188 0 +-1171 -1177 0 +-1172 -1178 0 +-1173 -1179 0 +-1174 -1180 0 +-1175 -1181 0 +-1176 -1182 0 +-1165 -1195 0 +-1166 -1196 0 +-1167 -1197 0 +-1168 -1198 0 +-1169 -1199 0 +-1170 -1200 0 +-1165 -1189 0 +-1166 -1190 0 +-1167 -1191 0 +-1168 -1192 0 +-1169 -1193 0 +-1170 -1194 0 +-1165 -1183 0 +-1166 -1184 0 +-1167 -1185 0 +-1168 -1186 0 +-1169 -1187 0 +-1170 -1188 0 +-1165 -1177 0 +-1166 -1178 0 +-1167 -1179 0 +-1168 -1180 0 +-1169 -1181 0 +-1170 -1182 0 +-1165 -1171 0 +-1166 -1172 0 +-1167 -1173 0 +-1168 -1174 0 +-1169 -1175 0 +-1170 -1176 0 +-1159 -1189 0 +-1160 -1190 0 +-1161 -1191 0 +-1162 -1192 0 +-1163 -1193 0 +-1164 -1194 0 +-1159 -1183 0 +-1160 -1184 0 +-1161 -1185 0 +-1162 -1186 0 +-1163 -1187 0 +-1164 -1188 0 +-1159 -1171 0 +-1160 -1172 0 +-1161 -1173 0 +-1162 -1174 0 +-1163 -1175 0 +-1164 -1176 0 +-1159 -1165 0 +-1160 -1166 0 +-1161 -1167 0 +-1162 -1168 0 +-1163 -1169 0 +-1164 -1170 0 +-1153 -1177 0 +-1154 -1178 0 +-1155 -1179 0 +-1156 -1180 0 +-1157 -1181 0 +-1158 -1182 0 +-1153 -1171 0 +-1154 -1172 0 +-1155 -1173 0 +-1156 -1174 0 +-1157 -1175 0 +-1158 -1176 0 +-1153 -1165 0 +-1154 -1166 0 +-1155 -1167 0 +-1156 -1168 0 +-1157 -1169 0 +-1158 -1170 0 +-1153 -1159 0 +-1154 -1160 0 +-1155 -1161 0 +-1156 -1162 0 +-1157 -1163 0 +-1158 -1164 0 +-1147 -1177 0 +-1148 -1178 0 +-1149 -1179 0 +-1150 -1180 0 +-1151 -1181 0 +-1152 -1182 0 +-1147 -1171 0 +-1148 -1172 0 +-1149 -1173 0 +-1150 -1174 0 +-1151 -1175 0 +-1152 -1176 0 +-1147 -1165 0 +-1148 -1166 0 +-1149 -1167 0 +-1150 -1168 0 +-1151 -1169 0 +-1152 -1170 0 +-1147 -1159 0 +-1148 -1160 0 +-1149 -1161 0 +-1150 -1162 0 +-1151 -1163 0 +-1152 -1164 0 +-1147 -1153 0 +-1148 -1154 0 +-1149 -1155 0 +-1150 -1156 0 +-1151 -1157 0 +-1152 -1158 0 +-1141 -1171 0 +-1142 -1172 0 +-1143 -1173 0 +-1144 -1174 0 +-1145 -1175 0 +-1146 -1176 0 +-1141 -1165 0 +-1142 -1166 0 +-1143 -1167 0 +-1144 -1168 0 +-1145 -1169 0 +-1146 -1170 0 +-1141 -1159 0 +-1142 -1160 0 +-1143 -1161 0 +-1144 -1162 0 +-1145 -1163 0 +-1146 -1164 0 +-1141 -1153 0 +-1142 -1154 0 +-1143 -1155 0 +-1144 -1156 0 +-1145 -1157 0 +-1146 -1158 0 +-1141 -1147 0 +-1142 -1148 0 +-1143 -1149 0 +-1144 -1150 0 +-1145 -1151 0 +-1146 -1152 0 +-1135 -1165 0 +-1136 -1166 0 +-1137 -1167 0 +-1138 -1168 0 +-1139 -1169 0 +-1140 -1170 0 +-1135 -1159 0 +-1136 -1160 0 +-1137 -1161 0 +-1138 -1162 0 +-1139 -1163 0 +-1140 -1164 0 +-1135 -1153 0 +-1136 -1154 0 +-1137 -1155 0 +-1138 -1156 0 +-1139 -1157 0 +-1140 -1158 0 +-1135 -1141 0 +-1136 -1142 0 +-1137 -1143 0 +-1138 -1144 0 +-1139 -1145 0 +-1140 -1146 0 +-1129 -1159 0 +-1130 -1160 0 +-1131 -1161 0 +-1132 -1162 0 +-1133 -1163 0 +-1134 -1164 0 +-1129 -1153 0 +-1130 -1154 0 +-1131 -1155 0 +-1132 -1156 0 +-1133 -1157 0 +-1134 -1158 0 +-1129 -1147 0 +-1130 -1148 0 +-1131 -1149 0 +-1132 -1150 0 +-1133 -1151 0 +-1134 -1152 0 +-1129 -1141 0 +-1130 -1142 0 +-1131 -1143 0 +-1132 -1144 0 +-1133 -1145 0 +-1134 -1146 0 +-1129 -1135 0 +-1130 -1136 0 +-1131 -1137 0 +-1132 -1138 0 +-1133 -1139 0 +-1134 -1140 0 +-1123 -1147 0 +-1124 -1148 0 +-1125 -1149 0 +-1126 -1150 0 +-1127 -1151 0 +-1128 -1152 0 +-1123 -1141 0 +-1124 -1142 0 +-1125 -1143 0 +-1126 -1144 0 +-1127 -1145 0 +-1128 -1146 0 +-1123 -1135 0 +-1124 -1136 0 +-1125 -1137 0 +-1126 -1138 0 +-1127 -1139 0 +-1128 -1140 0 +-1123 -1129 0 +-1124 -1130 0 +-1125 -1131 0 +-1126 -1132 0 +-1127 -1133 0 +-1128 -1134 0 +-1117 -1147 0 +-1118 -1148 0 +-1119 -1149 0 +-1120 -1150 0 +-1121 -1151 0 +-1122 -1152 0 +-1117 -1141 0 +-1118 -1142 0 +-1119 -1143 0 +-1120 -1144 0 +-1121 -1145 0 +-1122 -1146 0 +-1117 -1135 0 +-1118 -1136 0 +-1119 -1137 0 +-1120 -1138 0 +-1121 -1139 0 +-1122 -1140 0 +-1117 -1129 0 +-1118 -1130 0 +-1119 -1131 0 +-1120 -1132 0 +-1121 -1133 0 +-1122 -1134 0 +-1117 -1123 0 +-1118 -1124 0 +-1119 -1125 0 +-1120 -1126 0 +-1121 -1127 0 +-1122 -1128 0 +-1111 -1141 0 +-1112 -1142 0 +-1113 -1143 0 +-1114 -1144 0 +-1115 -1145 0 +-1116 -1146 0 +-1111 -1135 0 +-1112 -1136 0 +-1113 -1137 0 +-1114 -1138 0 +-1115 -1139 0 +-1116 -1140 0 +-1111 -1129 0 +-1112 -1130 0 +-1113 -1131 0 +-1114 -1132 0 +-1115 -1133 0 +-1116 -1134 0 +-1111 -1123 0 +-1112 -1124 0 +-1113 -1125 0 +-1114 -1126 0 +-1115 -1127 0 +-1116 -1128 0 +-1111 -1117 0 +-1112 -1118 0 +-1113 -1119 0 +-1114 -1120 0 +-1115 -1121 0 +-1116 -1122 0 +-1105 -1135 0 +-1106 -1136 0 +-1107 -1137 0 +-1108 -1138 0 +-1109 -1139 0 +-1110 -1140 0 +-1105 -1129 0 +-1106 -1130 0 +-1107 -1131 0 +-1108 -1132 0 +-1109 -1133 0 +-1110 -1134 0 +-1105 -1123 0 +-1106 -1124 0 +-1107 -1125 0 +-1108 -1126 0 +-1109 -1127 0 +-1110 -1128 0 +-1105 -1117 0 +-1106 -1118 0 +-1107 -1119 0 +-1108 -1120 0 +-1109 -1121 0 +-1110 -1122 0 +-1105 -1111 0 +-1106 -1112 0 +-1107 -1113 0 +-1108 -1114 0 +-1109 -1115 0 +-1110 -1116 0 +-1099 -1129 0 +-1100 -1130 0 +-1101 -1131 0 +-1102 -1132 0 +-1103 -1133 0 +-1104 -1134 0 +-1099 -1123 0 +-1100 -1124 0 +-1101 -1125 0 +-1102 -1126 0 +-1103 -1127 0 +-1104 -1128 0 +-1099 -1117 0 +-1100 -1118 0 +-1101 -1119 0 +-1102 -1120 0 +-1103 -1121 0 +-1104 -1122 0 +-1099 -1111 0 +-1100 -1112 0 +-1101 -1113 0 +-1102 -1114 0 +-1103 -1115 0 +-1104 -1116 0 +-1099 -1105 0 +-1100 -1106 0 +-1101 -1107 0 +-1102 -1108 0 +-1103 -1109 0 +-1104 -1110 0 +-1093 -1123 0 +-1094 -1124 0 +-1095 -1125 0 +-1096 -1126 0 +-1097 -1127 0 +-1098 -1128 0 +-1093 -1117 0 +-1094 -1118 0 +-1095 -1119 0 +-1096 -1120 0 +-1097 -1121 0 +-1098 -1122 0 +-1093 -1111 0 +-1094 -1112 0 +-1095 -1113 0 +-1096 -1114 0 +-1097 -1115 0 +-1098 -1116 0 +-1093 -1105 0 +-1094 -1106 0 +-1095 -1107 0 +-1096 -1108 0 +-1097 -1109 0 +-1098 -1110 0 +-1093 -1099 0 +-1094 -1100 0 +-1095 -1101 0 +-1096 -1102 0 +-1097 -1103 0 +-1098 -1104 0 +-1087 -1117 0 +-1088 -1118 0 +-1089 -1119 0 +-1090 -1120 0 +-1091 -1121 0 +-1092 -1122 0 +-1087 -1111 0 +-1088 -1112 0 +-1089 -1113 0 +-1090 -1114 0 +-1091 -1115 0 +-1092 -1116 0 +-1087 -1105 0 +-1088 -1106 0 +-1089 -1107 0 +-1090 -1108 0 +-1091 -1109 0 +-1092 -1110 0 +-1087 -1099 0 +-1088 -1100 0 +-1089 -1101 0 +-1090 -1102 0 +-1091 -1103 0 +-1092 -1104 0 +-1087 -1093 0 +-1088 -1094 0 +-1089 -1095 0 +-1090 -1096 0 +-1091 -1097 0 +-1092 -1098 0 +-1081 -1111 0 +-1082 -1112 0 +-1083 -1113 0 +-1084 -1114 0 +-1085 -1115 0 +-1086 -1116 0 +-1081 -1105 0 +-1082 -1106 0 +-1083 -1107 0 +-1084 -1108 0 +-1085 -1109 0 +-1086 -1110 0 +-1081 -1099 0 +-1082 -1100 0 +-1083 -1101 0 +-1084 -1102 0 +-1085 -1103 0 +-1086 -1104 0 +-1081 -1093 0 +-1082 -1094 0 +-1083 -1095 0 +-1084 -1096 0 +-1085 -1097 0 +-1086 -1098 0 +-1081 -1087 0 +-1082 -1088 0 +-1083 -1089 0 +-1084 -1090 0 +-1085 -1091 0 +-1086 -1092 0 +-1075 -1105 0 +-1076 -1106 0 +-1077 -1107 0 +-1078 -1108 0 +-1079 -1109 0 +-1080 -1110 0 +-1075 -1099 0 +-1076 -1100 0 +-1077 -1101 0 +-1078 -1102 0 +-1079 -1103 0 +-1080 -1104 0 +-1075 -1093 0 +-1076 -1094 0 +-1077 -1095 0 +-1078 -1096 0 +-1079 -1097 0 +-1080 -1098 0 +-1075 -1087 0 +-1076 -1088 0 +-1077 -1089 0 +-1078 -1090 0 +-1079 -1091 0 +-1080 -1092 0 +-1075 -1081 0 +-1076 -1082 0 +-1077 -1083 0 +-1078 -1084 0 +-1079 -1085 0 +-1080 -1086 0 +-1069 -1099 0 +-1070 -1100 0 +-1071 -1101 0 +-1072 -1102 0 +-1073 -1103 0 +-1074 -1104 0 +-1069 -1093 0 +-1070 -1094 0 +-1071 -1095 0 +-1072 -1096 0 +-1073 -1097 0 +-1074 -1098 0 +-1069 -1081 0 +-1070 -1082 0 +-1071 -1083 0 +-1072 -1084 0 +-1073 -1085 0 +-1074 -1086 0 +-1069 -1075 0 +-1070 -1076 0 +-1071 -1077 0 +-1072 -1078 0 +-1073 -1079 0 +-1074 -1080 0 +-1063 -1093 0 +-1064 -1094 0 +-1065 -1095 0 +-1066 -1096 0 +-1067 -1097 0 +-1068 -1098 0 +-1063 -1087 0 +-1064 -1088 0 +-1065 -1089 0 +-1066 -1090 0 +-1067 -1091 0 +-1068 -1092 0 +-1063 -1069 0 +-1064 -1070 0 +-1065 -1071 0 +-1066 -1072 0 +-1067 -1073 0 +-1068 -1074 0 +-1057 -1087 0 +-1058 -1088 0 +-1059 -1089 0 +-1060 -1090 0 +-1061 -1091 0 +-1062 -1092 0 +-1057 -1081 0 +-1058 -1082 0 +-1059 -1083 0 +-1060 -1084 0 +-1061 -1085 0 +-1062 -1086 0 +-1057 -1075 0 +-1058 -1076 0 +-1059 -1077 0 +-1060 -1078 0 +-1061 -1079 0 +-1062 -1080 0 +-1057 -1069 0 +-1058 -1070 0 +-1059 -1071 0 +-1060 -1072 0 +-1061 -1073 0 +-1062 -1074 0 +-1057 -1063 0 +-1058 -1064 0 +-1059 -1065 0 +-1060 -1066 0 +-1061 -1067 0 +-1062 -1068 0 +-1051 -1075 0 +-1052 -1076 0 +-1053 -1077 0 +-1054 -1078 0 +-1055 -1079 0 +-1056 -1080 0 +-1051 -1069 0 +-1052 -1070 0 +-1053 -1071 0 +-1054 -1072 0 +-1055 -1073 0 +-1056 -1074 0 +-1051 -1063 0 +-1052 -1064 0 +-1053 -1065 0 +-1054 -1066 0 +-1055 -1067 0 +-1056 -1068 0 +-1051 -1057 0 +-1052 -1058 0 +-1053 -1059 0 +-1054 -1060 0 +-1055 -1061 0 +-1056 -1062 0 +-1045 -1075 0 +-1046 -1076 0 +-1047 -1077 0 +-1048 -1078 0 +-1049 -1079 0 +-1050 -1080 0 +-1045 -1069 0 +-1046 -1070 0 +-1047 -1071 0 +-1048 -1072 0 +-1049 -1073 0 +-1050 -1074 0 +-1045 -1063 0 +-1046 -1064 0 +-1047 -1065 0 +-1048 -1066 0 +-1049 -1067 0 +-1050 -1068 0 +-1045 -1057 0 +-1046 -1058 0 +-1047 -1059 0 +-1048 -1060 0 +-1049 -1061 0 +-1050 -1062 0 +-1045 -1051 0 +-1046 -1052 0 +-1047 -1053 0 +-1048 -1054 0 +-1049 -1055 0 +-1050 -1056 0 +-1039 -1069 0 +-1040 -1070 0 +-1041 -1071 0 +-1042 -1072 0 +-1043 -1073 0 +-1044 -1074 0 +-1039 -1063 0 +-1040 -1064 0 +-1041 -1065 0 +-1042 -1066 0 +-1043 -1067 0 +-1044 -1068 0 +-1039 -1057 0 +-1040 -1058 0 +-1041 -1059 0 +-1042 -1060 0 +-1043 -1061 0 +-1044 -1062 0 +-1039 -1051 0 +-1040 -1052 0 +-1041 -1053 0 +-1042 -1054 0 +-1043 -1055 0 +-1044 -1056 0 +-1039 -1045 0 +-1040 -1046 0 +-1041 -1047 0 +-1042 -1048 0 +-1043 -1049 0 +-1044 -1050 0 +-1033 -1063 0 +-1034 -1064 0 +-1035 -1065 0 +-1036 -1066 0 +-1037 -1067 0 +-1038 -1068 0 +-1033 -1051 0 +-1034 -1052 0 +-1035 -1053 0 +-1036 -1054 0 +-1037 -1055 0 +-1038 -1056 0 +-1033 -1045 0 +-1034 -1046 0 +-1035 -1047 0 +-1036 -1048 0 +-1037 -1049 0 +-1038 -1050 0 +-1033 -1039 0 +-1034 -1040 0 +-1035 -1041 0 +-1036 -1042 0 +-1037 -1043 0 +-1038 -1044 0 +-1027 -1057 0 +-1028 -1058 0 +-1029 -1059 0 +-1030 -1060 0 +-1031 -1061 0 +-1032 -1062 0 +-1027 -1051 0 +-1028 -1052 0 +-1029 -1053 0 +-1030 -1054 0 +-1031 -1055 0 +-1032 -1056 0 +-1027 -1045 0 +-1028 -1046 0 +-1029 -1047 0 +-1030 -1048 0 +-1031 -1049 0 +-1032 -1050 0 +-1027 -1039 0 +-1028 -1040 0 +-1029 -1041 0 +-1030 -1042 0 +-1031 -1043 0 +-1032 -1044 0 +-1027 -1033 0 +-1028 -1034 0 +-1029 -1035 0 +-1030 -1036 0 +-1031 -1037 0 +-1032 -1038 0 +-1021 -1051 0 +-1022 -1052 0 +-1023 -1053 0 +-1024 -1054 0 +-1025 -1055 0 +-1026 -1056 0 +-1021 -1045 0 +-1022 -1046 0 +-1023 -1047 0 +-1024 -1048 0 +-1025 -1049 0 +-1026 -1050 0 +-1021 -1039 0 +-1022 -1040 0 +-1023 -1041 0 +-1024 -1042 0 +-1025 -1043 0 +-1026 -1044 0 +-1021 -1033 0 +-1022 -1034 0 +-1023 -1035 0 +-1024 -1036 0 +-1025 -1037 0 +-1026 -1038 0 +-1021 -1027 0 +-1022 -1028 0 +-1023 -1029 0 +-1024 -1030 0 +-1025 -1031 0 +-1026 -1032 0 +-1015 -1045 0 +-1016 -1046 0 +-1017 -1047 0 +-1018 -1048 0 +-1019 -1049 0 +-1020 -1050 0 +-1015 -1039 0 +-1016 -1040 0 +-1017 -1041 0 +-1018 -1042 0 +-1019 -1043 0 +-1020 -1044 0 +-1015 -1033 0 +-1016 -1034 0 +-1017 -1035 0 +-1018 -1036 0 +-1019 -1037 0 +-1020 -1038 0 +-1015 -1027 0 +-1016 -1028 0 +-1017 -1029 0 +-1018 -1030 0 +-1019 -1031 0 +-1020 -1032 0 +-1015 -1021 0 +-1016 -1022 0 +-1017 -1023 0 +-1018 -1024 0 +-1019 -1025 0 +-1020 -1026 0 +-1009 -1039 0 +-1010 -1040 0 +-1011 -1041 0 +-1012 -1042 0 +-1013 -1043 0 +-1014 -1044 0 +-1009 -1033 0 +-1010 -1034 0 +-1011 -1035 0 +-1012 -1036 0 +-1013 -1037 0 +-1014 -1038 0 +-1009 -1027 0 +-1010 -1028 0 +-1011 -1029 0 +-1012 -1030 0 +-1013 -1031 0 +-1014 -1032 0 +-1009 -1021 0 +-1010 -1022 0 +-1011 -1023 0 +-1012 -1024 0 +-1013 -1025 0 +-1014 -1026 0 +-1009 -1015 0 +-1010 -1016 0 +-1011 -1017 0 +-1012 -1018 0 +-1013 -1019 0 +-1014 -1020 0 +-1003 -1033 0 +-1004 -1034 0 +-1005 -1035 0 +-1006 -1036 0 +-1007 -1037 0 +-1008 -1038 0 +-1003 -1027 0 +-1004 -1028 0 +-1005 -1029 0 +-1006 -1030 0 +-1007 -1031 0 +-1008 -1032 0 +-1003 -1021 0 +-1004 -1022 0 +-1005 -1023 0 +-1006 -1024 0 +-1007 -1025 0 +-1008 -1026 0 +-1003 -1015 0 +-1004 -1016 0 +-1005 -1017 0 +-1006 -1018 0 +-1007 -1019 0 +-1008 -1020 0 +-1003 -1009 0 +-1004 -1010 0 +-1005 -1011 0 +-1006 -1012 0 +-1007 -1013 0 +-1008 -1014 0 +-997 -1027 0 +-998 -1028 0 +-999 -1029 0 +-1000 -1030 0 +-1001 -1031 0 +-1002 -1032 0 +-997 -1021 0 +-998 -1022 0 +-999 -1023 0 +-1000 -1024 0 +-1001 -1025 0 +-1002 -1026 0 +-997 -1015 0 +-998 -1016 0 +-999 -1017 0 +-1000 -1018 0 +-1001 -1019 0 +-1002 -1020 0 +-997 -1003 0 +-998 -1004 0 +-999 -1005 0 +-1000 -1006 0 +-1001 -1007 0 +-1002 -1008 0 +-991 -1021 0 +-992 -1022 0 +-993 -1023 0 +-994 -1024 0 +-995 -1025 0 +-996 -1026 0 +-991 -1015 0 +-992 -1016 0 +-993 -1017 0 +-994 -1018 0 +-995 -1019 0 +-996 -1020 0 +-991 -1009 0 +-992 -1010 0 +-993 -1011 0 +-994 -1012 0 +-995 -1013 0 +-996 -1014 0 +-991 -1003 0 +-992 -1004 0 +-993 -1005 0 +-994 -1006 0 +-995 -1007 0 +-996 -1008 0 +-991 -997 0 +-992 -998 0 +-993 -999 0 +-994 -1000 0 +-995 -1001 0 +-996 -1002 0 +-985 -1015 0 +-986 -1016 0 +-987 -1017 0 +-988 -1018 0 +-989 -1019 0 +-990 -1020 0 +-985 -1009 0 +-986 -1010 0 +-987 -1011 0 +-988 -1012 0 +-989 -1013 0 +-990 -1014 0 +-985 -997 0 +-986 -998 0 +-987 -999 0 +-988 -1000 0 +-989 -1001 0 +-990 -1002 0 +-985 -991 0 +-986 -992 0 +-987 -993 0 +-988 -994 0 +-989 -995 0 +-990 -996 0 +-979 -1009 0 +-980 -1010 0 +-981 -1011 0 +-982 -1012 0 +-983 -1013 0 +-984 -1014 0 +-979 -1003 0 +-980 -1004 0 +-981 -1005 0 +-982 -1006 0 +-983 -1007 0 +-984 -1008 0 +-979 -997 0 +-980 -998 0 +-981 -999 0 +-982 -1000 0 +-983 -1001 0 +-984 -1002 0 +-979 -991 0 +-980 -992 0 +-981 -993 0 +-982 -994 0 +-983 -995 0 +-984 -996 0 +-979 -985 0 +-980 -986 0 +-981 -987 0 +-982 -988 0 +-983 -989 0 +-984 -990 0 +-973 -997 0 +-974 -998 0 +-975 -999 0 +-976 -1000 0 +-977 -1001 0 +-978 -1002 0 +-973 -991 0 +-974 -992 0 +-975 -993 0 +-976 -994 0 +-977 -995 0 +-978 -996 0 +-973 -985 0 +-974 -986 0 +-975 -987 0 +-976 -988 0 +-977 -989 0 +-978 -990 0 +-973 -979 0 +-974 -980 0 +-975 -981 0 +-976 -982 0 +-977 -983 0 +-978 -984 0 +-967 -997 0 +-968 -998 0 +-969 -999 0 +-970 -1000 0 +-971 -1001 0 +-972 -1002 0 +-967 -991 0 +-968 -992 0 +-969 -993 0 +-970 -994 0 +-971 -995 0 +-972 -996 0 +-967 -985 0 +-968 -986 0 +-969 -987 0 +-970 -988 0 +-971 -989 0 +-972 -990 0 +-967 -979 0 +-968 -980 0 +-969 -981 0 +-970 -982 0 +-971 -983 0 +-972 -984 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-961 -991 0 +-962 -992 0 +-963 -993 0 +-964 -994 0 +-965 -995 0 +-966 -996 0 +-961 -985 0 +-962 -986 0 +-963 -987 0 +-964 -988 0 +-965 -989 0 +-966 -990 0 +-961 -979 0 +-962 -980 0 +-963 -981 0 +-964 -982 0 +-965 -983 0 +-966 -984 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-955 -985 0 +-956 -986 0 +-957 -987 0 +-958 -988 0 +-959 -989 0 +-960 -990 0 +-955 -979 0 +-956 -980 0 +-957 -981 0 +-958 -982 0 +-959 -983 0 +-960 -984 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -967 0 +-956 -968 0 +-957 -969 0 +-958 -970 0 +-959 -971 0 +-960 -972 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-949 -979 0 +-950 -980 0 +-951 -981 0 +-952 -982 0 +-953 -983 0 +-954 -984 0 +-949 -973 0 +-950 -974 0 +-951 -975 0 +-952 -976 0 +-953 -977 0 +-954 -978 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -919 0 +-890 -920 0 +-891 -921 0 +-892 -922 0 +-893 -923 0 +-894 -924 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-211 -421 0 +-212 -422 0 +-213 -423 0 +-214 -424 0 +-215 -425 0 +-216 -426 0 +-805 -1453 0 +-806 -1454 0 +-807 -1455 0 +-808 -1456 0 +-809 -1457 0 +-810 -1458 0 +-691 -1333 0 +-692 -1334 0 +-693 -1335 0 +-694 -1336 0 +-695 -1337 0 +-696 -1338 0 +-163 -673 0 +-164 -674 0 +-165 -675 0 +-166 -676 0 +-167 -677 0 +-168 -678 0 +-937 -1033 0 +-938 -1034 0 +-939 -1035 0 +-940 -1036 0 +-941 -1037 0 +-942 -1038 0 +-121 -1507 0 +-122 -1508 0 +-123 -1509 0 +-124 -1510 0 +-125 -1511 0 +-126 -1512 0 +-289 -1543 0 +-290 -1544 0 +-291 -1545 0 +-292 -1546 0 +-293 -1547 0 +-294 -1548 0 +-991 -1387 0 +-992 -1388 0 +-993 -1389 0 +-994 -1390 0 +-995 -1391 0 +-996 -1392 0 +-1369 -1537 0 +-1370 -1538 0 +-1371 -1539 0 +-1372 -1540 0 +-1373 -1541 0 +-1374 -1542 0 +-31 -271 0 +-32 -272 0 +-33 -273 0 +-34 -274 0 +-35 -275 0 +-36 -276 0 diff --git a/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf new file mode 100755 index 000000000..0256bb9a5 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf @@ -0,0 +1,6718 @@ +c created by edge2cnf +p cnf 876 6716 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-25 -871 0 +-26 -872 0 +-27 -873 0 +-28 -874 0 +-29 -875 0 +-30 -876 0 +-19 -871 0 +-20 -872 0 +-21 -873 0 +-22 -874 0 +-23 -875 0 +-24 -876 0 +-13 -871 0 +-14 -872 0 +-15 -873 0 +-16 -874 0 +-17 -875 0 +-18 -876 0 +-7 -871 0 +-8 -872 0 +-9 -873 0 +-10 -874 0 +-11 -875 0 +-12 -876 0 +-1 -871 0 +-2 -872 0 +-3 -873 0 +-4 -874 0 +-5 -875 0 +-6 -876 0 +-19 -865 0 +-20 -866 0 +-21 -867 0 +-22 -868 0 +-23 -869 0 +-24 -870 0 +-13 -865 0 +-14 -866 0 +-15 -867 0 +-16 -868 0 +-17 -869 0 +-18 -870 0 +-7 -865 0 +-8 -866 0 +-9 -867 0 +-10 -868 0 +-11 -869 0 +-12 -870 0 +-1 -865 0 +-2 -866 0 +-3 -867 0 +-4 -868 0 +-5 -869 0 +-6 -870 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-13 -859 0 +-14 -860 0 +-15 -861 0 +-16 -862 0 +-17 -863 0 +-18 -864 0 +-7 -859 0 +-8 -860 0 +-9 -861 0 +-10 -862 0 +-11 -863 0 +-12 -864 0 +-1 -859 0 +-2 -860 0 +-3 -861 0 +-4 -862 0 +-5 -863 0 +-6 -864 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-7 -853 0 +-8 -854 0 +-9 -855 0 +-10 -856 0 +-11 -857 0 +-12 -858 0 +-1 -853 0 +-2 -854 0 +-3 -855 0 +-4 -856 0 +-5 -857 0 +-6 -858 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-1 -847 0 +-2 -848 0 +-3 -849 0 +-4 -850 0 +-5 -851 0 +-6 -852 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-31 -739 0 +-32 -740 0 +-33 -741 0 +-34 -742 0 +-35 -743 0 +-36 -744 0 +-67 -241 0 +-68 -242 0 +-69 -243 0 +-70 -244 0 +-71 -245 0 +-72 -246 0 +-67 -649 0 +-68 -650 0 +-69 -651 0 +-70 -652 0 +-71 -653 0 +-72 -654 0 +-517 -577 0 +-518 -578 0 +-519 -579 0 +-520 -580 0 +-521 -581 0 +-522 -582 0 +-175 -793 0 +-176 -794 0 +-177 -795 0 +-178 -796 0 +-179 -797 0 +-180 -798 0 diff --git a/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf new file mode 100755 index 000000000..be1b8778d --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf @@ -0,0 +1,6672 @@ +c created by edge2cnf +p cnf 870 6670 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-1 -841 0 +-2 -842 0 +-3 -843 0 +-4 -844 0 +-5 -845 0 +-6 -846 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-13 -859 0 +-14 -860 0 +-15 -861 0 +-16 -862 0 +-17 -863 0 +-18 -864 0 +-25 -865 0 +-26 -866 0 +-27 -867 0 +-28 -868 0 +-29 -869 0 +-30 -870 0 +-19 -865 0 +-20 -866 0 +-21 -867 0 +-22 -868 0 +-23 -869 0 +-24 -870 0 +-13 -865 0 +-14 -866 0 +-15 -867 0 +-16 -868 0 +-17 -869 0 +-18 -870 0 +-7 -865 0 +-8 -866 0 +-9 -867 0 +-10 -868 0 +-11 -869 0 +-12 -870 0 +-1 -865 0 +-2 -866 0 +-3 -867 0 +-4 -868 0 +-5 -869 0 +-6 -870 0 +-19 -859 0 +-20 -860 0 +-21 -861 0 +-22 -862 0 +-23 -863 0 +-24 -864 0 +-7 -859 0 +-8 -860 0 +-9 -861 0 +-10 -862 0 +-11 -863 0 +-12 -864 0 +-1 -859 0 +-2 -860 0 +-3 -861 0 +-4 -862 0 +-5 -863 0 +-6 -864 0 +-13 -853 0 +-14 -854 0 +-15 -855 0 +-16 -856 0 +-17 -857 0 +-18 -858 0 +-7 -853 0 +-8 -854 0 +-9 -855 0 +-10 -856 0 +-11 -857 0 +-12 -858 0 +-1 -853 0 +-2 -854 0 +-3 -855 0 +-4 -856 0 +-5 -857 0 +-6 -858 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-7 -847 0 +-8 -848 0 +-9 -849 0 +-10 -850 0 +-11 -851 0 +-12 -852 0 +-1 -847 0 +-2 -848 0 +-3 -849 0 +-4 -850 0 +-5 -851 0 +-6 -852 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-769 -853 0 +-770 -854 0 +-771 -855 0 +-772 -856 0 +-773 -857 0 +-774 -858 0 +-151 -841 0 +-152 -842 0 +-153 -843 0 +-154 -844 0 +-155 -845 0 +-156 -846 0 +-589 -637 0 +-590 -638 0 +-591 -639 0 +-592 -640 0 +-593 -641 0 +-594 -642 0 +-193 -859 0 +-194 -860 0 +-195 -861 0 +-196 -862 0 +-197 -863 0 +-198 -864 0 +-127 -169 0 +-128 -170 0 +-129 -171 0 +-130 -172 0 +-131 -173 0 +-132 -174 0 diff --git a/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf new file mode 100755 index 000000000..debca915d --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf @@ -0,0 +1,12928 @@ +c created by edge2cnf +p cnf 1686 12926 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-979 -980 0 +-979 -981 0 +-979 -982 0 +-979 -983 0 +-979 -984 0 +-980 -981 0 +-980 -982 0 +-980 -983 0 +-980 -984 0 +-981 -982 0 +-981 -983 0 +-981 -984 0 +-982 -983 0 +-982 -984 0 +-983 -984 0 +979 980 981 982 983 984 0 +-985 -986 0 +-985 -987 0 +-985 -988 0 +-985 -989 0 +-985 -990 0 +-986 -987 0 +-986 -988 0 +-986 -989 0 +-986 -990 0 +-987 -988 0 +-987 -989 0 +-987 -990 0 +-988 -989 0 +-988 -990 0 +-989 -990 0 +985 986 987 988 989 990 0 +-991 -992 0 +-991 -993 0 +-991 -994 0 +-991 -995 0 +-991 -996 0 +-992 -993 0 +-992 -994 0 +-992 -995 0 +-992 -996 0 +-993 -994 0 +-993 -995 0 +-993 -996 0 +-994 -995 0 +-994 -996 0 +-995 -996 0 +991 992 993 994 995 996 0 +-997 -998 0 +-997 -999 0 +-997 -1000 0 +-997 -1001 0 +-997 -1002 0 +-998 -999 0 +-998 -1000 0 +-998 -1001 0 +-998 -1002 0 +-999 -1000 0 +-999 -1001 0 +-999 -1002 0 +-1000 -1001 0 +-1000 -1002 0 +-1001 -1002 0 +997 998 999 1000 1001 1002 0 +-1003 -1004 0 +-1003 -1005 0 +-1003 -1006 0 +-1003 -1007 0 +-1003 -1008 0 +-1004 -1005 0 +-1004 -1006 0 +-1004 -1007 0 +-1004 -1008 0 +-1005 -1006 0 +-1005 -1007 0 +-1005 -1008 0 +-1006 -1007 0 +-1006 -1008 0 +-1007 -1008 0 +1003 1004 1005 1006 1007 1008 0 +-1009 -1010 0 +-1009 -1011 0 +-1009 -1012 0 +-1009 -1013 0 +-1009 -1014 0 +-1010 -1011 0 +-1010 -1012 0 +-1010 -1013 0 +-1010 -1014 0 +-1011 -1012 0 +-1011 -1013 0 +-1011 -1014 0 +-1012 -1013 0 +-1012 -1014 0 +-1013 -1014 0 +1009 1010 1011 1012 1013 1014 0 +-1015 -1016 0 +-1015 -1017 0 +-1015 -1018 0 +-1015 -1019 0 +-1015 -1020 0 +-1016 -1017 0 +-1016 -1018 0 +-1016 -1019 0 +-1016 -1020 0 +-1017 -1018 0 +-1017 -1019 0 +-1017 -1020 0 +-1018 -1019 0 +-1018 -1020 0 +-1019 -1020 0 +1015 1016 1017 1018 1019 1020 0 +-1021 -1022 0 +-1021 -1023 0 +-1021 -1024 0 +-1021 -1025 0 +-1021 -1026 0 +-1022 -1023 0 +-1022 -1024 0 +-1022 -1025 0 +-1022 -1026 0 +-1023 -1024 0 +-1023 -1025 0 +-1023 -1026 0 +-1024 -1025 0 +-1024 -1026 0 +-1025 -1026 0 +1021 1022 1023 1024 1025 1026 0 +-1027 -1028 0 +-1027 -1029 0 +-1027 -1030 0 +-1027 -1031 0 +-1027 -1032 0 +-1028 -1029 0 +-1028 -1030 0 +-1028 -1031 0 +-1028 -1032 0 +-1029 -1030 0 +-1029 -1031 0 +-1029 -1032 0 +-1030 -1031 0 +-1030 -1032 0 +-1031 -1032 0 +1027 1028 1029 1030 1031 1032 0 +-1033 -1034 0 +-1033 -1035 0 +-1033 -1036 0 +-1033 -1037 0 +-1033 -1038 0 +-1034 -1035 0 +-1034 -1036 0 +-1034 -1037 0 +-1034 -1038 0 +-1035 -1036 0 +-1035 -1037 0 +-1035 -1038 0 +-1036 -1037 0 +-1036 -1038 0 +-1037 -1038 0 +1033 1034 1035 1036 1037 1038 0 +-1039 -1040 0 +-1039 -1041 0 +-1039 -1042 0 +-1039 -1043 0 +-1039 -1044 0 +-1040 -1041 0 +-1040 -1042 0 +-1040 -1043 0 +-1040 -1044 0 +-1041 -1042 0 +-1041 -1043 0 +-1041 -1044 0 +-1042 -1043 0 +-1042 -1044 0 +-1043 -1044 0 +1039 1040 1041 1042 1043 1044 0 +-1045 -1046 0 +-1045 -1047 0 +-1045 -1048 0 +-1045 -1049 0 +-1045 -1050 0 +-1046 -1047 0 +-1046 -1048 0 +-1046 -1049 0 +-1046 -1050 0 +-1047 -1048 0 +-1047 -1049 0 +-1047 -1050 0 +-1048 -1049 0 +-1048 -1050 0 +-1049 -1050 0 +1045 1046 1047 1048 1049 1050 0 +-1051 -1052 0 +-1051 -1053 0 +-1051 -1054 0 +-1051 -1055 0 +-1051 -1056 0 +-1052 -1053 0 +-1052 -1054 0 +-1052 -1055 0 +-1052 -1056 0 +-1053 -1054 0 +-1053 -1055 0 +-1053 -1056 0 +-1054 -1055 0 +-1054 -1056 0 +-1055 -1056 0 +1051 1052 1053 1054 1055 1056 0 +-1057 -1058 0 +-1057 -1059 0 +-1057 -1060 0 +-1057 -1061 0 +-1057 -1062 0 +-1058 -1059 0 +-1058 -1060 0 +-1058 -1061 0 +-1058 -1062 0 +-1059 -1060 0 +-1059 -1061 0 +-1059 -1062 0 +-1060 -1061 0 +-1060 -1062 0 +-1061 -1062 0 +1057 1058 1059 1060 1061 1062 0 +-1063 -1064 0 +-1063 -1065 0 +-1063 -1066 0 +-1063 -1067 0 +-1063 -1068 0 +-1064 -1065 0 +-1064 -1066 0 +-1064 -1067 0 +-1064 -1068 0 +-1065 -1066 0 +-1065 -1067 0 +-1065 -1068 0 +-1066 -1067 0 +-1066 -1068 0 +-1067 -1068 0 +1063 1064 1065 1066 1067 1068 0 +-1069 -1070 0 +-1069 -1071 0 +-1069 -1072 0 +-1069 -1073 0 +-1069 -1074 0 +-1070 -1071 0 +-1070 -1072 0 +-1070 -1073 0 +-1070 -1074 0 +-1071 -1072 0 +-1071 -1073 0 +-1071 -1074 0 +-1072 -1073 0 +-1072 -1074 0 +-1073 -1074 0 +1069 1070 1071 1072 1073 1074 0 +-1075 -1076 0 +-1075 -1077 0 +-1075 -1078 0 +-1075 -1079 0 +-1075 -1080 0 +-1076 -1077 0 +-1076 -1078 0 +-1076 -1079 0 +-1076 -1080 0 +-1077 -1078 0 +-1077 -1079 0 +-1077 -1080 0 +-1078 -1079 0 +-1078 -1080 0 +-1079 -1080 0 +1075 1076 1077 1078 1079 1080 0 +-1081 -1082 0 +-1081 -1083 0 +-1081 -1084 0 +-1081 -1085 0 +-1081 -1086 0 +-1082 -1083 0 +-1082 -1084 0 +-1082 -1085 0 +-1082 -1086 0 +-1083 -1084 0 +-1083 -1085 0 +-1083 -1086 0 +-1084 -1085 0 +-1084 -1086 0 +-1085 -1086 0 +1081 1082 1083 1084 1085 1086 0 +-1087 -1088 0 +-1087 -1089 0 +-1087 -1090 0 +-1087 -1091 0 +-1087 -1092 0 +-1088 -1089 0 +-1088 -1090 0 +-1088 -1091 0 +-1088 -1092 0 +-1089 -1090 0 +-1089 -1091 0 +-1089 -1092 0 +-1090 -1091 0 +-1090 -1092 0 +-1091 -1092 0 +1087 1088 1089 1090 1091 1092 0 +-1093 -1094 0 +-1093 -1095 0 +-1093 -1096 0 +-1093 -1097 0 +-1093 -1098 0 +-1094 -1095 0 +-1094 -1096 0 +-1094 -1097 0 +-1094 -1098 0 +-1095 -1096 0 +-1095 -1097 0 +-1095 -1098 0 +-1096 -1097 0 +-1096 -1098 0 +-1097 -1098 0 +1093 1094 1095 1096 1097 1098 0 +-1099 -1100 0 +-1099 -1101 0 +-1099 -1102 0 +-1099 -1103 0 +-1099 -1104 0 +-1100 -1101 0 +-1100 -1102 0 +-1100 -1103 0 +-1100 -1104 0 +-1101 -1102 0 +-1101 -1103 0 +-1101 -1104 0 +-1102 -1103 0 +-1102 -1104 0 +-1103 -1104 0 +1099 1100 1101 1102 1103 1104 0 +-1105 -1106 0 +-1105 -1107 0 +-1105 -1108 0 +-1105 -1109 0 +-1105 -1110 0 +-1106 -1107 0 +-1106 -1108 0 +-1106 -1109 0 +-1106 -1110 0 +-1107 -1108 0 +-1107 -1109 0 +-1107 -1110 0 +-1108 -1109 0 +-1108 -1110 0 +-1109 -1110 0 +1105 1106 1107 1108 1109 1110 0 +-1111 -1112 0 +-1111 -1113 0 +-1111 -1114 0 +-1111 -1115 0 +-1111 -1116 0 +-1112 -1113 0 +-1112 -1114 0 +-1112 -1115 0 +-1112 -1116 0 +-1113 -1114 0 +-1113 -1115 0 +-1113 -1116 0 +-1114 -1115 0 +-1114 -1116 0 +-1115 -1116 0 +1111 1112 1113 1114 1115 1116 0 +-1117 -1118 0 +-1117 -1119 0 +-1117 -1120 0 +-1117 -1121 0 +-1117 -1122 0 +-1118 -1119 0 +-1118 -1120 0 +-1118 -1121 0 +-1118 -1122 0 +-1119 -1120 0 +-1119 -1121 0 +-1119 -1122 0 +-1120 -1121 0 +-1120 -1122 0 +-1121 -1122 0 +1117 1118 1119 1120 1121 1122 0 +-1123 -1124 0 +-1123 -1125 0 +-1123 -1126 0 +-1123 -1127 0 +-1123 -1128 0 +-1124 -1125 0 +-1124 -1126 0 +-1124 -1127 0 +-1124 -1128 0 +-1125 -1126 0 +-1125 -1127 0 +-1125 -1128 0 +-1126 -1127 0 +-1126 -1128 0 +-1127 -1128 0 +1123 1124 1125 1126 1127 1128 0 +-1129 -1130 0 +-1129 -1131 0 +-1129 -1132 0 +-1129 -1133 0 +-1129 -1134 0 +-1130 -1131 0 +-1130 -1132 0 +-1130 -1133 0 +-1130 -1134 0 +-1131 -1132 0 +-1131 -1133 0 +-1131 -1134 0 +-1132 -1133 0 +-1132 -1134 0 +-1133 -1134 0 +1129 1130 1131 1132 1133 1134 0 +-1135 -1136 0 +-1135 -1137 0 +-1135 -1138 0 +-1135 -1139 0 +-1135 -1140 0 +-1136 -1137 0 +-1136 -1138 0 +-1136 -1139 0 +-1136 -1140 0 +-1137 -1138 0 +-1137 -1139 0 +-1137 -1140 0 +-1138 -1139 0 +-1138 -1140 0 +-1139 -1140 0 +1135 1136 1137 1138 1139 1140 0 +-1141 -1142 0 +-1141 -1143 0 +-1141 -1144 0 +-1141 -1145 0 +-1141 -1146 0 +-1142 -1143 0 +-1142 -1144 0 +-1142 -1145 0 +-1142 -1146 0 +-1143 -1144 0 +-1143 -1145 0 +-1143 -1146 0 +-1144 -1145 0 +-1144 -1146 0 +-1145 -1146 0 +1141 1142 1143 1144 1145 1146 0 +-1147 -1148 0 +-1147 -1149 0 +-1147 -1150 0 +-1147 -1151 0 +-1147 -1152 0 +-1148 -1149 0 +-1148 -1150 0 +-1148 -1151 0 +-1148 -1152 0 +-1149 -1150 0 +-1149 -1151 0 +-1149 -1152 0 +-1150 -1151 0 +-1150 -1152 0 +-1151 -1152 0 +1147 1148 1149 1150 1151 1152 0 +-1153 -1154 0 +-1153 -1155 0 +-1153 -1156 0 +-1153 -1157 0 +-1153 -1158 0 +-1154 -1155 0 +-1154 -1156 0 +-1154 -1157 0 +-1154 -1158 0 +-1155 -1156 0 +-1155 -1157 0 +-1155 -1158 0 +-1156 -1157 0 +-1156 -1158 0 +-1157 -1158 0 +1153 1154 1155 1156 1157 1158 0 +-1159 -1160 0 +-1159 -1161 0 +-1159 -1162 0 +-1159 -1163 0 +-1159 -1164 0 +-1160 -1161 0 +-1160 -1162 0 +-1160 -1163 0 +-1160 -1164 0 +-1161 -1162 0 +-1161 -1163 0 +-1161 -1164 0 +-1162 -1163 0 +-1162 -1164 0 +-1163 -1164 0 +1159 1160 1161 1162 1163 1164 0 +-1165 -1166 0 +-1165 -1167 0 +-1165 -1168 0 +-1165 -1169 0 +-1165 -1170 0 +-1166 -1167 0 +-1166 -1168 0 +-1166 -1169 0 +-1166 -1170 0 +-1167 -1168 0 +-1167 -1169 0 +-1167 -1170 0 +-1168 -1169 0 +-1168 -1170 0 +-1169 -1170 0 +1165 1166 1167 1168 1169 1170 0 +-1171 -1172 0 +-1171 -1173 0 +-1171 -1174 0 +-1171 -1175 0 +-1171 -1176 0 +-1172 -1173 0 +-1172 -1174 0 +-1172 -1175 0 +-1172 -1176 0 +-1173 -1174 0 +-1173 -1175 0 +-1173 -1176 0 +-1174 -1175 0 +-1174 -1176 0 +-1175 -1176 0 +1171 1172 1173 1174 1175 1176 0 +-1177 -1178 0 +-1177 -1179 0 +-1177 -1180 0 +-1177 -1181 0 +-1177 -1182 0 +-1178 -1179 0 +-1178 -1180 0 +-1178 -1181 0 +-1178 -1182 0 +-1179 -1180 0 +-1179 -1181 0 +-1179 -1182 0 +-1180 -1181 0 +-1180 -1182 0 +-1181 -1182 0 +1177 1178 1179 1180 1181 1182 0 +-1183 -1184 0 +-1183 -1185 0 +-1183 -1186 0 +-1183 -1187 0 +-1183 -1188 0 +-1184 -1185 0 +-1184 -1186 0 +-1184 -1187 0 +-1184 -1188 0 +-1185 -1186 0 +-1185 -1187 0 +-1185 -1188 0 +-1186 -1187 0 +-1186 -1188 0 +-1187 -1188 0 +1183 1184 1185 1186 1187 1188 0 +-1189 -1190 0 +-1189 -1191 0 +-1189 -1192 0 +-1189 -1193 0 +-1189 -1194 0 +-1190 -1191 0 +-1190 -1192 0 +-1190 -1193 0 +-1190 -1194 0 +-1191 -1192 0 +-1191 -1193 0 +-1191 -1194 0 +-1192 -1193 0 +-1192 -1194 0 +-1193 -1194 0 +1189 1190 1191 1192 1193 1194 0 +-1195 -1196 0 +-1195 -1197 0 +-1195 -1198 0 +-1195 -1199 0 +-1195 -1200 0 +-1196 -1197 0 +-1196 -1198 0 +-1196 -1199 0 +-1196 -1200 0 +-1197 -1198 0 +-1197 -1199 0 +-1197 -1200 0 +-1198 -1199 0 +-1198 -1200 0 +-1199 -1200 0 +1195 1196 1197 1198 1199 1200 0 +-1201 -1202 0 +-1201 -1203 0 +-1201 -1204 0 +-1201 -1205 0 +-1201 -1206 0 +-1202 -1203 0 +-1202 -1204 0 +-1202 -1205 0 +-1202 -1206 0 +-1203 -1204 0 +-1203 -1205 0 +-1203 -1206 0 +-1204 -1205 0 +-1204 -1206 0 +-1205 -1206 0 +1201 1202 1203 1204 1205 1206 0 +-1207 -1208 0 +-1207 -1209 0 +-1207 -1210 0 +-1207 -1211 0 +-1207 -1212 0 +-1208 -1209 0 +-1208 -1210 0 +-1208 -1211 0 +-1208 -1212 0 +-1209 -1210 0 +-1209 -1211 0 +-1209 -1212 0 +-1210 -1211 0 +-1210 -1212 0 +-1211 -1212 0 +1207 1208 1209 1210 1211 1212 0 +-1213 -1214 0 +-1213 -1215 0 +-1213 -1216 0 +-1213 -1217 0 +-1213 -1218 0 +-1214 -1215 0 +-1214 -1216 0 +-1214 -1217 0 +-1214 -1218 0 +-1215 -1216 0 +-1215 -1217 0 +-1215 -1218 0 +-1216 -1217 0 +-1216 -1218 0 +-1217 -1218 0 +1213 1214 1215 1216 1217 1218 0 +-1219 -1220 0 +-1219 -1221 0 +-1219 -1222 0 +-1219 -1223 0 +-1219 -1224 0 +-1220 -1221 0 +-1220 -1222 0 +-1220 -1223 0 +-1220 -1224 0 +-1221 -1222 0 +-1221 -1223 0 +-1221 -1224 0 +-1222 -1223 0 +-1222 -1224 0 +-1223 -1224 0 +1219 1220 1221 1222 1223 1224 0 +-1225 -1226 0 +-1225 -1227 0 +-1225 -1228 0 +-1225 -1229 0 +-1225 -1230 0 +-1226 -1227 0 +-1226 -1228 0 +-1226 -1229 0 +-1226 -1230 0 +-1227 -1228 0 +-1227 -1229 0 +-1227 -1230 0 +-1228 -1229 0 +-1228 -1230 0 +-1229 -1230 0 +1225 1226 1227 1228 1229 1230 0 +-1231 -1232 0 +-1231 -1233 0 +-1231 -1234 0 +-1231 -1235 0 +-1231 -1236 0 +-1232 -1233 0 +-1232 -1234 0 +-1232 -1235 0 +-1232 -1236 0 +-1233 -1234 0 +-1233 -1235 0 +-1233 -1236 0 +-1234 -1235 0 +-1234 -1236 0 +-1235 -1236 0 +1231 1232 1233 1234 1235 1236 0 +-1237 -1238 0 +-1237 -1239 0 +-1237 -1240 0 +-1237 -1241 0 +-1237 -1242 0 +-1238 -1239 0 +-1238 -1240 0 +-1238 -1241 0 +-1238 -1242 0 +-1239 -1240 0 +-1239 -1241 0 +-1239 -1242 0 +-1240 -1241 0 +-1240 -1242 0 +-1241 -1242 0 +1237 1238 1239 1240 1241 1242 0 +-1243 -1244 0 +-1243 -1245 0 +-1243 -1246 0 +-1243 -1247 0 +-1243 -1248 0 +-1244 -1245 0 +-1244 -1246 0 +-1244 -1247 0 +-1244 -1248 0 +-1245 -1246 0 +-1245 -1247 0 +-1245 -1248 0 +-1246 -1247 0 +-1246 -1248 0 +-1247 -1248 0 +1243 1244 1245 1246 1247 1248 0 +-1249 -1250 0 +-1249 -1251 0 +-1249 -1252 0 +-1249 -1253 0 +-1249 -1254 0 +-1250 -1251 0 +-1250 -1252 0 +-1250 -1253 0 +-1250 -1254 0 +-1251 -1252 0 +-1251 -1253 0 +-1251 -1254 0 +-1252 -1253 0 +-1252 -1254 0 +-1253 -1254 0 +1249 1250 1251 1252 1253 1254 0 +-1255 -1256 0 +-1255 -1257 0 +-1255 -1258 0 +-1255 -1259 0 +-1255 -1260 0 +-1256 -1257 0 +-1256 -1258 0 +-1256 -1259 0 +-1256 -1260 0 +-1257 -1258 0 +-1257 -1259 0 +-1257 -1260 0 +-1258 -1259 0 +-1258 -1260 0 +-1259 -1260 0 +1255 1256 1257 1258 1259 1260 0 +-1261 -1262 0 +-1261 -1263 0 +-1261 -1264 0 +-1261 -1265 0 +-1261 -1266 0 +-1262 -1263 0 +-1262 -1264 0 +-1262 -1265 0 +-1262 -1266 0 +-1263 -1264 0 +-1263 -1265 0 +-1263 -1266 0 +-1264 -1265 0 +-1264 -1266 0 +-1265 -1266 0 +1261 1262 1263 1264 1265 1266 0 +-1267 -1268 0 +-1267 -1269 0 +-1267 -1270 0 +-1267 -1271 0 +-1267 -1272 0 +-1268 -1269 0 +-1268 -1270 0 +-1268 -1271 0 +-1268 -1272 0 +-1269 -1270 0 +-1269 -1271 0 +-1269 -1272 0 +-1270 -1271 0 +-1270 -1272 0 +-1271 -1272 0 +1267 1268 1269 1270 1271 1272 0 +-1273 -1274 0 +-1273 -1275 0 +-1273 -1276 0 +-1273 -1277 0 +-1273 -1278 0 +-1274 -1275 0 +-1274 -1276 0 +-1274 -1277 0 +-1274 -1278 0 +-1275 -1276 0 +-1275 -1277 0 +-1275 -1278 0 +-1276 -1277 0 +-1276 -1278 0 +-1277 -1278 0 +1273 1274 1275 1276 1277 1278 0 +-1279 -1280 0 +-1279 -1281 0 +-1279 -1282 0 +-1279 -1283 0 +-1279 -1284 0 +-1280 -1281 0 +-1280 -1282 0 +-1280 -1283 0 +-1280 -1284 0 +-1281 -1282 0 +-1281 -1283 0 +-1281 -1284 0 +-1282 -1283 0 +-1282 -1284 0 +-1283 -1284 0 +1279 1280 1281 1282 1283 1284 0 +-1285 -1286 0 +-1285 -1287 0 +-1285 -1288 0 +-1285 -1289 0 +-1285 -1290 0 +-1286 -1287 0 +-1286 -1288 0 +-1286 -1289 0 +-1286 -1290 0 +-1287 -1288 0 +-1287 -1289 0 +-1287 -1290 0 +-1288 -1289 0 +-1288 -1290 0 +-1289 -1290 0 +1285 1286 1287 1288 1289 1290 0 +-1291 -1292 0 +-1291 -1293 0 +-1291 -1294 0 +-1291 -1295 0 +-1291 -1296 0 +-1292 -1293 0 +-1292 -1294 0 +-1292 -1295 0 +-1292 -1296 0 +-1293 -1294 0 +-1293 -1295 0 +-1293 -1296 0 +-1294 -1295 0 +-1294 -1296 0 +-1295 -1296 0 +1291 1292 1293 1294 1295 1296 0 +-1297 -1298 0 +-1297 -1299 0 +-1297 -1300 0 +-1297 -1301 0 +-1297 -1302 0 +-1298 -1299 0 +-1298 -1300 0 +-1298 -1301 0 +-1298 -1302 0 +-1299 -1300 0 +-1299 -1301 0 +-1299 -1302 0 +-1300 -1301 0 +-1300 -1302 0 +-1301 -1302 0 +1297 1298 1299 1300 1301 1302 0 +-1303 -1304 0 +-1303 -1305 0 +-1303 -1306 0 +-1303 -1307 0 +-1303 -1308 0 +-1304 -1305 0 +-1304 -1306 0 +-1304 -1307 0 +-1304 -1308 0 +-1305 -1306 0 +-1305 -1307 0 +-1305 -1308 0 +-1306 -1307 0 +-1306 -1308 0 +-1307 -1308 0 +1303 1304 1305 1306 1307 1308 0 +-1309 -1310 0 +-1309 -1311 0 +-1309 -1312 0 +-1309 -1313 0 +-1309 -1314 0 +-1310 -1311 0 +-1310 -1312 0 +-1310 -1313 0 +-1310 -1314 0 +-1311 -1312 0 +-1311 -1313 0 +-1311 -1314 0 +-1312 -1313 0 +-1312 -1314 0 +-1313 -1314 0 +1309 1310 1311 1312 1313 1314 0 +-1315 -1316 0 +-1315 -1317 0 +-1315 -1318 0 +-1315 -1319 0 +-1315 -1320 0 +-1316 -1317 0 +-1316 -1318 0 +-1316 -1319 0 +-1316 -1320 0 +-1317 -1318 0 +-1317 -1319 0 +-1317 -1320 0 +-1318 -1319 0 +-1318 -1320 0 +-1319 -1320 0 +1315 1316 1317 1318 1319 1320 0 +-1321 -1322 0 +-1321 -1323 0 +-1321 -1324 0 +-1321 -1325 0 +-1321 -1326 0 +-1322 -1323 0 +-1322 -1324 0 +-1322 -1325 0 +-1322 -1326 0 +-1323 -1324 0 +-1323 -1325 0 +-1323 -1326 0 +-1324 -1325 0 +-1324 -1326 0 +-1325 -1326 0 +1321 1322 1323 1324 1325 1326 0 +-1327 -1328 0 +-1327 -1329 0 +-1327 -1330 0 +-1327 -1331 0 +-1327 -1332 0 +-1328 -1329 0 +-1328 -1330 0 +-1328 -1331 0 +-1328 -1332 0 +-1329 -1330 0 +-1329 -1331 0 +-1329 -1332 0 +-1330 -1331 0 +-1330 -1332 0 +-1331 -1332 0 +1327 1328 1329 1330 1331 1332 0 +-1333 -1334 0 +-1333 -1335 0 +-1333 -1336 0 +-1333 -1337 0 +-1333 -1338 0 +-1334 -1335 0 +-1334 -1336 0 +-1334 -1337 0 +-1334 -1338 0 +-1335 -1336 0 +-1335 -1337 0 +-1335 -1338 0 +-1336 -1337 0 +-1336 -1338 0 +-1337 -1338 0 +1333 1334 1335 1336 1337 1338 0 +-1339 -1340 0 +-1339 -1341 0 +-1339 -1342 0 +-1339 -1343 0 +-1339 -1344 0 +-1340 -1341 0 +-1340 -1342 0 +-1340 -1343 0 +-1340 -1344 0 +-1341 -1342 0 +-1341 -1343 0 +-1341 -1344 0 +-1342 -1343 0 +-1342 -1344 0 +-1343 -1344 0 +1339 1340 1341 1342 1343 1344 0 +-1345 -1346 0 +-1345 -1347 0 +-1345 -1348 0 +-1345 -1349 0 +-1345 -1350 0 +-1346 -1347 0 +-1346 -1348 0 +-1346 -1349 0 +-1346 -1350 0 +-1347 -1348 0 +-1347 -1349 0 +-1347 -1350 0 +-1348 -1349 0 +-1348 -1350 0 +-1349 -1350 0 +1345 1346 1347 1348 1349 1350 0 +-1351 -1352 0 +-1351 -1353 0 +-1351 -1354 0 +-1351 -1355 0 +-1351 -1356 0 +-1352 -1353 0 +-1352 -1354 0 +-1352 -1355 0 +-1352 -1356 0 +-1353 -1354 0 +-1353 -1355 0 +-1353 -1356 0 +-1354 -1355 0 +-1354 -1356 0 +-1355 -1356 0 +1351 1352 1353 1354 1355 1356 0 +-1357 -1358 0 +-1357 -1359 0 +-1357 -1360 0 +-1357 -1361 0 +-1357 -1362 0 +-1358 -1359 0 +-1358 -1360 0 +-1358 -1361 0 +-1358 -1362 0 +-1359 -1360 0 +-1359 -1361 0 +-1359 -1362 0 +-1360 -1361 0 +-1360 -1362 0 +-1361 -1362 0 +1357 1358 1359 1360 1361 1362 0 +-1363 -1364 0 +-1363 -1365 0 +-1363 -1366 0 +-1363 -1367 0 +-1363 -1368 0 +-1364 -1365 0 +-1364 -1366 0 +-1364 -1367 0 +-1364 -1368 0 +-1365 -1366 0 +-1365 -1367 0 +-1365 -1368 0 +-1366 -1367 0 +-1366 -1368 0 +-1367 -1368 0 +1363 1364 1365 1366 1367 1368 0 +-1369 -1370 0 +-1369 -1371 0 +-1369 -1372 0 +-1369 -1373 0 +-1369 -1374 0 +-1370 -1371 0 +-1370 -1372 0 +-1370 -1373 0 +-1370 -1374 0 +-1371 -1372 0 +-1371 -1373 0 +-1371 -1374 0 +-1372 -1373 0 +-1372 -1374 0 +-1373 -1374 0 +1369 1370 1371 1372 1373 1374 0 +-1375 -1376 0 +-1375 -1377 0 +-1375 -1378 0 +-1375 -1379 0 +-1375 -1380 0 +-1376 -1377 0 +-1376 -1378 0 +-1376 -1379 0 +-1376 -1380 0 +-1377 -1378 0 +-1377 -1379 0 +-1377 -1380 0 +-1378 -1379 0 +-1378 -1380 0 +-1379 -1380 0 +1375 1376 1377 1378 1379 1380 0 +-1381 -1382 0 +-1381 -1383 0 +-1381 -1384 0 +-1381 -1385 0 +-1381 -1386 0 +-1382 -1383 0 +-1382 -1384 0 +-1382 -1385 0 +-1382 -1386 0 +-1383 -1384 0 +-1383 -1385 0 +-1383 -1386 0 +-1384 -1385 0 +-1384 -1386 0 +-1385 -1386 0 +1381 1382 1383 1384 1385 1386 0 +-1387 -1388 0 +-1387 -1389 0 +-1387 -1390 0 +-1387 -1391 0 +-1387 -1392 0 +-1388 -1389 0 +-1388 -1390 0 +-1388 -1391 0 +-1388 -1392 0 +-1389 -1390 0 +-1389 -1391 0 +-1389 -1392 0 +-1390 -1391 0 +-1390 -1392 0 +-1391 -1392 0 +1387 1388 1389 1390 1391 1392 0 +-1393 -1394 0 +-1393 -1395 0 +-1393 -1396 0 +-1393 -1397 0 +-1393 -1398 0 +-1394 -1395 0 +-1394 -1396 0 +-1394 -1397 0 +-1394 -1398 0 +-1395 -1396 0 +-1395 -1397 0 +-1395 -1398 0 +-1396 -1397 0 +-1396 -1398 0 +-1397 -1398 0 +1393 1394 1395 1396 1397 1398 0 +-1399 -1400 0 +-1399 -1401 0 +-1399 -1402 0 +-1399 -1403 0 +-1399 -1404 0 +-1400 -1401 0 +-1400 -1402 0 +-1400 -1403 0 +-1400 -1404 0 +-1401 -1402 0 +-1401 -1403 0 +-1401 -1404 0 +-1402 -1403 0 +-1402 -1404 0 +-1403 -1404 0 +1399 1400 1401 1402 1403 1404 0 +-1405 -1406 0 +-1405 -1407 0 +-1405 -1408 0 +-1405 -1409 0 +-1405 -1410 0 +-1406 -1407 0 +-1406 -1408 0 +-1406 -1409 0 +-1406 -1410 0 +-1407 -1408 0 +-1407 -1409 0 +-1407 -1410 0 +-1408 -1409 0 +-1408 -1410 0 +-1409 -1410 0 +1405 1406 1407 1408 1409 1410 0 +-1411 -1412 0 +-1411 -1413 0 +-1411 -1414 0 +-1411 -1415 0 +-1411 -1416 0 +-1412 -1413 0 +-1412 -1414 0 +-1412 -1415 0 +-1412 -1416 0 +-1413 -1414 0 +-1413 -1415 0 +-1413 -1416 0 +-1414 -1415 0 +-1414 -1416 0 +-1415 -1416 0 +1411 1412 1413 1414 1415 1416 0 +-1417 -1418 0 +-1417 -1419 0 +-1417 -1420 0 +-1417 -1421 0 +-1417 -1422 0 +-1418 -1419 0 +-1418 -1420 0 +-1418 -1421 0 +-1418 -1422 0 +-1419 -1420 0 +-1419 -1421 0 +-1419 -1422 0 +-1420 -1421 0 +-1420 -1422 0 +-1421 -1422 0 +1417 1418 1419 1420 1421 1422 0 +-1423 -1424 0 +-1423 -1425 0 +-1423 -1426 0 +-1423 -1427 0 +-1423 -1428 0 +-1424 -1425 0 +-1424 -1426 0 +-1424 -1427 0 +-1424 -1428 0 +-1425 -1426 0 +-1425 -1427 0 +-1425 -1428 0 +-1426 -1427 0 +-1426 -1428 0 +-1427 -1428 0 +1423 1424 1425 1426 1427 1428 0 +-1429 -1430 0 +-1429 -1431 0 +-1429 -1432 0 +-1429 -1433 0 +-1429 -1434 0 +-1430 -1431 0 +-1430 -1432 0 +-1430 -1433 0 +-1430 -1434 0 +-1431 -1432 0 +-1431 -1433 0 +-1431 -1434 0 +-1432 -1433 0 +-1432 -1434 0 +-1433 -1434 0 +1429 1430 1431 1432 1433 1434 0 +-1435 -1436 0 +-1435 -1437 0 +-1435 -1438 0 +-1435 -1439 0 +-1435 -1440 0 +-1436 -1437 0 +-1436 -1438 0 +-1436 -1439 0 +-1436 -1440 0 +-1437 -1438 0 +-1437 -1439 0 +-1437 -1440 0 +-1438 -1439 0 +-1438 -1440 0 +-1439 -1440 0 +1435 1436 1437 1438 1439 1440 0 +-1441 -1442 0 +-1441 -1443 0 +-1441 -1444 0 +-1441 -1445 0 +-1441 -1446 0 +-1442 -1443 0 +-1442 -1444 0 +-1442 -1445 0 +-1442 -1446 0 +-1443 -1444 0 +-1443 -1445 0 +-1443 -1446 0 +-1444 -1445 0 +-1444 -1446 0 +-1445 -1446 0 +1441 1442 1443 1444 1445 1446 0 +-1447 -1448 0 +-1447 -1449 0 +-1447 -1450 0 +-1447 -1451 0 +-1447 -1452 0 +-1448 -1449 0 +-1448 -1450 0 +-1448 -1451 0 +-1448 -1452 0 +-1449 -1450 0 +-1449 -1451 0 +-1449 -1452 0 +-1450 -1451 0 +-1450 -1452 0 +-1451 -1452 0 +1447 1448 1449 1450 1451 1452 0 +-1453 -1454 0 +-1453 -1455 0 +-1453 -1456 0 +-1453 -1457 0 +-1453 -1458 0 +-1454 -1455 0 +-1454 -1456 0 +-1454 -1457 0 +-1454 -1458 0 +-1455 -1456 0 +-1455 -1457 0 +-1455 -1458 0 +-1456 -1457 0 +-1456 -1458 0 +-1457 -1458 0 +1453 1454 1455 1456 1457 1458 0 +-1459 -1460 0 +-1459 -1461 0 +-1459 -1462 0 +-1459 -1463 0 +-1459 -1464 0 +-1460 -1461 0 +-1460 -1462 0 +-1460 -1463 0 +-1460 -1464 0 +-1461 -1462 0 +-1461 -1463 0 +-1461 -1464 0 +-1462 -1463 0 +-1462 -1464 0 +-1463 -1464 0 +1459 1460 1461 1462 1463 1464 0 +-1465 -1466 0 +-1465 -1467 0 +-1465 -1468 0 +-1465 -1469 0 +-1465 -1470 0 +-1466 -1467 0 +-1466 -1468 0 +-1466 -1469 0 +-1466 -1470 0 +-1467 -1468 0 +-1467 -1469 0 +-1467 -1470 0 +-1468 -1469 0 +-1468 -1470 0 +-1469 -1470 0 +1465 1466 1467 1468 1469 1470 0 +-1471 -1472 0 +-1471 -1473 0 +-1471 -1474 0 +-1471 -1475 0 +-1471 -1476 0 +-1472 -1473 0 +-1472 -1474 0 +-1472 -1475 0 +-1472 -1476 0 +-1473 -1474 0 +-1473 -1475 0 +-1473 -1476 0 +-1474 -1475 0 +-1474 -1476 0 +-1475 -1476 0 +1471 1472 1473 1474 1475 1476 0 +-1477 -1478 0 +-1477 -1479 0 +-1477 -1480 0 +-1477 -1481 0 +-1477 -1482 0 +-1478 -1479 0 +-1478 -1480 0 +-1478 -1481 0 +-1478 -1482 0 +-1479 -1480 0 +-1479 -1481 0 +-1479 -1482 0 +-1480 -1481 0 +-1480 -1482 0 +-1481 -1482 0 +1477 1478 1479 1480 1481 1482 0 +-1483 -1484 0 +-1483 -1485 0 +-1483 -1486 0 +-1483 -1487 0 +-1483 -1488 0 +-1484 -1485 0 +-1484 -1486 0 +-1484 -1487 0 +-1484 -1488 0 +-1485 -1486 0 +-1485 -1487 0 +-1485 -1488 0 +-1486 -1487 0 +-1486 -1488 0 +-1487 -1488 0 +1483 1484 1485 1486 1487 1488 0 +-1489 -1490 0 +-1489 -1491 0 +-1489 -1492 0 +-1489 -1493 0 +-1489 -1494 0 +-1490 -1491 0 +-1490 -1492 0 +-1490 -1493 0 +-1490 -1494 0 +-1491 -1492 0 +-1491 -1493 0 +-1491 -1494 0 +-1492 -1493 0 +-1492 -1494 0 +-1493 -1494 0 +1489 1490 1491 1492 1493 1494 0 +-1495 -1496 0 +-1495 -1497 0 +-1495 -1498 0 +-1495 -1499 0 +-1495 -1500 0 +-1496 -1497 0 +-1496 -1498 0 +-1496 -1499 0 +-1496 -1500 0 +-1497 -1498 0 +-1497 -1499 0 +-1497 -1500 0 +-1498 -1499 0 +-1498 -1500 0 +-1499 -1500 0 +1495 1496 1497 1498 1499 1500 0 +-1501 -1502 0 +-1501 -1503 0 +-1501 -1504 0 +-1501 -1505 0 +-1501 -1506 0 +-1502 -1503 0 +-1502 -1504 0 +-1502 -1505 0 +-1502 -1506 0 +-1503 -1504 0 +-1503 -1505 0 +-1503 -1506 0 +-1504 -1505 0 +-1504 -1506 0 +-1505 -1506 0 +1501 1502 1503 1504 1505 1506 0 +-1507 -1508 0 +-1507 -1509 0 +-1507 -1510 0 +-1507 -1511 0 +-1507 -1512 0 +-1508 -1509 0 +-1508 -1510 0 +-1508 -1511 0 +-1508 -1512 0 +-1509 -1510 0 +-1509 -1511 0 +-1509 -1512 0 +-1510 -1511 0 +-1510 -1512 0 +-1511 -1512 0 +1507 1508 1509 1510 1511 1512 0 +-1513 -1514 0 +-1513 -1515 0 +-1513 -1516 0 +-1513 -1517 0 +-1513 -1518 0 +-1514 -1515 0 +-1514 -1516 0 +-1514 -1517 0 +-1514 -1518 0 +-1515 -1516 0 +-1515 -1517 0 +-1515 -1518 0 +-1516 -1517 0 +-1516 -1518 0 +-1517 -1518 0 +1513 1514 1515 1516 1517 1518 0 +-1519 -1520 0 +-1519 -1521 0 +-1519 -1522 0 +-1519 -1523 0 +-1519 -1524 0 +-1520 -1521 0 +-1520 -1522 0 +-1520 -1523 0 +-1520 -1524 0 +-1521 -1522 0 +-1521 -1523 0 +-1521 -1524 0 +-1522 -1523 0 +-1522 -1524 0 +-1523 -1524 0 +1519 1520 1521 1522 1523 1524 0 +-1525 -1526 0 +-1525 -1527 0 +-1525 -1528 0 +-1525 -1529 0 +-1525 -1530 0 +-1526 -1527 0 +-1526 -1528 0 +-1526 -1529 0 +-1526 -1530 0 +-1527 -1528 0 +-1527 -1529 0 +-1527 -1530 0 +-1528 -1529 0 +-1528 -1530 0 +-1529 -1530 0 +1525 1526 1527 1528 1529 1530 0 +-1531 -1532 0 +-1531 -1533 0 +-1531 -1534 0 +-1531 -1535 0 +-1531 -1536 0 +-1532 -1533 0 +-1532 -1534 0 +-1532 -1535 0 +-1532 -1536 0 +-1533 -1534 0 +-1533 -1535 0 +-1533 -1536 0 +-1534 -1535 0 +-1534 -1536 0 +-1535 -1536 0 +1531 1532 1533 1534 1535 1536 0 +-1537 -1538 0 +-1537 -1539 0 +-1537 -1540 0 +-1537 -1541 0 +-1537 -1542 0 +-1538 -1539 0 +-1538 -1540 0 +-1538 -1541 0 +-1538 -1542 0 +-1539 -1540 0 +-1539 -1541 0 +-1539 -1542 0 +-1540 -1541 0 +-1540 -1542 0 +-1541 -1542 0 +1537 1538 1539 1540 1541 1542 0 +-1543 -1544 0 +-1543 -1545 0 +-1543 -1546 0 +-1543 -1547 0 +-1543 -1548 0 +-1544 -1545 0 +-1544 -1546 0 +-1544 -1547 0 +-1544 -1548 0 +-1545 -1546 0 +-1545 -1547 0 +-1545 -1548 0 +-1546 -1547 0 +-1546 -1548 0 +-1547 -1548 0 +1543 1544 1545 1546 1547 1548 0 +-1549 -1550 0 +-1549 -1551 0 +-1549 -1552 0 +-1549 -1553 0 +-1549 -1554 0 +-1550 -1551 0 +-1550 -1552 0 +-1550 -1553 0 +-1550 -1554 0 +-1551 -1552 0 +-1551 -1553 0 +-1551 -1554 0 +-1552 -1553 0 +-1552 -1554 0 +-1553 -1554 0 +1549 1550 1551 1552 1553 1554 0 +-1555 -1556 0 +-1555 -1557 0 +-1555 -1558 0 +-1555 -1559 0 +-1555 -1560 0 +-1556 -1557 0 +-1556 -1558 0 +-1556 -1559 0 +-1556 -1560 0 +-1557 -1558 0 +-1557 -1559 0 +-1557 -1560 0 +-1558 -1559 0 +-1558 -1560 0 +-1559 -1560 0 +1555 1556 1557 1558 1559 1560 0 +-1561 -1562 0 +-1561 -1563 0 +-1561 -1564 0 +-1561 -1565 0 +-1561 -1566 0 +-1562 -1563 0 +-1562 -1564 0 +-1562 -1565 0 +-1562 -1566 0 +-1563 -1564 0 +-1563 -1565 0 +-1563 -1566 0 +-1564 -1565 0 +-1564 -1566 0 +-1565 -1566 0 +1561 1562 1563 1564 1565 1566 0 +-1567 -1568 0 +-1567 -1569 0 +-1567 -1570 0 +-1567 -1571 0 +-1567 -1572 0 +-1568 -1569 0 +-1568 -1570 0 +-1568 -1571 0 +-1568 -1572 0 +-1569 -1570 0 +-1569 -1571 0 +-1569 -1572 0 +-1570 -1571 0 +-1570 -1572 0 +-1571 -1572 0 +1567 1568 1569 1570 1571 1572 0 +-1573 -1574 0 +-1573 -1575 0 +-1573 -1576 0 +-1573 -1577 0 +-1573 -1578 0 +-1574 -1575 0 +-1574 -1576 0 +-1574 -1577 0 +-1574 -1578 0 +-1575 -1576 0 +-1575 -1577 0 +-1575 -1578 0 +-1576 -1577 0 +-1576 -1578 0 +-1577 -1578 0 +1573 1574 1575 1576 1577 1578 0 +-1579 -1580 0 +-1579 -1581 0 +-1579 -1582 0 +-1579 -1583 0 +-1579 -1584 0 +-1580 -1581 0 +-1580 -1582 0 +-1580 -1583 0 +-1580 -1584 0 +-1581 -1582 0 +-1581 -1583 0 +-1581 -1584 0 +-1582 -1583 0 +-1582 -1584 0 +-1583 -1584 0 +1579 1580 1581 1582 1583 1584 0 +-1585 -1586 0 +-1585 -1587 0 +-1585 -1588 0 +-1585 -1589 0 +-1585 -1590 0 +-1586 -1587 0 +-1586 -1588 0 +-1586 -1589 0 +-1586 -1590 0 +-1587 -1588 0 +-1587 -1589 0 +-1587 -1590 0 +-1588 -1589 0 +-1588 -1590 0 +-1589 -1590 0 +1585 1586 1587 1588 1589 1590 0 +-1591 -1592 0 +-1591 -1593 0 +-1591 -1594 0 +-1591 -1595 0 +-1591 -1596 0 +-1592 -1593 0 +-1592 -1594 0 +-1592 -1595 0 +-1592 -1596 0 +-1593 -1594 0 +-1593 -1595 0 +-1593 -1596 0 +-1594 -1595 0 +-1594 -1596 0 +-1595 -1596 0 +1591 1592 1593 1594 1595 1596 0 +-1597 -1598 0 +-1597 -1599 0 +-1597 -1600 0 +-1597 -1601 0 +-1597 -1602 0 +-1598 -1599 0 +-1598 -1600 0 +-1598 -1601 0 +-1598 -1602 0 +-1599 -1600 0 +-1599 -1601 0 +-1599 -1602 0 +-1600 -1601 0 +-1600 -1602 0 +-1601 -1602 0 +1597 1598 1599 1600 1601 1602 0 +-1603 -1604 0 +-1603 -1605 0 +-1603 -1606 0 +-1603 -1607 0 +-1603 -1608 0 +-1604 -1605 0 +-1604 -1606 0 +-1604 -1607 0 +-1604 -1608 0 +-1605 -1606 0 +-1605 -1607 0 +-1605 -1608 0 +-1606 -1607 0 +-1606 -1608 0 +-1607 -1608 0 +1603 1604 1605 1606 1607 1608 0 +-1609 -1610 0 +-1609 -1611 0 +-1609 -1612 0 +-1609 -1613 0 +-1609 -1614 0 +-1610 -1611 0 +-1610 -1612 0 +-1610 -1613 0 +-1610 -1614 0 +-1611 -1612 0 +-1611 -1613 0 +-1611 -1614 0 +-1612 -1613 0 +-1612 -1614 0 +-1613 -1614 0 +1609 1610 1611 1612 1613 1614 0 +-1615 -1616 0 +-1615 -1617 0 +-1615 -1618 0 +-1615 -1619 0 +-1615 -1620 0 +-1616 -1617 0 +-1616 -1618 0 +-1616 -1619 0 +-1616 -1620 0 +-1617 -1618 0 +-1617 -1619 0 +-1617 -1620 0 +-1618 -1619 0 +-1618 -1620 0 +-1619 -1620 0 +1615 1616 1617 1618 1619 1620 0 +-1621 -1622 0 +-1621 -1623 0 +-1621 -1624 0 +-1621 -1625 0 +-1621 -1626 0 +-1622 -1623 0 +-1622 -1624 0 +-1622 -1625 0 +-1622 -1626 0 +-1623 -1624 0 +-1623 -1625 0 +-1623 -1626 0 +-1624 -1625 0 +-1624 -1626 0 +-1625 -1626 0 +1621 1622 1623 1624 1625 1626 0 +-1627 -1628 0 +-1627 -1629 0 +-1627 -1630 0 +-1627 -1631 0 +-1627 -1632 0 +-1628 -1629 0 +-1628 -1630 0 +-1628 -1631 0 +-1628 -1632 0 +-1629 -1630 0 +-1629 -1631 0 +-1629 -1632 0 +-1630 -1631 0 +-1630 -1632 0 +-1631 -1632 0 +1627 1628 1629 1630 1631 1632 0 +-1633 -1634 0 +-1633 -1635 0 +-1633 -1636 0 +-1633 -1637 0 +-1633 -1638 0 +-1634 -1635 0 +-1634 -1636 0 +-1634 -1637 0 +-1634 -1638 0 +-1635 -1636 0 +-1635 -1637 0 +-1635 -1638 0 +-1636 -1637 0 +-1636 -1638 0 +-1637 -1638 0 +1633 1634 1635 1636 1637 1638 0 +-1639 -1640 0 +-1639 -1641 0 +-1639 -1642 0 +-1639 -1643 0 +-1639 -1644 0 +-1640 -1641 0 +-1640 -1642 0 +-1640 -1643 0 +-1640 -1644 0 +-1641 -1642 0 +-1641 -1643 0 +-1641 -1644 0 +-1642 -1643 0 +-1642 -1644 0 +-1643 -1644 0 +1639 1640 1641 1642 1643 1644 0 +-1645 -1646 0 +-1645 -1647 0 +-1645 -1648 0 +-1645 -1649 0 +-1645 -1650 0 +-1646 -1647 0 +-1646 -1648 0 +-1646 -1649 0 +-1646 -1650 0 +-1647 -1648 0 +-1647 -1649 0 +-1647 -1650 0 +-1648 -1649 0 +-1648 -1650 0 +-1649 -1650 0 +1645 1646 1647 1648 1649 1650 0 +-1651 -1652 0 +-1651 -1653 0 +-1651 -1654 0 +-1651 -1655 0 +-1651 -1656 0 +-1652 -1653 0 +-1652 -1654 0 +-1652 -1655 0 +-1652 -1656 0 +-1653 -1654 0 +-1653 -1655 0 +-1653 -1656 0 +-1654 -1655 0 +-1654 -1656 0 +-1655 -1656 0 +1651 1652 1653 1654 1655 1656 0 +-1657 -1658 0 +-1657 -1659 0 +-1657 -1660 0 +-1657 -1661 0 +-1657 -1662 0 +-1658 -1659 0 +-1658 -1660 0 +-1658 -1661 0 +-1658 -1662 0 +-1659 -1660 0 +-1659 -1661 0 +-1659 -1662 0 +-1660 -1661 0 +-1660 -1662 0 +-1661 -1662 0 +1657 1658 1659 1660 1661 1662 0 +-1663 -1664 0 +-1663 -1665 0 +-1663 -1666 0 +-1663 -1667 0 +-1663 -1668 0 +-1664 -1665 0 +-1664 -1666 0 +-1664 -1667 0 +-1664 -1668 0 +-1665 -1666 0 +-1665 -1667 0 +-1665 -1668 0 +-1666 -1667 0 +-1666 -1668 0 +-1667 -1668 0 +1663 1664 1665 1666 1667 1668 0 +-1669 -1670 0 +-1669 -1671 0 +-1669 -1672 0 +-1669 -1673 0 +-1669 -1674 0 +-1670 -1671 0 +-1670 -1672 0 +-1670 -1673 0 +-1670 -1674 0 +-1671 -1672 0 +-1671 -1673 0 +-1671 -1674 0 +-1672 -1673 0 +-1672 -1674 0 +-1673 -1674 0 +1669 1670 1671 1672 1673 1674 0 +-1675 -1676 0 +-1675 -1677 0 +-1675 -1678 0 +-1675 -1679 0 +-1675 -1680 0 +-1676 -1677 0 +-1676 -1678 0 +-1676 -1679 0 +-1676 -1680 0 +-1677 -1678 0 +-1677 -1679 0 +-1677 -1680 0 +-1678 -1679 0 +-1678 -1680 0 +-1679 -1680 0 +1675 1676 1677 1678 1679 1680 0 +-1681 -1682 0 +-1681 -1683 0 +-1681 -1684 0 +-1681 -1685 0 +-1681 -1686 0 +-1682 -1683 0 +-1682 -1684 0 +-1682 -1685 0 +-1682 -1686 0 +-1683 -1684 0 +-1683 -1685 0 +-1683 -1686 0 +-1684 -1685 0 +-1684 -1686 0 +-1685 -1686 0 +1681 1682 1683 1684 1685 1686 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-997 -1015 0 +-998 -1016 0 +-999 -1017 0 +-1000 -1018 0 +-1001 -1019 0 +-1002 -1020 0 +-1009 -1021 0 +-1010 -1022 0 +-1011 -1023 0 +-1012 -1024 0 +-1013 -1025 0 +-1014 -1026 0 +-1063 -1075 0 +-1064 -1076 0 +-1065 -1077 0 +-1066 -1078 0 +-1067 -1079 0 +-1068 -1080 0 +-1099 -1123 0 +-1100 -1124 0 +-1101 -1125 0 +-1102 -1126 0 +-1103 -1127 0 +-1104 -1128 0 +-1141 -1165 0 +-1142 -1166 0 +-1143 -1167 0 +-1144 -1168 0 +-1145 -1169 0 +-1146 -1170 0 +-1171 -1195 0 +-1172 -1196 0 +-1173 -1197 0 +-1174 -1198 0 +-1175 -1199 0 +-1176 -1200 0 +-1189 -1195 0 +-1190 -1196 0 +-1191 -1197 0 +-1192 -1198 0 +-1193 -1199 0 +-1194 -1200 0 +-1315 -1321 0 +-1316 -1322 0 +-1317 -1323 0 +-1318 -1324 0 +-1319 -1325 0 +-1320 -1326 0 +-1345 -1369 0 +-1346 -1370 0 +-1347 -1371 0 +-1348 -1372 0 +-1349 -1373 0 +-1350 -1374 0 +-1369 -1381 0 +-1370 -1382 0 +-1371 -1383 0 +-1372 -1384 0 +-1373 -1385 0 +-1374 -1386 0 +-1369 -1399 0 +-1370 -1400 0 +-1371 -1401 0 +-1372 -1402 0 +-1373 -1403 0 +-1374 -1404 0 +-1387 -1393 0 +-1388 -1394 0 +-1389 -1395 0 +-1390 -1396 0 +-1391 -1397 0 +-1392 -1398 0 +-1465 -1483 0 +-1466 -1484 0 +-1467 -1485 0 +-1468 -1486 0 +-1469 -1487 0 +-1470 -1488 0 +-1513 -1525 0 +-1514 -1526 0 +-1515 -1527 0 +-1516 -1528 0 +-1517 -1529 0 +-1518 -1530 0 +-1513 -1537 0 +-1514 -1538 0 +-1515 -1539 0 +-1516 -1540 0 +-1517 -1541 0 +-1518 -1542 0 +-1525 -1555 0 +-1526 -1556 0 +-1527 -1557 0 +-1528 -1558 0 +-1529 -1559 0 +-1530 -1560 0 +-1543 -1561 0 +-1544 -1562 0 +-1545 -1563 0 +-1546 -1564 0 +-1547 -1565 0 +-1548 -1566 0 +-1579 -1585 0 +-1580 -1586 0 +-1581 -1587 0 +-1582 -1588 0 +-1583 -1589 0 +-1584 -1590 0 +-1585 -1597 0 +-1586 -1598 0 +-1587 -1599 0 +-1588 -1600 0 +-1589 -1601 0 +-1590 -1602 0 +-1621 -1627 0 +-1622 -1628 0 +-1623 -1629 0 +-1624 -1630 0 +-1625 -1631 0 +-1626 -1632 0 +-1651 -1681 0 +-1652 -1682 0 +-1653 -1683 0 +-1654 -1684 0 +-1655 -1685 0 +-1656 -1686 0 +-25 -1681 0 +-26 -1682 0 +-27 -1683 0 +-28 -1684 0 +-29 -1685 0 +-30 -1686 0 +-19 -1681 0 +-20 -1682 0 +-21 -1683 0 +-22 -1684 0 +-23 -1685 0 +-24 -1686 0 +-13 -1681 0 +-14 -1682 0 +-15 -1683 0 +-16 -1684 0 +-17 -1685 0 +-18 -1686 0 +-7 -1681 0 +-8 -1682 0 +-9 -1683 0 +-10 -1684 0 +-11 -1685 0 +-12 -1686 0 +-1 -1681 0 +-2 -1682 0 +-3 -1683 0 +-4 -1684 0 +-5 -1685 0 +-6 -1686 0 +-19 -1675 0 +-20 -1676 0 +-21 -1677 0 +-22 -1678 0 +-23 -1679 0 +-24 -1680 0 +-13 -1675 0 +-14 -1676 0 +-15 -1677 0 +-16 -1678 0 +-17 -1679 0 +-18 -1680 0 +-7 -1675 0 +-8 -1676 0 +-9 -1677 0 +-10 -1678 0 +-11 -1679 0 +-12 -1680 0 +-1 -1675 0 +-2 -1676 0 +-3 -1677 0 +-4 -1678 0 +-5 -1679 0 +-6 -1680 0 +-1675 -1681 0 +-1676 -1682 0 +-1677 -1683 0 +-1678 -1684 0 +-1679 -1685 0 +-1680 -1686 0 +-13 -1669 0 +-14 -1670 0 +-15 -1671 0 +-16 -1672 0 +-17 -1673 0 +-18 -1674 0 +-7 -1669 0 +-8 -1670 0 +-9 -1671 0 +-10 -1672 0 +-11 -1673 0 +-12 -1674 0 +-1 -1669 0 +-2 -1670 0 +-3 -1671 0 +-4 -1672 0 +-5 -1673 0 +-6 -1674 0 +-1669 -1681 0 +-1670 -1682 0 +-1671 -1683 0 +-1672 -1684 0 +-1673 -1685 0 +-1674 -1686 0 +-1669 -1675 0 +-1670 -1676 0 +-1671 -1677 0 +-1672 -1678 0 +-1673 -1679 0 +-1674 -1680 0 +-7 -1663 0 +-8 -1664 0 +-9 -1665 0 +-10 -1666 0 +-11 -1667 0 +-12 -1668 0 +-1 -1663 0 +-2 -1664 0 +-3 -1665 0 +-4 -1666 0 +-5 -1667 0 +-6 -1668 0 +-1663 -1681 0 +-1664 -1682 0 +-1665 -1683 0 +-1666 -1684 0 +-1667 -1685 0 +-1668 -1686 0 +-1663 -1675 0 +-1664 -1676 0 +-1665 -1677 0 +-1666 -1678 0 +-1667 -1679 0 +-1668 -1680 0 +-1663 -1669 0 +-1664 -1670 0 +-1665 -1671 0 +-1666 -1672 0 +-1667 -1673 0 +-1668 -1674 0 +-1 -1657 0 +-2 -1658 0 +-3 -1659 0 +-4 -1660 0 +-5 -1661 0 +-6 -1662 0 +-1657 -1681 0 +-1658 -1682 0 +-1659 -1683 0 +-1660 -1684 0 +-1661 -1685 0 +-1662 -1686 0 +-1657 -1675 0 +-1658 -1676 0 +-1659 -1677 0 +-1660 -1678 0 +-1661 -1679 0 +-1662 -1680 0 +-1657 -1669 0 +-1658 -1670 0 +-1659 -1671 0 +-1660 -1672 0 +-1661 -1673 0 +-1662 -1674 0 +-1657 -1663 0 +-1658 -1664 0 +-1659 -1665 0 +-1660 -1666 0 +-1661 -1667 0 +-1662 -1668 0 +-1651 -1675 0 +-1652 -1676 0 +-1653 -1677 0 +-1654 -1678 0 +-1655 -1679 0 +-1656 -1680 0 +-1651 -1669 0 +-1652 -1670 0 +-1653 -1671 0 +-1654 -1672 0 +-1655 -1673 0 +-1656 -1674 0 +-1651 -1663 0 +-1652 -1664 0 +-1653 -1665 0 +-1654 -1666 0 +-1655 -1667 0 +-1656 -1668 0 +-1651 -1657 0 +-1652 -1658 0 +-1653 -1659 0 +-1654 -1660 0 +-1655 -1661 0 +-1656 -1662 0 +-1645 -1675 0 +-1646 -1676 0 +-1647 -1677 0 +-1648 -1678 0 +-1649 -1679 0 +-1650 -1680 0 +-1645 -1669 0 +-1646 -1670 0 +-1647 -1671 0 +-1648 -1672 0 +-1649 -1673 0 +-1650 -1674 0 +-1645 -1663 0 +-1646 -1664 0 +-1647 -1665 0 +-1648 -1666 0 +-1649 -1667 0 +-1650 -1668 0 +-1645 -1657 0 +-1646 -1658 0 +-1647 -1659 0 +-1648 -1660 0 +-1649 -1661 0 +-1650 -1662 0 +-1645 -1651 0 +-1646 -1652 0 +-1647 -1653 0 +-1648 -1654 0 +-1649 -1655 0 +-1650 -1656 0 +-1639 -1669 0 +-1640 -1670 0 +-1641 -1671 0 +-1642 -1672 0 +-1643 -1673 0 +-1644 -1674 0 +-1639 -1663 0 +-1640 -1664 0 +-1641 -1665 0 +-1642 -1666 0 +-1643 -1667 0 +-1644 -1668 0 +-1639 -1657 0 +-1640 -1658 0 +-1641 -1659 0 +-1642 -1660 0 +-1643 -1661 0 +-1644 -1662 0 +-1639 -1651 0 +-1640 -1652 0 +-1641 -1653 0 +-1642 -1654 0 +-1643 -1655 0 +-1644 -1656 0 +-1639 -1645 0 +-1640 -1646 0 +-1641 -1647 0 +-1642 -1648 0 +-1643 -1649 0 +-1644 -1650 0 +-1633 -1663 0 +-1634 -1664 0 +-1635 -1665 0 +-1636 -1666 0 +-1637 -1667 0 +-1638 -1668 0 +-1633 -1657 0 +-1634 -1658 0 +-1635 -1659 0 +-1636 -1660 0 +-1637 -1661 0 +-1638 -1662 0 +-1633 -1651 0 +-1634 -1652 0 +-1635 -1653 0 +-1636 -1654 0 +-1637 -1655 0 +-1638 -1656 0 +-1633 -1645 0 +-1634 -1646 0 +-1635 -1647 0 +-1636 -1648 0 +-1637 -1649 0 +-1638 -1650 0 +-1633 -1639 0 +-1634 -1640 0 +-1635 -1641 0 +-1636 -1642 0 +-1637 -1643 0 +-1638 -1644 0 +-1627 -1657 0 +-1628 -1658 0 +-1629 -1659 0 +-1630 -1660 0 +-1631 -1661 0 +-1632 -1662 0 +-1627 -1651 0 +-1628 -1652 0 +-1629 -1653 0 +-1630 -1654 0 +-1631 -1655 0 +-1632 -1656 0 +-1627 -1645 0 +-1628 -1646 0 +-1629 -1647 0 +-1630 -1648 0 +-1631 -1649 0 +-1632 -1650 0 +-1627 -1639 0 +-1628 -1640 0 +-1629 -1641 0 +-1630 -1642 0 +-1631 -1643 0 +-1632 -1644 0 +-1627 -1633 0 +-1628 -1634 0 +-1629 -1635 0 +-1630 -1636 0 +-1631 -1637 0 +-1632 -1638 0 +-1621 -1651 0 +-1622 -1652 0 +-1623 -1653 0 +-1624 -1654 0 +-1625 -1655 0 +-1626 -1656 0 +-1621 -1645 0 +-1622 -1646 0 +-1623 -1647 0 +-1624 -1648 0 +-1625 -1649 0 +-1626 -1650 0 +-1621 -1639 0 +-1622 -1640 0 +-1623 -1641 0 +-1624 -1642 0 +-1625 -1643 0 +-1626 -1644 0 +-1621 -1633 0 +-1622 -1634 0 +-1623 -1635 0 +-1624 -1636 0 +-1625 -1637 0 +-1626 -1638 0 +-1615 -1645 0 +-1616 -1646 0 +-1617 -1647 0 +-1618 -1648 0 +-1619 -1649 0 +-1620 -1650 0 +-1615 -1639 0 +-1616 -1640 0 +-1617 -1641 0 +-1618 -1642 0 +-1619 -1643 0 +-1620 -1644 0 +-1615 -1633 0 +-1616 -1634 0 +-1617 -1635 0 +-1618 -1636 0 +-1619 -1637 0 +-1620 -1638 0 +-1615 -1627 0 +-1616 -1628 0 +-1617 -1629 0 +-1618 -1630 0 +-1619 -1631 0 +-1620 -1632 0 +-1615 -1621 0 +-1616 -1622 0 +-1617 -1623 0 +-1618 -1624 0 +-1619 -1625 0 +-1620 -1626 0 +-1609 -1639 0 +-1610 -1640 0 +-1611 -1641 0 +-1612 -1642 0 +-1613 -1643 0 +-1614 -1644 0 +-1609 -1633 0 +-1610 -1634 0 +-1611 -1635 0 +-1612 -1636 0 +-1613 -1637 0 +-1614 -1638 0 +-1609 -1627 0 +-1610 -1628 0 +-1611 -1629 0 +-1612 -1630 0 +-1613 -1631 0 +-1614 -1632 0 +-1609 -1621 0 +-1610 -1622 0 +-1611 -1623 0 +-1612 -1624 0 +-1613 -1625 0 +-1614 -1626 0 +-1609 -1615 0 +-1610 -1616 0 +-1611 -1617 0 +-1612 -1618 0 +-1613 -1619 0 +-1614 -1620 0 +-1603 -1633 0 +-1604 -1634 0 +-1605 -1635 0 +-1606 -1636 0 +-1607 -1637 0 +-1608 -1638 0 +-1603 -1627 0 +-1604 -1628 0 +-1605 -1629 0 +-1606 -1630 0 +-1607 -1631 0 +-1608 -1632 0 +-1603 -1621 0 +-1604 -1622 0 +-1605 -1623 0 +-1606 -1624 0 +-1607 -1625 0 +-1608 -1626 0 +-1603 -1615 0 +-1604 -1616 0 +-1605 -1617 0 +-1606 -1618 0 +-1607 -1619 0 +-1608 -1620 0 +-1603 -1609 0 +-1604 -1610 0 +-1605 -1611 0 +-1606 -1612 0 +-1607 -1613 0 +-1608 -1614 0 +-1597 -1627 0 +-1598 -1628 0 +-1599 -1629 0 +-1600 -1630 0 +-1601 -1631 0 +-1602 -1632 0 +-1597 -1621 0 +-1598 -1622 0 +-1599 -1623 0 +-1600 -1624 0 +-1601 -1625 0 +-1602 -1626 0 +-1597 -1615 0 +-1598 -1616 0 +-1599 -1617 0 +-1600 -1618 0 +-1601 -1619 0 +-1602 -1620 0 +-1597 -1609 0 +-1598 -1610 0 +-1599 -1611 0 +-1600 -1612 0 +-1601 -1613 0 +-1602 -1614 0 +-1597 -1603 0 +-1598 -1604 0 +-1599 -1605 0 +-1600 -1606 0 +-1601 -1607 0 +-1602 -1608 0 +-1591 -1621 0 +-1592 -1622 0 +-1593 -1623 0 +-1594 -1624 0 +-1595 -1625 0 +-1596 -1626 0 +-1591 -1615 0 +-1592 -1616 0 +-1593 -1617 0 +-1594 -1618 0 +-1595 -1619 0 +-1596 -1620 0 +-1591 -1609 0 +-1592 -1610 0 +-1593 -1611 0 +-1594 -1612 0 +-1595 -1613 0 +-1596 -1614 0 +-1591 -1603 0 +-1592 -1604 0 +-1593 -1605 0 +-1594 -1606 0 +-1595 -1607 0 +-1596 -1608 0 +-1591 -1597 0 +-1592 -1598 0 +-1593 -1599 0 +-1594 -1600 0 +-1595 -1601 0 +-1596 -1602 0 +-1585 -1615 0 +-1586 -1616 0 +-1587 -1617 0 +-1588 -1618 0 +-1589 -1619 0 +-1590 -1620 0 +-1585 -1609 0 +-1586 -1610 0 +-1587 -1611 0 +-1588 -1612 0 +-1589 -1613 0 +-1590 -1614 0 +-1585 -1603 0 +-1586 -1604 0 +-1587 -1605 0 +-1588 -1606 0 +-1589 -1607 0 +-1590 -1608 0 +-1585 -1591 0 +-1586 -1592 0 +-1587 -1593 0 +-1588 -1594 0 +-1589 -1595 0 +-1590 -1596 0 +-1579 -1609 0 +-1580 -1610 0 +-1581 -1611 0 +-1582 -1612 0 +-1583 -1613 0 +-1584 -1614 0 +-1579 -1603 0 +-1580 -1604 0 +-1581 -1605 0 +-1582 -1606 0 +-1583 -1607 0 +-1584 -1608 0 +-1579 -1597 0 +-1580 -1598 0 +-1581 -1599 0 +-1582 -1600 0 +-1583 -1601 0 +-1584 -1602 0 +-1579 -1591 0 +-1580 -1592 0 +-1581 -1593 0 +-1582 -1594 0 +-1583 -1595 0 +-1584 -1596 0 +-1573 -1603 0 +-1574 -1604 0 +-1575 -1605 0 +-1576 -1606 0 +-1577 -1607 0 +-1578 -1608 0 +-1573 -1597 0 +-1574 -1598 0 +-1575 -1599 0 +-1576 -1600 0 +-1577 -1601 0 +-1578 -1602 0 +-1573 -1591 0 +-1574 -1592 0 +-1575 -1593 0 +-1576 -1594 0 +-1577 -1595 0 +-1578 -1596 0 +-1573 -1585 0 +-1574 -1586 0 +-1575 -1587 0 +-1576 -1588 0 +-1577 -1589 0 +-1578 -1590 0 +-1573 -1579 0 +-1574 -1580 0 +-1575 -1581 0 +-1576 -1582 0 +-1577 -1583 0 +-1578 -1584 0 +-1567 -1597 0 +-1568 -1598 0 +-1569 -1599 0 +-1570 -1600 0 +-1571 -1601 0 +-1572 -1602 0 +-1567 -1591 0 +-1568 -1592 0 +-1569 -1593 0 +-1570 -1594 0 +-1571 -1595 0 +-1572 -1596 0 +-1567 -1585 0 +-1568 -1586 0 +-1569 -1587 0 +-1570 -1588 0 +-1571 -1589 0 +-1572 -1590 0 +-1567 -1579 0 +-1568 -1580 0 +-1569 -1581 0 +-1570 -1582 0 +-1571 -1583 0 +-1572 -1584 0 +-1567 -1573 0 +-1568 -1574 0 +-1569 -1575 0 +-1570 -1576 0 +-1571 -1577 0 +-1572 -1578 0 +-1561 -1591 0 +-1562 -1592 0 +-1563 -1593 0 +-1564 -1594 0 +-1565 -1595 0 +-1566 -1596 0 +-1561 -1585 0 +-1562 -1586 0 +-1563 -1587 0 +-1564 -1588 0 +-1565 -1589 0 +-1566 -1590 0 +-1561 -1579 0 +-1562 -1580 0 +-1563 -1581 0 +-1564 -1582 0 +-1565 -1583 0 +-1566 -1584 0 +-1561 -1573 0 +-1562 -1574 0 +-1563 -1575 0 +-1564 -1576 0 +-1565 -1577 0 +-1566 -1578 0 +-1561 -1567 0 +-1562 -1568 0 +-1563 -1569 0 +-1564 -1570 0 +-1565 -1571 0 +-1566 -1572 0 +-1555 -1585 0 +-1556 -1586 0 +-1557 -1587 0 +-1558 -1588 0 +-1559 -1589 0 +-1560 -1590 0 +-1555 -1579 0 +-1556 -1580 0 +-1557 -1581 0 +-1558 -1582 0 +-1559 -1583 0 +-1560 -1584 0 +-1555 -1573 0 +-1556 -1574 0 +-1557 -1575 0 +-1558 -1576 0 +-1559 -1577 0 +-1560 -1578 0 +-1555 -1567 0 +-1556 -1568 0 +-1557 -1569 0 +-1558 -1570 0 +-1559 -1571 0 +-1560 -1572 0 +-1555 -1561 0 +-1556 -1562 0 +-1557 -1563 0 +-1558 -1564 0 +-1559 -1565 0 +-1560 -1566 0 +-1549 -1579 0 +-1550 -1580 0 +-1551 -1581 0 +-1552 -1582 0 +-1553 -1583 0 +-1554 -1584 0 +-1549 -1573 0 +-1550 -1574 0 +-1551 -1575 0 +-1552 -1576 0 +-1553 -1577 0 +-1554 -1578 0 +-1549 -1567 0 +-1550 -1568 0 +-1551 -1569 0 +-1552 -1570 0 +-1553 -1571 0 +-1554 -1572 0 +-1549 -1561 0 +-1550 -1562 0 +-1551 -1563 0 +-1552 -1564 0 +-1553 -1565 0 +-1554 -1566 0 +-1549 -1555 0 +-1550 -1556 0 +-1551 -1557 0 +-1552 -1558 0 +-1553 -1559 0 +-1554 -1560 0 +-1543 -1573 0 +-1544 -1574 0 +-1545 -1575 0 +-1546 -1576 0 +-1547 -1577 0 +-1548 -1578 0 +-1543 -1567 0 +-1544 -1568 0 +-1545 -1569 0 +-1546 -1570 0 +-1547 -1571 0 +-1548 -1572 0 +-1543 -1555 0 +-1544 -1556 0 +-1545 -1557 0 +-1546 -1558 0 +-1547 -1559 0 +-1548 -1560 0 +-1543 -1549 0 +-1544 -1550 0 +-1545 -1551 0 +-1546 -1552 0 +-1547 -1553 0 +-1548 -1554 0 +-1537 -1567 0 +-1538 -1568 0 +-1539 -1569 0 +-1540 -1570 0 +-1541 -1571 0 +-1542 -1572 0 +-1537 -1561 0 +-1538 -1562 0 +-1539 -1563 0 +-1540 -1564 0 +-1541 -1565 0 +-1542 -1566 0 +-1537 -1555 0 +-1538 -1556 0 +-1539 -1557 0 +-1540 -1558 0 +-1541 -1559 0 +-1542 -1560 0 +-1537 -1549 0 +-1538 -1550 0 +-1539 -1551 0 +-1540 -1552 0 +-1541 -1553 0 +-1542 -1554 0 +-1537 -1543 0 +-1538 -1544 0 +-1539 -1545 0 +-1540 -1546 0 +-1541 -1547 0 +-1542 -1548 0 +-1531 -1561 0 +-1532 -1562 0 +-1533 -1563 0 +-1534 -1564 0 +-1535 -1565 0 +-1536 -1566 0 +-1531 -1555 0 +-1532 -1556 0 +-1533 -1557 0 +-1534 -1558 0 +-1535 -1559 0 +-1536 -1560 0 +-1531 -1549 0 +-1532 -1550 0 +-1533 -1551 0 +-1534 -1552 0 +-1535 -1553 0 +-1536 -1554 0 +-1531 -1543 0 +-1532 -1544 0 +-1533 -1545 0 +-1534 -1546 0 +-1535 -1547 0 +-1536 -1548 0 +-1531 -1537 0 +-1532 -1538 0 +-1533 -1539 0 +-1534 -1540 0 +-1535 -1541 0 +-1536 -1542 0 +-1525 -1549 0 +-1526 -1550 0 +-1527 -1551 0 +-1528 -1552 0 +-1529 -1553 0 +-1530 -1554 0 +-1525 -1543 0 +-1526 -1544 0 +-1527 -1545 0 +-1528 -1546 0 +-1529 -1547 0 +-1530 -1548 0 +-1525 -1537 0 +-1526 -1538 0 +-1527 -1539 0 +-1528 -1540 0 +-1529 -1541 0 +-1530 -1542 0 +-1525 -1531 0 +-1526 -1532 0 +-1527 -1533 0 +-1528 -1534 0 +-1529 -1535 0 +-1530 -1536 0 +-1519 -1549 0 +-1520 -1550 0 +-1521 -1551 0 +-1522 -1552 0 +-1523 -1553 0 +-1524 -1554 0 +-1519 -1543 0 +-1520 -1544 0 +-1521 -1545 0 +-1522 -1546 0 +-1523 -1547 0 +-1524 -1548 0 +-1519 -1537 0 +-1520 -1538 0 +-1521 -1539 0 +-1522 -1540 0 +-1523 -1541 0 +-1524 -1542 0 +-1519 -1531 0 +-1520 -1532 0 +-1521 -1533 0 +-1522 -1534 0 +-1523 -1535 0 +-1524 -1536 0 +-1519 -1525 0 +-1520 -1526 0 +-1521 -1527 0 +-1522 -1528 0 +-1523 -1529 0 +-1524 -1530 0 +-1513 -1543 0 +-1514 -1544 0 +-1515 -1545 0 +-1516 -1546 0 +-1517 -1547 0 +-1518 -1548 0 +-1513 -1531 0 +-1514 -1532 0 +-1515 -1533 0 +-1516 -1534 0 +-1517 -1535 0 +-1518 -1536 0 +-1513 -1519 0 +-1514 -1520 0 +-1515 -1521 0 +-1516 -1522 0 +-1517 -1523 0 +-1518 -1524 0 +-1507 -1537 0 +-1508 -1538 0 +-1509 -1539 0 +-1510 -1540 0 +-1511 -1541 0 +-1512 -1542 0 +-1507 -1531 0 +-1508 -1532 0 +-1509 -1533 0 +-1510 -1534 0 +-1511 -1535 0 +-1512 -1536 0 +-1507 -1525 0 +-1508 -1526 0 +-1509 -1527 0 +-1510 -1528 0 +-1511 -1529 0 +-1512 -1530 0 +-1507 -1519 0 +-1508 -1520 0 +-1509 -1521 0 +-1510 -1522 0 +-1511 -1523 0 +-1512 -1524 0 +-1507 -1513 0 +-1508 -1514 0 +-1509 -1515 0 +-1510 -1516 0 +-1511 -1517 0 +-1512 -1518 0 +-1501 -1531 0 +-1502 -1532 0 +-1503 -1533 0 +-1504 -1534 0 +-1505 -1535 0 +-1506 -1536 0 +-1501 -1525 0 +-1502 -1526 0 +-1503 -1527 0 +-1504 -1528 0 +-1505 -1529 0 +-1506 -1530 0 +-1501 -1519 0 +-1502 -1520 0 +-1503 -1521 0 +-1504 -1522 0 +-1505 -1523 0 +-1506 -1524 0 +-1501 -1513 0 +-1502 -1514 0 +-1503 -1515 0 +-1504 -1516 0 +-1505 -1517 0 +-1506 -1518 0 +-1501 -1507 0 +-1502 -1508 0 +-1503 -1509 0 +-1504 -1510 0 +-1505 -1511 0 +-1506 -1512 0 +-1495 -1525 0 +-1496 -1526 0 +-1497 -1527 0 +-1498 -1528 0 +-1499 -1529 0 +-1500 -1530 0 +-1495 -1519 0 +-1496 -1520 0 +-1497 -1521 0 +-1498 -1522 0 +-1499 -1523 0 +-1500 -1524 0 +-1495 -1513 0 +-1496 -1514 0 +-1497 -1515 0 +-1498 -1516 0 +-1499 -1517 0 +-1500 -1518 0 +-1495 -1507 0 +-1496 -1508 0 +-1497 -1509 0 +-1498 -1510 0 +-1499 -1511 0 +-1500 -1512 0 +-1495 -1501 0 +-1496 -1502 0 +-1497 -1503 0 +-1498 -1504 0 +-1499 -1505 0 +-1500 -1506 0 +-1489 -1519 0 +-1490 -1520 0 +-1491 -1521 0 +-1492 -1522 0 +-1493 -1523 0 +-1494 -1524 0 +-1489 -1513 0 +-1490 -1514 0 +-1491 -1515 0 +-1492 -1516 0 +-1493 -1517 0 +-1494 -1518 0 +-1489 -1507 0 +-1490 -1508 0 +-1491 -1509 0 +-1492 -1510 0 +-1493 -1511 0 +-1494 -1512 0 +-1489 -1501 0 +-1490 -1502 0 +-1491 -1503 0 +-1492 -1504 0 +-1493 -1505 0 +-1494 -1506 0 +-1489 -1495 0 +-1490 -1496 0 +-1491 -1497 0 +-1492 -1498 0 +-1493 -1499 0 +-1494 -1500 0 +-1483 -1513 0 +-1484 -1514 0 +-1485 -1515 0 +-1486 -1516 0 +-1487 -1517 0 +-1488 -1518 0 +-1483 -1507 0 +-1484 -1508 0 +-1485 -1509 0 +-1486 -1510 0 +-1487 -1511 0 +-1488 -1512 0 +-1483 -1501 0 +-1484 -1502 0 +-1485 -1503 0 +-1486 -1504 0 +-1487 -1505 0 +-1488 -1506 0 +-1483 -1495 0 +-1484 -1496 0 +-1485 -1497 0 +-1486 -1498 0 +-1487 -1499 0 +-1488 -1500 0 +-1483 -1489 0 +-1484 -1490 0 +-1485 -1491 0 +-1486 -1492 0 +-1487 -1493 0 +-1488 -1494 0 +-1477 -1507 0 +-1478 -1508 0 +-1479 -1509 0 +-1480 -1510 0 +-1481 -1511 0 +-1482 -1512 0 +-1477 -1501 0 +-1478 -1502 0 +-1479 -1503 0 +-1480 -1504 0 +-1481 -1505 0 +-1482 -1506 0 +-1477 -1495 0 +-1478 -1496 0 +-1479 -1497 0 +-1480 -1498 0 +-1481 -1499 0 +-1482 -1500 0 +-1477 -1489 0 +-1478 -1490 0 +-1479 -1491 0 +-1480 -1492 0 +-1481 -1493 0 +-1482 -1494 0 +-1477 -1483 0 +-1478 -1484 0 +-1479 -1485 0 +-1480 -1486 0 +-1481 -1487 0 +-1482 -1488 0 +-1471 -1501 0 +-1472 -1502 0 +-1473 -1503 0 +-1474 -1504 0 +-1475 -1505 0 +-1476 -1506 0 +-1471 -1495 0 +-1472 -1496 0 +-1473 -1497 0 +-1474 -1498 0 +-1475 -1499 0 +-1476 -1500 0 +-1471 -1489 0 +-1472 -1490 0 +-1473 -1491 0 +-1474 -1492 0 +-1475 -1493 0 +-1476 -1494 0 +-1471 -1483 0 +-1472 -1484 0 +-1473 -1485 0 +-1474 -1486 0 +-1475 -1487 0 +-1476 -1488 0 +-1471 -1477 0 +-1472 -1478 0 +-1473 -1479 0 +-1474 -1480 0 +-1475 -1481 0 +-1476 -1482 0 +-1465 -1495 0 +-1466 -1496 0 +-1467 -1497 0 +-1468 -1498 0 +-1469 -1499 0 +-1470 -1500 0 +-1465 -1489 0 +-1466 -1490 0 +-1467 -1491 0 +-1468 -1492 0 +-1469 -1493 0 +-1470 -1494 0 +-1465 -1477 0 +-1466 -1478 0 +-1467 -1479 0 +-1468 -1480 0 +-1469 -1481 0 +-1470 -1482 0 +-1465 -1471 0 +-1466 -1472 0 +-1467 -1473 0 +-1468 -1474 0 +-1469 -1475 0 +-1470 -1476 0 +-1459 -1489 0 +-1460 -1490 0 +-1461 -1491 0 +-1462 -1492 0 +-1463 -1493 0 +-1464 -1494 0 +-1459 -1483 0 +-1460 -1484 0 +-1461 -1485 0 +-1462 -1486 0 +-1463 -1487 0 +-1464 -1488 0 +-1459 -1477 0 +-1460 -1478 0 +-1461 -1479 0 +-1462 -1480 0 +-1463 -1481 0 +-1464 -1482 0 +-1459 -1471 0 +-1460 -1472 0 +-1461 -1473 0 +-1462 -1474 0 +-1463 -1475 0 +-1464 -1476 0 +-1459 -1465 0 +-1460 -1466 0 +-1461 -1467 0 +-1462 -1468 0 +-1463 -1469 0 +-1464 -1470 0 +-1453 -1483 0 +-1454 -1484 0 +-1455 -1485 0 +-1456 -1486 0 +-1457 -1487 0 +-1458 -1488 0 +-1453 -1477 0 +-1454 -1478 0 +-1455 -1479 0 +-1456 -1480 0 +-1457 -1481 0 +-1458 -1482 0 +-1453 -1471 0 +-1454 -1472 0 +-1455 -1473 0 +-1456 -1474 0 +-1457 -1475 0 +-1458 -1476 0 +-1453 -1465 0 +-1454 -1466 0 +-1455 -1467 0 +-1456 -1468 0 +-1457 -1469 0 +-1458 -1470 0 +-1453 -1459 0 +-1454 -1460 0 +-1455 -1461 0 +-1456 -1462 0 +-1457 -1463 0 +-1458 -1464 0 +-1447 -1477 0 +-1448 -1478 0 +-1449 -1479 0 +-1450 -1480 0 +-1451 -1481 0 +-1452 -1482 0 +-1447 -1471 0 +-1448 -1472 0 +-1449 -1473 0 +-1450 -1474 0 +-1451 -1475 0 +-1452 -1476 0 +-1447 -1465 0 +-1448 -1466 0 +-1449 -1467 0 +-1450 -1468 0 +-1451 -1469 0 +-1452 -1470 0 +-1447 -1459 0 +-1448 -1460 0 +-1449 -1461 0 +-1450 -1462 0 +-1451 -1463 0 +-1452 -1464 0 +-1447 -1453 0 +-1448 -1454 0 +-1449 -1455 0 +-1450 -1456 0 +-1451 -1457 0 +-1452 -1458 0 +-1441 -1471 0 +-1442 -1472 0 +-1443 -1473 0 +-1444 -1474 0 +-1445 -1475 0 +-1446 -1476 0 +-1441 -1465 0 +-1442 -1466 0 +-1443 -1467 0 +-1444 -1468 0 +-1445 -1469 0 +-1446 -1470 0 +-1441 -1459 0 +-1442 -1460 0 +-1443 -1461 0 +-1444 -1462 0 +-1445 -1463 0 +-1446 -1464 0 +-1441 -1453 0 +-1442 -1454 0 +-1443 -1455 0 +-1444 -1456 0 +-1445 -1457 0 +-1446 -1458 0 +-1441 -1447 0 +-1442 -1448 0 +-1443 -1449 0 +-1444 -1450 0 +-1445 -1451 0 +-1446 -1452 0 +-1435 -1465 0 +-1436 -1466 0 +-1437 -1467 0 +-1438 -1468 0 +-1439 -1469 0 +-1440 -1470 0 +-1435 -1459 0 +-1436 -1460 0 +-1437 -1461 0 +-1438 -1462 0 +-1439 -1463 0 +-1440 -1464 0 +-1435 -1453 0 +-1436 -1454 0 +-1437 -1455 0 +-1438 -1456 0 +-1439 -1457 0 +-1440 -1458 0 +-1435 -1447 0 +-1436 -1448 0 +-1437 -1449 0 +-1438 -1450 0 +-1439 -1451 0 +-1440 -1452 0 +-1435 -1441 0 +-1436 -1442 0 +-1437 -1443 0 +-1438 -1444 0 +-1439 -1445 0 +-1440 -1446 0 +-1429 -1459 0 +-1430 -1460 0 +-1431 -1461 0 +-1432 -1462 0 +-1433 -1463 0 +-1434 -1464 0 +-1429 -1453 0 +-1430 -1454 0 +-1431 -1455 0 +-1432 -1456 0 +-1433 -1457 0 +-1434 -1458 0 +-1429 -1447 0 +-1430 -1448 0 +-1431 -1449 0 +-1432 -1450 0 +-1433 -1451 0 +-1434 -1452 0 +-1429 -1441 0 +-1430 -1442 0 +-1431 -1443 0 +-1432 -1444 0 +-1433 -1445 0 +-1434 -1446 0 +-1429 -1435 0 +-1430 -1436 0 +-1431 -1437 0 +-1432 -1438 0 +-1433 -1439 0 +-1434 -1440 0 +-1423 -1453 0 +-1424 -1454 0 +-1425 -1455 0 +-1426 -1456 0 +-1427 -1457 0 +-1428 -1458 0 +-1423 -1447 0 +-1424 -1448 0 +-1425 -1449 0 +-1426 -1450 0 +-1427 -1451 0 +-1428 -1452 0 +-1423 -1441 0 +-1424 -1442 0 +-1425 -1443 0 +-1426 -1444 0 +-1427 -1445 0 +-1428 -1446 0 +-1423 -1435 0 +-1424 -1436 0 +-1425 -1437 0 +-1426 -1438 0 +-1427 -1439 0 +-1428 -1440 0 +-1423 -1429 0 +-1424 -1430 0 +-1425 -1431 0 +-1426 -1432 0 +-1427 -1433 0 +-1428 -1434 0 +-1417 -1447 0 +-1418 -1448 0 +-1419 -1449 0 +-1420 -1450 0 +-1421 -1451 0 +-1422 -1452 0 +-1417 -1441 0 +-1418 -1442 0 +-1419 -1443 0 +-1420 -1444 0 +-1421 -1445 0 +-1422 -1446 0 +-1417 -1435 0 +-1418 -1436 0 +-1419 -1437 0 +-1420 -1438 0 +-1421 -1439 0 +-1422 -1440 0 +-1417 -1429 0 +-1418 -1430 0 +-1419 -1431 0 +-1420 -1432 0 +-1421 -1433 0 +-1422 -1434 0 +-1417 -1423 0 +-1418 -1424 0 +-1419 -1425 0 +-1420 -1426 0 +-1421 -1427 0 +-1422 -1428 0 +-1411 -1441 0 +-1412 -1442 0 +-1413 -1443 0 +-1414 -1444 0 +-1415 -1445 0 +-1416 -1446 0 +-1411 -1435 0 +-1412 -1436 0 +-1413 -1437 0 +-1414 -1438 0 +-1415 -1439 0 +-1416 -1440 0 +-1411 -1429 0 +-1412 -1430 0 +-1413 -1431 0 +-1414 -1432 0 +-1415 -1433 0 +-1416 -1434 0 +-1411 -1423 0 +-1412 -1424 0 +-1413 -1425 0 +-1414 -1426 0 +-1415 -1427 0 +-1416 -1428 0 +-1411 -1417 0 +-1412 -1418 0 +-1413 -1419 0 +-1414 -1420 0 +-1415 -1421 0 +-1416 -1422 0 +-1405 -1435 0 +-1406 -1436 0 +-1407 -1437 0 +-1408 -1438 0 +-1409 -1439 0 +-1410 -1440 0 +-1405 -1429 0 +-1406 -1430 0 +-1407 -1431 0 +-1408 -1432 0 +-1409 -1433 0 +-1410 -1434 0 +-1405 -1423 0 +-1406 -1424 0 +-1407 -1425 0 +-1408 -1426 0 +-1409 -1427 0 +-1410 -1428 0 +-1405 -1417 0 +-1406 -1418 0 +-1407 -1419 0 +-1408 -1420 0 +-1409 -1421 0 +-1410 -1422 0 +-1405 -1411 0 +-1406 -1412 0 +-1407 -1413 0 +-1408 -1414 0 +-1409 -1415 0 +-1410 -1416 0 +-1399 -1429 0 +-1400 -1430 0 +-1401 -1431 0 +-1402 -1432 0 +-1403 -1433 0 +-1404 -1434 0 +-1399 -1423 0 +-1400 -1424 0 +-1401 -1425 0 +-1402 -1426 0 +-1403 -1427 0 +-1404 -1428 0 +-1399 -1417 0 +-1400 -1418 0 +-1401 -1419 0 +-1402 -1420 0 +-1403 -1421 0 +-1404 -1422 0 +-1399 -1411 0 +-1400 -1412 0 +-1401 -1413 0 +-1402 -1414 0 +-1403 -1415 0 +-1404 -1416 0 +-1399 -1405 0 +-1400 -1406 0 +-1401 -1407 0 +-1402 -1408 0 +-1403 -1409 0 +-1404 -1410 0 +-1393 -1423 0 +-1394 -1424 0 +-1395 -1425 0 +-1396 -1426 0 +-1397 -1427 0 +-1398 -1428 0 +-1393 -1417 0 +-1394 -1418 0 +-1395 -1419 0 +-1396 -1420 0 +-1397 -1421 0 +-1398 -1422 0 +-1393 -1411 0 +-1394 -1412 0 +-1395 -1413 0 +-1396 -1414 0 +-1397 -1415 0 +-1398 -1416 0 +-1393 -1405 0 +-1394 -1406 0 +-1395 -1407 0 +-1396 -1408 0 +-1397 -1409 0 +-1398 -1410 0 +-1393 -1399 0 +-1394 -1400 0 +-1395 -1401 0 +-1396 -1402 0 +-1397 -1403 0 +-1398 -1404 0 +-1387 -1417 0 +-1388 -1418 0 +-1389 -1419 0 +-1390 -1420 0 +-1391 -1421 0 +-1392 -1422 0 +-1387 -1411 0 +-1388 -1412 0 +-1389 -1413 0 +-1390 -1414 0 +-1391 -1415 0 +-1392 -1416 0 +-1387 -1405 0 +-1388 -1406 0 +-1389 -1407 0 +-1390 -1408 0 +-1391 -1409 0 +-1392 -1410 0 +-1387 -1399 0 +-1388 -1400 0 +-1389 -1401 0 +-1390 -1402 0 +-1391 -1403 0 +-1392 -1404 0 +-1381 -1411 0 +-1382 -1412 0 +-1383 -1413 0 +-1384 -1414 0 +-1385 -1415 0 +-1386 -1416 0 +-1381 -1405 0 +-1382 -1406 0 +-1383 -1407 0 +-1384 -1408 0 +-1385 -1409 0 +-1386 -1410 0 +-1381 -1399 0 +-1382 -1400 0 +-1383 -1401 0 +-1384 -1402 0 +-1385 -1403 0 +-1386 -1404 0 +-1381 -1393 0 +-1382 -1394 0 +-1383 -1395 0 +-1384 -1396 0 +-1385 -1397 0 +-1386 -1398 0 +-1381 -1387 0 +-1382 -1388 0 +-1383 -1389 0 +-1384 -1390 0 +-1385 -1391 0 +-1386 -1392 0 +-1375 -1405 0 +-1376 -1406 0 +-1377 -1407 0 +-1378 -1408 0 +-1379 -1409 0 +-1380 -1410 0 +-1375 -1393 0 +-1376 -1394 0 +-1377 -1395 0 +-1378 -1396 0 +-1379 -1397 0 +-1380 -1398 0 +-1375 -1387 0 +-1376 -1388 0 +-1377 -1389 0 +-1378 -1390 0 +-1379 -1391 0 +-1380 -1392 0 +-1375 -1381 0 +-1376 -1382 0 +-1377 -1383 0 +-1378 -1384 0 +-1379 -1385 0 +-1380 -1386 0 +-1369 -1393 0 +-1370 -1394 0 +-1371 -1395 0 +-1372 -1396 0 +-1373 -1397 0 +-1374 -1398 0 +-1369 -1387 0 +-1370 -1388 0 +-1371 -1389 0 +-1372 -1390 0 +-1373 -1391 0 +-1374 -1392 0 +-1369 -1375 0 +-1370 -1376 0 +-1371 -1377 0 +-1372 -1378 0 +-1373 -1379 0 +-1374 -1380 0 +-1363 -1393 0 +-1364 -1394 0 +-1365 -1395 0 +-1366 -1396 0 +-1367 -1397 0 +-1368 -1398 0 +-1363 -1387 0 +-1364 -1388 0 +-1365 -1389 0 +-1366 -1390 0 +-1367 -1391 0 +-1368 -1392 0 +-1363 -1381 0 +-1364 -1382 0 +-1365 -1383 0 +-1366 -1384 0 +-1367 -1385 0 +-1368 -1386 0 +-1363 -1375 0 +-1364 -1376 0 +-1365 -1377 0 +-1366 -1378 0 +-1367 -1379 0 +-1368 -1380 0 +-1363 -1369 0 +-1364 -1370 0 +-1365 -1371 0 +-1366 -1372 0 +-1367 -1373 0 +-1368 -1374 0 +-1357 -1387 0 +-1358 -1388 0 +-1359 -1389 0 +-1360 -1390 0 +-1361 -1391 0 +-1362 -1392 0 +-1357 -1381 0 +-1358 -1382 0 +-1359 -1383 0 +-1360 -1384 0 +-1361 -1385 0 +-1362 -1386 0 +-1357 -1375 0 +-1358 -1376 0 +-1359 -1377 0 +-1360 -1378 0 +-1361 -1379 0 +-1362 -1380 0 +-1357 -1369 0 +-1358 -1370 0 +-1359 -1371 0 +-1360 -1372 0 +-1361 -1373 0 +-1362 -1374 0 +-1357 -1363 0 +-1358 -1364 0 +-1359 -1365 0 +-1360 -1366 0 +-1361 -1367 0 +-1362 -1368 0 +-1351 -1381 0 +-1352 -1382 0 +-1353 -1383 0 +-1354 -1384 0 +-1355 -1385 0 +-1356 -1386 0 +-1351 -1375 0 +-1352 -1376 0 +-1353 -1377 0 +-1354 -1378 0 +-1355 -1379 0 +-1356 -1380 0 +-1351 -1369 0 +-1352 -1370 0 +-1353 -1371 0 +-1354 -1372 0 +-1355 -1373 0 +-1356 -1374 0 +-1351 -1363 0 +-1352 -1364 0 +-1353 -1365 0 +-1354 -1366 0 +-1355 -1367 0 +-1356 -1368 0 +-1351 -1357 0 +-1352 -1358 0 +-1353 -1359 0 +-1354 -1360 0 +-1355 -1361 0 +-1356 -1362 0 +-1345 -1375 0 +-1346 -1376 0 +-1347 -1377 0 +-1348 -1378 0 +-1349 -1379 0 +-1350 -1380 0 +-1345 -1363 0 +-1346 -1364 0 +-1347 -1365 0 +-1348 -1366 0 +-1349 -1367 0 +-1350 -1368 0 +-1345 -1357 0 +-1346 -1358 0 +-1347 -1359 0 +-1348 -1360 0 +-1349 -1361 0 +-1350 -1362 0 +-1345 -1351 0 +-1346 -1352 0 +-1347 -1353 0 +-1348 -1354 0 +-1349 -1355 0 +-1350 -1356 0 +-1339 -1369 0 +-1340 -1370 0 +-1341 -1371 0 +-1342 -1372 0 +-1343 -1373 0 +-1344 -1374 0 +-1339 -1363 0 +-1340 -1364 0 +-1341 -1365 0 +-1342 -1366 0 +-1343 -1367 0 +-1344 -1368 0 +-1339 -1357 0 +-1340 -1358 0 +-1341 -1359 0 +-1342 -1360 0 +-1343 -1361 0 +-1344 -1362 0 +-1339 -1351 0 +-1340 -1352 0 +-1341 -1353 0 +-1342 -1354 0 +-1343 -1355 0 +-1344 -1356 0 +-1339 -1345 0 +-1340 -1346 0 +-1341 -1347 0 +-1342 -1348 0 +-1343 -1349 0 +-1344 -1350 0 +-1333 -1363 0 +-1334 -1364 0 +-1335 -1365 0 +-1336 -1366 0 +-1337 -1367 0 +-1338 -1368 0 +-1333 -1357 0 +-1334 -1358 0 +-1335 -1359 0 +-1336 -1360 0 +-1337 -1361 0 +-1338 -1362 0 +-1333 -1351 0 +-1334 -1352 0 +-1335 -1353 0 +-1336 -1354 0 +-1337 -1355 0 +-1338 -1356 0 +-1333 -1345 0 +-1334 -1346 0 +-1335 -1347 0 +-1336 -1348 0 +-1337 -1349 0 +-1338 -1350 0 +-1333 -1339 0 +-1334 -1340 0 +-1335 -1341 0 +-1336 -1342 0 +-1337 -1343 0 +-1338 -1344 0 +-1327 -1357 0 +-1328 -1358 0 +-1329 -1359 0 +-1330 -1360 0 +-1331 -1361 0 +-1332 -1362 0 +-1327 -1351 0 +-1328 -1352 0 +-1329 -1353 0 +-1330 -1354 0 +-1331 -1355 0 +-1332 -1356 0 +-1327 -1345 0 +-1328 -1346 0 +-1329 -1347 0 +-1330 -1348 0 +-1331 -1349 0 +-1332 -1350 0 +-1327 -1339 0 +-1328 -1340 0 +-1329 -1341 0 +-1330 -1342 0 +-1331 -1343 0 +-1332 -1344 0 +-1327 -1333 0 +-1328 -1334 0 +-1329 -1335 0 +-1330 -1336 0 +-1331 -1337 0 +-1332 -1338 0 +-1321 -1351 0 +-1322 -1352 0 +-1323 -1353 0 +-1324 -1354 0 +-1325 -1355 0 +-1326 -1356 0 +-1321 -1345 0 +-1322 -1346 0 +-1323 -1347 0 +-1324 -1348 0 +-1325 -1349 0 +-1326 -1350 0 +-1321 -1339 0 +-1322 -1340 0 +-1323 -1341 0 +-1324 -1342 0 +-1325 -1343 0 +-1326 -1344 0 +-1321 -1333 0 +-1322 -1334 0 +-1323 -1335 0 +-1324 -1336 0 +-1325 -1337 0 +-1326 -1338 0 +-1321 -1327 0 +-1322 -1328 0 +-1323 -1329 0 +-1324 -1330 0 +-1325 -1331 0 +-1326 -1332 0 +-1315 -1345 0 +-1316 -1346 0 +-1317 -1347 0 +-1318 -1348 0 +-1319 -1349 0 +-1320 -1350 0 +-1315 -1339 0 +-1316 -1340 0 +-1317 -1341 0 +-1318 -1342 0 +-1319 -1343 0 +-1320 -1344 0 +-1315 -1333 0 +-1316 -1334 0 +-1317 -1335 0 +-1318 -1336 0 +-1319 -1337 0 +-1320 -1338 0 +-1315 -1327 0 +-1316 -1328 0 +-1317 -1329 0 +-1318 -1330 0 +-1319 -1331 0 +-1320 -1332 0 +-1309 -1339 0 +-1310 -1340 0 +-1311 -1341 0 +-1312 -1342 0 +-1313 -1343 0 +-1314 -1344 0 +-1309 -1333 0 +-1310 -1334 0 +-1311 -1335 0 +-1312 -1336 0 +-1313 -1337 0 +-1314 -1338 0 +-1309 -1327 0 +-1310 -1328 0 +-1311 -1329 0 +-1312 -1330 0 +-1313 -1331 0 +-1314 -1332 0 +-1309 -1321 0 +-1310 -1322 0 +-1311 -1323 0 +-1312 -1324 0 +-1313 -1325 0 +-1314 -1326 0 +-1309 -1315 0 +-1310 -1316 0 +-1311 -1317 0 +-1312 -1318 0 +-1313 -1319 0 +-1314 -1320 0 +-1303 -1333 0 +-1304 -1334 0 +-1305 -1335 0 +-1306 -1336 0 +-1307 -1337 0 +-1308 -1338 0 +-1303 -1327 0 +-1304 -1328 0 +-1305 -1329 0 +-1306 -1330 0 +-1307 -1331 0 +-1308 -1332 0 +-1303 -1321 0 +-1304 -1322 0 +-1305 -1323 0 +-1306 -1324 0 +-1307 -1325 0 +-1308 -1326 0 +-1303 -1315 0 +-1304 -1316 0 +-1305 -1317 0 +-1306 -1318 0 +-1307 -1319 0 +-1308 -1320 0 +-1303 -1309 0 +-1304 -1310 0 +-1305 -1311 0 +-1306 -1312 0 +-1307 -1313 0 +-1308 -1314 0 +-1297 -1327 0 +-1298 -1328 0 +-1299 -1329 0 +-1300 -1330 0 +-1301 -1331 0 +-1302 -1332 0 +-1297 -1321 0 +-1298 -1322 0 +-1299 -1323 0 +-1300 -1324 0 +-1301 -1325 0 +-1302 -1326 0 +-1297 -1315 0 +-1298 -1316 0 +-1299 -1317 0 +-1300 -1318 0 +-1301 -1319 0 +-1302 -1320 0 +-1297 -1309 0 +-1298 -1310 0 +-1299 -1311 0 +-1300 -1312 0 +-1301 -1313 0 +-1302 -1314 0 +-1297 -1303 0 +-1298 -1304 0 +-1299 -1305 0 +-1300 -1306 0 +-1301 -1307 0 +-1302 -1308 0 +-1291 -1321 0 +-1292 -1322 0 +-1293 -1323 0 +-1294 -1324 0 +-1295 -1325 0 +-1296 -1326 0 +-1291 -1315 0 +-1292 -1316 0 +-1293 -1317 0 +-1294 -1318 0 +-1295 -1319 0 +-1296 -1320 0 +-1291 -1309 0 +-1292 -1310 0 +-1293 -1311 0 +-1294 -1312 0 +-1295 -1313 0 +-1296 -1314 0 +-1291 -1303 0 +-1292 -1304 0 +-1293 -1305 0 +-1294 -1306 0 +-1295 -1307 0 +-1296 -1308 0 +-1291 -1297 0 +-1292 -1298 0 +-1293 -1299 0 +-1294 -1300 0 +-1295 -1301 0 +-1296 -1302 0 +-1285 -1315 0 +-1286 -1316 0 +-1287 -1317 0 +-1288 -1318 0 +-1289 -1319 0 +-1290 -1320 0 +-1285 -1309 0 +-1286 -1310 0 +-1287 -1311 0 +-1288 -1312 0 +-1289 -1313 0 +-1290 -1314 0 +-1285 -1303 0 +-1286 -1304 0 +-1287 -1305 0 +-1288 -1306 0 +-1289 -1307 0 +-1290 -1308 0 +-1285 -1297 0 +-1286 -1298 0 +-1287 -1299 0 +-1288 -1300 0 +-1289 -1301 0 +-1290 -1302 0 +-1285 -1291 0 +-1286 -1292 0 +-1287 -1293 0 +-1288 -1294 0 +-1289 -1295 0 +-1290 -1296 0 +-1279 -1309 0 +-1280 -1310 0 +-1281 -1311 0 +-1282 -1312 0 +-1283 -1313 0 +-1284 -1314 0 +-1279 -1303 0 +-1280 -1304 0 +-1281 -1305 0 +-1282 -1306 0 +-1283 -1307 0 +-1284 -1308 0 +-1279 -1297 0 +-1280 -1298 0 +-1281 -1299 0 +-1282 -1300 0 +-1283 -1301 0 +-1284 -1302 0 +-1279 -1291 0 +-1280 -1292 0 +-1281 -1293 0 +-1282 -1294 0 +-1283 -1295 0 +-1284 -1296 0 +-1279 -1285 0 +-1280 -1286 0 +-1281 -1287 0 +-1282 -1288 0 +-1283 -1289 0 +-1284 -1290 0 +-1273 -1303 0 +-1274 -1304 0 +-1275 -1305 0 +-1276 -1306 0 +-1277 -1307 0 +-1278 -1308 0 +-1273 -1297 0 +-1274 -1298 0 +-1275 -1299 0 +-1276 -1300 0 +-1277 -1301 0 +-1278 -1302 0 +-1273 -1291 0 +-1274 -1292 0 +-1275 -1293 0 +-1276 -1294 0 +-1277 -1295 0 +-1278 -1296 0 +-1273 -1285 0 +-1274 -1286 0 +-1275 -1287 0 +-1276 -1288 0 +-1277 -1289 0 +-1278 -1290 0 +-1273 -1279 0 +-1274 -1280 0 +-1275 -1281 0 +-1276 -1282 0 +-1277 -1283 0 +-1278 -1284 0 +-1267 -1297 0 +-1268 -1298 0 +-1269 -1299 0 +-1270 -1300 0 +-1271 -1301 0 +-1272 -1302 0 +-1267 -1291 0 +-1268 -1292 0 +-1269 -1293 0 +-1270 -1294 0 +-1271 -1295 0 +-1272 -1296 0 +-1267 -1285 0 +-1268 -1286 0 +-1269 -1287 0 +-1270 -1288 0 +-1271 -1289 0 +-1272 -1290 0 +-1267 -1279 0 +-1268 -1280 0 +-1269 -1281 0 +-1270 -1282 0 +-1271 -1283 0 +-1272 -1284 0 +-1267 -1273 0 +-1268 -1274 0 +-1269 -1275 0 +-1270 -1276 0 +-1271 -1277 0 +-1272 -1278 0 +-1261 -1291 0 +-1262 -1292 0 +-1263 -1293 0 +-1264 -1294 0 +-1265 -1295 0 +-1266 -1296 0 +-1261 -1285 0 +-1262 -1286 0 +-1263 -1287 0 +-1264 -1288 0 +-1265 -1289 0 +-1266 -1290 0 +-1261 -1279 0 +-1262 -1280 0 +-1263 -1281 0 +-1264 -1282 0 +-1265 -1283 0 +-1266 -1284 0 +-1261 -1273 0 +-1262 -1274 0 +-1263 -1275 0 +-1264 -1276 0 +-1265 -1277 0 +-1266 -1278 0 +-1261 -1267 0 +-1262 -1268 0 +-1263 -1269 0 +-1264 -1270 0 +-1265 -1271 0 +-1266 -1272 0 +-1255 -1285 0 +-1256 -1286 0 +-1257 -1287 0 +-1258 -1288 0 +-1259 -1289 0 +-1260 -1290 0 +-1255 -1279 0 +-1256 -1280 0 +-1257 -1281 0 +-1258 -1282 0 +-1259 -1283 0 +-1260 -1284 0 +-1255 -1273 0 +-1256 -1274 0 +-1257 -1275 0 +-1258 -1276 0 +-1259 -1277 0 +-1260 -1278 0 +-1255 -1267 0 +-1256 -1268 0 +-1257 -1269 0 +-1258 -1270 0 +-1259 -1271 0 +-1260 -1272 0 +-1255 -1261 0 +-1256 -1262 0 +-1257 -1263 0 +-1258 -1264 0 +-1259 -1265 0 +-1260 -1266 0 +-1249 -1279 0 +-1250 -1280 0 +-1251 -1281 0 +-1252 -1282 0 +-1253 -1283 0 +-1254 -1284 0 +-1249 -1273 0 +-1250 -1274 0 +-1251 -1275 0 +-1252 -1276 0 +-1253 -1277 0 +-1254 -1278 0 +-1249 -1267 0 +-1250 -1268 0 +-1251 -1269 0 +-1252 -1270 0 +-1253 -1271 0 +-1254 -1272 0 +-1249 -1261 0 +-1250 -1262 0 +-1251 -1263 0 +-1252 -1264 0 +-1253 -1265 0 +-1254 -1266 0 +-1249 -1255 0 +-1250 -1256 0 +-1251 -1257 0 +-1252 -1258 0 +-1253 -1259 0 +-1254 -1260 0 +-1243 -1273 0 +-1244 -1274 0 +-1245 -1275 0 +-1246 -1276 0 +-1247 -1277 0 +-1248 -1278 0 +-1243 -1267 0 +-1244 -1268 0 +-1245 -1269 0 +-1246 -1270 0 +-1247 -1271 0 +-1248 -1272 0 +-1243 -1261 0 +-1244 -1262 0 +-1245 -1263 0 +-1246 -1264 0 +-1247 -1265 0 +-1248 -1266 0 +-1243 -1255 0 +-1244 -1256 0 +-1245 -1257 0 +-1246 -1258 0 +-1247 -1259 0 +-1248 -1260 0 +-1243 -1249 0 +-1244 -1250 0 +-1245 -1251 0 +-1246 -1252 0 +-1247 -1253 0 +-1248 -1254 0 +-1237 -1267 0 +-1238 -1268 0 +-1239 -1269 0 +-1240 -1270 0 +-1241 -1271 0 +-1242 -1272 0 +-1237 -1261 0 +-1238 -1262 0 +-1239 -1263 0 +-1240 -1264 0 +-1241 -1265 0 +-1242 -1266 0 +-1237 -1255 0 +-1238 -1256 0 +-1239 -1257 0 +-1240 -1258 0 +-1241 -1259 0 +-1242 -1260 0 +-1237 -1249 0 +-1238 -1250 0 +-1239 -1251 0 +-1240 -1252 0 +-1241 -1253 0 +-1242 -1254 0 +-1237 -1243 0 +-1238 -1244 0 +-1239 -1245 0 +-1240 -1246 0 +-1241 -1247 0 +-1242 -1248 0 +-1231 -1261 0 +-1232 -1262 0 +-1233 -1263 0 +-1234 -1264 0 +-1235 -1265 0 +-1236 -1266 0 +-1231 -1255 0 +-1232 -1256 0 +-1233 -1257 0 +-1234 -1258 0 +-1235 -1259 0 +-1236 -1260 0 +-1231 -1249 0 +-1232 -1250 0 +-1233 -1251 0 +-1234 -1252 0 +-1235 -1253 0 +-1236 -1254 0 +-1231 -1243 0 +-1232 -1244 0 +-1233 -1245 0 +-1234 -1246 0 +-1235 -1247 0 +-1236 -1248 0 +-1231 -1237 0 +-1232 -1238 0 +-1233 -1239 0 +-1234 -1240 0 +-1235 -1241 0 +-1236 -1242 0 +-1225 -1255 0 +-1226 -1256 0 +-1227 -1257 0 +-1228 -1258 0 +-1229 -1259 0 +-1230 -1260 0 +-1225 -1249 0 +-1226 -1250 0 +-1227 -1251 0 +-1228 -1252 0 +-1229 -1253 0 +-1230 -1254 0 +-1225 -1243 0 +-1226 -1244 0 +-1227 -1245 0 +-1228 -1246 0 +-1229 -1247 0 +-1230 -1248 0 +-1225 -1237 0 +-1226 -1238 0 +-1227 -1239 0 +-1228 -1240 0 +-1229 -1241 0 +-1230 -1242 0 +-1225 -1231 0 +-1226 -1232 0 +-1227 -1233 0 +-1228 -1234 0 +-1229 -1235 0 +-1230 -1236 0 +-1219 -1249 0 +-1220 -1250 0 +-1221 -1251 0 +-1222 -1252 0 +-1223 -1253 0 +-1224 -1254 0 +-1219 -1243 0 +-1220 -1244 0 +-1221 -1245 0 +-1222 -1246 0 +-1223 -1247 0 +-1224 -1248 0 +-1219 -1237 0 +-1220 -1238 0 +-1221 -1239 0 +-1222 -1240 0 +-1223 -1241 0 +-1224 -1242 0 +-1219 -1231 0 +-1220 -1232 0 +-1221 -1233 0 +-1222 -1234 0 +-1223 -1235 0 +-1224 -1236 0 +-1219 -1225 0 +-1220 -1226 0 +-1221 -1227 0 +-1222 -1228 0 +-1223 -1229 0 +-1224 -1230 0 +-1213 -1243 0 +-1214 -1244 0 +-1215 -1245 0 +-1216 -1246 0 +-1217 -1247 0 +-1218 -1248 0 +-1213 -1237 0 +-1214 -1238 0 +-1215 -1239 0 +-1216 -1240 0 +-1217 -1241 0 +-1218 -1242 0 +-1213 -1231 0 +-1214 -1232 0 +-1215 -1233 0 +-1216 -1234 0 +-1217 -1235 0 +-1218 -1236 0 +-1213 -1225 0 +-1214 -1226 0 +-1215 -1227 0 +-1216 -1228 0 +-1217 -1229 0 +-1218 -1230 0 +-1213 -1219 0 +-1214 -1220 0 +-1215 -1221 0 +-1216 -1222 0 +-1217 -1223 0 +-1218 -1224 0 +-1207 -1237 0 +-1208 -1238 0 +-1209 -1239 0 +-1210 -1240 0 +-1211 -1241 0 +-1212 -1242 0 +-1207 -1231 0 +-1208 -1232 0 +-1209 -1233 0 +-1210 -1234 0 +-1211 -1235 0 +-1212 -1236 0 +-1207 -1225 0 +-1208 -1226 0 +-1209 -1227 0 +-1210 -1228 0 +-1211 -1229 0 +-1212 -1230 0 +-1207 -1219 0 +-1208 -1220 0 +-1209 -1221 0 +-1210 -1222 0 +-1211 -1223 0 +-1212 -1224 0 +-1207 -1213 0 +-1208 -1214 0 +-1209 -1215 0 +-1210 -1216 0 +-1211 -1217 0 +-1212 -1218 0 +-1201 -1231 0 +-1202 -1232 0 +-1203 -1233 0 +-1204 -1234 0 +-1205 -1235 0 +-1206 -1236 0 +-1201 -1225 0 +-1202 -1226 0 +-1203 -1227 0 +-1204 -1228 0 +-1205 -1229 0 +-1206 -1230 0 +-1201 -1219 0 +-1202 -1220 0 +-1203 -1221 0 +-1204 -1222 0 +-1205 -1223 0 +-1206 -1224 0 +-1201 -1213 0 +-1202 -1214 0 +-1203 -1215 0 +-1204 -1216 0 +-1205 -1217 0 +-1206 -1218 0 +-1201 -1207 0 +-1202 -1208 0 +-1203 -1209 0 +-1204 -1210 0 +-1205 -1211 0 +-1206 -1212 0 +-1195 -1225 0 +-1196 -1226 0 +-1197 -1227 0 +-1198 -1228 0 +-1199 -1229 0 +-1200 -1230 0 +-1195 -1219 0 +-1196 -1220 0 +-1197 -1221 0 +-1198 -1222 0 +-1199 -1223 0 +-1200 -1224 0 +-1195 -1213 0 +-1196 -1214 0 +-1197 -1215 0 +-1198 -1216 0 +-1199 -1217 0 +-1200 -1218 0 +-1195 -1207 0 +-1196 -1208 0 +-1197 -1209 0 +-1198 -1210 0 +-1199 -1211 0 +-1200 -1212 0 +-1195 -1201 0 +-1196 -1202 0 +-1197 -1203 0 +-1198 -1204 0 +-1199 -1205 0 +-1200 -1206 0 +-1189 -1219 0 +-1190 -1220 0 +-1191 -1221 0 +-1192 -1222 0 +-1193 -1223 0 +-1194 -1224 0 +-1189 -1213 0 +-1190 -1214 0 +-1191 -1215 0 +-1192 -1216 0 +-1193 -1217 0 +-1194 -1218 0 +-1189 -1207 0 +-1190 -1208 0 +-1191 -1209 0 +-1192 -1210 0 +-1193 -1211 0 +-1194 -1212 0 +-1189 -1201 0 +-1190 -1202 0 +-1191 -1203 0 +-1192 -1204 0 +-1193 -1205 0 +-1194 -1206 0 +-1183 -1213 0 +-1184 -1214 0 +-1185 -1215 0 +-1186 -1216 0 +-1187 -1217 0 +-1188 -1218 0 +-1183 -1207 0 +-1184 -1208 0 +-1185 -1209 0 +-1186 -1210 0 +-1187 -1211 0 +-1188 -1212 0 +-1183 -1201 0 +-1184 -1202 0 +-1185 -1203 0 +-1186 -1204 0 +-1187 -1205 0 +-1188 -1206 0 +-1183 -1195 0 +-1184 -1196 0 +-1185 -1197 0 +-1186 -1198 0 +-1187 -1199 0 +-1188 -1200 0 +-1183 -1189 0 +-1184 -1190 0 +-1185 -1191 0 +-1186 -1192 0 +-1187 -1193 0 +-1188 -1194 0 +-1177 -1207 0 +-1178 -1208 0 +-1179 -1209 0 +-1180 -1210 0 +-1181 -1211 0 +-1182 -1212 0 +-1177 -1201 0 +-1178 -1202 0 +-1179 -1203 0 +-1180 -1204 0 +-1181 -1205 0 +-1182 -1206 0 +-1177 -1195 0 +-1178 -1196 0 +-1179 -1197 0 +-1180 -1198 0 +-1181 -1199 0 +-1182 -1200 0 +-1177 -1189 0 +-1178 -1190 0 +-1179 -1191 0 +-1180 -1192 0 +-1181 -1193 0 +-1182 -1194 0 +-1177 -1183 0 +-1178 -1184 0 +-1179 -1185 0 +-1180 -1186 0 +-1181 -1187 0 +-1182 -1188 0 +-1171 -1201 0 +-1172 -1202 0 +-1173 -1203 0 +-1174 -1204 0 +-1175 -1205 0 +-1176 -1206 0 +-1171 -1189 0 +-1172 -1190 0 +-1173 -1191 0 +-1174 -1192 0 +-1175 -1193 0 +-1176 -1194 0 +-1171 -1183 0 +-1172 -1184 0 +-1173 -1185 0 +-1174 -1186 0 +-1175 -1187 0 +-1176 -1188 0 +-1171 -1177 0 +-1172 -1178 0 +-1173 -1179 0 +-1174 -1180 0 +-1175 -1181 0 +-1176 -1182 0 +-1165 -1195 0 +-1166 -1196 0 +-1167 -1197 0 +-1168 -1198 0 +-1169 -1199 0 +-1170 -1200 0 +-1165 -1189 0 +-1166 -1190 0 +-1167 -1191 0 +-1168 -1192 0 +-1169 -1193 0 +-1170 -1194 0 +-1165 -1183 0 +-1166 -1184 0 +-1167 -1185 0 +-1168 -1186 0 +-1169 -1187 0 +-1170 -1188 0 +-1165 -1177 0 +-1166 -1178 0 +-1167 -1179 0 +-1168 -1180 0 +-1169 -1181 0 +-1170 -1182 0 +-1165 -1171 0 +-1166 -1172 0 +-1167 -1173 0 +-1168 -1174 0 +-1169 -1175 0 +-1170 -1176 0 +-1159 -1189 0 +-1160 -1190 0 +-1161 -1191 0 +-1162 -1192 0 +-1163 -1193 0 +-1164 -1194 0 +-1159 -1183 0 +-1160 -1184 0 +-1161 -1185 0 +-1162 -1186 0 +-1163 -1187 0 +-1164 -1188 0 +-1159 -1177 0 +-1160 -1178 0 +-1161 -1179 0 +-1162 -1180 0 +-1163 -1181 0 +-1164 -1182 0 +-1159 -1171 0 +-1160 -1172 0 +-1161 -1173 0 +-1162 -1174 0 +-1163 -1175 0 +-1164 -1176 0 +-1159 -1165 0 +-1160 -1166 0 +-1161 -1167 0 +-1162 -1168 0 +-1163 -1169 0 +-1164 -1170 0 +-1153 -1183 0 +-1154 -1184 0 +-1155 -1185 0 +-1156 -1186 0 +-1157 -1187 0 +-1158 -1188 0 +-1153 -1177 0 +-1154 -1178 0 +-1155 -1179 0 +-1156 -1180 0 +-1157 -1181 0 +-1158 -1182 0 +-1153 -1171 0 +-1154 -1172 0 +-1155 -1173 0 +-1156 -1174 0 +-1157 -1175 0 +-1158 -1176 0 +-1153 -1165 0 +-1154 -1166 0 +-1155 -1167 0 +-1156 -1168 0 +-1157 -1169 0 +-1158 -1170 0 +-1153 -1159 0 +-1154 -1160 0 +-1155 -1161 0 +-1156 -1162 0 +-1157 -1163 0 +-1158 -1164 0 +-1147 -1177 0 +-1148 -1178 0 +-1149 -1179 0 +-1150 -1180 0 +-1151 -1181 0 +-1152 -1182 0 +-1147 -1171 0 +-1148 -1172 0 +-1149 -1173 0 +-1150 -1174 0 +-1151 -1175 0 +-1152 -1176 0 +-1147 -1165 0 +-1148 -1166 0 +-1149 -1167 0 +-1150 -1168 0 +-1151 -1169 0 +-1152 -1170 0 +-1147 -1159 0 +-1148 -1160 0 +-1149 -1161 0 +-1150 -1162 0 +-1151 -1163 0 +-1152 -1164 0 +-1147 -1153 0 +-1148 -1154 0 +-1149 -1155 0 +-1150 -1156 0 +-1151 -1157 0 +-1152 -1158 0 +-1141 -1171 0 +-1142 -1172 0 +-1143 -1173 0 +-1144 -1174 0 +-1145 -1175 0 +-1146 -1176 0 +-1141 -1159 0 +-1142 -1160 0 +-1143 -1161 0 +-1144 -1162 0 +-1145 -1163 0 +-1146 -1164 0 +-1141 -1153 0 +-1142 -1154 0 +-1143 -1155 0 +-1144 -1156 0 +-1145 -1157 0 +-1146 -1158 0 +-1141 -1147 0 +-1142 -1148 0 +-1143 -1149 0 +-1144 -1150 0 +-1145 -1151 0 +-1146 -1152 0 +-1135 -1165 0 +-1136 -1166 0 +-1137 -1167 0 +-1138 -1168 0 +-1139 -1169 0 +-1140 -1170 0 +-1135 -1159 0 +-1136 -1160 0 +-1137 -1161 0 +-1138 -1162 0 +-1139 -1163 0 +-1140 -1164 0 +-1135 -1153 0 +-1136 -1154 0 +-1137 -1155 0 +-1138 -1156 0 +-1139 -1157 0 +-1140 -1158 0 +-1135 -1147 0 +-1136 -1148 0 +-1137 -1149 0 +-1138 -1150 0 +-1139 -1151 0 +-1140 -1152 0 +-1135 -1141 0 +-1136 -1142 0 +-1137 -1143 0 +-1138 -1144 0 +-1139 -1145 0 +-1140 -1146 0 +-1129 -1159 0 +-1130 -1160 0 +-1131 -1161 0 +-1132 -1162 0 +-1133 -1163 0 +-1134 -1164 0 +-1129 -1153 0 +-1130 -1154 0 +-1131 -1155 0 +-1132 -1156 0 +-1133 -1157 0 +-1134 -1158 0 +-1129 -1147 0 +-1130 -1148 0 +-1131 -1149 0 +-1132 -1150 0 +-1133 -1151 0 +-1134 -1152 0 +-1129 -1141 0 +-1130 -1142 0 +-1131 -1143 0 +-1132 -1144 0 +-1133 -1145 0 +-1134 -1146 0 +-1129 -1135 0 +-1130 -1136 0 +-1131 -1137 0 +-1132 -1138 0 +-1133 -1139 0 +-1134 -1140 0 +-1123 -1153 0 +-1124 -1154 0 +-1125 -1155 0 +-1126 -1156 0 +-1127 -1157 0 +-1128 -1158 0 +-1123 -1147 0 +-1124 -1148 0 +-1125 -1149 0 +-1126 -1150 0 +-1127 -1151 0 +-1128 -1152 0 +-1123 -1141 0 +-1124 -1142 0 +-1125 -1143 0 +-1126 -1144 0 +-1127 -1145 0 +-1128 -1146 0 +-1123 -1135 0 +-1124 -1136 0 +-1125 -1137 0 +-1126 -1138 0 +-1127 -1139 0 +-1128 -1140 0 +-1123 -1129 0 +-1124 -1130 0 +-1125 -1131 0 +-1126 -1132 0 +-1127 -1133 0 +-1128 -1134 0 +-1117 -1147 0 +-1118 -1148 0 +-1119 -1149 0 +-1120 -1150 0 +-1121 -1151 0 +-1122 -1152 0 +-1117 -1141 0 +-1118 -1142 0 +-1119 -1143 0 +-1120 -1144 0 +-1121 -1145 0 +-1122 -1146 0 +-1117 -1135 0 +-1118 -1136 0 +-1119 -1137 0 +-1120 -1138 0 +-1121 -1139 0 +-1122 -1140 0 +-1117 -1129 0 +-1118 -1130 0 +-1119 -1131 0 +-1120 -1132 0 +-1121 -1133 0 +-1122 -1134 0 +-1117 -1123 0 +-1118 -1124 0 +-1119 -1125 0 +-1120 -1126 0 +-1121 -1127 0 +-1122 -1128 0 +-1111 -1141 0 +-1112 -1142 0 +-1113 -1143 0 +-1114 -1144 0 +-1115 -1145 0 +-1116 -1146 0 +-1111 -1135 0 +-1112 -1136 0 +-1113 -1137 0 +-1114 -1138 0 +-1115 -1139 0 +-1116 -1140 0 +-1111 -1129 0 +-1112 -1130 0 +-1113 -1131 0 +-1114 -1132 0 +-1115 -1133 0 +-1116 -1134 0 +-1111 -1123 0 +-1112 -1124 0 +-1113 -1125 0 +-1114 -1126 0 +-1115 -1127 0 +-1116 -1128 0 +-1111 -1117 0 +-1112 -1118 0 +-1113 -1119 0 +-1114 -1120 0 +-1115 -1121 0 +-1116 -1122 0 +-1105 -1135 0 +-1106 -1136 0 +-1107 -1137 0 +-1108 -1138 0 +-1109 -1139 0 +-1110 -1140 0 +-1105 -1129 0 +-1106 -1130 0 +-1107 -1131 0 +-1108 -1132 0 +-1109 -1133 0 +-1110 -1134 0 +-1105 -1123 0 +-1106 -1124 0 +-1107 -1125 0 +-1108 -1126 0 +-1109 -1127 0 +-1110 -1128 0 +-1105 -1117 0 +-1106 -1118 0 +-1107 -1119 0 +-1108 -1120 0 +-1109 -1121 0 +-1110 -1122 0 +-1105 -1111 0 +-1106 -1112 0 +-1107 -1113 0 +-1108 -1114 0 +-1109 -1115 0 +-1110 -1116 0 +-1099 -1129 0 +-1100 -1130 0 +-1101 -1131 0 +-1102 -1132 0 +-1103 -1133 0 +-1104 -1134 0 +-1099 -1117 0 +-1100 -1118 0 +-1101 -1119 0 +-1102 -1120 0 +-1103 -1121 0 +-1104 -1122 0 +-1099 -1111 0 +-1100 -1112 0 +-1101 -1113 0 +-1102 -1114 0 +-1103 -1115 0 +-1104 -1116 0 +-1099 -1105 0 +-1100 -1106 0 +-1101 -1107 0 +-1102 -1108 0 +-1103 -1109 0 +-1104 -1110 0 +-1093 -1123 0 +-1094 -1124 0 +-1095 -1125 0 +-1096 -1126 0 +-1097 -1127 0 +-1098 -1128 0 +-1093 -1117 0 +-1094 -1118 0 +-1095 -1119 0 +-1096 -1120 0 +-1097 -1121 0 +-1098 -1122 0 +-1093 -1111 0 +-1094 -1112 0 +-1095 -1113 0 +-1096 -1114 0 +-1097 -1115 0 +-1098 -1116 0 +-1093 -1105 0 +-1094 -1106 0 +-1095 -1107 0 +-1096 -1108 0 +-1097 -1109 0 +-1098 -1110 0 +-1093 -1099 0 +-1094 -1100 0 +-1095 -1101 0 +-1096 -1102 0 +-1097 -1103 0 +-1098 -1104 0 +-1087 -1117 0 +-1088 -1118 0 +-1089 -1119 0 +-1090 -1120 0 +-1091 -1121 0 +-1092 -1122 0 +-1087 -1111 0 +-1088 -1112 0 +-1089 -1113 0 +-1090 -1114 0 +-1091 -1115 0 +-1092 -1116 0 +-1087 -1105 0 +-1088 -1106 0 +-1089 -1107 0 +-1090 -1108 0 +-1091 -1109 0 +-1092 -1110 0 +-1087 -1099 0 +-1088 -1100 0 +-1089 -1101 0 +-1090 -1102 0 +-1091 -1103 0 +-1092 -1104 0 +-1087 -1093 0 +-1088 -1094 0 +-1089 -1095 0 +-1090 -1096 0 +-1091 -1097 0 +-1092 -1098 0 +-1081 -1111 0 +-1082 -1112 0 +-1083 -1113 0 +-1084 -1114 0 +-1085 -1115 0 +-1086 -1116 0 +-1081 -1105 0 +-1082 -1106 0 +-1083 -1107 0 +-1084 -1108 0 +-1085 -1109 0 +-1086 -1110 0 +-1081 -1099 0 +-1082 -1100 0 +-1083 -1101 0 +-1084 -1102 0 +-1085 -1103 0 +-1086 -1104 0 +-1081 -1093 0 +-1082 -1094 0 +-1083 -1095 0 +-1084 -1096 0 +-1085 -1097 0 +-1086 -1098 0 +-1081 -1087 0 +-1082 -1088 0 +-1083 -1089 0 +-1084 -1090 0 +-1085 -1091 0 +-1086 -1092 0 +-1075 -1105 0 +-1076 -1106 0 +-1077 -1107 0 +-1078 -1108 0 +-1079 -1109 0 +-1080 -1110 0 +-1075 -1099 0 +-1076 -1100 0 +-1077 -1101 0 +-1078 -1102 0 +-1079 -1103 0 +-1080 -1104 0 +-1075 -1093 0 +-1076 -1094 0 +-1077 -1095 0 +-1078 -1096 0 +-1079 -1097 0 +-1080 -1098 0 +-1075 -1087 0 +-1076 -1088 0 +-1077 -1089 0 +-1078 -1090 0 +-1079 -1091 0 +-1080 -1092 0 +-1075 -1081 0 +-1076 -1082 0 +-1077 -1083 0 +-1078 -1084 0 +-1079 -1085 0 +-1080 -1086 0 +-1069 -1099 0 +-1070 -1100 0 +-1071 -1101 0 +-1072 -1102 0 +-1073 -1103 0 +-1074 -1104 0 +-1069 -1093 0 +-1070 -1094 0 +-1071 -1095 0 +-1072 -1096 0 +-1073 -1097 0 +-1074 -1098 0 +-1069 -1087 0 +-1070 -1088 0 +-1071 -1089 0 +-1072 -1090 0 +-1073 -1091 0 +-1074 -1092 0 +-1069 -1081 0 +-1070 -1082 0 +-1071 -1083 0 +-1072 -1084 0 +-1073 -1085 0 +-1074 -1086 0 +-1069 -1075 0 +-1070 -1076 0 +-1071 -1077 0 +-1072 -1078 0 +-1073 -1079 0 +-1074 -1080 0 +-1063 -1093 0 +-1064 -1094 0 +-1065 -1095 0 +-1066 -1096 0 +-1067 -1097 0 +-1068 -1098 0 +-1063 -1087 0 +-1064 -1088 0 +-1065 -1089 0 +-1066 -1090 0 +-1067 -1091 0 +-1068 -1092 0 +-1063 -1081 0 +-1064 -1082 0 +-1065 -1083 0 +-1066 -1084 0 +-1067 -1085 0 +-1068 -1086 0 +-1063 -1069 0 +-1064 -1070 0 +-1065 -1071 0 +-1066 -1072 0 +-1067 -1073 0 +-1068 -1074 0 +-1057 -1087 0 +-1058 -1088 0 +-1059 -1089 0 +-1060 -1090 0 +-1061 -1091 0 +-1062 -1092 0 +-1057 -1081 0 +-1058 -1082 0 +-1059 -1083 0 +-1060 -1084 0 +-1061 -1085 0 +-1062 -1086 0 +-1057 -1075 0 +-1058 -1076 0 +-1059 -1077 0 +-1060 -1078 0 +-1061 -1079 0 +-1062 -1080 0 +-1057 -1069 0 +-1058 -1070 0 +-1059 -1071 0 +-1060 -1072 0 +-1061 -1073 0 +-1062 -1074 0 +-1057 -1063 0 +-1058 -1064 0 +-1059 -1065 0 +-1060 -1066 0 +-1061 -1067 0 +-1062 -1068 0 +-1051 -1081 0 +-1052 -1082 0 +-1053 -1083 0 +-1054 -1084 0 +-1055 -1085 0 +-1056 -1086 0 +-1051 -1075 0 +-1052 -1076 0 +-1053 -1077 0 +-1054 -1078 0 +-1055 -1079 0 +-1056 -1080 0 +-1051 -1069 0 +-1052 -1070 0 +-1053 -1071 0 +-1054 -1072 0 +-1055 -1073 0 +-1056 -1074 0 +-1051 -1063 0 +-1052 -1064 0 +-1053 -1065 0 +-1054 -1066 0 +-1055 -1067 0 +-1056 -1068 0 +-1051 -1057 0 +-1052 -1058 0 +-1053 -1059 0 +-1054 -1060 0 +-1055 -1061 0 +-1056 -1062 0 +-1045 -1075 0 +-1046 -1076 0 +-1047 -1077 0 +-1048 -1078 0 +-1049 -1079 0 +-1050 -1080 0 +-1045 -1069 0 +-1046 -1070 0 +-1047 -1071 0 +-1048 -1072 0 +-1049 -1073 0 +-1050 -1074 0 +-1045 -1063 0 +-1046 -1064 0 +-1047 -1065 0 +-1048 -1066 0 +-1049 -1067 0 +-1050 -1068 0 +-1045 -1057 0 +-1046 -1058 0 +-1047 -1059 0 +-1048 -1060 0 +-1049 -1061 0 +-1050 -1062 0 +-1045 -1051 0 +-1046 -1052 0 +-1047 -1053 0 +-1048 -1054 0 +-1049 -1055 0 +-1050 -1056 0 +-1039 -1069 0 +-1040 -1070 0 +-1041 -1071 0 +-1042 -1072 0 +-1043 -1073 0 +-1044 -1074 0 +-1039 -1063 0 +-1040 -1064 0 +-1041 -1065 0 +-1042 -1066 0 +-1043 -1067 0 +-1044 -1068 0 +-1039 -1057 0 +-1040 -1058 0 +-1041 -1059 0 +-1042 -1060 0 +-1043 -1061 0 +-1044 -1062 0 +-1039 -1051 0 +-1040 -1052 0 +-1041 -1053 0 +-1042 -1054 0 +-1043 -1055 0 +-1044 -1056 0 +-1039 -1045 0 +-1040 -1046 0 +-1041 -1047 0 +-1042 -1048 0 +-1043 -1049 0 +-1044 -1050 0 +-1033 -1063 0 +-1034 -1064 0 +-1035 -1065 0 +-1036 -1066 0 +-1037 -1067 0 +-1038 -1068 0 +-1033 -1057 0 +-1034 -1058 0 +-1035 -1059 0 +-1036 -1060 0 +-1037 -1061 0 +-1038 -1062 0 +-1033 -1051 0 +-1034 -1052 0 +-1035 -1053 0 +-1036 -1054 0 +-1037 -1055 0 +-1038 -1056 0 +-1033 -1045 0 +-1034 -1046 0 +-1035 -1047 0 +-1036 -1048 0 +-1037 -1049 0 +-1038 -1050 0 +-1033 -1039 0 +-1034 -1040 0 +-1035 -1041 0 +-1036 -1042 0 +-1037 -1043 0 +-1038 -1044 0 +-1027 -1057 0 +-1028 -1058 0 +-1029 -1059 0 +-1030 -1060 0 +-1031 -1061 0 +-1032 -1062 0 +-1027 -1051 0 +-1028 -1052 0 +-1029 -1053 0 +-1030 -1054 0 +-1031 -1055 0 +-1032 -1056 0 +-1027 -1045 0 +-1028 -1046 0 +-1029 -1047 0 +-1030 -1048 0 +-1031 -1049 0 +-1032 -1050 0 +-1027 -1039 0 +-1028 -1040 0 +-1029 -1041 0 +-1030 -1042 0 +-1031 -1043 0 +-1032 -1044 0 +-1027 -1033 0 +-1028 -1034 0 +-1029 -1035 0 +-1030 -1036 0 +-1031 -1037 0 +-1032 -1038 0 +-1021 -1045 0 +-1022 -1046 0 +-1023 -1047 0 +-1024 -1048 0 +-1025 -1049 0 +-1026 -1050 0 +-1021 -1039 0 +-1022 -1040 0 +-1023 -1041 0 +-1024 -1042 0 +-1025 -1043 0 +-1026 -1044 0 +-1021 -1033 0 +-1022 -1034 0 +-1023 -1035 0 +-1024 -1036 0 +-1025 -1037 0 +-1026 -1038 0 +-1021 -1027 0 +-1022 -1028 0 +-1023 -1029 0 +-1024 -1030 0 +-1025 -1031 0 +-1026 -1032 0 +-1015 -1045 0 +-1016 -1046 0 +-1017 -1047 0 +-1018 -1048 0 +-1019 -1049 0 +-1020 -1050 0 +-1015 -1039 0 +-1016 -1040 0 +-1017 -1041 0 +-1018 -1042 0 +-1019 -1043 0 +-1020 -1044 0 +-1015 -1033 0 +-1016 -1034 0 +-1017 -1035 0 +-1018 -1036 0 +-1019 -1037 0 +-1020 -1038 0 +-1015 -1027 0 +-1016 -1028 0 +-1017 -1029 0 +-1018 -1030 0 +-1019 -1031 0 +-1020 -1032 0 +-1015 -1021 0 +-1016 -1022 0 +-1017 -1023 0 +-1018 -1024 0 +-1019 -1025 0 +-1020 -1026 0 +-1009 -1039 0 +-1010 -1040 0 +-1011 -1041 0 +-1012 -1042 0 +-1013 -1043 0 +-1014 -1044 0 +-1009 -1033 0 +-1010 -1034 0 +-1011 -1035 0 +-1012 -1036 0 +-1013 -1037 0 +-1014 -1038 0 +-1009 -1027 0 +-1010 -1028 0 +-1011 -1029 0 +-1012 -1030 0 +-1013 -1031 0 +-1014 -1032 0 +-1009 -1015 0 +-1010 -1016 0 +-1011 -1017 0 +-1012 -1018 0 +-1013 -1019 0 +-1014 -1020 0 +-1003 -1033 0 +-1004 -1034 0 +-1005 -1035 0 +-1006 -1036 0 +-1007 -1037 0 +-1008 -1038 0 +-1003 -1027 0 +-1004 -1028 0 +-1005 -1029 0 +-1006 -1030 0 +-1007 -1031 0 +-1008 -1032 0 +-1003 -1021 0 +-1004 -1022 0 +-1005 -1023 0 +-1006 -1024 0 +-1007 -1025 0 +-1008 -1026 0 +-1003 -1015 0 +-1004 -1016 0 +-1005 -1017 0 +-1006 -1018 0 +-1007 -1019 0 +-1008 -1020 0 +-1003 -1009 0 +-1004 -1010 0 +-1005 -1011 0 +-1006 -1012 0 +-1007 -1013 0 +-1008 -1014 0 +-997 -1027 0 +-998 -1028 0 +-999 -1029 0 +-1000 -1030 0 +-1001 -1031 0 +-1002 -1032 0 +-997 -1021 0 +-998 -1022 0 +-999 -1023 0 +-1000 -1024 0 +-1001 -1025 0 +-1002 -1026 0 +-997 -1009 0 +-998 -1010 0 +-999 -1011 0 +-1000 -1012 0 +-1001 -1013 0 +-1002 -1014 0 +-997 -1003 0 +-998 -1004 0 +-999 -1005 0 +-1000 -1006 0 +-1001 -1007 0 +-1002 -1008 0 +-991 -1021 0 +-992 -1022 0 +-993 -1023 0 +-994 -1024 0 +-995 -1025 0 +-996 -1026 0 +-991 -1015 0 +-992 -1016 0 +-993 -1017 0 +-994 -1018 0 +-995 -1019 0 +-996 -1020 0 +-991 -1009 0 +-992 -1010 0 +-993 -1011 0 +-994 -1012 0 +-995 -1013 0 +-996 -1014 0 +-991 -1003 0 +-992 -1004 0 +-993 -1005 0 +-994 -1006 0 +-995 -1007 0 +-996 -1008 0 +-991 -997 0 +-992 -998 0 +-993 -999 0 +-994 -1000 0 +-995 -1001 0 +-996 -1002 0 +-985 -1015 0 +-986 -1016 0 +-987 -1017 0 +-988 -1018 0 +-989 -1019 0 +-990 -1020 0 +-985 -1009 0 +-986 -1010 0 +-987 -1011 0 +-988 -1012 0 +-989 -1013 0 +-990 -1014 0 +-985 -1003 0 +-986 -1004 0 +-987 -1005 0 +-988 -1006 0 +-989 -1007 0 +-990 -1008 0 +-985 -997 0 +-986 -998 0 +-987 -999 0 +-988 -1000 0 +-989 -1001 0 +-990 -1002 0 +-985 -991 0 +-986 -992 0 +-987 -993 0 +-988 -994 0 +-989 -995 0 +-990 -996 0 +-979 -1009 0 +-980 -1010 0 +-981 -1011 0 +-982 -1012 0 +-983 -1013 0 +-984 -1014 0 +-979 -1003 0 +-980 -1004 0 +-981 -1005 0 +-982 -1006 0 +-983 -1007 0 +-984 -1008 0 +-979 -997 0 +-980 -998 0 +-981 -999 0 +-982 -1000 0 +-983 -1001 0 +-984 -1002 0 +-979 -991 0 +-980 -992 0 +-981 -993 0 +-982 -994 0 +-983 -995 0 +-984 -996 0 +-979 -985 0 +-980 -986 0 +-981 -987 0 +-982 -988 0 +-983 -989 0 +-984 -990 0 +-973 -1003 0 +-974 -1004 0 +-975 -1005 0 +-976 -1006 0 +-977 -1007 0 +-978 -1008 0 +-973 -997 0 +-974 -998 0 +-975 -999 0 +-976 -1000 0 +-977 -1001 0 +-978 -1002 0 +-973 -985 0 +-974 -986 0 +-975 -987 0 +-976 -988 0 +-977 -989 0 +-978 -990 0 +-973 -979 0 +-974 -980 0 +-975 -981 0 +-976 -982 0 +-977 -983 0 +-978 -984 0 +-967 -997 0 +-968 -998 0 +-969 -999 0 +-970 -1000 0 +-971 -1001 0 +-972 -1002 0 +-967 -991 0 +-968 -992 0 +-969 -993 0 +-970 -994 0 +-971 -995 0 +-972 -996 0 +-967 -985 0 +-968 -986 0 +-969 -987 0 +-970 -988 0 +-971 -989 0 +-972 -990 0 +-967 -979 0 +-968 -980 0 +-969 -981 0 +-970 -982 0 +-971 -983 0 +-972 -984 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-961 -991 0 +-962 -992 0 +-963 -993 0 +-964 -994 0 +-965 -995 0 +-966 -996 0 +-961 -985 0 +-962 -986 0 +-963 -987 0 +-964 -988 0 +-965 -989 0 +-966 -990 0 +-961 -979 0 +-962 -980 0 +-963 -981 0 +-964 -982 0 +-965 -983 0 +-966 -984 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-955 -985 0 +-956 -986 0 +-957 -987 0 +-958 -988 0 +-959 -989 0 +-960 -990 0 +-955 -979 0 +-956 -980 0 +-957 -981 0 +-958 -982 0 +-959 -983 0 +-960 -984 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -967 0 +-956 -968 0 +-957 -969 0 +-958 -970 0 +-959 -971 0 +-960 -972 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-949 -979 0 +-950 -980 0 +-951 -981 0 +-952 -982 0 +-953 -983 0 +-954 -984 0 +-949 -973 0 +-950 -974 0 +-951 -975 0 +-952 -976 0 +-953 -977 0 +-954 -978 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-805 -1291 0 +-806 -1292 0 +-807 -1293 0 +-808 -1294 0 +-809 -1295 0 +-810 -1296 0 +-247 -1609 0 +-248 -1610 0 +-249 -1611 0 +-250 -1612 0 +-251 -1613 0 +-252 -1614 0 +-439 -1537 0 +-440 -1538 0 +-441 -1539 0 +-442 -1540 0 +-443 -1541 0 +-444 -1542 0 +-289 -1003 0 +-290 -1004 0 +-291 -1005 0 +-292 -1006 0 +-293 -1007 0 +-294 -1008 0 +-355 -1543 0 +-356 -1544 0 +-357 -1545 0 +-358 -1546 0 +-359 -1547 0 +-360 -1548 0 +-649 -1159 0 +-650 -1160 0 +-651 -1161 0 +-652 -1162 0 +-653 -1163 0 +-654 -1164 0 +-1045 -1567 0 +-1046 -1568 0 +-1047 -1569 0 +-1048 -1570 0 +-1049 -1571 0 +-1050 -1572 0 +-1177 -1627 0 +-1178 -1628 0 +-1179 -1629 0 +-1180 -1630 0 +-1181 -1631 0 +-1182 -1632 0 +-619 -859 0 +-620 -860 0 +-621 -861 0 +-622 -862 0 +-623 -863 0 +-624 -864 0 +-37 -283 0 +-38 -284 0 +-39 -285 0 +-40 -286 0 +-41 -287 0 +-42 -288 0 +-961 -1573 0 +-962 -1574 0 +-963 -1575 0 +-964 -1576 0 +-965 -1577 0 +-966 -1578 0 diff --git a/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf new file mode 100755 index 000000000..c367fc492 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf @@ -0,0 +1,19368 @@ +c created by edge2cnf +p cnf 2526 19366 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-979 -980 0 +-979 -981 0 +-979 -982 0 +-979 -983 0 +-979 -984 0 +-980 -981 0 +-980 -982 0 +-980 -983 0 +-980 -984 0 +-981 -982 0 +-981 -983 0 +-981 -984 0 +-982 -983 0 +-982 -984 0 +-983 -984 0 +979 980 981 982 983 984 0 +-985 -986 0 +-985 -987 0 +-985 -988 0 +-985 -989 0 +-985 -990 0 +-986 -987 0 +-986 -988 0 +-986 -989 0 +-986 -990 0 +-987 -988 0 +-987 -989 0 +-987 -990 0 +-988 -989 0 +-988 -990 0 +-989 -990 0 +985 986 987 988 989 990 0 +-991 -992 0 +-991 -993 0 +-991 -994 0 +-991 -995 0 +-991 -996 0 +-992 -993 0 +-992 -994 0 +-992 -995 0 +-992 -996 0 +-993 -994 0 +-993 -995 0 +-993 -996 0 +-994 -995 0 +-994 -996 0 +-995 -996 0 +991 992 993 994 995 996 0 +-997 -998 0 +-997 -999 0 +-997 -1000 0 +-997 -1001 0 +-997 -1002 0 +-998 -999 0 +-998 -1000 0 +-998 -1001 0 +-998 -1002 0 +-999 -1000 0 +-999 -1001 0 +-999 -1002 0 +-1000 -1001 0 +-1000 -1002 0 +-1001 -1002 0 +997 998 999 1000 1001 1002 0 +-1003 -1004 0 +-1003 -1005 0 +-1003 -1006 0 +-1003 -1007 0 +-1003 -1008 0 +-1004 -1005 0 +-1004 -1006 0 +-1004 -1007 0 +-1004 -1008 0 +-1005 -1006 0 +-1005 -1007 0 +-1005 -1008 0 +-1006 -1007 0 +-1006 -1008 0 +-1007 -1008 0 +1003 1004 1005 1006 1007 1008 0 +-1009 -1010 0 +-1009 -1011 0 +-1009 -1012 0 +-1009 -1013 0 +-1009 -1014 0 +-1010 -1011 0 +-1010 -1012 0 +-1010 -1013 0 +-1010 -1014 0 +-1011 -1012 0 +-1011 -1013 0 +-1011 -1014 0 +-1012 -1013 0 +-1012 -1014 0 +-1013 -1014 0 +1009 1010 1011 1012 1013 1014 0 +-1015 -1016 0 +-1015 -1017 0 +-1015 -1018 0 +-1015 -1019 0 +-1015 -1020 0 +-1016 -1017 0 +-1016 -1018 0 +-1016 -1019 0 +-1016 -1020 0 +-1017 -1018 0 +-1017 -1019 0 +-1017 -1020 0 +-1018 -1019 0 +-1018 -1020 0 +-1019 -1020 0 +1015 1016 1017 1018 1019 1020 0 +-1021 -1022 0 +-1021 -1023 0 +-1021 -1024 0 +-1021 -1025 0 +-1021 -1026 0 +-1022 -1023 0 +-1022 -1024 0 +-1022 -1025 0 +-1022 -1026 0 +-1023 -1024 0 +-1023 -1025 0 +-1023 -1026 0 +-1024 -1025 0 +-1024 -1026 0 +-1025 -1026 0 +1021 1022 1023 1024 1025 1026 0 +-1027 -1028 0 +-1027 -1029 0 +-1027 -1030 0 +-1027 -1031 0 +-1027 -1032 0 +-1028 -1029 0 +-1028 -1030 0 +-1028 -1031 0 +-1028 -1032 0 +-1029 -1030 0 +-1029 -1031 0 +-1029 -1032 0 +-1030 -1031 0 +-1030 -1032 0 +-1031 -1032 0 +1027 1028 1029 1030 1031 1032 0 +-1033 -1034 0 +-1033 -1035 0 +-1033 -1036 0 +-1033 -1037 0 +-1033 -1038 0 +-1034 -1035 0 +-1034 -1036 0 +-1034 -1037 0 +-1034 -1038 0 +-1035 -1036 0 +-1035 -1037 0 +-1035 -1038 0 +-1036 -1037 0 +-1036 -1038 0 +-1037 -1038 0 +1033 1034 1035 1036 1037 1038 0 +-1039 -1040 0 +-1039 -1041 0 +-1039 -1042 0 +-1039 -1043 0 +-1039 -1044 0 +-1040 -1041 0 +-1040 -1042 0 +-1040 -1043 0 +-1040 -1044 0 +-1041 -1042 0 +-1041 -1043 0 +-1041 -1044 0 +-1042 -1043 0 +-1042 -1044 0 +-1043 -1044 0 +1039 1040 1041 1042 1043 1044 0 +-1045 -1046 0 +-1045 -1047 0 +-1045 -1048 0 +-1045 -1049 0 +-1045 -1050 0 +-1046 -1047 0 +-1046 -1048 0 +-1046 -1049 0 +-1046 -1050 0 +-1047 -1048 0 +-1047 -1049 0 +-1047 -1050 0 +-1048 -1049 0 +-1048 -1050 0 +-1049 -1050 0 +1045 1046 1047 1048 1049 1050 0 +-1051 -1052 0 +-1051 -1053 0 +-1051 -1054 0 +-1051 -1055 0 +-1051 -1056 0 +-1052 -1053 0 +-1052 -1054 0 +-1052 -1055 0 +-1052 -1056 0 +-1053 -1054 0 +-1053 -1055 0 +-1053 -1056 0 +-1054 -1055 0 +-1054 -1056 0 +-1055 -1056 0 +1051 1052 1053 1054 1055 1056 0 +-1057 -1058 0 +-1057 -1059 0 +-1057 -1060 0 +-1057 -1061 0 +-1057 -1062 0 +-1058 -1059 0 +-1058 -1060 0 +-1058 -1061 0 +-1058 -1062 0 +-1059 -1060 0 +-1059 -1061 0 +-1059 -1062 0 +-1060 -1061 0 +-1060 -1062 0 +-1061 -1062 0 +1057 1058 1059 1060 1061 1062 0 +-1063 -1064 0 +-1063 -1065 0 +-1063 -1066 0 +-1063 -1067 0 +-1063 -1068 0 +-1064 -1065 0 +-1064 -1066 0 +-1064 -1067 0 +-1064 -1068 0 +-1065 -1066 0 +-1065 -1067 0 +-1065 -1068 0 +-1066 -1067 0 +-1066 -1068 0 +-1067 -1068 0 +1063 1064 1065 1066 1067 1068 0 +-1069 -1070 0 +-1069 -1071 0 +-1069 -1072 0 +-1069 -1073 0 +-1069 -1074 0 +-1070 -1071 0 +-1070 -1072 0 +-1070 -1073 0 +-1070 -1074 0 +-1071 -1072 0 +-1071 -1073 0 +-1071 -1074 0 +-1072 -1073 0 +-1072 -1074 0 +-1073 -1074 0 +1069 1070 1071 1072 1073 1074 0 +-1075 -1076 0 +-1075 -1077 0 +-1075 -1078 0 +-1075 -1079 0 +-1075 -1080 0 +-1076 -1077 0 +-1076 -1078 0 +-1076 -1079 0 +-1076 -1080 0 +-1077 -1078 0 +-1077 -1079 0 +-1077 -1080 0 +-1078 -1079 0 +-1078 -1080 0 +-1079 -1080 0 +1075 1076 1077 1078 1079 1080 0 +-1081 -1082 0 +-1081 -1083 0 +-1081 -1084 0 +-1081 -1085 0 +-1081 -1086 0 +-1082 -1083 0 +-1082 -1084 0 +-1082 -1085 0 +-1082 -1086 0 +-1083 -1084 0 +-1083 -1085 0 +-1083 -1086 0 +-1084 -1085 0 +-1084 -1086 0 +-1085 -1086 0 +1081 1082 1083 1084 1085 1086 0 +-1087 -1088 0 +-1087 -1089 0 +-1087 -1090 0 +-1087 -1091 0 +-1087 -1092 0 +-1088 -1089 0 +-1088 -1090 0 +-1088 -1091 0 +-1088 -1092 0 +-1089 -1090 0 +-1089 -1091 0 +-1089 -1092 0 +-1090 -1091 0 +-1090 -1092 0 +-1091 -1092 0 +1087 1088 1089 1090 1091 1092 0 +-1093 -1094 0 +-1093 -1095 0 +-1093 -1096 0 +-1093 -1097 0 +-1093 -1098 0 +-1094 -1095 0 +-1094 -1096 0 +-1094 -1097 0 +-1094 -1098 0 +-1095 -1096 0 +-1095 -1097 0 +-1095 -1098 0 +-1096 -1097 0 +-1096 -1098 0 +-1097 -1098 0 +1093 1094 1095 1096 1097 1098 0 +-1099 -1100 0 +-1099 -1101 0 +-1099 -1102 0 +-1099 -1103 0 +-1099 -1104 0 +-1100 -1101 0 +-1100 -1102 0 +-1100 -1103 0 +-1100 -1104 0 +-1101 -1102 0 +-1101 -1103 0 +-1101 -1104 0 +-1102 -1103 0 +-1102 -1104 0 +-1103 -1104 0 +1099 1100 1101 1102 1103 1104 0 +-1105 -1106 0 +-1105 -1107 0 +-1105 -1108 0 +-1105 -1109 0 +-1105 -1110 0 +-1106 -1107 0 +-1106 -1108 0 +-1106 -1109 0 +-1106 -1110 0 +-1107 -1108 0 +-1107 -1109 0 +-1107 -1110 0 +-1108 -1109 0 +-1108 -1110 0 +-1109 -1110 0 +1105 1106 1107 1108 1109 1110 0 +-1111 -1112 0 +-1111 -1113 0 +-1111 -1114 0 +-1111 -1115 0 +-1111 -1116 0 +-1112 -1113 0 +-1112 -1114 0 +-1112 -1115 0 +-1112 -1116 0 +-1113 -1114 0 +-1113 -1115 0 +-1113 -1116 0 +-1114 -1115 0 +-1114 -1116 0 +-1115 -1116 0 +1111 1112 1113 1114 1115 1116 0 +-1117 -1118 0 +-1117 -1119 0 +-1117 -1120 0 +-1117 -1121 0 +-1117 -1122 0 +-1118 -1119 0 +-1118 -1120 0 +-1118 -1121 0 +-1118 -1122 0 +-1119 -1120 0 +-1119 -1121 0 +-1119 -1122 0 +-1120 -1121 0 +-1120 -1122 0 +-1121 -1122 0 +1117 1118 1119 1120 1121 1122 0 +-1123 -1124 0 +-1123 -1125 0 +-1123 -1126 0 +-1123 -1127 0 +-1123 -1128 0 +-1124 -1125 0 +-1124 -1126 0 +-1124 -1127 0 +-1124 -1128 0 +-1125 -1126 0 +-1125 -1127 0 +-1125 -1128 0 +-1126 -1127 0 +-1126 -1128 0 +-1127 -1128 0 +1123 1124 1125 1126 1127 1128 0 +-1129 -1130 0 +-1129 -1131 0 +-1129 -1132 0 +-1129 -1133 0 +-1129 -1134 0 +-1130 -1131 0 +-1130 -1132 0 +-1130 -1133 0 +-1130 -1134 0 +-1131 -1132 0 +-1131 -1133 0 +-1131 -1134 0 +-1132 -1133 0 +-1132 -1134 0 +-1133 -1134 0 +1129 1130 1131 1132 1133 1134 0 +-1135 -1136 0 +-1135 -1137 0 +-1135 -1138 0 +-1135 -1139 0 +-1135 -1140 0 +-1136 -1137 0 +-1136 -1138 0 +-1136 -1139 0 +-1136 -1140 0 +-1137 -1138 0 +-1137 -1139 0 +-1137 -1140 0 +-1138 -1139 0 +-1138 -1140 0 +-1139 -1140 0 +1135 1136 1137 1138 1139 1140 0 +-1141 -1142 0 +-1141 -1143 0 +-1141 -1144 0 +-1141 -1145 0 +-1141 -1146 0 +-1142 -1143 0 +-1142 -1144 0 +-1142 -1145 0 +-1142 -1146 0 +-1143 -1144 0 +-1143 -1145 0 +-1143 -1146 0 +-1144 -1145 0 +-1144 -1146 0 +-1145 -1146 0 +1141 1142 1143 1144 1145 1146 0 +-1147 -1148 0 +-1147 -1149 0 +-1147 -1150 0 +-1147 -1151 0 +-1147 -1152 0 +-1148 -1149 0 +-1148 -1150 0 +-1148 -1151 0 +-1148 -1152 0 +-1149 -1150 0 +-1149 -1151 0 +-1149 -1152 0 +-1150 -1151 0 +-1150 -1152 0 +-1151 -1152 0 +1147 1148 1149 1150 1151 1152 0 +-1153 -1154 0 +-1153 -1155 0 +-1153 -1156 0 +-1153 -1157 0 +-1153 -1158 0 +-1154 -1155 0 +-1154 -1156 0 +-1154 -1157 0 +-1154 -1158 0 +-1155 -1156 0 +-1155 -1157 0 +-1155 -1158 0 +-1156 -1157 0 +-1156 -1158 0 +-1157 -1158 0 +1153 1154 1155 1156 1157 1158 0 +-1159 -1160 0 +-1159 -1161 0 +-1159 -1162 0 +-1159 -1163 0 +-1159 -1164 0 +-1160 -1161 0 +-1160 -1162 0 +-1160 -1163 0 +-1160 -1164 0 +-1161 -1162 0 +-1161 -1163 0 +-1161 -1164 0 +-1162 -1163 0 +-1162 -1164 0 +-1163 -1164 0 +1159 1160 1161 1162 1163 1164 0 +-1165 -1166 0 +-1165 -1167 0 +-1165 -1168 0 +-1165 -1169 0 +-1165 -1170 0 +-1166 -1167 0 +-1166 -1168 0 +-1166 -1169 0 +-1166 -1170 0 +-1167 -1168 0 +-1167 -1169 0 +-1167 -1170 0 +-1168 -1169 0 +-1168 -1170 0 +-1169 -1170 0 +1165 1166 1167 1168 1169 1170 0 +-1171 -1172 0 +-1171 -1173 0 +-1171 -1174 0 +-1171 -1175 0 +-1171 -1176 0 +-1172 -1173 0 +-1172 -1174 0 +-1172 -1175 0 +-1172 -1176 0 +-1173 -1174 0 +-1173 -1175 0 +-1173 -1176 0 +-1174 -1175 0 +-1174 -1176 0 +-1175 -1176 0 +1171 1172 1173 1174 1175 1176 0 +-1177 -1178 0 +-1177 -1179 0 +-1177 -1180 0 +-1177 -1181 0 +-1177 -1182 0 +-1178 -1179 0 +-1178 -1180 0 +-1178 -1181 0 +-1178 -1182 0 +-1179 -1180 0 +-1179 -1181 0 +-1179 -1182 0 +-1180 -1181 0 +-1180 -1182 0 +-1181 -1182 0 +1177 1178 1179 1180 1181 1182 0 +-1183 -1184 0 +-1183 -1185 0 +-1183 -1186 0 +-1183 -1187 0 +-1183 -1188 0 +-1184 -1185 0 +-1184 -1186 0 +-1184 -1187 0 +-1184 -1188 0 +-1185 -1186 0 +-1185 -1187 0 +-1185 -1188 0 +-1186 -1187 0 +-1186 -1188 0 +-1187 -1188 0 +1183 1184 1185 1186 1187 1188 0 +-1189 -1190 0 +-1189 -1191 0 +-1189 -1192 0 +-1189 -1193 0 +-1189 -1194 0 +-1190 -1191 0 +-1190 -1192 0 +-1190 -1193 0 +-1190 -1194 0 +-1191 -1192 0 +-1191 -1193 0 +-1191 -1194 0 +-1192 -1193 0 +-1192 -1194 0 +-1193 -1194 0 +1189 1190 1191 1192 1193 1194 0 +-1195 -1196 0 +-1195 -1197 0 +-1195 -1198 0 +-1195 -1199 0 +-1195 -1200 0 +-1196 -1197 0 +-1196 -1198 0 +-1196 -1199 0 +-1196 -1200 0 +-1197 -1198 0 +-1197 -1199 0 +-1197 -1200 0 +-1198 -1199 0 +-1198 -1200 0 +-1199 -1200 0 +1195 1196 1197 1198 1199 1200 0 +-1201 -1202 0 +-1201 -1203 0 +-1201 -1204 0 +-1201 -1205 0 +-1201 -1206 0 +-1202 -1203 0 +-1202 -1204 0 +-1202 -1205 0 +-1202 -1206 0 +-1203 -1204 0 +-1203 -1205 0 +-1203 -1206 0 +-1204 -1205 0 +-1204 -1206 0 +-1205 -1206 0 +1201 1202 1203 1204 1205 1206 0 +-1207 -1208 0 +-1207 -1209 0 +-1207 -1210 0 +-1207 -1211 0 +-1207 -1212 0 +-1208 -1209 0 +-1208 -1210 0 +-1208 -1211 0 +-1208 -1212 0 +-1209 -1210 0 +-1209 -1211 0 +-1209 -1212 0 +-1210 -1211 0 +-1210 -1212 0 +-1211 -1212 0 +1207 1208 1209 1210 1211 1212 0 +-1213 -1214 0 +-1213 -1215 0 +-1213 -1216 0 +-1213 -1217 0 +-1213 -1218 0 +-1214 -1215 0 +-1214 -1216 0 +-1214 -1217 0 +-1214 -1218 0 +-1215 -1216 0 +-1215 -1217 0 +-1215 -1218 0 +-1216 -1217 0 +-1216 -1218 0 +-1217 -1218 0 +1213 1214 1215 1216 1217 1218 0 +-1219 -1220 0 +-1219 -1221 0 +-1219 -1222 0 +-1219 -1223 0 +-1219 -1224 0 +-1220 -1221 0 +-1220 -1222 0 +-1220 -1223 0 +-1220 -1224 0 +-1221 -1222 0 +-1221 -1223 0 +-1221 -1224 0 +-1222 -1223 0 +-1222 -1224 0 +-1223 -1224 0 +1219 1220 1221 1222 1223 1224 0 +-1225 -1226 0 +-1225 -1227 0 +-1225 -1228 0 +-1225 -1229 0 +-1225 -1230 0 +-1226 -1227 0 +-1226 -1228 0 +-1226 -1229 0 +-1226 -1230 0 +-1227 -1228 0 +-1227 -1229 0 +-1227 -1230 0 +-1228 -1229 0 +-1228 -1230 0 +-1229 -1230 0 +1225 1226 1227 1228 1229 1230 0 +-1231 -1232 0 +-1231 -1233 0 +-1231 -1234 0 +-1231 -1235 0 +-1231 -1236 0 +-1232 -1233 0 +-1232 -1234 0 +-1232 -1235 0 +-1232 -1236 0 +-1233 -1234 0 +-1233 -1235 0 +-1233 -1236 0 +-1234 -1235 0 +-1234 -1236 0 +-1235 -1236 0 +1231 1232 1233 1234 1235 1236 0 +-1237 -1238 0 +-1237 -1239 0 +-1237 -1240 0 +-1237 -1241 0 +-1237 -1242 0 +-1238 -1239 0 +-1238 -1240 0 +-1238 -1241 0 +-1238 -1242 0 +-1239 -1240 0 +-1239 -1241 0 +-1239 -1242 0 +-1240 -1241 0 +-1240 -1242 0 +-1241 -1242 0 +1237 1238 1239 1240 1241 1242 0 +-1243 -1244 0 +-1243 -1245 0 +-1243 -1246 0 +-1243 -1247 0 +-1243 -1248 0 +-1244 -1245 0 +-1244 -1246 0 +-1244 -1247 0 +-1244 -1248 0 +-1245 -1246 0 +-1245 -1247 0 +-1245 -1248 0 +-1246 -1247 0 +-1246 -1248 0 +-1247 -1248 0 +1243 1244 1245 1246 1247 1248 0 +-1249 -1250 0 +-1249 -1251 0 +-1249 -1252 0 +-1249 -1253 0 +-1249 -1254 0 +-1250 -1251 0 +-1250 -1252 0 +-1250 -1253 0 +-1250 -1254 0 +-1251 -1252 0 +-1251 -1253 0 +-1251 -1254 0 +-1252 -1253 0 +-1252 -1254 0 +-1253 -1254 0 +1249 1250 1251 1252 1253 1254 0 +-1255 -1256 0 +-1255 -1257 0 +-1255 -1258 0 +-1255 -1259 0 +-1255 -1260 0 +-1256 -1257 0 +-1256 -1258 0 +-1256 -1259 0 +-1256 -1260 0 +-1257 -1258 0 +-1257 -1259 0 +-1257 -1260 0 +-1258 -1259 0 +-1258 -1260 0 +-1259 -1260 0 +1255 1256 1257 1258 1259 1260 0 +-1261 -1262 0 +-1261 -1263 0 +-1261 -1264 0 +-1261 -1265 0 +-1261 -1266 0 +-1262 -1263 0 +-1262 -1264 0 +-1262 -1265 0 +-1262 -1266 0 +-1263 -1264 0 +-1263 -1265 0 +-1263 -1266 0 +-1264 -1265 0 +-1264 -1266 0 +-1265 -1266 0 +1261 1262 1263 1264 1265 1266 0 +-1267 -1268 0 +-1267 -1269 0 +-1267 -1270 0 +-1267 -1271 0 +-1267 -1272 0 +-1268 -1269 0 +-1268 -1270 0 +-1268 -1271 0 +-1268 -1272 0 +-1269 -1270 0 +-1269 -1271 0 +-1269 -1272 0 +-1270 -1271 0 +-1270 -1272 0 +-1271 -1272 0 +1267 1268 1269 1270 1271 1272 0 +-1273 -1274 0 +-1273 -1275 0 +-1273 -1276 0 +-1273 -1277 0 +-1273 -1278 0 +-1274 -1275 0 +-1274 -1276 0 +-1274 -1277 0 +-1274 -1278 0 +-1275 -1276 0 +-1275 -1277 0 +-1275 -1278 0 +-1276 -1277 0 +-1276 -1278 0 +-1277 -1278 0 +1273 1274 1275 1276 1277 1278 0 +-1279 -1280 0 +-1279 -1281 0 +-1279 -1282 0 +-1279 -1283 0 +-1279 -1284 0 +-1280 -1281 0 +-1280 -1282 0 +-1280 -1283 0 +-1280 -1284 0 +-1281 -1282 0 +-1281 -1283 0 +-1281 -1284 0 +-1282 -1283 0 +-1282 -1284 0 +-1283 -1284 0 +1279 1280 1281 1282 1283 1284 0 +-1285 -1286 0 +-1285 -1287 0 +-1285 -1288 0 +-1285 -1289 0 +-1285 -1290 0 +-1286 -1287 0 +-1286 -1288 0 +-1286 -1289 0 +-1286 -1290 0 +-1287 -1288 0 +-1287 -1289 0 +-1287 -1290 0 +-1288 -1289 0 +-1288 -1290 0 +-1289 -1290 0 +1285 1286 1287 1288 1289 1290 0 +-1291 -1292 0 +-1291 -1293 0 +-1291 -1294 0 +-1291 -1295 0 +-1291 -1296 0 +-1292 -1293 0 +-1292 -1294 0 +-1292 -1295 0 +-1292 -1296 0 +-1293 -1294 0 +-1293 -1295 0 +-1293 -1296 0 +-1294 -1295 0 +-1294 -1296 0 +-1295 -1296 0 +1291 1292 1293 1294 1295 1296 0 +-1297 -1298 0 +-1297 -1299 0 +-1297 -1300 0 +-1297 -1301 0 +-1297 -1302 0 +-1298 -1299 0 +-1298 -1300 0 +-1298 -1301 0 +-1298 -1302 0 +-1299 -1300 0 +-1299 -1301 0 +-1299 -1302 0 +-1300 -1301 0 +-1300 -1302 0 +-1301 -1302 0 +1297 1298 1299 1300 1301 1302 0 +-1303 -1304 0 +-1303 -1305 0 +-1303 -1306 0 +-1303 -1307 0 +-1303 -1308 0 +-1304 -1305 0 +-1304 -1306 0 +-1304 -1307 0 +-1304 -1308 0 +-1305 -1306 0 +-1305 -1307 0 +-1305 -1308 0 +-1306 -1307 0 +-1306 -1308 0 +-1307 -1308 0 +1303 1304 1305 1306 1307 1308 0 +-1309 -1310 0 +-1309 -1311 0 +-1309 -1312 0 +-1309 -1313 0 +-1309 -1314 0 +-1310 -1311 0 +-1310 -1312 0 +-1310 -1313 0 +-1310 -1314 0 +-1311 -1312 0 +-1311 -1313 0 +-1311 -1314 0 +-1312 -1313 0 +-1312 -1314 0 +-1313 -1314 0 +1309 1310 1311 1312 1313 1314 0 +-1315 -1316 0 +-1315 -1317 0 +-1315 -1318 0 +-1315 -1319 0 +-1315 -1320 0 +-1316 -1317 0 +-1316 -1318 0 +-1316 -1319 0 +-1316 -1320 0 +-1317 -1318 0 +-1317 -1319 0 +-1317 -1320 0 +-1318 -1319 0 +-1318 -1320 0 +-1319 -1320 0 +1315 1316 1317 1318 1319 1320 0 +-1321 -1322 0 +-1321 -1323 0 +-1321 -1324 0 +-1321 -1325 0 +-1321 -1326 0 +-1322 -1323 0 +-1322 -1324 0 +-1322 -1325 0 +-1322 -1326 0 +-1323 -1324 0 +-1323 -1325 0 +-1323 -1326 0 +-1324 -1325 0 +-1324 -1326 0 +-1325 -1326 0 +1321 1322 1323 1324 1325 1326 0 +-1327 -1328 0 +-1327 -1329 0 +-1327 -1330 0 +-1327 -1331 0 +-1327 -1332 0 +-1328 -1329 0 +-1328 -1330 0 +-1328 -1331 0 +-1328 -1332 0 +-1329 -1330 0 +-1329 -1331 0 +-1329 -1332 0 +-1330 -1331 0 +-1330 -1332 0 +-1331 -1332 0 +1327 1328 1329 1330 1331 1332 0 +-1333 -1334 0 +-1333 -1335 0 +-1333 -1336 0 +-1333 -1337 0 +-1333 -1338 0 +-1334 -1335 0 +-1334 -1336 0 +-1334 -1337 0 +-1334 -1338 0 +-1335 -1336 0 +-1335 -1337 0 +-1335 -1338 0 +-1336 -1337 0 +-1336 -1338 0 +-1337 -1338 0 +1333 1334 1335 1336 1337 1338 0 +-1339 -1340 0 +-1339 -1341 0 +-1339 -1342 0 +-1339 -1343 0 +-1339 -1344 0 +-1340 -1341 0 +-1340 -1342 0 +-1340 -1343 0 +-1340 -1344 0 +-1341 -1342 0 +-1341 -1343 0 +-1341 -1344 0 +-1342 -1343 0 +-1342 -1344 0 +-1343 -1344 0 +1339 1340 1341 1342 1343 1344 0 +-1345 -1346 0 +-1345 -1347 0 +-1345 -1348 0 +-1345 -1349 0 +-1345 -1350 0 +-1346 -1347 0 +-1346 -1348 0 +-1346 -1349 0 +-1346 -1350 0 +-1347 -1348 0 +-1347 -1349 0 +-1347 -1350 0 +-1348 -1349 0 +-1348 -1350 0 +-1349 -1350 0 +1345 1346 1347 1348 1349 1350 0 +-1351 -1352 0 +-1351 -1353 0 +-1351 -1354 0 +-1351 -1355 0 +-1351 -1356 0 +-1352 -1353 0 +-1352 -1354 0 +-1352 -1355 0 +-1352 -1356 0 +-1353 -1354 0 +-1353 -1355 0 +-1353 -1356 0 +-1354 -1355 0 +-1354 -1356 0 +-1355 -1356 0 +1351 1352 1353 1354 1355 1356 0 +-1357 -1358 0 +-1357 -1359 0 +-1357 -1360 0 +-1357 -1361 0 +-1357 -1362 0 +-1358 -1359 0 +-1358 -1360 0 +-1358 -1361 0 +-1358 -1362 0 +-1359 -1360 0 +-1359 -1361 0 +-1359 -1362 0 +-1360 -1361 0 +-1360 -1362 0 +-1361 -1362 0 +1357 1358 1359 1360 1361 1362 0 +-1363 -1364 0 +-1363 -1365 0 +-1363 -1366 0 +-1363 -1367 0 +-1363 -1368 0 +-1364 -1365 0 +-1364 -1366 0 +-1364 -1367 0 +-1364 -1368 0 +-1365 -1366 0 +-1365 -1367 0 +-1365 -1368 0 +-1366 -1367 0 +-1366 -1368 0 +-1367 -1368 0 +1363 1364 1365 1366 1367 1368 0 +-1369 -1370 0 +-1369 -1371 0 +-1369 -1372 0 +-1369 -1373 0 +-1369 -1374 0 +-1370 -1371 0 +-1370 -1372 0 +-1370 -1373 0 +-1370 -1374 0 +-1371 -1372 0 +-1371 -1373 0 +-1371 -1374 0 +-1372 -1373 0 +-1372 -1374 0 +-1373 -1374 0 +1369 1370 1371 1372 1373 1374 0 +-1375 -1376 0 +-1375 -1377 0 +-1375 -1378 0 +-1375 -1379 0 +-1375 -1380 0 +-1376 -1377 0 +-1376 -1378 0 +-1376 -1379 0 +-1376 -1380 0 +-1377 -1378 0 +-1377 -1379 0 +-1377 -1380 0 +-1378 -1379 0 +-1378 -1380 0 +-1379 -1380 0 +1375 1376 1377 1378 1379 1380 0 +-1381 -1382 0 +-1381 -1383 0 +-1381 -1384 0 +-1381 -1385 0 +-1381 -1386 0 +-1382 -1383 0 +-1382 -1384 0 +-1382 -1385 0 +-1382 -1386 0 +-1383 -1384 0 +-1383 -1385 0 +-1383 -1386 0 +-1384 -1385 0 +-1384 -1386 0 +-1385 -1386 0 +1381 1382 1383 1384 1385 1386 0 +-1387 -1388 0 +-1387 -1389 0 +-1387 -1390 0 +-1387 -1391 0 +-1387 -1392 0 +-1388 -1389 0 +-1388 -1390 0 +-1388 -1391 0 +-1388 -1392 0 +-1389 -1390 0 +-1389 -1391 0 +-1389 -1392 0 +-1390 -1391 0 +-1390 -1392 0 +-1391 -1392 0 +1387 1388 1389 1390 1391 1392 0 +-1393 -1394 0 +-1393 -1395 0 +-1393 -1396 0 +-1393 -1397 0 +-1393 -1398 0 +-1394 -1395 0 +-1394 -1396 0 +-1394 -1397 0 +-1394 -1398 0 +-1395 -1396 0 +-1395 -1397 0 +-1395 -1398 0 +-1396 -1397 0 +-1396 -1398 0 +-1397 -1398 0 +1393 1394 1395 1396 1397 1398 0 +-1399 -1400 0 +-1399 -1401 0 +-1399 -1402 0 +-1399 -1403 0 +-1399 -1404 0 +-1400 -1401 0 +-1400 -1402 0 +-1400 -1403 0 +-1400 -1404 0 +-1401 -1402 0 +-1401 -1403 0 +-1401 -1404 0 +-1402 -1403 0 +-1402 -1404 0 +-1403 -1404 0 +1399 1400 1401 1402 1403 1404 0 +-1405 -1406 0 +-1405 -1407 0 +-1405 -1408 0 +-1405 -1409 0 +-1405 -1410 0 +-1406 -1407 0 +-1406 -1408 0 +-1406 -1409 0 +-1406 -1410 0 +-1407 -1408 0 +-1407 -1409 0 +-1407 -1410 0 +-1408 -1409 0 +-1408 -1410 0 +-1409 -1410 0 +1405 1406 1407 1408 1409 1410 0 +-1411 -1412 0 +-1411 -1413 0 +-1411 -1414 0 +-1411 -1415 0 +-1411 -1416 0 +-1412 -1413 0 +-1412 -1414 0 +-1412 -1415 0 +-1412 -1416 0 +-1413 -1414 0 +-1413 -1415 0 +-1413 -1416 0 +-1414 -1415 0 +-1414 -1416 0 +-1415 -1416 0 +1411 1412 1413 1414 1415 1416 0 +-1417 -1418 0 +-1417 -1419 0 +-1417 -1420 0 +-1417 -1421 0 +-1417 -1422 0 +-1418 -1419 0 +-1418 -1420 0 +-1418 -1421 0 +-1418 -1422 0 +-1419 -1420 0 +-1419 -1421 0 +-1419 -1422 0 +-1420 -1421 0 +-1420 -1422 0 +-1421 -1422 0 +1417 1418 1419 1420 1421 1422 0 +-1423 -1424 0 +-1423 -1425 0 +-1423 -1426 0 +-1423 -1427 0 +-1423 -1428 0 +-1424 -1425 0 +-1424 -1426 0 +-1424 -1427 0 +-1424 -1428 0 +-1425 -1426 0 +-1425 -1427 0 +-1425 -1428 0 +-1426 -1427 0 +-1426 -1428 0 +-1427 -1428 0 +1423 1424 1425 1426 1427 1428 0 +-1429 -1430 0 +-1429 -1431 0 +-1429 -1432 0 +-1429 -1433 0 +-1429 -1434 0 +-1430 -1431 0 +-1430 -1432 0 +-1430 -1433 0 +-1430 -1434 0 +-1431 -1432 0 +-1431 -1433 0 +-1431 -1434 0 +-1432 -1433 0 +-1432 -1434 0 +-1433 -1434 0 +1429 1430 1431 1432 1433 1434 0 +-1435 -1436 0 +-1435 -1437 0 +-1435 -1438 0 +-1435 -1439 0 +-1435 -1440 0 +-1436 -1437 0 +-1436 -1438 0 +-1436 -1439 0 +-1436 -1440 0 +-1437 -1438 0 +-1437 -1439 0 +-1437 -1440 0 +-1438 -1439 0 +-1438 -1440 0 +-1439 -1440 0 +1435 1436 1437 1438 1439 1440 0 +-1441 -1442 0 +-1441 -1443 0 +-1441 -1444 0 +-1441 -1445 0 +-1441 -1446 0 +-1442 -1443 0 +-1442 -1444 0 +-1442 -1445 0 +-1442 -1446 0 +-1443 -1444 0 +-1443 -1445 0 +-1443 -1446 0 +-1444 -1445 0 +-1444 -1446 0 +-1445 -1446 0 +1441 1442 1443 1444 1445 1446 0 +-1447 -1448 0 +-1447 -1449 0 +-1447 -1450 0 +-1447 -1451 0 +-1447 -1452 0 +-1448 -1449 0 +-1448 -1450 0 +-1448 -1451 0 +-1448 -1452 0 +-1449 -1450 0 +-1449 -1451 0 +-1449 -1452 0 +-1450 -1451 0 +-1450 -1452 0 +-1451 -1452 0 +1447 1448 1449 1450 1451 1452 0 +-1453 -1454 0 +-1453 -1455 0 +-1453 -1456 0 +-1453 -1457 0 +-1453 -1458 0 +-1454 -1455 0 +-1454 -1456 0 +-1454 -1457 0 +-1454 -1458 0 +-1455 -1456 0 +-1455 -1457 0 +-1455 -1458 0 +-1456 -1457 0 +-1456 -1458 0 +-1457 -1458 0 +1453 1454 1455 1456 1457 1458 0 +-1459 -1460 0 +-1459 -1461 0 +-1459 -1462 0 +-1459 -1463 0 +-1459 -1464 0 +-1460 -1461 0 +-1460 -1462 0 +-1460 -1463 0 +-1460 -1464 0 +-1461 -1462 0 +-1461 -1463 0 +-1461 -1464 0 +-1462 -1463 0 +-1462 -1464 0 +-1463 -1464 0 +1459 1460 1461 1462 1463 1464 0 +-1465 -1466 0 +-1465 -1467 0 +-1465 -1468 0 +-1465 -1469 0 +-1465 -1470 0 +-1466 -1467 0 +-1466 -1468 0 +-1466 -1469 0 +-1466 -1470 0 +-1467 -1468 0 +-1467 -1469 0 +-1467 -1470 0 +-1468 -1469 0 +-1468 -1470 0 +-1469 -1470 0 +1465 1466 1467 1468 1469 1470 0 +-1471 -1472 0 +-1471 -1473 0 +-1471 -1474 0 +-1471 -1475 0 +-1471 -1476 0 +-1472 -1473 0 +-1472 -1474 0 +-1472 -1475 0 +-1472 -1476 0 +-1473 -1474 0 +-1473 -1475 0 +-1473 -1476 0 +-1474 -1475 0 +-1474 -1476 0 +-1475 -1476 0 +1471 1472 1473 1474 1475 1476 0 +-1477 -1478 0 +-1477 -1479 0 +-1477 -1480 0 +-1477 -1481 0 +-1477 -1482 0 +-1478 -1479 0 +-1478 -1480 0 +-1478 -1481 0 +-1478 -1482 0 +-1479 -1480 0 +-1479 -1481 0 +-1479 -1482 0 +-1480 -1481 0 +-1480 -1482 0 +-1481 -1482 0 +1477 1478 1479 1480 1481 1482 0 +-1483 -1484 0 +-1483 -1485 0 +-1483 -1486 0 +-1483 -1487 0 +-1483 -1488 0 +-1484 -1485 0 +-1484 -1486 0 +-1484 -1487 0 +-1484 -1488 0 +-1485 -1486 0 +-1485 -1487 0 +-1485 -1488 0 +-1486 -1487 0 +-1486 -1488 0 +-1487 -1488 0 +1483 1484 1485 1486 1487 1488 0 +-1489 -1490 0 +-1489 -1491 0 +-1489 -1492 0 +-1489 -1493 0 +-1489 -1494 0 +-1490 -1491 0 +-1490 -1492 0 +-1490 -1493 0 +-1490 -1494 0 +-1491 -1492 0 +-1491 -1493 0 +-1491 -1494 0 +-1492 -1493 0 +-1492 -1494 0 +-1493 -1494 0 +1489 1490 1491 1492 1493 1494 0 +-1495 -1496 0 +-1495 -1497 0 +-1495 -1498 0 +-1495 -1499 0 +-1495 -1500 0 +-1496 -1497 0 +-1496 -1498 0 +-1496 -1499 0 +-1496 -1500 0 +-1497 -1498 0 +-1497 -1499 0 +-1497 -1500 0 +-1498 -1499 0 +-1498 -1500 0 +-1499 -1500 0 +1495 1496 1497 1498 1499 1500 0 +-1501 -1502 0 +-1501 -1503 0 +-1501 -1504 0 +-1501 -1505 0 +-1501 -1506 0 +-1502 -1503 0 +-1502 -1504 0 +-1502 -1505 0 +-1502 -1506 0 +-1503 -1504 0 +-1503 -1505 0 +-1503 -1506 0 +-1504 -1505 0 +-1504 -1506 0 +-1505 -1506 0 +1501 1502 1503 1504 1505 1506 0 +-1507 -1508 0 +-1507 -1509 0 +-1507 -1510 0 +-1507 -1511 0 +-1507 -1512 0 +-1508 -1509 0 +-1508 -1510 0 +-1508 -1511 0 +-1508 -1512 0 +-1509 -1510 0 +-1509 -1511 0 +-1509 -1512 0 +-1510 -1511 0 +-1510 -1512 0 +-1511 -1512 0 +1507 1508 1509 1510 1511 1512 0 +-1513 -1514 0 +-1513 -1515 0 +-1513 -1516 0 +-1513 -1517 0 +-1513 -1518 0 +-1514 -1515 0 +-1514 -1516 0 +-1514 -1517 0 +-1514 -1518 0 +-1515 -1516 0 +-1515 -1517 0 +-1515 -1518 0 +-1516 -1517 0 +-1516 -1518 0 +-1517 -1518 0 +1513 1514 1515 1516 1517 1518 0 +-1519 -1520 0 +-1519 -1521 0 +-1519 -1522 0 +-1519 -1523 0 +-1519 -1524 0 +-1520 -1521 0 +-1520 -1522 0 +-1520 -1523 0 +-1520 -1524 0 +-1521 -1522 0 +-1521 -1523 0 +-1521 -1524 0 +-1522 -1523 0 +-1522 -1524 0 +-1523 -1524 0 +1519 1520 1521 1522 1523 1524 0 +-1525 -1526 0 +-1525 -1527 0 +-1525 -1528 0 +-1525 -1529 0 +-1525 -1530 0 +-1526 -1527 0 +-1526 -1528 0 +-1526 -1529 0 +-1526 -1530 0 +-1527 -1528 0 +-1527 -1529 0 +-1527 -1530 0 +-1528 -1529 0 +-1528 -1530 0 +-1529 -1530 0 +1525 1526 1527 1528 1529 1530 0 +-1531 -1532 0 +-1531 -1533 0 +-1531 -1534 0 +-1531 -1535 0 +-1531 -1536 0 +-1532 -1533 0 +-1532 -1534 0 +-1532 -1535 0 +-1532 -1536 0 +-1533 -1534 0 +-1533 -1535 0 +-1533 -1536 0 +-1534 -1535 0 +-1534 -1536 0 +-1535 -1536 0 +1531 1532 1533 1534 1535 1536 0 +-1537 -1538 0 +-1537 -1539 0 +-1537 -1540 0 +-1537 -1541 0 +-1537 -1542 0 +-1538 -1539 0 +-1538 -1540 0 +-1538 -1541 0 +-1538 -1542 0 +-1539 -1540 0 +-1539 -1541 0 +-1539 -1542 0 +-1540 -1541 0 +-1540 -1542 0 +-1541 -1542 0 +1537 1538 1539 1540 1541 1542 0 +-1543 -1544 0 +-1543 -1545 0 +-1543 -1546 0 +-1543 -1547 0 +-1543 -1548 0 +-1544 -1545 0 +-1544 -1546 0 +-1544 -1547 0 +-1544 -1548 0 +-1545 -1546 0 +-1545 -1547 0 +-1545 -1548 0 +-1546 -1547 0 +-1546 -1548 0 +-1547 -1548 0 +1543 1544 1545 1546 1547 1548 0 +-1549 -1550 0 +-1549 -1551 0 +-1549 -1552 0 +-1549 -1553 0 +-1549 -1554 0 +-1550 -1551 0 +-1550 -1552 0 +-1550 -1553 0 +-1550 -1554 0 +-1551 -1552 0 +-1551 -1553 0 +-1551 -1554 0 +-1552 -1553 0 +-1552 -1554 0 +-1553 -1554 0 +1549 1550 1551 1552 1553 1554 0 +-1555 -1556 0 +-1555 -1557 0 +-1555 -1558 0 +-1555 -1559 0 +-1555 -1560 0 +-1556 -1557 0 +-1556 -1558 0 +-1556 -1559 0 +-1556 -1560 0 +-1557 -1558 0 +-1557 -1559 0 +-1557 -1560 0 +-1558 -1559 0 +-1558 -1560 0 +-1559 -1560 0 +1555 1556 1557 1558 1559 1560 0 +-1561 -1562 0 +-1561 -1563 0 +-1561 -1564 0 +-1561 -1565 0 +-1561 -1566 0 +-1562 -1563 0 +-1562 -1564 0 +-1562 -1565 0 +-1562 -1566 0 +-1563 -1564 0 +-1563 -1565 0 +-1563 -1566 0 +-1564 -1565 0 +-1564 -1566 0 +-1565 -1566 0 +1561 1562 1563 1564 1565 1566 0 +-1567 -1568 0 +-1567 -1569 0 +-1567 -1570 0 +-1567 -1571 0 +-1567 -1572 0 +-1568 -1569 0 +-1568 -1570 0 +-1568 -1571 0 +-1568 -1572 0 +-1569 -1570 0 +-1569 -1571 0 +-1569 -1572 0 +-1570 -1571 0 +-1570 -1572 0 +-1571 -1572 0 +1567 1568 1569 1570 1571 1572 0 +-1573 -1574 0 +-1573 -1575 0 +-1573 -1576 0 +-1573 -1577 0 +-1573 -1578 0 +-1574 -1575 0 +-1574 -1576 0 +-1574 -1577 0 +-1574 -1578 0 +-1575 -1576 0 +-1575 -1577 0 +-1575 -1578 0 +-1576 -1577 0 +-1576 -1578 0 +-1577 -1578 0 +1573 1574 1575 1576 1577 1578 0 +-1579 -1580 0 +-1579 -1581 0 +-1579 -1582 0 +-1579 -1583 0 +-1579 -1584 0 +-1580 -1581 0 +-1580 -1582 0 +-1580 -1583 0 +-1580 -1584 0 +-1581 -1582 0 +-1581 -1583 0 +-1581 -1584 0 +-1582 -1583 0 +-1582 -1584 0 +-1583 -1584 0 +1579 1580 1581 1582 1583 1584 0 +-1585 -1586 0 +-1585 -1587 0 +-1585 -1588 0 +-1585 -1589 0 +-1585 -1590 0 +-1586 -1587 0 +-1586 -1588 0 +-1586 -1589 0 +-1586 -1590 0 +-1587 -1588 0 +-1587 -1589 0 +-1587 -1590 0 +-1588 -1589 0 +-1588 -1590 0 +-1589 -1590 0 +1585 1586 1587 1588 1589 1590 0 +-1591 -1592 0 +-1591 -1593 0 +-1591 -1594 0 +-1591 -1595 0 +-1591 -1596 0 +-1592 -1593 0 +-1592 -1594 0 +-1592 -1595 0 +-1592 -1596 0 +-1593 -1594 0 +-1593 -1595 0 +-1593 -1596 0 +-1594 -1595 0 +-1594 -1596 0 +-1595 -1596 0 +1591 1592 1593 1594 1595 1596 0 +-1597 -1598 0 +-1597 -1599 0 +-1597 -1600 0 +-1597 -1601 0 +-1597 -1602 0 +-1598 -1599 0 +-1598 -1600 0 +-1598 -1601 0 +-1598 -1602 0 +-1599 -1600 0 +-1599 -1601 0 +-1599 -1602 0 +-1600 -1601 0 +-1600 -1602 0 +-1601 -1602 0 +1597 1598 1599 1600 1601 1602 0 +-1603 -1604 0 +-1603 -1605 0 +-1603 -1606 0 +-1603 -1607 0 +-1603 -1608 0 +-1604 -1605 0 +-1604 -1606 0 +-1604 -1607 0 +-1604 -1608 0 +-1605 -1606 0 +-1605 -1607 0 +-1605 -1608 0 +-1606 -1607 0 +-1606 -1608 0 +-1607 -1608 0 +1603 1604 1605 1606 1607 1608 0 +-1609 -1610 0 +-1609 -1611 0 +-1609 -1612 0 +-1609 -1613 0 +-1609 -1614 0 +-1610 -1611 0 +-1610 -1612 0 +-1610 -1613 0 +-1610 -1614 0 +-1611 -1612 0 +-1611 -1613 0 +-1611 -1614 0 +-1612 -1613 0 +-1612 -1614 0 +-1613 -1614 0 +1609 1610 1611 1612 1613 1614 0 +-1615 -1616 0 +-1615 -1617 0 +-1615 -1618 0 +-1615 -1619 0 +-1615 -1620 0 +-1616 -1617 0 +-1616 -1618 0 +-1616 -1619 0 +-1616 -1620 0 +-1617 -1618 0 +-1617 -1619 0 +-1617 -1620 0 +-1618 -1619 0 +-1618 -1620 0 +-1619 -1620 0 +1615 1616 1617 1618 1619 1620 0 +-1621 -1622 0 +-1621 -1623 0 +-1621 -1624 0 +-1621 -1625 0 +-1621 -1626 0 +-1622 -1623 0 +-1622 -1624 0 +-1622 -1625 0 +-1622 -1626 0 +-1623 -1624 0 +-1623 -1625 0 +-1623 -1626 0 +-1624 -1625 0 +-1624 -1626 0 +-1625 -1626 0 +1621 1622 1623 1624 1625 1626 0 +-1627 -1628 0 +-1627 -1629 0 +-1627 -1630 0 +-1627 -1631 0 +-1627 -1632 0 +-1628 -1629 0 +-1628 -1630 0 +-1628 -1631 0 +-1628 -1632 0 +-1629 -1630 0 +-1629 -1631 0 +-1629 -1632 0 +-1630 -1631 0 +-1630 -1632 0 +-1631 -1632 0 +1627 1628 1629 1630 1631 1632 0 +-1633 -1634 0 +-1633 -1635 0 +-1633 -1636 0 +-1633 -1637 0 +-1633 -1638 0 +-1634 -1635 0 +-1634 -1636 0 +-1634 -1637 0 +-1634 -1638 0 +-1635 -1636 0 +-1635 -1637 0 +-1635 -1638 0 +-1636 -1637 0 +-1636 -1638 0 +-1637 -1638 0 +1633 1634 1635 1636 1637 1638 0 +-1639 -1640 0 +-1639 -1641 0 +-1639 -1642 0 +-1639 -1643 0 +-1639 -1644 0 +-1640 -1641 0 +-1640 -1642 0 +-1640 -1643 0 +-1640 -1644 0 +-1641 -1642 0 +-1641 -1643 0 +-1641 -1644 0 +-1642 -1643 0 +-1642 -1644 0 +-1643 -1644 0 +1639 1640 1641 1642 1643 1644 0 +-1645 -1646 0 +-1645 -1647 0 +-1645 -1648 0 +-1645 -1649 0 +-1645 -1650 0 +-1646 -1647 0 +-1646 -1648 0 +-1646 -1649 0 +-1646 -1650 0 +-1647 -1648 0 +-1647 -1649 0 +-1647 -1650 0 +-1648 -1649 0 +-1648 -1650 0 +-1649 -1650 0 +1645 1646 1647 1648 1649 1650 0 +-1651 -1652 0 +-1651 -1653 0 +-1651 -1654 0 +-1651 -1655 0 +-1651 -1656 0 +-1652 -1653 0 +-1652 -1654 0 +-1652 -1655 0 +-1652 -1656 0 +-1653 -1654 0 +-1653 -1655 0 +-1653 -1656 0 +-1654 -1655 0 +-1654 -1656 0 +-1655 -1656 0 +1651 1652 1653 1654 1655 1656 0 +-1657 -1658 0 +-1657 -1659 0 +-1657 -1660 0 +-1657 -1661 0 +-1657 -1662 0 +-1658 -1659 0 +-1658 -1660 0 +-1658 -1661 0 +-1658 -1662 0 +-1659 -1660 0 +-1659 -1661 0 +-1659 -1662 0 +-1660 -1661 0 +-1660 -1662 0 +-1661 -1662 0 +1657 1658 1659 1660 1661 1662 0 +-1663 -1664 0 +-1663 -1665 0 +-1663 -1666 0 +-1663 -1667 0 +-1663 -1668 0 +-1664 -1665 0 +-1664 -1666 0 +-1664 -1667 0 +-1664 -1668 0 +-1665 -1666 0 +-1665 -1667 0 +-1665 -1668 0 +-1666 -1667 0 +-1666 -1668 0 +-1667 -1668 0 +1663 1664 1665 1666 1667 1668 0 +-1669 -1670 0 +-1669 -1671 0 +-1669 -1672 0 +-1669 -1673 0 +-1669 -1674 0 +-1670 -1671 0 +-1670 -1672 0 +-1670 -1673 0 +-1670 -1674 0 +-1671 -1672 0 +-1671 -1673 0 +-1671 -1674 0 +-1672 -1673 0 +-1672 -1674 0 +-1673 -1674 0 +1669 1670 1671 1672 1673 1674 0 +-1675 -1676 0 +-1675 -1677 0 +-1675 -1678 0 +-1675 -1679 0 +-1675 -1680 0 +-1676 -1677 0 +-1676 -1678 0 +-1676 -1679 0 +-1676 -1680 0 +-1677 -1678 0 +-1677 -1679 0 +-1677 -1680 0 +-1678 -1679 0 +-1678 -1680 0 +-1679 -1680 0 +1675 1676 1677 1678 1679 1680 0 +-1681 -1682 0 +-1681 -1683 0 +-1681 -1684 0 +-1681 -1685 0 +-1681 -1686 0 +-1682 -1683 0 +-1682 -1684 0 +-1682 -1685 0 +-1682 -1686 0 +-1683 -1684 0 +-1683 -1685 0 +-1683 -1686 0 +-1684 -1685 0 +-1684 -1686 0 +-1685 -1686 0 +1681 1682 1683 1684 1685 1686 0 +-1687 -1688 0 +-1687 -1689 0 +-1687 -1690 0 +-1687 -1691 0 +-1687 -1692 0 +-1688 -1689 0 +-1688 -1690 0 +-1688 -1691 0 +-1688 -1692 0 +-1689 -1690 0 +-1689 -1691 0 +-1689 -1692 0 +-1690 -1691 0 +-1690 -1692 0 +-1691 -1692 0 +1687 1688 1689 1690 1691 1692 0 +-1693 -1694 0 +-1693 -1695 0 +-1693 -1696 0 +-1693 -1697 0 +-1693 -1698 0 +-1694 -1695 0 +-1694 -1696 0 +-1694 -1697 0 +-1694 -1698 0 +-1695 -1696 0 +-1695 -1697 0 +-1695 -1698 0 +-1696 -1697 0 +-1696 -1698 0 +-1697 -1698 0 +1693 1694 1695 1696 1697 1698 0 +-1699 -1700 0 +-1699 -1701 0 +-1699 -1702 0 +-1699 -1703 0 +-1699 -1704 0 +-1700 -1701 0 +-1700 -1702 0 +-1700 -1703 0 +-1700 -1704 0 +-1701 -1702 0 +-1701 -1703 0 +-1701 -1704 0 +-1702 -1703 0 +-1702 -1704 0 +-1703 -1704 0 +1699 1700 1701 1702 1703 1704 0 +-1705 -1706 0 +-1705 -1707 0 +-1705 -1708 0 +-1705 -1709 0 +-1705 -1710 0 +-1706 -1707 0 +-1706 -1708 0 +-1706 -1709 0 +-1706 -1710 0 +-1707 -1708 0 +-1707 -1709 0 +-1707 -1710 0 +-1708 -1709 0 +-1708 -1710 0 +-1709 -1710 0 +1705 1706 1707 1708 1709 1710 0 +-1711 -1712 0 +-1711 -1713 0 +-1711 -1714 0 +-1711 -1715 0 +-1711 -1716 0 +-1712 -1713 0 +-1712 -1714 0 +-1712 -1715 0 +-1712 -1716 0 +-1713 -1714 0 +-1713 -1715 0 +-1713 -1716 0 +-1714 -1715 0 +-1714 -1716 0 +-1715 -1716 0 +1711 1712 1713 1714 1715 1716 0 +-1717 -1718 0 +-1717 -1719 0 +-1717 -1720 0 +-1717 -1721 0 +-1717 -1722 0 +-1718 -1719 0 +-1718 -1720 0 +-1718 -1721 0 +-1718 -1722 0 +-1719 -1720 0 +-1719 -1721 0 +-1719 -1722 0 +-1720 -1721 0 +-1720 -1722 0 +-1721 -1722 0 +1717 1718 1719 1720 1721 1722 0 +-1723 -1724 0 +-1723 -1725 0 +-1723 -1726 0 +-1723 -1727 0 +-1723 -1728 0 +-1724 -1725 0 +-1724 -1726 0 +-1724 -1727 0 +-1724 -1728 0 +-1725 -1726 0 +-1725 -1727 0 +-1725 -1728 0 +-1726 -1727 0 +-1726 -1728 0 +-1727 -1728 0 +1723 1724 1725 1726 1727 1728 0 +-1729 -1730 0 +-1729 -1731 0 +-1729 -1732 0 +-1729 -1733 0 +-1729 -1734 0 +-1730 -1731 0 +-1730 -1732 0 +-1730 -1733 0 +-1730 -1734 0 +-1731 -1732 0 +-1731 -1733 0 +-1731 -1734 0 +-1732 -1733 0 +-1732 -1734 0 +-1733 -1734 0 +1729 1730 1731 1732 1733 1734 0 +-1735 -1736 0 +-1735 -1737 0 +-1735 -1738 0 +-1735 -1739 0 +-1735 -1740 0 +-1736 -1737 0 +-1736 -1738 0 +-1736 -1739 0 +-1736 -1740 0 +-1737 -1738 0 +-1737 -1739 0 +-1737 -1740 0 +-1738 -1739 0 +-1738 -1740 0 +-1739 -1740 0 +1735 1736 1737 1738 1739 1740 0 +-1741 -1742 0 +-1741 -1743 0 +-1741 -1744 0 +-1741 -1745 0 +-1741 -1746 0 +-1742 -1743 0 +-1742 -1744 0 +-1742 -1745 0 +-1742 -1746 0 +-1743 -1744 0 +-1743 -1745 0 +-1743 -1746 0 +-1744 -1745 0 +-1744 -1746 0 +-1745 -1746 0 +1741 1742 1743 1744 1745 1746 0 +-1747 -1748 0 +-1747 -1749 0 +-1747 -1750 0 +-1747 -1751 0 +-1747 -1752 0 +-1748 -1749 0 +-1748 -1750 0 +-1748 -1751 0 +-1748 -1752 0 +-1749 -1750 0 +-1749 -1751 0 +-1749 -1752 0 +-1750 -1751 0 +-1750 -1752 0 +-1751 -1752 0 +1747 1748 1749 1750 1751 1752 0 +-1753 -1754 0 +-1753 -1755 0 +-1753 -1756 0 +-1753 -1757 0 +-1753 -1758 0 +-1754 -1755 0 +-1754 -1756 0 +-1754 -1757 0 +-1754 -1758 0 +-1755 -1756 0 +-1755 -1757 0 +-1755 -1758 0 +-1756 -1757 0 +-1756 -1758 0 +-1757 -1758 0 +1753 1754 1755 1756 1757 1758 0 +-1759 -1760 0 +-1759 -1761 0 +-1759 -1762 0 +-1759 -1763 0 +-1759 -1764 0 +-1760 -1761 0 +-1760 -1762 0 +-1760 -1763 0 +-1760 -1764 0 +-1761 -1762 0 +-1761 -1763 0 +-1761 -1764 0 +-1762 -1763 0 +-1762 -1764 0 +-1763 -1764 0 +1759 1760 1761 1762 1763 1764 0 +-1765 -1766 0 +-1765 -1767 0 +-1765 -1768 0 +-1765 -1769 0 +-1765 -1770 0 +-1766 -1767 0 +-1766 -1768 0 +-1766 -1769 0 +-1766 -1770 0 +-1767 -1768 0 +-1767 -1769 0 +-1767 -1770 0 +-1768 -1769 0 +-1768 -1770 0 +-1769 -1770 0 +1765 1766 1767 1768 1769 1770 0 +-1771 -1772 0 +-1771 -1773 0 +-1771 -1774 0 +-1771 -1775 0 +-1771 -1776 0 +-1772 -1773 0 +-1772 -1774 0 +-1772 -1775 0 +-1772 -1776 0 +-1773 -1774 0 +-1773 -1775 0 +-1773 -1776 0 +-1774 -1775 0 +-1774 -1776 0 +-1775 -1776 0 +1771 1772 1773 1774 1775 1776 0 +-1777 -1778 0 +-1777 -1779 0 +-1777 -1780 0 +-1777 -1781 0 +-1777 -1782 0 +-1778 -1779 0 +-1778 -1780 0 +-1778 -1781 0 +-1778 -1782 0 +-1779 -1780 0 +-1779 -1781 0 +-1779 -1782 0 +-1780 -1781 0 +-1780 -1782 0 +-1781 -1782 0 +1777 1778 1779 1780 1781 1782 0 +-1783 -1784 0 +-1783 -1785 0 +-1783 -1786 0 +-1783 -1787 0 +-1783 -1788 0 +-1784 -1785 0 +-1784 -1786 0 +-1784 -1787 0 +-1784 -1788 0 +-1785 -1786 0 +-1785 -1787 0 +-1785 -1788 0 +-1786 -1787 0 +-1786 -1788 0 +-1787 -1788 0 +1783 1784 1785 1786 1787 1788 0 +-1789 -1790 0 +-1789 -1791 0 +-1789 -1792 0 +-1789 -1793 0 +-1789 -1794 0 +-1790 -1791 0 +-1790 -1792 0 +-1790 -1793 0 +-1790 -1794 0 +-1791 -1792 0 +-1791 -1793 0 +-1791 -1794 0 +-1792 -1793 0 +-1792 -1794 0 +-1793 -1794 0 +1789 1790 1791 1792 1793 1794 0 +-1795 -1796 0 +-1795 -1797 0 +-1795 -1798 0 +-1795 -1799 0 +-1795 -1800 0 +-1796 -1797 0 +-1796 -1798 0 +-1796 -1799 0 +-1796 -1800 0 +-1797 -1798 0 +-1797 -1799 0 +-1797 -1800 0 +-1798 -1799 0 +-1798 -1800 0 +-1799 -1800 0 +1795 1796 1797 1798 1799 1800 0 +-1801 -1802 0 +-1801 -1803 0 +-1801 -1804 0 +-1801 -1805 0 +-1801 -1806 0 +-1802 -1803 0 +-1802 -1804 0 +-1802 -1805 0 +-1802 -1806 0 +-1803 -1804 0 +-1803 -1805 0 +-1803 -1806 0 +-1804 -1805 0 +-1804 -1806 0 +-1805 -1806 0 +1801 1802 1803 1804 1805 1806 0 +-1807 -1808 0 +-1807 -1809 0 +-1807 -1810 0 +-1807 -1811 0 +-1807 -1812 0 +-1808 -1809 0 +-1808 -1810 0 +-1808 -1811 0 +-1808 -1812 0 +-1809 -1810 0 +-1809 -1811 0 +-1809 -1812 0 +-1810 -1811 0 +-1810 -1812 0 +-1811 -1812 0 +1807 1808 1809 1810 1811 1812 0 +-1813 -1814 0 +-1813 -1815 0 +-1813 -1816 0 +-1813 -1817 0 +-1813 -1818 0 +-1814 -1815 0 +-1814 -1816 0 +-1814 -1817 0 +-1814 -1818 0 +-1815 -1816 0 +-1815 -1817 0 +-1815 -1818 0 +-1816 -1817 0 +-1816 -1818 0 +-1817 -1818 0 +1813 1814 1815 1816 1817 1818 0 +-1819 -1820 0 +-1819 -1821 0 +-1819 -1822 0 +-1819 -1823 0 +-1819 -1824 0 +-1820 -1821 0 +-1820 -1822 0 +-1820 -1823 0 +-1820 -1824 0 +-1821 -1822 0 +-1821 -1823 0 +-1821 -1824 0 +-1822 -1823 0 +-1822 -1824 0 +-1823 -1824 0 +1819 1820 1821 1822 1823 1824 0 +-1825 -1826 0 +-1825 -1827 0 +-1825 -1828 0 +-1825 -1829 0 +-1825 -1830 0 +-1826 -1827 0 +-1826 -1828 0 +-1826 -1829 0 +-1826 -1830 0 +-1827 -1828 0 +-1827 -1829 0 +-1827 -1830 0 +-1828 -1829 0 +-1828 -1830 0 +-1829 -1830 0 +1825 1826 1827 1828 1829 1830 0 +-1831 -1832 0 +-1831 -1833 0 +-1831 -1834 0 +-1831 -1835 0 +-1831 -1836 0 +-1832 -1833 0 +-1832 -1834 0 +-1832 -1835 0 +-1832 -1836 0 +-1833 -1834 0 +-1833 -1835 0 +-1833 -1836 0 +-1834 -1835 0 +-1834 -1836 0 +-1835 -1836 0 +1831 1832 1833 1834 1835 1836 0 +-1837 -1838 0 +-1837 -1839 0 +-1837 -1840 0 +-1837 -1841 0 +-1837 -1842 0 +-1838 -1839 0 +-1838 -1840 0 +-1838 -1841 0 +-1838 -1842 0 +-1839 -1840 0 +-1839 -1841 0 +-1839 -1842 0 +-1840 -1841 0 +-1840 -1842 0 +-1841 -1842 0 +1837 1838 1839 1840 1841 1842 0 +-1843 -1844 0 +-1843 -1845 0 +-1843 -1846 0 +-1843 -1847 0 +-1843 -1848 0 +-1844 -1845 0 +-1844 -1846 0 +-1844 -1847 0 +-1844 -1848 0 +-1845 -1846 0 +-1845 -1847 0 +-1845 -1848 0 +-1846 -1847 0 +-1846 -1848 0 +-1847 -1848 0 +1843 1844 1845 1846 1847 1848 0 +-1849 -1850 0 +-1849 -1851 0 +-1849 -1852 0 +-1849 -1853 0 +-1849 -1854 0 +-1850 -1851 0 +-1850 -1852 0 +-1850 -1853 0 +-1850 -1854 0 +-1851 -1852 0 +-1851 -1853 0 +-1851 -1854 0 +-1852 -1853 0 +-1852 -1854 0 +-1853 -1854 0 +1849 1850 1851 1852 1853 1854 0 +-1855 -1856 0 +-1855 -1857 0 +-1855 -1858 0 +-1855 -1859 0 +-1855 -1860 0 +-1856 -1857 0 +-1856 -1858 0 +-1856 -1859 0 +-1856 -1860 0 +-1857 -1858 0 +-1857 -1859 0 +-1857 -1860 0 +-1858 -1859 0 +-1858 -1860 0 +-1859 -1860 0 +1855 1856 1857 1858 1859 1860 0 +-1861 -1862 0 +-1861 -1863 0 +-1861 -1864 0 +-1861 -1865 0 +-1861 -1866 0 +-1862 -1863 0 +-1862 -1864 0 +-1862 -1865 0 +-1862 -1866 0 +-1863 -1864 0 +-1863 -1865 0 +-1863 -1866 0 +-1864 -1865 0 +-1864 -1866 0 +-1865 -1866 0 +1861 1862 1863 1864 1865 1866 0 +-1867 -1868 0 +-1867 -1869 0 +-1867 -1870 0 +-1867 -1871 0 +-1867 -1872 0 +-1868 -1869 0 +-1868 -1870 0 +-1868 -1871 0 +-1868 -1872 0 +-1869 -1870 0 +-1869 -1871 0 +-1869 -1872 0 +-1870 -1871 0 +-1870 -1872 0 +-1871 -1872 0 +1867 1868 1869 1870 1871 1872 0 +-1873 -1874 0 +-1873 -1875 0 +-1873 -1876 0 +-1873 -1877 0 +-1873 -1878 0 +-1874 -1875 0 +-1874 -1876 0 +-1874 -1877 0 +-1874 -1878 0 +-1875 -1876 0 +-1875 -1877 0 +-1875 -1878 0 +-1876 -1877 0 +-1876 -1878 0 +-1877 -1878 0 +1873 1874 1875 1876 1877 1878 0 +-1879 -1880 0 +-1879 -1881 0 +-1879 -1882 0 +-1879 -1883 0 +-1879 -1884 0 +-1880 -1881 0 +-1880 -1882 0 +-1880 -1883 0 +-1880 -1884 0 +-1881 -1882 0 +-1881 -1883 0 +-1881 -1884 0 +-1882 -1883 0 +-1882 -1884 0 +-1883 -1884 0 +1879 1880 1881 1882 1883 1884 0 +-1885 -1886 0 +-1885 -1887 0 +-1885 -1888 0 +-1885 -1889 0 +-1885 -1890 0 +-1886 -1887 0 +-1886 -1888 0 +-1886 -1889 0 +-1886 -1890 0 +-1887 -1888 0 +-1887 -1889 0 +-1887 -1890 0 +-1888 -1889 0 +-1888 -1890 0 +-1889 -1890 0 +1885 1886 1887 1888 1889 1890 0 +-1891 -1892 0 +-1891 -1893 0 +-1891 -1894 0 +-1891 -1895 0 +-1891 -1896 0 +-1892 -1893 0 +-1892 -1894 0 +-1892 -1895 0 +-1892 -1896 0 +-1893 -1894 0 +-1893 -1895 0 +-1893 -1896 0 +-1894 -1895 0 +-1894 -1896 0 +-1895 -1896 0 +1891 1892 1893 1894 1895 1896 0 +-1897 -1898 0 +-1897 -1899 0 +-1897 -1900 0 +-1897 -1901 0 +-1897 -1902 0 +-1898 -1899 0 +-1898 -1900 0 +-1898 -1901 0 +-1898 -1902 0 +-1899 -1900 0 +-1899 -1901 0 +-1899 -1902 0 +-1900 -1901 0 +-1900 -1902 0 +-1901 -1902 0 +1897 1898 1899 1900 1901 1902 0 +-1903 -1904 0 +-1903 -1905 0 +-1903 -1906 0 +-1903 -1907 0 +-1903 -1908 0 +-1904 -1905 0 +-1904 -1906 0 +-1904 -1907 0 +-1904 -1908 0 +-1905 -1906 0 +-1905 -1907 0 +-1905 -1908 0 +-1906 -1907 0 +-1906 -1908 0 +-1907 -1908 0 +1903 1904 1905 1906 1907 1908 0 +-1909 -1910 0 +-1909 -1911 0 +-1909 -1912 0 +-1909 -1913 0 +-1909 -1914 0 +-1910 -1911 0 +-1910 -1912 0 +-1910 -1913 0 +-1910 -1914 0 +-1911 -1912 0 +-1911 -1913 0 +-1911 -1914 0 +-1912 -1913 0 +-1912 -1914 0 +-1913 -1914 0 +1909 1910 1911 1912 1913 1914 0 +-1915 -1916 0 +-1915 -1917 0 +-1915 -1918 0 +-1915 -1919 0 +-1915 -1920 0 +-1916 -1917 0 +-1916 -1918 0 +-1916 -1919 0 +-1916 -1920 0 +-1917 -1918 0 +-1917 -1919 0 +-1917 -1920 0 +-1918 -1919 0 +-1918 -1920 0 +-1919 -1920 0 +1915 1916 1917 1918 1919 1920 0 +-1921 -1922 0 +-1921 -1923 0 +-1921 -1924 0 +-1921 -1925 0 +-1921 -1926 0 +-1922 -1923 0 +-1922 -1924 0 +-1922 -1925 0 +-1922 -1926 0 +-1923 -1924 0 +-1923 -1925 0 +-1923 -1926 0 +-1924 -1925 0 +-1924 -1926 0 +-1925 -1926 0 +1921 1922 1923 1924 1925 1926 0 +-1927 -1928 0 +-1927 -1929 0 +-1927 -1930 0 +-1927 -1931 0 +-1927 -1932 0 +-1928 -1929 0 +-1928 -1930 0 +-1928 -1931 0 +-1928 -1932 0 +-1929 -1930 0 +-1929 -1931 0 +-1929 -1932 0 +-1930 -1931 0 +-1930 -1932 0 +-1931 -1932 0 +1927 1928 1929 1930 1931 1932 0 +-1933 -1934 0 +-1933 -1935 0 +-1933 -1936 0 +-1933 -1937 0 +-1933 -1938 0 +-1934 -1935 0 +-1934 -1936 0 +-1934 -1937 0 +-1934 -1938 0 +-1935 -1936 0 +-1935 -1937 0 +-1935 -1938 0 +-1936 -1937 0 +-1936 -1938 0 +-1937 -1938 0 +1933 1934 1935 1936 1937 1938 0 +-1939 -1940 0 +-1939 -1941 0 +-1939 -1942 0 +-1939 -1943 0 +-1939 -1944 0 +-1940 -1941 0 +-1940 -1942 0 +-1940 -1943 0 +-1940 -1944 0 +-1941 -1942 0 +-1941 -1943 0 +-1941 -1944 0 +-1942 -1943 0 +-1942 -1944 0 +-1943 -1944 0 +1939 1940 1941 1942 1943 1944 0 +-1945 -1946 0 +-1945 -1947 0 +-1945 -1948 0 +-1945 -1949 0 +-1945 -1950 0 +-1946 -1947 0 +-1946 -1948 0 +-1946 -1949 0 +-1946 -1950 0 +-1947 -1948 0 +-1947 -1949 0 +-1947 -1950 0 +-1948 -1949 0 +-1948 -1950 0 +-1949 -1950 0 +1945 1946 1947 1948 1949 1950 0 +-1951 -1952 0 +-1951 -1953 0 +-1951 -1954 0 +-1951 -1955 0 +-1951 -1956 0 +-1952 -1953 0 +-1952 -1954 0 +-1952 -1955 0 +-1952 -1956 0 +-1953 -1954 0 +-1953 -1955 0 +-1953 -1956 0 +-1954 -1955 0 +-1954 -1956 0 +-1955 -1956 0 +1951 1952 1953 1954 1955 1956 0 +-1957 -1958 0 +-1957 -1959 0 +-1957 -1960 0 +-1957 -1961 0 +-1957 -1962 0 +-1958 -1959 0 +-1958 -1960 0 +-1958 -1961 0 +-1958 -1962 0 +-1959 -1960 0 +-1959 -1961 0 +-1959 -1962 0 +-1960 -1961 0 +-1960 -1962 0 +-1961 -1962 0 +1957 1958 1959 1960 1961 1962 0 +-1963 -1964 0 +-1963 -1965 0 +-1963 -1966 0 +-1963 -1967 0 +-1963 -1968 0 +-1964 -1965 0 +-1964 -1966 0 +-1964 -1967 0 +-1964 -1968 0 +-1965 -1966 0 +-1965 -1967 0 +-1965 -1968 0 +-1966 -1967 0 +-1966 -1968 0 +-1967 -1968 0 +1963 1964 1965 1966 1967 1968 0 +-1969 -1970 0 +-1969 -1971 0 +-1969 -1972 0 +-1969 -1973 0 +-1969 -1974 0 +-1970 -1971 0 +-1970 -1972 0 +-1970 -1973 0 +-1970 -1974 0 +-1971 -1972 0 +-1971 -1973 0 +-1971 -1974 0 +-1972 -1973 0 +-1972 -1974 0 +-1973 -1974 0 +1969 1970 1971 1972 1973 1974 0 +-1975 -1976 0 +-1975 -1977 0 +-1975 -1978 0 +-1975 -1979 0 +-1975 -1980 0 +-1976 -1977 0 +-1976 -1978 0 +-1976 -1979 0 +-1976 -1980 0 +-1977 -1978 0 +-1977 -1979 0 +-1977 -1980 0 +-1978 -1979 0 +-1978 -1980 0 +-1979 -1980 0 +1975 1976 1977 1978 1979 1980 0 +-1981 -1982 0 +-1981 -1983 0 +-1981 -1984 0 +-1981 -1985 0 +-1981 -1986 0 +-1982 -1983 0 +-1982 -1984 0 +-1982 -1985 0 +-1982 -1986 0 +-1983 -1984 0 +-1983 -1985 0 +-1983 -1986 0 +-1984 -1985 0 +-1984 -1986 0 +-1985 -1986 0 +1981 1982 1983 1984 1985 1986 0 +-1987 -1988 0 +-1987 -1989 0 +-1987 -1990 0 +-1987 -1991 0 +-1987 -1992 0 +-1988 -1989 0 +-1988 -1990 0 +-1988 -1991 0 +-1988 -1992 0 +-1989 -1990 0 +-1989 -1991 0 +-1989 -1992 0 +-1990 -1991 0 +-1990 -1992 0 +-1991 -1992 0 +1987 1988 1989 1990 1991 1992 0 +-1993 -1994 0 +-1993 -1995 0 +-1993 -1996 0 +-1993 -1997 0 +-1993 -1998 0 +-1994 -1995 0 +-1994 -1996 0 +-1994 -1997 0 +-1994 -1998 0 +-1995 -1996 0 +-1995 -1997 0 +-1995 -1998 0 +-1996 -1997 0 +-1996 -1998 0 +-1997 -1998 0 +1993 1994 1995 1996 1997 1998 0 +-1999 -2000 0 +-1999 -2001 0 +-1999 -2002 0 +-1999 -2003 0 +-1999 -2004 0 +-2000 -2001 0 +-2000 -2002 0 +-2000 -2003 0 +-2000 -2004 0 +-2001 -2002 0 +-2001 -2003 0 +-2001 -2004 0 +-2002 -2003 0 +-2002 -2004 0 +-2003 -2004 0 +1999 2000 2001 2002 2003 2004 0 +-2005 -2006 0 +-2005 -2007 0 +-2005 -2008 0 +-2005 -2009 0 +-2005 -2010 0 +-2006 -2007 0 +-2006 -2008 0 +-2006 -2009 0 +-2006 -2010 0 +-2007 -2008 0 +-2007 -2009 0 +-2007 -2010 0 +-2008 -2009 0 +-2008 -2010 0 +-2009 -2010 0 +2005 2006 2007 2008 2009 2010 0 +-2011 -2012 0 +-2011 -2013 0 +-2011 -2014 0 +-2011 -2015 0 +-2011 -2016 0 +-2012 -2013 0 +-2012 -2014 0 +-2012 -2015 0 +-2012 -2016 0 +-2013 -2014 0 +-2013 -2015 0 +-2013 -2016 0 +-2014 -2015 0 +-2014 -2016 0 +-2015 -2016 0 +2011 2012 2013 2014 2015 2016 0 +-2017 -2018 0 +-2017 -2019 0 +-2017 -2020 0 +-2017 -2021 0 +-2017 -2022 0 +-2018 -2019 0 +-2018 -2020 0 +-2018 -2021 0 +-2018 -2022 0 +-2019 -2020 0 +-2019 -2021 0 +-2019 -2022 0 +-2020 -2021 0 +-2020 -2022 0 +-2021 -2022 0 +2017 2018 2019 2020 2021 2022 0 +-2023 -2024 0 +-2023 -2025 0 +-2023 -2026 0 +-2023 -2027 0 +-2023 -2028 0 +-2024 -2025 0 +-2024 -2026 0 +-2024 -2027 0 +-2024 -2028 0 +-2025 -2026 0 +-2025 -2027 0 +-2025 -2028 0 +-2026 -2027 0 +-2026 -2028 0 +-2027 -2028 0 +2023 2024 2025 2026 2027 2028 0 +-2029 -2030 0 +-2029 -2031 0 +-2029 -2032 0 +-2029 -2033 0 +-2029 -2034 0 +-2030 -2031 0 +-2030 -2032 0 +-2030 -2033 0 +-2030 -2034 0 +-2031 -2032 0 +-2031 -2033 0 +-2031 -2034 0 +-2032 -2033 0 +-2032 -2034 0 +-2033 -2034 0 +2029 2030 2031 2032 2033 2034 0 +-2035 -2036 0 +-2035 -2037 0 +-2035 -2038 0 +-2035 -2039 0 +-2035 -2040 0 +-2036 -2037 0 +-2036 -2038 0 +-2036 -2039 0 +-2036 -2040 0 +-2037 -2038 0 +-2037 -2039 0 +-2037 -2040 0 +-2038 -2039 0 +-2038 -2040 0 +-2039 -2040 0 +2035 2036 2037 2038 2039 2040 0 +-2041 -2042 0 +-2041 -2043 0 +-2041 -2044 0 +-2041 -2045 0 +-2041 -2046 0 +-2042 -2043 0 +-2042 -2044 0 +-2042 -2045 0 +-2042 -2046 0 +-2043 -2044 0 +-2043 -2045 0 +-2043 -2046 0 +-2044 -2045 0 +-2044 -2046 0 +-2045 -2046 0 +2041 2042 2043 2044 2045 2046 0 +-2047 -2048 0 +-2047 -2049 0 +-2047 -2050 0 +-2047 -2051 0 +-2047 -2052 0 +-2048 -2049 0 +-2048 -2050 0 +-2048 -2051 0 +-2048 -2052 0 +-2049 -2050 0 +-2049 -2051 0 +-2049 -2052 0 +-2050 -2051 0 +-2050 -2052 0 +-2051 -2052 0 +2047 2048 2049 2050 2051 2052 0 +-2053 -2054 0 +-2053 -2055 0 +-2053 -2056 0 +-2053 -2057 0 +-2053 -2058 0 +-2054 -2055 0 +-2054 -2056 0 +-2054 -2057 0 +-2054 -2058 0 +-2055 -2056 0 +-2055 -2057 0 +-2055 -2058 0 +-2056 -2057 0 +-2056 -2058 0 +-2057 -2058 0 +2053 2054 2055 2056 2057 2058 0 +-2059 -2060 0 +-2059 -2061 0 +-2059 -2062 0 +-2059 -2063 0 +-2059 -2064 0 +-2060 -2061 0 +-2060 -2062 0 +-2060 -2063 0 +-2060 -2064 0 +-2061 -2062 0 +-2061 -2063 0 +-2061 -2064 0 +-2062 -2063 0 +-2062 -2064 0 +-2063 -2064 0 +2059 2060 2061 2062 2063 2064 0 +-2065 -2066 0 +-2065 -2067 0 +-2065 -2068 0 +-2065 -2069 0 +-2065 -2070 0 +-2066 -2067 0 +-2066 -2068 0 +-2066 -2069 0 +-2066 -2070 0 +-2067 -2068 0 +-2067 -2069 0 +-2067 -2070 0 +-2068 -2069 0 +-2068 -2070 0 +-2069 -2070 0 +2065 2066 2067 2068 2069 2070 0 +-2071 -2072 0 +-2071 -2073 0 +-2071 -2074 0 +-2071 -2075 0 +-2071 -2076 0 +-2072 -2073 0 +-2072 -2074 0 +-2072 -2075 0 +-2072 -2076 0 +-2073 -2074 0 +-2073 -2075 0 +-2073 -2076 0 +-2074 -2075 0 +-2074 -2076 0 +-2075 -2076 0 +2071 2072 2073 2074 2075 2076 0 +-2077 -2078 0 +-2077 -2079 0 +-2077 -2080 0 +-2077 -2081 0 +-2077 -2082 0 +-2078 -2079 0 +-2078 -2080 0 +-2078 -2081 0 +-2078 -2082 0 +-2079 -2080 0 +-2079 -2081 0 +-2079 -2082 0 +-2080 -2081 0 +-2080 -2082 0 +-2081 -2082 0 +2077 2078 2079 2080 2081 2082 0 +-2083 -2084 0 +-2083 -2085 0 +-2083 -2086 0 +-2083 -2087 0 +-2083 -2088 0 +-2084 -2085 0 +-2084 -2086 0 +-2084 -2087 0 +-2084 -2088 0 +-2085 -2086 0 +-2085 -2087 0 +-2085 -2088 0 +-2086 -2087 0 +-2086 -2088 0 +-2087 -2088 0 +2083 2084 2085 2086 2087 2088 0 +-2089 -2090 0 +-2089 -2091 0 +-2089 -2092 0 +-2089 -2093 0 +-2089 -2094 0 +-2090 -2091 0 +-2090 -2092 0 +-2090 -2093 0 +-2090 -2094 0 +-2091 -2092 0 +-2091 -2093 0 +-2091 -2094 0 +-2092 -2093 0 +-2092 -2094 0 +-2093 -2094 0 +2089 2090 2091 2092 2093 2094 0 +-2095 -2096 0 +-2095 -2097 0 +-2095 -2098 0 +-2095 -2099 0 +-2095 -2100 0 +-2096 -2097 0 +-2096 -2098 0 +-2096 -2099 0 +-2096 -2100 0 +-2097 -2098 0 +-2097 -2099 0 +-2097 -2100 0 +-2098 -2099 0 +-2098 -2100 0 +-2099 -2100 0 +2095 2096 2097 2098 2099 2100 0 +-2101 -2102 0 +-2101 -2103 0 +-2101 -2104 0 +-2101 -2105 0 +-2101 -2106 0 +-2102 -2103 0 +-2102 -2104 0 +-2102 -2105 0 +-2102 -2106 0 +-2103 -2104 0 +-2103 -2105 0 +-2103 -2106 0 +-2104 -2105 0 +-2104 -2106 0 +-2105 -2106 0 +2101 2102 2103 2104 2105 2106 0 +-2107 -2108 0 +-2107 -2109 0 +-2107 -2110 0 +-2107 -2111 0 +-2107 -2112 0 +-2108 -2109 0 +-2108 -2110 0 +-2108 -2111 0 +-2108 -2112 0 +-2109 -2110 0 +-2109 -2111 0 +-2109 -2112 0 +-2110 -2111 0 +-2110 -2112 0 +-2111 -2112 0 +2107 2108 2109 2110 2111 2112 0 +-2113 -2114 0 +-2113 -2115 0 +-2113 -2116 0 +-2113 -2117 0 +-2113 -2118 0 +-2114 -2115 0 +-2114 -2116 0 +-2114 -2117 0 +-2114 -2118 0 +-2115 -2116 0 +-2115 -2117 0 +-2115 -2118 0 +-2116 -2117 0 +-2116 -2118 0 +-2117 -2118 0 +2113 2114 2115 2116 2117 2118 0 +-2119 -2120 0 +-2119 -2121 0 +-2119 -2122 0 +-2119 -2123 0 +-2119 -2124 0 +-2120 -2121 0 +-2120 -2122 0 +-2120 -2123 0 +-2120 -2124 0 +-2121 -2122 0 +-2121 -2123 0 +-2121 -2124 0 +-2122 -2123 0 +-2122 -2124 0 +-2123 -2124 0 +2119 2120 2121 2122 2123 2124 0 +-2125 -2126 0 +-2125 -2127 0 +-2125 -2128 0 +-2125 -2129 0 +-2125 -2130 0 +-2126 -2127 0 +-2126 -2128 0 +-2126 -2129 0 +-2126 -2130 0 +-2127 -2128 0 +-2127 -2129 0 +-2127 -2130 0 +-2128 -2129 0 +-2128 -2130 0 +-2129 -2130 0 +2125 2126 2127 2128 2129 2130 0 +-2131 -2132 0 +-2131 -2133 0 +-2131 -2134 0 +-2131 -2135 0 +-2131 -2136 0 +-2132 -2133 0 +-2132 -2134 0 +-2132 -2135 0 +-2132 -2136 0 +-2133 -2134 0 +-2133 -2135 0 +-2133 -2136 0 +-2134 -2135 0 +-2134 -2136 0 +-2135 -2136 0 +2131 2132 2133 2134 2135 2136 0 +-2137 -2138 0 +-2137 -2139 0 +-2137 -2140 0 +-2137 -2141 0 +-2137 -2142 0 +-2138 -2139 0 +-2138 -2140 0 +-2138 -2141 0 +-2138 -2142 0 +-2139 -2140 0 +-2139 -2141 0 +-2139 -2142 0 +-2140 -2141 0 +-2140 -2142 0 +-2141 -2142 0 +2137 2138 2139 2140 2141 2142 0 +-2143 -2144 0 +-2143 -2145 0 +-2143 -2146 0 +-2143 -2147 0 +-2143 -2148 0 +-2144 -2145 0 +-2144 -2146 0 +-2144 -2147 0 +-2144 -2148 0 +-2145 -2146 0 +-2145 -2147 0 +-2145 -2148 0 +-2146 -2147 0 +-2146 -2148 0 +-2147 -2148 0 +2143 2144 2145 2146 2147 2148 0 +-2149 -2150 0 +-2149 -2151 0 +-2149 -2152 0 +-2149 -2153 0 +-2149 -2154 0 +-2150 -2151 0 +-2150 -2152 0 +-2150 -2153 0 +-2150 -2154 0 +-2151 -2152 0 +-2151 -2153 0 +-2151 -2154 0 +-2152 -2153 0 +-2152 -2154 0 +-2153 -2154 0 +2149 2150 2151 2152 2153 2154 0 +-2155 -2156 0 +-2155 -2157 0 +-2155 -2158 0 +-2155 -2159 0 +-2155 -2160 0 +-2156 -2157 0 +-2156 -2158 0 +-2156 -2159 0 +-2156 -2160 0 +-2157 -2158 0 +-2157 -2159 0 +-2157 -2160 0 +-2158 -2159 0 +-2158 -2160 0 +-2159 -2160 0 +2155 2156 2157 2158 2159 2160 0 +-2161 -2162 0 +-2161 -2163 0 +-2161 -2164 0 +-2161 -2165 0 +-2161 -2166 0 +-2162 -2163 0 +-2162 -2164 0 +-2162 -2165 0 +-2162 -2166 0 +-2163 -2164 0 +-2163 -2165 0 +-2163 -2166 0 +-2164 -2165 0 +-2164 -2166 0 +-2165 -2166 0 +2161 2162 2163 2164 2165 2166 0 +-2167 -2168 0 +-2167 -2169 0 +-2167 -2170 0 +-2167 -2171 0 +-2167 -2172 0 +-2168 -2169 0 +-2168 -2170 0 +-2168 -2171 0 +-2168 -2172 0 +-2169 -2170 0 +-2169 -2171 0 +-2169 -2172 0 +-2170 -2171 0 +-2170 -2172 0 +-2171 -2172 0 +2167 2168 2169 2170 2171 2172 0 +-2173 -2174 0 +-2173 -2175 0 +-2173 -2176 0 +-2173 -2177 0 +-2173 -2178 0 +-2174 -2175 0 +-2174 -2176 0 +-2174 -2177 0 +-2174 -2178 0 +-2175 -2176 0 +-2175 -2177 0 +-2175 -2178 0 +-2176 -2177 0 +-2176 -2178 0 +-2177 -2178 0 +2173 2174 2175 2176 2177 2178 0 +-2179 -2180 0 +-2179 -2181 0 +-2179 -2182 0 +-2179 -2183 0 +-2179 -2184 0 +-2180 -2181 0 +-2180 -2182 0 +-2180 -2183 0 +-2180 -2184 0 +-2181 -2182 0 +-2181 -2183 0 +-2181 -2184 0 +-2182 -2183 0 +-2182 -2184 0 +-2183 -2184 0 +2179 2180 2181 2182 2183 2184 0 +-2185 -2186 0 +-2185 -2187 0 +-2185 -2188 0 +-2185 -2189 0 +-2185 -2190 0 +-2186 -2187 0 +-2186 -2188 0 +-2186 -2189 0 +-2186 -2190 0 +-2187 -2188 0 +-2187 -2189 0 +-2187 -2190 0 +-2188 -2189 0 +-2188 -2190 0 +-2189 -2190 0 +2185 2186 2187 2188 2189 2190 0 +-2191 -2192 0 +-2191 -2193 0 +-2191 -2194 0 +-2191 -2195 0 +-2191 -2196 0 +-2192 -2193 0 +-2192 -2194 0 +-2192 -2195 0 +-2192 -2196 0 +-2193 -2194 0 +-2193 -2195 0 +-2193 -2196 0 +-2194 -2195 0 +-2194 -2196 0 +-2195 -2196 0 +2191 2192 2193 2194 2195 2196 0 +-2197 -2198 0 +-2197 -2199 0 +-2197 -2200 0 +-2197 -2201 0 +-2197 -2202 0 +-2198 -2199 0 +-2198 -2200 0 +-2198 -2201 0 +-2198 -2202 0 +-2199 -2200 0 +-2199 -2201 0 +-2199 -2202 0 +-2200 -2201 0 +-2200 -2202 0 +-2201 -2202 0 +2197 2198 2199 2200 2201 2202 0 +-2203 -2204 0 +-2203 -2205 0 +-2203 -2206 0 +-2203 -2207 0 +-2203 -2208 0 +-2204 -2205 0 +-2204 -2206 0 +-2204 -2207 0 +-2204 -2208 0 +-2205 -2206 0 +-2205 -2207 0 +-2205 -2208 0 +-2206 -2207 0 +-2206 -2208 0 +-2207 -2208 0 +2203 2204 2205 2206 2207 2208 0 +-2209 -2210 0 +-2209 -2211 0 +-2209 -2212 0 +-2209 -2213 0 +-2209 -2214 0 +-2210 -2211 0 +-2210 -2212 0 +-2210 -2213 0 +-2210 -2214 0 +-2211 -2212 0 +-2211 -2213 0 +-2211 -2214 0 +-2212 -2213 0 +-2212 -2214 0 +-2213 -2214 0 +2209 2210 2211 2212 2213 2214 0 +-2215 -2216 0 +-2215 -2217 0 +-2215 -2218 0 +-2215 -2219 0 +-2215 -2220 0 +-2216 -2217 0 +-2216 -2218 0 +-2216 -2219 0 +-2216 -2220 0 +-2217 -2218 0 +-2217 -2219 0 +-2217 -2220 0 +-2218 -2219 0 +-2218 -2220 0 +-2219 -2220 0 +2215 2216 2217 2218 2219 2220 0 +-2221 -2222 0 +-2221 -2223 0 +-2221 -2224 0 +-2221 -2225 0 +-2221 -2226 0 +-2222 -2223 0 +-2222 -2224 0 +-2222 -2225 0 +-2222 -2226 0 +-2223 -2224 0 +-2223 -2225 0 +-2223 -2226 0 +-2224 -2225 0 +-2224 -2226 0 +-2225 -2226 0 +2221 2222 2223 2224 2225 2226 0 +-2227 -2228 0 +-2227 -2229 0 +-2227 -2230 0 +-2227 -2231 0 +-2227 -2232 0 +-2228 -2229 0 +-2228 -2230 0 +-2228 -2231 0 +-2228 -2232 0 +-2229 -2230 0 +-2229 -2231 0 +-2229 -2232 0 +-2230 -2231 0 +-2230 -2232 0 +-2231 -2232 0 +2227 2228 2229 2230 2231 2232 0 +-2233 -2234 0 +-2233 -2235 0 +-2233 -2236 0 +-2233 -2237 0 +-2233 -2238 0 +-2234 -2235 0 +-2234 -2236 0 +-2234 -2237 0 +-2234 -2238 0 +-2235 -2236 0 +-2235 -2237 0 +-2235 -2238 0 +-2236 -2237 0 +-2236 -2238 0 +-2237 -2238 0 +2233 2234 2235 2236 2237 2238 0 +-2239 -2240 0 +-2239 -2241 0 +-2239 -2242 0 +-2239 -2243 0 +-2239 -2244 0 +-2240 -2241 0 +-2240 -2242 0 +-2240 -2243 0 +-2240 -2244 0 +-2241 -2242 0 +-2241 -2243 0 +-2241 -2244 0 +-2242 -2243 0 +-2242 -2244 0 +-2243 -2244 0 +2239 2240 2241 2242 2243 2244 0 +-2245 -2246 0 +-2245 -2247 0 +-2245 -2248 0 +-2245 -2249 0 +-2245 -2250 0 +-2246 -2247 0 +-2246 -2248 0 +-2246 -2249 0 +-2246 -2250 0 +-2247 -2248 0 +-2247 -2249 0 +-2247 -2250 0 +-2248 -2249 0 +-2248 -2250 0 +-2249 -2250 0 +2245 2246 2247 2248 2249 2250 0 +-2251 -2252 0 +-2251 -2253 0 +-2251 -2254 0 +-2251 -2255 0 +-2251 -2256 0 +-2252 -2253 0 +-2252 -2254 0 +-2252 -2255 0 +-2252 -2256 0 +-2253 -2254 0 +-2253 -2255 0 +-2253 -2256 0 +-2254 -2255 0 +-2254 -2256 0 +-2255 -2256 0 +2251 2252 2253 2254 2255 2256 0 +-2257 -2258 0 +-2257 -2259 0 +-2257 -2260 0 +-2257 -2261 0 +-2257 -2262 0 +-2258 -2259 0 +-2258 -2260 0 +-2258 -2261 0 +-2258 -2262 0 +-2259 -2260 0 +-2259 -2261 0 +-2259 -2262 0 +-2260 -2261 0 +-2260 -2262 0 +-2261 -2262 0 +2257 2258 2259 2260 2261 2262 0 +-2263 -2264 0 +-2263 -2265 0 +-2263 -2266 0 +-2263 -2267 0 +-2263 -2268 0 +-2264 -2265 0 +-2264 -2266 0 +-2264 -2267 0 +-2264 -2268 0 +-2265 -2266 0 +-2265 -2267 0 +-2265 -2268 0 +-2266 -2267 0 +-2266 -2268 0 +-2267 -2268 0 +2263 2264 2265 2266 2267 2268 0 +-2269 -2270 0 +-2269 -2271 0 +-2269 -2272 0 +-2269 -2273 0 +-2269 -2274 0 +-2270 -2271 0 +-2270 -2272 0 +-2270 -2273 0 +-2270 -2274 0 +-2271 -2272 0 +-2271 -2273 0 +-2271 -2274 0 +-2272 -2273 0 +-2272 -2274 0 +-2273 -2274 0 +2269 2270 2271 2272 2273 2274 0 +-2275 -2276 0 +-2275 -2277 0 +-2275 -2278 0 +-2275 -2279 0 +-2275 -2280 0 +-2276 -2277 0 +-2276 -2278 0 +-2276 -2279 0 +-2276 -2280 0 +-2277 -2278 0 +-2277 -2279 0 +-2277 -2280 0 +-2278 -2279 0 +-2278 -2280 0 +-2279 -2280 0 +2275 2276 2277 2278 2279 2280 0 +-2281 -2282 0 +-2281 -2283 0 +-2281 -2284 0 +-2281 -2285 0 +-2281 -2286 0 +-2282 -2283 0 +-2282 -2284 0 +-2282 -2285 0 +-2282 -2286 0 +-2283 -2284 0 +-2283 -2285 0 +-2283 -2286 0 +-2284 -2285 0 +-2284 -2286 0 +-2285 -2286 0 +2281 2282 2283 2284 2285 2286 0 +-2287 -2288 0 +-2287 -2289 0 +-2287 -2290 0 +-2287 -2291 0 +-2287 -2292 0 +-2288 -2289 0 +-2288 -2290 0 +-2288 -2291 0 +-2288 -2292 0 +-2289 -2290 0 +-2289 -2291 0 +-2289 -2292 0 +-2290 -2291 0 +-2290 -2292 0 +-2291 -2292 0 +2287 2288 2289 2290 2291 2292 0 +-2293 -2294 0 +-2293 -2295 0 +-2293 -2296 0 +-2293 -2297 0 +-2293 -2298 0 +-2294 -2295 0 +-2294 -2296 0 +-2294 -2297 0 +-2294 -2298 0 +-2295 -2296 0 +-2295 -2297 0 +-2295 -2298 0 +-2296 -2297 0 +-2296 -2298 0 +-2297 -2298 0 +2293 2294 2295 2296 2297 2298 0 +-2299 -2300 0 +-2299 -2301 0 +-2299 -2302 0 +-2299 -2303 0 +-2299 -2304 0 +-2300 -2301 0 +-2300 -2302 0 +-2300 -2303 0 +-2300 -2304 0 +-2301 -2302 0 +-2301 -2303 0 +-2301 -2304 0 +-2302 -2303 0 +-2302 -2304 0 +-2303 -2304 0 +2299 2300 2301 2302 2303 2304 0 +-2305 -2306 0 +-2305 -2307 0 +-2305 -2308 0 +-2305 -2309 0 +-2305 -2310 0 +-2306 -2307 0 +-2306 -2308 0 +-2306 -2309 0 +-2306 -2310 0 +-2307 -2308 0 +-2307 -2309 0 +-2307 -2310 0 +-2308 -2309 0 +-2308 -2310 0 +-2309 -2310 0 +2305 2306 2307 2308 2309 2310 0 +-2311 -2312 0 +-2311 -2313 0 +-2311 -2314 0 +-2311 -2315 0 +-2311 -2316 0 +-2312 -2313 0 +-2312 -2314 0 +-2312 -2315 0 +-2312 -2316 0 +-2313 -2314 0 +-2313 -2315 0 +-2313 -2316 0 +-2314 -2315 0 +-2314 -2316 0 +-2315 -2316 0 +2311 2312 2313 2314 2315 2316 0 +-2317 -2318 0 +-2317 -2319 0 +-2317 -2320 0 +-2317 -2321 0 +-2317 -2322 0 +-2318 -2319 0 +-2318 -2320 0 +-2318 -2321 0 +-2318 -2322 0 +-2319 -2320 0 +-2319 -2321 0 +-2319 -2322 0 +-2320 -2321 0 +-2320 -2322 0 +-2321 -2322 0 +2317 2318 2319 2320 2321 2322 0 +-2323 -2324 0 +-2323 -2325 0 +-2323 -2326 0 +-2323 -2327 0 +-2323 -2328 0 +-2324 -2325 0 +-2324 -2326 0 +-2324 -2327 0 +-2324 -2328 0 +-2325 -2326 0 +-2325 -2327 0 +-2325 -2328 0 +-2326 -2327 0 +-2326 -2328 0 +-2327 -2328 0 +2323 2324 2325 2326 2327 2328 0 +-2329 -2330 0 +-2329 -2331 0 +-2329 -2332 0 +-2329 -2333 0 +-2329 -2334 0 +-2330 -2331 0 +-2330 -2332 0 +-2330 -2333 0 +-2330 -2334 0 +-2331 -2332 0 +-2331 -2333 0 +-2331 -2334 0 +-2332 -2333 0 +-2332 -2334 0 +-2333 -2334 0 +2329 2330 2331 2332 2333 2334 0 +-2335 -2336 0 +-2335 -2337 0 +-2335 -2338 0 +-2335 -2339 0 +-2335 -2340 0 +-2336 -2337 0 +-2336 -2338 0 +-2336 -2339 0 +-2336 -2340 0 +-2337 -2338 0 +-2337 -2339 0 +-2337 -2340 0 +-2338 -2339 0 +-2338 -2340 0 +-2339 -2340 0 +2335 2336 2337 2338 2339 2340 0 +-2341 -2342 0 +-2341 -2343 0 +-2341 -2344 0 +-2341 -2345 0 +-2341 -2346 0 +-2342 -2343 0 +-2342 -2344 0 +-2342 -2345 0 +-2342 -2346 0 +-2343 -2344 0 +-2343 -2345 0 +-2343 -2346 0 +-2344 -2345 0 +-2344 -2346 0 +-2345 -2346 0 +2341 2342 2343 2344 2345 2346 0 +-2347 -2348 0 +-2347 -2349 0 +-2347 -2350 0 +-2347 -2351 0 +-2347 -2352 0 +-2348 -2349 0 +-2348 -2350 0 +-2348 -2351 0 +-2348 -2352 0 +-2349 -2350 0 +-2349 -2351 0 +-2349 -2352 0 +-2350 -2351 0 +-2350 -2352 0 +-2351 -2352 0 +2347 2348 2349 2350 2351 2352 0 +-2353 -2354 0 +-2353 -2355 0 +-2353 -2356 0 +-2353 -2357 0 +-2353 -2358 0 +-2354 -2355 0 +-2354 -2356 0 +-2354 -2357 0 +-2354 -2358 0 +-2355 -2356 0 +-2355 -2357 0 +-2355 -2358 0 +-2356 -2357 0 +-2356 -2358 0 +-2357 -2358 0 +2353 2354 2355 2356 2357 2358 0 +-2359 -2360 0 +-2359 -2361 0 +-2359 -2362 0 +-2359 -2363 0 +-2359 -2364 0 +-2360 -2361 0 +-2360 -2362 0 +-2360 -2363 0 +-2360 -2364 0 +-2361 -2362 0 +-2361 -2363 0 +-2361 -2364 0 +-2362 -2363 0 +-2362 -2364 0 +-2363 -2364 0 +2359 2360 2361 2362 2363 2364 0 +-2365 -2366 0 +-2365 -2367 0 +-2365 -2368 0 +-2365 -2369 0 +-2365 -2370 0 +-2366 -2367 0 +-2366 -2368 0 +-2366 -2369 0 +-2366 -2370 0 +-2367 -2368 0 +-2367 -2369 0 +-2367 -2370 0 +-2368 -2369 0 +-2368 -2370 0 +-2369 -2370 0 +2365 2366 2367 2368 2369 2370 0 +-2371 -2372 0 +-2371 -2373 0 +-2371 -2374 0 +-2371 -2375 0 +-2371 -2376 0 +-2372 -2373 0 +-2372 -2374 0 +-2372 -2375 0 +-2372 -2376 0 +-2373 -2374 0 +-2373 -2375 0 +-2373 -2376 0 +-2374 -2375 0 +-2374 -2376 0 +-2375 -2376 0 +2371 2372 2373 2374 2375 2376 0 +-2377 -2378 0 +-2377 -2379 0 +-2377 -2380 0 +-2377 -2381 0 +-2377 -2382 0 +-2378 -2379 0 +-2378 -2380 0 +-2378 -2381 0 +-2378 -2382 0 +-2379 -2380 0 +-2379 -2381 0 +-2379 -2382 0 +-2380 -2381 0 +-2380 -2382 0 +-2381 -2382 0 +2377 2378 2379 2380 2381 2382 0 +-2383 -2384 0 +-2383 -2385 0 +-2383 -2386 0 +-2383 -2387 0 +-2383 -2388 0 +-2384 -2385 0 +-2384 -2386 0 +-2384 -2387 0 +-2384 -2388 0 +-2385 -2386 0 +-2385 -2387 0 +-2385 -2388 0 +-2386 -2387 0 +-2386 -2388 0 +-2387 -2388 0 +2383 2384 2385 2386 2387 2388 0 +-2389 -2390 0 +-2389 -2391 0 +-2389 -2392 0 +-2389 -2393 0 +-2389 -2394 0 +-2390 -2391 0 +-2390 -2392 0 +-2390 -2393 0 +-2390 -2394 0 +-2391 -2392 0 +-2391 -2393 0 +-2391 -2394 0 +-2392 -2393 0 +-2392 -2394 0 +-2393 -2394 0 +2389 2390 2391 2392 2393 2394 0 +-2395 -2396 0 +-2395 -2397 0 +-2395 -2398 0 +-2395 -2399 0 +-2395 -2400 0 +-2396 -2397 0 +-2396 -2398 0 +-2396 -2399 0 +-2396 -2400 0 +-2397 -2398 0 +-2397 -2399 0 +-2397 -2400 0 +-2398 -2399 0 +-2398 -2400 0 +-2399 -2400 0 +2395 2396 2397 2398 2399 2400 0 +-2401 -2402 0 +-2401 -2403 0 +-2401 -2404 0 +-2401 -2405 0 +-2401 -2406 0 +-2402 -2403 0 +-2402 -2404 0 +-2402 -2405 0 +-2402 -2406 0 +-2403 -2404 0 +-2403 -2405 0 +-2403 -2406 0 +-2404 -2405 0 +-2404 -2406 0 +-2405 -2406 0 +2401 2402 2403 2404 2405 2406 0 +-2407 -2408 0 +-2407 -2409 0 +-2407 -2410 0 +-2407 -2411 0 +-2407 -2412 0 +-2408 -2409 0 +-2408 -2410 0 +-2408 -2411 0 +-2408 -2412 0 +-2409 -2410 0 +-2409 -2411 0 +-2409 -2412 0 +-2410 -2411 0 +-2410 -2412 0 +-2411 -2412 0 +2407 2408 2409 2410 2411 2412 0 +-2413 -2414 0 +-2413 -2415 0 +-2413 -2416 0 +-2413 -2417 0 +-2413 -2418 0 +-2414 -2415 0 +-2414 -2416 0 +-2414 -2417 0 +-2414 -2418 0 +-2415 -2416 0 +-2415 -2417 0 +-2415 -2418 0 +-2416 -2417 0 +-2416 -2418 0 +-2417 -2418 0 +2413 2414 2415 2416 2417 2418 0 +-2419 -2420 0 +-2419 -2421 0 +-2419 -2422 0 +-2419 -2423 0 +-2419 -2424 0 +-2420 -2421 0 +-2420 -2422 0 +-2420 -2423 0 +-2420 -2424 0 +-2421 -2422 0 +-2421 -2423 0 +-2421 -2424 0 +-2422 -2423 0 +-2422 -2424 0 +-2423 -2424 0 +2419 2420 2421 2422 2423 2424 0 +-2425 -2426 0 +-2425 -2427 0 +-2425 -2428 0 +-2425 -2429 0 +-2425 -2430 0 +-2426 -2427 0 +-2426 -2428 0 +-2426 -2429 0 +-2426 -2430 0 +-2427 -2428 0 +-2427 -2429 0 +-2427 -2430 0 +-2428 -2429 0 +-2428 -2430 0 +-2429 -2430 0 +2425 2426 2427 2428 2429 2430 0 +-2431 -2432 0 +-2431 -2433 0 +-2431 -2434 0 +-2431 -2435 0 +-2431 -2436 0 +-2432 -2433 0 +-2432 -2434 0 +-2432 -2435 0 +-2432 -2436 0 +-2433 -2434 0 +-2433 -2435 0 +-2433 -2436 0 +-2434 -2435 0 +-2434 -2436 0 +-2435 -2436 0 +2431 2432 2433 2434 2435 2436 0 +-2437 -2438 0 +-2437 -2439 0 +-2437 -2440 0 +-2437 -2441 0 +-2437 -2442 0 +-2438 -2439 0 +-2438 -2440 0 +-2438 -2441 0 +-2438 -2442 0 +-2439 -2440 0 +-2439 -2441 0 +-2439 -2442 0 +-2440 -2441 0 +-2440 -2442 0 +-2441 -2442 0 +2437 2438 2439 2440 2441 2442 0 +-2443 -2444 0 +-2443 -2445 0 +-2443 -2446 0 +-2443 -2447 0 +-2443 -2448 0 +-2444 -2445 0 +-2444 -2446 0 +-2444 -2447 0 +-2444 -2448 0 +-2445 -2446 0 +-2445 -2447 0 +-2445 -2448 0 +-2446 -2447 0 +-2446 -2448 0 +-2447 -2448 0 +2443 2444 2445 2446 2447 2448 0 +-2449 -2450 0 +-2449 -2451 0 +-2449 -2452 0 +-2449 -2453 0 +-2449 -2454 0 +-2450 -2451 0 +-2450 -2452 0 +-2450 -2453 0 +-2450 -2454 0 +-2451 -2452 0 +-2451 -2453 0 +-2451 -2454 0 +-2452 -2453 0 +-2452 -2454 0 +-2453 -2454 0 +2449 2450 2451 2452 2453 2454 0 +-2455 -2456 0 +-2455 -2457 0 +-2455 -2458 0 +-2455 -2459 0 +-2455 -2460 0 +-2456 -2457 0 +-2456 -2458 0 +-2456 -2459 0 +-2456 -2460 0 +-2457 -2458 0 +-2457 -2459 0 +-2457 -2460 0 +-2458 -2459 0 +-2458 -2460 0 +-2459 -2460 0 +2455 2456 2457 2458 2459 2460 0 +-2461 -2462 0 +-2461 -2463 0 +-2461 -2464 0 +-2461 -2465 0 +-2461 -2466 0 +-2462 -2463 0 +-2462 -2464 0 +-2462 -2465 0 +-2462 -2466 0 +-2463 -2464 0 +-2463 -2465 0 +-2463 -2466 0 +-2464 -2465 0 +-2464 -2466 0 +-2465 -2466 0 +2461 2462 2463 2464 2465 2466 0 +-2467 -2468 0 +-2467 -2469 0 +-2467 -2470 0 +-2467 -2471 0 +-2467 -2472 0 +-2468 -2469 0 +-2468 -2470 0 +-2468 -2471 0 +-2468 -2472 0 +-2469 -2470 0 +-2469 -2471 0 +-2469 -2472 0 +-2470 -2471 0 +-2470 -2472 0 +-2471 -2472 0 +2467 2468 2469 2470 2471 2472 0 +-2473 -2474 0 +-2473 -2475 0 +-2473 -2476 0 +-2473 -2477 0 +-2473 -2478 0 +-2474 -2475 0 +-2474 -2476 0 +-2474 -2477 0 +-2474 -2478 0 +-2475 -2476 0 +-2475 -2477 0 +-2475 -2478 0 +-2476 -2477 0 +-2476 -2478 0 +-2477 -2478 0 +2473 2474 2475 2476 2477 2478 0 +-2479 -2480 0 +-2479 -2481 0 +-2479 -2482 0 +-2479 -2483 0 +-2479 -2484 0 +-2480 -2481 0 +-2480 -2482 0 +-2480 -2483 0 +-2480 -2484 0 +-2481 -2482 0 +-2481 -2483 0 +-2481 -2484 0 +-2482 -2483 0 +-2482 -2484 0 +-2483 -2484 0 +2479 2480 2481 2482 2483 2484 0 +-2485 -2486 0 +-2485 -2487 0 +-2485 -2488 0 +-2485 -2489 0 +-2485 -2490 0 +-2486 -2487 0 +-2486 -2488 0 +-2486 -2489 0 +-2486 -2490 0 +-2487 -2488 0 +-2487 -2489 0 +-2487 -2490 0 +-2488 -2489 0 +-2488 -2490 0 +-2489 -2490 0 +2485 2486 2487 2488 2489 2490 0 +-2491 -2492 0 +-2491 -2493 0 +-2491 -2494 0 +-2491 -2495 0 +-2491 -2496 0 +-2492 -2493 0 +-2492 -2494 0 +-2492 -2495 0 +-2492 -2496 0 +-2493 -2494 0 +-2493 -2495 0 +-2493 -2496 0 +-2494 -2495 0 +-2494 -2496 0 +-2495 -2496 0 +2491 2492 2493 2494 2495 2496 0 +-2497 -2498 0 +-2497 -2499 0 +-2497 -2500 0 +-2497 -2501 0 +-2497 -2502 0 +-2498 -2499 0 +-2498 -2500 0 +-2498 -2501 0 +-2498 -2502 0 +-2499 -2500 0 +-2499 -2501 0 +-2499 -2502 0 +-2500 -2501 0 +-2500 -2502 0 +-2501 -2502 0 +2497 2498 2499 2500 2501 2502 0 +-2503 -2504 0 +-2503 -2505 0 +-2503 -2506 0 +-2503 -2507 0 +-2503 -2508 0 +-2504 -2505 0 +-2504 -2506 0 +-2504 -2507 0 +-2504 -2508 0 +-2505 -2506 0 +-2505 -2507 0 +-2505 -2508 0 +-2506 -2507 0 +-2506 -2508 0 +-2507 -2508 0 +2503 2504 2505 2506 2507 2508 0 +-2509 -2510 0 +-2509 -2511 0 +-2509 -2512 0 +-2509 -2513 0 +-2509 -2514 0 +-2510 -2511 0 +-2510 -2512 0 +-2510 -2513 0 +-2510 -2514 0 +-2511 -2512 0 +-2511 -2513 0 +-2511 -2514 0 +-2512 -2513 0 +-2512 -2514 0 +-2513 -2514 0 +2509 2510 2511 2512 2513 2514 0 +-2515 -2516 0 +-2515 -2517 0 +-2515 -2518 0 +-2515 -2519 0 +-2515 -2520 0 +-2516 -2517 0 +-2516 -2518 0 +-2516 -2519 0 +-2516 -2520 0 +-2517 -2518 0 +-2517 -2519 0 +-2517 -2520 0 +-2518 -2519 0 +-2518 -2520 0 +-2519 -2520 0 +2515 2516 2517 2518 2519 2520 0 +-2521 -2522 0 +-2521 -2523 0 +-2521 -2524 0 +-2521 -2525 0 +-2521 -2526 0 +-2522 -2523 0 +-2522 -2524 0 +-2522 -2525 0 +-2522 -2526 0 +-2523 -2524 0 +-2523 -2525 0 +-2523 -2526 0 +-2524 -2525 0 +-2524 -2526 0 +-2525 -2526 0 +2521 2522 2523 2524 2525 2526 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-973 -1003 0 +-974 -1004 0 +-975 -1005 0 +-976 -1006 0 +-977 -1007 0 +-978 -1008 0 +-1039 -1051 0 +-1040 -1052 0 +-1041 -1053 0 +-1042 -1054 0 +-1043 -1055 0 +-1044 -1056 0 +-1051 -1057 0 +-1052 -1058 0 +-1053 -1059 0 +-1054 -1060 0 +-1055 -1061 0 +-1056 -1062 0 +-1075 -1087 0 +-1076 -1088 0 +-1077 -1089 0 +-1078 -1090 0 +-1079 -1091 0 +-1080 -1092 0 +-1135 -1153 0 +-1136 -1154 0 +-1137 -1155 0 +-1138 -1156 0 +-1139 -1157 0 +-1140 -1158 0 +-1249 -1279 0 +-1250 -1280 0 +-1251 -1281 0 +-1252 -1282 0 +-1253 -1283 0 +-1254 -1284 0 +-1285 -1315 0 +-1286 -1316 0 +-1287 -1317 0 +-1288 -1318 0 +-1289 -1319 0 +-1290 -1320 0 +-1327 -1357 0 +-1328 -1358 0 +-1329 -1359 0 +-1330 -1360 0 +-1331 -1361 0 +-1332 -1362 0 +-1333 -1363 0 +-1334 -1364 0 +-1335 -1365 0 +-1336 -1366 0 +-1337 -1367 0 +-1338 -1368 0 +-1381 -1411 0 +-1382 -1412 0 +-1383 -1413 0 +-1384 -1414 0 +-1385 -1415 0 +-1386 -1416 0 +-1507 -1537 0 +-1508 -1538 0 +-1509 -1539 0 +-1510 -1540 0 +-1511 -1541 0 +-1512 -1542 0 +-1525 -1555 0 +-1526 -1556 0 +-1527 -1557 0 +-1528 -1558 0 +-1529 -1559 0 +-1530 -1560 0 +-1549 -1567 0 +-1550 -1568 0 +-1551 -1569 0 +-1552 -1570 0 +-1553 -1571 0 +-1554 -1572 0 +-1609 -1615 0 +-1610 -1616 0 +-1611 -1617 0 +-1612 -1618 0 +-1613 -1619 0 +-1614 -1620 0 +-1621 -1651 0 +-1622 -1652 0 +-1623 -1653 0 +-1624 -1654 0 +-1625 -1655 0 +-1626 -1656 0 +-1627 -1639 0 +-1628 -1640 0 +-1629 -1641 0 +-1630 -1642 0 +-1631 -1643 0 +-1632 -1644 0 +-1639 -1657 0 +-1640 -1658 0 +-1641 -1659 0 +-1642 -1660 0 +-1643 -1661 0 +-1644 -1662 0 +-1645 -1651 0 +-1646 -1652 0 +-1647 -1653 0 +-1648 -1654 0 +-1649 -1655 0 +-1650 -1656 0 +-1651 -1675 0 +-1652 -1676 0 +-1653 -1677 0 +-1654 -1678 0 +-1655 -1679 0 +-1656 -1680 0 +-1669 -1687 0 +-1670 -1688 0 +-1671 -1689 0 +-1672 -1690 0 +-1673 -1691 0 +-1674 -1692 0 +-1693 -1699 0 +-1694 -1700 0 +-1695 -1701 0 +-1696 -1702 0 +-1697 -1703 0 +-1698 -1704 0 +-1759 -1783 0 +-1760 -1784 0 +-1761 -1785 0 +-1762 -1786 0 +-1763 -1787 0 +-1764 -1788 0 +-1879 -1885 0 +-1880 -1886 0 +-1881 -1887 0 +-1882 -1888 0 +-1883 -1889 0 +-1884 -1890 0 +-1891 -1909 0 +-1892 -1910 0 +-1893 -1911 0 +-1894 -1912 0 +-1895 -1913 0 +-1896 -1914 0 +-1945 -1951 0 +-1946 -1952 0 +-1947 -1953 0 +-1948 -1954 0 +-1949 -1955 0 +-1950 -1956 0 +-2053 -2059 0 +-2054 -2060 0 +-2055 -2061 0 +-2056 -2062 0 +-2057 -2063 0 +-2058 -2064 0 +-2143 -2149 0 +-2144 -2150 0 +-2145 -2151 0 +-2146 -2152 0 +-2147 -2153 0 +-2148 -2154 0 +-2215 -2227 0 +-2216 -2228 0 +-2217 -2229 0 +-2218 -2230 0 +-2219 -2231 0 +-2220 -2232 0 +-2221 -2245 0 +-2222 -2246 0 +-2223 -2247 0 +-2224 -2248 0 +-2225 -2249 0 +-2226 -2250 0 +-2233 -2251 0 +-2234 -2252 0 +-2235 -2253 0 +-2236 -2254 0 +-2237 -2255 0 +-2238 -2256 0 +-2269 -2299 0 +-2270 -2300 0 +-2271 -2301 0 +-2272 -2302 0 +-2273 -2303 0 +-2274 -2304 0 +-2293 -2305 0 +-2294 -2306 0 +-2295 -2307 0 +-2296 -2308 0 +-2297 -2309 0 +-2298 -2310 0 +-2305 -2329 0 +-2306 -2330 0 +-2307 -2331 0 +-2308 -2332 0 +-2309 -2333 0 +-2310 -2334 0 +-2341 -2359 0 +-2342 -2360 0 +-2343 -2361 0 +-2344 -2362 0 +-2345 -2363 0 +-2346 -2364 0 +-2473 -2479 0 +-2474 -2480 0 +-2475 -2481 0 +-2476 -2482 0 +-2477 -2483 0 +-2478 -2484 0 +-2485 -2497 0 +-2486 -2498 0 +-2487 -2499 0 +-2488 -2500 0 +-2489 -2501 0 +-2490 -2502 0 +-25 -2521 0 +-26 -2522 0 +-27 -2523 0 +-28 -2524 0 +-29 -2525 0 +-30 -2526 0 +-19 -2521 0 +-20 -2522 0 +-21 -2523 0 +-22 -2524 0 +-23 -2525 0 +-24 -2526 0 +-13 -2521 0 +-14 -2522 0 +-15 -2523 0 +-16 -2524 0 +-17 -2525 0 +-18 -2526 0 +-7 -2521 0 +-8 -2522 0 +-9 -2523 0 +-10 -2524 0 +-11 -2525 0 +-12 -2526 0 +-1 -2521 0 +-2 -2522 0 +-3 -2523 0 +-4 -2524 0 +-5 -2525 0 +-6 -2526 0 +-19 -2515 0 +-20 -2516 0 +-21 -2517 0 +-22 -2518 0 +-23 -2519 0 +-24 -2520 0 +-13 -2515 0 +-14 -2516 0 +-15 -2517 0 +-16 -2518 0 +-17 -2519 0 +-18 -2520 0 +-7 -2515 0 +-8 -2516 0 +-9 -2517 0 +-10 -2518 0 +-11 -2519 0 +-12 -2520 0 +-1 -2515 0 +-2 -2516 0 +-3 -2517 0 +-4 -2518 0 +-5 -2519 0 +-6 -2520 0 +-2515 -2521 0 +-2516 -2522 0 +-2517 -2523 0 +-2518 -2524 0 +-2519 -2525 0 +-2520 -2526 0 +-13 -2509 0 +-14 -2510 0 +-15 -2511 0 +-16 -2512 0 +-17 -2513 0 +-18 -2514 0 +-7 -2509 0 +-8 -2510 0 +-9 -2511 0 +-10 -2512 0 +-11 -2513 0 +-12 -2514 0 +-1 -2509 0 +-2 -2510 0 +-3 -2511 0 +-4 -2512 0 +-5 -2513 0 +-6 -2514 0 +-2509 -2521 0 +-2510 -2522 0 +-2511 -2523 0 +-2512 -2524 0 +-2513 -2525 0 +-2514 -2526 0 +-2509 -2515 0 +-2510 -2516 0 +-2511 -2517 0 +-2512 -2518 0 +-2513 -2519 0 +-2514 -2520 0 +-7 -2503 0 +-8 -2504 0 +-9 -2505 0 +-10 -2506 0 +-11 -2507 0 +-12 -2508 0 +-1 -2503 0 +-2 -2504 0 +-3 -2505 0 +-4 -2506 0 +-5 -2507 0 +-6 -2508 0 +-2503 -2521 0 +-2504 -2522 0 +-2505 -2523 0 +-2506 -2524 0 +-2507 -2525 0 +-2508 -2526 0 +-2503 -2515 0 +-2504 -2516 0 +-2505 -2517 0 +-2506 -2518 0 +-2507 -2519 0 +-2508 -2520 0 +-2503 -2509 0 +-2504 -2510 0 +-2505 -2511 0 +-2506 -2512 0 +-2507 -2513 0 +-2508 -2514 0 +-1 -2497 0 +-2 -2498 0 +-3 -2499 0 +-4 -2500 0 +-5 -2501 0 +-6 -2502 0 +-2497 -2521 0 +-2498 -2522 0 +-2499 -2523 0 +-2500 -2524 0 +-2501 -2525 0 +-2502 -2526 0 +-2497 -2515 0 +-2498 -2516 0 +-2499 -2517 0 +-2500 -2518 0 +-2501 -2519 0 +-2502 -2520 0 +-2497 -2509 0 +-2498 -2510 0 +-2499 -2511 0 +-2500 -2512 0 +-2501 -2513 0 +-2502 -2514 0 +-2497 -2503 0 +-2498 -2504 0 +-2499 -2505 0 +-2500 -2506 0 +-2501 -2507 0 +-2502 -2508 0 +-2491 -2521 0 +-2492 -2522 0 +-2493 -2523 0 +-2494 -2524 0 +-2495 -2525 0 +-2496 -2526 0 +-2491 -2515 0 +-2492 -2516 0 +-2493 -2517 0 +-2494 -2518 0 +-2495 -2519 0 +-2496 -2520 0 +-2491 -2509 0 +-2492 -2510 0 +-2493 -2511 0 +-2494 -2512 0 +-2495 -2513 0 +-2496 -2514 0 +-2491 -2503 0 +-2492 -2504 0 +-2493 -2505 0 +-2494 -2506 0 +-2495 -2507 0 +-2496 -2508 0 +-2491 -2497 0 +-2492 -2498 0 +-2493 -2499 0 +-2494 -2500 0 +-2495 -2501 0 +-2496 -2502 0 +-2485 -2515 0 +-2486 -2516 0 +-2487 -2517 0 +-2488 -2518 0 +-2489 -2519 0 +-2490 -2520 0 +-2485 -2509 0 +-2486 -2510 0 +-2487 -2511 0 +-2488 -2512 0 +-2489 -2513 0 +-2490 -2514 0 +-2485 -2503 0 +-2486 -2504 0 +-2487 -2505 0 +-2488 -2506 0 +-2489 -2507 0 +-2490 -2508 0 +-2485 -2491 0 +-2486 -2492 0 +-2487 -2493 0 +-2488 -2494 0 +-2489 -2495 0 +-2490 -2496 0 +-2479 -2509 0 +-2480 -2510 0 +-2481 -2511 0 +-2482 -2512 0 +-2483 -2513 0 +-2484 -2514 0 +-2479 -2503 0 +-2480 -2504 0 +-2481 -2505 0 +-2482 -2506 0 +-2483 -2507 0 +-2484 -2508 0 +-2479 -2497 0 +-2480 -2498 0 +-2481 -2499 0 +-2482 -2500 0 +-2483 -2501 0 +-2484 -2502 0 +-2479 -2491 0 +-2480 -2492 0 +-2481 -2493 0 +-2482 -2494 0 +-2483 -2495 0 +-2484 -2496 0 +-2479 -2485 0 +-2480 -2486 0 +-2481 -2487 0 +-2482 -2488 0 +-2483 -2489 0 +-2484 -2490 0 +-2473 -2503 0 +-2474 -2504 0 +-2475 -2505 0 +-2476 -2506 0 +-2477 -2507 0 +-2478 -2508 0 +-2473 -2497 0 +-2474 -2498 0 +-2475 -2499 0 +-2476 -2500 0 +-2477 -2501 0 +-2478 -2502 0 +-2473 -2491 0 +-2474 -2492 0 +-2475 -2493 0 +-2476 -2494 0 +-2477 -2495 0 +-2478 -2496 0 +-2473 -2485 0 +-2474 -2486 0 +-2475 -2487 0 +-2476 -2488 0 +-2477 -2489 0 +-2478 -2490 0 +-2467 -2497 0 +-2468 -2498 0 +-2469 -2499 0 +-2470 -2500 0 +-2471 -2501 0 +-2472 -2502 0 +-2467 -2491 0 +-2468 -2492 0 +-2469 -2493 0 +-2470 -2494 0 +-2471 -2495 0 +-2472 -2496 0 +-2467 -2485 0 +-2468 -2486 0 +-2469 -2487 0 +-2470 -2488 0 +-2471 -2489 0 +-2472 -2490 0 +-2467 -2479 0 +-2468 -2480 0 +-2469 -2481 0 +-2470 -2482 0 +-2471 -2483 0 +-2472 -2484 0 +-2467 -2473 0 +-2468 -2474 0 +-2469 -2475 0 +-2470 -2476 0 +-2471 -2477 0 +-2472 -2478 0 +-2461 -2491 0 +-2462 -2492 0 +-2463 -2493 0 +-2464 -2494 0 +-2465 -2495 0 +-2466 -2496 0 +-2461 -2485 0 +-2462 -2486 0 +-2463 -2487 0 +-2464 -2488 0 +-2465 -2489 0 +-2466 -2490 0 +-2461 -2479 0 +-2462 -2480 0 +-2463 -2481 0 +-2464 -2482 0 +-2465 -2483 0 +-2466 -2484 0 +-2461 -2473 0 +-2462 -2474 0 +-2463 -2475 0 +-2464 -2476 0 +-2465 -2477 0 +-2466 -2478 0 +-2461 -2467 0 +-2462 -2468 0 +-2463 -2469 0 +-2464 -2470 0 +-2465 -2471 0 +-2466 -2472 0 +-2455 -2485 0 +-2456 -2486 0 +-2457 -2487 0 +-2458 -2488 0 +-2459 -2489 0 +-2460 -2490 0 +-2455 -2479 0 +-2456 -2480 0 +-2457 -2481 0 +-2458 -2482 0 +-2459 -2483 0 +-2460 -2484 0 +-2455 -2473 0 +-2456 -2474 0 +-2457 -2475 0 +-2458 -2476 0 +-2459 -2477 0 +-2460 -2478 0 +-2455 -2467 0 +-2456 -2468 0 +-2457 -2469 0 +-2458 -2470 0 +-2459 -2471 0 +-2460 -2472 0 +-2455 -2461 0 +-2456 -2462 0 +-2457 -2463 0 +-2458 -2464 0 +-2459 -2465 0 +-2460 -2466 0 +-2449 -2479 0 +-2450 -2480 0 +-2451 -2481 0 +-2452 -2482 0 +-2453 -2483 0 +-2454 -2484 0 +-2449 -2473 0 +-2450 -2474 0 +-2451 -2475 0 +-2452 -2476 0 +-2453 -2477 0 +-2454 -2478 0 +-2449 -2467 0 +-2450 -2468 0 +-2451 -2469 0 +-2452 -2470 0 +-2453 -2471 0 +-2454 -2472 0 +-2449 -2461 0 +-2450 -2462 0 +-2451 -2463 0 +-2452 -2464 0 +-2453 -2465 0 +-2454 -2466 0 +-2449 -2455 0 +-2450 -2456 0 +-2451 -2457 0 +-2452 -2458 0 +-2453 -2459 0 +-2454 -2460 0 +-2443 -2473 0 +-2444 -2474 0 +-2445 -2475 0 +-2446 -2476 0 +-2447 -2477 0 +-2448 -2478 0 +-2443 -2467 0 +-2444 -2468 0 +-2445 -2469 0 +-2446 -2470 0 +-2447 -2471 0 +-2448 -2472 0 +-2443 -2461 0 +-2444 -2462 0 +-2445 -2463 0 +-2446 -2464 0 +-2447 -2465 0 +-2448 -2466 0 +-2443 -2455 0 +-2444 -2456 0 +-2445 -2457 0 +-2446 -2458 0 +-2447 -2459 0 +-2448 -2460 0 +-2443 -2449 0 +-2444 -2450 0 +-2445 -2451 0 +-2446 -2452 0 +-2447 -2453 0 +-2448 -2454 0 +-2437 -2467 0 +-2438 -2468 0 +-2439 -2469 0 +-2440 -2470 0 +-2441 -2471 0 +-2442 -2472 0 +-2437 -2461 0 +-2438 -2462 0 +-2439 -2463 0 +-2440 -2464 0 +-2441 -2465 0 +-2442 -2466 0 +-2437 -2455 0 +-2438 -2456 0 +-2439 -2457 0 +-2440 -2458 0 +-2441 -2459 0 +-2442 -2460 0 +-2437 -2449 0 +-2438 -2450 0 +-2439 -2451 0 +-2440 -2452 0 +-2441 -2453 0 +-2442 -2454 0 +-2437 -2443 0 +-2438 -2444 0 +-2439 -2445 0 +-2440 -2446 0 +-2441 -2447 0 +-2442 -2448 0 +-2431 -2461 0 +-2432 -2462 0 +-2433 -2463 0 +-2434 -2464 0 +-2435 -2465 0 +-2436 -2466 0 +-2431 -2455 0 +-2432 -2456 0 +-2433 -2457 0 +-2434 -2458 0 +-2435 -2459 0 +-2436 -2460 0 +-2431 -2449 0 +-2432 -2450 0 +-2433 -2451 0 +-2434 -2452 0 +-2435 -2453 0 +-2436 -2454 0 +-2431 -2443 0 +-2432 -2444 0 +-2433 -2445 0 +-2434 -2446 0 +-2435 -2447 0 +-2436 -2448 0 +-2431 -2437 0 +-2432 -2438 0 +-2433 -2439 0 +-2434 -2440 0 +-2435 -2441 0 +-2436 -2442 0 +-2425 -2455 0 +-2426 -2456 0 +-2427 -2457 0 +-2428 -2458 0 +-2429 -2459 0 +-2430 -2460 0 +-2425 -2449 0 +-2426 -2450 0 +-2427 -2451 0 +-2428 -2452 0 +-2429 -2453 0 +-2430 -2454 0 +-2425 -2443 0 +-2426 -2444 0 +-2427 -2445 0 +-2428 -2446 0 +-2429 -2447 0 +-2430 -2448 0 +-2425 -2437 0 +-2426 -2438 0 +-2427 -2439 0 +-2428 -2440 0 +-2429 -2441 0 +-2430 -2442 0 +-2425 -2431 0 +-2426 -2432 0 +-2427 -2433 0 +-2428 -2434 0 +-2429 -2435 0 +-2430 -2436 0 +-2419 -2449 0 +-2420 -2450 0 +-2421 -2451 0 +-2422 -2452 0 +-2423 -2453 0 +-2424 -2454 0 +-2419 -2443 0 +-2420 -2444 0 +-2421 -2445 0 +-2422 -2446 0 +-2423 -2447 0 +-2424 -2448 0 +-2419 -2437 0 +-2420 -2438 0 +-2421 -2439 0 +-2422 -2440 0 +-2423 -2441 0 +-2424 -2442 0 +-2419 -2431 0 +-2420 -2432 0 +-2421 -2433 0 +-2422 -2434 0 +-2423 -2435 0 +-2424 -2436 0 +-2419 -2425 0 +-2420 -2426 0 +-2421 -2427 0 +-2422 -2428 0 +-2423 -2429 0 +-2424 -2430 0 +-2413 -2443 0 +-2414 -2444 0 +-2415 -2445 0 +-2416 -2446 0 +-2417 -2447 0 +-2418 -2448 0 +-2413 -2437 0 +-2414 -2438 0 +-2415 -2439 0 +-2416 -2440 0 +-2417 -2441 0 +-2418 -2442 0 +-2413 -2431 0 +-2414 -2432 0 +-2415 -2433 0 +-2416 -2434 0 +-2417 -2435 0 +-2418 -2436 0 +-2413 -2425 0 +-2414 -2426 0 +-2415 -2427 0 +-2416 -2428 0 +-2417 -2429 0 +-2418 -2430 0 +-2413 -2419 0 +-2414 -2420 0 +-2415 -2421 0 +-2416 -2422 0 +-2417 -2423 0 +-2418 -2424 0 +-2407 -2437 0 +-2408 -2438 0 +-2409 -2439 0 +-2410 -2440 0 +-2411 -2441 0 +-2412 -2442 0 +-2407 -2431 0 +-2408 -2432 0 +-2409 -2433 0 +-2410 -2434 0 +-2411 -2435 0 +-2412 -2436 0 +-2407 -2425 0 +-2408 -2426 0 +-2409 -2427 0 +-2410 -2428 0 +-2411 -2429 0 +-2412 -2430 0 +-2407 -2419 0 +-2408 -2420 0 +-2409 -2421 0 +-2410 -2422 0 +-2411 -2423 0 +-2412 -2424 0 +-2407 -2413 0 +-2408 -2414 0 +-2409 -2415 0 +-2410 -2416 0 +-2411 -2417 0 +-2412 -2418 0 +-2401 -2431 0 +-2402 -2432 0 +-2403 -2433 0 +-2404 -2434 0 +-2405 -2435 0 +-2406 -2436 0 +-2401 -2425 0 +-2402 -2426 0 +-2403 -2427 0 +-2404 -2428 0 +-2405 -2429 0 +-2406 -2430 0 +-2401 -2419 0 +-2402 -2420 0 +-2403 -2421 0 +-2404 -2422 0 +-2405 -2423 0 +-2406 -2424 0 +-2401 -2413 0 +-2402 -2414 0 +-2403 -2415 0 +-2404 -2416 0 +-2405 -2417 0 +-2406 -2418 0 +-2401 -2407 0 +-2402 -2408 0 +-2403 -2409 0 +-2404 -2410 0 +-2405 -2411 0 +-2406 -2412 0 +-2395 -2425 0 +-2396 -2426 0 +-2397 -2427 0 +-2398 -2428 0 +-2399 -2429 0 +-2400 -2430 0 +-2395 -2419 0 +-2396 -2420 0 +-2397 -2421 0 +-2398 -2422 0 +-2399 -2423 0 +-2400 -2424 0 +-2395 -2413 0 +-2396 -2414 0 +-2397 -2415 0 +-2398 -2416 0 +-2399 -2417 0 +-2400 -2418 0 +-2395 -2407 0 +-2396 -2408 0 +-2397 -2409 0 +-2398 -2410 0 +-2399 -2411 0 +-2400 -2412 0 +-2395 -2401 0 +-2396 -2402 0 +-2397 -2403 0 +-2398 -2404 0 +-2399 -2405 0 +-2400 -2406 0 +-2389 -2419 0 +-2390 -2420 0 +-2391 -2421 0 +-2392 -2422 0 +-2393 -2423 0 +-2394 -2424 0 +-2389 -2413 0 +-2390 -2414 0 +-2391 -2415 0 +-2392 -2416 0 +-2393 -2417 0 +-2394 -2418 0 +-2389 -2407 0 +-2390 -2408 0 +-2391 -2409 0 +-2392 -2410 0 +-2393 -2411 0 +-2394 -2412 0 +-2389 -2401 0 +-2390 -2402 0 +-2391 -2403 0 +-2392 -2404 0 +-2393 -2405 0 +-2394 -2406 0 +-2389 -2395 0 +-2390 -2396 0 +-2391 -2397 0 +-2392 -2398 0 +-2393 -2399 0 +-2394 -2400 0 +-2383 -2413 0 +-2384 -2414 0 +-2385 -2415 0 +-2386 -2416 0 +-2387 -2417 0 +-2388 -2418 0 +-2383 -2407 0 +-2384 -2408 0 +-2385 -2409 0 +-2386 -2410 0 +-2387 -2411 0 +-2388 -2412 0 +-2383 -2401 0 +-2384 -2402 0 +-2385 -2403 0 +-2386 -2404 0 +-2387 -2405 0 +-2388 -2406 0 +-2383 -2395 0 +-2384 -2396 0 +-2385 -2397 0 +-2386 -2398 0 +-2387 -2399 0 +-2388 -2400 0 +-2383 -2389 0 +-2384 -2390 0 +-2385 -2391 0 +-2386 -2392 0 +-2387 -2393 0 +-2388 -2394 0 +-2377 -2407 0 +-2378 -2408 0 +-2379 -2409 0 +-2380 -2410 0 +-2381 -2411 0 +-2382 -2412 0 +-2377 -2395 0 +-2378 -2396 0 +-2379 -2397 0 +-2380 -2398 0 +-2381 -2399 0 +-2382 -2400 0 +-2377 -2389 0 +-2378 -2390 0 +-2379 -2391 0 +-2380 -2392 0 +-2381 -2393 0 +-2382 -2394 0 +-2377 -2383 0 +-2378 -2384 0 +-2379 -2385 0 +-2380 -2386 0 +-2381 -2387 0 +-2382 -2388 0 +-2371 -2401 0 +-2372 -2402 0 +-2373 -2403 0 +-2374 -2404 0 +-2375 -2405 0 +-2376 -2406 0 +-2371 -2395 0 +-2372 -2396 0 +-2373 -2397 0 +-2374 -2398 0 +-2375 -2399 0 +-2376 -2400 0 +-2371 -2389 0 +-2372 -2390 0 +-2373 -2391 0 +-2374 -2392 0 +-2375 -2393 0 +-2376 -2394 0 +-2371 -2383 0 +-2372 -2384 0 +-2373 -2385 0 +-2374 -2386 0 +-2375 -2387 0 +-2376 -2388 0 +-2371 -2377 0 +-2372 -2378 0 +-2373 -2379 0 +-2374 -2380 0 +-2375 -2381 0 +-2376 -2382 0 +-2365 -2395 0 +-2366 -2396 0 +-2367 -2397 0 +-2368 -2398 0 +-2369 -2399 0 +-2370 -2400 0 +-2365 -2389 0 +-2366 -2390 0 +-2367 -2391 0 +-2368 -2392 0 +-2369 -2393 0 +-2370 -2394 0 +-2365 -2383 0 +-2366 -2384 0 +-2367 -2385 0 +-2368 -2386 0 +-2369 -2387 0 +-2370 -2388 0 +-2365 -2377 0 +-2366 -2378 0 +-2367 -2379 0 +-2368 -2380 0 +-2369 -2381 0 +-2370 -2382 0 +-2365 -2371 0 +-2366 -2372 0 +-2367 -2373 0 +-2368 -2374 0 +-2369 -2375 0 +-2370 -2376 0 +-2359 -2389 0 +-2360 -2390 0 +-2361 -2391 0 +-2362 -2392 0 +-2363 -2393 0 +-2364 -2394 0 +-2359 -2383 0 +-2360 -2384 0 +-2361 -2385 0 +-2362 -2386 0 +-2363 -2387 0 +-2364 -2388 0 +-2359 -2377 0 +-2360 -2378 0 +-2361 -2379 0 +-2362 -2380 0 +-2363 -2381 0 +-2364 -2382 0 +-2359 -2371 0 +-2360 -2372 0 +-2361 -2373 0 +-2362 -2374 0 +-2363 -2375 0 +-2364 -2376 0 +-2359 -2365 0 +-2360 -2366 0 +-2361 -2367 0 +-2362 -2368 0 +-2363 -2369 0 +-2364 -2370 0 +-2353 -2383 0 +-2354 -2384 0 +-2355 -2385 0 +-2356 -2386 0 +-2357 -2387 0 +-2358 -2388 0 +-2353 -2377 0 +-2354 -2378 0 +-2355 -2379 0 +-2356 -2380 0 +-2357 -2381 0 +-2358 -2382 0 +-2353 -2371 0 +-2354 -2372 0 +-2355 -2373 0 +-2356 -2374 0 +-2357 -2375 0 +-2358 -2376 0 +-2353 -2365 0 +-2354 -2366 0 +-2355 -2367 0 +-2356 -2368 0 +-2357 -2369 0 +-2358 -2370 0 +-2353 -2359 0 +-2354 -2360 0 +-2355 -2361 0 +-2356 -2362 0 +-2357 -2363 0 +-2358 -2364 0 +-2347 -2377 0 +-2348 -2378 0 +-2349 -2379 0 +-2350 -2380 0 +-2351 -2381 0 +-2352 -2382 0 +-2347 -2371 0 +-2348 -2372 0 +-2349 -2373 0 +-2350 -2374 0 +-2351 -2375 0 +-2352 -2376 0 +-2347 -2365 0 +-2348 -2366 0 +-2349 -2367 0 +-2350 -2368 0 +-2351 -2369 0 +-2352 -2370 0 +-2347 -2359 0 +-2348 -2360 0 +-2349 -2361 0 +-2350 -2362 0 +-2351 -2363 0 +-2352 -2364 0 +-2347 -2353 0 +-2348 -2354 0 +-2349 -2355 0 +-2350 -2356 0 +-2351 -2357 0 +-2352 -2358 0 +-2341 -2371 0 +-2342 -2372 0 +-2343 -2373 0 +-2344 -2374 0 +-2345 -2375 0 +-2346 -2376 0 +-2341 -2365 0 +-2342 -2366 0 +-2343 -2367 0 +-2344 -2368 0 +-2345 -2369 0 +-2346 -2370 0 +-2341 -2353 0 +-2342 -2354 0 +-2343 -2355 0 +-2344 -2356 0 +-2345 -2357 0 +-2346 -2358 0 +-2341 -2347 0 +-2342 -2348 0 +-2343 -2349 0 +-2344 -2350 0 +-2345 -2351 0 +-2346 -2352 0 +-2335 -2365 0 +-2336 -2366 0 +-2337 -2367 0 +-2338 -2368 0 +-2339 -2369 0 +-2340 -2370 0 +-2335 -2359 0 +-2336 -2360 0 +-2337 -2361 0 +-2338 -2362 0 +-2339 -2363 0 +-2340 -2364 0 +-2335 -2353 0 +-2336 -2354 0 +-2337 -2355 0 +-2338 -2356 0 +-2339 -2357 0 +-2340 -2358 0 +-2335 -2347 0 +-2336 -2348 0 +-2337 -2349 0 +-2338 -2350 0 +-2339 -2351 0 +-2340 -2352 0 +-2335 -2341 0 +-2336 -2342 0 +-2337 -2343 0 +-2338 -2344 0 +-2339 -2345 0 +-2340 -2346 0 +-2329 -2359 0 +-2330 -2360 0 +-2331 -2361 0 +-2332 -2362 0 +-2333 -2363 0 +-2334 -2364 0 +-2329 -2353 0 +-2330 -2354 0 +-2331 -2355 0 +-2332 -2356 0 +-2333 -2357 0 +-2334 -2358 0 +-2329 -2347 0 +-2330 -2348 0 +-2331 -2349 0 +-2332 -2350 0 +-2333 -2351 0 +-2334 -2352 0 +-2329 -2341 0 +-2330 -2342 0 +-2331 -2343 0 +-2332 -2344 0 +-2333 -2345 0 +-2334 -2346 0 +-2329 -2335 0 +-2330 -2336 0 +-2331 -2337 0 +-2332 -2338 0 +-2333 -2339 0 +-2334 -2340 0 +-2323 -2353 0 +-2324 -2354 0 +-2325 -2355 0 +-2326 -2356 0 +-2327 -2357 0 +-2328 -2358 0 +-2323 -2347 0 +-2324 -2348 0 +-2325 -2349 0 +-2326 -2350 0 +-2327 -2351 0 +-2328 -2352 0 +-2323 -2341 0 +-2324 -2342 0 +-2325 -2343 0 +-2326 -2344 0 +-2327 -2345 0 +-2328 -2346 0 +-2323 -2335 0 +-2324 -2336 0 +-2325 -2337 0 +-2326 -2338 0 +-2327 -2339 0 +-2328 -2340 0 +-2323 -2329 0 +-2324 -2330 0 +-2325 -2331 0 +-2326 -2332 0 +-2327 -2333 0 +-2328 -2334 0 +-2317 -2347 0 +-2318 -2348 0 +-2319 -2349 0 +-2320 -2350 0 +-2321 -2351 0 +-2322 -2352 0 +-2317 -2341 0 +-2318 -2342 0 +-2319 -2343 0 +-2320 -2344 0 +-2321 -2345 0 +-2322 -2346 0 +-2317 -2335 0 +-2318 -2336 0 +-2319 -2337 0 +-2320 -2338 0 +-2321 -2339 0 +-2322 -2340 0 +-2317 -2329 0 +-2318 -2330 0 +-2319 -2331 0 +-2320 -2332 0 +-2321 -2333 0 +-2322 -2334 0 +-2317 -2323 0 +-2318 -2324 0 +-2319 -2325 0 +-2320 -2326 0 +-2321 -2327 0 +-2322 -2328 0 +-2311 -2341 0 +-2312 -2342 0 +-2313 -2343 0 +-2314 -2344 0 +-2315 -2345 0 +-2316 -2346 0 +-2311 -2335 0 +-2312 -2336 0 +-2313 -2337 0 +-2314 -2338 0 +-2315 -2339 0 +-2316 -2340 0 +-2311 -2329 0 +-2312 -2330 0 +-2313 -2331 0 +-2314 -2332 0 +-2315 -2333 0 +-2316 -2334 0 +-2311 -2323 0 +-2312 -2324 0 +-2313 -2325 0 +-2314 -2326 0 +-2315 -2327 0 +-2316 -2328 0 +-2311 -2317 0 +-2312 -2318 0 +-2313 -2319 0 +-2314 -2320 0 +-2315 -2321 0 +-2316 -2322 0 +-2305 -2335 0 +-2306 -2336 0 +-2307 -2337 0 +-2308 -2338 0 +-2309 -2339 0 +-2310 -2340 0 +-2305 -2323 0 +-2306 -2324 0 +-2307 -2325 0 +-2308 -2326 0 +-2309 -2327 0 +-2310 -2328 0 +-2305 -2317 0 +-2306 -2318 0 +-2307 -2319 0 +-2308 -2320 0 +-2309 -2321 0 +-2310 -2322 0 +-2305 -2311 0 +-2306 -2312 0 +-2307 -2313 0 +-2308 -2314 0 +-2309 -2315 0 +-2310 -2316 0 +-2299 -2329 0 +-2300 -2330 0 +-2301 -2331 0 +-2302 -2332 0 +-2303 -2333 0 +-2304 -2334 0 +-2299 -2323 0 +-2300 -2324 0 +-2301 -2325 0 +-2302 -2326 0 +-2303 -2327 0 +-2304 -2328 0 +-2299 -2317 0 +-2300 -2318 0 +-2301 -2319 0 +-2302 -2320 0 +-2303 -2321 0 +-2304 -2322 0 +-2299 -2311 0 +-2300 -2312 0 +-2301 -2313 0 +-2302 -2314 0 +-2303 -2315 0 +-2304 -2316 0 +-2299 -2305 0 +-2300 -2306 0 +-2301 -2307 0 +-2302 -2308 0 +-2303 -2309 0 +-2304 -2310 0 +-2293 -2323 0 +-2294 -2324 0 +-2295 -2325 0 +-2296 -2326 0 +-2297 -2327 0 +-2298 -2328 0 +-2293 -2317 0 +-2294 -2318 0 +-2295 -2319 0 +-2296 -2320 0 +-2297 -2321 0 +-2298 -2322 0 +-2293 -2311 0 +-2294 -2312 0 +-2295 -2313 0 +-2296 -2314 0 +-2297 -2315 0 +-2298 -2316 0 +-2293 -2299 0 +-2294 -2300 0 +-2295 -2301 0 +-2296 -2302 0 +-2297 -2303 0 +-2298 -2304 0 +-2287 -2317 0 +-2288 -2318 0 +-2289 -2319 0 +-2290 -2320 0 +-2291 -2321 0 +-2292 -2322 0 +-2287 -2311 0 +-2288 -2312 0 +-2289 -2313 0 +-2290 -2314 0 +-2291 -2315 0 +-2292 -2316 0 +-2287 -2305 0 +-2288 -2306 0 +-2289 -2307 0 +-2290 -2308 0 +-2291 -2309 0 +-2292 -2310 0 +-2287 -2299 0 +-2288 -2300 0 +-2289 -2301 0 +-2290 -2302 0 +-2291 -2303 0 +-2292 -2304 0 +-2287 -2293 0 +-2288 -2294 0 +-2289 -2295 0 +-2290 -2296 0 +-2291 -2297 0 +-2292 -2298 0 +-2281 -2311 0 +-2282 -2312 0 +-2283 -2313 0 +-2284 -2314 0 +-2285 -2315 0 +-2286 -2316 0 +-2281 -2305 0 +-2282 -2306 0 +-2283 -2307 0 +-2284 -2308 0 +-2285 -2309 0 +-2286 -2310 0 +-2281 -2299 0 +-2282 -2300 0 +-2283 -2301 0 +-2284 -2302 0 +-2285 -2303 0 +-2286 -2304 0 +-2281 -2293 0 +-2282 -2294 0 +-2283 -2295 0 +-2284 -2296 0 +-2285 -2297 0 +-2286 -2298 0 +-2281 -2287 0 +-2282 -2288 0 +-2283 -2289 0 +-2284 -2290 0 +-2285 -2291 0 +-2286 -2292 0 +-2275 -2305 0 +-2276 -2306 0 +-2277 -2307 0 +-2278 -2308 0 +-2279 -2309 0 +-2280 -2310 0 +-2275 -2299 0 +-2276 -2300 0 +-2277 -2301 0 +-2278 -2302 0 +-2279 -2303 0 +-2280 -2304 0 +-2275 -2293 0 +-2276 -2294 0 +-2277 -2295 0 +-2278 -2296 0 +-2279 -2297 0 +-2280 -2298 0 +-2275 -2287 0 +-2276 -2288 0 +-2277 -2289 0 +-2278 -2290 0 +-2279 -2291 0 +-2280 -2292 0 +-2275 -2281 0 +-2276 -2282 0 +-2277 -2283 0 +-2278 -2284 0 +-2279 -2285 0 +-2280 -2286 0 +-2269 -2293 0 +-2270 -2294 0 +-2271 -2295 0 +-2272 -2296 0 +-2273 -2297 0 +-2274 -2298 0 +-2269 -2287 0 +-2270 -2288 0 +-2271 -2289 0 +-2272 -2290 0 +-2273 -2291 0 +-2274 -2292 0 +-2269 -2281 0 +-2270 -2282 0 +-2271 -2283 0 +-2272 -2284 0 +-2273 -2285 0 +-2274 -2286 0 +-2269 -2275 0 +-2270 -2276 0 +-2271 -2277 0 +-2272 -2278 0 +-2273 -2279 0 +-2274 -2280 0 +-2263 -2293 0 +-2264 -2294 0 +-2265 -2295 0 +-2266 -2296 0 +-2267 -2297 0 +-2268 -2298 0 +-2263 -2287 0 +-2264 -2288 0 +-2265 -2289 0 +-2266 -2290 0 +-2267 -2291 0 +-2268 -2292 0 +-2263 -2281 0 +-2264 -2282 0 +-2265 -2283 0 +-2266 -2284 0 +-2267 -2285 0 +-2268 -2286 0 +-2263 -2275 0 +-2264 -2276 0 +-2265 -2277 0 +-2266 -2278 0 +-2267 -2279 0 +-2268 -2280 0 +-2263 -2269 0 +-2264 -2270 0 +-2265 -2271 0 +-2266 -2272 0 +-2267 -2273 0 +-2268 -2274 0 +-2257 -2287 0 +-2258 -2288 0 +-2259 -2289 0 +-2260 -2290 0 +-2261 -2291 0 +-2262 -2292 0 +-2257 -2281 0 +-2258 -2282 0 +-2259 -2283 0 +-2260 -2284 0 +-2261 -2285 0 +-2262 -2286 0 +-2257 -2275 0 +-2258 -2276 0 +-2259 -2277 0 +-2260 -2278 0 +-2261 -2279 0 +-2262 -2280 0 +-2257 -2269 0 +-2258 -2270 0 +-2259 -2271 0 +-2260 -2272 0 +-2261 -2273 0 +-2262 -2274 0 +-2257 -2263 0 +-2258 -2264 0 +-2259 -2265 0 +-2260 -2266 0 +-2261 -2267 0 +-2262 -2268 0 +-2251 -2281 0 +-2252 -2282 0 +-2253 -2283 0 +-2254 -2284 0 +-2255 -2285 0 +-2256 -2286 0 +-2251 -2275 0 +-2252 -2276 0 +-2253 -2277 0 +-2254 -2278 0 +-2255 -2279 0 +-2256 -2280 0 +-2251 -2269 0 +-2252 -2270 0 +-2253 -2271 0 +-2254 -2272 0 +-2255 -2273 0 +-2256 -2274 0 +-2251 -2263 0 +-2252 -2264 0 +-2253 -2265 0 +-2254 -2266 0 +-2255 -2267 0 +-2256 -2268 0 +-2245 -2275 0 +-2246 -2276 0 +-2247 -2277 0 +-2248 -2278 0 +-2249 -2279 0 +-2250 -2280 0 +-2245 -2269 0 +-2246 -2270 0 +-2247 -2271 0 +-2248 -2272 0 +-2249 -2273 0 +-2250 -2274 0 +-2245 -2263 0 +-2246 -2264 0 +-2247 -2265 0 +-2248 -2266 0 +-2249 -2267 0 +-2250 -2268 0 +-2245 -2257 0 +-2246 -2258 0 +-2247 -2259 0 +-2248 -2260 0 +-2249 -2261 0 +-2250 -2262 0 +-2245 -2251 0 +-2246 -2252 0 +-2247 -2253 0 +-2248 -2254 0 +-2249 -2255 0 +-2250 -2256 0 +-2239 -2269 0 +-2240 -2270 0 +-2241 -2271 0 +-2242 -2272 0 +-2243 -2273 0 +-2244 -2274 0 +-2239 -2263 0 +-2240 -2264 0 +-2241 -2265 0 +-2242 -2266 0 +-2243 -2267 0 +-2244 -2268 0 +-2239 -2257 0 +-2240 -2258 0 +-2241 -2259 0 +-2242 -2260 0 +-2243 -2261 0 +-2244 -2262 0 +-2239 -2251 0 +-2240 -2252 0 +-2241 -2253 0 +-2242 -2254 0 +-2243 -2255 0 +-2244 -2256 0 +-2239 -2245 0 +-2240 -2246 0 +-2241 -2247 0 +-2242 -2248 0 +-2243 -2249 0 +-2244 -2250 0 +-2233 -2263 0 +-2234 -2264 0 +-2235 -2265 0 +-2236 -2266 0 +-2237 -2267 0 +-2238 -2268 0 +-2233 -2257 0 +-2234 -2258 0 +-2235 -2259 0 +-2236 -2260 0 +-2237 -2261 0 +-2238 -2262 0 +-2233 -2245 0 +-2234 -2246 0 +-2235 -2247 0 +-2236 -2248 0 +-2237 -2249 0 +-2238 -2250 0 +-2233 -2239 0 +-2234 -2240 0 +-2235 -2241 0 +-2236 -2242 0 +-2237 -2243 0 +-2238 -2244 0 +-2227 -2257 0 +-2228 -2258 0 +-2229 -2259 0 +-2230 -2260 0 +-2231 -2261 0 +-2232 -2262 0 +-2227 -2251 0 +-2228 -2252 0 +-2229 -2253 0 +-2230 -2254 0 +-2231 -2255 0 +-2232 -2256 0 +-2227 -2245 0 +-2228 -2246 0 +-2229 -2247 0 +-2230 -2248 0 +-2231 -2249 0 +-2232 -2250 0 +-2227 -2239 0 +-2228 -2240 0 +-2229 -2241 0 +-2230 -2242 0 +-2231 -2243 0 +-2232 -2244 0 +-2221 -2251 0 +-2222 -2252 0 +-2223 -2253 0 +-2224 -2254 0 +-2225 -2255 0 +-2226 -2256 0 +-2221 -2239 0 +-2222 -2240 0 +-2223 -2241 0 +-2224 -2242 0 +-2225 -2243 0 +-2226 -2244 0 +-2221 -2233 0 +-2222 -2234 0 +-2223 -2235 0 +-2224 -2236 0 +-2225 -2237 0 +-2226 -2238 0 +-2221 -2227 0 +-2222 -2228 0 +-2223 -2229 0 +-2224 -2230 0 +-2225 -2231 0 +-2226 -2232 0 +-2215 -2245 0 +-2216 -2246 0 +-2217 -2247 0 +-2218 -2248 0 +-2219 -2249 0 +-2220 -2250 0 +-2215 -2239 0 +-2216 -2240 0 +-2217 -2241 0 +-2218 -2242 0 +-2219 -2243 0 +-2220 -2244 0 +-2215 -2233 0 +-2216 -2234 0 +-2217 -2235 0 +-2218 -2236 0 +-2219 -2237 0 +-2220 -2238 0 +-2215 -2221 0 +-2216 -2222 0 +-2217 -2223 0 +-2218 -2224 0 +-2219 -2225 0 +-2220 -2226 0 +-2209 -2239 0 +-2210 -2240 0 +-2211 -2241 0 +-2212 -2242 0 +-2213 -2243 0 +-2214 -2244 0 +-2209 -2233 0 +-2210 -2234 0 +-2211 -2235 0 +-2212 -2236 0 +-2213 -2237 0 +-2214 -2238 0 +-2209 -2227 0 +-2210 -2228 0 +-2211 -2229 0 +-2212 -2230 0 +-2213 -2231 0 +-2214 -2232 0 +-2209 -2221 0 +-2210 -2222 0 +-2211 -2223 0 +-2212 -2224 0 +-2213 -2225 0 +-2214 -2226 0 +-2209 -2215 0 +-2210 -2216 0 +-2211 -2217 0 +-2212 -2218 0 +-2213 -2219 0 +-2214 -2220 0 +-2203 -2233 0 +-2204 -2234 0 +-2205 -2235 0 +-2206 -2236 0 +-2207 -2237 0 +-2208 -2238 0 +-2203 -2227 0 +-2204 -2228 0 +-2205 -2229 0 +-2206 -2230 0 +-2207 -2231 0 +-2208 -2232 0 +-2203 -2221 0 +-2204 -2222 0 +-2205 -2223 0 +-2206 -2224 0 +-2207 -2225 0 +-2208 -2226 0 +-2203 -2215 0 +-2204 -2216 0 +-2205 -2217 0 +-2206 -2218 0 +-2207 -2219 0 +-2208 -2220 0 +-2203 -2209 0 +-2204 -2210 0 +-2205 -2211 0 +-2206 -2212 0 +-2207 -2213 0 +-2208 -2214 0 +-2197 -2227 0 +-2198 -2228 0 +-2199 -2229 0 +-2200 -2230 0 +-2201 -2231 0 +-2202 -2232 0 +-2197 -2221 0 +-2198 -2222 0 +-2199 -2223 0 +-2200 -2224 0 +-2201 -2225 0 +-2202 -2226 0 +-2197 -2215 0 +-2198 -2216 0 +-2199 -2217 0 +-2200 -2218 0 +-2201 -2219 0 +-2202 -2220 0 +-2197 -2209 0 +-2198 -2210 0 +-2199 -2211 0 +-2200 -2212 0 +-2201 -2213 0 +-2202 -2214 0 +-2197 -2203 0 +-2198 -2204 0 +-2199 -2205 0 +-2200 -2206 0 +-2201 -2207 0 +-2202 -2208 0 +-2191 -2221 0 +-2192 -2222 0 +-2193 -2223 0 +-2194 -2224 0 +-2195 -2225 0 +-2196 -2226 0 +-2191 -2215 0 +-2192 -2216 0 +-2193 -2217 0 +-2194 -2218 0 +-2195 -2219 0 +-2196 -2220 0 +-2191 -2209 0 +-2192 -2210 0 +-2193 -2211 0 +-2194 -2212 0 +-2195 -2213 0 +-2196 -2214 0 +-2191 -2203 0 +-2192 -2204 0 +-2193 -2205 0 +-2194 -2206 0 +-2195 -2207 0 +-2196 -2208 0 +-2191 -2197 0 +-2192 -2198 0 +-2193 -2199 0 +-2194 -2200 0 +-2195 -2201 0 +-2196 -2202 0 +-2185 -2215 0 +-2186 -2216 0 +-2187 -2217 0 +-2188 -2218 0 +-2189 -2219 0 +-2190 -2220 0 +-2185 -2209 0 +-2186 -2210 0 +-2187 -2211 0 +-2188 -2212 0 +-2189 -2213 0 +-2190 -2214 0 +-2185 -2203 0 +-2186 -2204 0 +-2187 -2205 0 +-2188 -2206 0 +-2189 -2207 0 +-2190 -2208 0 +-2185 -2197 0 +-2186 -2198 0 +-2187 -2199 0 +-2188 -2200 0 +-2189 -2201 0 +-2190 -2202 0 +-2185 -2191 0 +-2186 -2192 0 +-2187 -2193 0 +-2188 -2194 0 +-2189 -2195 0 +-2190 -2196 0 +-2179 -2209 0 +-2180 -2210 0 +-2181 -2211 0 +-2182 -2212 0 +-2183 -2213 0 +-2184 -2214 0 +-2179 -2203 0 +-2180 -2204 0 +-2181 -2205 0 +-2182 -2206 0 +-2183 -2207 0 +-2184 -2208 0 +-2179 -2197 0 +-2180 -2198 0 +-2181 -2199 0 +-2182 -2200 0 +-2183 -2201 0 +-2184 -2202 0 +-2179 -2191 0 +-2180 -2192 0 +-2181 -2193 0 +-2182 -2194 0 +-2183 -2195 0 +-2184 -2196 0 +-2179 -2185 0 +-2180 -2186 0 +-2181 -2187 0 +-2182 -2188 0 +-2183 -2189 0 +-2184 -2190 0 +-2173 -2203 0 +-2174 -2204 0 +-2175 -2205 0 +-2176 -2206 0 +-2177 -2207 0 +-2178 -2208 0 +-2173 -2197 0 +-2174 -2198 0 +-2175 -2199 0 +-2176 -2200 0 +-2177 -2201 0 +-2178 -2202 0 +-2173 -2191 0 +-2174 -2192 0 +-2175 -2193 0 +-2176 -2194 0 +-2177 -2195 0 +-2178 -2196 0 +-2173 -2185 0 +-2174 -2186 0 +-2175 -2187 0 +-2176 -2188 0 +-2177 -2189 0 +-2178 -2190 0 +-2173 -2179 0 +-2174 -2180 0 +-2175 -2181 0 +-2176 -2182 0 +-2177 -2183 0 +-2178 -2184 0 +-2167 -2197 0 +-2168 -2198 0 +-2169 -2199 0 +-2170 -2200 0 +-2171 -2201 0 +-2172 -2202 0 +-2167 -2191 0 +-2168 -2192 0 +-2169 -2193 0 +-2170 -2194 0 +-2171 -2195 0 +-2172 -2196 0 +-2167 -2185 0 +-2168 -2186 0 +-2169 -2187 0 +-2170 -2188 0 +-2171 -2189 0 +-2172 -2190 0 +-2167 -2179 0 +-2168 -2180 0 +-2169 -2181 0 +-2170 -2182 0 +-2171 -2183 0 +-2172 -2184 0 +-2167 -2173 0 +-2168 -2174 0 +-2169 -2175 0 +-2170 -2176 0 +-2171 -2177 0 +-2172 -2178 0 +-2161 -2191 0 +-2162 -2192 0 +-2163 -2193 0 +-2164 -2194 0 +-2165 -2195 0 +-2166 -2196 0 +-2161 -2185 0 +-2162 -2186 0 +-2163 -2187 0 +-2164 -2188 0 +-2165 -2189 0 +-2166 -2190 0 +-2161 -2179 0 +-2162 -2180 0 +-2163 -2181 0 +-2164 -2182 0 +-2165 -2183 0 +-2166 -2184 0 +-2161 -2173 0 +-2162 -2174 0 +-2163 -2175 0 +-2164 -2176 0 +-2165 -2177 0 +-2166 -2178 0 +-2161 -2167 0 +-2162 -2168 0 +-2163 -2169 0 +-2164 -2170 0 +-2165 -2171 0 +-2166 -2172 0 +-2155 -2185 0 +-2156 -2186 0 +-2157 -2187 0 +-2158 -2188 0 +-2159 -2189 0 +-2160 -2190 0 +-2155 -2179 0 +-2156 -2180 0 +-2157 -2181 0 +-2158 -2182 0 +-2159 -2183 0 +-2160 -2184 0 +-2155 -2173 0 +-2156 -2174 0 +-2157 -2175 0 +-2158 -2176 0 +-2159 -2177 0 +-2160 -2178 0 +-2155 -2167 0 +-2156 -2168 0 +-2157 -2169 0 +-2158 -2170 0 +-2159 -2171 0 +-2160 -2172 0 +-2155 -2161 0 +-2156 -2162 0 +-2157 -2163 0 +-2158 -2164 0 +-2159 -2165 0 +-2160 -2166 0 +-2149 -2179 0 +-2150 -2180 0 +-2151 -2181 0 +-2152 -2182 0 +-2153 -2183 0 +-2154 -2184 0 +-2149 -2173 0 +-2150 -2174 0 +-2151 -2175 0 +-2152 -2176 0 +-2153 -2177 0 +-2154 -2178 0 +-2149 -2167 0 +-2150 -2168 0 +-2151 -2169 0 +-2152 -2170 0 +-2153 -2171 0 +-2154 -2172 0 +-2149 -2161 0 +-2150 -2162 0 +-2151 -2163 0 +-2152 -2164 0 +-2153 -2165 0 +-2154 -2166 0 +-2149 -2155 0 +-2150 -2156 0 +-2151 -2157 0 +-2152 -2158 0 +-2153 -2159 0 +-2154 -2160 0 +-2143 -2173 0 +-2144 -2174 0 +-2145 -2175 0 +-2146 -2176 0 +-2147 -2177 0 +-2148 -2178 0 +-2143 -2167 0 +-2144 -2168 0 +-2145 -2169 0 +-2146 -2170 0 +-2147 -2171 0 +-2148 -2172 0 +-2143 -2161 0 +-2144 -2162 0 +-2145 -2163 0 +-2146 -2164 0 +-2147 -2165 0 +-2148 -2166 0 +-2143 -2155 0 +-2144 -2156 0 +-2145 -2157 0 +-2146 -2158 0 +-2147 -2159 0 +-2148 -2160 0 +-2137 -2167 0 +-2138 -2168 0 +-2139 -2169 0 +-2140 -2170 0 +-2141 -2171 0 +-2142 -2172 0 +-2137 -2161 0 +-2138 -2162 0 +-2139 -2163 0 +-2140 -2164 0 +-2141 -2165 0 +-2142 -2166 0 +-2137 -2155 0 +-2138 -2156 0 +-2139 -2157 0 +-2140 -2158 0 +-2141 -2159 0 +-2142 -2160 0 +-2137 -2149 0 +-2138 -2150 0 +-2139 -2151 0 +-2140 -2152 0 +-2141 -2153 0 +-2142 -2154 0 +-2137 -2143 0 +-2138 -2144 0 +-2139 -2145 0 +-2140 -2146 0 +-2141 -2147 0 +-2142 -2148 0 +-2131 -2161 0 +-2132 -2162 0 +-2133 -2163 0 +-2134 -2164 0 +-2135 -2165 0 +-2136 -2166 0 +-2131 -2155 0 +-2132 -2156 0 +-2133 -2157 0 +-2134 -2158 0 +-2135 -2159 0 +-2136 -2160 0 +-2131 -2149 0 +-2132 -2150 0 +-2133 -2151 0 +-2134 -2152 0 +-2135 -2153 0 +-2136 -2154 0 +-2131 -2143 0 +-2132 -2144 0 +-2133 -2145 0 +-2134 -2146 0 +-2135 -2147 0 +-2136 -2148 0 +-2131 -2137 0 +-2132 -2138 0 +-2133 -2139 0 +-2134 -2140 0 +-2135 -2141 0 +-2136 -2142 0 +-2125 -2155 0 +-2126 -2156 0 +-2127 -2157 0 +-2128 -2158 0 +-2129 -2159 0 +-2130 -2160 0 +-2125 -2149 0 +-2126 -2150 0 +-2127 -2151 0 +-2128 -2152 0 +-2129 -2153 0 +-2130 -2154 0 +-2125 -2143 0 +-2126 -2144 0 +-2127 -2145 0 +-2128 -2146 0 +-2129 -2147 0 +-2130 -2148 0 +-2125 -2137 0 +-2126 -2138 0 +-2127 -2139 0 +-2128 -2140 0 +-2129 -2141 0 +-2130 -2142 0 +-2125 -2131 0 +-2126 -2132 0 +-2127 -2133 0 +-2128 -2134 0 +-2129 -2135 0 +-2130 -2136 0 +-2119 -2149 0 +-2120 -2150 0 +-2121 -2151 0 +-2122 -2152 0 +-2123 -2153 0 +-2124 -2154 0 +-2119 -2143 0 +-2120 -2144 0 +-2121 -2145 0 +-2122 -2146 0 +-2123 -2147 0 +-2124 -2148 0 +-2119 -2137 0 +-2120 -2138 0 +-2121 -2139 0 +-2122 -2140 0 +-2123 -2141 0 +-2124 -2142 0 +-2119 -2131 0 +-2120 -2132 0 +-2121 -2133 0 +-2122 -2134 0 +-2123 -2135 0 +-2124 -2136 0 +-2119 -2125 0 +-2120 -2126 0 +-2121 -2127 0 +-2122 -2128 0 +-2123 -2129 0 +-2124 -2130 0 +-2113 -2143 0 +-2114 -2144 0 +-2115 -2145 0 +-2116 -2146 0 +-2117 -2147 0 +-2118 -2148 0 +-2113 -2137 0 +-2114 -2138 0 +-2115 -2139 0 +-2116 -2140 0 +-2117 -2141 0 +-2118 -2142 0 +-2113 -2131 0 +-2114 -2132 0 +-2115 -2133 0 +-2116 -2134 0 +-2117 -2135 0 +-2118 -2136 0 +-2113 -2125 0 +-2114 -2126 0 +-2115 -2127 0 +-2116 -2128 0 +-2117 -2129 0 +-2118 -2130 0 +-2113 -2119 0 +-2114 -2120 0 +-2115 -2121 0 +-2116 -2122 0 +-2117 -2123 0 +-2118 -2124 0 +-2107 -2137 0 +-2108 -2138 0 +-2109 -2139 0 +-2110 -2140 0 +-2111 -2141 0 +-2112 -2142 0 +-2107 -2131 0 +-2108 -2132 0 +-2109 -2133 0 +-2110 -2134 0 +-2111 -2135 0 +-2112 -2136 0 +-2107 -2125 0 +-2108 -2126 0 +-2109 -2127 0 +-2110 -2128 0 +-2111 -2129 0 +-2112 -2130 0 +-2107 -2119 0 +-2108 -2120 0 +-2109 -2121 0 +-2110 -2122 0 +-2111 -2123 0 +-2112 -2124 0 +-2107 -2113 0 +-2108 -2114 0 +-2109 -2115 0 +-2110 -2116 0 +-2111 -2117 0 +-2112 -2118 0 +-2101 -2131 0 +-2102 -2132 0 +-2103 -2133 0 +-2104 -2134 0 +-2105 -2135 0 +-2106 -2136 0 +-2101 -2125 0 +-2102 -2126 0 +-2103 -2127 0 +-2104 -2128 0 +-2105 -2129 0 +-2106 -2130 0 +-2101 -2119 0 +-2102 -2120 0 +-2103 -2121 0 +-2104 -2122 0 +-2105 -2123 0 +-2106 -2124 0 +-2101 -2113 0 +-2102 -2114 0 +-2103 -2115 0 +-2104 -2116 0 +-2105 -2117 0 +-2106 -2118 0 +-2101 -2107 0 +-2102 -2108 0 +-2103 -2109 0 +-2104 -2110 0 +-2105 -2111 0 +-2106 -2112 0 +-2095 -2125 0 +-2096 -2126 0 +-2097 -2127 0 +-2098 -2128 0 +-2099 -2129 0 +-2100 -2130 0 +-2095 -2119 0 +-2096 -2120 0 +-2097 -2121 0 +-2098 -2122 0 +-2099 -2123 0 +-2100 -2124 0 +-2095 -2113 0 +-2096 -2114 0 +-2097 -2115 0 +-2098 -2116 0 +-2099 -2117 0 +-2100 -2118 0 +-2095 -2107 0 +-2096 -2108 0 +-2097 -2109 0 +-2098 -2110 0 +-2099 -2111 0 +-2100 -2112 0 +-2095 -2101 0 +-2096 -2102 0 +-2097 -2103 0 +-2098 -2104 0 +-2099 -2105 0 +-2100 -2106 0 +-2089 -2119 0 +-2090 -2120 0 +-2091 -2121 0 +-2092 -2122 0 +-2093 -2123 0 +-2094 -2124 0 +-2089 -2113 0 +-2090 -2114 0 +-2091 -2115 0 +-2092 -2116 0 +-2093 -2117 0 +-2094 -2118 0 +-2089 -2107 0 +-2090 -2108 0 +-2091 -2109 0 +-2092 -2110 0 +-2093 -2111 0 +-2094 -2112 0 +-2089 -2101 0 +-2090 -2102 0 +-2091 -2103 0 +-2092 -2104 0 +-2093 -2105 0 +-2094 -2106 0 +-2089 -2095 0 +-2090 -2096 0 +-2091 -2097 0 +-2092 -2098 0 +-2093 -2099 0 +-2094 -2100 0 +-2083 -2113 0 +-2084 -2114 0 +-2085 -2115 0 +-2086 -2116 0 +-2087 -2117 0 +-2088 -2118 0 +-2083 -2107 0 +-2084 -2108 0 +-2085 -2109 0 +-2086 -2110 0 +-2087 -2111 0 +-2088 -2112 0 +-2083 -2101 0 +-2084 -2102 0 +-2085 -2103 0 +-2086 -2104 0 +-2087 -2105 0 +-2088 -2106 0 +-2083 -2095 0 +-2084 -2096 0 +-2085 -2097 0 +-2086 -2098 0 +-2087 -2099 0 +-2088 -2100 0 +-2083 -2089 0 +-2084 -2090 0 +-2085 -2091 0 +-2086 -2092 0 +-2087 -2093 0 +-2088 -2094 0 +-2077 -2107 0 +-2078 -2108 0 +-2079 -2109 0 +-2080 -2110 0 +-2081 -2111 0 +-2082 -2112 0 +-2077 -2101 0 +-2078 -2102 0 +-2079 -2103 0 +-2080 -2104 0 +-2081 -2105 0 +-2082 -2106 0 +-2077 -2095 0 +-2078 -2096 0 +-2079 -2097 0 +-2080 -2098 0 +-2081 -2099 0 +-2082 -2100 0 +-2077 -2089 0 +-2078 -2090 0 +-2079 -2091 0 +-2080 -2092 0 +-2081 -2093 0 +-2082 -2094 0 +-2077 -2083 0 +-2078 -2084 0 +-2079 -2085 0 +-2080 -2086 0 +-2081 -2087 0 +-2082 -2088 0 +-2071 -2101 0 +-2072 -2102 0 +-2073 -2103 0 +-2074 -2104 0 +-2075 -2105 0 +-2076 -2106 0 +-2071 -2095 0 +-2072 -2096 0 +-2073 -2097 0 +-2074 -2098 0 +-2075 -2099 0 +-2076 -2100 0 +-2071 -2089 0 +-2072 -2090 0 +-2073 -2091 0 +-2074 -2092 0 +-2075 -2093 0 +-2076 -2094 0 +-2071 -2083 0 +-2072 -2084 0 +-2073 -2085 0 +-2074 -2086 0 +-2075 -2087 0 +-2076 -2088 0 +-2071 -2077 0 +-2072 -2078 0 +-2073 -2079 0 +-2074 -2080 0 +-2075 -2081 0 +-2076 -2082 0 +-2065 -2095 0 +-2066 -2096 0 +-2067 -2097 0 +-2068 -2098 0 +-2069 -2099 0 +-2070 -2100 0 +-2065 -2089 0 +-2066 -2090 0 +-2067 -2091 0 +-2068 -2092 0 +-2069 -2093 0 +-2070 -2094 0 +-2065 -2083 0 +-2066 -2084 0 +-2067 -2085 0 +-2068 -2086 0 +-2069 -2087 0 +-2070 -2088 0 +-2065 -2077 0 +-2066 -2078 0 +-2067 -2079 0 +-2068 -2080 0 +-2069 -2081 0 +-2070 -2082 0 +-2065 -2071 0 +-2066 -2072 0 +-2067 -2073 0 +-2068 -2074 0 +-2069 -2075 0 +-2070 -2076 0 +-2059 -2089 0 +-2060 -2090 0 +-2061 -2091 0 +-2062 -2092 0 +-2063 -2093 0 +-2064 -2094 0 +-2059 -2083 0 +-2060 -2084 0 +-2061 -2085 0 +-2062 -2086 0 +-2063 -2087 0 +-2064 -2088 0 +-2059 -2077 0 +-2060 -2078 0 +-2061 -2079 0 +-2062 -2080 0 +-2063 -2081 0 +-2064 -2082 0 +-2059 -2071 0 +-2060 -2072 0 +-2061 -2073 0 +-2062 -2074 0 +-2063 -2075 0 +-2064 -2076 0 +-2059 -2065 0 +-2060 -2066 0 +-2061 -2067 0 +-2062 -2068 0 +-2063 -2069 0 +-2064 -2070 0 +-2053 -2083 0 +-2054 -2084 0 +-2055 -2085 0 +-2056 -2086 0 +-2057 -2087 0 +-2058 -2088 0 +-2053 -2077 0 +-2054 -2078 0 +-2055 -2079 0 +-2056 -2080 0 +-2057 -2081 0 +-2058 -2082 0 +-2053 -2071 0 +-2054 -2072 0 +-2055 -2073 0 +-2056 -2074 0 +-2057 -2075 0 +-2058 -2076 0 +-2053 -2065 0 +-2054 -2066 0 +-2055 -2067 0 +-2056 -2068 0 +-2057 -2069 0 +-2058 -2070 0 +-2047 -2077 0 +-2048 -2078 0 +-2049 -2079 0 +-2050 -2080 0 +-2051 -2081 0 +-2052 -2082 0 +-2047 -2071 0 +-2048 -2072 0 +-2049 -2073 0 +-2050 -2074 0 +-2051 -2075 0 +-2052 -2076 0 +-2047 -2065 0 +-2048 -2066 0 +-2049 -2067 0 +-2050 -2068 0 +-2051 -2069 0 +-2052 -2070 0 +-2047 -2059 0 +-2048 -2060 0 +-2049 -2061 0 +-2050 -2062 0 +-2051 -2063 0 +-2052 -2064 0 +-2047 -2053 0 +-2048 -2054 0 +-2049 -2055 0 +-2050 -2056 0 +-2051 -2057 0 +-2052 -2058 0 +-2041 -2071 0 +-2042 -2072 0 +-2043 -2073 0 +-2044 -2074 0 +-2045 -2075 0 +-2046 -2076 0 +-2041 -2065 0 +-2042 -2066 0 +-2043 -2067 0 +-2044 -2068 0 +-2045 -2069 0 +-2046 -2070 0 +-2041 -2059 0 +-2042 -2060 0 +-2043 -2061 0 +-2044 -2062 0 +-2045 -2063 0 +-2046 -2064 0 +-2041 -2053 0 +-2042 -2054 0 +-2043 -2055 0 +-2044 -2056 0 +-2045 -2057 0 +-2046 -2058 0 +-2041 -2047 0 +-2042 -2048 0 +-2043 -2049 0 +-2044 -2050 0 +-2045 -2051 0 +-2046 -2052 0 +-2035 -2065 0 +-2036 -2066 0 +-2037 -2067 0 +-2038 -2068 0 +-2039 -2069 0 +-2040 -2070 0 +-2035 -2059 0 +-2036 -2060 0 +-2037 -2061 0 +-2038 -2062 0 +-2039 -2063 0 +-2040 -2064 0 +-2035 -2053 0 +-2036 -2054 0 +-2037 -2055 0 +-2038 -2056 0 +-2039 -2057 0 +-2040 -2058 0 +-2035 -2047 0 +-2036 -2048 0 +-2037 -2049 0 +-2038 -2050 0 +-2039 -2051 0 +-2040 -2052 0 +-2035 -2041 0 +-2036 -2042 0 +-2037 -2043 0 +-2038 -2044 0 +-2039 -2045 0 +-2040 -2046 0 +-2029 -2059 0 +-2030 -2060 0 +-2031 -2061 0 +-2032 -2062 0 +-2033 -2063 0 +-2034 -2064 0 +-2029 -2053 0 +-2030 -2054 0 +-2031 -2055 0 +-2032 -2056 0 +-2033 -2057 0 +-2034 -2058 0 +-2029 -2047 0 +-2030 -2048 0 +-2031 -2049 0 +-2032 -2050 0 +-2033 -2051 0 +-2034 -2052 0 +-2029 -2041 0 +-2030 -2042 0 +-2031 -2043 0 +-2032 -2044 0 +-2033 -2045 0 +-2034 -2046 0 +-2029 -2035 0 +-2030 -2036 0 +-2031 -2037 0 +-2032 -2038 0 +-2033 -2039 0 +-2034 -2040 0 +-2023 -2053 0 +-2024 -2054 0 +-2025 -2055 0 +-2026 -2056 0 +-2027 -2057 0 +-2028 -2058 0 +-2023 -2047 0 +-2024 -2048 0 +-2025 -2049 0 +-2026 -2050 0 +-2027 -2051 0 +-2028 -2052 0 +-2023 -2041 0 +-2024 -2042 0 +-2025 -2043 0 +-2026 -2044 0 +-2027 -2045 0 +-2028 -2046 0 +-2023 -2035 0 +-2024 -2036 0 +-2025 -2037 0 +-2026 -2038 0 +-2027 -2039 0 +-2028 -2040 0 +-2023 -2029 0 +-2024 -2030 0 +-2025 -2031 0 +-2026 -2032 0 +-2027 -2033 0 +-2028 -2034 0 +-2017 -2047 0 +-2018 -2048 0 +-2019 -2049 0 +-2020 -2050 0 +-2021 -2051 0 +-2022 -2052 0 +-2017 -2041 0 +-2018 -2042 0 +-2019 -2043 0 +-2020 -2044 0 +-2021 -2045 0 +-2022 -2046 0 +-2017 -2035 0 +-2018 -2036 0 +-2019 -2037 0 +-2020 -2038 0 +-2021 -2039 0 +-2022 -2040 0 +-2017 -2029 0 +-2018 -2030 0 +-2019 -2031 0 +-2020 -2032 0 +-2021 -2033 0 +-2022 -2034 0 +-2017 -2023 0 +-2018 -2024 0 +-2019 -2025 0 +-2020 -2026 0 +-2021 -2027 0 +-2022 -2028 0 +-2011 -2041 0 +-2012 -2042 0 +-2013 -2043 0 +-2014 -2044 0 +-2015 -2045 0 +-2016 -2046 0 +-2011 -2035 0 +-2012 -2036 0 +-2013 -2037 0 +-2014 -2038 0 +-2015 -2039 0 +-2016 -2040 0 +-2011 -2029 0 +-2012 -2030 0 +-2013 -2031 0 +-2014 -2032 0 +-2015 -2033 0 +-2016 -2034 0 +-2011 -2023 0 +-2012 -2024 0 +-2013 -2025 0 +-2014 -2026 0 +-2015 -2027 0 +-2016 -2028 0 +-2011 -2017 0 +-2012 -2018 0 +-2013 -2019 0 +-2014 -2020 0 +-2015 -2021 0 +-2016 -2022 0 +-2005 -2035 0 +-2006 -2036 0 +-2007 -2037 0 +-2008 -2038 0 +-2009 -2039 0 +-2010 -2040 0 +-2005 -2029 0 +-2006 -2030 0 +-2007 -2031 0 +-2008 -2032 0 +-2009 -2033 0 +-2010 -2034 0 +-2005 -2023 0 +-2006 -2024 0 +-2007 -2025 0 +-2008 -2026 0 +-2009 -2027 0 +-2010 -2028 0 +-2005 -2017 0 +-2006 -2018 0 +-2007 -2019 0 +-2008 -2020 0 +-2009 -2021 0 +-2010 -2022 0 +-2005 -2011 0 +-2006 -2012 0 +-2007 -2013 0 +-2008 -2014 0 +-2009 -2015 0 +-2010 -2016 0 +-1999 -2029 0 +-2000 -2030 0 +-2001 -2031 0 +-2002 -2032 0 +-2003 -2033 0 +-2004 -2034 0 +-1999 -2023 0 +-2000 -2024 0 +-2001 -2025 0 +-2002 -2026 0 +-2003 -2027 0 +-2004 -2028 0 +-1999 -2017 0 +-2000 -2018 0 +-2001 -2019 0 +-2002 -2020 0 +-2003 -2021 0 +-2004 -2022 0 +-1999 -2011 0 +-2000 -2012 0 +-2001 -2013 0 +-2002 -2014 0 +-2003 -2015 0 +-2004 -2016 0 +-1999 -2005 0 +-2000 -2006 0 +-2001 -2007 0 +-2002 -2008 0 +-2003 -2009 0 +-2004 -2010 0 +-1993 -2023 0 +-1994 -2024 0 +-1995 -2025 0 +-1996 -2026 0 +-1997 -2027 0 +-1998 -2028 0 +-1993 -2017 0 +-1994 -2018 0 +-1995 -2019 0 +-1996 -2020 0 +-1997 -2021 0 +-1998 -2022 0 +-1993 -2011 0 +-1994 -2012 0 +-1995 -2013 0 +-1996 -2014 0 +-1997 -2015 0 +-1998 -2016 0 +-1993 -2005 0 +-1994 -2006 0 +-1995 -2007 0 +-1996 -2008 0 +-1997 -2009 0 +-1998 -2010 0 +-1993 -1999 0 +-1994 -2000 0 +-1995 -2001 0 +-1996 -2002 0 +-1997 -2003 0 +-1998 -2004 0 +-1987 -2017 0 +-1988 -2018 0 +-1989 -2019 0 +-1990 -2020 0 +-1991 -2021 0 +-1992 -2022 0 +-1987 -2011 0 +-1988 -2012 0 +-1989 -2013 0 +-1990 -2014 0 +-1991 -2015 0 +-1992 -2016 0 +-1987 -2005 0 +-1988 -2006 0 +-1989 -2007 0 +-1990 -2008 0 +-1991 -2009 0 +-1992 -2010 0 +-1987 -1999 0 +-1988 -2000 0 +-1989 -2001 0 +-1990 -2002 0 +-1991 -2003 0 +-1992 -2004 0 +-1987 -1993 0 +-1988 -1994 0 +-1989 -1995 0 +-1990 -1996 0 +-1991 -1997 0 +-1992 -1998 0 +-1981 -2011 0 +-1982 -2012 0 +-1983 -2013 0 +-1984 -2014 0 +-1985 -2015 0 +-1986 -2016 0 +-1981 -2005 0 +-1982 -2006 0 +-1983 -2007 0 +-1984 -2008 0 +-1985 -2009 0 +-1986 -2010 0 +-1981 -1999 0 +-1982 -2000 0 +-1983 -2001 0 +-1984 -2002 0 +-1985 -2003 0 +-1986 -2004 0 +-1981 -1993 0 +-1982 -1994 0 +-1983 -1995 0 +-1984 -1996 0 +-1985 -1997 0 +-1986 -1998 0 +-1981 -1987 0 +-1982 -1988 0 +-1983 -1989 0 +-1984 -1990 0 +-1985 -1991 0 +-1986 -1992 0 +-1975 -2005 0 +-1976 -2006 0 +-1977 -2007 0 +-1978 -2008 0 +-1979 -2009 0 +-1980 -2010 0 +-1975 -1999 0 +-1976 -2000 0 +-1977 -2001 0 +-1978 -2002 0 +-1979 -2003 0 +-1980 -2004 0 +-1975 -1993 0 +-1976 -1994 0 +-1977 -1995 0 +-1978 -1996 0 +-1979 -1997 0 +-1980 -1998 0 +-1975 -1987 0 +-1976 -1988 0 +-1977 -1989 0 +-1978 -1990 0 +-1979 -1991 0 +-1980 -1992 0 +-1975 -1981 0 +-1976 -1982 0 +-1977 -1983 0 +-1978 -1984 0 +-1979 -1985 0 +-1980 -1986 0 +-1969 -1999 0 +-1970 -2000 0 +-1971 -2001 0 +-1972 -2002 0 +-1973 -2003 0 +-1974 -2004 0 +-1969 -1993 0 +-1970 -1994 0 +-1971 -1995 0 +-1972 -1996 0 +-1973 -1997 0 +-1974 -1998 0 +-1969 -1987 0 +-1970 -1988 0 +-1971 -1989 0 +-1972 -1990 0 +-1973 -1991 0 +-1974 -1992 0 +-1969 -1981 0 +-1970 -1982 0 +-1971 -1983 0 +-1972 -1984 0 +-1973 -1985 0 +-1974 -1986 0 +-1969 -1975 0 +-1970 -1976 0 +-1971 -1977 0 +-1972 -1978 0 +-1973 -1979 0 +-1974 -1980 0 +-1963 -1993 0 +-1964 -1994 0 +-1965 -1995 0 +-1966 -1996 0 +-1967 -1997 0 +-1968 -1998 0 +-1963 -1987 0 +-1964 -1988 0 +-1965 -1989 0 +-1966 -1990 0 +-1967 -1991 0 +-1968 -1992 0 +-1963 -1981 0 +-1964 -1982 0 +-1965 -1983 0 +-1966 -1984 0 +-1967 -1985 0 +-1968 -1986 0 +-1963 -1975 0 +-1964 -1976 0 +-1965 -1977 0 +-1966 -1978 0 +-1967 -1979 0 +-1968 -1980 0 +-1963 -1969 0 +-1964 -1970 0 +-1965 -1971 0 +-1966 -1972 0 +-1967 -1973 0 +-1968 -1974 0 +-1957 -1987 0 +-1958 -1988 0 +-1959 -1989 0 +-1960 -1990 0 +-1961 -1991 0 +-1962 -1992 0 +-1957 -1981 0 +-1958 -1982 0 +-1959 -1983 0 +-1960 -1984 0 +-1961 -1985 0 +-1962 -1986 0 +-1957 -1975 0 +-1958 -1976 0 +-1959 -1977 0 +-1960 -1978 0 +-1961 -1979 0 +-1962 -1980 0 +-1957 -1969 0 +-1958 -1970 0 +-1959 -1971 0 +-1960 -1972 0 +-1961 -1973 0 +-1962 -1974 0 +-1957 -1963 0 +-1958 -1964 0 +-1959 -1965 0 +-1960 -1966 0 +-1961 -1967 0 +-1962 -1968 0 +-1951 -1981 0 +-1952 -1982 0 +-1953 -1983 0 +-1954 -1984 0 +-1955 -1985 0 +-1956 -1986 0 +-1951 -1975 0 +-1952 -1976 0 +-1953 -1977 0 +-1954 -1978 0 +-1955 -1979 0 +-1956 -1980 0 +-1951 -1969 0 +-1952 -1970 0 +-1953 -1971 0 +-1954 -1972 0 +-1955 -1973 0 +-1956 -1974 0 +-1951 -1963 0 +-1952 -1964 0 +-1953 -1965 0 +-1954 -1966 0 +-1955 -1967 0 +-1956 -1968 0 +-1951 -1957 0 +-1952 -1958 0 +-1953 -1959 0 +-1954 -1960 0 +-1955 -1961 0 +-1956 -1962 0 +-1945 -1975 0 +-1946 -1976 0 +-1947 -1977 0 +-1948 -1978 0 +-1949 -1979 0 +-1950 -1980 0 +-1945 -1969 0 +-1946 -1970 0 +-1947 -1971 0 +-1948 -1972 0 +-1949 -1973 0 +-1950 -1974 0 +-1945 -1963 0 +-1946 -1964 0 +-1947 -1965 0 +-1948 -1966 0 +-1949 -1967 0 +-1950 -1968 0 +-1945 -1957 0 +-1946 -1958 0 +-1947 -1959 0 +-1948 -1960 0 +-1949 -1961 0 +-1950 -1962 0 +-1939 -1969 0 +-1940 -1970 0 +-1941 -1971 0 +-1942 -1972 0 +-1943 -1973 0 +-1944 -1974 0 +-1939 -1963 0 +-1940 -1964 0 +-1941 -1965 0 +-1942 -1966 0 +-1943 -1967 0 +-1944 -1968 0 +-1939 -1957 0 +-1940 -1958 0 +-1941 -1959 0 +-1942 -1960 0 +-1943 -1961 0 +-1944 -1962 0 +-1939 -1951 0 +-1940 -1952 0 +-1941 -1953 0 +-1942 -1954 0 +-1943 -1955 0 +-1944 -1956 0 +-1939 -1945 0 +-1940 -1946 0 +-1941 -1947 0 +-1942 -1948 0 +-1943 -1949 0 +-1944 -1950 0 +-1933 -1963 0 +-1934 -1964 0 +-1935 -1965 0 +-1936 -1966 0 +-1937 -1967 0 +-1938 -1968 0 +-1933 -1957 0 +-1934 -1958 0 +-1935 -1959 0 +-1936 -1960 0 +-1937 -1961 0 +-1938 -1962 0 +-1933 -1951 0 +-1934 -1952 0 +-1935 -1953 0 +-1936 -1954 0 +-1937 -1955 0 +-1938 -1956 0 +-1933 -1945 0 +-1934 -1946 0 +-1935 -1947 0 +-1936 -1948 0 +-1937 -1949 0 +-1938 -1950 0 +-1933 -1939 0 +-1934 -1940 0 +-1935 -1941 0 +-1936 -1942 0 +-1937 -1943 0 +-1938 -1944 0 +-1927 -1951 0 +-1928 -1952 0 +-1929 -1953 0 +-1930 -1954 0 +-1931 -1955 0 +-1932 -1956 0 +-1927 -1945 0 +-1928 -1946 0 +-1929 -1947 0 +-1930 -1948 0 +-1931 -1949 0 +-1932 -1950 0 +-1927 -1939 0 +-1928 -1940 0 +-1929 -1941 0 +-1930 -1942 0 +-1931 -1943 0 +-1932 -1944 0 +-1927 -1933 0 +-1928 -1934 0 +-1929 -1935 0 +-1930 -1936 0 +-1931 -1937 0 +-1932 -1938 0 +-1921 -1951 0 +-1922 -1952 0 +-1923 -1953 0 +-1924 -1954 0 +-1925 -1955 0 +-1926 -1956 0 +-1921 -1945 0 +-1922 -1946 0 +-1923 -1947 0 +-1924 -1948 0 +-1925 -1949 0 +-1926 -1950 0 +-1921 -1939 0 +-1922 -1940 0 +-1923 -1941 0 +-1924 -1942 0 +-1925 -1943 0 +-1926 -1944 0 +-1921 -1933 0 +-1922 -1934 0 +-1923 -1935 0 +-1924 -1936 0 +-1925 -1937 0 +-1926 -1938 0 +-1921 -1927 0 +-1922 -1928 0 +-1923 -1929 0 +-1924 -1930 0 +-1925 -1931 0 +-1926 -1932 0 +-1915 -1945 0 +-1916 -1946 0 +-1917 -1947 0 +-1918 -1948 0 +-1919 -1949 0 +-1920 -1950 0 +-1915 -1939 0 +-1916 -1940 0 +-1917 -1941 0 +-1918 -1942 0 +-1919 -1943 0 +-1920 -1944 0 +-1915 -1933 0 +-1916 -1934 0 +-1917 -1935 0 +-1918 -1936 0 +-1919 -1937 0 +-1920 -1938 0 +-1915 -1921 0 +-1916 -1922 0 +-1917 -1923 0 +-1918 -1924 0 +-1919 -1925 0 +-1920 -1926 0 +-1909 -1939 0 +-1910 -1940 0 +-1911 -1941 0 +-1912 -1942 0 +-1913 -1943 0 +-1914 -1944 0 +-1909 -1933 0 +-1910 -1934 0 +-1911 -1935 0 +-1912 -1936 0 +-1913 -1937 0 +-1914 -1938 0 +-1909 -1927 0 +-1910 -1928 0 +-1911 -1929 0 +-1912 -1930 0 +-1913 -1931 0 +-1914 -1932 0 +-1909 -1921 0 +-1910 -1922 0 +-1911 -1923 0 +-1912 -1924 0 +-1913 -1925 0 +-1914 -1926 0 +-1909 -1915 0 +-1910 -1916 0 +-1911 -1917 0 +-1912 -1918 0 +-1913 -1919 0 +-1914 -1920 0 +-1903 -1933 0 +-1904 -1934 0 +-1905 -1935 0 +-1906 -1936 0 +-1907 -1937 0 +-1908 -1938 0 +-1903 -1927 0 +-1904 -1928 0 +-1905 -1929 0 +-1906 -1930 0 +-1907 -1931 0 +-1908 -1932 0 +-1903 -1921 0 +-1904 -1922 0 +-1905 -1923 0 +-1906 -1924 0 +-1907 -1925 0 +-1908 -1926 0 +-1903 -1915 0 +-1904 -1916 0 +-1905 -1917 0 +-1906 -1918 0 +-1907 -1919 0 +-1908 -1920 0 +-1903 -1909 0 +-1904 -1910 0 +-1905 -1911 0 +-1906 -1912 0 +-1907 -1913 0 +-1908 -1914 0 +-1897 -1927 0 +-1898 -1928 0 +-1899 -1929 0 +-1900 -1930 0 +-1901 -1931 0 +-1902 -1932 0 +-1897 -1921 0 +-1898 -1922 0 +-1899 -1923 0 +-1900 -1924 0 +-1901 -1925 0 +-1902 -1926 0 +-1897 -1915 0 +-1898 -1916 0 +-1899 -1917 0 +-1900 -1918 0 +-1901 -1919 0 +-1902 -1920 0 +-1897 -1909 0 +-1898 -1910 0 +-1899 -1911 0 +-1900 -1912 0 +-1901 -1913 0 +-1902 -1914 0 +-1897 -1903 0 +-1898 -1904 0 +-1899 -1905 0 +-1900 -1906 0 +-1901 -1907 0 +-1902 -1908 0 +-1891 -1921 0 +-1892 -1922 0 +-1893 -1923 0 +-1894 -1924 0 +-1895 -1925 0 +-1896 -1926 0 +-1891 -1915 0 +-1892 -1916 0 +-1893 -1917 0 +-1894 -1918 0 +-1895 -1919 0 +-1896 -1920 0 +-1891 -1903 0 +-1892 -1904 0 +-1893 -1905 0 +-1894 -1906 0 +-1895 -1907 0 +-1896 -1908 0 +-1891 -1897 0 +-1892 -1898 0 +-1893 -1899 0 +-1894 -1900 0 +-1895 -1901 0 +-1896 -1902 0 +-1885 -1915 0 +-1886 -1916 0 +-1887 -1917 0 +-1888 -1918 0 +-1889 -1919 0 +-1890 -1920 0 +-1885 -1909 0 +-1886 -1910 0 +-1887 -1911 0 +-1888 -1912 0 +-1889 -1913 0 +-1890 -1914 0 +-1885 -1903 0 +-1886 -1904 0 +-1887 -1905 0 +-1888 -1906 0 +-1889 -1907 0 +-1890 -1908 0 +-1885 -1897 0 +-1886 -1898 0 +-1887 -1899 0 +-1888 -1900 0 +-1889 -1901 0 +-1890 -1902 0 +-1885 -1891 0 +-1886 -1892 0 +-1887 -1893 0 +-1888 -1894 0 +-1889 -1895 0 +-1890 -1896 0 +-1879 -1909 0 +-1880 -1910 0 +-1881 -1911 0 +-1882 -1912 0 +-1883 -1913 0 +-1884 -1914 0 +-1879 -1903 0 +-1880 -1904 0 +-1881 -1905 0 +-1882 -1906 0 +-1883 -1907 0 +-1884 -1908 0 +-1879 -1897 0 +-1880 -1898 0 +-1881 -1899 0 +-1882 -1900 0 +-1883 -1901 0 +-1884 -1902 0 +-1879 -1891 0 +-1880 -1892 0 +-1881 -1893 0 +-1882 -1894 0 +-1883 -1895 0 +-1884 -1896 0 +-1873 -1903 0 +-1874 -1904 0 +-1875 -1905 0 +-1876 -1906 0 +-1877 -1907 0 +-1878 -1908 0 +-1873 -1897 0 +-1874 -1898 0 +-1875 -1899 0 +-1876 -1900 0 +-1877 -1901 0 +-1878 -1902 0 +-1873 -1891 0 +-1874 -1892 0 +-1875 -1893 0 +-1876 -1894 0 +-1877 -1895 0 +-1878 -1896 0 +-1873 -1885 0 +-1874 -1886 0 +-1875 -1887 0 +-1876 -1888 0 +-1877 -1889 0 +-1878 -1890 0 +-1873 -1879 0 +-1874 -1880 0 +-1875 -1881 0 +-1876 -1882 0 +-1877 -1883 0 +-1878 -1884 0 +-1867 -1897 0 +-1868 -1898 0 +-1869 -1899 0 +-1870 -1900 0 +-1871 -1901 0 +-1872 -1902 0 +-1867 -1891 0 +-1868 -1892 0 +-1869 -1893 0 +-1870 -1894 0 +-1871 -1895 0 +-1872 -1896 0 +-1867 -1885 0 +-1868 -1886 0 +-1869 -1887 0 +-1870 -1888 0 +-1871 -1889 0 +-1872 -1890 0 +-1867 -1879 0 +-1868 -1880 0 +-1869 -1881 0 +-1870 -1882 0 +-1871 -1883 0 +-1872 -1884 0 +-1867 -1873 0 +-1868 -1874 0 +-1869 -1875 0 +-1870 -1876 0 +-1871 -1877 0 +-1872 -1878 0 +-1861 -1891 0 +-1862 -1892 0 +-1863 -1893 0 +-1864 -1894 0 +-1865 -1895 0 +-1866 -1896 0 +-1861 -1885 0 +-1862 -1886 0 +-1863 -1887 0 +-1864 -1888 0 +-1865 -1889 0 +-1866 -1890 0 +-1861 -1879 0 +-1862 -1880 0 +-1863 -1881 0 +-1864 -1882 0 +-1865 -1883 0 +-1866 -1884 0 +-1861 -1873 0 +-1862 -1874 0 +-1863 -1875 0 +-1864 -1876 0 +-1865 -1877 0 +-1866 -1878 0 +-1861 -1867 0 +-1862 -1868 0 +-1863 -1869 0 +-1864 -1870 0 +-1865 -1871 0 +-1866 -1872 0 +-1855 -1885 0 +-1856 -1886 0 +-1857 -1887 0 +-1858 -1888 0 +-1859 -1889 0 +-1860 -1890 0 +-1855 -1879 0 +-1856 -1880 0 +-1857 -1881 0 +-1858 -1882 0 +-1859 -1883 0 +-1860 -1884 0 +-1855 -1873 0 +-1856 -1874 0 +-1857 -1875 0 +-1858 -1876 0 +-1859 -1877 0 +-1860 -1878 0 +-1855 -1867 0 +-1856 -1868 0 +-1857 -1869 0 +-1858 -1870 0 +-1859 -1871 0 +-1860 -1872 0 +-1855 -1861 0 +-1856 -1862 0 +-1857 -1863 0 +-1858 -1864 0 +-1859 -1865 0 +-1860 -1866 0 +-1849 -1879 0 +-1850 -1880 0 +-1851 -1881 0 +-1852 -1882 0 +-1853 -1883 0 +-1854 -1884 0 +-1849 -1873 0 +-1850 -1874 0 +-1851 -1875 0 +-1852 -1876 0 +-1853 -1877 0 +-1854 -1878 0 +-1849 -1867 0 +-1850 -1868 0 +-1851 -1869 0 +-1852 -1870 0 +-1853 -1871 0 +-1854 -1872 0 +-1849 -1861 0 +-1850 -1862 0 +-1851 -1863 0 +-1852 -1864 0 +-1853 -1865 0 +-1854 -1866 0 +-1849 -1855 0 +-1850 -1856 0 +-1851 -1857 0 +-1852 -1858 0 +-1853 -1859 0 +-1854 -1860 0 +-1843 -1873 0 +-1844 -1874 0 +-1845 -1875 0 +-1846 -1876 0 +-1847 -1877 0 +-1848 -1878 0 +-1843 -1867 0 +-1844 -1868 0 +-1845 -1869 0 +-1846 -1870 0 +-1847 -1871 0 +-1848 -1872 0 +-1843 -1861 0 +-1844 -1862 0 +-1845 -1863 0 +-1846 -1864 0 +-1847 -1865 0 +-1848 -1866 0 +-1843 -1855 0 +-1844 -1856 0 +-1845 -1857 0 +-1846 -1858 0 +-1847 -1859 0 +-1848 -1860 0 +-1843 -1849 0 +-1844 -1850 0 +-1845 -1851 0 +-1846 -1852 0 +-1847 -1853 0 +-1848 -1854 0 +-1837 -1867 0 +-1838 -1868 0 +-1839 -1869 0 +-1840 -1870 0 +-1841 -1871 0 +-1842 -1872 0 +-1837 -1861 0 +-1838 -1862 0 +-1839 -1863 0 +-1840 -1864 0 +-1841 -1865 0 +-1842 -1866 0 +-1837 -1855 0 +-1838 -1856 0 +-1839 -1857 0 +-1840 -1858 0 +-1841 -1859 0 +-1842 -1860 0 +-1837 -1849 0 +-1838 -1850 0 +-1839 -1851 0 +-1840 -1852 0 +-1841 -1853 0 +-1842 -1854 0 +-1837 -1843 0 +-1838 -1844 0 +-1839 -1845 0 +-1840 -1846 0 +-1841 -1847 0 +-1842 -1848 0 +-1831 -1861 0 +-1832 -1862 0 +-1833 -1863 0 +-1834 -1864 0 +-1835 -1865 0 +-1836 -1866 0 +-1831 -1855 0 +-1832 -1856 0 +-1833 -1857 0 +-1834 -1858 0 +-1835 -1859 0 +-1836 -1860 0 +-1831 -1849 0 +-1832 -1850 0 +-1833 -1851 0 +-1834 -1852 0 +-1835 -1853 0 +-1836 -1854 0 +-1831 -1843 0 +-1832 -1844 0 +-1833 -1845 0 +-1834 -1846 0 +-1835 -1847 0 +-1836 -1848 0 +-1831 -1837 0 +-1832 -1838 0 +-1833 -1839 0 +-1834 -1840 0 +-1835 -1841 0 +-1836 -1842 0 +-1825 -1855 0 +-1826 -1856 0 +-1827 -1857 0 +-1828 -1858 0 +-1829 -1859 0 +-1830 -1860 0 +-1825 -1849 0 +-1826 -1850 0 +-1827 -1851 0 +-1828 -1852 0 +-1829 -1853 0 +-1830 -1854 0 +-1825 -1843 0 +-1826 -1844 0 +-1827 -1845 0 +-1828 -1846 0 +-1829 -1847 0 +-1830 -1848 0 +-1825 -1837 0 +-1826 -1838 0 +-1827 -1839 0 +-1828 -1840 0 +-1829 -1841 0 +-1830 -1842 0 +-1825 -1831 0 +-1826 -1832 0 +-1827 -1833 0 +-1828 -1834 0 +-1829 -1835 0 +-1830 -1836 0 +-1819 -1849 0 +-1820 -1850 0 +-1821 -1851 0 +-1822 -1852 0 +-1823 -1853 0 +-1824 -1854 0 +-1819 -1843 0 +-1820 -1844 0 +-1821 -1845 0 +-1822 -1846 0 +-1823 -1847 0 +-1824 -1848 0 +-1819 -1837 0 +-1820 -1838 0 +-1821 -1839 0 +-1822 -1840 0 +-1823 -1841 0 +-1824 -1842 0 +-1819 -1831 0 +-1820 -1832 0 +-1821 -1833 0 +-1822 -1834 0 +-1823 -1835 0 +-1824 -1836 0 +-1819 -1825 0 +-1820 -1826 0 +-1821 -1827 0 +-1822 -1828 0 +-1823 -1829 0 +-1824 -1830 0 +-1813 -1843 0 +-1814 -1844 0 +-1815 -1845 0 +-1816 -1846 0 +-1817 -1847 0 +-1818 -1848 0 +-1813 -1837 0 +-1814 -1838 0 +-1815 -1839 0 +-1816 -1840 0 +-1817 -1841 0 +-1818 -1842 0 +-1813 -1831 0 +-1814 -1832 0 +-1815 -1833 0 +-1816 -1834 0 +-1817 -1835 0 +-1818 -1836 0 +-1813 -1825 0 +-1814 -1826 0 +-1815 -1827 0 +-1816 -1828 0 +-1817 -1829 0 +-1818 -1830 0 +-1813 -1819 0 +-1814 -1820 0 +-1815 -1821 0 +-1816 -1822 0 +-1817 -1823 0 +-1818 -1824 0 +-1807 -1837 0 +-1808 -1838 0 +-1809 -1839 0 +-1810 -1840 0 +-1811 -1841 0 +-1812 -1842 0 +-1807 -1831 0 +-1808 -1832 0 +-1809 -1833 0 +-1810 -1834 0 +-1811 -1835 0 +-1812 -1836 0 +-1807 -1825 0 +-1808 -1826 0 +-1809 -1827 0 +-1810 -1828 0 +-1811 -1829 0 +-1812 -1830 0 +-1807 -1819 0 +-1808 -1820 0 +-1809 -1821 0 +-1810 -1822 0 +-1811 -1823 0 +-1812 -1824 0 +-1807 -1813 0 +-1808 -1814 0 +-1809 -1815 0 +-1810 -1816 0 +-1811 -1817 0 +-1812 -1818 0 +-1801 -1831 0 +-1802 -1832 0 +-1803 -1833 0 +-1804 -1834 0 +-1805 -1835 0 +-1806 -1836 0 +-1801 -1825 0 +-1802 -1826 0 +-1803 -1827 0 +-1804 -1828 0 +-1805 -1829 0 +-1806 -1830 0 +-1801 -1819 0 +-1802 -1820 0 +-1803 -1821 0 +-1804 -1822 0 +-1805 -1823 0 +-1806 -1824 0 +-1801 -1813 0 +-1802 -1814 0 +-1803 -1815 0 +-1804 -1816 0 +-1805 -1817 0 +-1806 -1818 0 +-1801 -1807 0 +-1802 -1808 0 +-1803 -1809 0 +-1804 -1810 0 +-1805 -1811 0 +-1806 -1812 0 +-1795 -1825 0 +-1796 -1826 0 +-1797 -1827 0 +-1798 -1828 0 +-1799 -1829 0 +-1800 -1830 0 +-1795 -1819 0 +-1796 -1820 0 +-1797 -1821 0 +-1798 -1822 0 +-1799 -1823 0 +-1800 -1824 0 +-1795 -1813 0 +-1796 -1814 0 +-1797 -1815 0 +-1798 -1816 0 +-1799 -1817 0 +-1800 -1818 0 +-1795 -1807 0 +-1796 -1808 0 +-1797 -1809 0 +-1798 -1810 0 +-1799 -1811 0 +-1800 -1812 0 +-1795 -1801 0 +-1796 -1802 0 +-1797 -1803 0 +-1798 -1804 0 +-1799 -1805 0 +-1800 -1806 0 +-1789 -1819 0 +-1790 -1820 0 +-1791 -1821 0 +-1792 -1822 0 +-1793 -1823 0 +-1794 -1824 0 +-1789 -1813 0 +-1790 -1814 0 +-1791 -1815 0 +-1792 -1816 0 +-1793 -1817 0 +-1794 -1818 0 +-1789 -1807 0 +-1790 -1808 0 +-1791 -1809 0 +-1792 -1810 0 +-1793 -1811 0 +-1794 -1812 0 +-1789 -1801 0 +-1790 -1802 0 +-1791 -1803 0 +-1792 -1804 0 +-1793 -1805 0 +-1794 -1806 0 +-1789 -1795 0 +-1790 -1796 0 +-1791 -1797 0 +-1792 -1798 0 +-1793 -1799 0 +-1794 -1800 0 +-1783 -1813 0 +-1784 -1814 0 +-1785 -1815 0 +-1786 -1816 0 +-1787 -1817 0 +-1788 -1818 0 +-1783 -1807 0 +-1784 -1808 0 +-1785 -1809 0 +-1786 -1810 0 +-1787 -1811 0 +-1788 -1812 0 +-1783 -1801 0 +-1784 -1802 0 +-1785 -1803 0 +-1786 -1804 0 +-1787 -1805 0 +-1788 -1806 0 +-1783 -1795 0 +-1784 -1796 0 +-1785 -1797 0 +-1786 -1798 0 +-1787 -1799 0 +-1788 -1800 0 +-1783 -1789 0 +-1784 -1790 0 +-1785 -1791 0 +-1786 -1792 0 +-1787 -1793 0 +-1788 -1794 0 +-1777 -1807 0 +-1778 -1808 0 +-1779 -1809 0 +-1780 -1810 0 +-1781 -1811 0 +-1782 -1812 0 +-1777 -1801 0 +-1778 -1802 0 +-1779 -1803 0 +-1780 -1804 0 +-1781 -1805 0 +-1782 -1806 0 +-1777 -1795 0 +-1778 -1796 0 +-1779 -1797 0 +-1780 -1798 0 +-1781 -1799 0 +-1782 -1800 0 +-1777 -1789 0 +-1778 -1790 0 +-1779 -1791 0 +-1780 -1792 0 +-1781 -1793 0 +-1782 -1794 0 +-1777 -1783 0 +-1778 -1784 0 +-1779 -1785 0 +-1780 -1786 0 +-1781 -1787 0 +-1782 -1788 0 +-1771 -1801 0 +-1772 -1802 0 +-1773 -1803 0 +-1774 -1804 0 +-1775 -1805 0 +-1776 -1806 0 +-1771 -1795 0 +-1772 -1796 0 +-1773 -1797 0 +-1774 -1798 0 +-1775 -1799 0 +-1776 -1800 0 +-1771 -1789 0 +-1772 -1790 0 +-1773 -1791 0 +-1774 -1792 0 +-1775 -1793 0 +-1776 -1794 0 +-1771 -1783 0 +-1772 -1784 0 +-1773 -1785 0 +-1774 -1786 0 +-1775 -1787 0 +-1776 -1788 0 +-1771 -1777 0 +-1772 -1778 0 +-1773 -1779 0 +-1774 -1780 0 +-1775 -1781 0 +-1776 -1782 0 +-1765 -1795 0 +-1766 -1796 0 +-1767 -1797 0 +-1768 -1798 0 +-1769 -1799 0 +-1770 -1800 0 +-1765 -1789 0 +-1766 -1790 0 +-1767 -1791 0 +-1768 -1792 0 +-1769 -1793 0 +-1770 -1794 0 +-1765 -1783 0 +-1766 -1784 0 +-1767 -1785 0 +-1768 -1786 0 +-1769 -1787 0 +-1770 -1788 0 +-1765 -1777 0 +-1766 -1778 0 +-1767 -1779 0 +-1768 -1780 0 +-1769 -1781 0 +-1770 -1782 0 +-1765 -1771 0 +-1766 -1772 0 +-1767 -1773 0 +-1768 -1774 0 +-1769 -1775 0 +-1770 -1776 0 +-1759 -1789 0 +-1760 -1790 0 +-1761 -1791 0 +-1762 -1792 0 +-1763 -1793 0 +-1764 -1794 0 +-1759 -1777 0 +-1760 -1778 0 +-1761 -1779 0 +-1762 -1780 0 +-1763 -1781 0 +-1764 -1782 0 +-1759 -1771 0 +-1760 -1772 0 +-1761 -1773 0 +-1762 -1774 0 +-1763 -1775 0 +-1764 -1776 0 +-1759 -1765 0 +-1760 -1766 0 +-1761 -1767 0 +-1762 -1768 0 +-1763 -1769 0 +-1764 -1770 0 +-1753 -1783 0 +-1754 -1784 0 +-1755 -1785 0 +-1756 -1786 0 +-1757 -1787 0 +-1758 -1788 0 +-1753 -1777 0 +-1754 -1778 0 +-1755 -1779 0 +-1756 -1780 0 +-1757 -1781 0 +-1758 -1782 0 +-1753 -1771 0 +-1754 -1772 0 +-1755 -1773 0 +-1756 -1774 0 +-1757 -1775 0 +-1758 -1776 0 +-1753 -1765 0 +-1754 -1766 0 +-1755 -1767 0 +-1756 -1768 0 +-1757 -1769 0 +-1758 -1770 0 +-1753 -1759 0 +-1754 -1760 0 +-1755 -1761 0 +-1756 -1762 0 +-1757 -1763 0 +-1758 -1764 0 +-1747 -1777 0 +-1748 -1778 0 +-1749 -1779 0 +-1750 -1780 0 +-1751 -1781 0 +-1752 -1782 0 +-1747 -1771 0 +-1748 -1772 0 +-1749 -1773 0 +-1750 -1774 0 +-1751 -1775 0 +-1752 -1776 0 +-1747 -1765 0 +-1748 -1766 0 +-1749 -1767 0 +-1750 -1768 0 +-1751 -1769 0 +-1752 -1770 0 +-1747 -1759 0 +-1748 -1760 0 +-1749 -1761 0 +-1750 -1762 0 +-1751 -1763 0 +-1752 -1764 0 +-1747 -1753 0 +-1748 -1754 0 +-1749 -1755 0 +-1750 -1756 0 +-1751 -1757 0 +-1752 -1758 0 +-1741 -1771 0 +-1742 -1772 0 +-1743 -1773 0 +-1744 -1774 0 +-1745 -1775 0 +-1746 -1776 0 +-1741 -1765 0 +-1742 -1766 0 +-1743 -1767 0 +-1744 -1768 0 +-1745 -1769 0 +-1746 -1770 0 +-1741 -1759 0 +-1742 -1760 0 +-1743 -1761 0 +-1744 -1762 0 +-1745 -1763 0 +-1746 -1764 0 +-1741 -1753 0 +-1742 -1754 0 +-1743 -1755 0 +-1744 -1756 0 +-1745 -1757 0 +-1746 -1758 0 +-1741 -1747 0 +-1742 -1748 0 +-1743 -1749 0 +-1744 -1750 0 +-1745 -1751 0 +-1746 -1752 0 +-1735 -1765 0 +-1736 -1766 0 +-1737 -1767 0 +-1738 -1768 0 +-1739 -1769 0 +-1740 -1770 0 +-1735 -1759 0 +-1736 -1760 0 +-1737 -1761 0 +-1738 -1762 0 +-1739 -1763 0 +-1740 -1764 0 +-1735 -1753 0 +-1736 -1754 0 +-1737 -1755 0 +-1738 -1756 0 +-1739 -1757 0 +-1740 -1758 0 +-1735 -1747 0 +-1736 -1748 0 +-1737 -1749 0 +-1738 -1750 0 +-1739 -1751 0 +-1740 -1752 0 +-1735 -1741 0 +-1736 -1742 0 +-1737 -1743 0 +-1738 -1744 0 +-1739 -1745 0 +-1740 -1746 0 +-1729 -1759 0 +-1730 -1760 0 +-1731 -1761 0 +-1732 -1762 0 +-1733 -1763 0 +-1734 -1764 0 +-1729 -1753 0 +-1730 -1754 0 +-1731 -1755 0 +-1732 -1756 0 +-1733 -1757 0 +-1734 -1758 0 +-1729 -1747 0 +-1730 -1748 0 +-1731 -1749 0 +-1732 -1750 0 +-1733 -1751 0 +-1734 -1752 0 +-1729 -1741 0 +-1730 -1742 0 +-1731 -1743 0 +-1732 -1744 0 +-1733 -1745 0 +-1734 -1746 0 +-1729 -1735 0 +-1730 -1736 0 +-1731 -1737 0 +-1732 -1738 0 +-1733 -1739 0 +-1734 -1740 0 +-1723 -1753 0 +-1724 -1754 0 +-1725 -1755 0 +-1726 -1756 0 +-1727 -1757 0 +-1728 -1758 0 +-1723 -1747 0 +-1724 -1748 0 +-1725 -1749 0 +-1726 -1750 0 +-1727 -1751 0 +-1728 -1752 0 +-1723 -1741 0 +-1724 -1742 0 +-1725 -1743 0 +-1726 -1744 0 +-1727 -1745 0 +-1728 -1746 0 +-1723 -1735 0 +-1724 -1736 0 +-1725 -1737 0 +-1726 -1738 0 +-1727 -1739 0 +-1728 -1740 0 +-1723 -1729 0 +-1724 -1730 0 +-1725 -1731 0 +-1726 -1732 0 +-1727 -1733 0 +-1728 -1734 0 +-1717 -1747 0 +-1718 -1748 0 +-1719 -1749 0 +-1720 -1750 0 +-1721 -1751 0 +-1722 -1752 0 +-1717 -1741 0 +-1718 -1742 0 +-1719 -1743 0 +-1720 -1744 0 +-1721 -1745 0 +-1722 -1746 0 +-1717 -1735 0 +-1718 -1736 0 +-1719 -1737 0 +-1720 -1738 0 +-1721 -1739 0 +-1722 -1740 0 +-1717 -1729 0 +-1718 -1730 0 +-1719 -1731 0 +-1720 -1732 0 +-1721 -1733 0 +-1722 -1734 0 +-1717 -1723 0 +-1718 -1724 0 +-1719 -1725 0 +-1720 -1726 0 +-1721 -1727 0 +-1722 -1728 0 +-1711 -1741 0 +-1712 -1742 0 +-1713 -1743 0 +-1714 -1744 0 +-1715 -1745 0 +-1716 -1746 0 +-1711 -1735 0 +-1712 -1736 0 +-1713 -1737 0 +-1714 -1738 0 +-1715 -1739 0 +-1716 -1740 0 +-1711 -1729 0 +-1712 -1730 0 +-1713 -1731 0 +-1714 -1732 0 +-1715 -1733 0 +-1716 -1734 0 +-1711 -1723 0 +-1712 -1724 0 +-1713 -1725 0 +-1714 -1726 0 +-1715 -1727 0 +-1716 -1728 0 +-1711 -1717 0 +-1712 -1718 0 +-1713 -1719 0 +-1714 -1720 0 +-1715 -1721 0 +-1716 -1722 0 +-1705 -1735 0 +-1706 -1736 0 +-1707 -1737 0 +-1708 -1738 0 +-1709 -1739 0 +-1710 -1740 0 +-1705 -1729 0 +-1706 -1730 0 +-1707 -1731 0 +-1708 -1732 0 +-1709 -1733 0 +-1710 -1734 0 +-1705 -1723 0 +-1706 -1724 0 +-1707 -1725 0 +-1708 -1726 0 +-1709 -1727 0 +-1710 -1728 0 +-1705 -1717 0 +-1706 -1718 0 +-1707 -1719 0 +-1708 -1720 0 +-1709 -1721 0 +-1710 -1722 0 +-1705 -1711 0 +-1706 -1712 0 +-1707 -1713 0 +-1708 -1714 0 +-1709 -1715 0 +-1710 -1716 0 +-1699 -1729 0 +-1700 -1730 0 +-1701 -1731 0 +-1702 -1732 0 +-1703 -1733 0 +-1704 -1734 0 +-1699 -1723 0 +-1700 -1724 0 +-1701 -1725 0 +-1702 -1726 0 +-1703 -1727 0 +-1704 -1728 0 +-1699 -1717 0 +-1700 -1718 0 +-1701 -1719 0 +-1702 -1720 0 +-1703 -1721 0 +-1704 -1722 0 +-1699 -1711 0 +-1700 -1712 0 +-1701 -1713 0 +-1702 -1714 0 +-1703 -1715 0 +-1704 -1716 0 +-1699 -1705 0 +-1700 -1706 0 +-1701 -1707 0 +-1702 -1708 0 +-1703 -1709 0 +-1704 -1710 0 +-1693 -1723 0 +-1694 -1724 0 +-1695 -1725 0 +-1696 -1726 0 +-1697 -1727 0 +-1698 -1728 0 +-1693 -1717 0 +-1694 -1718 0 +-1695 -1719 0 +-1696 -1720 0 +-1697 -1721 0 +-1698 -1722 0 +-1693 -1711 0 +-1694 -1712 0 +-1695 -1713 0 +-1696 -1714 0 +-1697 -1715 0 +-1698 -1716 0 +-1693 -1705 0 +-1694 -1706 0 +-1695 -1707 0 +-1696 -1708 0 +-1697 -1709 0 +-1698 -1710 0 +-1687 -1717 0 +-1688 -1718 0 +-1689 -1719 0 +-1690 -1720 0 +-1691 -1721 0 +-1692 -1722 0 +-1687 -1711 0 +-1688 -1712 0 +-1689 -1713 0 +-1690 -1714 0 +-1691 -1715 0 +-1692 -1716 0 +-1687 -1705 0 +-1688 -1706 0 +-1689 -1707 0 +-1690 -1708 0 +-1691 -1709 0 +-1692 -1710 0 +-1687 -1699 0 +-1688 -1700 0 +-1689 -1701 0 +-1690 -1702 0 +-1691 -1703 0 +-1692 -1704 0 +-1687 -1693 0 +-1688 -1694 0 +-1689 -1695 0 +-1690 -1696 0 +-1691 -1697 0 +-1692 -1698 0 +-1681 -1711 0 +-1682 -1712 0 +-1683 -1713 0 +-1684 -1714 0 +-1685 -1715 0 +-1686 -1716 0 +-1681 -1705 0 +-1682 -1706 0 +-1683 -1707 0 +-1684 -1708 0 +-1685 -1709 0 +-1686 -1710 0 +-1681 -1699 0 +-1682 -1700 0 +-1683 -1701 0 +-1684 -1702 0 +-1685 -1703 0 +-1686 -1704 0 +-1681 -1693 0 +-1682 -1694 0 +-1683 -1695 0 +-1684 -1696 0 +-1685 -1697 0 +-1686 -1698 0 +-1681 -1687 0 +-1682 -1688 0 +-1683 -1689 0 +-1684 -1690 0 +-1685 -1691 0 +-1686 -1692 0 +-1675 -1705 0 +-1676 -1706 0 +-1677 -1707 0 +-1678 -1708 0 +-1679 -1709 0 +-1680 -1710 0 +-1675 -1699 0 +-1676 -1700 0 +-1677 -1701 0 +-1678 -1702 0 +-1679 -1703 0 +-1680 -1704 0 +-1675 -1693 0 +-1676 -1694 0 +-1677 -1695 0 +-1678 -1696 0 +-1679 -1697 0 +-1680 -1698 0 +-1675 -1687 0 +-1676 -1688 0 +-1677 -1689 0 +-1678 -1690 0 +-1679 -1691 0 +-1680 -1692 0 +-1675 -1681 0 +-1676 -1682 0 +-1677 -1683 0 +-1678 -1684 0 +-1679 -1685 0 +-1680 -1686 0 +-1669 -1693 0 +-1670 -1694 0 +-1671 -1695 0 +-1672 -1696 0 +-1673 -1697 0 +-1674 -1698 0 +-1669 -1681 0 +-1670 -1682 0 +-1671 -1683 0 +-1672 -1684 0 +-1673 -1685 0 +-1674 -1686 0 +-1669 -1675 0 +-1670 -1676 0 +-1671 -1677 0 +-1672 -1678 0 +-1673 -1679 0 +-1674 -1680 0 +-1663 -1693 0 +-1664 -1694 0 +-1665 -1695 0 +-1666 -1696 0 +-1667 -1697 0 +-1668 -1698 0 +-1663 -1687 0 +-1664 -1688 0 +-1665 -1689 0 +-1666 -1690 0 +-1667 -1691 0 +-1668 -1692 0 +-1663 -1681 0 +-1664 -1682 0 +-1665 -1683 0 +-1666 -1684 0 +-1667 -1685 0 +-1668 -1686 0 +-1663 -1675 0 +-1664 -1676 0 +-1665 -1677 0 +-1666 -1678 0 +-1667 -1679 0 +-1668 -1680 0 +-1663 -1669 0 +-1664 -1670 0 +-1665 -1671 0 +-1666 -1672 0 +-1667 -1673 0 +-1668 -1674 0 +-1657 -1687 0 +-1658 -1688 0 +-1659 -1689 0 +-1660 -1690 0 +-1661 -1691 0 +-1662 -1692 0 +-1657 -1681 0 +-1658 -1682 0 +-1659 -1683 0 +-1660 -1684 0 +-1661 -1685 0 +-1662 -1686 0 +-1657 -1675 0 +-1658 -1676 0 +-1659 -1677 0 +-1660 -1678 0 +-1661 -1679 0 +-1662 -1680 0 +-1657 -1669 0 +-1658 -1670 0 +-1659 -1671 0 +-1660 -1672 0 +-1661 -1673 0 +-1662 -1674 0 +-1657 -1663 0 +-1658 -1664 0 +-1659 -1665 0 +-1660 -1666 0 +-1661 -1667 0 +-1662 -1668 0 +-1651 -1681 0 +-1652 -1682 0 +-1653 -1683 0 +-1654 -1684 0 +-1655 -1685 0 +-1656 -1686 0 +-1651 -1669 0 +-1652 -1670 0 +-1653 -1671 0 +-1654 -1672 0 +-1655 -1673 0 +-1656 -1674 0 +-1651 -1663 0 +-1652 -1664 0 +-1653 -1665 0 +-1654 -1666 0 +-1655 -1667 0 +-1656 -1668 0 +-1651 -1657 0 +-1652 -1658 0 +-1653 -1659 0 +-1654 -1660 0 +-1655 -1661 0 +-1656 -1662 0 +-1645 -1675 0 +-1646 -1676 0 +-1647 -1677 0 +-1648 -1678 0 +-1649 -1679 0 +-1650 -1680 0 +-1645 -1669 0 +-1646 -1670 0 +-1647 -1671 0 +-1648 -1672 0 +-1649 -1673 0 +-1650 -1674 0 +-1645 -1663 0 +-1646 -1664 0 +-1647 -1665 0 +-1648 -1666 0 +-1649 -1667 0 +-1650 -1668 0 +-1645 -1657 0 +-1646 -1658 0 +-1647 -1659 0 +-1648 -1660 0 +-1649 -1661 0 +-1650 -1662 0 +-1639 -1669 0 +-1640 -1670 0 +-1641 -1671 0 +-1642 -1672 0 +-1643 -1673 0 +-1644 -1674 0 +-1639 -1663 0 +-1640 -1664 0 +-1641 -1665 0 +-1642 -1666 0 +-1643 -1667 0 +-1644 -1668 0 +-1639 -1651 0 +-1640 -1652 0 +-1641 -1653 0 +-1642 -1654 0 +-1643 -1655 0 +-1644 -1656 0 +-1639 -1645 0 +-1640 -1646 0 +-1641 -1647 0 +-1642 -1648 0 +-1643 -1649 0 +-1644 -1650 0 +-1633 -1663 0 +-1634 -1664 0 +-1635 -1665 0 +-1636 -1666 0 +-1637 -1667 0 +-1638 -1668 0 +-1633 -1657 0 +-1634 -1658 0 +-1635 -1659 0 +-1636 -1660 0 +-1637 -1661 0 +-1638 -1662 0 +-1633 -1651 0 +-1634 -1652 0 +-1635 -1653 0 +-1636 -1654 0 +-1637 -1655 0 +-1638 -1656 0 +-1633 -1645 0 +-1634 -1646 0 +-1635 -1647 0 +-1636 -1648 0 +-1637 -1649 0 +-1638 -1650 0 +-1633 -1639 0 +-1634 -1640 0 +-1635 -1641 0 +-1636 -1642 0 +-1637 -1643 0 +-1638 -1644 0 +-1627 -1657 0 +-1628 -1658 0 +-1629 -1659 0 +-1630 -1660 0 +-1631 -1661 0 +-1632 -1662 0 +-1627 -1651 0 +-1628 -1652 0 +-1629 -1653 0 +-1630 -1654 0 +-1631 -1655 0 +-1632 -1656 0 +-1627 -1645 0 +-1628 -1646 0 +-1629 -1647 0 +-1630 -1648 0 +-1631 -1649 0 +-1632 -1650 0 +-1627 -1633 0 +-1628 -1634 0 +-1629 -1635 0 +-1630 -1636 0 +-1631 -1637 0 +-1632 -1638 0 +-1621 -1645 0 +-1622 -1646 0 +-1623 -1647 0 +-1624 -1648 0 +-1625 -1649 0 +-1626 -1650 0 +-1621 -1639 0 +-1622 -1640 0 +-1623 -1641 0 +-1624 -1642 0 +-1625 -1643 0 +-1626 -1644 0 +-1621 -1633 0 +-1622 -1634 0 +-1623 -1635 0 +-1624 -1636 0 +-1625 -1637 0 +-1626 -1638 0 +-1621 -1627 0 +-1622 -1628 0 +-1623 -1629 0 +-1624 -1630 0 +-1625 -1631 0 +-1626 -1632 0 +-1615 -1645 0 +-1616 -1646 0 +-1617 -1647 0 +-1618 -1648 0 +-1619 -1649 0 +-1620 -1650 0 +-1615 -1639 0 +-1616 -1640 0 +-1617 -1641 0 +-1618 -1642 0 +-1619 -1643 0 +-1620 -1644 0 +-1615 -1633 0 +-1616 -1634 0 +-1617 -1635 0 +-1618 -1636 0 +-1619 -1637 0 +-1620 -1638 0 +-1615 -1627 0 +-1616 -1628 0 +-1617 -1629 0 +-1618 -1630 0 +-1619 -1631 0 +-1620 -1632 0 +-1615 -1621 0 +-1616 -1622 0 +-1617 -1623 0 +-1618 -1624 0 +-1619 -1625 0 +-1620 -1626 0 +-1609 -1639 0 +-1610 -1640 0 +-1611 -1641 0 +-1612 -1642 0 +-1613 -1643 0 +-1614 -1644 0 +-1609 -1633 0 +-1610 -1634 0 +-1611 -1635 0 +-1612 -1636 0 +-1613 -1637 0 +-1614 -1638 0 +-1609 -1627 0 +-1610 -1628 0 +-1611 -1629 0 +-1612 -1630 0 +-1613 -1631 0 +-1614 -1632 0 +-1609 -1621 0 +-1610 -1622 0 +-1611 -1623 0 +-1612 -1624 0 +-1613 -1625 0 +-1614 -1626 0 +-1603 -1633 0 +-1604 -1634 0 +-1605 -1635 0 +-1606 -1636 0 +-1607 -1637 0 +-1608 -1638 0 +-1603 -1627 0 +-1604 -1628 0 +-1605 -1629 0 +-1606 -1630 0 +-1607 -1631 0 +-1608 -1632 0 +-1603 -1621 0 +-1604 -1622 0 +-1605 -1623 0 +-1606 -1624 0 +-1607 -1625 0 +-1608 -1626 0 +-1603 -1615 0 +-1604 -1616 0 +-1605 -1617 0 +-1606 -1618 0 +-1607 -1619 0 +-1608 -1620 0 +-1603 -1609 0 +-1604 -1610 0 +-1605 -1611 0 +-1606 -1612 0 +-1607 -1613 0 +-1608 -1614 0 +-1597 -1627 0 +-1598 -1628 0 +-1599 -1629 0 +-1600 -1630 0 +-1601 -1631 0 +-1602 -1632 0 +-1597 -1621 0 +-1598 -1622 0 +-1599 -1623 0 +-1600 -1624 0 +-1601 -1625 0 +-1602 -1626 0 +-1597 -1615 0 +-1598 -1616 0 +-1599 -1617 0 +-1600 -1618 0 +-1601 -1619 0 +-1602 -1620 0 +-1597 -1609 0 +-1598 -1610 0 +-1599 -1611 0 +-1600 -1612 0 +-1601 -1613 0 +-1602 -1614 0 +-1597 -1603 0 +-1598 -1604 0 +-1599 -1605 0 +-1600 -1606 0 +-1601 -1607 0 +-1602 -1608 0 +-1591 -1621 0 +-1592 -1622 0 +-1593 -1623 0 +-1594 -1624 0 +-1595 -1625 0 +-1596 -1626 0 +-1591 -1615 0 +-1592 -1616 0 +-1593 -1617 0 +-1594 -1618 0 +-1595 -1619 0 +-1596 -1620 0 +-1591 -1609 0 +-1592 -1610 0 +-1593 -1611 0 +-1594 -1612 0 +-1595 -1613 0 +-1596 -1614 0 +-1591 -1603 0 +-1592 -1604 0 +-1593 -1605 0 +-1594 -1606 0 +-1595 -1607 0 +-1596 -1608 0 +-1591 -1597 0 +-1592 -1598 0 +-1593 -1599 0 +-1594 -1600 0 +-1595 -1601 0 +-1596 -1602 0 +-1585 -1615 0 +-1586 -1616 0 +-1587 -1617 0 +-1588 -1618 0 +-1589 -1619 0 +-1590 -1620 0 +-1585 -1609 0 +-1586 -1610 0 +-1587 -1611 0 +-1588 -1612 0 +-1589 -1613 0 +-1590 -1614 0 +-1585 -1603 0 +-1586 -1604 0 +-1587 -1605 0 +-1588 -1606 0 +-1589 -1607 0 +-1590 -1608 0 +-1585 -1597 0 +-1586 -1598 0 +-1587 -1599 0 +-1588 -1600 0 +-1589 -1601 0 +-1590 -1602 0 +-1585 -1591 0 +-1586 -1592 0 +-1587 -1593 0 +-1588 -1594 0 +-1589 -1595 0 +-1590 -1596 0 +-1579 -1609 0 +-1580 -1610 0 +-1581 -1611 0 +-1582 -1612 0 +-1583 -1613 0 +-1584 -1614 0 +-1579 -1603 0 +-1580 -1604 0 +-1581 -1605 0 +-1582 -1606 0 +-1583 -1607 0 +-1584 -1608 0 +-1579 -1597 0 +-1580 -1598 0 +-1581 -1599 0 +-1582 -1600 0 +-1583 -1601 0 +-1584 -1602 0 +-1579 -1591 0 +-1580 -1592 0 +-1581 -1593 0 +-1582 -1594 0 +-1583 -1595 0 +-1584 -1596 0 +-1579 -1585 0 +-1580 -1586 0 +-1581 -1587 0 +-1582 -1588 0 +-1583 -1589 0 +-1584 -1590 0 +-1573 -1603 0 +-1574 -1604 0 +-1575 -1605 0 +-1576 -1606 0 +-1577 -1607 0 +-1578 -1608 0 +-1573 -1597 0 +-1574 -1598 0 +-1575 -1599 0 +-1576 -1600 0 +-1577 -1601 0 +-1578 -1602 0 +-1573 -1591 0 +-1574 -1592 0 +-1575 -1593 0 +-1576 -1594 0 +-1577 -1595 0 +-1578 -1596 0 +-1573 -1585 0 +-1574 -1586 0 +-1575 -1587 0 +-1576 -1588 0 +-1577 -1589 0 +-1578 -1590 0 +-1573 -1579 0 +-1574 -1580 0 +-1575 -1581 0 +-1576 -1582 0 +-1577 -1583 0 +-1578 -1584 0 +-1567 -1597 0 +-1568 -1598 0 +-1569 -1599 0 +-1570 -1600 0 +-1571 -1601 0 +-1572 -1602 0 +-1567 -1591 0 +-1568 -1592 0 +-1569 -1593 0 +-1570 -1594 0 +-1571 -1595 0 +-1572 -1596 0 +-1567 -1585 0 +-1568 -1586 0 +-1569 -1587 0 +-1570 -1588 0 +-1571 -1589 0 +-1572 -1590 0 +-1567 -1579 0 +-1568 -1580 0 +-1569 -1581 0 +-1570 -1582 0 +-1571 -1583 0 +-1572 -1584 0 +-1567 -1573 0 +-1568 -1574 0 +-1569 -1575 0 +-1570 -1576 0 +-1571 -1577 0 +-1572 -1578 0 +-1561 -1591 0 +-1562 -1592 0 +-1563 -1593 0 +-1564 -1594 0 +-1565 -1595 0 +-1566 -1596 0 +-1561 -1585 0 +-1562 -1586 0 +-1563 -1587 0 +-1564 -1588 0 +-1565 -1589 0 +-1566 -1590 0 +-1561 -1579 0 +-1562 -1580 0 +-1563 -1581 0 +-1564 -1582 0 +-1565 -1583 0 +-1566 -1584 0 +-1561 -1573 0 +-1562 -1574 0 +-1563 -1575 0 +-1564 -1576 0 +-1565 -1577 0 +-1566 -1578 0 +-1561 -1567 0 +-1562 -1568 0 +-1563 -1569 0 +-1564 -1570 0 +-1565 -1571 0 +-1566 -1572 0 +-1555 -1585 0 +-1556 -1586 0 +-1557 -1587 0 +-1558 -1588 0 +-1559 -1589 0 +-1560 -1590 0 +-1555 -1579 0 +-1556 -1580 0 +-1557 -1581 0 +-1558 -1582 0 +-1559 -1583 0 +-1560 -1584 0 +-1555 -1573 0 +-1556 -1574 0 +-1557 -1575 0 +-1558 -1576 0 +-1559 -1577 0 +-1560 -1578 0 +-1555 -1567 0 +-1556 -1568 0 +-1557 -1569 0 +-1558 -1570 0 +-1559 -1571 0 +-1560 -1572 0 +-1555 -1561 0 +-1556 -1562 0 +-1557 -1563 0 +-1558 -1564 0 +-1559 -1565 0 +-1560 -1566 0 +-1549 -1579 0 +-1550 -1580 0 +-1551 -1581 0 +-1552 -1582 0 +-1553 -1583 0 +-1554 -1584 0 +-1549 -1573 0 +-1550 -1574 0 +-1551 -1575 0 +-1552 -1576 0 +-1553 -1577 0 +-1554 -1578 0 +-1549 -1561 0 +-1550 -1562 0 +-1551 -1563 0 +-1552 -1564 0 +-1553 -1565 0 +-1554 -1566 0 +-1549 -1555 0 +-1550 -1556 0 +-1551 -1557 0 +-1552 -1558 0 +-1553 -1559 0 +-1554 -1560 0 +-1543 -1573 0 +-1544 -1574 0 +-1545 -1575 0 +-1546 -1576 0 +-1547 -1577 0 +-1548 -1578 0 +-1543 -1567 0 +-1544 -1568 0 +-1545 -1569 0 +-1546 -1570 0 +-1547 -1571 0 +-1548 -1572 0 +-1543 -1561 0 +-1544 -1562 0 +-1545 -1563 0 +-1546 -1564 0 +-1547 -1565 0 +-1548 -1566 0 +-1543 -1555 0 +-1544 -1556 0 +-1545 -1557 0 +-1546 -1558 0 +-1547 -1559 0 +-1548 -1560 0 +-1543 -1549 0 +-1544 -1550 0 +-1545 -1551 0 +-1546 -1552 0 +-1547 -1553 0 +-1548 -1554 0 +-1537 -1567 0 +-1538 -1568 0 +-1539 -1569 0 +-1540 -1570 0 +-1541 -1571 0 +-1542 -1572 0 +-1537 -1561 0 +-1538 -1562 0 +-1539 -1563 0 +-1540 -1564 0 +-1541 -1565 0 +-1542 -1566 0 +-1537 -1555 0 +-1538 -1556 0 +-1539 -1557 0 +-1540 -1558 0 +-1541 -1559 0 +-1542 -1560 0 +-1537 -1549 0 +-1538 -1550 0 +-1539 -1551 0 +-1540 -1552 0 +-1541 -1553 0 +-1542 -1554 0 +-1537 -1543 0 +-1538 -1544 0 +-1539 -1545 0 +-1540 -1546 0 +-1541 -1547 0 +-1542 -1548 0 +-1531 -1561 0 +-1532 -1562 0 +-1533 -1563 0 +-1534 -1564 0 +-1535 -1565 0 +-1536 -1566 0 +-1531 -1555 0 +-1532 -1556 0 +-1533 -1557 0 +-1534 -1558 0 +-1535 -1559 0 +-1536 -1560 0 +-1531 -1549 0 +-1532 -1550 0 +-1533 -1551 0 +-1534 -1552 0 +-1535 -1553 0 +-1536 -1554 0 +-1531 -1543 0 +-1532 -1544 0 +-1533 -1545 0 +-1534 -1546 0 +-1535 -1547 0 +-1536 -1548 0 +-1531 -1537 0 +-1532 -1538 0 +-1533 -1539 0 +-1534 -1540 0 +-1535 -1541 0 +-1536 -1542 0 +-1525 -1549 0 +-1526 -1550 0 +-1527 -1551 0 +-1528 -1552 0 +-1529 -1553 0 +-1530 -1554 0 +-1525 -1543 0 +-1526 -1544 0 +-1527 -1545 0 +-1528 -1546 0 +-1529 -1547 0 +-1530 -1548 0 +-1525 -1537 0 +-1526 -1538 0 +-1527 -1539 0 +-1528 -1540 0 +-1529 -1541 0 +-1530 -1542 0 +-1525 -1531 0 +-1526 -1532 0 +-1527 -1533 0 +-1528 -1534 0 +-1529 -1535 0 +-1530 -1536 0 +-1519 -1549 0 +-1520 -1550 0 +-1521 -1551 0 +-1522 -1552 0 +-1523 -1553 0 +-1524 -1554 0 +-1519 -1543 0 +-1520 -1544 0 +-1521 -1545 0 +-1522 -1546 0 +-1523 -1547 0 +-1524 -1548 0 +-1519 -1537 0 +-1520 -1538 0 +-1521 -1539 0 +-1522 -1540 0 +-1523 -1541 0 +-1524 -1542 0 +-1519 -1531 0 +-1520 -1532 0 +-1521 -1533 0 +-1522 -1534 0 +-1523 -1535 0 +-1524 -1536 0 +-1519 -1525 0 +-1520 -1526 0 +-1521 -1527 0 +-1522 -1528 0 +-1523 -1529 0 +-1524 -1530 0 +-1513 -1543 0 +-1514 -1544 0 +-1515 -1545 0 +-1516 -1546 0 +-1517 -1547 0 +-1518 -1548 0 +-1513 -1537 0 +-1514 -1538 0 +-1515 -1539 0 +-1516 -1540 0 +-1517 -1541 0 +-1518 -1542 0 +-1513 -1531 0 +-1514 -1532 0 +-1515 -1533 0 +-1516 -1534 0 +-1517 -1535 0 +-1518 -1536 0 +-1513 -1525 0 +-1514 -1526 0 +-1515 -1527 0 +-1516 -1528 0 +-1517 -1529 0 +-1518 -1530 0 +-1513 -1519 0 +-1514 -1520 0 +-1515 -1521 0 +-1516 -1522 0 +-1517 -1523 0 +-1518 -1524 0 +-1507 -1531 0 +-1508 -1532 0 +-1509 -1533 0 +-1510 -1534 0 +-1511 -1535 0 +-1512 -1536 0 +-1507 -1525 0 +-1508 -1526 0 +-1509 -1527 0 +-1510 -1528 0 +-1511 -1529 0 +-1512 -1530 0 +-1507 -1519 0 +-1508 -1520 0 +-1509 -1521 0 +-1510 -1522 0 +-1511 -1523 0 +-1512 -1524 0 +-1507 -1513 0 +-1508 -1514 0 +-1509 -1515 0 +-1510 -1516 0 +-1511 -1517 0 +-1512 -1518 0 +-1501 -1531 0 +-1502 -1532 0 +-1503 -1533 0 +-1504 -1534 0 +-1505 -1535 0 +-1506 -1536 0 +-1501 -1525 0 +-1502 -1526 0 +-1503 -1527 0 +-1504 -1528 0 +-1505 -1529 0 +-1506 -1530 0 +-1501 -1519 0 +-1502 -1520 0 +-1503 -1521 0 +-1504 -1522 0 +-1505 -1523 0 +-1506 -1524 0 +-1501 -1513 0 +-1502 -1514 0 +-1503 -1515 0 +-1504 -1516 0 +-1505 -1517 0 +-1506 -1518 0 +-1501 -1507 0 +-1502 -1508 0 +-1503 -1509 0 +-1504 -1510 0 +-1505 -1511 0 +-1506 -1512 0 +-1495 -1525 0 +-1496 -1526 0 +-1497 -1527 0 +-1498 -1528 0 +-1499 -1529 0 +-1500 -1530 0 +-1495 -1519 0 +-1496 -1520 0 +-1497 -1521 0 +-1498 -1522 0 +-1499 -1523 0 +-1500 -1524 0 +-1495 -1513 0 +-1496 -1514 0 +-1497 -1515 0 +-1498 -1516 0 +-1499 -1517 0 +-1500 -1518 0 +-1495 -1507 0 +-1496 -1508 0 +-1497 -1509 0 +-1498 -1510 0 +-1499 -1511 0 +-1500 -1512 0 +-1495 -1501 0 +-1496 -1502 0 +-1497 -1503 0 +-1498 -1504 0 +-1499 -1505 0 +-1500 -1506 0 +-1489 -1519 0 +-1490 -1520 0 +-1491 -1521 0 +-1492 -1522 0 +-1493 -1523 0 +-1494 -1524 0 +-1489 -1513 0 +-1490 -1514 0 +-1491 -1515 0 +-1492 -1516 0 +-1493 -1517 0 +-1494 -1518 0 +-1489 -1507 0 +-1490 -1508 0 +-1491 -1509 0 +-1492 -1510 0 +-1493 -1511 0 +-1494 -1512 0 +-1489 -1501 0 +-1490 -1502 0 +-1491 -1503 0 +-1492 -1504 0 +-1493 -1505 0 +-1494 -1506 0 +-1489 -1495 0 +-1490 -1496 0 +-1491 -1497 0 +-1492 -1498 0 +-1493 -1499 0 +-1494 -1500 0 +-1483 -1513 0 +-1484 -1514 0 +-1485 -1515 0 +-1486 -1516 0 +-1487 -1517 0 +-1488 -1518 0 +-1483 -1507 0 +-1484 -1508 0 +-1485 -1509 0 +-1486 -1510 0 +-1487 -1511 0 +-1488 -1512 0 +-1483 -1501 0 +-1484 -1502 0 +-1485 -1503 0 +-1486 -1504 0 +-1487 -1505 0 +-1488 -1506 0 +-1483 -1495 0 +-1484 -1496 0 +-1485 -1497 0 +-1486 -1498 0 +-1487 -1499 0 +-1488 -1500 0 +-1483 -1489 0 +-1484 -1490 0 +-1485 -1491 0 +-1486 -1492 0 +-1487 -1493 0 +-1488 -1494 0 +-1477 -1507 0 +-1478 -1508 0 +-1479 -1509 0 +-1480 -1510 0 +-1481 -1511 0 +-1482 -1512 0 +-1477 -1501 0 +-1478 -1502 0 +-1479 -1503 0 +-1480 -1504 0 +-1481 -1505 0 +-1482 -1506 0 +-1477 -1495 0 +-1478 -1496 0 +-1479 -1497 0 +-1480 -1498 0 +-1481 -1499 0 +-1482 -1500 0 +-1477 -1489 0 +-1478 -1490 0 +-1479 -1491 0 +-1480 -1492 0 +-1481 -1493 0 +-1482 -1494 0 +-1477 -1483 0 +-1478 -1484 0 +-1479 -1485 0 +-1480 -1486 0 +-1481 -1487 0 +-1482 -1488 0 +-1471 -1495 0 +-1472 -1496 0 +-1473 -1497 0 +-1474 -1498 0 +-1475 -1499 0 +-1476 -1500 0 +-1471 -1489 0 +-1472 -1490 0 +-1473 -1491 0 +-1474 -1492 0 +-1475 -1493 0 +-1476 -1494 0 +-1471 -1483 0 +-1472 -1484 0 +-1473 -1485 0 +-1474 -1486 0 +-1475 -1487 0 +-1476 -1488 0 +-1471 -1477 0 +-1472 -1478 0 +-1473 -1479 0 +-1474 -1480 0 +-1475 -1481 0 +-1476 -1482 0 +-1465 -1495 0 +-1466 -1496 0 +-1467 -1497 0 +-1468 -1498 0 +-1469 -1499 0 +-1470 -1500 0 +-1465 -1489 0 +-1466 -1490 0 +-1467 -1491 0 +-1468 -1492 0 +-1469 -1493 0 +-1470 -1494 0 +-1465 -1483 0 +-1466 -1484 0 +-1467 -1485 0 +-1468 -1486 0 +-1469 -1487 0 +-1470 -1488 0 +-1465 -1477 0 +-1466 -1478 0 +-1467 -1479 0 +-1468 -1480 0 +-1469 -1481 0 +-1470 -1482 0 +-1465 -1471 0 +-1466 -1472 0 +-1467 -1473 0 +-1468 -1474 0 +-1469 -1475 0 +-1470 -1476 0 +-1459 -1489 0 +-1460 -1490 0 +-1461 -1491 0 +-1462 -1492 0 +-1463 -1493 0 +-1464 -1494 0 +-1459 -1483 0 +-1460 -1484 0 +-1461 -1485 0 +-1462 -1486 0 +-1463 -1487 0 +-1464 -1488 0 +-1459 -1477 0 +-1460 -1478 0 +-1461 -1479 0 +-1462 -1480 0 +-1463 -1481 0 +-1464 -1482 0 +-1459 -1471 0 +-1460 -1472 0 +-1461 -1473 0 +-1462 -1474 0 +-1463 -1475 0 +-1464 -1476 0 +-1459 -1465 0 +-1460 -1466 0 +-1461 -1467 0 +-1462 -1468 0 +-1463 -1469 0 +-1464 -1470 0 +-1453 -1483 0 +-1454 -1484 0 +-1455 -1485 0 +-1456 -1486 0 +-1457 -1487 0 +-1458 -1488 0 +-1453 -1477 0 +-1454 -1478 0 +-1455 -1479 0 +-1456 -1480 0 +-1457 -1481 0 +-1458 -1482 0 +-1453 -1471 0 +-1454 -1472 0 +-1455 -1473 0 +-1456 -1474 0 +-1457 -1475 0 +-1458 -1476 0 +-1453 -1465 0 +-1454 -1466 0 +-1455 -1467 0 +-1456 -1468 0 +-1457 -1469 0 +-1458 -1470 0 +-1453 -1459 0 +-1454 -1460 0 +-1455 -1461 0 +-1456 -1462 0 +-1457 -1463 0 +-1458 -1464 0 +-1447 -1477 0 +-1448 -1478 0 +-1449 -1479 0 +-1450 -1480 0 +-1451 -1481 0 +-1452 -1482 0 +-1447 -1471 0 +-1448 -1472 0 +-1449 -1473 0 +-1450 -1474 0 +-1451 -1475 0 +-1452 -1476 0 +-1447 -1465 0 +-1448 -1466 0 +-1449 -1467 0 +-1450 -1468 0 +-1451 -1469 0 +-1452 -1470 0 +-1447 -1459 0 +-1448 -1460 0 +-1449 -1461 0 +-1450 -1462 0 +-1451 -1463 0 +-1452 -1464 0 +-1447 -1453 0 +-1448 -1454 0 +-1449 -1455 0 +-1450 -1456 0 +-1451 -1457 0 +-1452 -1458 0 +-1441 -1471 0 +-1442 -1472 0 +-1443 -1473 0 +-1444 -1474 0 +-1445 -1475 0 +-1446 -1476 0 +-1441 -1465 0 +-1442 -1466 0 +-1443 -1467 0 +-1444 -1468 0 +-1445 -1469 0 +-1446 -1470 0 +-1441 -1459 0 +-1442 -1460 0 +-1443 -1461 0 +-1444 -1462 0 +-1445 -1463 0 +-1446 -1464 0 +-1441 -1453 0 +-1442 -1454 0 +-1443 -1455 0 +-1444 -1456 0 +-1445 -1457 0 +-1446 -1458 0 +-1441 -1447 0 +-1442 -1448 0 +-1443 -1449 0 +-1444 -1450 0 +-1445 -1451 0 +-1446 -1452 0 +-1435 -1465 0 +-1436 -1466 0 +-1437 -1467 0 +-1438 -1468 0 +-1439 -1469 0 +-1440 -1470 0 +-1435 -1459 0 +-1436 -1460 0 +-1437 -1461 0 +-1438 -1462 0 +-1439 -1463 0 +-1440 -1464 0 +-1435 -1453 0 +-1436 -1454 0 +-1437 -1455 0 +-1438 -1456 0 +-1439 -1457 0 +-1440 -1458 0 +-1435 -1447 0 +-1436 -1448 0 +-1437 -1449 0 +-1438 -1450 0 +-1439 -1451 0 +-1440 -1452 0 +-1435 -1441 0 +-1436 -1442 0 +-1437 -1443 0 +-1438 -1444 0 +-1439 -1445 0 +-1440 -1446 0 +-1429 -1459 0 +-1430 -1460 0 +-1431 -1461 0 +-1432 -1462 0 +-1433 -1463 0 +-1434 -1464 0 +-1429 -1453 0 +-1430 -1454 0 +-1431 -1455 0 +-1432 -1456 0 +-1433 -1457 0 +-1434 -1458 0 +-1429 -1447 0 +-1430 -1448 0 +-1431 -1449 0 +-1432 -1450 0 +-1433 -1451 0 +-1434 -1452 0 +-1429 -1441 0 +-1430 -1442 0 +-1431 -1443 0 +-1432 -1444 0 +-1433 -1445 0 +-1434 -1446 0 +-1429 -1435 0 +-1430 -1436 0 +-1431 -1437 0 +-1432 -1438 0 +-1433 -1439 0 +-1434 -1440 0 +-1423 -1453 0 +-1424 -1454 0 +-1425 -1455 0 +-1426 -1456 0 +-1427 -1457 0 +-1428 -1458 0 +-1423 -1447 0 +-1424 -1448 0 +-1425 -1449 0 +-1426 -1450 0 +-1427 -1451 0 +-1428 -1452 0 +-1423 -1441 0 +-1424 -1442 0 +-1425 -1443 0 +-1426 -1444 0 +-1427 -1445 0 +-1428 -1446 0 +-1423 -1435 0 +-1424 -1436 0 +-1425 -1437 0 +-1426 -1438 0 +-1427 -1439 0 +-1428 -1440 0 +-1423 -1429 0 +-1424 -1430 0 +-1425 -1431 0 +-1426 -1432 0 +-1427 -1433 0 +-1428 -1434 0 +-1417 -1447 0 +-1418 -1448 0 +-1419 -1449 0 +-1420 -1450 0 +-1421 -1451 0 +-1422 -1452 0 +-1417 -1441 0 +-1418 -1442 0 +-1419 -1443 0 +-1420 -1444 0 +-1421 -1445 0 +-1422 -1446 0 +-1417 -1435 0 +-1418 -1436 0 +-1419 -1437 0 +-1420 -1438 0 +-1421 -1439 0 +-1422 -1440 0 +-1417 -1429 0 +-1418 -1430 0 +-1419 -1431 0 +-1420 -1432 0 +-1421 -1433 0 +-1422 -1434 0 +-1417 -1423 0 +-1418 -1424 0 +-1419 -1425 0 +-1420 -1426 0 +-1421 -1427 0 +-1422 -1428 0 +-1411 -1441 0 +-1412 -1442 0 +-1413 -1443 0 +-1414 -1444 0 +-1415 -1445 0 +-1416 -1446 0 +-1411 -1435 0 +-1412 -1436 0 +-1413 -1437 0 +-1414 -1438 0 +-1415 -1439 0 +-1416 -1440 0 +-1411 -1429 0 +-1412 -1430 0 +-1413 -1431 0 +-1414 -1432 0 +-1415 -1433 0 +-1416 -1434 0 +-1411 -1423 0 +-1412 -1424 0 +-1413 -1425 0 +-1414 -1426 0 +-1415 -1427 0 +-1416 -1428 0 +-1411 -1417 0 +-1412 -1418 0 +-1413 -1419 0 +-1414 -1420 0 +-1415 -1421 0 +-1416 -1422 0 +-1405 -1435 0 +-1406 -1436 0 +-1407 -1437 0 +-1408 -1438 0 +-1409 -1439 0 +-1410 -1440 0 +-1405 -1429 0 +-1406 -1430 0 +-1407 -1431 0 +-1408 -1432 0 +-1409 -1433 0 +-1410 -1434 0 +-1405 -1423 0 +-1406 -1424 0 +-1407 -1425 0 +-1408 -1426 0 +-1409 -1427 0 +-1410 -1428 0 +-1405 -1417 0 +-1406 -1418 0 +-1407 -1419 0 +-1408 -1420 0 +-1409 -1421 0 +-1410 -1422 0 +-1405 -1411 0 +-1406 -1412 0 +-1407 -1413 0 +-1408 -1414 0 +-1409 -1415 0 +-1410 -1416 0 +-1399 -1429 0 +-1400 -1430 0 +-1401 -1431 0 +-1402 -1432 0 +-1403 -1433 0 +-1404 -1434 0 +-1399 -1423 0 +-1400 -1424 0 +-1401 -1425 0 +-1402 -1426 0 +-1403 -1427 0 +-1404 -1428 0 +-1399 -1417 0 +-1400 -1418 0 +-1401 -1419 0 +-1402 -1420 0 +-1403 -1421 0 +-1404 -1422 0 +-1399 -1411 0 +-1400 -1412 0 +-1401 -1413 0 +-1402 -1414 0 +-1403 -1415 0 +-1404 -1416 0 +-1399 -1405 0 +-1400 -1406 0 +-1401 -1407 0 +-1402 -1408 0 +-1403 -1409 0 +-1404 -1410 0 +-1393 -1423 0 +-1394 -1424 0 +-1395 -1425 0 +-1396 -1426 0 +-1397 -1427 0 +-1398 -1428 0 +-1393 -1417 0 +-1394 -1418 0 +-1395 -1419 0 +-1396 -1420 0 +-1397 -1421 0 +-1398 -1422 0 +-1393 -1411 0 +-1394 -1412 0 +-1395 -1413 0 +-1396 -1414 0 +-1397 -1415 0 +-1398 -1416 0 +-1393 -1405 0 +-1394 -1406 0 +-1395 -1407 0 +-1396 -1408 0 +-1397 -1409 0 +-1398 -1410 0 +-1393 -1399 0 +-1394 -1400 0 +-1395 -1401 0 +-1396 -1402 0 +-1397 -1403 0 +-1398 -1404 0 +-1387 -1417 0 +-1388 -1418 0 +-1389 -1419 0 +-1390 -1420 0 +-1391 -1421 0 +-1392 -1422 0 +-1387 -1411 0 +-1388 -1412 0 +-1389 -1413 0 +-1390 -1414 0 +-1391 -1415 0 +-1392 -1416 0 +-1387 -1405 0 +-1388 -1406 0 +-1389 -1407 0 +-1390 -1408 0 +-1391 -1409 0 +-1392 -1410 0 +-1387 -1399 0 +-1388 -1400 0 +-1389 -1401 0 +-1390 -1402 0 +-1391 -1403 0 +-1392 -1404 0 +-1387 -1393 0 +-1388 -1394 0 +-1389 -1395 0 +-1390 -1396 0 +-1391 -1397 0 +-1392 -1398 0 +-1381 -1405 0 +-1382 -1406 0 +-1383 -1407 0 +-1384 -1408 0 +-1385 -1409 0 +-1386 -1410 0 +-1381 -1399 0 +-1382 -1400 0 +-1383 -1401 0 +-1384 -1402 0 +-1385 -1403 0 +-1386 -1404 0 +-1381 -1393 0 +-1382 -1394 0 +-1383 -1395 0 +-1384 -1396 0 +-1385 -1397 0 +-1386 -1398 0 +-1381 -1387 0 +-1382 -1388 0 +-1383 -1389 0 +-1384 -1390 0 +-1385 -1391 0 +-1386 -1392 0 +-1375 -1405 0 +-1376 -1406 0 +-1377 -1407 0 +-1378 -1408 0 +-1379 -1409 0 +-1380 -1410 0 +-1375 -1399 0 +-1376 -1400 0 +-1377 -1401 0 +-1378 -1402 0 +-1379 -1403 0 +-1380 -1404 0 +-1375 -1393 0 +-1376 -1394 0 +-1377 -1395 0 +-1378 -1396 0 +-1379 -1397 0 +-1380 -1398 0 +-1375 -1387 0 +-1376 -1388 0 +-1377 -1389 0 +-1378 -1390 0 +-1379 -1391 0 +-1380 -1392 0 +-1375 -1381 0 +-1376 -1382 0 +-1377 -1383 0 +-1378 -1384 0 +-1379 -1385 0 +-1380 -1386 0 +-1369 -1399 0 +-1370 -1400 0 +-1371 -1401 0 +-1372 -1402 0 +-1373 -1403 0 +-1374 -1404 0 +-1369 -1393 0 +-1370 -1394 0 +-1371 -1395 0 +-1372 -1396 0 +-1373 -1397 0 +-1374 -1398 0 +-1369 -1387 0 +-1370 -1388 0 +-1371 -1389 0 +-1372 -1390 0 +-1373 -1391 0 +-1374 -1392 0 +-1369 -1381 0 +-1370 -1382 0 +-1371 -1383 0 +-1372 -1384 0 +-1373 -1385 0 +-1374 -1386 0 +-1369 -1375 0 +-1370 -1376 0 +-1371 -1377 0 +-1372 -1378 0 +-1373 -1379 0 +-1374 -1380 0 +-1363 -1393 0 +-1364 -1394 0 +-1365 -1395 0 +-1366 -1396 0 +-1367 -1397 0 +-1368 -1398 0 +-1363 -1387 0 +-1364 -1388 0 +-1365 -1389 0 +-1366 -1390 0 +-1367 -1391 0 +-1368 -1392 0 +-1363 -1381 0 +-1364 -1382 0 +-1365 -1383 0 +-1366 -1384 0 +-1367 -1385 0 +-1368 -1386 0 +-1363 -1375 0 +-1364 -1376 0 +-1365 -1377 0 +-1366 -1378 0 +-1367 -1379 0 +-1368 -1380 0 +-1363 -1369 0 +-1364 -1370 0 +-1365 -1371 0 +-1366 -1372 0 +-1367 -1373 0 +-1368 -1374 0 +-1357 -1387 0 +-1358 -1388 0 +-1359 -1389 0 +-1360 -1390 0 +-1361 -1391 0 +-1362 -1392 0 +-1357 -1381 0 +-1358 -1382 0 +-1359 -1383 0 +-1360 -1384 0 +-1361 -1385 0 +-1362 -1386 0 +-1357 -1375 0 +-1358 -1376 0 +-1359 -1377 0 +-1360 -1378 0 +-1361 -1379 0 +-1362 -1380 0 +-1357 -1369 0 +-1358 -1370 0 +-1359 -1371 0 +-1360 -1372 0 +-1361 -1373 0 +-1362 -1374 0 +-1357 -1363 0 +-1358 -1364 0 +-1359 -1365 0 +-1360 -1366 0 +-1361 -1367 0 +-1362 -1368 0 +-1351 -1381 0 +-1352 -1382 0 +-1353 -1383 0 +-1354 -1384 0 +-1355 -1385 0 +-1356 -1386 0 +-1351 -1375 0 +-1352 -1376 0 +-1353 -1377 0 +-1354 -1378 0 +-1355 -1379 0 +-1356 -1380 0 +-1351 -1369 0 +-1352 -1370 0 +-1353 -1371 0 +-1354 -1372 0 +-1355 -1373 0 +-1356 -1374 0 +-1351 -1363 0 +-1352 -1364 0 +-1353 -1365 0 +-1354 -1366 0 +-1355 -1367 0 +-1356 -1368 0 +-1351 -1357 0 +-1352 -1358 0 +-1353 -1359 0 +-1354 -1360 0 +-1355 -1361 0 +-1356 -1362 0 +-1345 -1375 0 +-1346 -1376 0 +-1347 -1377 0 +-1348 -1378 0 +-1349 -1379 0 +-1350 -1380 0 +-1345 -1369 0 +-1346 -1370 0 +-1347 -1371 0 +-1348 -1372 0 +-1349 -1373 0 +-1350 -1374 0 +-1345 -1363 0 +-1346 -1364 0 +-1347 -1365 0 +-1348 -1366 0 +-1349 -1367 0 +-1350 -1368 0 +-1345 -1357 0 +-1346 -1358 0 +-1347 -1359 0 +-1348 -1360 0 +-1349 -1361 0 +-1350 -1362 0 +-1345 -1351 0 +-1346 -1352 0 +-1347 -1353 0 +-1348 -1354 0 +-1349 -1355 0 +-1350 -1356 0 +-1339 -1369 0 +-1340 -1370 0 +-1341 -1371 0 +-1342 -1372 0 +-1343 -1373 0 +-1344 -1374 0 +-1339 -1363 0 +-1340 -1364 0 +-1341 -1365 0 +-1342 -1366 0 +-1343 -1367 0 +-1344 -1368 0 +-1339 -1357 0 +-1340 -1358 0 +-1341 -1359 0 +-1342 -1360 0 +-1343 -1361 0 +-1344 -1362 0 +-1339 -1351 0 +-1340 -1352 0 +-1341 -1353 0 +-1342 -1354 0 +-1343 -1355 0 +-1344 -1356 0 +-1333 -1357 0 +-1334 -1358 0 +-1335 -1359 0 +-1336 -1360 0 +-1337 -1361 0 +-1338 -1362 0 +-1333 -1351 0 +-1334 -1352 0 +-1335 -1353 0 +-1336 -1354 0 +-1337 -1355 0 +-1338 -1356 0 +-1333 -1345 0 +-1334 -1346 0 +-1335 -1347 0 +-1336 -1348 0 +-1337 -1349 0 +-1338 -1350 0 +-1333 -1339 0 +-1334 -1340 0 +-1335 -1341 0 +-1336 -1342 0 +-1337 -1343 0 +-1338 -1344 0 +-1327 -1351 0 +-1328 -1352 0 +-1329 -1353 0 +-1330 -1354 0 +-1331 -1355 0 +-1332 -1356 0 +-1327 -1345 0 +-1328 -1346 0 +-1329 -1347 0 +-1330 -1348 0 +-1331 -1349 0 +-1332 -1350 0 +-1327 -1339 0 +-1328 -1340 0 +-1329 -1341 0 +-1330 -1342 0 +-1331 -1343 0 +-1332 -1344 0 +-1327 -1333 0 +-1328 -1334 0 +-1329 -1335 0 +-1330 -1336 0 +-1331 -1337 0 +-1332 -1338 0 +-1321 -1351 0 +-1322 -1352 0 +-1323 -1353 0 +-1324 -1354 0 +-1325 -1355 0 +-1326 -1356 0 +-1321 -1345 0 +-1322 -1346 0 +-1323 -1347 0 +-1324 -1348 0 +-1325 -1349 0 +-1326 -1350 0 +-1321 -1339 0 +-1322 -1340 0 +-1323 -1341 0 +-1324 -1342 0 +-1325 -1343 0 +-1326 -1344 0 +-1321 -1333 0 +-1322 -1334 0 +-1323 -1335 0 +-1324 -1336 0 +-1325 -1337 0 +-1326 -1338 0 +-1321 -1327 0 +-1322 -1328 0 +-1323 -1329 0 +-1324 -1330 0 +-1325 -1331 0 +-1326 -1332 0 +-1315 -1345 0 +-1316 -1346 0 +-1317 -1347 0 +-1318 -1348 0 +-1319 -1349 0 +-1320 -1350 0 +-1315 -1339 0 +-1316 -1340 0 +-1317 -1341 0 +-1318 -1342 0 +-1319 -1343 0 +-1320 -1344 0 +-1315 -1333 0 +-1316 -1334 0 +-1317 -1335 0 +-1318 -1336 0 +-1319 -1337 0 +-1320 -1338 0 +-1315 -1327 0 +-1316 -1328 0 +-1317 -1329 0 +-1318 -1330 0 +-1319 -1331 0 +-1320 -1332 0 +-1315 -1321 0 +-1316 -1322 0 +-1317 -1323 0 +-1318 -1324 0 +-1319 -1325 0 +-1320 -1326 0 +-1309 -1339 0 +-1310 -1340 0 +-1311 -1341 0 +-1312 -1342 0 +-1313 -1343 0 +-1314 -1344 0 +-1309 -1333 0 +-1310 -1334 0 +-1311 -1335 0 +-1312 -1336 0 +-1313 -1337 0 +-1314 -1338 0 +-1309 -1327 0 +-1310 -1328 0 +-1311 -1329 0 +-1312 -1330 0 +-1313 -1331 0 +-1314 -1332 0 +-1309 -1321 0 +-1310 -1322 0 +-1311 -1323 0 +-1312 -1324 0 +-1313 -1325 0 +-1314 -1326 0 +-1309 -1315 0 +-1310 -1316 0 +-1311 -1317 0 +-1312 -1318 0 +-1313 -1319 0 +-1314 -1320 0 +-1303 -1333 0 +-1304 -1334 0 +-1305 -1335 0 +-1306 -1336 0 +-1307 -1337 0 +-1308 -1338 0 +-1303 -1327 0 +-1304 -1328 0 +-1305 -1329 0 +-1306 -1330 0 +-1307 -1331 0 +-1308 -1332 0 +-1303 -1321 0 +-1304 -1322 0 +-1305 -1323 0 +-1306 -1324 0 +-1307 -1325 0 +-1308 -1326 0 +-1303 -1315 0 +-1304 -1316 0 +-1305 -1317 0 +-1306 -1318 0 +-1307 -1319 0 +-1308 -1320 0 +-1303 -1309 0 +-1304 -1310 0 +-1305 -1311 0 +-1306 -1312 0 +-1307 -1313 0 +-1308 -1314 0 +-1297 -1327 0 +-1298 -1328 0 +-1299 -1329 0 +-1300 -1330 0 +-1301 -1331 0 +-1302 -1332 0 +-1297 -1321 0 +-1298 -1322 0 +-1299 -1323 0 +-1300 -1324 0 +-1301 -1325 0 +-1302 -1326 0 +-1297 -1315 0 +-1298 -1316 0 +-1299 -1317 0 +-1300 -1318 0 +-1301 -1319 0 +-1302 -1320 0 +-1297 -1309 0 +-1298 -1310 0 +-1299 -1311 0 +-1300 -1312 0 +-1301 -1313 0 +-1302 -1314 0 +-1297 -1303 0 +-1298 -1304 0 +-1299 -1305 0 +-1300 -1306 0 +-1301 -1307 0 +-1302 -1308 0 +-1291 -1321 0 +-1292 -1322 0 +-1293 -1323 0 +-1294 -1324 0 +-1295 -1325 0 +-1296 -1326 0 +-1291 -1315 0 +-1292 -1316 0 +-1293 -1317 0 +-1294 -1318 0 +-1295 -1319 0 +-1296 -1320 0 +-1291 -1309 0 +-1292 -1310 0 +-1293 -1311 0 +-1294 -1312 0 +-1295 -1313 0 +-1296 -1314 0 +-1291 -1303 0 +-1292 -1304 0 +-1293 -1305 0 +-1294 -1306 0 +-1295 -1307 0 +-1296 -1308 0 +-1291 -1297 0 +-1292 -1298 0 +-1293 -1299 0 +-1294 -1300 0 +-1295 -1301 0 +-1296 -1302 0 +-1285 -1309 0 +-1286 -1310 0 +-1287 -1311 0 +-1288 -1312 0 +-1289 -1313 0 +-1290 -1314 0 +-1285 -1297 0 +-1286 -1298 0 +-1287 -1299 0 +-1288 -1300 0 +-1289 -1301 0 +-1290 -1302 0 +-1285 -1291 0 +-1286 -1292 0 +-1287 -1293 0 +-1288 -1294 0 +-1289 -1295 0 +-1290 -1296 0 +-1279 -1309 0 +-1280 -1310 0 +-1281 -1311 0 +-1282 -1312 0 +-1283 -1313 0 +-1284 -1314 0 +-1279 -1303 0 +-1280 -1304 0 +-1281 -1305 0 +-1282 -1306 0 +-1283 -1307 0 +-1284 -1308 0 +-1279 -1297 0 +-1280 -1298 0 +-1281 -1299 0 +-1282 -1300 0 +-1283 -1301 0 +-1284 -1302 0 +-1279 -1291 0 +-1280 -1292 0 +-1281 -1293 0 +-1282 -1294 0 +-1283 -1295 0 +-1284 -1296 0 +-1279 -1285 0 +-1280 -1286 0 +-1281 -1287 0 +-1282 -1288 0 +-1283 -1289 0 +-1284 -1290 0 +-1273 -1303 0 +-1274 -1304 0 +-1275 -1305 0 +-1276 -1306 0 +-1277 -1307 0 +-1278 -1308 0 +-1273 -1297 0 +-1274 -1298 0 +-1275 -1299 0 +-1276 -1300 0 +-1277 -1301 0 +-1278 -1302 0 +-1273 -1291 0 +-1274 -1292 0 +-1275 -1293 0 +-1276 -1294 0 +-1277 -1295 0 +-1278 -1296 0 +-1273 -1285 0 +-1274 -1286 0 +-1275 -1287 0 +-1276 -1288 0 +-1277 -1289 0 +-1278 -1290 0 +-1273 -1279 0 +-1274 -1280 0 +-1275 -1281 0 +-1276 -1282 0 +-1277 -1283 0 +-1278 -1284 0 +-1267 -1297 0 +-1268 -1298 0 +-1269 -1299 0 +-1270 -1300 0 +-1271 -1301 0 +-1272 -1302 0 +-1267 -1291 0 +-1268 -1292 0 +-1269 -1293 0 +-1270 -1294 0 +-1271 -1295 0 +-1272 -1296 0 +-1267 -1285 0 +-1268 -1286 0 +-1269 -1287 0 +-1270 -1288 0 +-1271 -1289 0 +-1272 -1290 0 +-1267 -1279 0 +-1268 -1280 0 +-1269 -1281 0 +-1270 -1282 0 +-1271 -1283 0 +-1272 -1284 0 +-1267 -1273 0 +-1268 -1274 0 +-1269 -1275 0 +-1270 -1276 0 +-1271 -1277 0 +-1272 -1278 0 +-1261 -1291 0 +-1262 -1292 0 +-1263 -1293 0 +-1264 -1294 0 +-1265 -1295 0 +-1266 -1296 0 +-1261 -1285 0 +-1262 -1286 0 +-1263 -1287 0 +-1264 -1288 0 +-1265 -1289 0 +-1266 -1290 0 +-1261 -1279 0 +-1262 -1280 0 +-1263 -1281 0 +-1264 -1282 0 +-1265 -1283 0 +-1266 -1284 0 +-1261 -1273 0 +-1262 -1274 0 +-1263 -1275 0 +-1264 -1276 0 +-1265 -1277 0 +-1266 -1278 0 +-1261 -1267 0 +-1262 -1268 0 +-1263 -1269 0 +-1264 -1270 0 +-1265 -1271 0 +-1266 -1272 0 +-1255 -1285 0 +-1256 -1286 0 +-1257 -1287 0 +-1258 -1288 0 +-1259 -1289 0 +-1260 -1290 0 +-1255 -1279 0 +-1256 -1280 0 +-1257 -1281 0 +-1258 -1282 0 +-1259 -1283 0 +-1260 -1284 0 +-1255 -1273 0 +-1256 -1274 0 +-1257 -1275 0 +-1258 -1276 0 +-1259 -1277 0 +-1260 -1278 0 +-1255 -1267 0 +-1256 -1268 0 +-1257 -1269 0 +-1258 -1270 0 +-1259 -1271 0 +-1260 -1272 0 +-1255 -1261 0 +-1256 -1262 0 +-1257 -1263 0 +-1258 -1264 0 +-1259 -1265 0 +-1260 -1266 0 +-1249 -1273 0 +-1250 -1274 0 +-1251 -1275 0 +-1252 -1276 0 +-1253 -1277 0 +-1254 -1278 0 +-1249 -1267 0 +-1250 -1268 0 +-1251 -1269 0 +-1252 -1270 0 +-1253 -1271 0 +-1254 -1272 0 +-1249 -1261 0 +-1250 -1262 0 +-1251 -1263 0 +-1252 -1264 0 +-1253 -1265 0 +-1254 -1266 0 +-1249 -1255 0 +-1250 -1256 0 +-1251 -1257 0 +-1252 -1258 0 +-1253 -1259 0 +-1254 -1260 0 +-1243 -1273 0 +-1244 -1274 0 +-1245 -1275 0 +-1246 -1276 0 +-1247 -1277 0 +-1248 -1278 0 +-1243 -1267 0 +-1244 -1268 0 +-1245 -1269 0 +-1246 -1270 0 +-1247 -1271 0 +-1248 -1272 0 +-1243 -1261 0 +-1244 -1262 0 +-1245 -1263 0 +-1246 -1264 0 +-1247 -1265 0 +-1248 -1266 0 +-1243 -1255 0 +-1244 -1256 0 +-1245 -1257 0 +-1246 -1258 0 +-1247 -1259 0 +-1248 -1260 0 +-1243 -1249 0 +-1244 -1250 0 +-1245 -1251 0 +-1246 -1252 0 +-1247 -1253 0 +-1248 -1254 0 +-1237 -1267 0 +-1238 -1268 0 +-1239 -1269 0 +-1240 -1270 0 +-1241 -1271 0 +-1242 -1272 0 +-1237 -1261 0 +-1238 -1262 0 +-1239 -1263 0 +-1240 -1264 0 +-1241 -1265 0 +-1242 -1266 0 +-1237 -1255 0 +-1238 -1256 0 +-1239 -1257 0 +-1240 -1258 0 +-1241 -1259 0 +-1242 -1260 0 +-1237 -1249 0 +-1238 -1250 0 +-1239 -1251 0 +-1240 -1252 0 +-1241 -1253 0 +-1242 -1254 0 +-1237 -1243 0 +-1238 -1244 0 +-1239 -1245 0 +-1240 -1246 0 +-1241 -1247 0 +-1242 -1248 0 +-1231 -1261 0 +-1232 -1262 0 +-1233 -1263 0 +-1234 -1264 0 +-1235 -1265 0 +-1236 -1266 0 +-1231 -1255 0 +-1232 -1256 0 +-1233 -1257 0 +-1234 -1258 0 +-1235 -1259 0 +-1236 -1260 0 +-1231 -1249 0 +-1232 -1250 0 +-1233 -1251 0 +-1234 -1252 0 +-1235 -1253 0 +-1236 -1254 0 +-1231 -1243 0 +-1232 -1244 0 +-1233 -1245 0 +-1234 -1246 0 +-1235 -1247 0 +-1236 -1248 0 +-1231 -1237 0 +-1232 -1238 0 +-1233 -1239 0 +-1234 -1240 0 +-1235 -1241 0 +-1236 -1242 0 +-1225 -1255 0 +-1226 -1256 0 +-1227 -1257 0 +-1228 -1258 0 +-1229 -1259 0 +-1230 -1260 0 +-1225 -1249 0 +-1226 -1250 0 +-1227 -1251 0 +-1228 -1252 0 +-1229 -1253 0 +-1230 -1254 0 +-1225 -1243 0 +-1226 -1244 0 +-1227 -1245 0 +-1228 -1246 0 +-1229 -1247 0 +-1230 -1248 0 +-1225 -1237 0 +-1226 -1238 0 +-1227 -1239 0 +-1228 -1240 0 +-1229 -1241 0 +-1230 -1242 0 +-1225 -1231 0 +-1226 -1232 0 +-1227 -1233 0 +-1228 -1234 0 +-1229 -1235 0 +-1230 -1236 0 +-1219 -1249 0 +-1220 -1250 0 +-1221 -1251 0 +-1222 -1252 0 +-1223 -1253 0 +-1224 -1254 0 +-1219 -1243 0 +-1220 -1244 0 +-1221 -1245 0 +-1222 -1246 0 +-1223 -1247 0 +-1224 -1248 0 +-1219 -1237 0 +-1220 -1238 0 +-1221 -1239 0 +-1222 -1240 0 +-1223 -1241 0 +-1224 -1242 0 +-1219 -1231 0 +-1220 -1232 0 +-1221 -1233 0 +-1222 -1234 0 +-1223 -1235 0 +-1224 -1236 0 +-1219 -1225 0 +-1220 -1226 0 +-1221 -1227 0 +-1222 -1228 0 +-1223 -1229 0 +-1224 -1230 0 +-1213 -1243 0 +-1214 -1244 0 +-1215 -1245 0 +-1216 -1246 0 +-1217 -1247 0 +-1218 -1248 0 +-1213 -1237 0 +-1214 -1238 0 +-1215 -1239 0 +-1216 -1240 0 +-1217 -1241 0 +-1218 -1242 0 +-1213 -1231 0 +-1214 -1232 0 +-1215 -1233 0 +-1216 -1234 0 +-1217 -1235 0 +-1218 -1236 0 +-1213 -1225 0 +-1214 -1226 0 +-1215 -1227 0 +-1216 -1228 0 +-1217 -1229 0 +-1218 -1230 0 +-1213 -1219 0 +-1214 -1220 0 +-1215 -1221 0 +-1216 -1222 0 +-1217 -1223 0 +-1218 -1224 0 +-1207 -1237 0 +-1208 -1238 0 +-1209 -1239 0 +-1210 -1240 0 +-1211 -1241 0 +-1212 -1242 0 +-1207 -1231 0 +-1208 -1232 0 +-1209 -1233 0 +-1210 -1234 0 +-1211 -1235 0 +-1212 -1236 0 +-1207 -1225 0 +-1208 -1226 0 +-1209 -1227 0 +-1210 -1228 0 +-1211 -1229 0 +-1212 -1230 0 +-1207 -1219 0 +-1208 -1220 0 +-1209 -1221 0 +-1210 -1222 0 +-1211 -1223 0 +-1212 -1224 0 +-1207 -1213 0 +-1208 -1214 0 +-1209 -1215 0 +-1210 -1216 0 +-1211 -1217 0 +-1212 -1218 0 +-1201 -1231 0 +-1202 -1232 0 +-1203 -1233 0 +-1204 -1234 0 +-1205 -1235 0 +-1206 -1236 0 +-1201 -1225 0 +-1202 -1226 0 +-1203 -1227 0 +-1204 -1228 0 +-1205 -1229 0 +-1206 -1230 0 +-1201 -1219 0 +-1202 -1220 0 +-1203 -1221 0 +-1204 -1222 0 +-1205 -1223 0 +-1206 -1224 0 +-1201 -1213 0 +-1202 -1214 0 +-1203 -1215 0 +-1204 -1216 0 +-1205 -1217 0 +-1206 -1218 0 +-1201 -1207 0 +-1202 -1208 0 +-1203 -1209 0 +-1204 -1210 0 +-1205 -1211 0 +-1206 -1212 0 +-1195 -1225 0 +-1196 -1226 0 +-1197 -1227 0 +-1198 -1228 0 +-1199 -1229 0 +-1200 -1230 0 +-1195 -1219 0 +-1196 -1220 0 +-1197 -1221 0 +-1198 -1222 0 +-1199 -1223 0 +-1200 -1224 0 +-1195 -1213 0 +-1196 -1214 0 +-1197 -1215 0 +-1198 -1216 0 +-1199 -1217 0 +-1200 -1218 0 +-1195 -1207 0 +-1196 -1208 0 +-1197 -1209 0 +-1198 -1210 0 +-1199 -1211 0 +-1200 -1212 0 +-1195 -1201 0 +-1196 -1202 0 +-1197 -1203 0 +-1198 -1204 0 +-1199 -1205 0 +-1200 -1206 0 +-1189 -1219 0 +-1190 -1220 0 +-1191 -1221 0 +-1192 -1222 0 +-1193 -1223 0 +-1194 -1224 0 +-1189 -1213 0 +-1190 -1214 0 +-1191 -1215 0 +-1192 -1216 0 +-1193 -1217 0 +-1194 -1218 0 +-1189 -1207 0 +-1190 -1208 0 +-1191 -1209 0 +-1192 -1210 0 +-1193 -1211 0 +-1194 -1212 0 +-1189 -1201 0 +-1190 -1202 0 +-1191 -1203 0 +-1192 -1204 0 +-1193 -1205 0 +-1194 -1206 0 +-1189 -1195 0 +-1190 -1196 0 +-1191 -1197 0 +-1192 -1198 0 +-1193 -1199 0 +-1194 -1200 0 +-1183 -1213 0 +-1184 -1214 0 +-1185 -1215 0 +-1186 -1216 0 +-1187 -1217 0 +-1188 -1218 0 +-1183 -1207 0 +-1184 -1208 0 +-1185 -1209 0 +-1186 -1210 0 +-1187 -1211 0 +-1188 -1212 0 +-1183 -1201 0 +-1184 -1202 0 +-1185 -1203 0 +-1186 -1204 0 +-1187 -1205 0 +-1188 -1206 0 +-1183 -1195 0 +-1184 -1196 0 +-1185 -1197 0 +-1186 -1198 0 +-1187 -1199 0 +-1188 -1200 0 +-1183 -1189 0 +-1184 -1190 0 +-1185 -1191 0 +-1186 -1192 0 +-1187 -1193 0 +-1188 -1194 0 +-1177 -1207 0 +-1178 -1208 0 +-1179 -1209 0 +-1180 -1210 0 +-1181 -1211 0 +-1182 -1212 0 +-1177 -1201 0 +-1178 -1202 0 +-1179 -1203 0 +-1180 -1204 0 +-1181 -1205 0 +-1182 -1206 0 +-1177 -1195 0 +-1178 -1196 0 +-1179 -1197 0 +-1180 -1198 0 +-1181 -1199 0 +-1182 -1200 0 +-1177 -1189 0 +-1178 -1190 0 +-1179 -1191 0 +-1180 -1192 0 +-1181 -1193 0 +-1182 -1194 0 +-1177 -1183 0 +-1178 -1184 0 +-1179 -1185 0 +-1180 -1186 0 +-1181 -1187 0 +-1182 -1188 0 +-1171 -1201 0 +-1172 -1202 0 +-1173 -1203 0 +-1174 -1204 0 +-1175 -1205 0 +-1176 -1206 0 +-1171 -1195 0 +-1172 -1196 0 +-1173 -1197 0 +-1174 -1198 0 +-1175 -1199 0 +-1176 -1200 0 +-1171 -1189 0 +-1172 -1190 0 +-1173 -1191 0 +-1174 -1192 0 +-1175 -1193 0 +-1176 -1194 0 +-1171 -1183 0 +-1172 -1184 0 +-1173 -1185 0 +-1174 -1186 0 +-1175 -1187 0 +-1176 -1188 0 +-1171 -1177 0 +-1172 -1178 0 +-1173 -1179 0 +-1174 -1180 0 +-1175 -1181 0 +-1176 -1182 0 +-1165 -1195 0 +-1166 -1196 0 +-1167 -1197 0 +-1168 -1198 0 +-1169 -1199 0 +-1170 -1200 0 +-1165 -1189 0 +-1166 -1190 0 +-1167 -1191 0 +-1168 -1192 0 +-1169 -1193 0 +-1170 -1194 0 +-1165 -1183 0 +-1166 -1184 0 +-1167 -1185 0 +-1168 -1186 0 +-1169 -1187 0 +-1170 -1188 0 +-1165 -1177 0 +-1166 -1178 0 +-1167 -1179 0 +-1168 -1180 0 +-1169 -1181 0 +-1170 -1182 0 +-1165 -1171 0 +-1166 -1172 0 +-1167 -1173 0 +-1168 -1174 0 +-1169 -1175 0 +-1170 -1176 0 +-1159 -1189 0 +-1160 -1190 0 +-1161 -1191 0 +-1162 -1192 0 +-1163 -1193 0 +-1164 -1194 0 +-1159 -1183 0 +-1160 -1184 0 +-1161 -1185 0 +-1162 -1186 0 +-1163 -1187 0 +-1164 -1188 0 +-1159 -1177 0 +-1160 -1178 0 +-1161 -1179 0 +-1162 -1180 0 +-1163 -1181 0 +-1164 -1182 0 +-1159 -1171 0 +-1160 -1172 0 +-1161 -1173 0 +-1162 -1174 0 +-1163 -1175 0 +-1164 -1176 0 +-1153 -1183 0 +-1154 -1184 0 +-1155 -1185 0 +-1156 -1186 0 +-1157 -1187 0 +-1158 -1188 0 +-1153 -1177 0 +-1154 -1178 0 +-1155 -1179 0 +-1156 -1180 0 +-1157 -1181 0 +-1158 -1182 0 +-1153 -1171 0 +-1154 -1172 0 +-1155 -1173 0 +-1156 -1174 0 +-1157 -1175 0 +-1158 -1176 0 +-1153 -1165 0 +-1154 -1166 0 +-1155 -1167 0 +-1156 -1168 0 +-1157 -1169 0 +-1158 -1170 0 +-1153 -1159 0 +-1154 -1160 0 +-1155 -1161 0 +-1156 -1162 0 +-1157 -1163 0 +-1158 -1164 0 +-1147 -1177 0 +-1148 -1178 0 +-1149 -1179 0 +-1150 -1180 0 +-1151 -1181 0 +-1152 -1182 0 +-1147 -1171 0 +-1148 -1172 0 +-1149 -1173 0 +-1150 -1174 0 +-1151 -1175 0 +-1152 -1176 0 +-1147 -1165 0 +-1148 -1166 0 +-1149 -1167 0 +-1150 -1168 0 +-1151 -1169 0 +-1152 -1170 0 +-1147 -1159 0 +-1148 -1160 0 +-1149 -1161 0 +-1150 -1162 0 +-1151 -1163 0 +-1152 -1164 0 +-1147 -1153 0 +-1148 -1154 0 +-1149 -1155 0 +-1150 -1156 0 +-1151 -1157 0 +-1152 -1158 0 +-1141 -1171 0 +-1142 -1172 0 +-1143 -1173 0 +-1144 -1174 0 +-1145 -1175 0 +-1146 -1176 0 +-1141 -1165 0 +-1142 -1166 0 +-1143 -1167 0 +-1144 -1168 0 +-1145 -1169 0 +-1146 -1170 0 +-1141 -1159 0 +-1142 -1160 0 +-1143 -1161 0 +-1144 -1162 0 +-1145 -1163 0 +-1146 -1164 0 +-1141 -1153 0 +-1142 -1154 0 +-1143 -1155 0 +-1144 -1156 0 +-1145 -1157 0 +-1146 -1158 0 +-1141 -1147 0 +-1142 -1148 0 +-1143 -1149 0 +-1144 -1150 0 +-1145 -1151 0 +-1146 -1152 0 +-1135 -1165 0 +-1136 -1166 0 +-1137 -1167 0 +-1138 -1168 0 +-1139 -1169 0 +-1140 -1170 0 +-1135 -1159 0 +-1136 -1160 0 +-1137 -1161 0 +-1138 -1162 0 +-1139 -1163 0 +-1140 -1164 0 +-1135 -1147 0 +-1136 -1148 0 +-1137 -1149 0 +-1138 -1150 0 +-1139 -1151 0 +-1140 -1152 0 +-1135 -1141 0 +-1136 -1142 0 +-1137 -1143 0 +-1138 -1144 0 +-1139 -1145 0 +-1140 -1146 0 +-1129 -1159 0 +-1130 -1160 0 +-1131 -1161 0 +-1132 -1162 0 +-1133 -1163 0 +-1134 -1164 0 +-1129 -1153 0 +-1130 -1154 0 +-1131 -1155 0 +-1132 -1156 0 +-1133 -1157 0 +-1134 -1158 0 +-1129 -1147 0 +-1130 -1148 0 +-1131 -1149 0 +-1132 -1150 0 +-1133 -1151 0 +-1134 -1152 0 +-1129 -1141 0 +-1130 -1142 0 +-1131 -1143 0 +-1132 -1144 0 +-1133 -1145 0 +-1134 -1146 0 +-1129 -1135 0 +-1130 -1136 0 +-1131 -1137 0 +-1132 -1138 0 +-1133 -1139 0 +-1134 -1140 0 +-1123 -1153 0 +-1124 -1154 0 +-1125 -1155 0 +-1126 -1156 0 +-1127 -1157 0 +-1128 -1158 0 +-1123 -1147 0 +-1124 -1148 0 +-1125 -1149 0 +-1126 -1150 0 +-1127 -1151 0 +-1128 -1152 0 +-1123 -1141 0 +-1124 -1142 0 +-1125 -1143 0 +-1126 -1144 0 +-1127 -1145 0 +-1128 -1146 0 +-1123 -1135 0 +-1124 -1136 0 +-1125 -1137 0 +-1126 -1138 0 +-1127 -1139 0 +-1128 -1140 0 +-1123 -1129 0 +-1124 -1130 0 +-1125 -1131 0 +-1126 -1132 0 +-1127 -1133 0 +-1128 -1134 0 +-1117 -1147 0 +-1118 -1148 0 +-1119 -1149 0 +-1120 -1150 0 +-1121 -1151 0 +-1122 -1152 0 +-1117 -1141 0 +-1118 -1142 0 +-1119 -1143 0 +-1120 -1144 0 +-1121 -1145 0 +-1122 -1146 0 +-1117 -1135 0 +-1118 -1136 0 +-1119 -1137 0 +-1120 -1138 0 +-1121 -1139 0 +-1122 -1140 0 +-1117 -1129 0 +-1118 -1130 0 +-1119 -1131 0 +-1120 -1132 0 +-1121 -1133 0 +-1122 -1134 0 +-1117 -1123 0 +-1118 -1124 0 +-1119 -1125 0 +-1120 -1126 0 +-1121 -1127 0 +-1122 -1128 0 +-1111 -1141 0 +-1112 -1142 0 +-1113 -1143 0 +-1114 -1144 0 +-1115 -1145 0 +-1116 -1146 0 +-1111 -1135 0 +-1112 -1136 0 +-1113 -1137 0 +-1114 -1138 0 +-1115 -1139 0 +-1116 -1140 0 +-1111 -1129 0 +-1112 -1130 0 +-1113 -1131 0 +-1114 -1132 0 +-1115 -1133 0 +-1116 -1134 0 +-1111 -1123 0 +-1112 -1124 0 +-1113 -1125 0 +-1114 -1126 0 +-1115 -1127 0 +-1116 -1128 0 +-1111 -1117 0 +-1112 -1118 0 +-1113 -1119 0 +-1114 -1120 0 +-1115 -1121 0 +-1116 -1122 0 +-1105 -1135 0 +-1106 -1136 0 +-1107 -1137 0 +-1108 -1138 0 +-1109 -1139 0 +-1110 -1140 0 +-1105 -1129 0 +-1106 -1130 0 +-1107 -1131 0 +-1108 -1132 0 +-1109 -1133 0 +-1110 -1134 0 +-1105 -1123 0 +-1106 -1124 0 +-1107 -1125 0 +-1108 -1126 0 +-1109 -1127 0 +-1110 -1128 0 +-1105 -1117 0 +-1106 -1118 0 +-1107 -1119 0 +-1108 -1120 0 +-1109 -1121 0 +-1110 -1122 0 +-1105 -1111 0 +-1106 -1112 0 +-1107 -1113 0 +-1108 -1114 0 +-1109 -1115 0 +-1110 -1116 0 +-1099 -1129 0 +-1100 -1130 0 +-1101 -1131 0 +-1102 -1132 0 +-1103 -1133 0 +-1104 -1134 0 +-1099 -1123 0 +-1100 -1124 0 +-1101 -1125 0 +-1102 -1126 0 +-1103 -1127 0 +-1104 -1128 0 +-1099 -1117 0 +-1100 -1118 0 +-1101 -1119 0 +-1102 -1120 0 +-1103 -1121 0 +-1104 -1122 0 +-1099 -1111 0 +-1100 -1112 0 +-1101 -1113 0 +-1102 -1114 0 +-1103 -1115 0 +-1104 -1116 0 +-1099 -1105 0 +-1100 -1106 0 +-1101 -1107 0 +-1102 -1108 0 +-1103 -1109 0 +-1104 -1110 0 +-1093 -1123 0 +-1094 -1124 0 +-1095 -1125 0 +-1096 -1126 0 +-1097 -1127 0 +-1098 -1128 0 +-1093 -1117 0 +-1094 -1118 0 +-1095 -1119 0 +-1096 -1120 0 +-1097 -1121 0 +-1098 -1122 0 +-1093 -1111 0 +-1094 -1112 0 +-1095 -1113 0 +-1096 -1114 0 +-1097 -1115 0 +-1098 -1116 0 +-1093 -1105 0 +-1094 -1106 0 +-1095 -1107 0 +-1096 -1108 0 +-1097 -1109 0 +-1098 -1110 0 +-1093 -1099 0 +-1094 -1100 0 +-1095 -1101 0 +-1096 -1102 0 +-1097 -1103 0 +-1098 -1104 0 +-1087 -1117 0 +-1088 -1118 0 +-1089 -1119 0 +-1090 -1120 0 +-1091 -1121 0 +-1092 -1122 0 +-1087 -1111 0 +-1088 -1112 0 +-1089 -1113 0 +-1090 -1114 0 +-1091 -1115 0 +-1092 -1116 0 +-1087 -1105 0 +-1088 -1106 0 +-1089 -1107 0 +-1090 -1108 0 +-1091 -1109 0 +-1092 -1110 0 +-1087 -1099 0 +-1088 -1100 0 +-1089 -1101 0 +-1090 -1102 0 +-1091 -1103 0 +-1092 -1104 0 +-1087 -1093 0 +-1088 -1094 0 +-1089 -1095 0 +-1090 -1096 0 +-1091 -1097 0 +-1092 -1098 0 +-1081 -1111 0 +-1082 -1112 0 +-1083 -1113 0 +-1084 -1114 0 +-1085 -1115 0 +-1086 -1116 0 +-1081 -1105 0 +-1082 -1106 0 +-1083 -1107 0 +-1084 -1108 0 +-1085 -1109 0 +-1086 -1110 0 +-1081 -1099 0 +-1082 -1100 0 +-1083 -1101 0 +-1084 -1102 0 +-1085 -1103 0 +-1086 -1104 0 +-1081 -1093 0 +-1082 -1094 0 +-1083 -1095 0 +-1084 -1096 0 +-1085 -1097 0 +-1086 -1098 0 +-1081 -1087 0 +-1082 -1088 0 +-1083 -1089 0 +-1084 -1090 0 +-1085 -1091 0 +-1086 -1092 0 +-1075 -1105 0 +-1076 -1106 0 +-1077 -1107 0 +-1078 -1108 0 +-1079 -1109 0 +-1080 -1110 0 +-1075 -1099 0 +-1076 -1100 0 +-1077 -1101 0 +-1078 -1102 0 +-1079 -1103 0 +-1080 -1104 0 +-1075 -1093 0 +-1076 -1094 0 +-1077 -1095 0 +-1078 -1096 0 +-1079 -1097 0 +-1080 -1098 0 +-1075 -1081 0 +-1076 -1082 0 +-1077 -1083 0 +-1078 -1084 0 +-1079 -1085 0 +-1080 -1086 0 +-1069 -1099 0 +-1070 -1100 0 +-1071 -1101 0 +-1072 -1102 0 +-1073 -1103 0 +-1074 -1104 0 +-1069 -1093 0 +-1070 -1094 0 +-1071 -1095 0 +-1072 -1096 0 +-1073 -1097 0 +-1074 -1098 0 +-1069 -1087 0 +-1070 -1088 0 +-1071 -1089 0 +-1072 -1090 0 +-1073 -1091 0 +-1074 -1092 0 +-1069 -1081 0 +-1070 -1082 0 +-1071 -1083 0 +-1072 -1084 0 +-1073 -1085 0 +-1074 -1086 0 +-1069 -1075 0 +-1070 -1076 0 +-1071 -1077 0 +-1072 -1078 0 +-1073 -1079 0 +-1074 -1080 0 +-1063 -1093 0 +-1064 -1094 0 +-1065 -1095 0 +-1066 -1096 0 +-1067 -1097 0 +-1068 -1098 0 +-1063 -1087 0 +-1064 -1088 0 +-1065 -1089 0 +-1066 -1090 0 +-1067 -1091 0 +-1068 -1092 0 +-1063 -1081 0 +-1064 -1082 0 +-1065 -1083 0 +-1066 -1084 0 +-1067 -1085 0 +-1068 -1086 0 +-1063 -1075 0 +-1064 -1076 0 +-1065 -1077 0 +-1066 -1078 0 +-1067 -1079 0 +-1068 -1080 0 +-1063 -1069 0 +-1064 -1070 0 +-1065 -1071 0 +-1066 -1072 0 +-1067 -1073 0 +-1068 -1074 0 +-1057 -1087 0 +-1058 -1088 0 +-1059 -1089 0 +-1060 -1090 0 +-1061 -1091 0 +-1062 -1092 0 +-1057 -1081 0 +-1058 -1082 0 +-1059 -1083 0 +-1060 -1084 0 +-1061 -1085 0 +-1062 -1086 0 +-1057 -1075 0 +-1058 -1076 0 +-1059 -1077 0 +-1060 -1078 0 +-1061 -1079 0 +-1062 -1080 0 +-1057 -1069 0 +-1058 -1070 0 +-1059 -1071 0 +-1060 -1072 0 +-1061 -1073 0 +-1062 -1074 0 +-1057 -1063 0 +-1058 -1064 0 +-1059 -1065 0 +-1060 -1066 0 +-1061 -1067 0 +-1062 -1068 0 +-1051 -1081 0 +-1052 -1082 0 +-1053 -1083 0 +-1054 -1084 0 +-1055 -1085 0 +-1056 -1086 0 +-1051 -1075 0 +-1052 -1076 0 +-1053 -1077 0 +-1054 -1078 0 +-1055 -1079 0 +-1056 -1080 0 +-1051 -1069 0 +-1052 -1070 0 +-1053 -1071 0 +-1054 -1072 0 +-1055 -1073 0 +-1056 -1074 0 +-1051 -1063 0 +-1052 -1064 0 +-1053 -1065 0 +-1054 -1066 0 +-1055 -1067 0 +-1056 -1068 0 +-1045 -1075 0 +-1046 -1076 0 +-1047 -1077 0 +-1048 -1078 0 +-1049 -1079 0 +-1050 -1080 0 +-1045 -1069 0 +-1046 -1070 0 +-1047 -1071 0 +-1048 -1072 0 +-1049 -1073 0 +-1050 -1074 0 +-1045 -1063 0 +-1046 -1064 0 +-1047 -1065 0 +-1048 -1066 0 +-1049 -1067 0 +-1050 -1068 0 +-1045 -1057 0 +-1046 -1058 0 +-1047 -1059 0 +-1048 -1060 0 +-1049 -1061 0 +-1050 -1062 0 +-1045 -1051 0 +-1046 -1052 0 +-1047 -1053 0 +-1048 -1054 0 +-1049 -1055 0 +-1050 -1056 0 +-1039 -1069 0 +-1040 -1070 0 +-1041 -1071 0 +-1042 -1072 0 +-1043 -1073 0 +-1044 -1074 0 +-1039 -1063 0 +-1040 -1064 0 +-1041 -1065 0 +-1042 -1066 0 +-1043 -1067 0 +-1044 -1068 0 +-1039 -1057 0 +-1040 -1058 0 +-1041 -1059 0 +-1042 -1060 0 +-1043 -1061 0 +-1044 -1062 0 +-1039 -1045 0 +-1040 -1046 0 +-1041 -1047 0 +-1042 -1048 0 +-1043 -1049 0 +-1044 -1050 0 +-1033 -1063 0 +-1034 -1064 0 +-1035 -1065 0 +-1036 -1066 0 +-1037 -1067 0 +-1038 -1068 0 +-1033 -1057 0 +-1034 -1058 0 +-1035 -1059 0 +-1036 -1060 0 +-1037 -1061 0 +-1038 -1062 0 +-1033 -1051 0 +-1034 -1052 0 +-1035 -1053 0 +-1036 -1054 0 +-1037 -1055 0 +-1038 -1056 0 +-1033 -1045 0 +-1034 -1046 0 +-1035 -1047 0 +-1036 -1048 0 +-1037 -1049 0 +-1038 -1050 0 +-1033 -1039 0 +-1034 -1040 0 +-1035 -1041 0 +-1036 -1042 0 +-1037 -1043 0 +-1038 -1044 0 +-1027 -1057 0 +-1028 -1058 0 +-1029 -1059 0 +-1030 -1060 0 +-1031 -1061 0 +-1032 -1062 0 +-1027 -1051 0 +-1028 -1052 0 +-1029 -1053 0 +-1030 -1054 0 +-1031 -1055 0 +-1032 -1056 0 +-1027 -1045 0 +-1028 -1046 0 +-1029 -1047 0 +-1030 -1048 0 +-1031 -1049 0 +-1032 -1050 0 +-1027 -1039 0 +-1028 -1040 0 +-1029 -1041 0 +-1030 -1042 0 +-1031 -1043 0 +-1032 -1044 0 +-1027 -1033 0 +-1028 -1034 0 +-1029 -1035 0 +-1030 -1036 0 +-1031 -1037 0 +-1032 -1038 0 +-1021 -1051 0 +-1022 -1052 0 +-1023 -1053 0 +-1024 -1054 0 +-1025 -1055 0 +-1026 -1056 0 +-1021 -1039 0 +-1022 -1040 0 +-1023 -1041 0 +-1024 -1042 0 +-1025 -1043 0 +-1026 -1044 0 +-1021 -1033 0 +-1022 -1034 0 +-1023 -1035 0 +-1024 -1036 0 +-1025 -1037 0 +-1026 -1038 0 +-1021 -1027 0 +-1022 -1028 0 +-1023 -1029 0 +-1024 -1030 0 +-1025 -1031 0 +-1026 -1032 0 +-1015 -1045 0 +-1016 -1046 0 +-1017 -1047 0 +-1018 -1048 0 +-1019 -1049 0 +-1020 -1050 0 +-1015 -1039 0 +-1016 -1040 0 +-1017 -1041 0 +-1018 -1042 0 +-1019 -1043 0 +-1020 -1044 0 +-1015 -1033 0 +-1016 -1034 0 +-1017 -1035 0 +-1018 -1036 0 +-1019 -1037 0 +-1020 -1038 0 +-1015 -1027 0 +-1016 -1028 0 +-1017 -1029 0 +-1018 -1030 0 +-1019 -1031 0 +-1020 -1032 0 +-1015 -1021 0 +-1016 -1022 0 +-1017 -1023 0 +-1018 -1024 0 +-1019 -1025 0 +-1020 -1026 0 +-1009 -1039 0 +-1010 -1040 0 +-1011 -1041 0 +-1012 -1042 0 +-1013 -1043 0 +-1014 -1044 0 +-1009 -1033 0 +-1010 -1034 0 +-1011 -1035 0 +-1012 -1036 0 +-1013 -1037 0 +-1014 -1038 0 +-1009 -1027 0 +-1010 -1028 0 +-1011 -1029 0 +-1012 -1030 0 +-1013 -1031 0 +-1014 -1032 0 +-1009 -1021 0 +-1010 -1022 0 +-1011 -1023 0 +-1012 -1024 0 +-1013 -1025 0 +-1014 -1026 0 +-1009 -1015 0 +-1010 -1016 0 +-1011 -1017 0 +-1012 -1018 0 +-1013 -1019 0 +-1014 -1020 0 +-1003 -1033 0 +-1004 -1034 0 +-1005 -1035 0 +-1006 -1036 0 +-1007 -1037 0 +-1008 -1038 0 +-1003 -1027 0 +-1004 -1028 0 +-1005 -1029 0 +-1006 -1030 0 +-1007 -1031 0 +-1008 -1032 0 +-1003 -1021 0 +-1004 -1022 0 +-1005 -1023 0 +-1006 -1024 0 +-1007 -1025 0 +-1008 -1026 0 +-1003 -1015 0 +-1004 -1016 0 +-1005 -1017 0 +-1006 -1018 0 +-1007 -1019 0 +-1008 -1020 0 +-1003 -1009 0 +-1004 -1010 0 +-1005 -1011 0 +-1006 -1012 0 +-1007 -1013 0 +-1008 -1014 0 +-997 -1027 0 +-998 -1028 0 +-999 -1029 0 +-1000 -1030 0 +-1001 -1031 0 +-1002 -1032 0 +-997 -1021 0 +-998 -1022 0 +-999 -1023 0 +-1000 -1024 0 +-1001 -1025 0 +-1002 -1026 0 +-997 -1015 0 +-998 -1016 0 +-999 -1017 0 +-1000 -1018 0 +-1001 -1019 0 +-1002 -1020 0 +-997 -1009 0 +-998 -1010 0 +-999 -1011 0 +-1000 -1012 0 +-1001 -1013 0 +-1002 -1014 0 +-997 -1003 0 +-998 -1004 0 +-999 -1005 0 +-1000 -1006 0 +-1001 -1007 0 +-1002 -1008 0 +-991 -1021 0 +-992 -1022 0 +-993 -1023 0 +-994 -1024 0 +-995 -1025 0 +-996 -1026 0 +-991 -1015 0 +-992 -1016 0 +-993 -1017 0 +-994 -1018 0 +-995 -1019 0 +-996 -1020 0 +-991 -1009 0 +-992 -1010 0 +-993 -1011 0 +-994 -1012 0 +-995 -1013 0 +-996 -1014 0 +-991 -1003 0 +-992 -1004 0 +-993 -1005 0 +-994 -1006 0 +-995 -1007 0 +-996 -1008 0 +-991 -997 0 +-992 -998 0 +-993 -999 0 +-994 -1000 0 +-995 -1001 0 +-996 -1002 0 +-985 -1015 0 +-986 -1016 0 +-987 -1017 0 +-988 -1018 0 +-989 -1019 0 +-990 -1020 0 +-985 -1009 0 +-986 -1010 0 +-987 -1011 0 +-988 -1012 0 +-989 -1013 0 +-990 -1014 0 +-985 -1003 0 +-986 -1004 0 +-987 -1005 0 +-988 -1006 0 +-989 -1007 0 +-990 -1008 0 +-985 -997 0 +-986 -998 0 +-987 -999 0 +-988 -1000 0 +-989 -1001 0 +-990 -1002 0 +-985 -991 0 +-986 -992 0 +-987 -993 0 +-988 -994 0 +-989 -995 0 +-990 -996 0 +-979 -1009 0 +-980 -1010 0 +-981 -1011 0 +-982 -1012 0 +-983 -1013 0 +-984 -1014 0 +-979 -1003 0 +-980 -1004 0 +-981 -1005 0 +-982 -1006 0 +-983 -1007 0 +-984 -1008 0 +-979 -997 0 +-980 -998 0 +-981 -999 0 +-982 -1000 0 +-983 -1001 0 +-984 -1002 0 +-979 -991 0 +-980 -992 0 +-981 -993 0 +-982 -994 0 +-983 -995 0 +-984 -996 0 +-979 -985 0 +-980 -986 0 +-981 -987 0 +-982 -988 0 +-983 -989 0 +-984 -990 0 +-973 -997 0 +-974 -998 0 +-975 -999 0 +-976 -1000 0 +-977 -1001 0 +-978 -1002 0 +-973 -991 0 +-974 -992 0 +-975 -993 0 +-976 -994 0 +-977 -995 0 +-978 -996 0 +-973 -985 0 +-974 -986 0 +-975 -987 0 +-976 -988 0 +-977 -989 0 +-978 -990 0 +-973 -979 0 +-974 -980 0 +-975 -981 0 +-976 -982 0 +-977 -983 0 +-978 -984 0 +-967 -997 0 +-968 -998 0 +-969 -999 0 +-970 -1000 0 +-971 -1001 0 +-972 -1002 0 +-967 -991 0 +-968 -992 0 +-969 -993 0 +-970 -994 0 +-971 -995 0 +-972 -996 0 +-967 -985 0 +-968 -986 0 +-969 -987 0 +-970 -988 0 +-971 -989 0 +-972 -990 0 +-967 -979 0 +-968 -980 0 +-969 -981 0 +-970 -982 0 +-971 -983 0 +-972 -984 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-961 -991 0 +-962 -992 0 +-963 -993 0 +-964 -994 0 +-965 -995 0 +-966 -996 0 +-961 -985 0 +-962 -986 0 +-963 -987 0 +-964 -988 0 +-965 -989 0 +-966 -990 0 +-961 -979 0 +-962 -980 0 +-963 -981 0 +-964 -982 0 +-965 -983 0 +-966 -984 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-955 -985 0 +-956 -986 0 +-957 -987 0 +-958 -988 0 +-959 -989 0 +-960 -990 0 +-955 -979 0 +-956 -980 0 +-957 -981 0 +-958 -982 0 +-959 -983 0 +-960 -984 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -967 0 +-956 -968 0 +-957 -969 0 +-958 -970 0 +-959 -971 0 +-960 -972 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-949 -979 0 +-950 -980 0 +-951 -981 0 +-952 -982 0 +-953 -983 0 +-954 -984 0 +-949 -973 0 +-950 -974 0 +-951 -975 0 +-952 -976 0 +-953 -977 0 +-954 -978 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -919 0 +-890 -920 0 +-891 -921 0 +-892 -922 0 +-893 -923 0 +-894 -924 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-409 -2017 0 +-410 -2018 0 +-411 -2019 0 +-412 -2020 0 +-413 -2021 0 +-414 -2022 0 +-817 -1945 0 +-818 -1946 0 +-819 -1947 0 +-820 -1948 0 +-821 -1949 0 +-822 -1950 0 +-541 -1243 0 +-542 -1244 0 +-543 -1245 0 +-544 -1246 0 +-545 -1247 0 +-546 -1248 0 +-61 -1555 0 +-62 -1556 0 +-63 -1557 0 +-64 -1558 0 +-65 -1559 0 +-66 -1560 0 +-565 -1729 0 +-566 -1730 0 +-567 -1731 0 +-568 -1732 0 +-569 -1733 0 +-570 -1734 0 +-1291 -1939 0 +-1292 -1940 0 +-1293 -1941 0 +-1294 -1942 0 +-1295 -1943 0 +-1296 -1944 0 +-79 -241 0 +-80 -242 0 +-81 -243 0 +-82 -244 0 +-83 -245 0 +-84 -246 0 +-1891 -2029 0 +-1892 -2030 0 +-1893 -2031 0 +-1894 -2032 0 +-1895 -2033 0 +-1896 -2034 0 +-781 -1291 0 +-782 -1292 0 +-783 -1293 0 +-784 -1294 0 +-785 -1295 0 +-786 -1296 0 +-1939 -2131 0 +-1940 -2132 0 +-1941 -2133 0 +-1942 -2134 0 +-1943 -2135 0 +-1944 -2136 0 +-739 -1249 0 +-740 -1250 0 +-741 -1251 0 +-742 -1252 0 +-743 -1253 0 +-744 -1254 0 +-1849 -2149 0 +-1850 -2150 0 +-1851 -2151 0 +-1852 -2152 0 +-1853 -2153 0 +-1854 -2154 0 +-535 -1873 0 +-536 -1874 0 +-537 -1875 0 +-538 -1876 0 +-539 -1877 0 +-540 -1878 0 +-427 -889 0 +-428 -890 0 +-429 -891 0 +-430 -892 0 +-431 -893 0 +-432 -894 0 +-49 -2131 0 +-50 -2132 0 +-51 -2133 0 +-52 -2134 0 +-53 -2135 0 +-54 -2136 0 +-949 -1879 0 +-950 -1880 0 +-951 -1881 0 +-952 -1882 0 +-953 -1883 0 +-954 -1884 0 diff --git a/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf new file mode 100755 index 000000000..16d3a8916 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf @@ -0,0 +1,7730 @@ +c created by edge2cnf +p cnf 1008 7728 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-979 -980 0 +-979 -981 0 +-979 -982 0 +-979 -983 0 +-979 -984 0 +-980 -981 0 +-980 -982 0 +-980 -983 0 +-980 -984 0 +-981 -982 0 +-981 -983 0 +-981 -984 0 +-982 -983 0 +-982 -984 0 +-983 -984 0 +979 980 981 982 983 984 0 +-985 -986 0 +-985 -987 0 +-985 -988 0 +-985 -989 0 +-985 -990 0 +-986 -987 0 +-986 -988 0 +-986 -989 0 +-986 -990 0 +-987 -988 0 +-987 -989 0 +-987 -990 0 +-988 -989 0 +-988 -990 0 +-989 -990 0 +985 986 987 988 989 990 0 +-991 -992 0 +-991 -993 0 +-991 -994 0 +-991 -995 0 +-991 -996 0 +-992 -993 0 +-992 -994 0 +-992 -995 0 +-992 -996 0 +-993 -994 0 +-993 -995 0 +-993 -996 0 +-994 -995 0 +-994 -996 0 +-995 -996 0 +991 992 993 994 995 996 0 +-997 -998 0 +-997 -999 0 +-997 -1000 0 +-997 -1001 0 +-997 -1002 0 +-998 -999 0 +-998 -1000 0 +-998 -1001 0 +-998 -1002 0 +-999 -1000 0 +-999 -1001 0 +-999 -1002 0 +-1000 -1001 0 +-1000 -1002 0 +-1001 -1002 0 +997 998 999 1000 1001 1002 0 +-1003 -1004 0 +-1003 -1005 0 +-1003 -1006 0 +-1003 -1007 0 +-1003 -1008 0 +-1004 -1005 0 +-1004 -1006 0 +-1004 -1007 0 +-1004 -1008 0 +-1005 -1006 0 +-1005 -1007 0 +-1005 -1008 0 +-1006 -1007 0 +-1006 -1008 0 +-1007 -1008 0 +1003 1004 1005 1006 1007 1008 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-7 -991 0 +-8 -992 0 +-9 -993 0 +-10 -994 0 +-11 -995 0 +-12 -996 0 +-25 -1003 0 +-26 -1004 0 +-27 -1005 0 +-28 -1006 0 +-29 -1007 0 +-30 -1008 0 +-19 -1003 0 +-20 -1004 0 +-21 -1005 0 +-22 -1006 0 +-23 -1007 0 +-24 -1008 0 +-13 -1003 0 +-14 -1004 0 +-15 -1005 0 +-16 -1006 0 +-17 -1007 0 +-18 -1008 0 +-7 -1003 0 +-8 -1004 0 +-9 -1005 0 +-10 -1006 0 +-11 -1007 0 +-12 -1008 0 +-1 -1003 0 +-2 -1004 0 +-3 -1005 0 +-4 -1006 0 +-5 -1007 0 +-6 -1008 0 +-19 -997 0 +-20 -998 0 +-21 -999 0 +-22 -1000 0 +-23 -1001 0 +-24 -1002 0 +-13 -997 0 +-14 -998 0 +-15 -999 0 +-16 -1000 0 +-17 -1001 0 +-18 -1002 0 +-7 -997 0 +-8 -998 0 +-9 -999 0 +-10 -1000 0 +-11 -1001 0 +-12 -1002 0 +-1 -997 0 +-2 -998 0 +-3 -999 0 +-4 -1000 0 +-5 -1001 0 +-6 -1002 0 +-997 -1003 0 +-998 -1004 0 +-999 -1005 0 +-1000 -1006 0 +-1001 -1007 0 +-1002 -1008 0 +-13 -991 0 +-14 -992 0 +-15 -993 0 +-16 -994 0 +-17 -995 0 +-18 -996 0 +-1 -991 0 +-2 -992 0 +-3 -993 0 +-4 -994 0 +-5 -995 0 +-6 -996 0 +-991 -1003 0 +-992 -1004 0 +-993 -1005 0 +-994 -1006 0 +-995 -1007 0 +-996 -1008 0 +-991 -997 0 +-992 -998 0 +-993 -999 0 +-994 -1000 0 +-995 -1001 0 +-996 -1002 0 +-7 -985 0 +-8 -986 0 +-9 -987 0 +-10 -988 0 +-11 -989 0 +-12 -990 0 +-1 -985 0 +-2 -986 0 +-3 -987 0 +-4 -988 0 +-5 -989 0 +-6 -990 0 +-985 -1003 0 +-986 -1004 0 +-987 -1005 0 +-988 -1006 0 +-989 -1007 0 +-990 -1008 0 +-985 -997 0 +-986 -998 0 +-987 -999 0 +-988 -1000 0 +-989 -1001 0 +-990 -1002 0 +-985 -991 0 +-986 -992 0 +-987 -993 0 +-988 -994 0 +-989 -995 0 +-990 -996 0 +-1 -979 0 +-2 -980 0 +-3 -981 0 +-4 -982 0 +-5 -983 0 +-6 -984 0 +-979 -1003 0 +-980 -1004 0 +-981 -1005 0 +-982 -1006 0 +-983 -1007 0 +-984 -1008 0 +-979 -991 0 +-980 -992 0 +-981 -993 0 +-982 -994 0 +-983 -995 0 +-984 -996 0 +-979 -985 0 +-980 -986 0 +-981 -987 0 +-982 -988 0 +-983 -989 0 +-984 -990 0 +-973 -1003 0 +-974 -1004 0 +-975 -1005 0 +-976 -1006 0 +-977 -1007 0 +-978 -1008 0 +-973 -997 0 +-974 -998 0 +-975 -999 0 +-976 -1000 0 +-977 -1001 0 +-978 -1002 0 +-973 -991 0 +-974 -992 0 +-975 -993 0 +-976 -994 0 +-977 -995 0 +-978 -996 0 +-973 -985 0 +-974 -986 0 +-975 -987 0 +-976 -988 0 +-977 -989 0 +-978 -990 0 +-973 -979 0 +-974 -980 0 +-975 -981 0 +-976 -982 0 +-977 -983 0 +-978 -984 0 +-967 -997 0 +-968 -998 0 +-969 -999 0 +-970 -1000 0 +-971 -1001 0 +-972 -1002 0 +-967 -991 0 +-968 -992 0 +-969 -993 0 +-970 -994 0 +-971 -995 0 +-972 -996 0 +-967 -985 0 +-968 -986 0 +-969 -987 0 +-970 -988 0 +-971 -989 0 +-972 -990 0 +-967 -979 0 +-968 -980 0 +-969 -981 0 +-970 -982 0 +-971 -983 0 +-972 -984 0 +-961 -991 0 +-962 -992 0 +-963 -993 0 +-964 -994 0 +-965 -995 0 +-966 -996 0 +-961 -985 0 +-962 -986 0 +-963 -987 0 +-964 -988 0 +-965 -989 0 +-966 -990 0 +-961 -979 0 +-962 -980 0 +-963 -981 0 +-964 -982 0 +-965 -983 0 +-966 -984 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-955 -985 0 +-956 -986 0 +-957 -987 0 +-958 -988 0 +-959 -989 0 +-960 -990 0 +-955 -979 0 +-956 -980 0 +-957 -981 0 +-958 -982 0 +-959 -983 0 +-960 -984 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -967 0 +-956 -968 0 +-957 -969 0 +-958 -970 0 +-959 -971 0 +-960 -972 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-949 -979 0 +-950 -980 0 +-951 -981 0 +-952 -982 0 +-953 -983 0 +-954 -984 0 +-949 -973 0 +-950 -974 0 +-951 -975 0 +-952 -976 0 +-953 -977 0 +-954 -978 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -919 0 +-890 -920 0 +-891 -921 0 +-892 -922 0 +-893 -923 0 +-894 -924 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-829 -841 0 +-830 -842 0 +-831 -843 0 +-832 -844 0 +-833 -845 0 +-834 -846 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-799 -805 0 +-800 -806 0 +-801 -807 0 +-802 -808 0 +-803 -809 0 +-804 -810 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -643 0 +-632 -644 0 +-633 -645 0 +-634 -646 0 +-635 -647 0 +-636 -648 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -643 0 +-620 -644 0 +-621 -645 0 +-622 -646 0 +-623 -647 0 +-624 -648 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -253 0 +-242 -254 0 +-243 -255 0 +-244 -256 0 +-245 -257 0 +-246 -258 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-115 -121 0 +-116 -122 0 +-117 -123 0 +-118 -124 0 +-119 -125 0 +-120 -126 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-721 -895 0 +-722 -896 0 +-723 -897 0 +-724 -898 0 +-725 -899 0 +-726 -900 0 +-649 -943 0 +-650 -944 0 +-651 -945 0 +-652 -946 0 +-653 -947 0 +-654 -948 0 +-157 -919 0 +-158 -920 0 +-159 -921 0 +-160 -922 0 +-161 -923 0 +-162 -924 0 +-49 -919 0 +-50 -920 0 +-51 -921 0 +-52 -922 0 +-53 -923 0 +-54 -924 0 +-229 -325 0 +-230 -326 0 +-231 -327 0 +-232 -328 0 +-233 -329 0 +-234 -330 0 +-379 -745 0 +-380 -746 0 +-381 -747 0 +-382 -748 0 +-383 -749 0 +-384 -750 0 diff --git a/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf new file mode 100755 index 000000000..5a7066807 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf @@ -0,0 +1,7500 @@ +c created by edge2cnf +p cnf 978 7498 +-1 -2 0 +-1 -3 0 +-1 -4 0 +-1 -5 0 +-1 -6 0 +-2 -3 0 +-2 -4 0 +-2 -5 0 +-2 -6 0 +-3 -4 0 +-3 -5 0 +-3 -6 0 +-4 -5 0 +-4 -6 0 +-5 -6 0 +1 2 3 4 5 6 0 +-7 -8 0 +-7 -9 0 +-7 -10 0 +-7 -11 0 +-7 -12 0 +-8 -9 0 +-8 -10 0 +-8 -11 0 +-8 -12 0 +-9 -10 0 +-9 -11 0 +-9 -12 0 +-10 -11 0 +-10 -12 0 +-11 -12 0 +7 8 9 10 11 12 0 +-13 -14 0 +-13 -15 0 +-13 -16 0 +-13 -17 0 +-13 -18 0 +-14 -15 0 +-14 -16 0 +-14 -17 0 +-14 -18 0 +-15 -16 0 +-15 -17 0 +-15 -18 0 +-16 -17 0 +-16 -18 0 +-17 -18 0 +13 14 15 16 17 18 0 +-19 -20 0 +-19 -21 0 +-19 -22 0 +-19 -23 0 +-19 -24 0 +-20 -21 0 +-20 -22 0 +-20 -23 0 +-20 -24 0 +-21 -22 0 +-21 -23 0 +-21 -24 0 +-22 -23 0 +-22 -24 0 +-23 -24 0 +19 20 21 22 23 24 0 +-25 -26 0 +-25 -27 0 +-25 -28 0 +-25 -29 0 +-25 -30 0 +-26 -27 0 +-26 -28 0 +-26 -29 0 +-26 -30 0 +-27 -28 0 +-27 -29 0 +-27 -30 0 +-28 -29 0 +-28 -30 0 +-29 -30 0 +25 26 27 28 29 30 0 +-31 -32 0 +-31 -33 0 +-31 -34 0 +-31 -35 0 +-31 -36 0 +-32 -33 0 +-32 -34 0 +-32 -35 0 +-32 -36 0 +-33 -34 0 +-33 -35 0 +-33 -36 0 +-34 -35 0 +-34 -36 0 +-35 -36 0 +31 32 33 34 35 36 0 +-37 -38 0 +-37 -39 0 +-37 -40 0 +-37 -41 0 +-37 -42 0 +-38 -39 0 +-38 -40 0 +-38 -41 0 +-38 -42 0 +-39 -40 0 +-39 -41 0 +-39 -42 0 +-40 -41 0 +-40 -42 0 +-41 -42 0 +37 38 39 40 41 42 0 +-43 -44 0 +-43 -45 0 +-43 -46 0 +-43 -47 0 +-43 -48 0 +-44 -45 0 +-44 -46 0 +-44 -47 0 +-44 -48 0 +-45 -46 0 +-45 -47 0 +-45 -48 0 +-46 -47 0 +-46 -48 0 +-47 -48 0 +43 44 45 46 47 48 0 +-49 -50 0 +-49 -51 0 +-49 -52 0 +-49 -53 0 +-49 -54 0 +-50 -51 0 +-50 -52 0 +-50 -53 0 +-50 -54 0 +-51 -52 0 +-51 -53 0 +-51 -54 0 +-52 -53 0 +-52 -54 0 +-53 -54 0 +49 50 51 52 53 54 0 +-55 -56 0 +-55 -57 0 +-55 -58 0 +-55 -59 0 +-55 -60 0 +-56 -57 0 +-56 -58 0 +-56 -59 0 +-56 -60 0 +-57 -58 0 +-57 -59 0 +-57 -60 0 +-58 -59 0 +-58 -60 0 +-59 -60 0 +55 56 57 58 59 60 0 +-61 -62 0 +-61 -63 0 +-61 -64 0 +-61 -65 0 +-61 -66 0 +-62 -63 0 +-62 -64 0 +-62 -65 0 +-62 -66 0 +-63 -64 0 +-63 -65 0 +-63 -66 0 +-64 -65 0 +-64 -66 0 +-65 -66 0 +61 62 63 64 65 66 0 +-67 -68 0 +-67 -69 0 +-67 -70 0 +-67 -71 0 +-67 -72 0 +-68 -69 0 +-68 -70 0 +-68 -71 0 +-68 -72 0 +-69 -70 0 +-69 -71 0 +-69 -72 0 +-70 -71 0 +-70 -72 0 +-71 -72 0 +67 68 69 70 71 72 0 +-73 -74 0 +-73 -75 0 +-73 -76 0 +-73 -77 0 +-73 -78 0 +-74 -75 0 +-74 -76 0 +-74 -77 0 +-74 -78 0 +-75 -76 0 +-75 -77 0 +-75 -78 0 +-76 -77 0 +-76 -78 0 +-77 -78 0 +73 74 75 76 77 78 0 +-79 -80 0 +-79 -81 0 +-79 -82 0 +-79 -83 0 +-79 -84 0 +-80 -81 0 +-80 -82 0 +-80 -83 0 +-80 -84 0 +-81 -82 0 +-81 -83 0 +-81 -84 0 +-82 -83 0 +-82 -84 0 +-83 -84 0 +79 80 81 82 83 84 0 +-85 -86 0 +-85 -87 0 +-85 -88 0 +-85 -89 0 +-85 -90 0 +-86 -87 0 +-86 -88 0 +-86 -89 0 +-86 -90 0 +-87 -88 0 +-87 -89 0 +-87 -90 0 +-88 -89 0 +-88 -90 0 +-89 -90 0 +85 86 87 88 89 90 0 +-91 -92 0 +-91 -93 0 +-91 -94 0 +-91 -95 0 +-91 -96 0 +-92 -93 0 +-92 -94 0 +-92 -95 0 +-92 -96 0 +-93 -94 0 +-93 -95 0 +-93 -96 0 +-94 -95 0 +-94 -96 0 +-95 -96 0 +91 92 93 94 95 96 0 +-97 -98 0 +-97 -99 0 +-97 -100 0 +-97 -101 0 +-97 -102 0 +-98 -99 0 +-98 -100 0 +-98 -101 0 +-98 -102 0 +-99 -100 0 +-99 -101 0 +-99 -102 0 +-100 -101 0 +-100 -102 0 +-101 -102 0 +97 98 99 100 101 102 0 +-103 -104 0 +-103 -105 0 +-103 -106 0 +-103 -107 0 +-103 -108 0 +-104 -105 0 +-104 -106 0 +-104 -107 0 +-104 -108 0 +-105 -106 0 +-105 -107 0 +-105 -108 0 +-106 -107 0 +-106 -108 0 +-107 -108 0 +103 104 105 106 107 108 0 +-109 -110 0 +-109 -111 0 +-109 -112 0 +-109 -113 0 +-109 -114 0 +-110 -111 0 +-110 -112 0 +-110 -113 0 +-110 -114 0 +-111 -112 0 +-111 -113 0 +-111 -114 0 +-112 -113 0 +-112 -114 0 +-113 -114 0 +109 110 111 112 113 114 0 +-115 -116 0 +-115 -117 0 +-115 -118 0 +-115 -119 0 +-115 -120 0 +-116 -117 0 +-116 -118 0 +-116 -119 0 +-116 -120 0 +-117 -118 0 +-117 -119 0 +-117 -120 0 +-118 -119 0 +-118 -120 0 +-119 -120 0 +115 116 117 118 119 120 0 +-121 -122 0 +-121 -123 0 +-121 -124 0 +-121 -125 0 +-121 -126 0 +-122 -123 0 +-122 -124 0 +-122 -125 0 +-122 -126 0 +-123 -124 0 +-123 -125 0 +-123 -126 0 +-124 -125 0 +-124 -126 0 +-125 -126 0 +121 122 123 124 125 126 0 +-127 -128 0 +-127 -129 0 +-127 -130 0 +-127 -131 0 +-127 -132 0 +-128 -129 0 +-128 -130 0 +-128 -131 0 +-128 -132 0 +-129 -130 0 +-129 -131 0 +-129 -132 0 +-130 -131 0 +-130 -132 0 +-131 -132 0 +127 128 129 130 131 132 0 +-133 -134 0 +-133 -135 0 +-133 -136 0 +-133 -137 0 +-133 -138 0 +-134 -135 0 +-134 -136 0 +-134 -137 0 +-134 -138 0 +-135 -136 0 +-135 -137 0 +-135 -138 0 +-136 -137 0 +-136 -138 0 +-137 -138 0 +133 134 135 136 137 138 0 +-139 -140 0 +-139 -141 0 +-139 -142 0 +-139 -143 0 +-139 -144 0 +-140 -141 0 +-140 -142 0 +-140 -143 0 +-140 -144 0 +-141 -142 0 +-141 -143 0 +-141 -144 0 +-142 -143 0 +-142 -144 0 +-143 -144 0 +139 140 141 142 143 144 0 +-145 -146 0 +-145 -147 0 +-145 -148 0 +-145 -149 0 +-145 -150 0 +-146 -147 0 +-146 -148 0 +-146 -149 0 +-146 -150 0 +-147 -148 0 +-147 -149 0 +-147 -150 0 +-148 -149 0 +-148 -150 0 +-149 -150 0 +145 146 147 148 149 150 0 +-151 -152 0 +-151 -153 0 +-151 -154 0 +-151 -155 0 +-151 -156 0 +-152 -153 0 +-152 -154 0 +-152 -155 0 +-152 -156 0 +-153 -154 0 +-153 -155 0 +-153 -156 0 +-154 -155 0 +-154 -156 0 +-155 -156 0 +151 152 153 154 155 156 0 +-157 -158 0 +-157 -159 0 +-157 -160 0 +-157 -161 0 +-157 -162 0 +-158 -159 0 +-158 -160 0 +-158 -161 0 +-158 -162 0 +-159 -160 0 +-159 -161 0 +-159 -162 0 +-160 -161 0 +-160 -162 0 +-161 -162 0 +157 158 159 160 161 162 0 +-163 -164 0 +-163 -165 0 +-163 -166 0 +-163 -167 0 +-163 -168 0 +-164 -165 0 +-164 -166 0 +-164 -167 0 +-164 -168 0 +-165 -166 0 +-165 -167 0 +-165 -168 0 +-166 -167 0 +-166 -168 0 +-167 -168 0 +163 164 165 166 167 168 0 +-169 -170 0 +-169 -171 0 +-169 -172 0 +-169 -173 0 +-169 -174 0 +-170 -171 0 +-170 -172 0 +-170 -173 0 +-170 -174 0 +-171 -172 0 +-171 -173 0 +-171 -174 0 +-172 -173 0 +-172 -174 0 +-173 -174 0 +169 170 171 172 173 174 0 +-175 -176 0 +-175 -177 0 +-175 -178 0 +-175 -179 0 +-175 -180 0 +-176 -177 0 +-176 -178 0 +-176 -179 0 +-176 -180 0 +-177 -178 0 +-177 -179 0 +-177 -180 0 +-178 -179 0 +-178 -180 0 +-179 -180 0 +175 176 177 178 179 180 0 +-181 -182 0 +-181 -183 0 +-181 -184 0 +-181 -185 0 +-181 -186 0 +-182 -183 0 +-182 -184 0 +-182 -185 0 +-182 -186 0 +-183 -184 0 +-183 -185 0 +-183 -186 0 +-184 -185 0 +-184 -186 0 +-185 -186 0 +181 182 183 184 185 186 0 +-187 -188 0 +-187 -189 0 +-187 -190 0 +-187 -191 0 +-187 -192 0 +-188 -189 0 +-188 -190 0 +-188 -191 0 +-188 -192 0 +-189 -190 0 +-189 -191 0 +-189 -192 0 +-190 -191 0 +-190 -192 0 +-191 -192 0 +187 188 189 190 191 192 0 +-193 -194 0 +-193 -195 0 +-193 -196 0 +-193 -197 0 +-193 -198 0 +-194 -195 0 +-194 -196 0 +-194 -197 0 +-194 -198 0 +-195 -196 0 +-195 -197 0 +-195 -198 0 +-196 -197 0 +-196 -198 0 +-197 -198 0 +193 194 195 196 197 198 0 +-199 -200 0 +-199 -201 0 +-199 -202 0 +-199 -203 0 +-199 -204 0 +-200 -201 0 +-200 -202 0 +-200 -203 0 +-200 -204 0 +-201 -202 0 +-201 -203 0 +-201 -204 0 +-202 -203 0 +-202 -204 0 +-203 -204 0 +199 200 201 202 203 204 0 +-205 -206 0 +-205 -207 0 +-205 -208 0 +-205 -209 0 +-205 -210 0 +-206 -207 0 +-206 -208 0 +-206 -209 0 +-206 -210 0 +-207 -208 0 +-207 -209 0 +-207 -210 0 +-208 -209 0 +-208 -210 0 +-209 -210 0 +205 206 207 208 209 210 0 +-211 -212 0 +-211 -213 0 +-211 -214 0 +-211 -215 0 +-211 -216 0 +-212 -213 0 +-212 -214 0 +-212 -215 0 +-212 -216 0 +-213 -214 0 +-213 -215 0 +-213 -216 0 +-214 -215 0 +-214 -216 0 +-215 -216 0 +211 212 213 214 215 216 0 +-217 -218 0 +-217 -219 0 +-217 -220 0 +-217 -221 0 +-217 -222 0 +-218 -219 0 +-218 -220 0 +-218 -221 0 +-218 -222 0 +-219 -220 0 +-219 -221 0 +-219 -222 0 +-220 -221 0 +-220 -222 0 +-221 -222 0 +217 218 219 220 221 222 0 +-223 -224 0 +-223 -225 0 +-223 -226 0 +-223 -227 0 +-223 -228 0 +-224 -225 0 +-224 -226 0 +-224 -227 0 +-224 -228 0 +-225 -226 0 +-225 -227 0 +-225 -228 0 +-226 -227 0 +-226 -228 0 +-227 -228 0 +223 224 225 226 227 228 0 +-229 -230 0 +-229 -231 0 +-229 -232 0 +-229 -233 0 +-229 -234 0 +-230 -231 0 +-230 -232 0 +-230 -233 0 +-230 -234 0 +-231 -232 0 +-231 -233 0 +-231 -234 0 +-232 -233 0 +-232 -234 0 +-233 -234 0 +229 230 231 232 233 234 0 +-235 -236 0 +-235 -237 0 +-235 -238 0 +-235 -239 0 +-235 -240 0 +-236 -237 0 +-236 -238 0 +-236 -239 0 +-236 -240 0 +-237 -238 0 +-237 -239 0 +-237 -240 0 +-238 -239 0 +-238 -240 0 +-239 -240 0 +235 236 237 238 239 240 0 +-241 -242 0 +-241 -243 0 +-241 -244 0 +-241 -245 0 +-241 -246 0 +-242 -243 0 +-242 -244 0 +-242 -245 0 +-242 -246 0 +-243 -244 0 +-243 -245 0 +-243 -246 0 +-244 -245 0 +-244 -246 0 +-245 -246 0 +241 242 243 244 245 246 0 +-247 -248 0 +-247 -249 0 +-247 -250 0 +-247 -251 0 +-247 -252 0 +-248 -249 0 +-248 -250 0 +-248 -251 0 +-248 -252 0 +-249 -250 0 +-249 -251 0 +-249 -252 0 +-250 -251 0 +-250 -252 0 +-251 -252 0 +247 248 249 250 251 252 0 +-253 -254 0 +-253 -255 0 +-253 -256 0 +-253 -257 0 +-253 -258 0 +-254 -255 0 +-254 -256 0 +-254 -257 0 +-254 -258 0 +-255 -256 0 +-255 -257 0 +-255 -258 0 +-256 -257 0 +-256 -258 0 +-257 -258 0 +253 254 255 256 257 258 0 +-259 -260 0 +-259 -261 0 +-259 -262 0 +-259 -263 0 +-259 -264 0 +-260 -261 0 +-260 -262 0 +-260 -263 0 +-260 -264 0 +-261 -262 0 +-261 -263 0 +-261 -264 0 +-262 -263 0 +-262 -264 0 +-263 -264 0 +259 260 261 262 263 264 0 +-265 -266 0 +-265 -267 0 +-265 -268 0 +-265 -269 0 +-265 -270 0 +-266 -267 0 +-266 -268 0 +-266 -269 0 +-266 -270 0 +-267 -268 0 +-267 -269 0 +-267 -270 0 +-268 -269 0 +-268 -270 0 +-269 -270 0 +265 266 267 268 269 270 0 +-271 -272 0 +-271 -273 0 +-271 -274 0 +-271 -275 0 +-271 -276 0 +-272 -273 0 +-272 -274 0 +-272 -275 0 +-272 -276 0 +-273 -274 0 +-273 -275 0 +-273 -276 0 +-274 -275 0 +-274 -276 0 +-275 -276 0 +271 272 273 274 275 276 0 +-277 -278 0 +-277 -279 0 +-277 -280 0 +-277 -281 0 +-277 -282 0 +-278 -279 0 +-278 -280 0 +-278 -281 0 +-278 -282 0 +-279 -280 0 +-279 -281 0 +-279 -282 0 +-280 -281 0 +-280 -282 0 +-281 -282 0 +277 278 279 280 281 282 0 +-283 -284 0 +-283 -285 0 +-283 -286 0 +-283 -287 0 +-283 -288 0 +-284 -285 0 +-284 -286 0 +-284 -287 0 +-284 -288 0 +-285 -286 0 +-285 -287 0 +-285 -288 0 +-286 -287 0 +-286 -288 0 +-287 -288 0 +283 284 285 286 287 288 0 +-289 -290 0 +-289 -291 0 +-289 -292 0 +-289 -293 0 +-289 -294 0 +-290 -291 0 +-290 -292 0 +-290 -293 0 +-290 -294 0 +-291 -292 0 +-291 -293 0 +-291 -294 0 +-292 -293 0 +-292 -294 0 +-293 -294 0 +289 290 291 292 293 294 0 +-295 -296 0 +-295 -297 0 +-295 -298 0 +-295 -299 0 +-295 -300 0 +-296 -297 0 +-296 -298 0 +-296 -299 0 +-296 -300 0 +-297 -298 0 +-297 -299 0 +-297 -300 0 +-298 -299 0 +-298 -300 0 +-299 -300 0 +295 296 297 298 299 300 0 +-301 -302 0 +-301 -303 0 +-301 -304 0 +-301 -305 0 +-301 -306 0 +-302 -303 0 +-302 -304 0 +-302 -305 0 +-302 -306 0 +-303 -304 0 +-303 -305 0 +-303 -306 0 +-304 -305 0 +-304 -306 0 +-305 -306 0 +301 302 303 304 305 306 0 +-307 -308 0 +-307 -309 0 +-307 -310 0 +-307 -311 0 +-307 -312 0 +-308 -309 0 +-308 -310 0 +-308 -311 0 +-308 -312 0 +-309 -310 0 +-309 -311 0 +-309 -312 0 +-310 -311 0 +-310 -312 0 +-311 -312 0 +307 308 309 310 311 312 0 +-313 -314 0 +-313 -315 0 +-313 -316 0 +-313 -317 0 +-313 -318 0 +-314 -315 0 +-314 -316 0 +-314 -317 0 +-314 -318 0 +-315 -316 0 +-315 -317 0 +-315 -318 0 +-316 -317 0 +-316 -318 0 +-317 -318 0 +313 314 315 316 317 318 0 +-319 -320 0 +-319 -321 0 +-319 -322 0 +-319 -323 0 +-319 -324 0 +-320 -321 0 +-320 -322 0 +-320 -323 0 +-320 -324 0 +-321 -322 0 +-321 -323 0 +-321 -324 0 +-322 -323 0 +-322 -324 0 +-323 -324 0 +319 320 321 322 323 324 0 +-325 -326 0 +-325 -327 0 +-325 -328 0 +-325 -329 0 +-325 -330 0 +-326 -327 0 +-326 -328 0 +-326 -329 0 +-326 -330 0 +-327 -328 0 +-327 -329 0 +-327 -330 0 +-328 -329 0 +-328 -330 0 +-329 -330 0 +325 326 327 328 329 330 0 +-331 -332 0 +-331 -333 0 +-331 -334 0 +-331 -335 0 +-331 -336 0 +-332 -333 0 +-332 -334 0 +-332 -335 0 +-332 -336 0 +-333 -334 0 +-333 -335 0 +-333 -336 0 +-334 -335 0 +-334 -336 0 +-335 -336 0 +331 332 333 334 335 336 0 +-337 -338 0 +-337 -339 0 +-337 -340 0 +-337 -341 0 +-337 -342 0 +-338 -339 0 +-338 -340 0 +-338 -341 0 +-338 -342 0 +-339 -340 0 +-339 -341 0 +-339 -342 0 +-340 -341 0 +-340 -342 0 +-341 -342 0 +337 338 339 340 341 342 0 +-343 -344 0 +-343 -345 0 +-343 -346 0 +-343 -347 0 +-343 -348 0 +-344 -345 0 +-344 -346 0 +-344 -347 0 +-344 -348 0 +-345 -346 0 +-345 -347 0 +-345 -348 0 +-346 -347 0 +-346 -348 0 +-347 -348 0 +343 344 345 346 347 348 0 +-349 -350 0 +-349 -351 0 +-349 -352 0 +-349 -353 0 +-349 -354 0 +-350 -351 0 +-350 -352 0 +-350 -353 0 +-350 -354 0 +-351 -352 0 +-351 -353 0 +-351 -354 0 +-352 -353 0 +-352 -354 0 +-353 -354 0 +349 350 351 352 353 354 0 +-355 -356 0 +-355 -357 0 +-355 -358 0 +-355 -359 0 +-355 -360 0 +-356 -357 0 +-356 -358 0 +-356 -359 0 +-356 -360 0 +-357 -358 0 +-357 -359 0 +-357 -360 0 +-358 -359 0 +-358 -360 0 +-359 -360 0 +355 356 357 358 359 360 0 +-361 -362 0 +-361 -363 0 +-361 -364 0 +-361 -365 0 +-361 -366 0 +-362 -363 0 +-362 -364 0 +-362 -365 0 +-362 -366 0 +-363 -364 0 +-363 -365 0 +-363 -366 0 +-364 -365 0 +-364 -366 0 +-365 -366 0 +361 362 363 364 365 366 0 +-367 -368 0 +-367 -369 0 +-367 -370 0 +-367 -371 0 +-367 -372 0 +-368 -369 0 +-368 -370 0 +-368 -371 0 +-368 -372 0 +-369 -370 0 +-369 -371 0 +-369 -372 0 +-370 -371 0 +-370 -372 0 +-371 -372 0 +367 368 369 370 371 372 0 +-373 -374 0 +-373 -375 0 +-373 -376 0 +-373 -377 0 +-373 -378 0 +-374 -375 0 +-374 -376 0 +-374 -377 0 +-374 -378 0 +-375 -376 0 +-375 -377 0 +-375 -378 0 +-376 -377 0 +-376 -378 0 +-377 -378 0 +373 374 375 376 377 378 0 +-379 -380 0 +-379 -381 0 +-379 -382 0 +-379 -383 0 +-379 -384 0 +-380 -381 0 +-380 -382 0 +-380 -383 0 +-380 -384 0 +-381 -382 0 +-381 -383 0 +-381 -384 0 +-382 -383 0 +-382 -384 0 +-383 -384 0 +379 380 381 382 383 384 0 +-385 -386 0 +-385 -387 0 +-385 -388 0 +-385 -389 0 +-385 -390 0 +-386 -387 0 +-386 -388 0 +-386 -389 0 +-386 -390 0 +-387 -388 0 +-387 -389 0 +-387 -390 0 +-388 -389 0 +-388 -390 0 +-389 -390 0 +385 386 387 388 389 390 0 +-391 -392 0 +-391 -393 0 +-391 -394 0 +-391 -395 0 +-391 -396 0 +-392 -393 0 +-392 -394 0 +-392 -395 0 +-392 -396 0 +-393 -394 0 +-393 -395 0 +-393 -396 0 +-394 -395 0 +-394 -396 0 +-395 -396 0 +391 392 393 394 395 396 0 +-397 -398 0 +-397 -399 0 +-397 -400 0 +-397 -401 0 +-397 -402 0 +-398 -399 0 +-398 -400 0 +-398 -401 0 +-398 -402 0 +-399 -400 0 +-399 -401 0 +-399 -402 0 +-400 -401 0 +-400 -402 0 +-401 -402 0 +397 398 399 400 401 402 0 +-403 -404 0 +-403 -405 0 +-403 -406 0 +-403 -407 0 +-403 -408 0 +-404 -405 0 +-404 -406 0 +-404 -407 0 +-404 -408 0 +-405 -406 0 +-405 -407 0 +-405 -408 0 +-406 -407 0 +-406 -408 0 +-407 -408 0 +403 404 405 406 407 408 0 +-409 -410 0 +-409 -411 0 +-409 -412 0 +-409 -413 0 +-409 -414 0 +-410 -411 0 +-410 -412 0 +-410 -413 0 +-410 -414 0 +-411 -412 0 +-411 -413 0 +-411 -414 0 +-412 -413 0 +-412 -414 0 +-413 -414 0 +409 410 411 412 413 414 0 +-415 -416 0 +-415 -417 0 +-415 -418 0 +-415 -419 0 +-415 -420 0 +-416 -417 0 +-416 -418 0 +-416 -419 0 +-416 -420 0 +-417 -418 0 +-417 -419 0 +-417 -420 0 +-418 -419 0 +-418 -420 0 +-419 -420 0 +415 416 417 418 419 420 0 +-421 -422 0 +-421 -423 0 +-421 -424 0 +-421 -425 0 +-421 -426 0 +-422 -423 0 +-422 -424 0 +-422 -425 0 +-422 -426 0 +-423 -424 0 +-423 -425 0 +-423 -426 0 +-424 -425 0 +-424 -426 0 +-425 -426 0 +421 422 423 424 425 426 0 +-427 -428 0 +-427 -429 0 +-427 -430 0 +-427 -431 0 +-427 -432 0 +-428 -429 0 +-428 -430 0 +-428 -431 0 +-428 -432 0 +-429 -430 0 +-429 -431 0 +-429 -432 0 +-430 -431 0 +-430 -432 0 +-431 -432 0 +427 428 429 430 431 432 0 +-433 -434 0 +-433 -435 0 +-433 -436 0 +-433 -437 0 +-433 -438 0 +-434 -435 0 +-434 -436 0 +-434 -437 0 +-434 -438 0 +-435 -436 0 +-435 -437 0 +-435 -438 0 +-436 -437 0 +-436 -438 0 +-437 -438 0 +433 434 435 436 437 438 0 +-439 -440 0 +-439 -441 0 +-439 -442 0 +-439 -443 0 +-439 -444 0 +-440 -441 0 +-440 -442 0 +-440 -443 0 +-440 -444 0 +-441 -442 0 +-441 -443 0 +-441 -444 0 +-442 -443 0 +-442 -444 0 +-443 -444 0 +439 440 441 442 443 444 0 +-445 -446 0 +-445 -447 0 +-445 -448 0 +-445 -449 0 +-445 -450 0 +-446 -447 0 +-446 -448 0 +-446 -449 0 +-446 -450 0 +-447 -448 0 +-447 -449 0 +-447 -450 0 +-448 -449 0 +-448 -450 0 +-449 -450 0 +445 446 447 448 449 450 0 +-451 -452 0 +-451 -453 0 +-451 -454 0 +-451 -455 0 +-451 -456 0 +-452 -453 0 +-452 -454 0 +-452 -455 0 +-452 -456 0 +-453 -454 0 +-453 -455 0 +-453 -456 0 +-454 -455 0 +-454 -456 0 +-455 -456 0 +451 452 453 454 455 456 0 +-457 -458 0 +-457 -459 0 +-457 -460 0 +-457 -461 0 +-457 -462 0 +-458 -459 0 +-458 -460 0 +-458 -461 0 +-458 -462 0 +-459 -460 0 +-459 -461 0 +-459 -462 0 +-460 -461 0 +-460 -462 0 +-461 -462 0 +457 458 459 460 461 462 0 +-463 -464 0 +-463 -465 0 +-463 -466 0 +-463 -467 0 +-463 -468 0 +-464 -465 0 +-464 -466 0 +-464 -467 0 +-464 -468 0 +-465 -466 0 +-465 -467 0 +-465 -468 0 +-466 -467 0 +-466 -468 0 +-467 -468 0 +463 464 465 466 467 468 0 +-469 -470 0 +-469 -471 0 +-469 -472 0 +-469 -473 0 +-469 -474 0 +-470 -471 0 +-470 -472 0 +-470 -473 0 +-470 -474 0 +-471 -472 0 +-471 -473 0 +-471 -474 0 +-472 -473 0 +-472 -474 0 +-473 -474 0 +469 470 471 472 473 474 0 +-475 -476 0 +-475 -477 0 +-475 -478 0 +-475 -479 0 +-475 -480 0 +-476 -477 0 +-476 -478 0 +-476 -479 0 +-476 -480 0 +-477 -478 0 +-477 -479 0 +-477 -480 0 +-478 -479 0 +-478 -480 0 +-479 -480 0 +475 476 477 478 479 480 0 +-481 -482 0 +-481 -483 0 +-481 -484 0 +-481 -485 0 +-481 -486 0 +-482 -483 0 +-482 -484 0 +-482 -485 0 +-482 -486 0 +-483 -484 0 +-483 -485 0 +-483 -486 0 +-484 -485 0 +-484 -486 0 +-485 -486 0 +481 482 483 484 485 486 0 +-487 -488 0 +-487 -489 0 +-487 -490 0 +-487 -491 0 +-487 -492 0 +-488 -489 0 +-488 -490 0 +-488 -491 0 +-488 -492 0 +-489 -490 0 +-489 -491 0 +-489 -492 0 +-490 -491 0 +-490 -492 0 +-491 -492 0 +487 488 489 490 491 492 0 +-493 -494 0 +-493 -495 0 +-493 -496 0 +-493 -497 0 +-493 -498 0 +-494 -495 0 +-494 -496 0 +-494 -497 0 +-494 -498 0 +-495 -496 0 +-495 -497 0 +-495 -498 0 +-496 -497 0 +-496 -498 0 +-497 -498 0 +493 494 495 496 497 498 0 +-499 -500 0 +-499 -501 0 +-499 -502 0 +-499 -503 0 +-499 -504 0 +-500 -501 0 +-500 -502 0 +-500 -503 0 +-500 -504 0 +-501 -502 0 +-501 -503 0 +-501 -504 0 +-502 -503 0 +-502 -504 0 +-503 -504 0 +499 500 501 502 503 504 0 +-505 -506 0 +-505 -507 0 +-505 -508 0 +-505 -509 0 +-505 -510 0 +-506 -507 0 +-506 -508 0 +-506 -509 0 +-506 -510 0 +-507 -508 0 +-507 -509 0 +-507 -510 0 +-508 -509 0 +-508 -510 0 +-509 -510 0 +505 506 507 508 509 510 0 +-511 -512 0 +-511 -513 0 +-511 -514 0 +-511 -515 0 +-511 -516 0 +-512 -513 0 +-512 -514 0 +-512 -515 0 +-512 -516 0 +-513 -514 0 +-513 -515 0 +-513 -516 0 +-514 -515 0 +-514 -516 0 +-515 -516 0 +511 512 513 514 515 516 0 +-517 -518 0 +-517 -519 0 +-517 -520 0 +-517 -521 0 +-517 -522 0 +-518 -519 0 +-518 -520 0 +-518 -521 0 +-518 -522 0 +-519 -520 0 +-519 -521 0 +-519 -522 0 +-520 -521 0 +-520 -522 0 +-521 -522 0 +517 518 519 520 521 522 0 +-523 -524 0 +-523 -525 0 +-523 -526 0 +-523 -527 0 +-523 -528 0 +-524 -525 0 +-524 -526 0 +-524 -527 0 +-524 -528 0 +-525 -526 0 +-525 -527 0 +-525 -528 0 +-526 -527 0 +-526 -528 0 +-527 -528 0 +523 524 525 526 527 528 0 +-529 -530 0 +-529 -531 0 +-529 -532 0 +-529 -533 0 +-529 -534 0 +-530 -531 0 +-530 -532 0 +-530 -533 0 +-530 -534 0 +-531 -532 0 +-531 -533 0 +-531 -534 0 +-532 -533 0 +-532 -534 0 +-533 -534 0 +529 530 531 532 533 534 0 +-535 -536 0 +-535 -537 0 +-535 -538 0 +-535 -539 0 +-535 -540 0 +-536 -537 0 +-536 -538 0 +-536 -539 0 +-536 -540 0 +-537 -538 0 +-537 -539 0 +-537 -540 0 +-538 -539 0 +-538 -540 0 +-539 -540 0 +535 536 537 538 539 540 0 +-541 -542 0 +-541 -543 0 +-541 -544 0 +-541 -545 0 +-541 -546 0 +-542 -543 0 +-542 -544 0 +-542 -545 0 +-542 -546 0 +-543 -544 0 +-543 -545 0 +-543 -546 0 +-544 -545 0 +-544 -546 0 +-545 -546 0 +541 542 543 544 545 546 0 +-547 -548 0 +-547 -549 0 +-547 -550 0 +-547 -551 0 +-547 -552 0 +-548 -549 0 +-548 -550 0 +-548 -551 0 +-548 -552 0 +-549 -550 0 +-549 -551 0 +-549 -552 0 +-550 -551 0 +-550 -552 0 +-551 -552 0 +547 548 549 550 551 552 0 +-553 -554 0 +-553 -555 0 +-553 -556 0 +-553 -557 0 +-553 -558 0 +-554 -555 0 +-554 -556 0 +-554 -557 0 +-554 -558 0 +-555 -556 0 +-555 -557 0 +-555 -558 0 +-556 -557 0 +-556 -558 0 +-557 -558 0 +553 554 555 556 557 558 0 +-559 -560 0 +-559 -561 0 +-559 -562 0 +-559 -563 0 +-559 -564 0 +-560 -561 0 +-560 -562 0 +-560 -563 0 +-560 -564 0 +-561 -562 0 +-561 -563 0 +-561 -564 0 +-562 -563 0 +-562 -564 0 +-563 -564 0 +559 560 561 562 563 564 0 +-565 -566 0 +-565 -567 0 +-565 -568 0 +-565 -569 0 +-565 -570 0 +-566 -567 0 +-566 -568 0 +-566 -569 0 +-566 -570 0 +-567 -568 0 +-567 -569 0 +-567 -570 0 +-568 -569 0 +-568 -570 0 +-569 -570 0 +565 566 567 568 569 570 0 +-571 -572 0 +-571 -573 0 +-571 -574 0 +-571 -575 0 +-571 -576 0 +-572 -573 0 +-572 -574 0 +-572 -575 0 +-572 -576 0 +-573 -574 0 +-573 -575 0 +-573 -576 0 +-574 -575 0 +-574 -576 0 +-575 -576 0 +571 572 573 574 575 576 0 +-577 -578 0 +-577 -579 0 +-577 -580 0 +-577 -581 0 +-577 -582 0 +-578 -579 0 +-578 -580 0 +-578 -581 0 +-578 -582 0 +-579 -580 0 +-579 -581 0 +-579 -582 0 +-580 -581 0 +-580 -582 0 +-581 -582 0 +577 578 579 580 581 582 0 +-583 -584 0 +-583 -585 0 +-583 -586 0 +-583 -587 0 +-583 -588 0 +-584 -585 0 +-584 -586 0 +-584 -587 0 +-584 -588 0 +-585 -586 0 +-585 -587 0 +-585 -588 0 +-586 -587 0 +-586 -588 0 +-587 -588 0 +583 584 585 586 587 588 0 +-589 -590 0 +-589 -591 0 +-589 -592 0 +-589 -593 0 +-589 -594 0 +-590 -591 0 +-590 -592 0 +-590 -593 0 +-590 -594 0 +-591 -592 0 +-591 -593 0 +-591 -594 0 +-592 -593 0 +-592 -594 0 +-593 -594 0 +589 590 591 592 593 594 0 +-595 -596 0 +-595 -597 0 +-595 -598 0 +-595 -599 0 +-595 -600 0 +-596 -597 0 +-596 -598 0 +-596 -599 0 +-596 -600 0 +-597 -598 0 +-597 -599 0 +-597 -600 0 +-598 -599 0 +-598 -600 0 +-599 -600 0 +595 596 597 598 599 600 0 +-601 -602 0 +-601 -603 0 +-601 -604 0 +-601 -605 0 +-601 -606 0 +-602 -603 0 +-602 -604 0 +-602 -605 0 +-602 -606 0 +-603 -604 0 +-603 -605 0 +-603 -606 0 +-604 -605 0 +-604 -606 0 +-605 -606 0 +601 602 603 604 605 606 0 +-607 -608 0 +-607 -609 0 +-607 -610 0 +-607 -611 0 +-607 -612 0 +-608 -609 0 +-608 -610 0 +-608 -611 0 +-608 -612 0 +-609 -610 0 +-609 -611 0 +-609 -612 0 +-610 -611 0 +-610 -612 0 +-611 -612 0 +607 608 609 610 611 612 0 +-613 -614 0 +-613 -615 0 +-613 -616 0 +-613 -617 0 +-613 -618 0 +-614 -615 0 +-614 -616 0 +-614 -617 0 +-614 -618 0 +-615 -616 0 +-615 -617 0 +-615 -618 0 +-616 -617 0 +-616 -618 0 +-617 -618 0 +613 614 615 616 617 618 0 +-619 -620 0 +-619 -621 0 +-619 -622 0 +-619 -623 0 +-619 -624 0 +-620 -621 0 +-620 -622 0 +-620 -623 0 +-620 -624 0 +-621 -622 0 +-621 -623 0 +-621 -624 0 +-622 -623 0 +-622 -624 0 +-623 -624 0 +619 620 621 622 623 624 0 +-625 -626 0 +-625 -627 0 +-625 -628 0 +-625 -629 0 +-625 -630 0 +-626 -627 0 +-626 -628 0 +-626 -629 0 +-626 -630 0 +-627 -628 0 +-627 -629 0 +-627 -630 0 +-628 -629 0 +-628 -630 0 +-629 -630 0 +625 626 627 628 629 630 0 +-631 -632 0 +-631 -633 0 +-631 -634 0 +-631 -635 0 +-631 -636 0 +-632 -633 0 +-632 -634 0 +-632 -635 0 +-632 -636 0 +-633 -634 0 +-633 -635 0 +-633 -636 0 +-634 -635 0 +-634 -636 0 +-635 -636 0 +631 632 633 634 635 636 0 +-637 -638 0 +-637 -639 0 +-637 -640 0 +-637 -641 0 +-637 -642 0 +-638 -639 0 +-638 -640 0 +-638 -641 0 +-638 -642 0 +-639 -640 0 +-639 -641 0 +-639 -642 0 +-640 -641 0 +-640 -642 0 +-641 -642 0 +637 638 639 640 641 642 0 +-643 -644 0 +-643 -645 0 +-643 -646 0 +-643 -647 0 +-643 -648 0 +-644 -645 0 +-644 -646 0 +-644 -647 0 +-644 -648 0 +-645 -646 0 +-645 -647 0 +-645 -648 0 +-646 -647 0 +-646 -648 0 +-647 -648 0 +643 644 645 646 647 648 0 +-649 -650 0 +-649 -651 0 +-649 -652 0 +-649 -653 0 +-649 -654 0 +-650 -651 0 +-650 -652 0 +-650 -653 0 +-650 -654 0 +-651 -652 0 +-651 -653 0 +-651 -654 0 +-652 -653 0 +-652 -654 0 +-653 -654 0 +649 650 651 652 653 654 0 +-655 -656 0 +-655 -657 0 +-655 -658 0 +-655 -659 0 +-655 -660 0 +-656 -657 0 +-656 -658 0 +-656 -659 0 +-656 -660 0 +-657 -658 0 +-657 -659 0 +-657 -660 0 +-658 -659 0 +-658 -660 0 +-659 -660 0 +655 656 657 658 659 660 0 +-661 -662 0 +-661 -663 0 +-661 -664 0 +-661 -665 0 +-661 -666 0 +-662 -663 0 +-662 -664 0 +-662 -665 0 +-662 -666 0 +-663 -664 0 +-663 -665 0 +-663 -666 0 +-664 -665 0 +-664 -666 0 +-665 -666 0 +661 662 663 664 665 666 0 +-667 -668 0 +-667 -669 0 +-667 -670 0 +-667 -671 0 +-667 -672 0 +-668 -669 0 +-668 -670 0 +-668 -671 0 +-668 -672 0 +-669 -670 0 +-669 -671 0 +-669 -672 0 +-670 -671 0 +-670 -672 0 +-671 -672 0 +667 668 669 670 671 672 0 +-673 -674 0 +-673 -675 0 +-673 -676 0 +-673 -677 0 +-673 -678 0 +-674 -675 0 +-674 -676 0 +-674 -677 0 +-674 -678 0 +-675 -676 0 +-675 -677 0 +-675 -678 0 +-676 -677 0 +-676 -678 0 +-677 -678 0 +673 674 675 676 677 678 0 +-679 -680 0 +-679 -681 0 +-679 -682 0 +-679 -683 0 +-679 -684 0 +-680 -681 0 +-680 -682 0 +-680 -683 0 +-680 -684 0 +-681 -682 0 +-681 -683 0 +-681 -684 0 +-682 -683 0 +-682 -684 0 +-683 -684 0 +679 680 681 682 683 684 0 +-685 -686 0 +-685 -687 0 +-685 -688 0 +-685 -689 0 +-685 -690 0 +-686 -687 0 +-686 -688 0 +-686 -689 0 +-686 -690 0 +-687 -688 0 +-687 -689 0 +-687 -690 0 +-688 -689 0 +-688 -690 0 +-689 -690 0 +685 686 687 688 689 690 0 +-691 -692 0 +-691 -693 0 +-691 -694 0 +-691 -695 0 +-691 -696 0 +-692 -693 0 +-692 -694 0 +-692 -695 0 +-692 -696 0 +-693 -694 0 +-693 -695 0 +-693 -696 0 +-694 -695 0 +-694 -696 0 +-695 -696 0 +691 692 693 694 695 696 0 +-697 -698 0 +-697 -699 0 +-697 -700 0 +-697 -701 0 +-697 -702 0 +-698 -699 0 +-698 -700 0 +-698 -701 0 +-698 -702 0 +-699 -700 0 +-699 -701 0 +-699 -702 0 +-700 -701 0 +-700 -702 0 +-701 -702 0 +697 698 699 700 701 702 0 +-703 -704 0 +-703 -705 0 +-703 -706 0 +-703 -707 0 +-703 -708 0 +-704 -705 0 +-704 -706 0 +-704 -707 0 +-704 -708 0 +-705 -706 0 +-705 -707 0 +-705 -708 0 +-706 -707 0 +-706 -708 0 +-707 -708 0 +703 704 705 706 707 708 0 +-709 -710 0 +-709 -711 0 +-709 -712 0 +-709 -713 0 +-709 -714 0 +-710 -711 0 +-710 -712 0 +-710 -713 0 +-710 -714 0 +-711 -712 0 +-711 -713 0 +-711 -714 0 +-712 -713 0 +-712 -714 0 +-713 -714 0 +709 710 711 712 713 714 0 +-715 -716 0 +-715 -717 0 +-715 -718 0 +-715 -719 0 +-715 -720 0 +-716 -717 0 +-716 -718 0 +-716 -719 0 +-716 -720 0 +-717 -718 0 +-717 -719 0 +-717 -720 0 +-718 -719 0 +-718 -720 0 +-719 -720 0 +715 716 717 718 719 720 0 +-721 -722 0 +-721 -723 0 +-721 -724 0 +-721 -725 0 +-721 -726 0 +-722 -723 0 +-722 -724 0 +-722 -725 0 +-722 -726 0 +-723 -724 0 +-723 -725 0 +-723 -726 0 +-724 -725 0 +-724 -726 0 +-725 -726 0 +721 722 723 724 725 726 0 +-727 -728 0 +-727 -729 0 +-727 -730 0 +-727 -731 0 +-727 -732 0 +-728 -729 0 +-728 -730 0 +-728 -731 0 +-728 -732 0 +-729 -730 0 +-729 -731 0 +-729 -732 0 +-730 -731 0 +-730 -732 0 +-731 -732 0 +727 728 729 730 731 732 0 +-733 -734 0 +-733 -735 0 +-733 -736 0 +-733 -737 0 +-733 -738 0 +-734 -735 0 +-734 -736 0 +-734 -737 0 +-734 -738 0 +-735 -736 0 +-735 -737 0 +-735 -738 0 +-736 -737 0 +-736 -738 0 +-737 -738 0 +733 734 735 736 737 738 0 +-739 -740 0 +-739 -741 0 +-739 -742 0 +-739 -743 0 +-739 -744 0 +-740 -741 0 +-740 -742 0 +-740 -743 0 +-740 -744 0 +-741 -742 0 +-741 -743 0 +-741 -744 0 +-742 -743 0 +-742 -744 0 +-743 -744 0 +739 740 741 742 743 744 0 +-745 -746 0 +-745 -747 0 +-745 -748 0 +-745 -749 0 +-745 -750 0 +-746 -747 0 +-746 -748 0 +-746 -749 0 +-746 -750 0 +-747 -748 0 +-747 -749 0 +-747 -750 0 +-748 -749 0 +-748 -750 0 +-749 -750 0 +745 746 747 748 749 750 0 +-751 -752 0 +-751 -753 0 +-751 -754 0 +-751 -755 0 +-751 -756 0 +-752 -753 0 +-752 -754 0 +-752 -755 0 +-752 -756 0 +-753 -754 0 +-753 -755 0 +-753 -756 0 +-754 -755 0 +-754 -756 0 +-755 -756 0 +751 752 753 754 755 756 0 +-757 -758 0 +-757 -759 0 +-757 -760 0 +-757 -761 0 +-757 -762 0 +-758 -759 0 +-758 -760 0 +-758 -761 0 +-758 -762 0 +-759 -760 0 +-759 -761 0 +-759 -762 0 +-760 -761 0 +-760 -762 0 +-761 -762 0 +757 758 759 760 761 762 0 +-763 -764 0 +-763 -765 0 +-763 -766 0 +-763 -767 0 +-763 -768 0 +-764 -765 0 +-764 -766 0 +-764 -767 0 +-764 -768 0 +-765 -766 0 +-765 -767 0 +-765 -768 0 +-766 -767 0 +-766 -768 0 +-767 -768 0 +763 764 765 766 767 768 0 +-769 -770 0 +-769 -771 0 +-769 -772 0 +-769 -773 0 +-769 -774 0 +-770 -771 0 +-770 -772 0 +-770 -773 0 +-770 -774 0 +-771 -772 0 +-771 -773 0 +-771 -774 0 +-772 -773 0 +-772 -774 0 +-773 -774 0 +769 770 771 772 773 774 0 +-775 -776 0 +-775 -777 0 +-775 -778 0 +-775 -779 0 +-775 -780 0 +-776 -777 0 +-776 -778 0 +-776 -779 0 +-776 -780 0 +-777 -778 0 +-777 -779 0 +-777 -780 0 +-778 -779 0 +-778 -780 0 +-779 -780 0 +775 776 777 778 779 780 0 +-781 -782 0 +-781 -783 0 +-781 -784 0 +-781 -785 0 +-781 -786 0 +-782 -783 0 +-782 -784 0 +-782 -785 0 +-782 -786 0 +-783 -784 0 +-783 -785 0 +-783 -786 0 +-784 -785 0 +-784 -786 0 +-785 -786 0 +781 782 783 784 785 786 0 +-787 -788 0 +-787 -789 0 +-787 -790 0 +-787 -791 0 +-787 -792 0 +-788 -789 0 +-788 -790 0 +-788 -791 0 +-788 -792 0 +-789 -790 0 +-789 -791 0 +-789 -792 0 +-790 -791 0 +-790 -792 0 +-791 -792 0 +787 788 789 790 791 792 0 +-793 -794 0 +-793 -795 0 +-793 -796 0 +-793 -797 0 +-793 -798 0 +-794 -795 0 +-794 -796 0 +-794 -797 0 +-794 -798 0 +-795 -796 0 +-795 -797 0 +-795 -798 0 +-796 -797 0 +-796 -798 0 +-797 -798 0 +793 794 795 796 797 798 0 +-799 -800 0 +-799 -801 0 +-799 -802 0 +-799 -803 0 +-799 -804 0 +-800 -801 0 +-800 -802 0 +-800 -803 0 +-800 -804 0 +-801 -802 0 +-801 -803 0 +-801 -804 0 +-802 -803 0 +-802 -804 0 +-803 -804 0 +799 800 801 802 803 804 0 +-805 -806 0 +-805 -807 0 +-805 -808 0 +-805 -809 0 +-805 -810 0 +-806 -807 0 +-806 -808 0 +-806 -809 0 +-806 -810 0 +-807 -808 0 +-807 -809 0 +-807 -810 0 +-808 -809 0 +-808 -810 0 +-809 -810 0 +805 806 807 808 809 810 0 +-811 -812 0 +-811 -813 0 +-811 -814 0 +-811 -815 0 +-811 -816 0 +-812 -813 0 +-812 -814 0 +-812 -815 0 +-812 -816 0 +-813 -814 0 +-813 -815 0 +-813 -816 0 +-814 -815 0 +-814 -816 0 +-815 -816 0 +811 812 813 814 815 816 0 +-817 -818 0 +-817 -819 0 +-817 -820 0 +-817 -821 0 +-817 -822 0 +-818 -819 0 +-818 -820 0 +-818 -821 0 +-818 -822 0 +-819 -820 0 +-819 -821 0 +-819 -822 0 +-820 -821 0 +-820 -822 0 +-821 -822 0 +817 818 819 820 821 822 0 +-823 -824 0 +-823 -825 0 +-823 -826 0 +-823 -827 0 +-823 -828 0 +-824 -825 0 +-824 -826 0 +-824 -827 0 +-824 -828 0 +-825 -826 0 +-825 -827 0 +-825 -828 0 +-826 -827 0 +-826 -828 0 +-827 -828 0 +823 824 825 826 827 828 0 +-829 -830 0 +-829 -831 0 +-829 -832 0 +-829 -833 0 +-829 -834 0 +-830 -831 0 +-830 -832 0 +-830 -833 0 +-830 -834 0 +-831 -832 0 +-831 -833 0 +-831 -834 0 +-832 -833 0 +-832 -834 0 +-833 -834 0 +829 830 831 832 833 834 0 +-835 -836 0 +-835 -837 0 +-835 -838 0 +-835 -839 0 +-835 -840 0 +-836 -837 0 +-836 -838 0 +-836 -839 0 +-836 -840 0 +-837 -838 0 +-837 -839 0 +-837 -840 0 +-838 -839 0 +-838 -840 0 +-839 -840 0 +835 836 837 838 839 840 0 +-841 -842 0 +-841 -843 0 +-841 -844 0 +-841 -845 0 +-841 -846 0 +-842 -843 0 +-842 -844 0 +-842 -845 0 +-842 -846 0 +-843 -844 0 +-843 -845 0 +-843 -846 0 +-844 -845 0 +-844 -846 0 +-845 -846 0 +841 842 843 844 845 846 0 +-847 -848 0 +-847 -849 0 +-847 -850 0 +-847 -851 0 +-847 -852 0 +-848 -849 0 +-848 -850 0 +-848 -851 0 +-848 -852 0 +-849 -850 0 +-849 -851 0 +-849 -852 0 +-850 -851 0 +-850 -852 0 +-851 -852 0 +847 848 849 850 851 852 0 +-853 -854 0 +-853 -855 0 +-853 -856 0 +-853 -857 0 +-853 -858 0 +-854 -855 0 +-854 -856 0 +-854 -857 0 +-854 -858 0 +-855 -856 0 +-855 -857 0 +-855 -858 0 +-856 -857 0 +-856 -858 0 +-857 -858 0 +853 854 855 856 857 858 0 +-859 -860 0 +-859 -861 0 +-859 -862 0 +-859 -863 0 +-859 -864 0 +-860 -861 0 +-860 -862 0 +-860 -863 0 +-860 -864 0 +-861 -862 0 +-861 -863 0 +-861 -864 0 +-862 -863 0 +-862 -864 0 +-863 -864 0 +859 860 861 862 863 864 0 +-865 -866 0 +-865 -867 0 +-865 -868 0 +-865 -869 0 +-865 -870 0 +-866 -867 0 +-866 -868 0 +-866 -869 0 +-866 -870 0 +-867 -868 0 +-867 -869 0 +-867 -870 0 +-868 -869 0 +-868 -870 0 +-869 -870 0 +865 866 867 868 869 870 0 +-871 -872 0 +-871 -873 0 +-871 -874 0 +-871 -875 0 +-871 -876 0 +-872 -873 0 +-872 -874 0 +-872 -875 0 +-872 -876 0 +-873 -874 0 +-873 -875 0 +-873 -876 0 +-874 -875 0 +-874 -876 0 +-875 -876 0 +871 872 873 874 875 876 0 +-877 -878 0 +-877 -879 0 +-877 -880 0 +-877 -881 0 +-877 -882 0 +-878 -879 0 +-878 -880 0 +-878 -881 0 +-878 -882 0 +-879 -880 0 +-879 -881 0 +-879 -882 0 +-880 -881 0 +-880 -882 0 +-881 -882 0 +877 878 879 880 881 882 0 +-883 -884 0 +-883 -885 0 +-883 -886 0 +-883 -887 0 +-883 -888 0 +-884 -885 0 +-884 -886 0 +-884 -887 0 +-884 -888 0 +-885 -886 0 +-885 -887 0 +-885 -888 0 +-886 -887 0 +-886 -888 0 +-887 -888 0 +883 884 885 886 887 888 0 +-889 -890 0 +-889 -891 0 +-889 -892 0 +-889 -893 0 +-889 -894 0 +-890 -891 0 +-890 -892 0 +-890 -893 0 +-890 -894 0 +-891 -892 0 +-891 -893 0 +-891 -894 0 +-892 -893 0 +-892 -894 0 +-893 -894 0 +889 890 891 892 893 894 0 +-895 -896 0 +-895 -897 0 +-895 -898 0 +-895 -899 0 +-895 -900 0 +-896 -897 0 +-896 -898 0 +-896 -899 0 +-896 -900 0 +-897 -898 0 +-897 -899 0 +-897 -900 0 +-898 -899 0 +-898 -900 0 +-899 -900 0 +895 896 897 898 899 900 0 +-901 -902 0 +-901 -903 0 +-901 -904 0 +-901 -905 0 +-901 -906 0 +-902 -903 0 +-902 -904 0 +-902 -905 0 +-902 -906 0 +-903 -904 0 +-903 -905 0 +-903 -906 0 +-904 -905 0 +-904 -906 0 +-905 -906 0 +901 902 903 904 905 906 0 +-907 -908 0 +-907 -909 0 +-907 -910 0 +-907 -911 0 +-907 -912 0 +-908 -909 0 +-908 -910 0 +-908 -911 0 +-908 -912 0 +-909 -910 0 +-909 -911 0 +-909 -912 0 +-910 -911 0 +-910 -912 0 +-911 -912 0 +907 908 909 910 911 912 0 +-913 -914 0 +-913 -915 0 +-913 -916 0 +-913 -917 0 +-913 -918 0 +-914 -915 0 +-914 -916 0 +-914 -917 0 +-914 -918 0 +-915 -916 0 +-915 -917 0 +-915 -918 0 +-916 -917 0 +-916 -918 0 +-917 -918 0 +913 914 915 916 917 918 0 +-919 -920 0 +-919 -921 0 +-919 -922 0 +-919 -923 0 +-919 -924 0 +-920 -921 0 +-920 -922 0 +-920 -923 0 +-920 -924 0 +-921 -922 0 +-921 -923 0 +-921 -924 0 +-922 -923 0 +-922 -924 0 +-923 -924 0 +919 920 921 922 923 924 0 +-925 -926 0 +-925 -927 0 +-925 -928 0 +-925 -929 0 +-925 -930 0 +-926 -927 0 +-926 -928 0 +-926 -929 0 +-926 -930 0 +-927 -928 0 +-927 -929 0 +-927 -930 0 +-928 -929 0 +-928 -930 0 +-929 -930 0 +925 926 927 928 929 930 0 +-931 -932 0 +-931 -933 0 +-931 -934 0 +-931 -935 0 +-931 -936 0 +-932 -933 0 +-932 -934 0 +-932 -935 0 +-932 -936 0 +-933 -934 0 +-933 -935 0 +-933 -936 0 +-934 -935 0 +-934 -936 0 +-935 -936 0 +931 932 933 934 935 936 0 +-937 -938 0 +-937 -939 0 +-937 -940 0 +-937 -941 0 +-937 -942 0 +-938 -939 0 +-938 -940 0 +-938 -941 0 +-938 -942 0 +-939 -940 0 +-939 -941 0 +-939 -942 0 +-940 -941 0 +-940 -942 0 +-941 -942 0 +937 938 939 940 941 942 0 +-943 -944 0 +-943 -945 0 +-943 -946 0 +-943 -947 0 +-943 -948 0 +-944 -945 0 +-944 -946 0 +-944 -947 0 +-944 -948 0 +-945 -946 0 +-945 -947 0 +-945 -948 0 +-946 -947 0 +-946 -948 0 +-947 -948 0 +943 944 945 946 947 948 0 +-949 -950 0 +-949 -951 0 +-949 -952 0 +-949 -953 0 +-949 -954 0 +-950 -951 0 +-950 -952 0 +-950 -953 0 +-950 -954 0 +-951 -952 0 +-951 -953 0 +-951 -954 0 +-952 -953 0 +-952 -954 0 +-953 -954 0 +949 950 951 952 953 954 0 +-955 -956 0 +-955 -957 0 +-955 -958 0 +-955 -959 0 +-955 -960 0 +-956 -957 0 +-956 -958 0 +-956 -959 0 +-956 -960 0 +-957 -958 0 +-957 -959 0 +-957 -960 0 +-958 -959 0 +-958 -960 0 +-959 -960 0 +955 956 957 958 959 960 0 +-961 -962 0 +-961 -963 0 +-961 -964 0 +-961 -965 0 +-961 -966 0 +-962 -963 0 +-962 -964 0 +-962 -965 0 +-962 -966 0 +-963 -964 0 +-963 -965 0 +-963 -966 0 +-964 -965 0 +-964 -966 0 +-965 -966 0 +961 962 963 964 965 966 0 +-967 -968 0 +-967 -969 0 +-967 -970 0 +-967 -971 0 +-967 -972 0 +-968 -969 0 +-968 -970 0 +-968 -971 0 +-968 -972 0 +-969 -970 0 +-969 -971 0 +-969 -972 0 +-970 -971 0 +-970 -972 0 +-971 -972 0 +967 968 969 970 971 972 0 +-973 -974 0 +-973 -975 0 +-973 -976 0 +-973 -977 0 +-973 -978 0 +-974 -975 0 +-974 -976 0 +-974 -977 0 +-974 -978 0 +-975 -976 0 +-975 -977 0 +-975 -978 0 +-976 -977 0 +-976 -978 0 +-977 -978 0 +973 974 975 976 977 978 0 +-37 -49 0 +-38 -50 0 +-39 -51 0 +-40 -52 0 +-41 -53 0 +-42 -54 0 +-49 -61 0 +-50 -62 0 +-51 -63 0 +-52 -64 0 +-53 -65 0 +-54 -66 0 +-79 -103 0 +-80 -104 0 +-81 -105 0 +-82 -106 0 +-83 -107 0 +-84 -108 0 +-85 -109 0 +-86 -110 0 +-87 -111 0 +-88 -112 0 +-89 -113 0 +-90 -114 0 +-103 -121 0 +-104 -122 0 +-105 -123 0 +-106 -124 0 +-107 -125 0 +-108 -126 0 +-133 -139 0 +-134 -140 0 +-135 -141 0 +-136 -142 0 +-137 -143 0 +-138 -144 0 +-133 -145 0 +-134 -146 0 +-135 -147 0 +-136 -148 0 +-137 -149 0 +-138 -150 0 +-139 -151 0 +-140 -152 0 +-141 -153 0 +-142 -154 0 +-143 -155 0 +-144 -156 0 +-157 -169 0 +-158 -170 0 +-159 -171 0 +-160 -172 0 +-161 -173 0 +-162 -174 0 +-199 -217 0 +-200 -218 0 +-201 -219 0 +-202 -220 0 +-203 -221 0 +-204 -222 0 +-211 -217 0 +-212 -218 0 +-213 -219 0 +-214 -220 0 +-215 -221 0 +-216 -222 0 +-217 -247 0 +-218 -248 0 +-219 -249 0 +-220 -250 0 +-221 -251 0 +-222 -252 0 +-235 -241 0 +-236 -242 0 +-237 -243 0 +-238 -244 0 +-239 -245 0 +-240 -246 0 +-253 -265 0 +-254 -266 0 +-255 -267 0 +-256 -268 0 +-257 -269 0 +-258 -270 0 +-259 -271 0 +-260 -272 0 +-261 -273 0 +-262 -274 0 +-263 -275 0 +-264 -276 0 +-271 -283 0 +-272 -284 0 +-273 -285 0 +-274 -286 0 +-275 -287 0 +-276 -288 0 +-307 -313 0 +-308 -314 0 +-309 -315 0 +-310 -316 0 +-311 -317 0 +-312 -318 0 +-319 -331 0 +-320 -332 0 +-321 -333 0 +-322 -334 0 +-323 -335 0 +-324 -336 0 +-367 -385 0 +-368 -386 0 +-369 -387 0 +-370 -388 0 +-371 -389 0 +-372 -390 0 +-373 -391 0 +-374 -392 0 +-375 -393 0 +-376 -394 0 +-377 -395 0 +-378 -396 0 +-415 -439 0 +-416 -440 0 +-417 -441 0 +-418 -442 0 +-419 -443 0 +-420 -444 0 +-421 -451 0 +-422 -452 0 +-423 -453 0 +-424 -454 0 +-425 -455 0 +-426 -456 0 +-451 -481 0 +-452 -482 0 +-453 -483 0 +-454 -484 0 +-455 -485 0 +-456 -486 0 +-457 -469 0 +-458 -470 0 +-459 -471 0 +-460 -472 0 +-461 -473 0 +-462 -474 0 +-463 -475 0 +-464 -476 0 +-465 -477 0 +-466 -478 0 +-467 -479 0 +-468 -480 0 +-487 -517 0 +-488 -518 0 +-489 -519 0 +-490 -520 0 +-491 -521 0 +-492 -522 0 +-499 -505 0 +-500 -506 0 +-501 -507 0 +-502 -508 0 +-503 -509 0 +-504 -510 0 +-517 -541 0 +-518 -542 0 +-519 -543 0 +-520 -544 0 +-521 -545 0 +-522 -546 0 +-529 -541 0 +-530 -542 0 +-531 -543 0 +-532 -544 0 +-533 -545 0 +-534 -546 0 +-547 -565 0 +-548 -566 0 +-549 -567 0 +-550 -568 0 +-551 -569 0 +-552 -570 0 +-553 -571 0 +-554 -572 0 +-555 -573 0 +-556 -574 0 +-557 -575 0 +-558 -576 0 +-553 -583 0 +-554 -584 0 +-555 -585 0 +-556 -586 0 +-557 -587 0 +-558 -588 0 +-589 -595 0 +-590 -596 0 +-591 -597 0 +-592 -598 0 +-593 -599 0 +-594 -600 0 +-625 -637 0 +-626 -638 0 +-627 -639 0 +-628 -640 0 +-629 -641 0 +-630 -642 0 +-643 -649 0 +-644 -650 0 +-645 -651 0 +-646 -652 0 +-647 -653 0 +-648 -654 0 +-667 -679 0 +-668 -680 0 +-669 -681 0 +-670 -682 0 +-671 -683 0 +-672 -684 0 +-679 -703 0 +-680 -704 0 +-681 -705 0 +-682 -706 0 +-683 -707 0 +-684 -708 0 +-709 -739 0 +-710 -740 0 +-711 -741 0 +-712 -742 0 +-713 -743 0 +-714 -744 0 +-721 -745 0 +-722 -746 0 +-723 -747 0 +-724 -748 0 +-725 -749 0 +-726 -750 0 +-727 -745 0 +-728 -746 0 +-729 -747 0 +-730 -748 0 +-731 -749 0 +-732 -750 0 +-829 -835 0 +-830 -836 0 +-831 -837 0 +-832 -838 0 +-833 -839 0 +-834 -840 0 +-835 -853 0 +-836 -854 0 +-837 -855 0 +-838 -856 0 +-839 -857 0 +-840 -858 0 +-871 -895 0 +-872 -896 0 +-873 -897 0 +-874 -898 0 +-875 -899 0 +-876 -900 0 +-907 -919 0 +-908 -920 0 +-909 -921 0 +-910 -922 0 +-911 -923 0 +-912 -924 0 +-913 -919 0 +-914 -920 0 +-915 -921 0 +-916 -922 0 +-917 -923 0 +-918 -924 0 +-919 -931 0 +-920 -932 0 +-921 -933 0 +-922 -934 0 +-923 -935 0 +-924 -936 0 +-949 -967 0 +-950 -968 0 +-951 -969 0 +-952 -970 0 +-953 -971 0 +-954 -972 0 +-7 -955 0 +-8 -956 0 +-9 -957 0 +-10 -958 0 +-11 -959 0 +-12 -960 0 +-25 -973 0 +-26 -974 0 +-27 -975 0 +-28 -976 0 +-29 -977 0 +-30 -978 0 +-19 -973 0 +-20 -974 0 +-21 -975 0 +-22 -976 0 +-23 -977 0 +-24 -978 0 +-13 -973 0 +-14 -974 0 +-15 -975 0 +-16 -976 0 +-17 -977 0 +-18 -978 0 +-7 -973 0 +-8 -974 0 +-9 -975 0 +-10 -976 0 +-11 -977 0 +-12 -978 0 +-1 -973 0 +-2 -974 0 +-3 -975 0 +-4 -976 0 +-5 -977 0 +-6 -978 0 +-19 -967 0 +-20 -968 0 +-21 -969 0 +-22 -970 0 +-23 -971 0 +-24 -972 0 +-13 -967 0 +-14 -968 0 +-15 -969 0 +-16 -970 0 +-17 -971 0 +-18 -972 0 +-7 -967 0 +-8 -968 0 +-9 -969 0 +-10 -970 0 +-11 -971 0 +-12 -972 0 +-1 -967 0 +-2 -968 0 +-3 -969 0 +-4 -970 0 +-5 -971 0 +-6 -972 0 +-967 -973 0 +-968 -974 0 +-969 -975 0 +-970 -976 0 +-971 -977 0 +-972 -978 0 +-13 -961 0 +-14 -962 0 +-15 -963 0 +-16 -964 0 +-17 -965 0 +-18 -966 0 +-7 -961 0 +-8 -962 0 +-9 -963 0 +-10 -964 0 +-11 -965 0 +-12 -966 0 +-1 -961 0 +-2 -962 0 +-3 -963 0 +-4 -964 0 +-5 -965 0 +-6 -966 0 +-961 -973 0 +-962 -974 0 +-963 -975 0 +-964 -976 0 +-965 -977 0 +-966 -978 0 +-961 -967 0 +-962 -968 0 +-963 -969 0 +-964 -970 0 +-965 -971 0 +-966 -972 0 +-1 -955 0 +-2 -956 0 +-3 -957 0 +-4 -958 0 +-5 -959 0 +-6 -960 0 +-955 -973 0 +-956 -974 0 +-957 -975 0 +-958 -976 0 +-959 -977 0 +-960 -978 0 +-955 -967 0 +-956 -968 0 +-957 -969 0 +-958 -970 0 +-959 -971 0 +-960 -972 0 +-955 -961 0 +-956 -962 0 +-957 -963 0 +-958 -964 0 +-959 -965 0 +-960 -966 0 +-1 -949 0 +-2 -950 0 +-3 -951 0 +-4 -952 0 +-5 -953 0 +-6 -954 0 +-949 -973 0 +-950 -974 0 +-951 -975 0 +-952 -976 0 +-953 -977 0 +-954 -978 0 +-949 -961 0 +-950 -962 0 +-951 -963 0 +-952 -964 0 +-953 -965 0 +-954 -966 0 +-949 -955 0 +-950 -956 0 +-951 -957 0 +-952 -958 0 +-953 -959 0 +-954 -960 0 +-943 -973 0 +-944 -974 0 +-945 -975 0 +-946 -976 0 +-947 -977 0 +-948 -978 0 +-943 -967 0 +-944 -968 0 +-945 -969 0 +-946 -970 0 +-947 -971 0 +-948 -972 0 +-943 -961 0 +-944 -962 0 +-945 -963 0 +-946 -964 0 +-947 -965 0 +-948 -966 0 +-943 -955 0 +-944 -956 0 +-945 -957 0 +-946 -958 0 +-947 -959 0 +-948 -960 0 +-943 -949 0 +-944 -950 0 +-945 -951 0 +-946 -952 0 +-947 -953 0 +-948 -954 0 +-937 -967 0 +-938 -968 0 +-939 -969 0 +-940 -970 0 +-941 -971 0 +-942 -972 0 +-937 -961 0 +-938 -962 0 +-939 -963 0 +-940 -964 0 +-941 -965 0 +-942 -966 0 +-937 -955 0 +-938 -956 0 +-939 -957 0 +-940 -958 0 +-941 -959 0 +-942 -960 0 +-937 -949 0 +-938 -950 0 +-939 -951 0 +-940 -952 0 +-941 -953 0 +-942 -954 0 +-937 -943 0 +-938 -944 0 +-939 -945 0 +-940 -946 0 +-941 -947 0 +-942 -948 0 +-931 -961 0 +-932 -962 0 +-933 -963 0 +-934 -964 0 +-935 -965 0 +-936 -966 0 +-931 -955 0 +-932 -956 0 +-933 -957 0 +-934 -958 0 +-935 -959 0 +-936 -960 0 +-931 -949 0 +-932 -950 0 +-933 -951 0 +-934 -952 0 +-935 -953 0 +-936 -954 0 +-931 -943 0 +-932 -944 0 +-933 -945 0 +-934 -946 0 +-935 -947 0 +-936 -948 0 +-931 -937 0 +-932 -938 0 +-933 -939 0 +-934 -940 0 +-935 -941 0 +-936 -942 0 +-925 -955 0 +-926 -956 0 +-927 -957 0 +-928 -958 0 +-929 -959 0 +-930 -960 0 +-925 -949 0 +-926 -950 0 +-927 -951 0 +-928 -952 0 +-929 -953 0 +-930 -954 0 +-925 -943 0 +-926 -944 0 +-927 -945 0 +-928 -946 0 +-929 -947 0 +-930 -948 0 +-925 -937 0 +-926 -938 0 +-927 -939 0 +-928 -940 0 +-929 -941 0 +-930 -942 0 +-925 -931 0 +-926 -932 0 +-927 -933 0 +-928 -934 0 +-929 -935 0 +-930 -936 0 +-919 -949 0 +-920 -950 0 +-921 -951 0 +-922 -952 0 +-923 -953 0 +-924 -954 0 +-919 -943 0 +-920 -944 0 +-921 -945 0 +-922 -946 0 +-923 -947 0 +-924 -948 0 +-919 -937 0 +-920 -938 0 +-921 -939 0 +-922 -940 0 +-923 -941 0 +-924 -942 0 +-919 -925 0 +-920 -926 0 +-921 -927 0 +-922 -928 0 +-923 -929 0 +-924 -930 0 +-913 -943 0 +-914 -944 0 +-915 -945 0 +-916 -946 0 +-917 -947 0 +-918 -948 0 +-913 -937 0 +-914 -938 0 +-915 -939 0 +-916 -940 0 +-917 -941 0 +-918 -942 0 +-913 -931 0 +-914 -932 0 +-915 -933 0 +-916 -934 0 +-917 -935 0 +-918 -936 0 +-913 -925 0 +-914 -926 0 +-915 -927 0 +-916 -928 0 +-917 -929 0 +-918 -930 0 +-907 -937 0 +-908 -938 0 +-909 -939 0 +-910 -940 0 +-911 -941 0 +-912 -942 0 +-907 -931 0 +-908 -932 0 +-909 -933 0 +-910 -934 0 +-911 -935 0 +-912 -936 0 +-907 -925 0 +-908 -926 0 +-909 -927 0 +-910 -928 0 +-911 -929 0 +-912 -930 0 +-907 -913 0 +-908 -914 0 +-909 -915 0 +-910 -916 0 +-911 -917 0 +-912 -918 0 +-901 -931 0 +-902 -932 0 +-903 -933 0 +-904 -934 0 +-905 -935 0 +-906 -936 0 +-901 -925 0 +-902 -926 0 +-903 -927 0 +-904 -928 0 +-905 -929 0 +-906 -930 0 +-901 -919 0 +-902 -920 0 +-903 -921 0 +-904 -922 0 +-905 -923 0 +-906 -924 0 +-901 -913 0 +-902 -914 0 +-903 -915 0 +-904 -916 0 +-905 -917 0 +-906 -918 0 +-901 -907 0 +-902 -908 0 +-903 -909 0 +-904 -910 0 +-905 -911 0 +-906 -912 0 +-895 -925 0 +-896 -926 0 +-897 -927 0 +-898 -928 0 +-899 -929 0 +-900 -930 0 +-895 -919 0 +-896 -920 0 +-897 -921 0 +-898 -922 0 +-899 -923 0 +-900 -924 0 +-895 -913 0 +-896 -914 0 +-897 -915 0 +-898 -916 0 +-899 -917 0 +-900 -918 0 +-895 -907 0 +-896 -908 0 +-897 -909 0 +-898 -910 0 +-899 -911 0 +-900 -912 0 +-895 -901 0 +-896 -902 0 +-897 -903 0 +-898 -904 0 +-899 -905 0 +-900 -906 0 +-889 -919 0 +-890 -920 0 +-891 -921 0 +-892 -922 0 +-893 -923 0 +-894 -924 0 +-889 -913 0 +-890 -914 0 +-891 -915 0 +-892 -916 0 +-893 -917 0 +-894 -918 0 +-889 -907 0 +-890 -908 0 +-891 -909 0 +-892 -910 0 +-893 -911 0 +-894 -912 0 +-889 -901 0 +-890 -902 0 +-891 -903 0 +-892 -904 0 +-893 -905 0 +-894 -906 0 +-889 -895 0 +-890 -896 0 +-891 -897 0 +-892 -898 0 +-893 -899 0 +-894 -900 0 +-883 -913 0 +-884 -914 0 +-885 -915 0 +-886 -916 0 +-887 -917 0 +-888 -918 0 +-883 -907 0 +-884 -908 0 +-885 -909 0 +-886 -910 0 +-887 -911 0 +-888 -912 0 +-883 -901 0 +-884 -902 0 +-885 -903 0 +-886 -904 0 +-887 -905 0 +-888 -906 0 +-883 -895 0 +-884 -896 0 +-885 -897 0 +-886 -898 0 +-887 -899 0 +-888 -900 0 +-883 -889 0 +-884 -890 0 +-885 -891 0 +-886 -892 0 +-887 -893 0 +-888 -894 0 +-877 -907 0 +-878 -908 0 +-879 -909 0 +-880 -910 0 +-881 -911 0 +-882 -912 0 +-877 -901 0 +-878 -902 0 +-879 -903 0 +-880 -904 0 +-881 -905 0 +-882 -906 0 +-877 -895 0 +-878 -896 0 +-879 -897 0 +-880 -898 0 +-881 -899 0 +-882 -900 0 +-877 -889 0 +-878 -890 0 +-879 -891 0 +-880 -892 0 +-881 -893 0 +-882 -894 0 +-877 -883 0 +-878 -884 0 +-879 -885 0 +-880 -886 0 +-881 -887 0 +-882 -888 0 +-871 -901 0 +-872 -902 0 +-873 -903 0 +-874 -904 0 +-875 -905 0 +-876 -906 0 +-871 -889 0 +-872 -890 0 +-873 -891 0 +-874 -892 0 +-875 -893 0 +-876 -894 0 +-871 -883 0 +-872 -884 0 +-873 -885 0 +-874 -886 0 +-875 -887 0 +-876 -888 0 +-871 -877 0 +-872 -878 0 +-873 -879 0 +-874 -880 0 +-875 -881 0 +-876 -882 0 +-865 -895 0 +-866 -896 0 +-867 -897 0 +-868 -898 0 +-869 -899 0 +-870 -900 0 +-865 -889 0 +-866 -890 0 +-867 -891 0 +-868 -892 0 +-869 -893 0 +-870 -894 0 +-865 -883 0 +-866 -884 0 +-867 -885 0 +-868 -886 0 +-869 -887 0 +-870 -888 0 +-865 -877 0 +-866 -878 0 +-867 -879 0 +-868 -880 0 +-869 -881 0 +-870 -882 0 +-865 -871 0 +-866 -872 0 +-867 -873 0 +-868 -874 0 +-869 -875 0 +-870 -876 0 +-859 -889 0 +-860 -890 0 +-861 -891 0 +-862 -892 0 +-863 -893 0 +-864 -894 0 +-859 -883 0 +-860 -884 0 +-861 -885 0 +-862 -886 0 +-863 -887 0 +-864 -888 0 +-859 -877 0 +-860 -878 0 +-861 -879 0 +-862 -880 0 +-863 -881 0 +-864 -882 0 +-859 -871 0 +-860 -872 0 +-861 -873 0 +-862 -874 0 +-863 -875 0 +-864 -876 0 +-859 -865 0 +-860 -866 0 +-861 -867 0 +-862 -868 0 +-863 -869 0 +-864 -870 0 +-853 -883 0 +-854 -884 0 +-855 -885 0 +-856 -886 0 +-857 -887 0 +-858 -888 0 +-853 -877 0 +-854 -878 0 +-855 -879 0 +-856 -880 0 +-857 -881 0 +-858 -882 0 +-853 -871 0 +-854 -872 0 +-855 -873 0 +-856 -874 0 +-857 -875 0 +-858 -876 0 +-853 -865 0 +-854 -866 0 +-855 -867 0 +-856 -868 0 +-857 -869 0 +-858 -870 0 +-853 -859 0 +-854 -860 0 +-855 -861 0 +-856 -862 0 +-857 -863 0 +-858 -864 0 +-847 -877 0 +-848 -878 0 +-849 -879 0 +-850 -880 0 +-851 -881 0 +-852 -882 0 +-847 -871 0 +-848 -872 0 +-849 -873 0 +-850 -874 0 +-851 -875 0 +-852 -876 0 +-847 -865 0 +-848 -866 0 +-849 -867 0 +-850 -868 0 +-851 -869 0 +-852 -870 0 +-847 -859 0 +-848 -860 0 +-849 -861 0 +-850 -862 0 +-851 -863 0 +-852 -864 0 +-847 -853 0 +-848 -854 0 +-849 -855 0 +-850 -856 0 +-851 -857 0 +-852 -858 0 +-841 -871 0 +-842 -872 0 +-843 -873 0 +-844 -874 0 +-845 -875 0 +-846 -876 0 +-841 -865 0 +-842 -866 0 +-843 -867 0 +-844 -868 0 +-845 -869 0 +-846 -870 0 +-841 -859 0 +-842 -860 0 +-843 -861 0 +-844 -862 0 +-845 -863 0 +-846 -864 0 +-841 -853 0 +-842 -854 0 +-843 -855 0 +-844 -856 0 +-845 -857 0 +-846 -858 0 +-841 -847 0 +-842 -848 0 +-843 -849 0 +-844 -850 0 +-845 -851 0 +-846 -852 0 +-835 -865 0 +-836 -866 0 +-837 -867 0 +-838 -868 0 +-839 -869 0 +-840 -870 0 +-835 -859 0 +-836 -860 0 +-837 -861 0 +-838 -862 0 +-839 -863 0 +-840 -864 0 +-835 -847 0 +-836 -848 0 +-837 -849 0 +-838 -850 0 +-839 -851 0 +-840 -852 0 +-835 -841 0 +-836 -842 0 +-837 -843 0 +-838 -844 0 +-839 -845 0 +-840 -846 0 +-829 -859 0 +-830 -860 0 +-831 -861 0 +-832 -862 0 +-833 -863 0 +-834 -864 0 +-829 -853 0 +-830 -854 0 +-831 -855 0 +-832 -856 0 +-833 -857 0 +-834 -858 0 +-829 -847 0 +-830 -848 0 +-831 -849 0 +-832 -850 0 +-833 -851 0 +-834 -852 0 +-823 -853 0 +-824 -854 0 +-825 -855 0 +-826 -856 0 +-827 -857 0 +-828 -858 0 +-823 -847 0 +-824 -848 0 +-825 -849 0 +-826 -850 0 +-827 -851 0 +-828 -852 0 +-823 -841 0 +-824 -842 0 +-825 -843 0 +-826 -844 0 +-827 -845 0 +-828 -846 0 +-823 -835 0 +-824 -836 0 +-825 -837 0 +-826 -838 0 +-827 -839 0 +-828 -840 0 +-823 -829 0 +-824 -830 0 +-825 -831 0 +-826 -832 0 +-827 -833 0 +-828 -834 0 +-817 -847 0 +-818 -848 0 +-819 -849 0 +-820 -850 0 +-821 -851 0 +-822 -852 0 +-817 -841 0 +-818 -842 0 +-819 -843 0 +-820 -844 0 +-821 -845 0 +-822 -846 0 +-817 -835 0 +-818 -836 0 +-819 -837 0 +-820 -838 0 +-821 -839 0 +-822 -840 0 +-817 -829 0 +-818 -830 0 +-819 -831 0 +-820 -832 0 +-821 -833 0 +-822 -834 0 +-817 -823 0 +-818 -824 0 +-819 -825 0 +-820 -826 0 +-821 -827 0 +-822 -828 0 +-811 -841 0 +-812 -842 0 +-813 -843 0 +-814 -844 0 +-815 -845 0 +-816 -846 0 +-811 -835 0 +-812 -836 0 +-813 -837 0 +-814 -838 0 +-815 -839 0 +-816 -840 0 +-811 -829 0 +-812 -830 0 +-813 -831 0 +-814 -832 0 +-815 -833 0 +-816 -834 0 +-811 -823 0 +-812 -824 0 +-813 -825 0 +-814 -826 0 +-815 -827 0 +-816 -828 0 +-811 -817 0 +-812 -818 0 +-813 -819 0 +-814 -820 0 +-815 -821 0 +-816 -822 0 +-805 -835 0 +-806 -836 0 +-807 -837 0 +-808 -838 0 +-809 -839 0 +-810 -840 0 +-805 -829 0 +-806 -830 0 +-807 -831 0 +-808 -832 0 +-809 -833 0 +-810 -834 0 +-805 -823 0 +-806 -824 0 +-807 -825 0 +-808 -826 0 +-809 -827 0 +-810 -828 0 +-805 -817 0 +-806 -818 0 +-807 -819 0 +-808 -820 0 +-809 -821 0 +-810 -822 0 +-805 -811 0 +-806 -812 0 +-807 -813 0 +-808 -814 0 +-809 -815 0 +-810 -816 0 +-799 -829 0 +-800 -830 0 +-801 -831 0 +-802 -832 0 +-803 -833 0 +-804 -834 0 +-799 -823 0 +-800 -824 0 +-801 -825 0 +-802 -826 0 +-803 -827 0 +-804 -828 0 +-799 -817 0 +-800 -818 0 +-801 -819 0 +-802 -820 0 +-803 -821 0 +-804 -822 0 +-799 -811 0 +-800 -812 0 +-801 -813 0 +-802 -814 0 +-803 -815 0 +-804 -816 0 +-793 -823 0 +-794 -824 0 +-795 -825 0 +-796 -826 0 +-797 -827 0 +-798 -828 0 +-793 -817 0 +-794 -818 0 +-795 -819 0 +-796 -820 0 +-797 -821 0 +-798 -822 0 +-793 -811 0 +-794 -812 0 +-795 -813 0 +-796 -814 0 +-797 -815 0 +-798 -816 0 +-793 -805 0 +-794 -806 0 +-795 -807 0 +-796 -808 0 +-797 -809 0 +-798 -810 0 +-793 -799 0 +-794 -800 0 +-795 -801 0 +-796 -802 0 +-797 -803 0 +-798 -804 0 +-787 -817 0 +-788 -818 0 +-789 -819 0 +-790 -820 0 +-791 -821 0 +-792 -822 0 +-787 -811 0 +-788 -812 0 +-789 -813 0 +-790 -814 0 +-791 -815 0 +-792 -816 0 +-787 -805 0 +-788 -806 0 +-789 -807 0 +-790 -808 0 +-791 -809 0 +-792 -810 0 +-787 -799 0 +-788 -800 0 +-789 -801 0 +-790 -802 0 +-791 -803 0 +-792 -804 0 +-787 -793 0 +-788 -794 0 +-789 -795 0 +-790 -796 0 +-791 -797 0 +-792 -798 0 +-781 -811 0 +-782 -812 0 +-783 -813 0 +-784 -814 0 +-785 -815 0 +-786 -816 0 +-781 -805 0 +-782 -806 0 +-783 -807 0 +-784 -808 0 +-785 -809 0 +-786 -810 0 +-781 -799 0 +-782 -800 0 +-783 -801 0 +-784 -802 0 +-785 -803 0 +-786 -804 0 +-781 -793 0 +-782 -794 0 +-783 -795 0 +-784 -796 0 +-785 -797 0 +-786 -798 0 +-781 -787 0 +-782 -788 0 +-783 -789 0 +-784 -790 0 +-785 -791 0 +-786 -792 0 +-775 -805 0 +-776 -806 0 +-777 -807 0 +-778 -808 0 +-779 -809 0 +-780 -810 0 +-775 -799 0 +-776 -800 0 +-777 -801 0 +-778 -802 0 +-779 -803 0 +-780 -804 0 +-775 -793 0 +-776 -794 0 +-777 -795 0 +-778 -796 0 +-779 -797 0 +-780 -798 0 +-775 -787 0 +-776 -788 0 +-777 -789 0 +-778 -790 0 +-779 -791 0 +-780 -792 0 +-775 -781 0 +-776 -782 0 +-777 -783 0 +-778 -784 0 +-779 -785 0 +-780 -786 0 +-769 -799 0 +-770 -800 0 +-771 -801 0 +-772 -802 0 +-773 -803 0 +-774 -804 0 +-769 -793 0 +-770 -794 0 +-771 -795 0 +-772 -796 0 +-773 -797 0 +-774 -798 0 +-769 -787 0 +-770 -788 0 +-771 -789 0 +-772 -790 0 +-773 -791 0 +-774 -792 0 +-769 -781 0 +-770 -782 0 +-771 -783 0 +-772 -784 0 +-773 -785 0 +-774 -786 0 +-769 -775 0 +-770 -776 0 +-771 -777 0 +-772 -778 0 +-773 -779 0 +-774 -780 0 +-763 -793 0 +-764 -794 0 +-765 -795 0 +-766 -796 0 +-767 -797 0 +-768 -798 0 +-763 -787 0 +-764 -788 0 +-765 -789 0 +-766 -790 0 +-767 -791 0 +-768 -792 0 +-763 -781 0 +-764 -782 0 +-765 -783 0 +-766 -784 0 +-767 -785 0 +-768 -786 0 +-763 -775 0 +-764 -776 0 +-765 -777 0 +-766 -778 0 +-767 -779 0 +-768 -780 0 +-763 -769 0 +-764 -770 0 +-765 -771 0 +-766 -772 0 +-767 -773 0 +-768 -774 0 +-757 -787 0 +-758 -788 0 +-759 -789 0 +-760 -790 0 +-761 -791 0 +-762 -792 0 +-757 -781 0 +-758 -782 0 +-759 -783 0 +-760 -784 0 +-761 -785 0 +-762 -786 0 +-757 -775 0 +-758 -776 0 +-759 -777 0 +-760 -778 0 +-761 -779 0 +-762 -780 0 +-757 -769 0 +-758 -770 0 +-759 -771 0 +-760 -772 0 +-761 -773 0 +-762 -774 0 +-757 -763 0 +-758 -764 0 +-759 -765 0 +-760 -766 0 +-761 -767 0 +-762 -768 0 +-751 -781 0 +-752 -782 0 +-753 -783 0 +-754 -784 0 +-755 -785 0 +-756 -786 0 +-751 -775 0 +-752 -776 0 +-753 -777 0 +-754 -778 0 +-755 -779 0 +-756 -780 0 +-751 -769 0 +-752 -770 0 +-753 -771 0 +-754 -772 0 +-755 -773 0 +-756 -774 0 +-751 -763 0 +-752 -764 0 +-753 -765 0 +-754 -766 0 +-755 -767 0 +-756 -768 0 +-751 -757 0 +-752 -758 0 +-753 -759 0 +-754 -760 0 +-755 -761 0 +-756 -762 0 +-745 -775 0 +-746 -776 0 +-747 -777 0 +-748 -778 0 +-749 -779 0 +-750 -780 0 +-745 -769 0 +-746 -770 0 +-747 -771 0 +-748 -772 0 +-749 -773 0 +-750 -774 0 +-745 -763 0 +-746 -764 0 +-747 -765 0 +-748 -766 0 +-749 -767 0 +-750 -768 0 +-745 -757 0 +-746 -758 0 +-747 -759 0 +-748 -760 0 +-749 -761 0 +-750 -762 0 +-745 -751 0 +-746 -752 0 +-747 -753 0 +-748 -754 0 +-749 -755 0 +-750 -756 0 +-739 -769 0 +-740 -770 0 +-741 -771 0 +-742 -772 0 +-743 -773 0 +-744 -774 0 +-739 -763 0 +-740 -764 0 +-741 -765 0 +-742 -766 0 +-743 -767 0 +-744 -768 0 +-739 -757 0 +-740 -758 0 +-741 -759 0 +-742 -760 0 +-743 -761 0 +-744 -762 0 +-739 -751 0 +-740 -752 0 +-741 -753 0 +-742 -754 0 +-743 -755 0 +-744 -756 0 +-739 -745 0 +-740 -746 0 +-741 -747 0 +-742 -748 0 +-743 -749 0 +-744 -750 0 +-733 -763 0 +-734 -764 0 +-735 -765 0 +-736 -766 0 +-737 -767 0 +-738 -768 0 +-733 -757 0 +-734 -758 0 +-735 -759 0 +-736 -760 0 +-737 -761 0 +-738 -762 0 +-733 -751 0 +-734 -752 0 +-735 -753 0 +-736 -754 0 +-737 -755 0 +-738 -756 0 +-733 -745 0 +-734 -746 0 +-735 -747 0 +-736 -748 0 +-737 -749 0 +-738 -750 0 +-733 -739 0 +-734 -740 0 +-735 -741 0 +-736 -742 0 +-737 -743 0 +-738 -744 0 +-727 -757 0 +-728 -758 0 +-729 -759 0 +-730 -760 0 +-731 -761 0 +-732 -762 0 +-727 -751 0 +-728 -752 0 +-729 -753 0 +-730 -754 0 +-731 -755 0 +-732 -756 0 +-727 -739 0 +-728 -740 0 +-729 -741 0 +-730 -742 0 +-731 -743 0 +-732 -744 0 +-727 -733 0 +-728 -734 0 +-729 -735 0 +-730 -736 0 +-731 -737 0 +-732 -738 0 +-721 -751 0 +-722 -752 0 +-723 -753 0 +-724 -754 0 +-725 -755 0 +-726 -756 0 +-721 -739 0 +-722 -740 0 +-723 -741 0 +-724 -742 0 +-725 -743 0 +-726 -744 0 +-721 -733 0 +-722 -734 0 +-723 -735 0 +-724 -736 0 +-725 -737 0 +-726 -738 0 +-721 -727 0 +-722 -728 0 +-723 -729 0 +-724 -730 0 +-725 -731 0 +-726 -732 0 +-715 -745 0 +-716 -746 0 +-717 -747 0 +-718 -748 0 +-719 -749 0 +-720 -750 0 +-715 -739 0 +-716 -740 0 +-717 -741 0 +-718 -742 0 +-719 -743 0 +-720 -744 0 +-715 -733 0 +-716 -734 0 +-717 -735 0 +-718 -736 0 +-719 -737 0 +-720 -738 0 +-715 -727 0 +-716 -728 0 +-717 -729 0 +-718 -730 0 +-719 -731 0 +-720 -732 0 +-715 -721 0 +-716 -722 0 +-717 -723 0 +-718 -724 0 +-719 -725 0 +-720 -726 0 +-709 -733 0 +-710 -734 0 +-711 -735 0 +-712 -736 0 +-713 -737 0 +-714 -738 0 +-709 -727 0 +-710 -728 0 +-711 -729 0 +-712 -730 0 +-713 -731 0 +-714 -732 0 +-709 -721 0 +-710 -722 0 +-711 -723 0 +-712 -724 0 +-713 -725 0 +-714 -726 0 +-709 -715 0 +-710 -716 0 +-711 -717 0 +-712 -718 0 +-713 -719 0 +-714 -720 0 +-703 -733 0 +-704 -734 0 +-705 -735 0 +-706 -736 0 +-707 -737 0 +-708 -738 0 +-703 -727 0 +-704 -728 0 +-705 -729 0 +-706 -730 0 +-707 -731 0 +-708 -732 0 +-703 -721 0 +-704 -722 0 +-705 -723 0 +-706 -724 0 +-707 -725 0 +-708 -726 0 +-703 -715 0 +-704 -716 0 +-705 -717 0 +-706 -718 0 +-707 -719 0 +-708 -720 0 +-703 -709 0 +-704 -710 0 +-705 -711 0 +-706 -712 0 +-707 -713 0 +-708 -714 0 +-697 -727 0 +-698 -728 0 +-699 -729 0 +-700 -730 0 +-701 -731 0 +-702 -732 0 +-697 -721 0 +-698 -722 0 +-699 -723 0 +-700 -724 0 +-701 -725 0 +-702 -726 0 +-697 -715 0 +-698 -716 0 +-699 -717 0 +-700 -718 0 +-701 -719 0 +-702 -720 0 +-697 -709 0 +-698 -710 0 +-699 -711 0 +-700 -712 0 +-701 -713 0 +-702 -714 0 +-697 -703 0 +-698 -704 0 +-699 -705 0 +-700 -706 0 +-701 -707 0 +-702 -708 0 +-691 -721 0 +-692 -722 0 +-693 -723 0 +-694 -724 0 +-695 -725 0 +-696 -726 0 +-691 -715 0 +-692 -716 0 +-693 -717 0 +-694 -718 0 +-695 -719 0 +-696 -720 0 +-691 -709 0 +-692 -710 0 +-693 -711 0 +-694 -712 0 +-695 -713 0 +-696 -714 0 +-691 -703 0 +-692 -704 0 +-693 -705 0 +-694 -706 0 +-695 -707 0 +-696 -708 0 +-691 -697 0 +-692 -698 0 +-693 -699 0 +-694 -700 0 +-695 -701 0 +-696 -702 0 +-685 -715 0 +-686 -716 0 +-687 -717 0 +-688 -718 0 +-689 -719 0 +-690 -720 0 +-685 -709 0 +-686 -710 0 +-687 -711 0 +-688 -712 0 +-689 -713 0 +-690 -714 0 +-685 -703 0 +-686 -704 0 +-687 -705 0 +-688 -706 0 +-689 -707 0 +-690 -708 0 +-685 -697 0 +-686 -698 0 +-687 -699 0 +-688 -700 0 +-689 -701 0 +-690 -702 0 +-685 -691 0 +-686 -692 0 +-687 -693 0 +-688 -694 0 +-689 -695 0 +-690 -696 0 +-679 -709 0 +-680 -710 0 +-681 -711 0 +-682 -712 0 +-683 -713 0 +-684 -714 0 +-679 -697 0 +-680 -698 0 +-681 -699 0 +-682 -700 0 +-683 -701 0 +-684 -702 0 +-679 -691 0 +-680 -692 0 +-681 -693 0 +-682 -694 0 +-683 -695 0 +-684 -696 0 +-679 -685 0 +-680 -686 0 +-681 -687 0 +-682 -688 0 +-683 -689 0 +-684 -690 0 +-673 -703 0 +-674 -704 0 +-675 -705 0 +-676 -706 0 +-677 -707 0 +-678 -708 0 +-673 -697 0 +-674 -698 0 +-675 -699 0 +-676 -700 0 +-677 -701 0 +-678 -702 0 +-673 -691 0 +-674 -692 0 +-675 -693 0 +-676 -694 0 +-677 -695 0 +-678 -696 0 +-673 -685 0 +-674 -686 0 +-675 -687 0 +-676 -688 0 +-677 -689 0 +-678 -690 0 +-673 -679 0 +-674 -680 0 +-675 -681 0 +-676 -682 0 +-677 -683 0 +-678 -684 0 +-667 -697 0 +-668 -698 0 +-669 -699 0 +-670 -700 0 +-671 -701 0 +-672 -702 0 +-667 -691 0 +-668 -692 0 +-669 -693 0 +-670 -694 0 +-671 -695 0 +-672 -696 0 +-667 -685 0 +-668 -686 0 +-669 -687 0 +-670 -688 0 +-671 -689 0 +-672 -690 0 +-667 -673 0 +-668 -674 0 +-669 -675 0 +-670 -676 0 +-671 -677 0 +-672 -678 0 +-661 -691 0 +-662 -692 0 +-663 -693 0 +-664 -694 0 +-665 -695 0 +-666 -696 0 +-661 -685 0 +-662 -686 0 +-663 -687 0 +-664 -688 0 +-665 -689 0 +-666 -690 0 +-661 -679 0 +-662 -680 0 +-663 -681 0 +-664 -682 0 +-665 -683 0 +-666 -684 0 +-661 -673 0 +-662 -674 0 +-663 -675 0 +-664 -676 0 +-665 -677 0 +-666 -678 0 +-661 -667 0 +-662 -668 0 +-663 -669 0 +-664 -670 0 +-665 -671 0 +-666 -672 0 +-655 -685 0 +-656 -686 0 +-657 -687 0 +-658 -688 0 +-659 -689 0 +-660 -690 0 +-655 -679 0 +-656 -680 0 +-657 -681 0 +-658 -682 0 +-659 -683 0 +-660 -684 0 +-655 -673 0 +-656 -674 0 +-657 -675 0 +-658 -676 0 +-659 -677 0 +-660 -678 0 +-655 -667 0 +-656 -668 0 +-657 -669 0 +-658 -670 0 +-659 -671 0 +-660 -672 0 +-655 -661 0 +-656 -662 0 +-657 -663 0 +-658 -664 0 +-659 -665 0 +-660 -666 0 +-649 -679 0 +-650 -680 0 +-651 -681 0 +-652 -682 0 +-653 -683 0 +-654 -684 0 +-649 -673 0 +-650 -674 0 +-651 -675 0 +-652 -676 0 +-653 -677 0 +-654 -678 0 +-649 -667 0 +-650 -668 0 +-651 -669 0 +-652 -670 0 +-653 -671 0 +-654 -672 0 +-649 -661 0 +-650 -662 0 +-651 -663 0 +-652 -664 0 +-653 -665 0 +-654 -666 0 +-649 -655 0 +-650 -656 0 +-651 -657 0 +-652 -658 0 +-653 -659 0 +-654 -660 0 +-643 -673 0 +-644 -674 0 +-645 -675 0 +-646 -676 0 +-647 -677 0 +-648 -678 0 +-643 -667 0 +-644 -668 0 +-645 -669 0 +-646 -670 0 +-647 -671 0 +-648 -672 0 +-643 -661 0 +-644 -662 0 +-645 -663 0 +-646 -664 0 +-647 -665 0 +-648 -666 0 +-643 -655 0 +-644 -656 0 +-645 -657 0 +-646 -658 0 +-647 -659 0 +-648 -660 0 +-637 -667 0 +-638 -668 0 +-639 -669 0 +-640 -670 0 +-641 -671 0 +-642 -672 0 +-637 -661 0 +-638 -662 0 +-639 -663 0 +-640 -664 0 +-641 -665 0 +-642 -666 0 +-637 -655 0 +-638 -656 0 +-639 -657 0 +-640 -658 0 +-641 -659 0 +-642 -660 0 +-637 -649 0 +-638 -650 0 +-639 -651 0 +-640 -652 0 +-641 -653 0 +-642 -654 0 +-637 -643 0 +-638 -644 0 +-639 -645 0 +-640 -646 0 +-641 -647 0 +-642 -648 0 +-631 -661 0 +-632 -662 0 +-633 -663 0 +-634 -664 0 +-635 -665 0 +-636 -666 0 +-631 -655 0 +-632 -656 0 +-633 -657 0 +-634 -658 0 +-635 -659 0 +-636 -660 0 +-631 -649 0 +-632 -650 0 +-633 -651 0 +-634 -652 0 +-635 -653 0 +-636 -654 0 +-631 -637 0 +-632 -638 0 +-633 -639 0 +-634 -640 0 +-635 -641 0 +-636 -642 0 +-625 -655 0 +-626 -656 0 +-627 -657 0 +-628 -658 0 +-629 -659 0 +-630 -660 0 +-625 -649 0 +-626 -650 0 +-627 -651 0 +-628 -652 0 +-629 -653 0 +-630 -654 0 +-625 -643 0 +-626 -644 0 +-627 -645 0 +-628 -646 0 +-629 -647 0 +-630 -648 0 +-625 -631 0 +-626 -632 0 +-627 -633 0 +-628 -634 0 +-629 -635 0 +-630 -636 0 +-619 -649 0 +-620 -650 0 +-621 -651 0 +-622 -652 0 +-623 -653 0 +-624 -654 0 +-619 -637 0 +-620 -638 0 +-621 -639 0 +-622 -640 0 +-623 -641 0 +-624 -642 0 +-619 -631 0 +-620 -632 0 +-621 -633 0 +-622 -634 0 +-623 -635 0 +-624 -636 0 +-619 -625 0 +-620 -626 0 +-621 -627 0 +-622 -628 0 +-623 -629 0 +-624 -630 0 +-613 -643 0 +-614 -644 0 +-615 -645 0 +-616 -646 0 +-617 -647 0 +-618 -648 0 +-613 -637 0 +-614 -638 0 +-615 -639 0 +-616 -640 0 +-617 -641 0 +-618 -642 0 +-613 -631 0 +-614 -632 0 +-615 -633 0 +-616 -634 0 +-617 -635 0 +-618 -636 0 +-613 -625 0 +-614 -626 0 +-615 -627 0 +-616 -628 0 +-617 -629 0 +-618 -630 0 +-613 -619 0 +-614 -620 0 +-615 -621 0 +-616 -622 0 +-617 -623 0 +-618 -624 0 +-607 -637 0 +-608 -638 0 +-609 -639 0 +-610 -640 0 +-611 -641 0 +-612 -642 0 +-607 -631 0 +-608 -632 0 +-609 -633 0 +-610 -634 0 +-611 -635 0 +-612 -636 0 +-607 -625 0 +-608 -626 0 +-609 -627 0 +-610 -628 0 +-611 -629 0 +-612 -630 0 +-607 -619 0 +-608 -620 0 +-609 -621 0 +-610 -622 0 +-611 -623 0 +-612 -624 0 +-607 -613 0 +-608 -614 0 +-609 -615 0 +-610 -616 0 +-611 -617 0 +-612 -618 0 +-601 -631 0 +-602 -632 0 +-603 -633 0 +-604 -634 0 +-605 -635 0 +-606 -636 0 +-601 -625 0 +-602 -626 0 +-603 -627 0 +-604 -628 0 +-605 -629 0 +-606 -630 0 +-601 -619 0 +-602 -620 0 +-603 -621 0 +-604 -622 0 +-605 -623 0 +-606 -624 0 +-601 -613 0 +-602 -614 0 +-603 -615 0 +-604 -616 0 +-605 -617 0 +-606 -618 0 +-601 -607 0 +-602 -608 0 +-603 -609 0 +-604 -610 0 +-605 -611 0 +-606 -612 0 +-595 -625 0 +-596 -626 0 +-597 -627 0 +-598 -628 0 +-599 -629 0 +-600 -630 0 +-595 -619 0 +-596 -620 0 +-597 -621 0 +-598 -622 0 +-599 -623 0 +-600 -624 0 +-595 -613 0 +-596 -614 0 +-597 -615 0 +-598 -616 0 +-599 -617 0 +-600 -618 0 +-595 -607 0 +-596 -608 0 +-597 -609 0 +-598 -610 0 +-599 -611 0 +-600 -612 0 +-595 -601 0 +-596 -602 0 +-597 -603 0 +-598 -604 0 +-599 -605 0 +-600 -606 0 +-589 -619 0 +-590 -620 0 +-591 -621 0 +-592 -622 0 +-593 -623 0 +-594 -624 0 +-589 -613 0 +-590 -614 0 +-591 -615 0 +-592 -616 0 +-593 -617 0 +-594 -618 0 +-589 -607 0 +-590 -608 0 +-591 -609 0 +-592 -610 0 +-593 -611 0 +-594 -612 0 +-589 -601 0 +-590 -602 0 +-591 -603 0 +-592 -604 0 +-593 -605 0 +-594 -606 0 +-583 -613 0 +-584 -614 0 +-585 -615 0 +-586 -616 0 +-587 -617 0 +-588 -618 0 +-583 -607 0 +-584 -608 0 +-585 -609 0 +-586 -610 0 +-587 -611 0 +-588 -612 0 +-583 -601 0 +-584 -602 0 +-585 -603 0 +-586 -604 0 +-587 -605 0 +-588 -606 0 +-583 -595 0 +-584 -596 0 +-585 -597 0 +-586 -598 0 +-587 -599 0 +-588 -600 0 +-583 -589 0 +-584 -590 0 +-585 -591 0 +-586 -592 0 +-587 -593 0 +-588 -594 0 +-577 -607 0 +-578 -608 0 +-579 -609 0 +-580 -610 0 +-581 -611 0 +-582 -612 0 +-577 -601 0 +-578 -602 0 +-579 -603 0 +-580 -604 0 +-581 -605 0 +-582 -606 0 +-577 -595 0 +-578 -596 0 +-579 -597 0 +-580 -598 0 +-581 -599 0 +-582 -600 0 +-577 -589 0 +-578 -590 0 +-579 -591 0 +-580 -592 0 +-581 -593 0 +-582 -594 0 +-577 -583 0 +-578 -584 0 +-579 -585 0 +-580 -586 0 +-581 -587 0 +-582 -588 0 +-571 -601 0 +-572 -602 0 +-573 -603 0 +-574 -604 0 +-575 -605 0 +-576 -606 0 +-571 -595 0 +-572 -596 0 +-573 -597 0 +-574 -598 0 +-575 -599 0 +-576 -600 0 +-571 -589 0 +-572 -590 0 +-573 -591 0 +-574 -592 0 +-575 -593 0 +-576 -594 0 +-571 -583 0 +-572 -584 0 +-573 -585 0 +-574 -586 0 +-575 -587 0 +-576 -588 0 +-571 -577 0 +-572 -578 0 +-573 -579 0 +-574 -580 0 +-575 -581 0 +-576 -582 0 +-565 -595 0 +-566 -596 0 +-567 -597 0 +-568 -598 0 +-569 -599 0 +-570 -600 0 +-565 -589 0 +-566 -590 0 +-567 -591 0 +-568 -592 0 +-569 -593 0 +-570 -594 0 +-565 -583 0 +-566 -584 0 +-567 -585 0 +-568 -586 0 +-569 -587 0 +-570 -588 0 +-565 -577 0 +-566 -578 0 +-567 -579 0 +-568 -580 0 +-569 -581 0 +-570 -582 0 +-565 -571 0 +-566 -572 0 +-567 -573 0 +-568 -574 0 +-569 -575 0 +-570 -576 0 +-559 -589 0 +-560 -590 0 +-561 -591 0 +-562 -592 0 +-563 -593 0 +-564 -594 0 +-559 -583 0 +-560 -584 0 +-561 -585 0 +-562 -586 0 +-563 -587 0 +-564 -588 0 +-559 -577 0 +-560 -578 0 +-561 -579 0 +-562 -580 0 +-563 -581 0 +-564 -582 0 +-559 -571 0 +-560 -572 0 +-561 -573 0 +-562 -574 0 +-563 -575 0 +-564 -576 0 +-559 -565 0 +-560 -566 0 +-561 -567 0 +-562 -568 0 +-563 -569 0 +-564 -570 0 +-553 -577 0 +-554 -578 0 +-555 -579 0 +-556 -580 0 +-557 -581 0 +-558 -582 0 +-553 -565 0 +-554 -566 0 +-555 -567 0 +-556 -568 0 +-557 -569 0 +-558 -570 0 +-553 -559 0 +-554 -560 0 +-555 -561 0 +-556 -562 0 +-557 -563 0 +-558 -564 0 +-547 -577 0 +-548 -578 0 +-549 -579 0 +-550 -580 0 +-551 -581 0 +-552 -582 0 +-547 -571 0 +-548 -572 0 +-549 -573 0 +-550 -574 0 +-551 -575 0 +-552 -576 0 +-547 -559 0 +-548 -560 0 +-549 -561 0 +-550 -562 0 +-551 -563 0 +-552 -564 0 +-547 -553 0 +-548 -554 0 +-549 -555 0 +-550 -556 0 +-551 -557 0 +-552 -558 0 +-541 -571 0 +-542 -572 0 +-543 -573 0 +-544 -574 0 +-545 -575 0 +-546 -576 0 +-541 -565 0 +-542 -566 0 +-543 -567 0 +-544 -568 0 +-545 -569 0 +-546 -570 0 +-541 -559 0 +-542 -560 0 +-543 -561 0 +-544 -562 0 +-545 -563 0 +-546 -564 0 +-541 -553 0 +-542 -554 0 +-543 -555 0 +-544 -556 0 +-545 -557 0 +-546 -558 0 +-541 -547 0 +-542 -548 0 +-543 -549 0 +-544 -550 0 +-545 -551 0 +-546 -552 0 +-535 -565 0 +-536 -566 0 +-537 -567 0 +-538 -568 0 +-539 -569 0 +-540 -570 0 +-535 -559 0 +-536 -560 0 +-537 -561 0 +-538 -562 0 +-539 -563 0 +-540 -564 0 +-535 -553 0 +-536 -554 0 +-537 -555 0 +-538 -556 0 +-539 -557 0 +-540 -558 0 +-535 -547 0 +-536 -548 0 +-537 -549 0 +-538 -550 0 +-539 -551 0 +-540 -552 0 +-535 -541 0 +-536 -542 0 +-537 -543 0 +-538 -544 0 +-539 -545 0 +-540 -546 0 +-529 -559 0 +-530 -560 0 +-531 -561 0 +-532 -562 0 +-533 -563 0 +-534 -564 0 +-529 -553 0 +-530 -554 0 +-531 -555 0 +-532 -556 0 +-533 -557 0 +-534 -558 0 +-529 -547 0 +-530 -548 0 +-531 -549 0 +-532 -550 0 +-533 -551 0 +-534 -552 0 +-529 -535 0 +-530 -536 0 +-531 -537 0 +-532 -538 0 +-533 -539 0 +-534 -540 0 +-523 -553 0 +-524 -554 0 +-525 -555 0 +-526 -556 0 +-527 -557 0 +-528 -558 0 +-523 -547 0 +-524 -548 0 +-525 -549 0 +-526 -550 0 +-527 -551 0 +-528 -552 0 +-523 -541 0 +-524 -542 0 +-525 -543 0 +-526 -544 0 +-527 -545 0 +-528 -546 0 +-523 -535 0 +-524 -536 0 +-525 -537 0 +-526 -538 0 +-527 -539 0 +-528 -540 0 +-523 -529 0 +-524 -530 0 +-525 -531 0 +-526 -532 0 +-527 -533 0 +-528 -534 0 +-517 -547 0 +-518 -548 0 +-519 -549 0 +-520 -550 0 +-521 -551 0 +-522 -552 0 +-517 -535 0 +-518 -536 0 +-519 -537 0 +-520 -538 0 +-521 -539 0 +-522 -540 0 +-517 -529 0 +-518 -530 0 +-519 -531 0 +-520 -532 0 +-521 -533 0 +-522 -534 0 +-517 -523 0 +-518 -524 0 +-519 -525 0 +-520 -526 0 +-521 -527 0 +-522 -528 0 +-511 -541 0 +-512 -542 0 +-513 -543 0 +-514 -544 0 +-515 -545 0 +-516 -546 0 +-511 -535 0 +-512 -536 0 +-513 -537 0 +-514 -538 0 +-515 -539 0 +-516 -540 0 +-511 -529 0 +-512 -530 0 +-513 -531 0 +-514 -532 0 +-515 -533 0 +-516 -534 0 +-511 -523 0 +-512 -524 0 +-513 -525 0 +-514 -526 0 +-515 -527 0 +-516 -528 0 +-511 -517 0 +-512 -518 0 +-513 -519 0 +-514 -520 0 +-515 -521 0 +-516 -522 0 +-505 -535 0 +-506 -536 0 +-507 -537 0 +-508 -538 0 +-509 -539 0 +-510 -540 0 +-505 -529 0 +-506 -530 0 +-507 -531 0 +-508 -532 0 +-509 -533 0 +-510 -534 0 +-505 -523 0 +-506 -524 0 +-507 -525 0 +-508 -526 0 +-509 -527 0 +-510 -528 0 +-505 -517 0 +-506 -518 0 +-507 -519 0 +-508 -520 0 +-509 -521 0 +-510 -522 0 +-505 -511 0 +-506 -512 0 +-507 -513 0 +-508 -514 0 +-509 -515 0 +-510 -516 0 +-499 -529 0 +-500 -530 0 +-501 -531 0 +-502 -532 0 +-503 -533 0 +-504 -534 0 +-499 -523 0 +-500 -524 0 +-501 -525 0 +-502 -526 0 +-503 -527 0 +-504 -528 0 +-499 -517 0 +-500 -518 0 +-501 -519 0 +-502 -520 0 +-503 -521 0 +-504 -522 0 +-499 -511 0 +-500 -512 0 +-501 -513 0 +-502 -514 0 +-503 -515 0 +-504 -516 0 +-493 -523 0 +-494 -524 0 +-495 -525 0 +-496 -526 0 +-497 -527 0 +-498 -528 0 +-493 -517 0 +-494 -518 0 +-495 -519 0 +-496 -520 0 +-497 -521 0 +-498 -522 0 +-493 -511 0 +-494 -512 0 +-495 -513 0 +-496 -514 0 +-497 -515 0 +-498 -516 0 +-493 -505 0 +-494 -506 0 +-495 -507 0 +-496 -508 0 +-497 -509 0 +-498 -510 0 +-493 -499 0 +-494 -500 0 +-495 -501 0 +-496 -502 0 +-497 -503 0 +-498 -504 0 +-487 -511 0 +-488 -512 0 +-489 -513 0 +-490 -514 0 +-491 -515 0 +-492 -516 0 +-487 -505 0 +-488 -506 0 +-489 -507 0 +-490 -508 0 +-491 -509 0 +-492 -510 0 +-487 -499 0 +-488 -500 0 +-489 -501 0 +-490 -502 0 +-491 -503 0 +-492 -504 0 +-487 -493 0 +-488 -494 0 +-489 -495 0 +-490 -496 0 +-491 -497 0 +-492 -498 0 +-481 -511 0 +-482 -512 0 +-483 -513 0 +-484 -514 0 +-485 -515 0 +-486 -516 0 +-481 -505 0 +-482 -506 0 +-483 -507 0 +-484 -508 0 +-485 -509 0 +-486 -510 0 +-481 -499 0 +-482 -500 0 +-483 -501 0 +-484 -502 0 +-485 -503 0 +-486 -504 0 +-481 -493 0 +-482 -494 0 +-483 -495 0 +-484 -496 0 +-485 -497 0 +-486 -498 0 +-481 -487 0 +-482 -488 0 +-483 -489 0 +-484 -490 0 +-485 -491 0 +-486 -492 0 +-475 -505 0 +-476 -506 0 +-477 -507 0 +-478 -508 0 +-479 -509 0 +-480 -510 0 +-475 -499 0 +-476 -500 0 +-477 -501 0 +-478 -502 0 +-479 -503 0 +-480 -504 0 +-475 -493 0 +-476 -494 0 +-477 -495 0 +-478 -496 0 +-479 -497 0 +-480 -498 0 +-475 -487 0 +-476 -488 0 +-477 -489 0 +-478 -490 0 +-479 -491 0 +-480 -492 0 +-475 -481 0 +-476 -482 0 +-477 -483 0 +-478 -484 0 +-479 -485 0 +-480 -486 0 +-469 -499 0 +-470 -500 0 +-471 -501 0 +-472 -502 0 +-473 -503 0 +-474 -504 0 +-469 -493 0 +-470 -494 0 +-471 -495 0 +-472 -496 0 +-473 -497 0 +-474 -498 0 +-469 -487 0 +-470 -488 0 +-471 -489 0 +-472 -490 0 +-473 -491 0 +-474 -492 0 +-469 -481 0 +-470 -482 0 +-471 -483 0 +-472 -484 0 +-473 -485 0 +-474 -486 0 +-469 -475 0 +-470 -476 0 +-471 -477 0 +-472 -478 0 +-473 -479 0 +-474 -480 0 +-463 -493 0 +-464 -494 0 +-465 -495 0 +-466 -496 0 +-467 -497 0 +-468 -498 0 +-463 -487 0 +-464 -488 0 +-465 -489 0 +-466 -490 0 +-467 -491 0 +-468 -492 0 +-463 -481 0 +-464 -482 0 +-465 -483 0 +-466 -484 0 +-467 -485 0 +-468 -486 0 +-463 -469 0 +-464 -470 0 +-465 -471 0 +-466 -472 0 +-467 -473 0 +-468 -474 0 +-457 -487 0 +-458 -488 0 +-459 -489 0 +-460 -490 0 +-461 -491 0 +-462 -492 0 +-457 -481 0 +-458 -482 0 +-459 -483 0 +-460 -484 0 +-461 -485 0 +-462 -486 0 +-457 -475 0 +-458 -476 0 +-459 -477 0 +-460 -478 0 +-461 -479 0 +-462 -480 0 +-457 -463 0 +-458 -464 0 +-459 -465 0 +-460 -466 0 +-461 -467 0 +-462 -468 0 +-451 -475 0 +-452 -476 0 +-453 -477 0 +-454 -478 0 +-455 -479 0 +-456 -480 0 +-451 -469 0 +-452 -470 0 +-453 -471 0 +-454 -472 0 +-455 -473 0 +-456 -474 0 +-451 -463 0 +-452 -464 0 +-453 -465 0 +-454 -466 0 +-455 -467 0 +-456 -468 0 +-451 -457 0 +-452 -458 0 +-453 -459 0 +-454 -460 0 +-455 -461 0 +-456 -462 0 +-445 -475 0 +-446 -476 0 +-447 -477 0 +-448 -478 0 +-449 -479 0 +-450 -480 0 +-445 -469 0 +-446 -470 0 +-447 -471 0 +-448 -472 0 +-449 -473 0 +-450 -474 0 +-445 -463 0 +-446 -464 0 +-447 -465 0 +-448 -466 0 +-449 -467 0 +-450 -468 0 +-445 -457 0 +-446 -458 0 +-447 -459 0 +-448 -460 0 +-449 -461 0 +-450 -462 0 +-445 -451 0 +-446 -452 0 +-447 -453 0 +-448 -454 0 +-449 -455 0 +-450 -456 0 +-439 -469 0 +-440 -470 0 +-441 -471 0 +-442 -472 0 +-443 -473 0 +-444 -474 0 +-439 -463 0 +-440 -464 0 +-441 -465 0 +-442 -466 0 +-443 -467 0 +-444 -468 0 +-439 -457 0 +-440 -458 0 +-441 -459 0 +-442 -460 0 +-443 -461 0 +-444 -462 0 +-439 -451 0 +-440 -452 0 +-441 -453 0 +-442 -454 0 +-443 -455 0 +-444 -456 0 +-439 -445 0 +-440 -446 0 +-441 -447 0 +-442 -448 0 +-443 -449 0 +-444 -450 0 +-433 -463 0 +-434 -464 0 +-435 -465 0 +-436 -466 0 +-437 -467 0 +-438 -468 0 +-433 -457 0 +-434 -458 0 +-435 -459 0 +-436 -460 0 +-437 -461 0 +-438 -462 0 +-433 -451 0 +-434 -452 0 +-435 -453 0 +-436 -454 0 +-437 -455 0 +-438 -456 0 +-433 -445 0 +-434 -446 0 +-435 -447 0 +-436 -448 0 +-437 -449 0 +-438 -450 0 +-433 -439 0 +-434 -440 0 +-435 -441 0 +-436 -442 0 +-437 -443 0 +-438 -444 0 +-427 -457 0 +-428 -458 0 +-429 -459 0 +-430 -460 0 +-431 -461 0 +-432 -462 0 +-427 -451 0 +-428 -452 0 +-429 -453 0 +-430 -454 0 +-431 -455 0 +-432 -456 0 +-427 -445 0 +-428 -446 0 +-429 -447 0 +-430 -448 0 +-431 -449 0 +-432 -450 0 +-427 -439 0 +-428 -440 0 +-429 -441 0 +-430 -442 0 +-431 -443 0 +-432 -444 0 +-427 -433 0 +-428 -434 0 +-429 -435 0 +-430 -436 0 +-431 -437 0 +-432 -438 0 +-421 -445 0 +-422 -446 0 +-423 -447 0 +-424 -448 0 +-425 -449 0 +-426 -450 0 +-421 -439 0 +-422 -440 0 +-423 -441 0 +-424 -442 0 +-425 -443 0 +-426 -444 0 +-421 -433 0 +-422 -434 0 +-423 -435 0 +-424 -436 0 +-425 -437 0 +-426 -438 0 +-421 -427 0 +-422 -428 0 +-423 -429 0 +-424 -430 0 +-425 -431 0 +-426 -432 0 +-415 -445 0 +-416 -446 0 +-417 -447 0 +-418 -448 0 +-419 -449 0 +-420 -450 0 +-415 -433 0 +-416 -434 0 +-417 -435 0 +-418 -436 0 +-419 -437 0 +-420 -438 0 +-415 -427 0 +-416 -428 0 +-417 -429 0 +-418 -430 0 +-419 -431 0 +-420 -432 0 +-415 -421 0 +-416 -422 0 +-417 -423 0 +-418 -424 0 +-419 -425 0 +-420 -426 0 +-409 -439 0 +-410 -440 0 +-411 -441 0 +-412 -442 0 +-413 -443 0 +-414 -444 0 +-409 -433 0 +-410 -434 0 +-411 -435 0 +-412 -436 0 +-413 -437 0 +-414 -438 0 +-409 -427 0 +-410 -428 0 +-411 -429 0 +-412 -430 0 +-413 -431 0 +-414 -432 0 +-409 -421 0 +-410 -422 0 +-411 -423 0 +-412 -424 0 +-413 -425 0 +-414 -426 0 +-409 -415 0 +-410 -416 0 +-411 -417 0 +-412 -418 0 +-413 -419 0 +-414 -420 0 +-403 -433 0 +-404 -434 0 +-405 -435 0 +-406 -436 0 +-407 -437 0 +-408 -438 0 +-403 -427 0 +-404 -428 0 +-405 -429 0 +-406 -430 0 +-407 -431 0 +-408 -432 0 +-403 -421 0 +-404 -422 0 +-405 -423 0 +-406 -424 0 +-407 -425 0 +-408 -426 0 +-403 -415 0 +-404 -416 0 +-405 -417 0 +-406 -418 0 +-407 -419 0 +-408 -420 0 +-403 -409 0 +-404 -410 0 +-405 -411 0 +-406 -412 0 +-407 -413 0 +-408 -414 0 +-397 -427 0 +-398 -428 0 +-399 -429 0 +-400 -430 0 +-401 -431 0 +-402 -432 0 +-397 -421 0 +-398 -422 0 +-399 -423 0 +-400 -424 0 +-401 -425 0 +-402 -426 0 +-397 -415 0 +-398 -416 0 +-399 -417 0 +-400 -418 0 +-401 -419 0 +-402 -420 0 +-397 -409 0 +-398 -410 0 +-399 -411 0 +-400 -412 0 +-401 -413 0 +-402 -414 0 +-397 -403 0 +-398 -404 0 +-399 -405 0 +-400 -406 0 +-401 -407 0 +-402 -408 0 +-391 -421 0 +-392 -422 0 +-393 -423 0 +-394 -424 0 +-395 -425 0 +-396 -426 0 +-391 -415 0 +-392 -416 0 +-393 -417 0 +-394 -418 0 +-395 -419 0 +-396 -420 0 +-391 -409 0 +-392 -410 0 +-393 -411 0 +-394 -412 0 +-395 -413 0 +-396 -414 0 +-391 -403 0 +-392 -404 0 +-393 -405 0 +-394 -406 0 +-395 -407 0 +-396 -408 0 +-391 -397 0 +-392 -398 0 +-393 -399 0 +-394 -400 0 +-395 -401 0 +-396 -402 0 +-385 -415 0 +-386 -416 0 +-387 -417 0 +-388 -418 0 +-389 -419 0 +-390 -420 0 +-385 -409 0 +-386 -410 0 +-387 -411 0 +-388 -412 0 +-389 -413 0 +-390 -414 0 +-385 -403 0 +-386 -404 0 +-387 -405 0 +-388 -406 0 +-389 -407 0 +-390 -408 0 +-385 -397 0 +-386 -398 0 +-387 -399 0 +-388 -400 0 +-389 -401 0 +-390 -402 0 +-385 -391 0 +-386 -392 0 +-387 -393 0 +-388 -394 0 +-389 -395 0 +-390 -396 0 +-379 -409 0 +-380 -410 0 +-381 -411 0 +-382 -412 0 +-383 -413 0 +-384 -414 0 +-379 -403 0 +-380 -404 0 +-381 -405 0 +-382 -406 0 +-383 -407 0 +-384 -408 0 +-379 -397 0 +-380 -398 0 +-381 -399 0 +-382 -400 0 +-383 -401 0 +-384 -402 0 +-379 -391 0 +-380 -392 0 +-381 -393 0 +-382 -394 0 +-383 -395 0 +-384 -396 0 +-379 -385 0 +-380 -386 0 +-381 -387 0 +-382 -388 0 +-383 -389 0 +-384 -390 0 +-373 -403 0 +-374 -404 0 +-375 -405 0 +-376 -406 0 +-377 -407 0 +-378 -408 0 +-373 -397 0 +-374 -398 0 +-375 -399 0 +-376 -400 0 +-377 -401 0 +-378 -402 0 +-373 -385 0 +-374 -386 0 +-375 -387 0 +-376 -388 0 +-377 -389 0 +-378 -390 0 +-373 -379 0 +-374 -380 0 +-375 -381 0 +-376 -382 0 +-377 -383 0 +-378 -384 0 +-367 -397 0 +-368 -398 0 +-369 -399 0 +-370 -400 0 +-371 -401 0 +-372 -402 0 +-367 -391 0 +-368 -392 0 +-369 -393 0 +-370 -394 0 +-371 -395 0 +-372 -396 0 +-367 -379 0 +-368 -380 0 +-369 -381 0 +-370 -382 0 +-371 -383 0 +-372 -384 0 +-367 -373 0 +-368 -374 0 +-369 -375 0 +-370 -376 0 +-371 -377 0 +-372 -378 0 +-361 -391 0 +-362 -392 0 +-363 -393 0 +-364 -394 0 +-365 -395 0 +-366 -396 0 +-361 -385 0 +-362 -386 0 +-363 -387 0 +-364 -388 0 +-365 -389 0 +-366 -390 0 +-361 -379 0 +-362 -380 0 +-363 -381 0 +-364 -382 0 +-365 -383 0 +-366 -384 0 +-361 -373 0 +-362 -374 0 +-363 -375 0 +-364 -376 0 +-365 -377 0 +-366 -378 0 +-361 -367 0 +-362 -368 0 +-363 -369 0 +-364 -370 0 +-365 -371 0 +-366 -372 0 +-355 -385 0 +-356 -386 0 +-357 -387 0 +-358 -388 0 +-359 -389 0 +-360 -390 0 +-355 -379 0 +-356 -380 0 +-357 -381 0 +-358 -382 0 +-359 -383 0 +-360 -384 0 +-355 -373 0 +-356 -374 0 +-357 -375 0 +-358 -376 0 +-359 -377 0 +-360 -378 0 +-355 -367 0 +-356 -368 0 +-357 -369 0 +-358 -370 0 +-359 -371 0 +-360 -372 0 +-355 -361 0 +-356 -362 0 +-357 -363 0 +-358 -364 0 +-359 -365 0 +-360 -366 0 +-349 -379 0 +-350 -380 0 +-351 -381 0 +-352 -382 0 +-353 -383 0 +-354 -384 0 +-349 -373 0 +-350 -374 0 +-351 -375 0 +-352 -376 0 +-353 -377 0 +-354 -378 0 +-349 -367 0 +-350 -368 0 +-351 -369 0 +-352 -370 0 +-353 -371 0 +-354 -372 0 +-349 -361 0 +-350 -362 0 +-351 -363 0 +-352 -364 0 +-353 -365 0 +-354 -366 0 +-349 -355 0 +-350 -356 0 +-351 -357 0 +-352 -358 0 +-353 -359 0 +-354 -360 0 +-343 -373 0 +-344 -374 0 +-345 -375 0 +-346 -376 0 +-347 -377 0 +-348 -378 0 +-343 -367 0 +-344 -368 0 +-345 -369 0 +-346 -370 0 +-347 -371 0 +-348 -372 0 +-343 -361 0 +-344 -362 0 +-345 -363 0 +-346 -364 0 +-347 -365 0 +-348 -366 0 +-343 -355 0 +-344 -356 0 +-345 -357 0 +-346 -358 0 +-347 -359 0 +-348 -360 0 +-343 -349 0 +-344 -350 0 +-345 -351 0 +-346 -352 0 +-347 -353 0 +-348 -354 0 +-337 -367 0 +-338 -368 0 +-339 -369 0 +-340 -370 0 +-341 -371 0 +-342 -372 0 +-337 -361 0 +-338 -362 0 +-339 -363 0 +-340 -364 0 +-341 -365 0 +-342 -366 0 +-337 -355 0 +-338 -356 0 +-339 -357 0 +-340 -358 0 +-341 -359 0 +-342 -360 0 +-337 -349 0 +-338 -350 0 +-339 -351 0 +-340 -352 0 +-341 -353 0 +-342 -354 0 +-337 -343 0 +-338 -344 0 +-339 -345 0 +-340 -346 0 +-341 -347 0 +-342 -348 0 +-331 -361 0 +-332 -362 0 +-333 -363 0 +-334 -364 0 +-335 -365 0 +-336 -366 0 +-331 -355 0 +-332 -356 0 +-333 -357 0 +-334 -358 0 +-335 -359 0 +-336 -360 0 +-331 -349 0 +-332 -350 0 +-333 -351 0 +-334 -352 0 +-335 -353 0 +-336 -354 0 +-331 -343 0 +-332 -344 0 +-333 -345 0 +-334 -346 0 +-335 -347 0 +-336 -348 0 +-331 -337 0 +-332 -338 0 +-333 -339 0 +-334 -340 0 +-335 -341 0 +-336 -342 0 +-325 -355 0 +-326 -356 0 +-327 -357 0 +-328 -358 0 +-329 -359 0 +-330 -360 0 +-325 -349 0 +-326 -350 0 +-327 -351 0 +-328 -352 0 +-329 -353 0 +-330 -354 0 +-325 -343 0 +-326 -344 0 +-327 -345 0 +-328 -346 0 +-329 -347 0 +-330 -348 0 +-325 -337 0 +-326 -338 0 +-327 -339 0 +-328 -340 0 +-329 -341 0 +-330 -342 0 +-325 -331 0 +-326 -332 0 +-327 -333 0 +-328 -334 0 +-329 -335 0 +-330 -336 0 +-319 -349 0 +-320 -350 0 +-321 -351 0 +-322 -352 0 +-323 -353 0 +-324 -354 0 +-319 -343 0 +-320 -344 0 +-321 -345 0 +-322 -346 0 +-323 -347 0 +-324 -348 0 +-319 -337 0 +-320 -338 0 +-321 -339 0 +-322 -340 0 +-323 -341 0 +-324 -342 0 +-319 -325 0 +-320 -326 0 +-321 -327 0 +-322 -328 0 +-323 -329 0 +-324 -330 0 +-313 -343 0 +-314 -344 0 +-315 -345 0 +-316 -346 0 +-317 -347 0 +-318 -348 0 +-313 -337 0 +-314 -338 0 +-315 -339 0 +-316 -340 0 +-317 -341 0 +-318 -342 0 +-313 -331 0 +-314 -332 0 +-315 -333 0 +-316 -334 0 +-317 -335 0 +-318 -336 0 +-313 -325 0 +-314 -326 0 +-315 -327 0 +-316 -328 0 +-317 -329 0 +-318 -330 0 +-313 -319 0 +-314 -320 0 +-315 -321 0 +-316 -322 0 +-317 -323 0 +-318 -324 0 +-307 -337 0 +-308 -338 0 +-309 -339 0 +-310 -340 0 +-311 -341 0 +-312 -342 0 +-307 -331 0 +-308 -332 0 +-309 -333 0 +-310 -334 0 +-311 -335 0 +-312 -336 0 +-307 -325 0 +-308 -326 0 +-309 -327 0 +-310 -328 0 +-311 -329 0 +-312 -330 0 +-307 -319 0 +-308 -320 0 +-309 -321 0 +-310 -322 0 +-311 -323 0 +-312 -324 0 +-301 -331 0 +-302 -332 0 +-303 -333 0 +-304 -334 0 +-305 -335 0 +-306 -336 0 +-301 -325 0 +-302 -326 0 +-303 -327 0 +-304 -328 0 +-305 -329 0 +-306 -330 0 +-301 -319 0 +-302 -320 0 +-303 -321 0 +-304 -322 0 +-305 -323 0 +-306 -324 0 +-301 -313 0 +-302 -314 0 +-303 -315 0 +-304 -316 0 +-305 -317 0 +-306 -318 0 +-301 -307 0 +-302 -308 0 +-303 -309 0 +-304 -310 0 +-305 -311 0 +-306 -312 0 +-295 -325 0 +-296 -326 0 +-297 -327 0 +-298 -328 0 +-299 -329 0 +-300 -330 0 +-295 -319 0 +-296 -320 0 +-297 -321 0 +-298 -322 0 +-299 -323 0 +-300 -324 0 +-295 -313 0 +-296 -314 0 +-297 -315 0 +-298 -316 0 +-299 -317 0 +-300 -318 0 +-295 -307 0 +-296 -308 0 +-297 -309 0 +-298 -310 0 +-299 -311 0 +-300 -312 0 +-295 -301 0 +-296 -302 0 +-297 -303 0 +-298 -304 0 +-299 -305 0 +-300 -306 0 +-289 -319 0 +-290 -320 0 +-291 -321 0 +-292 -322 0 +-293 -323 0 +-294 -324 0 +-289 -313 0 +-290 -314 0 +-291 -315 0 +-292 -316 0 +-293 -317 0 +-294 -318 0 +-289 -307 0 +-290 -308 0 +-291 -309 0 +-292 -310 0 +-293 -311 0 +-294 -312 0 +-289 -301 0 +-290 -302 0 +-291 -303 0 +-292 -304 0 +-293 -305 0 +-294 -306 0 +-289 -295 0 +-290 -296 0 +-291 -297 0 +-292 -298 0 +-293 -299 0 +-294 -300 0 +-283 -313 0 +-284 -314 0 +-285 -315 0 +-286 -316 0 +-287 -317 0 +-288 -318 0 +-283 -307 0 +-284 -308 0 +-285 -309 0 +-286 -310 0 +-287 -311 0 +-288 -312 0 +-283 -301 0 +-284 -302 0 +-285 -303 0 +-286 -304 0 +-287 -305 0 +-288 -306 0 +-283 -295 0 +-284 -296 0 +-285 -297 0 +-286 -298 0 +-287 -299 0 +-288 -300 0 +-283 -289 0 +-284 -290 0 +-285 -291 0 +-286 -292 0 +-287 -293 0 +-288 -294 0 +-277 -307 0 +-278 -308 0 +-279 -309 0 +-280 -310 0 +-281 -311 0 +-282 -312 0 +-277 -301 0 +-278 -302 0 +-279 -303 0 +-280 -304 0 +-281 -305 0 +-282 -306 0 +-277 -295 0 +-278 -296 0 +-279 -297 0 +-280 -298 0 +-281 -299 0 +-282 -300 0 +-277 -289 0 +-278 -290 0 +-279 -291 0 +-280 -292 0 +-281 -293 0 +-282 -294 0 +-277 -283 0 +-278 -284 0 +-279 -285 0 +-280 -286 0 +-281 -287 0 +-282 -288 0 +-271 -301 0 +-272 -302 0 +-273 -303 0 +-274 -304 0 +-275 -305 0 +-276 -306 0 +-271 -295 0 +-272 -296 0 +-273 -297 0 +-274 -298 0 +-275 -299 0 +-276 -300 0 +-271 -289 0 +-272 -290 0 +-273 -291 0 +-274 -292 0 +-275 -293 0 +-276 -294 0 +-271 -277 0 +-272 -278 0 +-273 -279 0 +-274 -280 0 +-275 -281 0 +-276 -282 0 +-265 -295 0 +-266 -296 0 +-267 -297 0 +-268 -298 0 +-269 -299 0 +-270 -300 0 +-265 -289 0 +-266 -290 0 +-267 -291 0 +-268 -292 0 +-269 -293 0 +-270 -294 0 +-265 -283 0 +-266 -284 0 +-267 -285 0 +-268 -286 0 +-269 -287 0 +-270 -288 0 +-265 -277 0 +-266 -278 0 +-267 -279 0 +-268 -280 0 +-269 -281 0 +-270 -282 0 +-265 -271 0 +-266 -272 0 +-267 -273 0 +-268 -274 0 +-269 -275 0 +-270 -276 0 +-259 -289 0 +-260 -290 0 +-261 -291 0 +-262 -292 0 +-263 -293 0 +-264 -294 0 +-259 -283 0 +-260 -284 0 +-261 -285 0 +-262 -286 0 +-263 -287 0 +-264 -288 0 +-259 -277 0 +-260 -278 0 +-261 -279 0 +-262 -280 0 +-263 -281 0 +-264 -282 0 +-259 -265 0 +-260 -266 0 +-261 -267 0 +-262 -268 0 +-263 -269 0 +-264 -270 0 +-253 -283 0 +-254 -284 0 +-255 -285 0 +-256 -286 0 +-257 -287 0 +-258 -288 0 +-253 -277 0 +-254 -278 0 +-255 -279 0 +-256 -280 0 +-257 -281 0 +-258 -282 0 +-253 -271 0 +-254 -272 0 +-255 -273 0 +-256 -274 0 +-257 -275 0 +-258 -276 0 +-253 -259 0 +-254 -260 0 +-255 -261 0 +-256 -262 0 +-257 -263 0 +-258 -264 0 +-247 -277 0 +-248 -278 0 +-249 -279 0 +-250 -280 0 +-251 -281 0 +-252 -282 0 +-247 -271 0 +-248 -272 0 +-249 -273 0 +-250 -274 0 +-251 -275 0 +-252 -276 0 +-247 -265 0 +-248 -266 0 +-249 -267 0 +-250 -268 0 +-251 -269 0 +-252 -270 0 +-247 -259 0 +-248 -260 0 +-249 -261 0 +-250 -262 0 +-251 -263 0 +-252 -264 0 +-247 -253 0 +-248 -254 0 +-249 -255 0 +-250 -256 0 +-251 -257 0 +-252 -258 0 +-241 -271 0 +-242 -272 0 +-243 -273 0 +-244 -274 0 +-245 -275 0 +-246 -276 0 +-241 -265 0 +-242 -266 0 +-243 -267 0 +-244 -268 0 +-245 -269 0 +-246 -270 0 +-241 -259 0 +-242 -260 0 +-243 -261 0 +-244 -262 0 +-245 -263 0 +-246 -264 0 +-241 -247 0 +-242 -248 0 +-243 -249 0 +-244 -250 0 +-245 -251 0 +-246 -252 0 +-235 -265 0 +-236 -266 0 +-237 -267 0 +-238 -268 0 +-239 -269 0 +-240 -270 0 +-235 -259 0 +-236 -260 0 +-237 -261 0 +-238 -262 0 +-239 -263 0 +-240 -264 0 +-235 -253 0 +-236 -254 0 +-237 -255 0 +-238 -256 0 +-239 -257 0 +-240 -258 0 +-235 -247 0 +-236 -248 0 +-237 -249 0 +-238 -250 0 +-239 -251 0 +-240 -252 0 +-229 -259 0 +-230 -260 0 +-231 -261 0 +-232 -262 0 +-233 -263 0 +-234 -264 0 +-229 -253 0 +-230 -254 0 +-231 -255 0 +-232 -256 0 +-233 -257 0 +-234 -258 0 +-229 -247 0 +-230 -248 0 +-231 -249 0 +-232 -250 0 +-233 -251 0 +-234 -252 0 +-229 -241 0 +-230 -242 0 +-231 -243 0 +-232 -244 0 +-233 -245 0 +-234 -246 0 +-229 -235 0 +-230 -236 0 +-231 -237 0 +-232 -238 0 +-233 -239 0 +-234 -240 0 +-223 -253 0 +-224 -254 0 +-225 -255 0 +-226 -256 0 +-227 -257 0 +-228 -258 0 +-223 -247 0 +-224 -248 0 +-225 -249 0 +-226 -250 0 +-227 -251 0 +-228 -252 0 +-223 -241 0 +-224 -242 0 +-225 -243 0 +-226 -244 0 +-227 -245 0 +-228 -246 0 +-223 -235 0 +-224 -236 0 +-225 -237 0 +-226 -238 0 +-227 -239 0 +-228 -240 0 +-223 -229 0 +-224 -230 0 +-225 -231 0 +-226 -232 0 +-227 -233 0 +-228 -234 0 +-217 -241 0 +-218 -242 0 +-219 -243 0 +-220 -244 0 +-221 -245 0 +-222 -246 0 +-217 -235 0 +-218 -236 0 +-219 -237 0 +-220 -238 0 +-221 -239 0 +-222 -240 0 +-217 -229 0 +-218 -230 0 +-219 -231 0 +-220 -232 0 +-221 -233 0 +-222 -234 0 +-217 -223 0 +-218 -224 0 +-219 -225 0 +-220 -226 0 +-221 -227 0 +-222 -228 0 +-211 -241 0 +-212 -242 0 +-213 -243 0 +-214 -244 0 +-215 -245 0 +-216 -246 0 +-211 -235 0 +-212 -236 0 +-213 -237 0 +-214 -238 0 +-215 -239 0 +-216 -240 0 +-211 -229 0 +-212 -230 0 +-213 -231 0 +-214 -232 0 +-215 -233 0 +-216 -234 0 +-211 -223 0 +-212 -224 0 +-213 -225 0 +-214 -226 0 +-215 -227 0 +-216 -228 0 +-205 -235 0 +-206 -236 0 +-207 -237 0 +-208 -238 0 +-209 -239 0 +-210 -240 0 +-205 -229 0 +-206 -230 0 +-207 -231 0 +-208 -232 0 +-209 -233 0 +-210 -234 0 +-205 -223 0 +-206 -224 0 +-207 -225 0 +-208 -226 0 +-209 -227 0 +-210 -228 0 +-205 -217 0 +-206 -218 0 +-207 -219 0 +-208 -220 0 +-209 -221 0 +-210 -222 0 +-205 -211 0 +-206 -212 0 +-207 -213 0 +-208 -214 0 +-209 -215 0 +-210 -216 0 +-199 -229 0 +-200 -230 0 +-201 -231 0 +-202 -232 0 +-203 -233 0 +-204 -234 0 +-199 -223 0 +-200 -224 0 +-201 -225 0 +-202 -226 0 +-203 -227 0 +-204 -228 0 +-199 -211 0 +-200 -212 0 +-201 -213 0 +-202 -214 0 +-203 -215 0 +-204 -216 0 +-199 -205 0 +-200 -206 0 +-201 -207 0 +-202 -208 0 +-203 -209 0 +-204 -210 0 +-193 -223 0 +-194 -224 0 +-195 -225 0 +-196 -226 0 +-197 -227 0 +-198 -228 0 +-193 -217 0 +-194 -218 0 +-195 -219 0 +-196 -220 0 +-197 -221 0 +-198 -222 0 +-193 -211 0 +-194 -212 0 +-195 -213 0 +-196 -214 0 +-197 -215 0 +-198 -216 0 +-193 -205 0 +-194 -206 0 +-195 -207 0 +-196 -208 0 +-197 -209 0 +-198 -210 0 +-193 -199 0 +-194 -200 0 +-195 -201 0 +-196 -202 0 +-197 -203 0 +-198 -204 0 +-187 -217 0 +-188 -218 0 +-189 -219 0 +-190 -220 0 +-191 -221 0 +-192 -222 0 +-187 -211 0 +-188 -212 0 +-189 -213 0 +-190 -214 0 +-191 -215 0 +-192 -216 0 +-187 -205 0 +-188 -206 0 +-189 -207 0 +-190 -208 0 +-191 -209 0 +-192 -210 0 +-187 -199 0 +-188 -200 0 +-189 -201 0 +-190 -202 0 +-191 -203 0 +-192 -204 0 +-187 -193 0 +-188 -194 0 +-189 -195 0 +-190 -196 0 +-191 -197 0 +-192 -198 0 +-181 -211 0 +-182 -212 0 +-183 -213 0 +-184 -214 0 +-185 -215 0 +-186 -216 0 +-181 -205 0 +-182 -206 0 +-183 -207 0 +-184 -208 0 +-185 -209 0 +-186 -210 0 +-181 -199 0 +-182 -200 0 +-183 -201 0 +-184 -202 0 +-185 -203 0 +-186 -204 0 +-181 -193 0 +-182 -194 0 +-183 -195 0 +-184 -196 0 +-185 -197 0 +-186 -198 0 +-181 -187 0 +-182 -188 0 +-183 -189 0 +-184 -190 0 +-185 -191 0 +-186 -192 0 +-175 -205 0 +-176 -206 0 +-177 -207 0 +-178 -208 0 +-179 -209 0 +-180 -210 0 +-175 -199 0 +-176 -200 0 +-177 -201 0 +-178 -202 0 +-179 -203 0 +-180 -204 0 +-175 -193 0 +-176 -194 0 +-177 -195 0 +-178 -196 0 +-179 -197 0 +-180 -198 0 +-175 -187 0 +-176 -188 0 +-177 -189 0 +-178 -190 0 +-179 -191 0 +-180 -192 0 +-175 -181 0 +-176 -182 0 +-177 -183 0 +-178 -184 0 +-179 -185 0 +-180 -186 0 +-169 -199 0 +-170 -200 0 +-171 -201 0 +-172 -202 0 +-173 -203 0 +-174 -204 0 +-169 -193 0 +-170 -194 0 +-171 -195 0 +-172 -196 0 +-173 -197 0 +-174 -198 0 +-169 -187 0 +-170 -188 0 +-171 -189 0 +-172 -190 0 +-173 -191 0 +-174 -192 0 +-169 -181 0 +-170 -182 0 +-171 -183 0 +-172 -184 0 +-173 -185 0 +-174 -186 0 +-169 -175 0 +-170 -176 0 +-171 -177 0 +-172 -178 0 +-173 -179 0 +-174 -180 0 +-163 -193 0 +-164 -194 0 +-165 -195 0 +-166 -196 0 +-167 -197 0 +-168 -198 0 +-163 -187 0 +-164 -188 0 +-165 -189 0 +-166 -190 0 +-167 -191 0 +-168 -192 0 +-163 -181 0 +-164 -182 0 +-165 -183 0 +-166 -184 0 +-167 -185 0 +-168 -186 0 +-163 -175 0 +-164 -176 0 +-165 -177 0 +-166 -178 0 +-167 -179 0 +-168 -180 0 +-163 -169 0 +-164 -170 0 +-165 -171 0 +-166 -172 0 +-167 -173 0 +-168 -174 0 +-157 -187 0 +-158 -188 0 +-159 -189 0 +-160 -190 0 +-161 -191 0 +-162 -192 0 +-157 -181 0 +-158 -182 0 +-159 -183 0 +-160 -184 0 +-161 -185 0 +-162 -186 0 +-157 -175 0 +-158 -176 0 +-159 -177 0 +-160 -178 0 +-161 -179 0 +-162 -180 0 +-157 -163 0 +-158 -164 0 +-159 -165 0 +-160 -166 0 +-161 -167 0 +-162 -168 0 +-151 -181 0 +-152 -182 0 +-153 -183 0 +-154 -184 0 +-155 -185 0 +-156 -186 0 +-151 -175 0 +-152 -176 0 +-153 -177 0 +-154 -178 0 +-155 -179 0 +-156 -180 0 +-151 -169 0 +-152 -170 0 +-153 -171 0 +-154 -172 0 +-155 -173 0 +-156 -174 0 +-151 -163 0 +-152 -164 0 +-153 -165 0 +-154 -166 0 +-155 -167 0 +-156 -168 0 +-151 -157 0 +-152 -158 0 +-153 -159 0 +-154 -160 0 +-155 -161 0 +-156 -162 0 +-145 -175 0 +-146 -176 0 +-147 -177 0 +-148 -178 0 +-149 -179 0 +-150 -180 0 +-145 -169 0 +-146 -170 0 +-147 -171 0 +-148 -172 0 +-149 -173 0 +-150 -174 0 +-145 -163 0 +-146 -164 0 +-147 -165 0 +-148 -166 0 +-149 -167 0 +-150 -168 0 +-145 -157 0 +-146 -158 0 +-147 -159 0 +-148 -160 0 +-149 -161 0 +-150 -162 0 +-145 -151 0 +-146 -152 0 +-147 -153 0 +-148 -154 0 +-149 -155 0 +-150 -156 0 +-139 -169 0 +-140 -170 0 +-141 -171 0 +-142 -172 0 +-143 -173 0 +-144 -174 0 +-139 -163 0 +-140 -164 0 +-141 -165 0 +-142 -166 0 +-143 -167 0 +-144 -168 0 +-139 -157 0 +-140 -158 0 +-141 -159 0 +-142 -160 0 +-143 -161 0 +-144 -162 0 +-139 -145 0 +-140 -146 0 +-141 -147 0 +-142 -148 0 +-143 -149 0 +-144 -150 0 +-133 -163 0 +-134 -164 0 +-135 -165 0 +-136 -166 0 +-137 -167 0 +-138 -168 0 +-133 -157 0 +-134 -158 0 +-135 -159 0 +-136 -160 0 +-137 -161 0 +-138 -162 0 +-133 -151 0 +-134 -152 0 +-135 -153 0 +-136 -154 0 +-137 -155 0 +-138 -156 0 +-127 -157 0 +-128 -158 0 +-129 -159 0 +-130 -160 0 +-131 -161 0 +-132 -162 0 +-127 -151 0 +-128 -152 0 +-129 -153 0 +-130 -154 0 +-131 -155 0 +-132 -156 0 +-127 -145 0 +-128 -146 0 +-129 -147 0 +-130 -148 0 +-131 -149 0 +-132 -150 0 +-127 -139 0 +-128 -140 0 +-129 -141 0 +-130 -142 0 +-131 -143 0 +-132 -144 0 +-127 -133 0 +-128 -134 0 +-129 -135 0 +-130 -136 0 +-131 -137 0 +-132 -138 0 +-121 -151 0 +-122 -152 0 +-123 -153 0 +-124 -154 0 +-125 -155 0 +-126 -156 0 +-121 -145 0 +-122 -146 0 +-123 -147 0 +-124 -148 0 +-125 -149 0 +-126 -150 0 +-121 -139 0 +-122 -140 0 +-123 -141 0 +-124 -142 0 +-125 -143 0 +-126 -144 0 +-121 -133 0 +-122 -134 0 +-123 -135 0 +-124 -136 0 +-125 -137 0 +-126 -138 0 +-121 -127 0 +-122 -128 0 +-123 -129 0 +-124 -130 0 +-125 -131 0 +-126 -132 0 +-115 -145 0 +-116 -146 0 +-117 -147 0 +-118 -148 0 +-119 -149 0 +-120 -150 0 +-115 -139 0 +-116 -140 0 +-117 -141 0 +-118 -142 0 +-119 -143 0 +-120 -144 0 +-115 -133 0 +-116 -134 0 +-117 -135 0 +-118 -136 0 +-119 -137 0 +-120 -138 0 +-115 -127 0 +-116 -128 0 +-117 -129 0 +-118 -130 0 +-119 -131 0 +-120 -132 0 +-109 -139 0 +-110 -140 0 +-111 -141 0 +-112 -142 0 +-113 -143 0 +-114 -144 0 +-109 -133 0 +-110 -134 0 +-111 -135 0 +-112 -136 0 +-113 -137 0 +-114 -138 0 +-109 -127 0 +-110 -128 0 +-111 -129 0 +-112 -130 0 +-113 -131 0 +-114 -132 0 +-109 -121 0 +-110 -122 0 +-111 -123 0 +-112 -124 0 +-113 -125 0 +-114 -126 0 +-109 -115 0 +-110 -116 0 +-111 -117 0 +-112 -118 0 +-113 -119 0 +-114 -120 0 +-103 -133 0 +-104 -134 0 +-105 -135 0 +-106 -136 0 +-107 -137 0 +-108 -138 0 +-103 -127 0 +-104 -128 0 +-105 -129 0 +-106 -130 0 +-107 -131 0 +-108 -132 0 +-103 -115 0 +-104 -116 0 +-105 -117 0 +-106 -118 0 +-107 -119 0 +-108 -120 0 +-103 -109 0 +-104 -110 0 +-105 -111 0 +-106 -112 0 +-107 -113 0 +-108 -114 0 +-97 -127 0 +-98 -128 0 +-99 -129 0 +-100 -130 0 +-101 -131 0 +-102 -132 0 +-97 -121 0 +-98 -122 0 +-99 -123 0 +-100 -124 0 +-101 -125 0 +-102 -126 0 +-97 -115 0 +-98 -116 0 +-99 -117 0 +-100 -118 0 +-101 -119 0 +-102 -120 0 +-97 -109 0 +-98 -110 0 +-99 -111 0 +-100 -112 0 +-101 -113 0 +-102 -114 0 +-97 -103 0 +-98 -104 0 +-99 -105 0 +-100 -106 0 +-101 -107 0 +-102 -108 0 +-91 -121 0 +-92 -122 0 +-93 -123 0 +-94 -124 0 +-95 -125 0 +-96 -126 0 +-91 -115 0 +-92 -116 0 +-93 -117 0 +-94 -118 0 +-95 -119 0 +-96 -120 0 +-91 -109 0 +-92 -110 0 +-93 -111 0 +-94 -112 0 +-95 -113 0 +-96 -114 0 +-91 -103 0 +-92 -104 0 +-93 -105 0 +-94 -106 0 +-95 -107 0 +-96 -108 0 +-91 -97 0 +-92 -98 0 +-93 -99 0 +-94 -100 0 +-95 -101 0 +-96 -102 0 +-85 -115 0 +-86 -116 0 +-87 -117 0 +-88 -118 0 +-89 -119 0 +-90 -120 0 +-85 -103 0 +-86 -104 0 +-87 -105 0 +-88 -106 0 +-89 -107 0 +-90 -108 0 +-85 -97 0 +-86 -98 0 +-87 -99 0 +-88 -100 0 +-89 -101 0 +-90 -102 0 +-85 -91 0 +-86 -92 0 +-87 -93 0 +-88 -94 0 +-89 -95 0 +-90 -96 0 +-79 -109 0 +-80 -110 0 +-81 -111 0 +-82 -112 0 +-83 -113 0 +-84 -114 0 +-79 -97 0 +-80 -98 0 +-81 -99 0 +-82 -100 0 +-83 -101 0 +-84 -102 0 +-79 -91 0 +-80 -92 0 +-81 -93 0 +-82 -94 0 +-83 -95 0 +-84 -96 0 +-79 -85 0 +-80 -86 0 +-81 -87 0 +-82 -88 0 +-83 -89 0 +-84 -90 0 +-73 -103 0 +-74 -104 0 +-75 -105 0 +-76 -106 0 +-77 -107 0 +-78 -108 0 +-73 -97 0 +-74 -98 0 +-75 -99 0 +-76 -100 0 +-77 -101 0 +-78 -102 0 +-73 -91 0 +-74 -92 0 +-75 -93 0 +-76 -94 0 +-77 -95 0 +-78 -96 0 +-73 -85 0 +-74 -86 0 +-75 -87 0 +-76 -88 0 +-77 -89 0 +-78 -90 0 +-73 -79 0 +-74 -80 0 +-75 -81 0 +-76 -82 0 +-77 -83 0 +-78 -84 0 +-67 -97 0 +-68 -98 0 +-69 -99 0 +-70 -100 0 +-71 -101 0 +-72 -102 0 +-67 -91 0 +-68 -92 0 +-69 -93 0 +-70 -94 0 +-71 -95 0 +-72 -96 0 +-67 -85 0 +-68 -86 0 +-69 -87 0 +-70 -88 0 +-71 -89 0 +-72 -90 0 +-67 -79 0 +-68 -80 0 +-69 -81 0 +-70 -82 0 +-71 -83 0 +-72 -84 0 +-67 -73 0 +-68 -74 0 +-69 -75 0 +-70 -76 0 +-71 -77 0 +-72 -78 0 +-61 -91 0 +-62 -92 0 +-63 -93 0 +-64 -94 0 +-65 -95 0 +-66 -96 0 +-61 -85 0 +-62 -86 0 +-63 -87 0 +-64 -88 0 +-65 -89 0 +-66 -90 0 +-61 -79 0 +-62 -80 0 +-63 -81 0 +-64 -82 0 +-65 -83 0 +-66 -84 0 +-61 -73 0 +-62 -74 0 +-63 -75 0 +-64 -76 0 +-65 -77 0 +-66 -78 0 +-61 -67 0 +-62 -68 0 +-63 -69 0 +-64 -70 0 +-65 -71 0 +-66 -72 0 +-55 -85 0 +-56 -86 0 +-57 -87 0 +-58 -88 0 +-59 -89 0 +-60 -90 0 +-55 -79 0 +-56 -80 0 +-57 -81 0 +-58 -82 0 +-59 -83 0 +-60 -84 0 +-55 -73 0 +-56 -74 0 +-57 -75 0 +-58 -76 0 +-59 -77 0 +-60 -78 0 +-55 -67 0 +-56 -68 0 +-57 -69 0 +-58 -70 0 +-59 -71 0 +-60 -72 0 +-55 -61 0 +-56 -62 0 +-57 -63 0 +-58 -64 0 +-59 -65 0 +-60 -66 0 +-49 -79 0 +-50 -80 0 +-51 -81 0 +-52 -82 0 +-53 -83 0 +-54 -84 0 +-49 -73 0 +-50 -74 0 +-51 -75 0 +-52 -76 0 +-53 -77 0 +-54 -78 0 +-49 -67 0 +-50 -68 0 +-51 -69 0 +-52 -70 0 +-53 -71 0 +-54 -72 0 +-49 -55 0 +-50 -56 0 +-51 -57 0 +-52 -58 0 +-53 -59 0 +-54 -60 0 +-43 -73 0 +-44 -74 0 +-45 -75 0 +-46 -76 0 +-47 -77 0 +-48 -78 0 +-43 -67 0 +-44 -68 0 +-45 -69 0 +-46 -70 0 +-47 -71 0 +-48 -72 0 +-43 -61 0 +-44 -62 0 +-45 -63 0 +-46 -64 0 +-47 -65 0 +-48 -66 0 +-43 -55 0 +-44 -56 0 +-45 -57 0 +-46 -58 0 +-47 -59 0 +-48 -60 0 +-43 -49 0 +-44 -50 0 +-45 -51 0 +-46 -52 0 +-47 -53 0 +-48 -54 0 +-37 -67 0 +-38 -68 0 +-39 -69 0 +-40 -70 0 +-41 -71 0 +-42 -72 0 +-37 -61 0 +-38 -62 0 +-39 -63 0 +-40 -64 0 +-41 -65 0 +-42 -66 0 +-37 -55 0 +-38 -56 0 +-39 -57 0 +-40 -58 0 +-41 -59 0 +-42 -60 0 +-37 -43 0 +-38 -44 0 +-39 -45 0 +-40 -46 0 +-41 -47 0 +-42 -48 0 +-31 -61 0 +-32 -62 0 +-33 -63 0 +-34 -64 0 +-35 -65 0 +-36 -66 0 +-31 -55 0 +-32 -56 0 +-33 -57 0 +-34 -58 0 +-35 -59 0 +-36 -60 0 +-31 -49 0 +-32 -50 0 +-33 -51 0 +-34 -52 0 +-35 -53 0 +-36 -54 0 +-31 -43 0 +-32 -44 0 +-33 -45 0 +-34 -46 0 +-35 -47 0 +-36 -48 0 +-31 -37 0 +-32 -38 0 +-33 -39 0 +-34 -40 0 +-35 -41 0 +-36 -42 0 +-25 -55 0 +-26 -56 0 +-27 -57 0 +-28 -58 0 +-29 -59 0 +-30 -60 0 +-25 -49 0 +-26 -50 0 +-27 -51 0 +-28 -52 0 +-29 -53 0 +-30 -54 0 +-25 -43 0 +-26 -44 0 +-27 -45 0 +-28 -46 0 +-29 -47 0 +-30 -48 0 +-25 -37 0 +-26 -38 0 +-27 -39 0 +-28 -40 0 +-29 -41 0 +-30 -42 0 +-25 -31 0 +-26 -32 0 +-27 -33 0 +-28 -34 0 +-29 -35 0 +-30 -36 0 +-19 -49 0 +-20 -50 0 +-21 -51 0 +-22 -52 0 +-23 -53 0 +-24 -54 0 +-19 -43 0 +-20 -44 0 +-21 -45 0 +-22 -46 0 +-23 -47 0 +-24 -48 0 +-19 -37 0 +-20 -38 0 +-21 -39 0 +-22 -40 0 +-23 -41 0 +-24 -42 0 +-19 -31 0 +-20 -32 0 +-21 -33 0 +-22 -34 0 +-23 -35 0 +-24 -36 0 +-19 -25 0 +-20 -26 0 +-21 -27 0 +-22 -28 0 +-23 -29 0 +-24 -30 0 +-13 -43 0 +-14 -44 0 +-15 -45 0 +-16 -46 0 +-17 -47 0 +-18 -48 0 +-13 -37 0 +-14 -38 0 +-15 -39 0 +-16 -40 0 +-17 -41 0 +-18 -42 0 +-13 -31 0 +-14 -32 0 +-15 -33 0 +-16 -34 0 +-17 -35 0 +-18 -36 0 +-13 -25 0 +-14 -26 0 +-15 -27 0 +-16 -28 0 +-17 -29 0 +-18 -30 0 +-13 -19 0 +-14 -20 0 +-15 -21 0 +-16 -22 0 +-17 -23 0 +-18 -24 0 +-7 -37 0 +-8 -38 0 +-9 -39 0 +-10 -40 0 +-11 -41 0 +-12 -42 0 +-7 -31 0 +-8 -32 0 +-9 -33 0 +-10 -34 0 +-11 -35 0 +-12 -36 0 +-7 -25 0 +-8 -26 0 +-9 -27 0 +-10 -28 0 +-11 -29 0 +-12 -30 0 +-7 -19 0 +-8 -20 0 +-9 -21 0 +-10 -22 0 +-11 -23 0 +-12 -24 0 +-7 -13 0 +-8 -14 0 +-9 -15 0 +-10 -16 0 +-11 -17 0 +-12 -18 0 +-1 -31 0 +-2 -32 0 +-3 -33 0 +-4 -34 0 +-5 -35 0 +-6 -36 0 +-1 -25 0 +-2 -26 0 +-3 -27 0 +-4 -28 0 +-5 -29 0 +-6 -30 0 +-1 -19 0 +-2 -20 0 +-3 -21 0 +-4 -22 0 +-5 -23 0 +-6 -24 0 +-1 -13 0 +-2 -14 0 +-3 -15 0 +-4 -16 0 +-5 -17 0 +-6 -18 0 +-1 -7 0 +-2 -8 0 +-3 -9 0 +-4 -10 0 +-5 -11 0 +-6 -12 0 +-205 -859 0 +-206 -860 0 +-207 -861 0 +-208 -862 0 +-209 -863 0 +-210 -864 0 +-349 -397 0 +-350 -398 0 +-351 -399 0 +-352 -400 0 +-353 -401 0 +-354 -402 0 +-643 -709 0 +-644 -710 0 +-645 -711 0 +-646 -712 0 +-647 -713 0 +-648 -714 0 +-511 -643 0 +-512 -644 0 +-513 -645 0 +-514 -646 0 +-515 -647 0 +-516 -648 0 +-79 -289 0 +-80 -290 0 +-81 -291 0 +-82 -292 0 +-83 -293 0 +-84 -294 0 +-217 -877 0 +-218 -878 0 +-219 -879 0 +-220 -880 0 +-221 -881 0 +-222 -882 0 diff --git a/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-small-test.txt b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-small-test.txt new file mode 100755 index 000000000..2b2e973ec --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-small-test.txt @@ -0,0 +1,6 @@ + +example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf diff --git a/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-small-train.txt b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-small-train.txt new file mode 100755 index 000000000..eb72f23c9 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/SWGCP-satisfiable-small-train.txt @@ -0,0 +1,5 @@ +example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf diff --git a/sparkle/Components/paramils2.3.8-source/example_data/qwh-single-inst.txt b/sparkle/Components/paramils2.3.8-source/example_data/qwh-single-inst.txt new file mode 100755 index 000000000..2cc3d85a3 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/qwh-single-inst.txt @@ -0,0 +1 @@ +example_data/qwh_instance/000549.cnf diff --git a/sparkle/Components/paramils2.3.8-source/example_data/qwh_instance/000549.cnf b/sparkle/Components/paramils2.3.8-source/example_data/qwh_instance/000549.cnf new file mode 100755 index 000000000..474f7d24b --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_data/qwh_instance/000549.cnf @@ -0,0 +1,7828 @@ +p cnf 1077 7827 + -1 -2 0 + -1 -3 0 + -1 -4 0 + -1 -5 0 + -1 -6 0 + -1 -7 0 + -2 -3 0 + -2 -4 0 + -2 -5 0 + -2 -6 0 + -2 -7 0 + -3 -4 0 + -3 -5 0 + -3 -6 0 + -3 -7 0 + -4 -5 0 + -4 -6 0 + -4 -7 0 + -5 -6 0 + -5 -7 0 + -6 -7 0 + -8 -9 0 + -8 -10 0 + -8 -11 0 + -8 -12 0 + -9 -10 0 + -9 -11 0 + -9 -12 0 + -10 -11 0 + -10 -12 0 + -11 -12 0 + -13 -14 0 + -13 -15 0 + -13 -16 0 + -14 -15 0 + -14 -16 0 + -15 -16 0 + -17 -18 0 + -17 -19 0 + -17 -20 0 + -17 -21 0 + -17 -22 0 + -17 -23 0 + -18 -19 0 + -18 -20 0 + -18 -21 0 + -18 -22 0 + -18 -23 0 + -19 -20 0 + -19 -21 0 + -19 -22 0 + -19 -23 0 + -20 -21 0 + -20 -22 0 + -20 -23 0 + -21 -22 0 + -21 -23 0 + -22 -23 0 + -24 -25 0 + -24 -26 0 + -24 -27 0 + -25 -26 0 + -25 -27 0 + -26 -27 0 + -28 -29 0 + -28 -30 0 + -28 -31 0 + -29 -30 0 + -29 -31 0 + -30 -31 0 + -32 -33 0 + -32 -34 0 + -32 -35 0 + -32 -36 0 + -33 -34 0 + -33 -35 0 + -33 -36 0 + -34 -35 0 + -34 -36 0 + -35 -36 0 + -37 -38 0 + -37 -39 0 + -37 -40 0 + -38 -39 0 + -38 -40 0 + -39 -40 0 + -41 -42 0 + -41 -43 0 + -41 -44 0 + -42 -43 0 + -42 -44 0 + -43 -44 0 + -45 -46 0 + -45 -47 0 + -45 -48 0 + -45 -49 0 + -46 -47 0 + -46 -48 0 + -46 -49 0 + -47 -48 0 + -47 -49 0 + -48 -49 0 + -50 -51 0 + -50 -52 0 + -50 -53 0 + -51 -52 0 + -51 -53 0 + -52 -53 0 + -54 -55 0 + -54 -56 0 + -55 -56 0 + -57 -58 0 + -57 -59 0 + -58 -59 0 + -60 -61 0 + -60 -62 0 + -60 -63 0 + -60 -64 0 + -61 -62 0 + -61 -63 0 + -61 -64 0 + -62 -63 0 + -62 -64 0 + -63 -64 0 + -65 -66 0 + -65 -67 0 + -65 -68 0 + -66 -67 0 + -66 -68 0 + -67 -68 0 + -69 -70 0 + -69 -71 0 + -69 -72 0 + -70 -71 0 + -70 -72 0 + -71 -72 0 + -73 -74 0 + -73 -75 0 + -73 -76 0 + -74 -75 0 + -74 -76 0 + -75 -76 0 + -77 -78 0 + -77 -79 0 + -77 -80 0 + -77 -81 0 + -77 -82 0 + -78 -79 0 + -78 -80 0 + -78 -81 0 + -78 -82 0 + -79 -80 0 + -79 -81 0 + -79 -82 0 + -80 -81 0 + -80 -82 0 + -81 -82 0 + -83 -84 0 + -85 -86 0 + -85 -87 0 + -85 -88 0 + -85 -89 0 + -86 -87 0 + -86 -88 0 + -86 -89 0 + -87 -88 0 + -87 -89 0 + -88 -89 0 + -90 -91 0 + -90 -92 0 + -90 -93 0 + -90 -94 0 + -91 -92 0 + -91 -93 0 + -91 -94 0 + -92 -93 0 + -92 -94 0 + -93 -94 0 + -95 -96 0 + -95 -97 0 + -95 -98 0 + -95 -99 0 + -96 -97 0 + -96 -98 0 + -96 -99 0 + -97 -98 0 + -97 -99 0 + -98 -99 0 + -100 -101 0 + -100 -102 0 + -101 -102 0 + -103 -104 0 + -103 -105 0 + -103 -106 0 + -103 -107 0 + -103 -108 0 + -103 -109 0 + -104 -105 0 + -104 -106 0 + -104 -107 0 + -104 -108 0 + -104 -109 0 + -105 -106 0 + -105 -107 0 + -105 -108 0 + -105 -109 0 + -106 -107 0 + -106 -108 0 + -106 -109 0 + -107 -108 0 + -107 -109 0 + -108 -109 0 + -110 -111 0 + -110 -112 0 + -110 -113 0 + -110 -114 0 + -111 -112 0 + -111 -113 0 + -111 -114 0 + -112 -113 0 + -112 -114 0 + -113 -114 0 + -115 -116 0 + -115 -117 0 + -115 -118 0 + -115 -119 0 + -115 -120 0 + -115 -121 0 + -115 -122 0 + -115 -123 0 + -116 -117 0 + -116 -118 0 + -116 -119 0 + -116 -120 0 + -116 -121 0 + -116 -122 0 + -116 -123 0 + -117 -118 0 + -117 -119 0 + -117 -120 0 + -117 -121 0 + -117 -122 0 + -117 -123 0 + -118 -119 0 + -118 -120 0 + -118 -121 0 + -118 -122 0 + -118 -123 0 + -119 -120 0 + -119 -121 0 + -119 -122 0 + -119 -123 0 + -120 -121 0 + -120 -122 0 + -120 -123 0 + -121 -122 0 + -121 -123 0 + -122 -123 0 + -124 -125 0 + -124 -126 0 + -124 -127 0 + -124 -128 0 + -124 -129 0 + -125 -126 0 + -125 -127 0 + -125 -128 0 + -125 -129 0 + -126 -127 0 + -126 -128 0 + -126 -129 0 + -127 -128 0 + -127 -129 0 + -128 -129 0 + -130 -131 0 + -130 -132 0 + -130 -133 0 + -131 -132 0 + -131 -133 0 + -132 -133 0 + -134 -135 0 + -134 -136 0 + -134 -137 0 + -134 -138 0 + -134 -139 0 + -134 -140 0 + -135 -136 0 + -135 -137 0 + -135 -138 0 + -135 -139 0 + -135 -140 0 + -136 -137 0 + -136 -138 0 + -136 -139 0 + -136 -140 0 + -137 -138 0 + -137 -139 0 + -137 -140 0 + -138 -139 0 + -138 -140 0 + -139 -140 0 + -141 -142 0 + -141 -143 0 + -141 -144 0 + -141 -145 0 + -141 -146 0 + -141 -147 0 + -142 -143 0 + -142 -144 0 + -142 -145 0 + -142 -146 0 + -142 -147 0 + -143 -144 0 + -143 -145 0 + -143 -146 0 + -143 -147 0 + -144 -145 0 + -144 -146 0 + -144 -147 0 + -145 -146 0 + -145 -147 0 + -146 -147 0 + -148 -149 0 + -148 -150 0 + -148 -151 0 + -148 -152 0 + -148 -153 0 + -148 -154 0 + -149 -150 0 + -149 -151 0 + -149 -152 0 + -149 -153 0 + -149 -154 0 + -150 -151 0 + -150 -152 0 + -150 -153 0 + -150 -154 0 + -151 -152 0 + -151 -153 0 + -151 -154 0 + -152 -153 0 + -152 -154 0 + -153 -154 0 + -155 -156 0 + -155 -157 0 + -155 -158 0 + -155 -159 0 + -155 -160 0 + -156 -157 0 + -156 -158 0 + -156 -159 0 + -156 -160 0 + -157 -158 0 + -157 -159 0 + -157 -160 0 + -158 -159 0 + -158 -160 0 + -159 -160 0 + -161 -162 0 + -161 -163 0 + -161 -164 0 + -161 -165 0 + -162 -163 0 + -162 -164 0 + -162 -165 0 + -163 -164 0 + -163 -165 0 + -164 -165 0 + -166 -167 0 + -166 -168 0 + -166 -169 0 + -167 -168 0 + -167 -169 0 + -168 -169 0 + -170 -171 0 + -170 -172 0 + -170 -173 0 + -170 -174 0 + -170 -175 0 + -170 -176 0 + -170 -177 0 + -170 -178 0 + -171 -172 0 + -171 -173 0 + -171 -174 0 + -171 -175 0 + -171 -176 0 + -171 -177 0 + -171 -178 0 + -172 -173 0 + -172 -174 0 + -172 -175 0 + -172 -176 0 + -172 -177 0 + -172 -178 0 + -173 -174 0 + -173 -175 0 + -173 -176 0 + -173 -177 0 + -173 -178 0 + -174 -175 0 + -174 -176 0 + -174 -177 0 + -174 -178 0 + -175 -176 0 + -175 -177 0 + -175 -178 0 + -176 -177 0 + -176 -178 0 + -177 -178 0 + -179 -180 0 + -179 -181 0 + -179 -182 0 + -179 -183 0 + -179 -184 0 + -180 -181 0 + -180 -182 0 + -180 -183 0 + -180 -184 0 + -181 -182 0 + -181 -183 0 + -181 -184 0 + -182 -183 0 + -182 -184 0 + -183 -184 0 + -185 -186 0 + -185 -187 0 + -185 -188 0 + -185 -189 0 + -185 -190 0 + -186 -187 0 + -186 -188 0 + -186 -189 0 + -186 -190 0 + -187 -188 0 + -187 -189 0 + -187 -190 0 + -188 -189 0 + -188 -190 0 + -189 -190 0 + -191 -192 0 + -191 -193 0 + -191 -194 0 + -191 -195 0 + -191 -196 0 + -191 -197 0 + -191 -198 0 + -192 -193 0 + -192 -194 0 + -192 -195 0 + -192 -196 0 + -192 -197 0 + -192 -198 0 + -193 -194 0 + -193 -195 0 + -193 -196 0 + -193 -197 0 + -193 -198 0 + -194 -195 0 + -194 -196 0 + -194 -197 0 + -194 -198 0 + -195 -196 0 + -195 -197 0 + -195 -198 0 + -196 -197 0 + -196 -198 0 + -197 -198 0 + -199 -200 0 + -199 -201 0 + -199 -202 0 + -199 -203 0 + -199 -204 0 + -200 -201 0 + -200 -202 0 + -200 -203 0 + -200 -204 0 + -201 -202 0 + -201 -203 0 + -201 -204 0 + -202 -203 0 + -202 -204 0 + -203 -204 0 + -205 -206 0 + -205 -207 0 + -205 -208 0 + -205 -209 0 + -205 -210 0 + -206 -207 0 + -206 -208 0 + -206 -209 0 + -206 -210 0 + -207 -208 0 + -207 -209 0 + -207 -210 0 + -208 -209 0 + -208 -210 0 + -209 -210 0 + -211 -212 0 + -211 -213 0 + -211 -214 0 + -212 -213 0 + -212 -214 0 + -213 -214 0 + -215 -216 0 + -215 -217 0 + -215 -218 0 + -215 -219 0 + -215 -220 0 + -215 -221 0 + -215 -222 0 + -215 -223 0 + -216 -217 0 + -216 -218 0 + -216 -219 0 + -216 -220 0 + -216 -221 0 + -216 -222 0 + -216 -223 0 + -217 -218 0 + -217 -219 0 + -217 -220 0 + -217 -221 0 + -217 -222 0 + -217 -223 0 + -218 -219 0 + -218 -220 0 + -218 -221 0 + -218 -222 0 + -218 -223 0 + -219 -220 0 + -219 -221 0 + -219 -222 0 + -219 -223 0 + -220 -221 0 + -220 -222 0 + -220 -223 0 + -221 -222 0 + -221 -223 0 + -222 -223 0 + -224 -225 0 + -224 -226 0 + -224 -227 0 + -224 -228 0 + -224 -229 0 + -224 -230 0 + -225 -226 0 + -225 -227 0 + -225 -228 0 + -225 -229 0 + -225 -230 0 + -226 -227 0 + -226 -228 0 + -226 -229 0 + -226 -230 0 + -227 -228 0 + -227 -229 0 + -227 -230 0 + -228 -229 0 + -228 -230 0 + -229 -230 0 + -231 -232 0 + -231 -233 0 + -231 -234 0 + -231 -235 0 + -231 -236 0 + -232 -233 0 + -232 -234 0 + -232 -235 0 + -232 -236 0 + -233 -234 0 + -233 -235 0 + -233 -236 0 + -234 -235 0 + -234 -236 0 + -235 -236 0 + -237 -238 0 + -237 -239 0 + -237 -240 0 + -238 -239 0 + -238 -240 0 + -239 -240 0 + -241 -242 0 + -241 -243 0 + -241 -244 0 + -241 -245 0 + -242 -243 0 + -242 -244 0 + -242 -245 0 + -243 -244 0 + -243 -245 0 + -244 -245 0 + -246 -247 0 + -246 -248 0 + -246 -249 0 + -246 -250 0 + -246 -251 0 + -247 -248 0 + -247 -249 0 + -247 -250 0 + -247 -251 0 + -248 -249 0 + -248 -250 0 + -248 -251 0 + -249 -250 0 + -249 -251 0 + -250 -251 0 + -252 -253 0 + -252 -254 0 + -252 -255 0 + -252 -256 0 + -253 -254 0 + -253 -255 0 + -253 -256 0 + -254 -255 0 + -254 -256 0 + -255 -256 0 + -257 -258 0 + -257 -259 0 + -257 -260 0 + -257 -261 0 + -257 -262 0 + -257 -263 0 + -257 -264 0 + -257 -265 0 + -258 -259 0 + -258 -260 0 + -258 -261 0 + -258 -262 0 + -258 -263 0 + -258 -264 0 + -258 -265 0 + -259 -260 0 + -259 -261 0 + -259 -262 0 + -259 -263 0 + -259 -264 0 + -259 -265 0 + -260 -261 0 + -260 -262 0 + -260 -263 0 + -260 -264 0 + -260 -265 0 + -261 -262 0 + -261 -263 0 + -261 -264 0 + -261 -265 0 + -262 -263 0 + -262 -264 0 + -262 -265 0 + -263 -264 0 + -263 -265 0 + -264 -265 0 + -266 -267 0 + -266 -268 0 + -266 -269 0 + -266 -270 0 + -267 -268 0 + -267 -269 0 + -267 -270 0 + -268 -269 0 + -268 -270 0 + -269 -270 0 + -271 -272 0 + -271 -273 0 + -271 -274 0 + -271 -275 0 + -271 -276 0 + -271 -277 0 + -272 -273 0 + -272 -274 0 + -272 -275 0 + -272 -276 0 + -272 -277 0 + -273 -274 0 + -273 -275 0 + -273 -276 0 + -273 -277 0 + -274 -275 0 + -274 -276 0 + -274 -277 0 + -275 -276 0 + -275 -277 0 + -276 -277 0 + -278 -279 0 + -278 -280 0 + -278 -281 0 + -278 -282 0 + -279 -280 0 + -279 -281 0 + -279 -282 0 + -280 -281 0 + -280 -282 0 + -281 -282 0 + -283 -284 0 + -283 -285 0 + -283 -286 0 + -283 -287 0 + -283 -288 0 + -283 -289 0 + -284 -285 0 + -284 -286 0 + -284 -287 0 + -284 -288 0 + -284 -289 0 + -285 -286 0 + -285 -287 0 + -285 -288 0 + -285 -289 0 + -286 -287 0 + -286 -288 0 + -286 -289 0 + -287 -288 0 + -287 -289 0 + -288 -289 0 + -290 -291 0 + -290 -292 0 + -290 -293 0 + -290 -294 0 + -291 -292 0 + -291 -293 0 + -291 -294 0 + -292 -293 0 + -292 -294 0 + -293 -294 0 + -295 -296 0 + -295 -297 0 + -295 -298 0 + -295 -299 0 + -295 -300 0 + -296 -297 0 + -296 -298 0 + -296 -299 0 + -296 -300 0 + -297 -298 0 + -297 -299 0 + -297 -300 0 + -298 -299 0 + -298 -300 0 + -299 -300 0 + -301 -302 0 + -301 -303 0 + -301 -304 0 + -301 -305 0 + -302 -303 0 + -302 -304 0 + -302 -305 0 + -303 -304 0 + -303 -305 0 + -304 -305 0 + -306 -307 0 + -306 -308 0 + -306 -309 0 + -306 -310 0 + -306 -311 0 + -306 -312 0 + -307 -308 0 + -307 -309 0 + -307 -310 0 + -307 -311 0 + -307 -312 0 + -308 -309 0 + -308 -310 0 + -308 -311 0 + -308 -312 0 + -309 -310 0 + -309 -311 0 + -309 -312 0 + -310 -311 0 + -310 -312 0 + -311 -312 0 + -313 -314 0 + -313 -315 0 + -313 -316 0 + -313 -317 0 + -314 -315 0 + -314 -316 0 + -314 -317 0 + -315 -316 0 + -315 -317 0 + -316 -317 0 + -318 -319 0 + -318 -320 0 + -318 -321 0 + -318 -322 0 + -318 -323 0 + -319 -320 0 + -319 -321 0 + -319 -322 0 + -319 -323 0 + -320 -321 0 + -320 -322 0 + -320 -323 0 + -321 -322 0 + -321 -323 0 + -322 -323 0 + -324 -325 0 + -324 -326 0 + -324 -327 0 + -324 -328 0 + -324 -329 0 + -325 -326 0 + -325 -327 0 + -325 -328 0 + -325 -329 0 + -326 -327 0 + -326 -328 0 + -326 -329 0 + -327 -328 0 + -327 -329 0 + -328 -329 0 + -330 -331 0 + -330 -332 0 + -330 -333 0 + -330 -334 0 + -330 -335 0 + -330 -336 0 + -330 -337 0 + -330 -338 0 + -331 -332 0 + -331 -333 0 + -331 -334 0 + -331 -335 0 + -331 -336 0 + -331 -337 0 + -331 -338 0 + -332 -333 0 + -332 -334 0 + -332 -335 0 + -332 -336 0 + -332 -337 0 + -332 -338 0 + -333 -334 0 + -333 -335 0 + -333 -336 0 + -333 -337 0 + -333 -338 0 + -334 -335 0 + -334 -336 0 + -334 -337 0 + -334 -338 0 + -335 -336 0 + -335 -337 0 + -335 -338 0 + -336 -337 0 + -336 -338 0 + -337 -338 0 + -339 -340 0 + -339 -341 0 + -339 -342 0 + -339 -343 0 + -339 -344 0 + -339 -345 0 + -340 -341 0 + -340 -342 0 + -340 -343 0 + -340 -344 0 + -340 -345 0 + -341 -342 0 + -341 -343 0 + -341 -344 0 + -341 -345 0 + -342 -343 0 + -342 -344 0 + -342 -345 0 + -343 -344 0 + -343 -345 0 + -344 -345 0 + -346 -347 0 + -346 -348 0 + -346 -349 0 + -346 -350 0 + -346 -351 0 + -347 -348 0 + -347 -349 0 + -347 -350 0 + -347 -351 0 + -348 -349 0 + -348 -350 0 + -348 -351 0 + -349 -350 0 + -349 -351 0 + -350 -351 0 + -352 -353 0 + -352 -354 0 + -352 -355 0 + -352 -356 0 + -352 -357 0 + -352 -358 0 + -353 -354 0 + -353 -355 0 + -353 -356 0 + -353 -357 0 + -353 -358 0 + -354 -355 0 + -354 -356 0 + -354 -357 0 + -354 -358 0 + -355 -356 0 + -355 -357 0 + -355 -358 0 + -356 -357 0 + -356 -358 0 + -357 -358 0 + -359 -360 0 + -359 -361 0 + -359 -362 0 + -359 -363 0 + -360 -361 0 + -360 -362 0 + -360 -363 0 + -361 -362 0 + -361 -363 0 + -362 -363 0 + -364 -365 0 + -364 -366 0 + -364 -367 0 + -364 -368 0 + -364 -369 0 + -364 -370 0 + -365 -366 0 + -365 -367 0 + -365 -368 0 + -365 -369 0 + -365 -370 0 + -366 -367 0 + -366 -368 0 + -366 -369 0 + -366 -370 0 + -367 -368 0 + -367 -369 0 + -367 -370 0 + -368 -369 0 + -368 -370 0 + -369 -370 0 + -371 -372 0 + -371 -373 0 + -371 -374 0 + -371 -375 0 + -372 -373 0 + -372 -374 0 + -372 -375 0 + -373 -374 0 + -373 -375 0 + -374 -375 0 + -376 -377 0 + -376 -378 0 + -376 -379 0 + -376 -380 0 + -376 -381 0 + -377 -378 0 + -377 -379 0 + -377 -380 0 + -377 -381 0 + -378 -379 0 + -378 -380 0 + -378 -381 0 + -379 -380 0 + -379 -381 0 + -380 -381 0 + -382 -383 0 + -382 -384 0 + -383 -384 0 + -385 -386 0 + -385 -387 0 + -385 -388 0 + -385 -389 0 + -385 -390 0 + -385 -391 0 + -386 -387 0 + -386 -388 0 + -386 -389 0 + -386 -390 0 + -386 -391 0 + -387 -388 0 + -387 -389 0 + -387 -390 0 + -387 -391 0 + -388 -389 0 + -388 -390 0 + -388 -391 0 + -389 -390 0 + -389 -391 0 + -390 -391 0 + -392 -393 0 + -392 -394 0 + -392 -395 0 + -393 -394 0 + -393 -395 0 + -394 -395 0 + -396 -397 0 + -396 -398 0 + -396 -399 0 + -396 -400 0 + -396 -401 0 + -397 -398 0 + -397 -399 0 + -397 -400 0 + -397 -401 0 + -398 -399 0 + -398 -400 0 + -398 -401 0 + -399 -400 0 + -399 -401 0 + -400 -401 0 + -402 -403 0 + -402 -404 0 + -402 -405 0 + -403 -404 0 + -403 -405 0 + -404 -405 0 + -406 -407 0 + -406 -408 0 + -406 -409 0 + -407 -408 0 + -407 -409 0 + -408 -409 0 + -410 -411 0 + -410 -412 0 + -410 -413 0 + -411 -412 0 + -411 -413 0 + -412 -413 0 + -414 -415 0 + -414 -416 0 + -414 -417 0 + -415 -416 0 + -415 -417 0 + -416 -417 0 + -418 -419 0 + -418 -420 0 + -418 -421 0 + -419 -420 0 + -419 -421 0 + -420 -421 0 + -422 -423 0 + -422 -424 0 + -423 -424 0 + -425 -426 0 + -425 -427 0 + -425 -428 0 + -425 -429 0 + -426 -427 0 + -426 -428 0 + -426 -429 0 + -427 -428 0 + -427 -429 0 + -428 -429 0 + -430 -431 0 + -430 -432 0 + -431 -432 0 + -433 -434 0 + -433 -435 0 + -433 -436 0 + -434 -435 0 + -434 -436 0 + -435 -436 0 + -437 -438 0 + -437 -439 0 + -437 -440 0 + -438 -439 0 + -438 -440 0 + -439 -440 0 + -441 -442 0 + -441 -443 0 + -441 -444 0 + -442 -443 0 + -442 -444 0 + -443 -444 0 + -445 -446 0 + -445 -447 0 + -445 -448 0 + -446 -447 0 + -446 -448 0 + -447 -448 0 + -449 -450 0 + -449 -451 0 + -449 -452 0 + -449 -453 0 + -449 -454 0 + -450 -451 0 + -450 -452 0 + -450 -453 0 + -450 -454 0 + -451 -452 0 + -451 -453 0 + -451 -454 0 + -452 -453 0 + -452 -454 0 + -453 -454 0 + -455 -456 0 + -455 -457 0 + -455 -458 0 + -455 -459 0 + -456 -457 0 + -456 -458 0 + -456 -459 0 + -457 -458 0 + -457 -459 0 + -458 -459 0 + -460 -461 0 + -460 -462 0 + -460 -463 0 + -460 -464 0 + -461 -462 0 + -461 -463 0 + -461 -464 0 + -462 -463 0 + -462 -464 0 + -463 -464 0 + -465 -466 0 + -465 -467 0 + -465 -468 0 + -465 -469 0 + -466 -467 0 + -466 -468 0 + -466 -469 0 + -467 -468 0 + -467 -469 0 + -468 -469 0 + -470 -471 0 + -470 -472 0 + -470 -473 0 + -470 -474 0 + -470 -475 0 + -470 -476 0 + -470 -477 0 + -471 -472 0 + -471 -473 0 + -471 -474 0 + -471 -475 0 + -471 -476 0 + -471 -477 0 + -472 -473 0 + -472 -474 0 + -472 -475 0 + -472 -476 0 + -472 -477 0 + -473 -474 0 + -473 -475 0 + -473 -476 0 + -473 -477 0 + -474 -475 0 + -474 -476 0 + -474 -477 0 + -475 -476 0 + -475 -477 0 + -476 -477 0 + -478 -479 0 + -478 -480 0 + -478 -481 0 + -479 -480 0 + -479 -481 0 + -480 -481 0 + -482 -483 0 + -482 -484 0 + -482 -485 0 + -483 -484 0 + -483 -485 0 + -484 -485 0 + -486 -487 0 + -486 -488 0 + -486 -489 0 + -486 -490 0 + -486 -491 0 + -487 -488 0 + -487 -489 0 + -487 -490 0 + -487 -491 0 + -488 -489 0 + -488 -490 0 + -488 -491 0 + -489 -490 0 + -489 -491 0 + -490 -491 0 + -492 -493 0 + -492 -494 0 + -492 -495 0 + -492 -496 0 + -493 -494 0 + -493 -495 0 + -493 -496 0 + -494 -495 0 + -494 -496 0 + -495 -496 0 + -497 -498 0 + -497 -499 0 + -497 -500 0 + -497 -501 0 + -497 -502 0 + -497 -503 0 + -498 -499 0 + -498 -500 0 + -498 -501 0 + -498 -502 0 + -498 -503 0 + -499 -500 0 + -499 -501 0 + -499 -502 0 + -499 -503 0 + -500 -501 0 + -500 -502 0 + -500 -503 0 + -501 -502 0 + -501 -503 0 + -502 -503 0 + -504 -505 0 + -504 -506 0 + -504 -507 0 + -504 -508 0 + -505 -506 0 + -505 -507 0 + -505 -508 0 + -506 -507 0 + -506 -508 0 + -507 -508 0 + -509 -510 0 + -509 -511 0 + -509 -512 0 + -509 -513 0 + -509 -514 0 + -510 -511 0 + -510 -512 0 + -510 -513 0 + -510 -514 0 + -511 -512 0 + -511 -513 0 + -511 -514 0 + -512 -513 0 + -512 -514 0 + -513 -514 0 + -515 -516 0 + -515 -517 0 + -515 -518 0 + -515 -519 0 + -515 -520 0 + -515 -521 0 + -516 -517 0 + -516 -518 0 + -516 -519 0 + -516 -520 0 + -516 -521 0 + -517 -518 0 + -517 -519 0 + -517 -520 0 + -517 -521 0 + -518 -519 0 + -518 -520 0 + -518 -521 0 + -519 -520 0 + -519 -521 0 + -520 -521 0 + -522 -523 0 + -522 -524 0 + -522 -525 0 + -522 -526 0 + -522 -527 0 + -522 -528 0 + -523 -524 0 + -523 -525 0 + -523 -526 0 + -523 -527 0 + -523 -528 0 + -524 -525 0 + -524 -526 0 + -524 -527 0 + -524 -528 0 + -525 -526 0 + -525 -527 0 + -525 -528 0 + -526 -527 0 + -526 -528 0 + -527 -528 0 + -529 -530 0 + -529 -531 0 + -529 -532 0 + -529 -533 0 + -529 -534 0 + -529 -535 0 + -530 -531 0 + -530 -532 0 + -530 -533 0 + -530 -534 0 + -530 -535 0 + -531 -532 0 + -531 -533 0 + -531 -534 0 + -531 -535 0 + -532 -533 0 + -532 -534 0 + -532 -535 0 + -533 -534 0 + -533 -535 0 + -534 -535 0 + -536 -537 0 + -536 -538 0 + -536 -539 0 + -536 -540 0 + -536 -541 0 + -537 -538 0 + -537 -539 0 + -537 -540 0 + -537 -541 0 + -538 -539 0 + -538 -540 0 + -538 -541 0 + -539 -540 0 + -539 -541 0 + -540 -541 0 + -542 -543 0 + -542 -544 0 + -542 -545 0 + -542 -546 0 + -542 -547 0 + -543 -544 0 + -543 -545 0 + -543 -546 0 + -543 -547 0 + -544 -545 0 + -544 -546 0 + -544 -547 0 + -545 -546 0 + -545 -547 0 + -546 -547 0 + -548 -549 0 + -548 -550 0 + -548 -551 0 + -548 -552 0 + -549 -550 0 + -549 -551 0 + -549 -552 0 + -550 -551 0 + -550 -552 0 + -551 -552 0 + -553 -554 0 + -553 -555 0 + -553 -556 0 + -553 -557 0 + -554 -555 0 + -554 -556 0 + -554 -557 0 + -555 -556 0 + -555 -557 0 + -556 -557 0 + -558 -559 0 + -558 -560 0 + -558 -561 0 + -558 -562 0 + -558 -563 0 + -558 -564 0 + -559 -560 0 + -559 -561 0 + -559 -562 0 + -559 -563 0 + -559 -564 0 + -560 -561 0 + -560 -562 0 + -560 -563 0 + -560 -564 0 + -561 -562 0 + -561 -563 0 + -561 -564 0 + -562 -563 0 + -562 -564 0 + -563 -564 0 + -565 -566 0 + -565 -567 0 + -565 -568 0 + -566 -567 0 + -566 -568 0 + -567 -568 0 + -569 -570 0 + -569 -571 0 + -569 -572 0 + -569 -573 0 + -570 -571 0 + -570 -572 0 + -570 -573 0 + -571 -572 0 + -571 -573 0 + -572 -573 0 + -574 -575 0 + -574 -576 0 + -574 -577 0 + -575 -576 0 + -575 -577 0 + -576 -577 0 + -578 -579 0 + -578 -580 0 + -578 -581 0 + -579 -580 0 + -579 -581 0 + -580 -581 0 + -582 -583 0 + -582 -584 0 + -583 -584 0 + -585 -586 0 + -585 -587 0 + -585 -588 0 + -585 -589 0 + -586 -587 0 + -586 -588 0 + -586 -589 0 + -587 -588 0 + -587 -589 0 + -588 -589 0 + -590 -591 0 + -590 -592 0 + -591 -592 0 + -593 -594 0 + -593 -595 0 + -593 -596 0 + -593 -597 0 + -594 -595 0 + -594 -596 0 + -594 -597 0 + -595 -596 0 + -595 -597 0 + -596 -597 0 + -598 -599 0 + -598 -600 0 + -598 -601 0 + -599 -600 0 + -599 -601 0 + -600 -601 0 + -602 -603 0 + -602 -604 0 + -603 -604 0 + -605 -606 0 + -605 -607 0 + -605 -608 0 + -605 -609 0 + -605 -610 0 + -606 -607 0 + -606 -608 0 + -606 -609 0 + -606 -610 0 + -607 -608 0 + -607 -609 0 + -607 -610 0 + -608 -609 0 + -608 -610 0 + -609 -610 0 + -611 -612 0 + -611 -613 0 + -611 -614 0 + -611 -615 0 + -611 -616 0 + -611 -617 0 + -612 -613 0 + -612 -614 0 + -612 -615 0 + -612 -616 0 + -612 -617 0 + -613 -614 0 + -613 -615 0 + -613 -616 0 + -613 -617 0 + -614 -615 0 + -614 -616 0 + -614 -617 0 + -615 -616 0 + -615 -617 0 + -616 -617 0 + -618 -619 0 + -618 -620 0 + -618 -621 0 + -619 -620 0 + -619 -621 0 + -620 -621 0 + -622 -623 0 + -622 -624 0 + -622 -625 0 + -623 -624 0 + -623 -625 0 + -624 -625 0 + -626 -627 0 + -626 -628 0 + -626 -629 0 + -626 -630 0 + -626 -631 0 + -627 -628 0 + -627 -629 0 + -627 -630 0 + -627 -631 0 + -628 -629 0 + -628 -630 0 + -628 -631 0 + -629 -630 0 + -629 -631 0 + -630 -631 0 + -632 -633 0 + -632 -634 0 + -632 -635 0 + -632 -636 0 + -632 -637 0 + -633 -634 0 + -633 -635 0 + -633 -636 0 + -633 -637 0 + -634 -635 0 + -634 -636 0 + -634 -637 0 + -635 -636 0 + -635 -637 0 + -636 -637 0 + -638 -639 0 + -638 -640 0 + -638 -641 0 + -638 -642 0 + -638 -643 0 + -638 -644 0 + -639 -640 0 + -639 -641 0 + -639 -642 0 + -639 -643 0 + -639 -644 0 + -640 -641 0 + -640 -642 0 + -640 -643 0 + -640 -644 0 + -641 -642 0 + -641 -643 0 + -641 -644 0 + -642 -643 0 + -642 -644 0 + -643 -644 0 + -645 -646 0 + -645 -647 0 + -645 -648 0 + -645 -649 0 + -646 -647 0 + -646 -648 0 + -646 -649 0 + -647 -648 0 + -647 -649 0 + -648 -649 0 + -650 -651 0 + -650 -652 0 + -650 -653 0 + -650 -654 0 + -650 -655 0 + -650 -656 0 + -651 -652 0 + -651 -653 0 + -651 -654 0 + -651 -655 0 + -651 -656 0 + -652 -653 0 + -652 -654 0 + -652 -655 0 + -652 -656 0 + -653 -654 0 + -653 -655 0 + -653 -656 0 + -654 -655 0 + -654 -656 0 + -655 -656 0 + -657 -658 0 + -657 -659 0 + -657 -660 0 + -658 -659 0 + -658 -660 0 + -659 -660 0 + -661 -662 0 + -661 -663 0 + -661 -664 0 + -661 -665 0 + -662 -663 0 + -662 -664 0 + -662 -665 0 + -663 -664 0 + -663 -665 0 + -664 -665 0 + -666 -667 0 + -666 -668 0 + -667 -668 0 + -669 -670 0 + -669 -671 0 + -670 -671 0 + -672 -673 0 + -674 -675 0 + -676 -677 0 + -676 -678 0 + -677 -678 0 + -679 -680 0 + -679 -681 0 + -680 -681 0 + -682 -683 0 + -682 -684 0 + -682 -685 0 + -683 -684 0 + -683 -685 0 + -684 -685 0 + -686 -687 0 + -686 -688 0 + -686 -689 0 + -686 -690 0 + -686 -691 0 + -687 -688 0 + -687 -689 0 + -687 -690 0 + -687 -691 0 + -688 -689 0 + -688 -690 0 + -688 -691 0 + -689 -690 0 + -689 -691 0 + -690 -691 0 + -692 -693 0 + -692 -694 0 + -692 -695 0 + -693 -694 0 + -693 -695 0 + -694 -695 0 + -696 -697 0 + -696 -698 0 + -696 -699 0 + -697 -698 0 + -697 -699 0 + -698 -699 0 + -700 -701 0 + -700 -702 0 + -700 -703 0 + -700 -704 0 + -700 -705 0 + -701 -702 0 + -701 -703 0 + -701 -704 0 + -701 -705 0 + -702 -703 0 + -702 -704 0 + -702 -705 0 + -703 -704 0 + -703 -705 0 + -704 -705 0 + -706 -707 0 + -706 -708 0 + -706 -709 0 + -706 -710 0 + -707 -708 0 + -707 -709 0 + -707 -710 0 + -708 -709 0 + -708 -710 0 + -709 -710 0 + -711 -712 0 + -711 -713 0 + -711 -714 0 + -711 -715 0 + -712 -713 0 + -712 -714 0 + -712 -715 0 + -713 -714 0 + -713 -715 0 + -714 -715 0 + -716 -717 0 + -716 -718 0 + -716 -719 0 + -717 -718 0 + -717 -719 0 + -718 -719 0 + -720 -721 0 + -720 -722 0 + -720 -723 0 + -720 -724 0 + -720 -725 0 + -721 -722 0 + -721 -723 0 + -721 -724 0 + -721 -725 0 + -722 -723 0 + -722 -724 0 + -722 -725 0 + -723 -724 0 + -723 -725 0 + -724 -725 0 + -726 -727 0 + -726 -728 0 + -726 -729 0 + -726 -730 0 + -727 -728 0 + -727 -729 0 + -727 -730 0 + -728 -729 0 + -728 -730 0 + -729 -730 0 + -731 -732 0 + -731 -733 0 + -731 -734 0 + -731 -735 0 + -731 -736 0 + -732 -733 0 + -732 -734 0 + -732 -735 0 + -732 -736 0 + -733 -734 0 + -733 -735 0 + -733 -736 0 + -734 -735 0 + -734 -736 0 + -735 -736 0 + -737 -738 0 + -737 -739 0 + -737 -740 0 + -737 -741 0 + -737 -742 0 + -738 -739 0 + -738 -740 0 + -738 -741 0 + -738 -742 0 + -739 -740 0 + -739 -741 0 + -739 -742 0 + -740 -741 0 + -740 -742 0 + -741 -742 0 + -743 -744 0 + -743 -745 0 + -743 -746 0 + -743 -747 0 + -743 -748 0 + -744 -745 0 + -744 -746 0 + -744 -747 0 + -744 -748 0 + -745 -746 0 + -745 -747 0 + -745 -748 0 + -746 -747 0 + -746 -748 0 + -747 -748 0 + -749 -750 0 + -749 -751 0 + -749 -752 0 + -749 -753 0 + -750 -751 0 + -750 -752 0 + -750 -753 0 + -751 -752 0 + -751 -753 0 + -752 -753 0 + -754 -755 0 + -754 -756 0 + -754 -757 0 + -754 -758 0 + -754 -759 0 + -754 -760 0 + -755 -756 0 + -755 -757 0 + -755 -758 0 + -755 -759 0 + -755 -760 0 + -756 -757 0 + -756 -758 0 + -756 -759 0 + -756 -760 0 + -757 -758 0 + -757 -759 0 + -757 -760 0 + -758 -759 0 + -758 -760 0 + -759 -760 0 + -761 -762 0 + -761 -763 0 + -761 -764 0 + -761 -765 0 + -762 -763 0 + -762 -764 0 + -762 -765 0 + -763 -764 0 + -763 -765 0 + -764 -765 0 + -766 -767 0 + -766 -768 0 + -766 -769 0 + -766 -770 0 + -767 -768 0 + -767 -769 0 + -767 -770 0 + -768 -769 0 + -768 -770 0 + -769 -770 0 + -771 -772 0 + -773 -774 0 + -773 -775 0 + -774 -775 0 + -776 -777 0 + -776 -778 0 + -776 -779 0 + -776 -780 0 + -777 -778 0 + -777 -779 0 + -777 -780 0 + -778 -779 0 + -778 -780 0 + -779 -780 0 + -781 -782 0 + -781 -783 0 + -781 -784 0 + -781 -785 0 + -781 -786 0 + -782 -783 0 + -782 -784 0 + -782 -785 0 + -782 -786 0 + -783 -784 0 + -783 -785 0 + -783 -786 0 + -784 -785 0 + -784 -786 0 + -785 -786 0 + -787 -788 0 + -787 -789 0 + -787 -790 0 + -788 -789 0 + -788 -790 0 + -789 -790 0 + -791 -792 0 + -791 -793 0 + -791 -794 0 + -791 -795 0 + -791 -796 0 + -791 -797 0 + -792 -793 0 + -792 -794 0 + -792 -795 0 + -792 -796 0 + -792 -797 0 + -793 -794 0 + -793 -795 0 + -793 -796 0 + -793 -797 0 + -794 -795 0 + -794 -796 0 + -794 -797 0 + -795 -796 0 + -795 -797 0 + -796 -797 0 + -798 -799 0 + -798 -800 0 + -798 -801 0 + -798 -802 0 + -799 -800 0 + -799 -801 0 + -799 -802 0 + -800 -801 0 + -800 -802 0 + -801 -802 0 + -803 -804 0 + -803 -805 0 + -803 -806 0 + -803 -807 0 + -803 -808 0 + -804 -805 0 + -804 -806 0 + -804 -807 0 + -804 -808 0 + -805 -806 0 + -805 -807 0 + -805 -808 0 + -806 -807 0 + -806 -808 0 + -807 -808 0 + -809 -810 0 + -809 -811 0 + -809 -812 0 + -809 -813 0 + -810 -811 0 + -810 -812 0 + -810 -813 0 + -811 -812 0 + -811 -813 0 + -812 -813 0 + -814 -815 0 + -814 -816 0 + -814 -817 0 + -815 -816 0 + -815 -817 0 + -816 -817 0 + -818 -819 0 + -818 -820 0 + -818 -821 0 + -819 -820 0 + -819 -821 0 + -820 -821 0 + -822 -823 0 + -822 -824 0 + -822 -825 0 + -822 -826 0 + -823 -824 0 + -823 -825 0 + -823 -826 0 + -824 -825 0 + -824 -826 0 + -825 -826 0 + -827 -828 0 + -827 -829 0 + -828 -829 0 + -830 -831 0 + -830 -832 0 + -831 -832 0 + -833 -834 0 + -833 -835 0 + -834 -835 0 + -836 -837 0 + -836 -838 0 + -836 -839 0 + -836 -840 0 + -836 -841 0 + -837 -838 0 + -837 -839 0 + -837 -840 0 + -837 -841 0 + -838 -839 0 + -838 -840 0 + -838 -841 0 + -839 -840 0 + -839 -841 0 + -840 -841 0 + -842 -843 0 + -842 -844 0 + -842 -845 0 + -842 -846 0 + -842 -847 0 + -842 -848 0 + -843 -844 0 + -843 -845 0 + -843 -846 0 + -843 -847 0 + -843 -848 0 + -844 -845 0 + -844 -846 0 + -844 -847 0 + -844 -848 0 + -845 -846 0 + -845 -847 0 + -845 -848 0 + -846 -847 0 + -846 -848 0 + -847 -848 0 + -849 -850 0 + -849 -851 0 + -850 -851 0 + -852 -853 0 + -852 -854 0 + -852 -855 0 + -852 -856 0 + -852 -857 0 + -853 -854 0 + -853 -855 0 + -853 -856 0 + -853 -857 0 + -854 -855 0 + -854 -856 0 + -854 -857 0 + -855 -856 0 + -855 -857 0 + -856 -857 0 + -858 -859 0 + -858 -860 0 + -858 -861 0 + -859 -860 0 + -859 -861 0 + -860 -861 0 + -862 -863 0 + -862 -864 0 + -862 -865 0 + -862 -866 0 + -862 -867 0 + -863 -864 0 + -863 -865 0 + -863 -866 0 + -863 -867 0 + -864 -865 0 + -864 -866 0 + -864 -867 0 + -865 -866 0 + -865 -867 0 + -866 -867 0 + -868 -869 0 + -868 -870 0 + -868 -871 0 + -869 -870 0 + -869 -871 0 + -870 -871 0 + -872 -873 0 + -872 -874 0 + -873 -874 0 + -875 -876 0 + -875 -877 0 + -875 -878 0 + -875 -879 0 + -876 -877 0 + -876 -878 0 + -876 -879 0 + -877 -878 0 + -877 -879 0 + -878 -879 0 + -880 -881 0 + -880 -882 0 + -880 -883 0 + -880 -884 0 + -881 -882 0 + -881 -883 0 + -881 -884 0 + -882 -883 0 + -882 -884 0 + -883 -884 0 + -885 -886 0 + -885 -887 0 + -885 -888 0 + -885 -889 0 + -886 -887 0 + -886 -888 0 + -886 -889 0 + -887 -888 0 + -887 -889 0 + -888 -889 0 + -890 -891 0 + -890 -892 0 + -890 -893 0 + -890 -894 0 + -891 -892 0 + -891 -893 0 + -891 -894 0 + -892 -893 0 + -892 -894 0 + -893 -894 0 + -895 -896 0 + -895 -897 0 + -895 -898 0 + -896 -897 0 + -896 -898 0 + -897 -898 0 + -899 -900 0 + -899 -901 0 + -899 -902 0 + -900 -901 0 + -900 -902 0 + -901 -902 0 + -903 -904 0 + -903 -905 0 + -903 -906 0 + -903 -907 0 + -903 -908 0 + -903 -909 0 + -904 -905 0 + -904 -906 0 + -904 -907 0 + -904 -908 0 + -904 -909 0 + -905 -906 0 + -905 -907 0 + -905 -908 0 + -905 -909 0 + -906 -907 0 + -906 -908 0 + -906 -909 0 + -907 -908 0 + -907 -909 0 + -908 -909 0 + -910 -911 0 + -910 -912 0 + -910 -913 0 + -911 -912 0 + -911 -913 0 + -912 -913 0 + -914 -915 0 + -914 -916 0 + -915 -916 0 + -917 -918 0 + -917 -919 0 + -917 -920 0 + -917 -921 0 + -918 -919 0 + -918 -920 0 + -918 -921 0 + -919 -920 0 + -919 -921 0 + -920 -921 0 + -922 -923 0 + -922 -924 0 + -922 -925 0 + -923 -924 0 + -923 -925 0 + -924 -925 0 + -926 -927 0 + -926 -928 0 + -926 -929 0 + -927 -928 0 + -927 -929 0 + -928 -929 0 + -930 -931 0 + -930 -932 0 + -931 -932 0 + -933 -934 0 + -933 -935 0 + -933 -936 0 + -933 -937 0 + -934 -935 0 + -934 -936 0 + -934 -937 0 + -935 -936 0 + -935 -937 0 + -936 -937 0 + -938 -939 0 + -938 -940 0 + -938 -941 0 + -938 -942 0 + -938 -943 0 + -939 -940 0 + -939 -941 0 + -939 -942 0 + -939 -943 0 + -940 -941 0 + -940 -942 0 + -940 -943 0 + -941 -942 0 + -941 -943 0 + -942 -943 0 + -944 -945 0 + -944 -946 0 + -945 -946 0 + -947 -948 0 + -947 -949 0 + -947 -950 0 + -947 -951 0 + -948 -949 0 + -948 -950 0 + -948 -951 0 + -949 -950 0 + -949 -951 0 + -950 -951 0 + -952 -953 0 + -952 -954 0 + -952 -955 0 + -952 -956 0 + -952 -957 0 + -952 -958 0 + -953 -954 0 + -953 -955 0 + -953 -956 0 + -953 -957 0 + -953 -958 0 + -954 -955 0 + -954 -956 0 + -954 -957 0 + -954 -958 0 + -955 -956 0 + -955 -957 0 + -955 -958 0 + -956 -957 0 + -956 -958 0 + -957 -958 0 + -959 -960 0 + -959 -961 0 + -959 -962 0 + -959 -963 0 + -960 -961 0 + -960 -962 0 + -960 -963 0 + -961 -962 0 + -961 -963 0 + -962 -963 0 + -964 -965 0 + -964 -966 0 + -964 -967 0 + -964 -968 0 + -964 -969 0 + -965 -966 0 + -965 -967 0 + -965 -968 0 + -965 -969 0 + -966 -967 0 + -966 -968 0 + -966 -969 0 + -967 -968 0 + -967 -969 0 + -968 -969 0 + -970 -971 0 + -970 -972 0 + -970 -973 0 + -971 -972 0 + -971 -973 0 + -972 -973 0 + -974 -975 0 + -974 -976 0 + -974 -977 0 + -975 -976 0 + -975 -977 0 + -976 -977 0 + -978 -979 0 + -978 -980 0 + -978 -981 0 + -978 -982 0 + -979 -980 0 + -979 -981 0 + -979 -982 0 + -980 -981 0 + -980 -982 0 + -981 -982 0 + -983 -984 0 + -983 -985 0 + -983 -986 0 + -983 -987 0 + -984 -985 0 + -984 -986 0 + -984 -987 0 + -985 -986 0 + -985 -987 0 + -986 -987 0 + -988 -989 0 + -988 -990 0 + -988 -991 0 + -988 -992 0 + -989 -990 0 + -989 -991 0 + -989 -992 0 + -990 -991 0 + -990 -992 0 + -991 -992 0 + -993 -994 0 + -993 -995 0 + -993 -996 0 + -994 -995 0 + -994 -996 0 + -995 -996 0 + -997 -998 0 + -997 -999 0 + -997 -1000 0 + -998 -999 0 + -998 -1000 0 + -999 -1000 0 + -1001 -1002 0 + -1001 -1003 0 + -1001 -1004 0 + -1001 -1005 0 + -1002 -1003 0 + -1002 -1004 0 + -1002 -1005 0 + -1003 -1004 0 + -1003 -1005 0 + -1004 -1005 0 + -1006 -1007 0 + -1006 -1008 0 + -1006 -1009 0 + -1006 -1010 0 + -1006 -1011 0 + -1006 -1012 0 + -1007 -1008 0 + -1007 -1009 0 + -1007 -1010 0 + -1007 -1011 0 + -1007 -1012 0 + -1008 -1009 0 + -1008 -1010 0 + -1008 -1011 0 + -1008 -1012 0 + -1009 -1010 0 + -1009 -1011 0 + -1009 -1012 0 + -1010 -1011 0 + -1010 -1012 0 + -1011 -1012 0 + -1013 -1014 0 + -1013 -1015 0 + -1013 -1016 0 + -1013 -1017 0 + -1014 -1015 0 + -1014 -1016 0 + -1014 -1017 0 + -1015 -1016 0 + -1015 -1017 0 + -1016 -1017 0 + -1018 -1019 0 + -1018 -1020 0 + -1018 -1021 0 + -1019 -1020 0 + -1019 -1021 0 + -1020 -1021 0 + -1022 -1023 0 + -1024 -1025 0 + -1024 -1026 0 + -1024 -1027 0 + -1024 -1028 0 + -1025 -1026 0 + -1025 -1027 0 + -1025 -1028 0 + -1026 -1027 0 + -1026 -1028 0 + -1027 -1028 0 + -1029 -1030 0 + -1029 -1031 0 + -1030 -1031 0 + -1032 -1033 0 + -1034 -1035 0 + -1034 -1036 0 + -1034 -1037 0 + -1034 -1038 0 + -1035 -1036 0 + -1035 -1037 0 + -1035 -1038 0 + -1036 -1037 0 + -1036 -1038 0 + -1037 -1038 0 + -1039 -1040 0 + -1039 -1041 0 + -1039 -1042 0 + -1039 -1043 0 + -1040 -1041 0 + -1040 -1042 0 + -1040 -1043 0 + -1041 -1042 0 + -1041 -1043 0 + -1042 -1043 0 + -1044 -1045 0 + -1044 -1046 0 + -1044 -1047 0 + -1044 -1048 0 + -1045 -1046 0 + -1045 -1047 0 + -1045 -1048 0 + -1046 -1047 0 + -1046 -1048 0 + -1047 -1048 0 + -1049 -1050 0 + -1049 -1051 0 + -1049 -1052 0 + -1049 -1053 0 + -1050 -1051 0 + -1050 -1052 0 + -1050 -1053 0 + -1051 -1052 0 + -1051 -1053 0 + -1052 -1053 0 + -1054 -1055 0 + -1054 -1056 0 + -1054 -1057 0 + -1055 -1056 0 + -1055 -1057 0 + -1056 -1057 0 + -1058 -1059 0 + -1058 -1060 0 + -1059 -1060 0 + -1061 -1062 0 + -1061 -1063 0 + -1061 -1064 0 + -1061 -1065 0 + -1062 -1063 0 + -1062 -1064 0 + -1062 -1065 0 + -1063 -1064 0 + -1063 -1065 0 + -1064 -1065 0 + -1066 -1067 0 + -1066 -1068 0 + -1066 -1069 0 + -1066 -1070 0 + -1066 -1071 0 + -1066 -1072 0 + -1067 -1068 0 + -1067 -1069 0 + -1067 -1070 0 + -1067 -1071 0 + -1067 -1072 0 + -1068 -1069 0 + -1068 -1070 0 + -1068 -1071 0 + -1068 -1072 0 + -1069 -1070 0 + -1069 -1071 0 + -1069 -1072 0 + -1070 -1071 0 + -1070 -1072 0 + -1071 -1072 0 + -1073 -1074 0 + -1073 -1075 0 + -1073 -1076 0 + -1073 -1077 0 + -1074 -1075 0 + -1074 -1076 0 + -1074 -1077 0 + -1075 -1076 0 + -1075 -1077 0 + -1076 -1077 0 + -1 -77 0 + -1 -134 0 + -1 -215 0 + -1 -611 0 + -1 -827 0 + -1 -903 0 + -1 -938 0 + -77 -134 0 + -77 -215 0 + -77 -611 0 + -77 -827 0 + -77 -903 0 + -77 -938 0 + -134 -215 0 + -134 -611 0 + -134 -827 0 + -134 -903 0 + -134 -938 0 + -215 -611 0 + -215 -827 0 + -215 -903 0 + -215 -938 0 + -611 -827 0 + -611 -903 0 + -611 -938 0 + -827 -903 0 + -827 -938 0 + -903 -938 0 + -50 -135 0 + -50 -216 0 + -50 -612 0 + -50 -868 0 + -50 -904 0 + -135 -216 0 + -135 -612 0 + -135 -868 0 + -135 -904 0 + -216 -612 0 + -216 -868 0 + -216 -904 0 + -612 -868 0 + -612 -904 0 + -868 -904 0 + -78 -295 0 + -78 -613 0 + -78 -869 0 + -78 -905 0 + -78 -939 0 + -295 -613 0 + -295 -869 0 + -295 -905 0 + -295 -939 0 + -613 -869 0 + -613 -905 0 + -613 -939 0 + -869 -905 0 + -869 -939 0 + -905 -939 0 + -2 -51 0 + -2 -79 0 + -2 -136 0 + -2 -376 0 + -2 -870 0 + -51 -79 0 + -51 -136 0 + -51 -376 0 + -51 -870 0 + -79 -136 0 + -79 -376 0 + -79 -870 0 + -136 -376 0 + -136 -870 0 + -376 -870 0 + -3 -137 0 + -3 -217 0 + -3 -296 0 + -3 -377 0 + -3 -614 0 + -3 -906 0 + -137 -217 0 + -137 -296 0 + -137 -377 0 + -137 -614 0 + -137 -906 0 + -217 -296 0 + -217 -377 0 + -217 -614 0 + -217 -906 0 + -296 -377 0 + -296 -614 0 + -296 -906 0 + -377 -614 0 + -377 -906 0 + -614 -906 0 + -4 -218 0 + -4 -297 0 + -4 -378 0 + -4 -615 0 + -4 -907 0 + -4 -940 0 + -218 -297 0 + -218 -378 0 + -218 -615 0 + -218 -907 0 + -218 -940 0 + -297 -378 0 + -297 -615 0 + -297 -907 0 + -297 -940 0 + -378 -615 0 + -378 -907 0 + -378 -940 0 + -615 -907 0 + -615 -940 0 + -907 -940 0 + -52 -80 0 + -52 -219 0 + -52 -298 0 + -52 -379 0 + -52 -941 0 + -80 -219 0 + -80 -298 0 + -80 -379 0 + -80 -941 0 + -219 -298 0 + -219 -379 0 + -219 -941 0 + -298 -379 0 + -298 -941 0 + -379 -941 0 + -138 -220 0 + -138 -299 0 + -138 -380 0 + -138 -616 0 + -138 -828 0 + -138 -871 0 + -138 -908 0 + -220 -299 0 + -220 -380 0 + -220 -616 0 + -220 -828 0 + -220 -871 0 + -220 -908 0 + -299 -380 0 + -299 -616 0 + -299 -828 0 + -299 -871 0 + -299 -908 0 + -380 -616 0 + -380 -828 0 + -380 -871 0 + -380 -908 0 + -616 -828 0 + -616 -871 0 + -616 -908 0 + -828 -871 0 + -828 -908 0 + -871 -908 0 + -5 -139 0 + -5 -221 0 + -5 -381 0 + -5 -909 0 + -5 -942 0 + -139 -221 0 + -139 -381 0 + -139 -909 0 + -139 -942 0 + -221 -381 0 + -221 -909 0 + -221 -942 0 + -381 -909 0 + -381 -942 0 + -909 -942 0 + -53 -81 0 + -53 -140 0 + -53 -222 0 + -81 -140 0 + -81 -222 0 + -140 -222 0 + -6 -82 0 + -6 -829 0 + -6 -943 0 + -82 -829 0 + -82 -943 0 + -829 -943 0 + -7 -223 0 + -7 -300 0 + -7 -617 0 + -223 -300 0 + -223 -617 0 + -300 -617 0 + -141 -224 0 + -141 -504 0 + -141 -830 0 + -141 -910 0 + -141 -944 0 + -224 -504 0 + -224 -830 0 + -224 -910 0 + -224 -944 0 + -504 -830 0 + -504 -910 0 + -504 -944 0 + -830 -910 0 + -830 -944 0 + -910 -944 0 + -142 -225 0 + -142 -505 0 + -142 -679 0 + -142 -776 0 + -142 -911 0 + -225 -505 0 + -225 -679 0 + -225 -776 0 + -225 -911 0 + -505 -679 0 + -505 -776 0 + -505 -911 0 + -679 -776 0 + -679 -911 0 + -776 -911 0 + -143 -422 0 + -143 -506 0 + -143 -777 0 + -422 -506 0 + -422 -777 0 + -506 -777 0 + -144 -226 0 + -144 -423 0 + -144 -507 0 + -144 -680 0 + -144 -778 0 + -144 -831 0 + -226 -423 0 + -226 -507 0 + -226 -680 0 + -226 -778 0 + -226 -831 0 + -423 -507 0 + -423 -680 0 + -423 -778 0 + -423 -831 0 + -507 -680 0 + -507 -778 0 + -507 -831 0 + -680 -778 0 + -680 -831 0 + -778 -831 0 + -145 -227 0 + -145 -779 0 + -145 -912 0 + -227 -779 0 + -227 -912 0 + -779 -912 0 + -228 -913 0 + -228 -945 0 + -913 -945 0 + -146 -229 0 + -146 -681 0 + -146 -780 0 + -146 -946 0 + -229 -681 0 + -229 -780 0 + -229 -946 0 + -681 -780 0 + -681 -946 0 + -780 -946 0 + -147 -832 0 + -230 -424 0 + -230 -508 0 + -424 -508 0 + -83 -148 0 + -83 -231 0 + -83 -574 0 + -83 -720 0 + -83 -947 0 + -83 -1034 0 + -148 -231 0 + -148 -574 0 + -148 -720 0 + -148 -947 0 + -148 -1034 0 + -231 -574 0 + -231 -720 0 + -231 -947 0 + -231 -1034 0 + -574 -720 0 + -574 -947 0 + -574 -1034 0 + -720 -947 0 + -720 -1034 0 + -947 -1034 0 + -149 -232 0 + -149 -721 0 + -232 -721 0 + -150 -233 0 + -150 -301 0 + -150 -575 0 + -150 -1035 0 + -233 -301 0 + -233 -575 0 + -233 -1035 0 + -301 -575 0 + -301 -1035 0 + -575 -1035 0 + -151 -234 0 + -151 -302 0 + -151 -722 0 + -151 -1036 0 + -234 -302 0 + -234 -722 0 + -234 -1036 0 + -302 -722 0 + -302 -1036 0 + -722 -1036 0 + -303 -723 0 + -303 -948 0 + -303 -1037 0 + -723 -948 0 + -723 -1037 0 + -948 -1037 0 + -152 -235 0 + -152 -576 0 + -152 -949 0 + -235 -576 0 + -235 -949 0 + -576 -949 0 + -84 -153 0 + -84 -236 0 + -84 -304 0 + -84 -577 0 + -84 -724 0 + -84 -950 0 + -84 -1038 0 + -153 -236 0 + -153 -304 0 + -153 -577 0 + -153 -724 0 + -153 -950 0 + -153 -1038 0 + -236 -304 0 + -236 -577 0 + -236 -724 0 + -236 -950 0 + -236 -1038 0 + -304 -577 0 + -304 -724 0 + -304 -950 0 + -304 -1038 0 + -577 -724 0 + -577 -950 0 + -577 -1038 0 + -724 -950 0 + -724 -1038 0 + -950 -1038 0 + -154 -305 0 + -154 -725 0 + -154 -951 0 + -305 -725 0 + -305 -951 0 + -725 -951 0 + -306 -578 0 + -306 -618 0 + -578 -618 0 + -155 -237 0 + -155 -307 0 + -155 -509 0 + -155 -579 0 + -155 -781 0 + -155 -833 0 + -237 -307 0 + -237 -509 0 + -237 -579 0 + -237 -781 0 + -237 -833 0 + -307 -509 0 + -307 -579 0 + -307 -781 0 + -307 -833 0 + -509 -579 0 + -509 -781 0 + -509 -833 0 + -579 -781 0 + -579 -833 0 + -781 -833 0 + -156 -308 0 + -156 -382 0 + -156 -510 0 + -156 -782 0 + -156 -834 0 + -308 -382 0 + -308 -510 0 + -308 -782 0 + -308 -834 0 + -382 -510 0 + -382 -782 0 + -382 -834 0 + -510 -782 0 + -510 -834 0 + -782 -834 0 + -309 -383 0 + -309 -511 0 + -309 -619 0 + -383 -511 0 + -383 -619 0 + -511 -619 0 + -157 -238 0 + -157 -310 0 + -157 -580 0 + -157 -783 0 + -238 -310 0 + -238 -580 0 + -238 -783 0 + -310 -580 0 + -310 -783 0 + -580 -783 0 + -158 -239 0 + -158 -784 0 + -239 -784 0 + -159 -311 0 + -159 -384 0 + -159 -512 0 + -159 -620 0 + -159 -785 0 + -159 -835 0 + -311 -384 0 + -311 -512 0 + -311 -620 0 + -311 -785 0 + -311 -835 0 + -384 -512 0 + -384 -620 0 + -384 -785 0 + -384 -835 0 + -512 -620 0 + -512 -785 0 + -512 -835 0 + -620 -785 0 + -620 -835 0 + -785 -835 0 + -160 -513 0 + -160 -581 0 + -160 -786 0 + -513 -581 0 + -513 -786 0 + -581 -786 0 + -240 -312 0 + -240 -514 0 + -240 -621 0 + -312 -514 0 + -312 -621 0 + -514 -621 0 + -54 -85 0 + -54 -161 0 + -54 -726 0 + -54 -993 0 + -85 -161 0 + -85 -726 0 + -85 -993 0 + -161 -726 0 + -161 -993 0 + -726 -993 0 + -162 -313 0 + -162 -727 0 + -162 -994 0 + -313 -727 0 + -313 -994 0 + -727 -994 0 + -314 -582 0 + -314 -728 0 + -314 -1039 0 + -582 -728 0 + -582 -1039 0 + -728 -1039 0 + -86 -163 0 + -86 -315 0 + -86 -1040 0 + -163 -315 0 + -163 -1040 0 + -315 -1040 0 + -164 -316 0 + -164 -682 0 + -164 -729 0 + -164 -1041 0 + -316 -682 0 + -316 -729 0 + -316 -1041 0 + -682 -729 0 + -682 -1041 0 + -729 -1041 0 + -55 -317 0 + -55 -683 0 + -55 -730 0 + -55 -1042 0 + -317 -683 0 + -317 -730 0 + -317 -1042 0 + -683 -730 0 + -683 -1042 0 + -730 -1042 0 + -56 -87 0 + -56 -583 0 + -56 -995 0 + -56 -1043 0 + -87 -583 0 + -87 -995 0 + -87 -1043 0 + -583 -995 0 + -583 -1043 0 + -995 -1043 0 + -88 -684 0 + -89 -165 0 + -89 -584 0 + -89 -685 0 + -89 -996 0 + -165 -584 0 + -165 -685 0 + -165 -996 0 + -584 -685 0 + -584 -996 0 + -685 -996 0 + -385 -425 0 + -385 -449 0 + -385 -515 0 + -385 -872 0 + -385 -997 0 + -425 -449 0 + -425 -515 0 + -425 -872 0 + -425 -997 0 + -449 -515 0 + -449 -872 0 + -449 -997 0 + -515 -872 0 + -515 -997 0 + -872 -997 0 + -241 -318 0 + -241 -386 0 + -241 -450 0 + -241 -998 0 + -241 -1044 0 + -318 -386 0 + -318 -450 0 + -318 -998 0 + -318 -1044 0 + -386 -450 0 + -386 -998 0 + -386 -1044 0 + -450 -998 0 + -450 -1044 0 + -998 -1044 0 + -319 -387 0 + -319 -451 0 + -319 -516 0 + -319 -873 0 + -319 -1045 0 + -387 -451 0 + -387 -516 0 + -387 -873 0 + -387 -1045 0 + -451 -516 0 + -451 -873 0 + -451 -1045 0 + -516 -873 0 + -516 -1045 0 + -873 -1045 0 + -242 -320 0 + -242 -388 0 + -242 -622 0 + -242 -874 0 + -242 -1046 0 + -320 -388 0 + -320 -622 0 + -320 -874 0 + -320 -1046 0 + -388 -622 0 + -388 -874 0 + -388 -1046 0 + -622 -874 0 + -622 -1046 0 + -874 -1046 0 + -321 -389 0 + -321 -452 0 + -321 -517 0 + -321 -623 0 + -321 -1047 0 + -389 -452 0 + -389 -517 0 + -389 -623 0 + -389 -1047 0 + -452 -517 0 + -452 -623 0 + -452 -1047 0 + -517 -623 0 + -517 -1047 0 + -623 -1047 0 + -243 -390 0 + -243 -426 0 + -243 -518 0 + -390 -426 0 + -390 -518 0 + -426 -518 0 + -244 -427 0 + -244 -453 0 + -244 -999 0 + -244 -1048 0 + -427 -453 0 + -427 -999 0 + -427 -1048 0 + -453 -999 0 + -453 -1048 0 + -999 -1048 0 + -322 -391 0 + -322 -519 0 + -322 -624 0 + -322 -1000 0 + -391 -519 0 + -391 -624 0 + -391 -1000 0 + -519 -624 0 + -519 -1000 0 + -624 -1000 0 + -428 -454 0 + -428 -520 0 + -454 -520 0 + -245 -323 0 + -245 -429 0 + -245 -521 0 + -245 -625 0 + -323 -429 0 + -323 -521 0 + -323 -625 0 + -429 -521 0 + -429 -625 0 + -521 -625 0 + -8 -246 0 + -8 -522 0 + -8 -626 0 + -8 -952 0 + -8 -1049 0 + -246 -522 0 + -246 -626 0 + -246 -952 0 + -246 -1049 0 + -522 -626 0 + -522 -952 0 + -522 -1049 0 + -626 -952 0 + -626 -1049 0 + -952 -1049 0 + -57 -247 0 + -57 -523 0 + -57 -627 0 + -57 -787 0 + -247 -523 0 + -247 -627 0 + -247 -787 0 + -523 -627 0 + -523 -787 0 + -627 -787 0 + -324 -628 0 + -324 -953 0 + -324 -1001 0 + -628 -953 0 + -628 -1001 0 + -953 -1001 0 + -9 -248 0 + -9 -325 0 + -9 -524 0 + -9 -788 0 + -9 -1050 0 + -248 -325 0 + -248 -524 0 + -248 -788 0 + -248 -1050 0 + -325 -524 0 + -325 -788 0 + -325 -1050 0 + -524 -788 0 + -524 -1050 0 + -788 -1050 0 + -10 -249 0 + -10 -326 0 + -10 -629 0 + -10 -954 0 + -10 -1002 0 + -249 -326 0 + -249 -629 0 + -249 -954 0 + -249 -1002 0 + -326 -629 0 + -326 -954 0 + -326 -1002 0 + -629 -954 0 + -629 -1002 0 + -954 -1002 0 + -58 -250 0 + -58 -327 0 + -58 -669 0 + -58 -955 0 + -58 -1003 0 + -58 -1051 0 + -250 -327 0 + -250 -669 0 + -250 -955 0 + -250 -1003 0 + -250 -1051 0 + -327 -669 0 + -327 -955 0 + -327 -1003 0 + -327 -1051 0 + -669 -955 0 + -669 -1003 0 + -669 -1051 0 + -955 -1003 0 + -955 -1051 0 + -1003 -1051 0 + -328 -525 0 + -328 -789 0 + -328 -1052 0 + -525 -789 0 + -525 -1052 0 + -789 -1052 0 + -59 -329 0 + -59 -526 0 + -59 -630 0 + -59 -670 0 + -59 -956 0 + -59 -1053 0 + -329 -526 0 + -329 -630 0 + -329 -670 0 + -329 -956 0 + -329 -1053 0 + -526 -630 0 + -526 -670 0 + -526 -956 0 + -526 -1053 0 + -630 -670 0 + -630 -956 0 + -630 -1053 0 + -670 -956 0 + -670 -1053 0 + -956 -1053 0 + -11 -251 0 + -11 -527 0 + -11 -957 0 + -251 -527 0 + -251 -957 0 + -527 -957 0 + -12 -631 0 + -12 -1004 0 + -631 -1004 0 + -528 -671 0 + -528 -790 0 + -528 -958 0 + -528 -1005 0 + -671 -790 0 + -671 -958 0 + -671 -1005 0 + -790 -958 0 + -790 -1005 0 + -958 -1005 0 + -13 -60 0 + -13 -166 0 + -13 -392 0 + -13 -430 0 + -13 -455 0 + -60 -166 0 + -60 -392 0 + -60 -430 0 + -60 -455 0 + -166 -392 0 + -166 -430 0 + -166 -455 0 + -392 -430 0 + -392 -455 0 + -430 -455 0 + -14 -167 0 + -14 -252 0 + -14 -393 0 + -167 -252 0 + -167 -393 0 + -252 -393 0 + -61 -253 0 + -61 -394 0 + -61 -456 0 + -61 -1054 0 + -253 -394 0 + -253 -456 0 + -253 -1054 0 + -394 -456 0 + -394 -1054 0 + -456 -1054 0 + -62 -395 0 + -62 -457 0 + -62 -1055 0 + -395 -457 0 + -395 -1055 0 + -457 -1055 0 + -168 -254 0 + -168 -1056 0 + -254 -1056 0 + -15 -63 0 + -15 -255 0 + -15 -431 0 + -15 -458 0 + -15 -1057 0 + -63 -255 0 + -63 -431 0 + -63 -458 0 + -63 -1057 0 + -255 -431 0 + -255 -458 0 + -255 -1057 0 + -431 -458 0 + -431 -1057 0 + -458 -1057 0 + -64 -169 0 + -64 -256 0 + -169 -256 0 + -16 -432 0 + -16 -459 0 + -432 -459 0 + -90 -396 0 + -90 -433 0 + -90 -460 0 + -90 -791 0 + -90 -875 0 + -396 -433 0 + -396 -460 0 + -396 -791 0 + -396 -875 0 + -433 -460 0 + -433 -791 0 + -433 -875 0 + -460 -791 0 + -460 -875 0 + -791 -875 0 + -330 -434 0 + -330 -792 0 + -330 -836 0 + -330 -876 0 + -434 -792 0 + -434 -836 0 + -434 -876 0 + -792 -836 0 + -792 -876 0 + -836 -876 0 + -331 -397 0 + -331 -632 0 + -331 -793 0 + -331 -914 0 + -397 -632 0 + -397 -793 0 + -397 -914 0 + -632 -793 0 + -632 -914 0 + -793 -914 0 + -332 -398 0 + -332 -461 0 + -332 -633 0 + -332 -915 0 + -332 -959 0 + -398 -461 0 + -398 -633 0 + -398 -915 0 + -398 -959 0 + -461 -633 0 + -461 -915 0 + -461 -959 0 + -633 -915 0 + -633 -959 0 + -915 -959 0 + -91 -333 0 + -91 -399 0 + -91 -462 0 + -91 -794 0 + -91 -837 0 + -91 -877 0 + -91 -916 0 + -333 -399 0 + -333 -462 0 + -333 -794 0 + -333 -837 0 + -333 -877 0 + -333 -916 0 + -399 -462 0 + -399 -794 0 + -399 -837 0 + -399 -877 0 + -399 -916 0 + -462 -794 0 + -462 -837 0 + -462 -877 0 + -462 -916 0 + -794 -837 0 + -794 -877 0 + -794 -916 0 + -837 -877 0 + -837 -916 0 + -877 -916 0 + -334 -400 0 + -334 -463 0 + -334 -634 0 + -334 -672 0 + -334 -960 0 + -400 -463 0 + -400 -634 0 + -400 -672 0 + -400 -960 0 + -463 -634 0 + -463 -672 0 + -463 -960 0 + -634 -672 0 + -634 -960 0 + -672 -960 0 + -92 -335 0 + -92 -673 0 + -92 -795 0 + -92 -878 0 + -92 -961 0 + -335 -673 0 + -335 -795 0 + -335 -878 0 + -335 -961 0 + -673 -795 0 + -673 -878 0 + -673 -961 0 + -795 -878 0 + -795 -961 0 + -878 -961 0 + -93 -435 0 + -93 -464 0 + -93 -838 0 + -93 -962 0 + -435 -464 0 + -435 -838 0 + -435 -962 0 + -464 -838 0 + -464 -962 0 + -838 -962 0 + -635 -839 0 + -635 -879 0 + -839 -879 0 + -336 -401 0 + -336 -636 0 + -336 -796 0 + -336 -840 0 + -336 -963 0 + -401 -636 0 + -401 -796 0 + -401 -840 0 + -401 -963 0 + -636 -796 0 + -636 -840 0 + -636 -963 0 + -796 -840 0 + -796 -963 0 + -840 -963 0 + -94 -337 0 + -94 -797 0 + -94 -841 0 + -337 -797 0 + -337 -841 0 + -797 -841 0 + -338 -436 0 + -338 -637 0 + -436 -637 0 + -65 -170 0 + -65 -257 0 + -65 -465 0 + -65 -529 0 + -65 -638 0 + -65 -686 0 + -65 -731 0 + -170 -257 0 + -170 -465 0 + -170 -529 0 + -170 -638 0 + -170 -686 0 + -170 -731 0 + -257 -465 0 + -257 -529 0 + -257 -638 0 + -257 -686 0 + -257 -731 0 + -465 -529 0 + -465 -638 0 + -465 -686 0 + -465 -731 0 + -529 -638 0 + -529 -686 0 + -529 -731 0 + -638 -686 0 + -638 -731 0 + -686 -731 0 + -17 -171 0 + -17 -258 0 + -17 -339 0 + -17 -530 0 + -17 -687 0 + -17 -842 0 + -171 -258 0 + -171 -339 0 + -171 -530 0 + -171 -687 0 + -171 -842 0 + -258 -339 0 + -258 -530 0 + -258 -687 0 + -258 -842 0 + -339 -530 0 + -339 -687 0 + -339 -842 0 + -530 -687 0 + -530 -842 0 + -687 -842 0 + -18 -172 0 + -18 -259 0 + -18 -340 0 + -18 -639 0 + -18 -732 0 + -18 -1006 0 + -172 -259 0 + -172 -340 0 + -172 -639 0 + -172 -732 0 + -172 -1006 0 + -259 -340 0 + -259 -639 0 + -259 -732 0 + -259 -1006 0 + -340 -639 0 + -340 -732 0 + -340 -1006 0 + -639 -732 0 + -639 -1006 0 + -732 -1006 0 + -19 -260 0 + -19 -341 0 + -19 -466 0 + -19 -640 0 + -19 -964 0 + -19 -1007 0 + -260 -341 0 + -260 -466 0 + -260 -640 0 + -260 -964 0 + -260 -1007 0 + -341 -466 0 + -341 -640 0 + -341 -964 0 + -341 -1007 0 + -466 -640 0 + -466 -964 0 + -466 -1007 0 + -640 -964 0 + -640 -1007 0 + -964 -1007 0 + -261 -342 0 + -261 -467 0 + -261 -531 0 + -261 -641 0 + -261 -733 0 + -342 -467 0 + -342 -531 0 + -342 -641 0 + -342 -733 0 + -467 -531 0 + -467 -641 0 + -467 -733 0 + -531 -641 0 + -531 -733 0 + -641 -733 0 + -173 -262 0 + -173 -343 0 + -173 -642 0 + -173 -688 0 + -173 -734 0 + -173 -843 0 + -262 -343 0 + -262 -642 0 + -262 -688 0 + -262 -734 0 + -262 -843 0 + -343 -642 0 + -343 -688 0 + -343 -734 0 + -343 -843 0 + -642 -688 0 + -642 -734 0 + -642 -843 0 + -688 -734 0 + -688 -843 0 + -734 -843 0 + -20 -174 0 + -20 -263 0 + -20 -532 0 + -20 -965 0 + -174 -263 0 + -174 -532 0 + -174 -965 0 + -263 -532 0 + -263 -965 0 + -532 -965 0 + -21 -66 0 + -21 -95 0 + -21 -264 0 + -21 -468 0 + -21 -844 0 + -21 -966 0 + -21 -1008 0 + -66 -95 0 + -66 -264 0 + -66 -468 0 + -66 -844 0 + -66 -966 0 + -66 -1008 0 + -95 -264 0 + -95 -468 0 + -95 -844 0 + -95 -966 0 + -95 -1008 0 + -264 -468 0 + -264 -844 0 + -264 -966 0 + -264 -1008 0 + -468 -844 0 + -468 -966 0 + -468 -1008 0 + -844 -966 0 + -844 -1008 0 + -966 -1008 0 + -67 -96 0 + -67 -175 0 + -67 -265 0 + -67 -735 0 + -96 -175 0 + -96 -265 0 + -96 -735 0 + -175 -265 0 + -175 -735 0 + -265 -735 0 + -22 -176 0 + -22 -643 0 + -22 -845 0 + -22 -1009 0 + -176 -643 0 + -176 -845 0 + -176 -1009 0 + -643 -845 0 + -643 -1009 0 + -845 -1009 0 + -177 -344 0 + -177 -533 0 + -177 -644 0 + -177 -689 0 + -177 -736 0 + -177 -846 0 + -177 -967 0 + -177 -1010 0 + -344 -533 0 + -344 -644 0 + -344 -689 0 + -344 -736 0 + -344 -846 0 + -344 -967 0 + -344 -1010 0 + -533 -644 0 + -533 -689 0 + -533 -736 0 + -533 -846 0 + -533 -967 0 + -533 -1010 0 + -644 -689 0 + -644 -736 0 + -644 -846 0 + -644 -967 0 + -644 -1010 0 + -689 -736 0 + -689 -846 0 + -689 -967 0 + -689 -1010 0 + -736 -846 0 + -736 -967 0 + -736 -1010 0 + -846 -967 0 + -846 -1010 0 + -967 -1010 0 + -68 -97 0 + -68 -345 0 + -68 -847 0 + -68 -1011 0 + -97 -345 0 + -97 -847 0 + -97 -1011 0 + -345 -847 0 + -345 -1011 0 + -847 -1011 0 + -23 -98 0 + -23 -469 0 + -23 -534 0 + -23 -690 0 + -23 -848 0 + -23 -968 0 + -98 -469 0 + -98 -534 0 + -98 -690 0 + -98 -848 0 + -98 -968 0 + -469 -534 0 + -469 -690 0 + -469 -848 0 + -469 -968 0 + -534 -690 0 + -534 -848 0 + -534 -968 0 + -690 -848 0 + -690 -968 0 + -848 -968 0 + -99 -178 0 + -99 -535 0 + -99 -691 0 + -99 -969 0 + -99 -1012 0 + -178 -535 0 + -178 -691 0 + -178 -969 0 + -178 -1012 0 + -535 -691 0 + -535 -969 0 + -535 -1012 0 + -691 -969 0 + -691 -1012 0 + -969 -1012 0 + -24 -100 0 + -24 -266 0 + -24 -849 0 + -24 -970 0 + -24 -1058 0 + -100 -266 0 + -100 -849 0 + -100 -970 0 + -100 -1058 0 + -266 -849 0 + -266 -970 0 + -266 -1058 0 + -849 -970 0 + -849 -1058 0 + -970 -1058 0 + -101 -346 0 + -101 -971 0 + -101 -1013 0 + -346 -971 0 + -346 -1013 0 + -971 -1013 0 + -25 -102 0 + -25 -1014 0 + -102 -1014 0 + -26 -267 0 + -26 -347 0 + -26 -1015 0 + -267 -347 0 + -267 -1015 0 + -347 -1015 0 + -27 -268 0 + -27 -348 0 + -27 -972 0 + -27 -1016 0 + -268 -348 0 + -268 -972 0 + -268 -1016 0 + -348 -972 0 + -348 -1016 0 + -972 -1016 0 + -269 -349 0 + -269 -1059 0 + -349 -1059 0 + -270 -350 0 + -270 -850 0 + -270 -1060 0 + -350 -850 0 + -350 -1060 0 + -850 -1060 0 + -351 -851 0 + -351 -973 0 + -351 -1017 0 + -851 -973 0 + -851 -1017 0 + -973 -1017 0 + -28 -103 0 + -28 -179 0 + -28 -470 0 + -28 -536 0 + -28 -737 0 + -28 -917 0 + -103 -179 0 + -103 -470 0 + -103 -536 0 + -103 -737 0 + -103 -917 0 + -179 -470 0 + -179 -536 0 + -179 -737 0 + -179 -917 0 + -470 -536 0 + -470 -737 0 + -470 -917 0 + -536 -737 0 + -536 -917 0 + -737 -917 0 + -69 -180 0 + -69 -471 0 + -69 -537 0 + -69 -692 0 + -69 -738 0 + -69 -798 0 + -69 -880 0 + -69 -918 0 + -180 -471 0 + -180 -537 0 + -180 -692 0 + -180 -738 0 + -180 -798 0 + -180 -880 0 + -180 -918 0 + -471 -537 0 + -471 -692 0 + -471 -738 0 + -471 -798 0 + -471 -880 0 + -471 -918 0 + -537 -692 0 + -537 -738 0 + -537 -798 0 + -537 -880 0 + -537 -918 0 + -692 -738 0 + -692 -798 0 + -692 -880 0 + -692 -918 0 + -738 -798 0 + -738 -880 0 + -738 -918 0 + -798 -880 0 + -798 -918 0 + -880 -918 0 + -104 -693 0 + -104 -881 0 + -104 -919 0 + -693 -881 0 + -693 -919 0 + -881 -919 0 + -29 -70 0 + -29 -105 0 + -29 -181 0 + -29 -472 0 + -29 -538 0 + -29 -739 0 + -29 -799 0 + -29 -882 0 + -70 -105 0 + -70 -181 0 + -70 -472 0 + -70 -538 0 + -70 -739 0 + -70 -799 0 + -70 -882 0 + -105 -181 0 + -105 -472 0 + -105 -538 0 + -105 -739 0 + -105 -799 0 + -105 -882 0 + -181 -472 0 + -181 -538 0 + -181 -739 0 + -181 -799 0 + -181 -882 0 + -472 -538 0 + -472 -739 0 + -472 -799 0 + -472 -882 0 + -538 -739 0 + -538 -799 0 + -538 -882 0 + -739 -799 0 + -739 -882 0 + -799 -882 0 + -30 -473 0 + -30 -920 0 + -473 -920 0 + -474 -539 0 + -474 -740 0 + -539 -740 0 + -71 -106 0 + -71 -475 0 + -106 -475 0 + -107 -182 0 + -107 -476 0 + -107 -540 0 + -107 -800 0 + -107 -883 0 + -107 -921 0 + -182 -476 0 + -182 -540 0 + -182 -800 0 + -182 -883 0 + -182 -921 0 + -476 -540 0 + -476 -800 0 + -476 -883 0 + -476 -921 0 + -540 -800 0 + -540 -883 0 + -540 -921 0 + -800 -883 0 + -800 -921 0 + -883 -921 0 + -108 -183 0 + -108 -694 0 + -108 -741 0 + -108 -801 0 + -108 -884 0 + -183 -694 0 + -183 -741 0 + -183 -801 0 + -183 -884 0 + -694 -741 0 + -694 -801 0 + -694 -884 0 + -741 -801 0 + -741 -884 0 + -801 -884 0 + -31 -72 0 + -31 -109 0 + -31 -477 0 + -72 -109 0 + -72 -477 0 + -109 -477 0 + -184 -541 0 + -184 -695 0 + -184 -742 0 + -184 -802 0 + -541 -695 0 + -541 -742 0 + -541 -802 0 + -695 -742 0 + -695 -802 0 + -742 -802 0 + -32 -110 0 + -32 -542 0 + -32 -645 0 + -32 -743 0 + -32 -974 0 + -110 -542 0 + -110 -645 0 + -110 -743 0 + -110 -974 0 + -542 -645 0 + -542 -743 0 + -542 -974 0 + -645 -743 0 + -645 -974 0 + -743 -974 0 + -111 -352 0 + -111 -646 0 + -111 -696 0 + -111 -885 0 + -111 -975 0 + -352 -646 0 + -352 -696 0 + -352 -885 0 + -352 -975 0 + -646 -696 0 + -646 -885 0 + -646 -975 0 + -696 -885 0 + -696 -975 0 + -885 -975 0 + -33 -112 0 + -33 -543 0 + -33 -744 0 + -33 -886 0 + -112 -543 0 + -112 -744 0 + -112 -886 0 + -543 -744 0 + -543 -886 0 + -744 -886 0 + -34 -353 0 + -34 -544 0 + -34 -697 0 + -34 -887 0 + -353 -544 0 + -353 -697 0 + -353 -887 0 + -544 -697 0 + -544 -887 0 + -697 -887 0 + -35 -354 0 + -35 -647 0 + -35 -745 0 + -354 -647 0 + -354 -745 0 + -647 -745 0 + -113 -355 0 + -113 -545 0 + -113 -888 0 + -355 -545 0 + -355 -888 0 + -545 -888 0 + -356 -546 0 + -356 -648 0 + -356 -698 0 + -356 -746 0 + -356 -976 0 + -546 -648 0 + -546 -698 0 + -546 -746 0 + -546 -976 0 + -648 -698 0 + -648 -746 0 + -648 -976 0 + -698 -746 0 + -698 -976 0 + -746 -976 0 + -114 -357 0 + -114 -699 0 + -114 -747 0 + -114 -889 0 + -114 -977 0 + -357 -699 0 + -357 -747 0 + -357 -889 0 + -357 -977 0 + -699 -747 0 + -699 -889 0 + -699 -977 0 + -747 -889 0 + -747 -977 0 + -889 -977 0 + -36 -358 0 + -36 -547 0 + -36 -649 0 + -36 -748 0 + -358 -547 0 + -358 -649 0 + -358 -748 0 + -547 -649 0 + -547 -748 0 + -649 -748 0 + -185 -478 0 + -185 -548 0 + -185 -700 0 + -185 -749 0 + -185 -922 0 + -478 -548 0 + -478 -700 0 + -478 -749 0 + -478 -922 0 + -548 -700 0 + -548 -749 0 + -548 -922 0 + -700 -749 0 + -700 -922 0 + -749 -922 0 + -585 -701 0 + -585 -923 0 + -585 -978 0 + -701 -923 0 + -701 -978 0 + -923 -978 0 + -186 -549 0 + -186 -586 0 + -186 -702 0 + -186 -1061 0 + -549 -586 0 + -549 -702 0 + -549 -1061 0 + -586 -702 0 + -586 -1061 0 + -702 -1061 0 + -187 -750 0 + -187 -924 0 + -750 -924 0 + -479 -550 0 + -479 -587 0 + -479 -751 0 + -479 -1062 0 + -550 -587 0 + -550 -751 0 + -550 -1062 0 + -587 -751 0 + -587 -1062 0 + -751 -1062 0 + -480 -674 0 + -480 -979 0 + -480 -1063 0 + -674 -979 0 + -674 -1063 0 + -979 -1063 0 + -188 -703 0 + -188 -752 0 + -188 -925 0 + -188 -1064 0 + -703 -752 0 + -703 -925 0 + -703 -1064 0 + -752 -925 0 + -752 -1064 0 + -925 -1064 0 + -481 -588 0 + -481 -980 0 + -481 -1065 0 + -588 -980 0 + -588 -1065 0 + -980 -1065 0 + -189 -551 0 + -189 -704 0 + -189 -753 0 + -189 -981 0 + -551 -704 0 + -551 -753 0 + -551 -981 0 + -704 -753 0 + -704 -981 0 + -753 -981 0 + -190 -552 0 + -190 -589 0 + -190 -675 0 + -190 -705 0 + -190 -982 0 + -552 -589 0 + -552 -675 0 + -552 -705 0 + -552 -982 0 + -589 -675 0 + -589 -705 0 + -589 -982 0 + -675 -705 0 + -675 -982 0 + -705 -982 0 + -191 -271 0 + -191 -482 0 + -191 -553 0 + -191 -590 0 + -191 -650 0 + -191 -754 0 + -271 -482 0 + -271 -553 0 + -271 -590 0 + -271 -650 0 + -271 -754 0 + -482 -553 0 + -482 -590 0 + -482 -650 0 + -482 -754 0 + -553 -590 0 + -553 -650 0 + -553 -754 0 + -590 -650 0 + -590 -754 0 + -650 -754 0 + -192 -272 0 + -192 -483 0 + -192 -554 0 + -192 -651 0 + -192 -755 0 + -192 -803 0 + -192 -890 0 + -272 -483 0 + -272 -554 0 + -272 -651 0 + -272 -755 0 + -272 -803 0 + -272 -890 0 + -483 -554 0 + -483 -651 0 + -483 -755 0 + -483 -803 0 + -483 -890 0 + -554 -651 0 + -554 -755 0 + -554 -803 0 + -554 -890 0 + -651 -755 0 + -651 -803 0 + -651 -890 0 + -755 -803 0 + -755 -890 0 + -803 -890 0 + -273 -402 0 + -273 -484 0 + -273 -591 0 + -273 -652 0 + -273 -1018 0 + -402 -484 0 + -402 -591 0 + -402 -652 0 + -402 -1018 0 + -484 -591 0 + -484 -652 0 + -484 -1018 0 + -591 -652 0 + -591 -1018 0 + -652 -1018 0 + -193 -403 0 + -193 -485 0 + -193 -555 0 + -193 -804 0 + -193 -891 0 + -403 -485 0 + -403 -555 0 + -403 -804 0 + -403 -891 0 + -485 -555 0 + -485 -804 0 + -485 -891 0 + -555 -804 0 + -555 -891 0 + -804 -891 0 + -194 -274 0 + -194 -404 0 + -194 -653 0 + -194 -756 0 + -194 -892 0 + -274 -404 0 + -274 -653 0 + -274 -756 0 + -274 -892 0 + -404 -653 0 + -404 -756 0 + -404 -892 0 + -653 -756 0 + -653 -892 0 + -756 -892 0 + -195 -275 0 + -195 -592 0 + -195 -757 0 + -195 -805 0 + -195 -893 0 + -275 -592 0 + -275 -757 0 + -275 -805 0 + -275 -893 0 + -592 -757 0 + -592 -805 0 + -592 -893 0 + -757 -805 0 + -757 -893 0 + -805 -893 0 + -196 -276 0 + -196 -758 0 + -196 -806 0 + -276 -758 0 + -276 -806 0 + -758 -806 0 + -197 -654 0 + -197 -894 0 + -197 -1019 0 + -654 -894 0 + -654 -1019 0 + -894 -1019 0 + -198 -405 0 + -198 -556 0 + -198 -655 0 + -198 -759 0 + -198 -807 0 + -198 -1020 0 + -405 -556 0 + -405 -655 0 + -405 -759 0 + -405 -807 0 + -405 -1020 0 + -556 -655 0 + -556 -759 0 + -556 -807 0 + -556 -1020 0 + -655 -759 0 + -655 -807 0 + -655 -1020 0 + -759 -807 0 + -759 -1020 0 + -807 -1020 0 + -808 -1021 0 + -277 -557 0 + -277 -656 0 + -277 -760 0 + -557 -656 0 + -557 -760 0 + -656 -760 0 + -37 -115 0 + -37 -486 0 + -37 -593 0 + -37 -761 0 + -37 -852 0 + -37 -926 0 + -37 -983 0 + -115 -486 0 + -115 -593 0 + -115 -761 0 + -115 -852 0 + -115 -926 0 + -115 -983 0 + -486 -593 0 + -486 -761 0 + -486 -852 0 + -486 -926 0 + -486 -983 0 + -593 -761 0 + -593 -852 0 + -593 -926 0 + -593 -983 0 + -761 -852 0 + -761 -926 0 + -761 -983 0 + -852 -926 0 + -852 -983 0 + -926 -983 0 + -116 -359 0 + -116 -594 0 + -116 -927 0 + -116 -984 0 + -359 -594 0 + -359 -927 0 + -359 -984 0 + -594 -927 0 + -594 -984 0 + -927 -984 0 + -38 -117 0 + -38 -406 0 + -38 -437 0 + -38 -487 0 + -38 -762 0 + -117 -406 0 + -117 -437 0 + -117 -487 0 + -117 -762 0 + -406 -437 0 + -406 -487 0 + -406 -762 0 + -437 -487 0 + -437 -762 0 + -487 -762 0 + -360 -407 0 + -360 -438 0 + -360 -488 0 + -360 -595 0 + -360 -763 0 + -407 -438 0 + -407 -488 0 + -407 -595 0 + -407 -763 0 + -438 -488 0 + -438 -595 0 + -438 -763 0 + -488 -595 0 + -488 -763 0 + -595 -763 0 + -118 -361 0 + -118 -408 0 + -118 -489 0 + -118 -853 0 + -118 -928 0 + -361 -408 0 + -361 -489 0 + -361 -853 0 + -361 -928 0 + -408 -489 0 + -408 -853 0 + -408 -928 0 + -489 -853 0 + -489 -928 0 + -853 -928 0 + -362 -409 0 + -362 -764 0 + -362 -854 0 + -362 -929 0 + -409 -764 0 + -409 -854 0 + -409 -929 0 + -764 -854 0 + -764 -929 0 + -854 -929 0 + -39 -119 0 + -39 -439 0 + -39 -490 0 + -39 -596 0 + -39 -855 0 + -39 -985 0 + -119 -439 0 + -119 -490 0 + -119 -596 0 + -119 -855 0 + -119 -985 0 + -439 -490 0 + -439 -596 0 + -439 -855 0 + -439 -985 0 + -490 -596 0 + -490 -855 0 + -490 -985 0 + -596 -855 0 + -596 -985 0 + -855 -985 0 + -120 -765 0 + -121 -363 0 + -121 -856 0 + -363 -856 0 + -40 -122 0 + -40 -440 0 + -40 -491 0 + -40 -857 0 + -40 -986 0 + -122 -440 0 + -122 -491 0 + -122 -857 0 + -122 -986 0 + -440 -491 0 + -440 -857 0 + -440 -986 0 + -491 -857 0 + -491 -986 0 + -857 -986 0 + -123 -597 0 + -123 -987 0 + -597 -987 0 + -124 -199 0 + -124 -657 0 + -124 -988 0 + -199 -657 0 + -199 -988 0 + -657 -988 0 + -200 -658 0 + -200 -706 0 + -200 -809 0 + -658 -706 0 + -658 -809 0 + -706 -809 0 + -125 -201 0 + -125 -410 0 + -125 -810 0 + -125 -1022 0 + -201 -410 0 + -201 -810 0 + -201 -1022 0 + -410 -810 0 + -410 -1022 0 + -810 -1022 0 + -411 -659 0 + -126 -202 0 + -126 -412 0 + -126 -811 0 + -202 -412 0 + -202 -811 0 + -412 -811 0 + -413 -660 0 + -413 -676 0 + -413 -707 0 + -413 -989 0 + -660 -676 0 + -660 -707 0 + -660 -989 0 + -676 -707 0 + -676 -989 0 + -707 -989 0 + -127 -203 0 + -127 -677 0 + -127 -708 0 + -127 -812 0 + -127 -990 0 + -203 -677 0 + -203 -708 0 + -203 -812 0 + -203 -990 0 + -677 -708 0 + -677 -812 0 + -677 -990 0 + -708 -812 0 + -708 -990 0 + -812 -990 0 + -128 -709 0 + -128 -991 0 + -709 -991 0 + -129 -204 0 + -129 -678 0 + -129 -710 0 + -129 -813 0 + -129 -992 0 + -129 -1023 0 + -204 -678 0 + -204 -710 0 + -204 -813 0 + -204 -992 0 + -204 -1023 0 + -678 -710 0 + -678 -813 0 + -678 -992 0 + -678 -1023 0 + -710 -813 0 + -710 -992 0 + -710 -1023 0 + -813 -992 0 + -813 -1023 0 + -992 -1023 0 + -41 -205 0 + -41 -492 0 + -41 -558 0 + -41 -766 0 + -41 -930 0 + -205 -492 0 + -205 -558 0 + -205 -766 0 + -205 -930 0 + -492 -558 0 + -492 -766 0 + -492 -930 0 + -558 -766 0 + -558 -930 0 + -766 -930 0 + -42 -206 0 + -42 -364 0 + -42 -441 0 + -42 -559 0 + -42 -711 0 + -42 -814 0 + -206 -364 0 + -206 -441 0 + -206 -559 0 + -206 -711 0 + -206 -814 0 + -364 -441 0 + -364 -559 0 + -364 -711 0 + -364 -814 0 + -441 -559 0 + -441 -711 0 + -441 -814 0 + -559 -711 0 + -559 -814 0 + -711 -814 0 + -365 -442 0 + -365 -493 0 + -365 -560 0 + -365 -767 0 + -442 -493 0 + -442 -560 0 + -442 -767 0 + -493 -560 0 + -493 -767 0 + -560 -767 0 + -366 -494 0 + -366 -1024 0 + -494 -1024 0 + -207 -367 0 + -207 -712 0 + -207 -768 0 + -207 -931 0 + -367 -712 0 + -367 -768 0 + -367 -931 0 + -712 -768 0 + -712 -931 0 + -768 -931 0 + -368 -495 0 + -368 -561 0 + -368 -713 0 + -368 -769 0 + -495 -561 0 + -495 -713 0 + -495 -769 0 + -561 -713 0 + -561 -769 0 + -713 -769 0 + -43 -208 0 + -43 -443 0 + -43 -562 0 + -43 -932 0 + -208 -443 0 + -208 -562 0 + -208 -932 0 + -443 -562 0 + -443 -932 0 + -562 -932 0 + -44 -444 0 + -44 -496 0 + -44 -1025 0 + -444 -496 0 + -444 -1025 0 + -496 -1025 0 + -209 -369 0 + -209 -563 0 + -209 -714 0 + -209 -770 0 + -209 -815 0 + -209 -1026 0 + -369 -563 0 + -369 -714 0 + -369 -770 0 + -369 -815 0 + -369 -1026 0 + -563 -714 0 + -563 -770 0 + -563 -815 0 + -563 -1026 0 + -714 -770 0 + -714 -815 0 + -714 -1026 0 + -770 -815 0 + -770 -1026 0 + -815 -1026 0 + -370 -816 0 + -370 -1027 0 + -816 -1027 0 + -210 -564 0 + -210 -715 0 + -210 -817 0 + -210 -1028 0 + -564 -715 0 + -564 -817 0 + -564 -1028 0 + -715 -817 0 + -715 -1028 0 + -817 -1028 0 + -497 -565 0 + -497 -598 0 + -497 -661 0 + -497 -858 0 + -497 -933 0 + -497 -1066 0 + -565 -598 0 + -565 -661 0 + -565 -858 0 + -565 -933 0 + -565 -1066 0 + -598 -661 0 + -598 -858 0 + -598 -933 0 + -598 -1066 0 + -661 -858 0 + -661 -933 0 + -661 -1066 0 + -858 -933 0 + -858 -1066 0 + -933 -1066 0 + -498 -566 0 + -498 -662 0 + -498 -895 0 + -498 -934 0 + -566 -662 0 + -566 -895 0 + -566 -934 0 + -662 -895 0 + -662 -934 0 + -895 -934 0 + -499 -599 0 + -499 -663 0 + -499 -935 0 + -499 -1029 0 + -599 -663 0 + -599 -935 0 + -599 -1029 0 + -663 -935 0 + -663 -1029 0 + -935 -1029 0 + -500 -1030 0 + -500 -1067 0 + -1030 -1067 0 + -501 -567 0 + -501 -859 0 + -501 -896 0 + -501 -936 0 + -501 -1068 0 + -567 -859 0 + -567 -896 0 + -567 -936 0 + -567 -1068 0 + -859 -896 0 + -859 -936 0 + -859 -1068 0 + -896 -936 0 + -896 -1068 0 + -936 -1068 0 + -664 -860 0 + -664 -897 0 + -664 -937 0 + -664 -1069 0 + -860 -897 0 + -860 -937 0 + -860 -1069 0 + -897 -937 0 + -897 -1069 0 + -937 -1069 0 + -502 -568 0 + -502 -665 0 + -502 -1070 0 + -568 -665 0 + -568 -1070 0 + -665 -1070 0 + -600 -898 0 + -600 -1071 0 + -898 -1071 0 + -503 -601 0 + -503 -861 0 + -503 -1031 0 + -503 -1072 0 + -601 -861 0 + -601 -1031 0 + -601 -1072 0 + -861 -1031 0 + -861 -1072 0 + -1031 -1072 0 + -73 -278 0 + -73 -569 0 + -73 -771 0 + -73 -818 0 + -278 -569 0 + -278 -771 0 + -278 -818 0 + -569 -771 0 + -569 -818 0 + -771 -818 0 + -45 -279 0 + -45 -570 0 + -45 -602 0 + -45 -819 0 + -45 -862 0 + -279 -570 0 + -279 -602 0 + -279 -819 0 + -279 -862 0 + -570 -602 0 + -570 -819 0 + -570 -862 0 + -602 -819 0 + -602 -862 0 + -819 -862 0 + -74 -130 0 + -74 -280 0 + -130 -280 0 + -46 -281 0 + -46 -571 0 + -46 -603 0 + -281 -571 0 + -281 -603 0 + -571 -603 0 + -47 -75 0 + -47 -131 0 + -47 -282 0 + -47 -604 0 + -47 -863 0 + -75 -131 0 + -75 -282 0 + -75 -604 0 + -75 -863 0 + -131 -282 0 + -131 -604 0 + -131 -863 0 + -282 -604 0 + -282 -863 0 + -604 -863 0 + -48 -864 0 + -572 -772 0 + -572 -820 0 + -572 -865 0 + -772 -820 0 + -772 -865 0 + -820 -865 0 + -76 -132 0 + -76 -821 0 + -76 -866 0 + -132 -821 0 + -132 -866 0 + -821 -866 0 + -49 -133 0 + -49 -573 0 + -49 -867 0 + -133 -573 0 + -133 -867 0 + -573 -867 0 + -211 -283 0 + -211 -773 0 + -211 -1073 0 + -283 -773 0 + -283 -1073 0 + -773 -1073 0 + -212 -284 0 + -212 -371 0 + -212 -1074 0 + -284 -371 0 + -284 -1074 0 + -371 -1074 0 + -285 -372 0 + -285 -414 0 + -285 -1032 0 + -372 -414 0 + -372 -1032 0 + -414 -1032 0 + -286 -373 0 + -286 -415 0 + -286 -774 0 + -286 -1075 0 + -373 -415 0 + -373 -774 0 + -373 -1075 0 + -415 -774 0 + -415 -1075 0 + -774 -1075 0 + -287 -374 0 + -287 -416 0 + -287 -1033 0 + -287 -1076 0 + -374 -416 0 + -374 -1033 0 + -374 -1076 0 + -416 -1033 0 + -416 -1076 0 + -1033 -1076 0 + -213 -288 0 + -213 -417 0 + -288 -417 0 + -214 -289 0 + -214 -375 0 + -214 -775 0 + -214 -1077 0 + -289 -375 0 + -289 -775 0 + -289 -1077 0 + -375 -775 0 + -375 -1077 0 + -775 -1077 0 + -605 -666 0 + -605 -716 0 + -605 -899 0 + -666 -716 0 + -666 -899 0 + -716 -899 0 + -418 -445 0 + -418 -822 0 + -418 -900 0 + -445 -822 0 + -445 -900 0 + -822 -900 0 + -290 -446 0 + -290 -606 0 + -290 -717 0 + -290 -823 0 + -290 -901 0 + -446 -606 0 + -446 -717 0 + -446 -823 0 + -446 -901 0 + -606 -717 0 + -606 -823 0 + -606 -901 0 + -717 -823 0 + -717 -901 0 + -823 -901 0 + -291 -419 0 + -291 -667 0 + -291 -824 0 + -419 -667 0 + -419 -824 0 + -667 -824 0 + -292 -420 0 + -292 -447 0 + -292 -607 0 + -292 -668 0 + -420 -447 0 + -420 -607 0 + -420 -668 0 + -447 -607 0 + -447 -668 0 + -607 -668 0 + -293 -421 0 + -293 -448 0 + -293 -608 0 + -421 -448 0 + -421 -608 0 + -448 -608 0 + -294 -609 0 + -294 -718 0 + -294 -825 0 + -294 -902 0 + -609 -718 0 + -609 -825 0 + -609 -902 0 + -718 -825 0 + -718 -902 0 + -825 -902 0 + -610 -719 0 + -610 -826 0 + -719 -826 0 + -1 -8 0 + -1 -24 0 + -1 -28 0 + -1 -32 0 + -1 -37 0 + -1 -41 0 + -8 -24 0 + -8 -28 0 + -8 -32 0 + -8 -37 0 + -8 -41 0 + -24 -28 0 + -24 -32 0 + -24 -37 0 + -24 -41 0 + -28 -32 0 + -28 -37 0 + -28 -41 0 + -32 -37 0 + -32 -41 0 + -37 -41 0 + -2 -13 0 + -2 -25 0 + -2 -29 0 + -2 -33 0 + -2 -38 0 + -13 -25 0 + -13 -29 0 + -13 -33 0 + -13 -38 0 + -25 -29 0 + -25 -33 0 + -25 -38 0 + -29 -33 0 + -29 -38 0 + -33 -38 0 + -9 -17 0 + -9 -34 0 + -9 -42 0 + -9 -45 0 + -17 -34 0 + -17 -42 0 + -17 -45 0 + -34 -42 0 + -34 -45 0 + -42 -45 0 + -3 -14 0 + -3 -18 0 + -3 -26 0 + -3 -35 0 + -14 -18 0 + -14 -26 0 + -14 -35 0 + -18 -26 0 + -18 -35 0 + -26 -35 0 + -4 -10 0 + -4 -19 0 + -4 -27 0 + -4 -30 0 + -10 -19 0 + -10 -27 0 + -10 -30 0 + -19 -27 0 + -19 -30 0 + -27 -30 0 + -5 -11 0 + -5 -20 0 + -5 -43 0 + -5 -46 0 + -11 -20 0 + -11 -43 0 + -11 -46 0 + -20 -43 0 + -20 -46 0 + -43 -46 0 + -15 -21 0 + -15 -31 0 + -15 -39 0 + -15 -44 0 + -15 -47 0 + -21 -31 0 + -21 -39 0 + -21 -44 0 + -21 -47 0 + -31 -39 0 + -31 -44 0 + -31 -47 0 + -39 -44 0 + -39 -47 0 + -44 -47 0 + -12 -22 0 + -12 -48 0 + -22 -48 0 + -6 -16 0 + -6 -23 0 + -6 -40 0 + -6 -49 0 + -16 -23 0 + -16 -40 0 + -16 -49 0 + -23 -40 0 + -23 -49 0 + -40 -49 0 + -7 -36 0 + -50 -57 0 + -50 -65 0 + -50 -69 0 + -50 -73 0 + -57 -65 0 + -57 -69 0 + -57 -73 0 + -65 -69 0 + -65 -73 0 + -69 -73 0 + -51 -54 0 + -51 -60 0 + -51 -70 0 + -54 -60 0 + -54 -70 0 + -60 -70 0 + -52 -58 0 + -52 -61 0 + -52 -71 0 + -52 -74 0 + -58 -61 0 + -58 -71 0 + -58 -74 0 + -61 -71 0 + -61 -74 0 + -71 -74 0 + -55 -59 0 + -55 -62 0 + -59 -62 0 + -56 -63 0 + -56 -66 0 + -56 -72 0 + -56 -75 0 + -63 -66 0 + -63 -72 0 + -63 -75 0 + -66 -72 0 + -66 -75 0 + -72 -75 0 + -53 -64 0 + -53 -67 0 + -64 -67 0 + -68 -76 0 + -77 -83 0 + -77 -100 0 + -77 -103 0 + -77 -110 0 + -77 -115 0 + -77 -124 0 + -83 -100 0 + -83 -103 0 + -83 -110 0 + -83 -115 0 + -83 -124 0 + -100 -103 0 + -100 -110 0 + -100 -115 0 + -100 -124 0 + -103 -110 0 + -103 -115 0 + -103 -124 0 + -110 -115 0 + -110 -124 0 + -115 -124 0 + -78 -101 0 + -78 -104 0 + -78 -111 0 + -78 -116 0 + -101 -104 0 + -101 -111 0 + -101 -116 0 + -104 -111 0 + -104 -116 0 + -111 -116 0 + -79 -85 0 + -79 -90 0 + -79 -102 0 + -79 -105 0 + -79 -112 0 + -79 -117 0 + -79 -125 0 + -85 -90 0 + -85 -102 0 + -85 -105 0 + -85 -112 0 + -85 -117 0 + -85 -125 0 + -90 -102 0 + -90 -105 0 + -90 -112 0 + -90 -117 0 + -90 -125 0 + -102 -105 0 + -102 -112 0 + -102 -117 0 + -102 -125 0 + -105 -112 0 + -105 -117 0 + -105 -125 0 + -112 -117 0 + -112 -125 0 + -117 -125 0 + -80 -106 0 + -80 -130 0 + -106 -130 0 + -86 -91 0 + -86 -107 0 + -86 -113 0 + -86 -118 0 + -86 -126 0 + -91 -107 0 + -91 -113 0 + -91 -118 0 + -91 -126 0 + -107 -113 0 + -107 -118 0 + -107 -126 0 + -113 -118 0 + -113 -126 0 + -118 -126 0 + -84 -92 0 + -84 -108 0 + -84 -114 0 + -84 -127 0 + -92 -108 0 + -92 -114 0 + -92 -127 0 + -108 -114 0 + -108 -127 0 + -114 -127 0 + -87 -93 0 + -87 -95 0 + -87 -109 0 + -87 -119 0 + -87 -131 0 + -93 -95 0 + -93 -109 0 + -93 -119 0 + -93 -131 0 + -95 -109 0 + -95 -119 0 + -95 -131 0 + -109 -119 0 + -109 -131 0 + -119 -131 0 + -81 -96 0 + -81 -120 0 + -96 -120 0 + -94 -97 0 + -94 -121 0 + -94 -132 0 + -97 -121 0 + -97 -132 0 + -121 -132 0 + -82 -88 0 + -82 -98 0 + -82 -122 0 + -82 -128 0 + -82 -133 0 + -88 -98 0 + -88 -122 0 + -88 -128 0 + -88 -133 0 + -98 -122 0 + -98 -128 0 + -98 -133 0 + -122 -128 0 + -122 -133 0 + -128 -133 0 + -89 -99 0 + -89 -123 0 + -89 -129 0 + -99 -123 0 + -99 -129 0 + -123 -129 0 + -134 -141 0 + -134 -148 0 + -134 -179 0 + -134 -191 0 + -134 -199 0 + -134 -205 0 + -134 -211 0 + -141 -148 0 + -141 -179 0 + -141 -191 0 + -141 -199 0 + -141 -205 0 + -141 -211 0 + -148 -179 0 + -148 -191 0 + -148 -199 0 + -148 -205 0 + -148 -211 0 + -179 -191 0 + -179 -199 0 + -179 -205 0 + -179 -211 0 + -191 -199 0 + -191 -205 0 + -191 -211 0 + -199 -205 0 + -199 -211 0 + -205 -211 0 + -135 -142 0 + -135 -149 0 + -135 -170 0 + -135 -180 0 + -135 -185 0 + -135 -192 0 + -135 -200 0 + -142 -149 0 + -142 -170 0 + -142 -180 0 + -142 -185 0 + -142 -192 0 + -142 -200 0 + -149 -170 0 + -149 -180 0 + -149 -185 0 + -149 -192 0 + -149 -200 0 + -170 -180 0 + -170 -185 0 + -170 -192 0 + -170 -200 0 + -180 -185 0 + -180 -192 0 + -180 -200 0 + -185 -192 0 + -185 -200 0 + -192 -200 0 + -136 -143 0 + -136 -161 0 + -136 -166 0 + -136 -181 0 + -136 -201 0 + -143 -161 0 + -143 -166 0 + -143 -181 0 + -143 -201 0 + -161 -166 0 + -161 -181 0 + -161 -201 0 + -166 -181 0 + -166 -201 0 + -181 -201 0 + -144 -150 0 + -144 -155 0 + -144 -171 0 + -144 -186 0 + -144 -206 0 + -144 -212 0 + -150 -155 0 + -150 -171 0 + -150 -186 0 + -150 -206 0 + -150 -212 0 + -155 -171 0 + -155 -186 0 + -155 -206 0 + -155 -212 0 + -171 -186 0 + -171 -206 0 + -171 -212 0 + -186 -206 0 + -186 -212 0 + -206 -212 0 + -137 -145 0 + -137 -162 0 + -137 -167 0 + -137 -172 0 + -137 -187 0 + -145 -162 0 + -145 -167 0 + -145 -172 0 + -145 -187 0 + -162 -167 0 + -162 -172 0 + -162 -187 0 + -167 -172 0 + -167 -187 0 + -172 -187 0 + -156 -163 0 + -156 -182 0 + -156 -193 0 + -156 -202 0 + -163 -182 0 + -163 -193 0 + -163 -202 0 + -182 -193 0 + -182 -202 0 + -193 -202 0 + -138 -151 0 + -138 -164 0 + -138 -173 0 + -138 -188 0 + -138 -194 0 + -138 -207 0 + -151 -164 0 + -151 -173 0 + -151 -188 0 + -151 -194 0 + -151 -207 0 + -164 -173 0 + -164 -188 0 + -164 -194 0 + -164 -207 0 + -173 -188 0 + -173 -194 0 + -173 -207 0 + -188 -194 0 + -188 -207 0 + -194 -207 0 + -139 -152 0 + -139 -174 0 + -139 -208 0 + -139 -213 0 + -152 -174 0 + -152 -208 0 + -152 -213 0 + -174 -208 0 + -174 -213 0 + -208 -213 0 + -146 -153 0 + -146 -157 0 + -146 -168 0 + -146 -183 0 + -146 -195 0 + -146 -203 0 + -146 -214 0 + -153 -157 0 + -153 -168 0 + -153 -183 0 + -153 -195 0 + -153 -203 0 + -153 -214 0 + -157 -168 0 + -157 -183 0 + -157 -195 0 + -157 -203 0 + -157 -214 0 + -168 -183 0 + -168 -195 0 + -168 -203 0 + -168 -214 0 + -183 -195 0 + -183 -203 0 + -183 -214 0 + -195 -203 0 + -195 -214 0 + -203 -214 0 + -140 -158 0 + -140 -169 0 + -140 -175 0 + -140 -196 0 + -158 -169 0 + -158 -175 0 + -158 -196 0 + -169 -175 0 + -169 -196 0 + -175 -196 0 + -147 -176 0 + -147 -197 0 + -176 -197 0 + -154 -159 0 + -154 -177 0 + -154 -184 0 + -154 -189 0 + -154 -198 0 + -154 -209 0 + -159 -177 0 + -159 -184 0 + -159 -189 0 + -159 -198 0 + -159 -209 0 + -177 -184 0 + -177 -189 0 + -177 -198 0 + -177 -209 0 + -184 -189 0 + -184 -198 0 + -184 -209 0 + -189 -198 0 + -189 -209 0 + -198 -209 0 + -160 -165 0 + -160 -178 0 + -160 -190 0 + -160 -204 0 + -160 -210 0 + -165 -178 0 + -165 -190 0 + -165 -204 0 + -165 -210 0 + -178 -190 0 + -178 -204 0 + -178 -210 0 + -190 -204 0 + -190 -210 0 + -204 -210 0 + -215 -224 0 + -215 -231 0 + -215 -246 0 + -215 -266 0 + -215 -271 0 + -215 -283 0 + -224 -231 0 + -224 -246 0 + -224 -266 0 + -224 -271 0 + -224 -283 0 + -231 -246 0 + -231 -266 0 + -231 -271 0 + -231 -283 0 + -246 -266 0 + -246 -271 0 + -246 -283 0 + -266 -271 0 + -266 -283 0 + -271 -283 0 + -216 -225 0 + -216 -232 0 + -216 -247 0 + -216 -257 0 + -216 -272 0 + -216 -278 0 + -225 -232 0 + -225 -247 0 + -225 -257 0 + -225 -272 0 + -225 -278 0 + -232 -247 0 + -232 -257 0 + -232 -272 0 + -232 -278 0 + -247 -257 0 + -247 -272 0 + -247 -278 0 + -257 -272 0 + -257 -278 0 + -272 -278 0 + -226 -233 0 + -226 -237 0 + -226 -248 0 + -226 -258 0 + -226 -279 0 + -226 -284 0 + -226 -290 0 + -233 -237 0 + -233 -248 0 + -233 -258 0 + -233 -279 0 + -233 -284 0 + -233 -290 0 + -237 -248 0 + -237 -258 0 + -237 -279 0 + -237 -284 0 + -237 -290 0 + -248 -258 0 + -248 -279 0 + -248 -284 0 + -248 -290 0 + -258 -279 0 + -258 -284 0 + -258 -290 0 + -279 -284 0 + -279 -290 0 + -284 -290 0 + -217 -227 0 + -217 -252 0 + -217 -259 0 + -217 -267 0 + -217 -291 0 + -227 -252 0 + -227 -259 0 + -227 -267 0 + -227 -291 0 + -252 -259 0 + -252 -267 0 + -252 -291 0 + -259 -267 0 + -259 -291 0 + -267 -291 0 + -218 -228 0 + -218 -249 0 + -218 -260 0 + -218 -268 0 + -218 -273 0 + -218 -285 0 + -228 -249 0 + -228 -260 0 + -228 -268 0 + -228 -273 0 + -228 -285 0 + -249 -260 0 + -249 -268 0 + -249 -273 0 + -249 -285 0 + -260 -268 0 + -260 -273 0 + -260 -285 0 + -268 -273 0 + -268 -285 0 + -273 -285 0 + -261 -269 0 + -261 -286 0 + -261 -292 0 + -269 -286 0 + -269 -292 0 + -286 -292 0 + -219 -241 0 + -219 -250 0 + -219 -253 0 + -219 -280 0 + -219 -287 0 + -241 -250 0 + -241 -253 0 + -241 -280 0 + -241 -287 0 + -250 -253 0 + -250 -280 0 + -250 -287 0 + -253 -280 0 + -253 -287 0 + -280 -287 0 + -220 -234 0 + -220 -242 0 + -220 -262 0 + -220 -270 0 + -220 -274 0 + -234 -242 0 + -234 -262 0 + -234 -270 0 + -234 -274 0 + -242 -262 0 + -242 -270 0 + -242 -274 0 + -262 -270 0 + -262 -274 0 + -270 -274 0 + -221 -235 0 + -221 -243 0 + -221 -251 0 + -221 -263 0 + -221 -281 0 + -221 -288 0 + -221 -293 0 + -235 -243 0 + -235 -251 0 + -235 -263 0 + -235 -281 0 + -235 -288 0 + -235 -293 0 + -243 -251 0 + -243 -263 0 + -243 -281 0 + -243 -288 0 + -243 -293 0 + -251 -263 0 + -251 -281 0 + -251 -288 0 + -251 -293 0 + -263 -281 0 + -263 -288 0 + -263 -293 0 + -281 -288 0 + -281 -293 0 + -288 -293 0 + -229 -236 0 + -229 -238 0 + -229 -254 0 + -229 -275 0 + -229 -289 0 + -229 -294 0 + -236 -238 0 + -236 -254 0 + -236 -275 0 + -236 -289 0 + -236 -294 0 + -238 -254 0 + -238 -275 0 + -238 -289 0 + -238 -294 0 + -254 -275 0 + -254 -289 0 + -254 -294 0 + -275 -289 0 + -275 -294 0 + -289 -294 0 + -244 -255 0 + -244 -264 0 + -244 -282 0 + -255 -264 0 + -255 -282 0 + -264 -282 0 + -222 -239 0 + -222 -256 0 + -222 -265 0 + -222 -276 0 + -239 -256 0 + -239 -265 0 + -239 -276 0 + -256 -265 0 + -256 -276 0 + -265 -276 0 + -223 -230 0 + -223 -240 0 + -223 -245 0 + -223 -277 0 + -230 -240 0 + -230 -245 0 + -230 -277 0 + -240 -245 0 + -240 -277 0 + -245 -277 0 + -295 -306 0 + -295 -324 0 + -295 -346 0 + -295 -352 0 + -295 -359 0 + -306 -324 0 + -306 -346 0 + -306 -352 0 + -306 -359 0 + -324 -346 0 + -324 -352 0 + -324 -359 0 + -346 -352 0 + -346 -359 0 + -352 -359 0 + -301 -307 0 + -301 -325 0 + -301 -330 0 + -301 -339 0 + -301 -353 0 + -301 -364 0 + -301 -371 0 + -307 -325 0 + -307 -330 0 + -307 -339 0 + -307 -353 0 + -307 -364 0 + -307 -371 0 + -325 -330 0 + -325 -339 0 + -325 -353 0 + -325 -364 0 + -325 -371 0 + -330 -339 0 + -330 -353 0 + -330 -364 0 + -330 -371 0 + -339 -353 0 + -339 -364 0 + -339 -371 0 + -353 -364 0 + -353 -371 0 + -364 -371 0 + -296 -313 0 + -296 -331 0 + -296 -340 0 + -296 -347 0 + -296 -354 0 + -313 -331 0 + -313 -340 0 + -313 -347 0 + -313 -354 0 + -331 -340 0 + -331 -347 0 + -331 -354 0 + -340 -347 0 + -340 -354 0 + -347 -354 0 + -297 -326 0 + -297 -332 0 + -297 -341 0 + -297 -348 0 + -297 -372 0 + -326 -332 0 + -326 -341 0 + -326 -348 0 + -326 -372 0 + -332 -341 0 + -332 -348 0 + -332 -372 0 + -341 -348 0 + -341 -372 0 + -348 -372 0 + -314 -342 0 + -314 -349 0 + -314 -360 0 + -314 -365 0 + -314 -373 0 + -342 -349 0 + -342 -360 0 + -342 -365 0 + -342 -373 0 + -349 -360 0 + -349 -365 0 + -349 -373 0 + -360 -365 0 + -360 -373 0 + -365 -373 0 + -298 -318 0 + -298 -327 0 + -298 -366 0 + -298 -374 0 + -318 -327 0 + -318 -366 0 + -318 -374 0 + -327 -366 0 + -327 -374 0 + -366 -374 0 + -308 -315 0 + -308 -319 0 + -308 -328 0 + -308 -333 0 + -308 -355 0 + -308 -361 0 + -315 -319 0 + -315 -328 0 + -315 -333 0 + -315 -355 0 + -315 -361 0 + -319 -328 0 + -319 -333 0 + -319 -355 0 + -319 -361 0 + -328 -333 0 + -328 -355 0 + -328 -361 0 + -333 -355 0 + -333 -361 0 + -355 -361 0 + -299 -302 0 + -299 -316 0 + -299 -320 0 + -299 -343 0 + -299 -350 0 + -299 -362 0 + -299 -367 0 + -302 -316 0 + -302 -320 0 + -302 -343 0 + -302 -350 0 + -302 -362 0 + -302 -367 0 + -316 -320 0 + -316 -343 0 + -316 -350 0 + -316 -362 0 + -316 -367 0 + -320 -343 0 + -320 -350 0 + -320 -362 0 + -320 -367 0 + -343 -350 0 + -343 -362 0 + -343 -367 0 + -350 -362 0 + -350 -367 0 + -362 -367 0 + -303 -309 0 + -303 -317 0 + -303 -321 0 + -303 -329 0 + -303 -334 0 + -303 -356 0 + -303 -368 0 + -309 -317 0 + -309 -321 0 + -309 -329 0 + -309 -334 0 + -309 -356 0 + -309 -368 0 + -317 -321 0 + -317 -329 0 + -317 -334 0 + -317 -356 0 + -317 -368 0 + -321 -329 0 + -321 -334 0 + -321 -356 0 + -321 -368 0 + -329 -334 0 + -329 -356 0 + -329 -368 0 + -334 -356 0 + -334 -368 0 + -356 -368 0 + -304 -310 0 + -304 -335 0 + -304 -357 0 + -304 -375 0 + -310 -335 0 + -310 -357 0 + -310 -375 0 + -335 -357 0 + -335 -375 0 + -357 -375 0 + -305 -311 0 + -305 -322 0 + -305 -336 0 + -305 -344 0 + -305 -351 0 + -305 -369 0 + -311 -322 0 + -311 -336 0 + -311 -344 0 + -311 -351 0 + -311 -369 0 + -322 -336 0 + -322 -344 0 + -322 -351 0 + -322 -369 0 + -336 -344 0 + -336 -351 0 + -336 -369 0 + -344 -351 0 + -344 -369 0 + -351 -369 0 + -337 -345 0 + -337 -363 0 + -337 -370 0 + -345 -363 0 + -345 -370 0 + -363 -370 0 + -300 -312 0 + -300 -323 0 + -300 -338 0 + -300 -358 0 + -312 -323 0 + -312 -338 0 + -312 -358 0 + -323 -338 0 + -323 -358 0 + -338 -358 0 + -376 -385 0 + -376 -392 0 + -376 -396 0 + -376 -406 0 + -376 -410 0 + -376 -418 0 + -385 -392 0 + -385 -396 0 + -385 -406 0 + -385 -410 0 + -385 -418 0 + -392 -396 0 + -392 -406 0 + -392 -410 0 + -392 -418 0 + -396 -406 0 + -396 -410 0 + -396 -418 0 + -406 -410 0 + -406 -418 0 + -410 -418 0 + -377 -393 0 + -377 -397 0 + -377 -419 0 + -393 -397 0 + -393 -419 0 + -397 -419 0 + -378 -398 0 + -378 -402 0 + -378 -414 0 + -398 -402 0 + -398 -414 0 + -402 -414 0 + -407 -411 0 + -407 -415 0 + -407 -420 0 + -411 -415 0 + -411 -420 0 + -415 -420 0 + -379 -386 0 + -379 -394 0 + -379 -416 0 + -386 -394 0 + -386 -416 0 + -394 -416 0 + -382 -387 0 + -382 -399 0 + -382 -403 0 + -382 -408 0 + -382 -412 0 + -387 -399 0 + -387 -403 0 + -387 -408 0 + -387 -412 0 + -399 -403 0 + -399 -408 0 + -399 -412 0 + -403 -408 0 + -403 -412 0 + -408 -412 0 + -380 -388 0 + -380 -404 0 + -380 -409 0 + -388 -404 0 + -388 -409 0 + -404 -409 0 + -383 -389 0 + -383 -395 0 + -383 -400 0 + -383 -413 0 + -389 -395 0 + -389 -400 0 + -389 -413 0 + -395 -400 0 + -395 -413 0 + -400 -413 0 + -381 -390 0 + -381 -417 0 + -381 -421 0 + -390 -417 0 + -390 -421 0 + -417 -421 0 + -384 -391 0 + -384 -401 0 + -384 -405 0 + -391 -401 0 + -391 -405 0 + -401 -405 0 + -422 -425 0 + -422 -430 0 + -422 -433 0 + -422 -437 0 + -422 -445 0 + -425 -430 0 + -425 -433 0 + -425 -437 0 + -425 -445 0 + -430 -433 0 + -430 -437 0 + -430 -445 0 + -433 -437 0 + -433 -445 0 + -437 -445 0 + -423 -434 0 + -423 -441 0 + -423 -446 0 + -434 -441 0 + -434 -446 0 + -441 -446 0 + -438 -442 0 + -438 -447 0 + -442 -447 0 + -426 -443 0 + -426 -448 0 + -443 -448 0 + -427 -431 0 + -427 -435 0 + -427 -439 0 + -427 -444 0 + -431 -435 0 + -431 -439 0 + -431 -444 0 + -435 -439 0 + -435 -444 0 + -439 -444 0 + -428 -432 0 + -428 -440 0 + -432 -440 0 + -424 -429 0 + -424 -436 0 + -429 -436 0 + -470 -482 0 + -470 -486 0 + -470 -492 0 + -470 -497 0 + -482 -486 0 + -482 -492 0 + -482 -497 0 + -486 -492 0 + -486 -497 0 + -492 -497 0 + -465 -471 0 + -465 -478 0 + -465 -483 0 + -465 -498 0 + -471 -478 0 + -471 -483 0 + -471 -498 0 + -478 -483 0 + -478 -498 0 + -483 -498 0 + -449 -455 0 + -449 -460 0 + -449 -472 0 + -449 -487 0 + -455 -460 0 + -455 -472 0 + -455 -487 0 + -460 -472 0 + -460 -487 0 + -472 -487 0 + -461 -466 0 + -461 -473 0 + -461 -484 0 + -461 -499 0 + -466 -473 0 + -466 -484 0 + -466 -499 0 + -473 -484 0 + -473 -499 0 + -484 -499 0 + -467 -474 0 + -467 -479 0 + -467 -488 0 + -467 -493 0 + -474 -479 0 + -474 -488 0 + -474 -493 0 + -479 -488 0 + -479 -493 0 + -488 -493 0 + -450 -456 0 + -450 -475 0 + -450 -480 0 + -450 -494 0 + -450 -500 0 + -456 -475 0 + -456 -480 0 + -456 -494 0 + -456 -500 0 + -475 -480 0 + -475 -494 0 + -475 -500 0 + -480 -494 0 + -480 -500 0 + -494 -500 0 + -451 -462 0 + -451 -476 0 + -451 -485 0 + -451 -489 0 + -451 -501 0 + -462 -476 0 + -462 -485 0 + -462 -489 0 + -462 -501 0 + -476 -485 0 + -476 -489 0 + -476 -501 0 + -485 -489 0 + -485 -501 0 + -489 -501 0 + -452 -457 0 + -452 -463 0 + -452 -495 0 + -452 -502 0 + -457 -463 0 + -457 -495 0 + -457 -502 0 + -463 -495 0 + -463 -502 0 + -495 -502 0 + -453 -458 0 + -453 -464 0 + -453 -468 0 + -453 -477 0 + -453 -481 0 + -453 -490 0 + -453 -496 0 + -453 -503 0 + -458 -464 0 + -458 -468 0 + -458 -477 0 + -458 -481 0 + -458 -490 0 + -458 -496 0 + -458 -503 0 + -464 -468 0 + -464 -477 0 + -464 -481 0 + -464 -490 0 + -464 -496 0 + -464 -503 0 + -468 -477 0 + -468 -481 0 + -468 -490 0 + -468 -496 0 + -468 -503 0 + -477 -481 0 + -477 -490 0 + -477 -496 0 + -477 -503 0 + -481 -490 0 + -481 -496 0 + -481 -503 0 + -490 -496 0 + -490 -503 0 + -496 -503 0 + -454 -459 0 + -454 -469 0 + -454 -491 0 + -459 -469 0 + -459 -491 0 + -469 -491 0 + -504 -522 0 + -504 -536 0 + -504 -542 0 + -504 -553 0 + -504 -558 0 + -504 -565 0 + -522 -536 0 + -522 -542 0 + -522 -553 0 + -522 -558 0 + -522 -565 0 + -536 -542 0 + -536 -553 0 + -536 -558 0 + -536 -565 0 + -542 -553 0 + -542 -558 0 + -542 -565 0 + -553 -558 0 + -553 -565 0 + -558 -565 0 + -505 -523 0 + -505 -529 0 + -505 -537 0 + -505 -548 0 + -505 -554 0 + -505 -566 0 + -505 -569 0 + -523 -529 0 + -523 -537 0 + -523 -548 0 + -523 -554 0 + -523 -566 0 + -523 -569 0 + -529 -537 0 + -529 -548 0 + -529 -554 0 + -529 -566 0 + -529 -569 0 + -537 -548 0 + -537 -554 0 + -537 -566 0 + -537 -569 0 + -548 -554 0 + -548 -566 0 + -548 -569 0 + -554 -566 0 + -554 -569 0 + -566 -569 0 + -506 -515 0 + -506 -538 0 + -506 -543 0 + -515 -538 0 + -515 -543 0 + -538 -543 0 + -507 -509 0 + -507 -524 0 + -507 -530 0 + -507 -544 0 + -507 -549 0 + -507 -559 0 + -507 -570 0 + -509 -524 0 + -509 -530 0 + -509 -544 0 + -509 -549 0 + -509 -559 0 + -509 -570 0 + -524 -530 0 + -524 -544 0 + -524 -549 0 + -524 -559 0 + -524 -570 0 + -530 -544 0 + -530 -549 0 + -530 -559 0 + -530 -570 0 + -544 -549 0 + -544 -559 0 + -544 -570 0 + -549 -559 0 + -549 -570 0 + -559 -570 0 + -531 -539 0 + -531 -550 0 + -531 -560 0 + -539 -550 0 + -539 -560 0 + -550 -560 0 + -510 -516 0 + -510 -525 0 + -510 -540 0 + -510 -545 0 + -510 -555 0 + -510 -567 0 + -516 -525 0 + -516 -540 0 + -516 -545 0 + -516 -555 0 + -516 -567 0 + -525 -540 0 + -525 -545 0 + -525 -555 0 + -525 -567 0 + -540 -545 0 + -540 -555 0 + -540 -567 0 + -545 -555 0 + -545 -567 0 + -555 -567 0 + -511 -517 0 + -511 -526 0 + -511 -546 0 + -511 -561 0 + -511 -568 0 + -517 -526 0 + -517 -546 0 + -517 -561 0 + -517 -568 0 + -526 -546 0 + -526 -561 0 + -526 -568 0 + -546 -561 0 + -546 -568 0 + -561 -568 0 + -518 -527 0 + -518 -532 0 + -518 -562 0 + -518 -571 0 + -527 -532 0 + -527 -562 0 + -527 -571 0 + -532 -562 0 + -532 -571 0 + -562 -571 0 + -512 -519 0 + -512 -533 0 + -512 -541 0 + -512 -551 0 + -512 -556 0 + -512 -563 0 + -512 -572 0 + -519 -533 0 + -519 -541 0 + -519 -551 0 + -519 -556 0 + -519 -563 0 + -519 -572 0 + -533 -541 0 + -533 -551 0 + -533 -556 0 + -533 -563 0 + -533 -572 0 + -541 -551 0 + -541 -556 0 + -541 -563 0 + -541 -572 0 + -551 -556 0 + -551 -563 0 + -551 -572 0 + -556 -563 0 + -556 -572 0 + -563 -572 0 + -520 -534 0 + -520 -573 0 + -534 -573 0 + -513 -528 0 + -513 -535 0 + -513 -552 0 + -513 -564 0 + -528 -535 0 + -528 -552 0 + -528 -564 0 + -535 -552 0 + -535 -564 0 + -552 -564 0 + -508 -514 0 + -508 -521 0 + -508 -547 0 + -508 -557 0 + -514 -521 0 + -514 -547 0 + -514 -557 0 + -521 -547 0 + -521 -557 0 + -547 -557 0 + -574 -590 0 + -574 -593 0 + -574 -598 0 + -590 -593 0 + -590 -598 0 + -593 -598 0 + -578 -585 0 + -578 -594 0 + -578 -605 0 + -585 -594 0 + -585 -605 0 + -594 -605 0 + -575 -579 0 + -575 -586 0 + -575 -602 0 + -575 -606 0 + -579 -586 0 + -579 -602 0 + -579 -606 0 + -586 -602 0 + -586 -606 0 + -602 -606 0 + -591 -599 0 + -582 -587 0 + -582 -595 0 + -582 -607 0 + -587 -595 0 + -587 -607 0 + -595 -607 0 + -576 -603 0 + -576 -608 0 + -603 -608 0 + -577 -580 0 + -577 -592 0 + -577 -600 0 + -577 -609 0 + -580 -592 0 + -580 -600 0 + -580 -609 0 + -592 -600 0 + -592 -609 0 + -600 -609 0 + -583 -588 0 + -583 -596 0 + -583 -601 0 + -583 -604 0 + -588 -596 0 + -588 -601 0 + -588 -604 0 + -596 -601 0 + -596 -604 0 + -601 -604 0 + -581 -584 0 + -581 -589 0 + -581 -597 0 + -581 -610 0 + -584 -589 0 + -584 -597 0 + -584 -610 0 + -589 -597 0 + -589 -610 0 + -597 -610 0 + -611 -626 0 + -611 -645 0 + -611 -650 0 + -611 -657 0 + -611 -661 0 + -626 -645 0 + -626 -650 0 + -626 -657 0 + -626 -661 0 + -645 -650 0 + -645 -657 0 + -645 -661 0 + -650 -657 0 + -650 -661 0 + -657 -661 0 + -612 -627 0 + -612 -638 0 + -612 -651 0 + -612 -658 0 + -612 -662 0 + -627 -638 0 + -627 -651 0 + -627 -658 0 + -627 -662 0 + -638 -651 0 + -638 -658 0 + -638 -662 0 + -651 -658 0 + -651 -662 0 + -658 -662 0 + -613 -618 0 + -613 -628 0 + -613 -646 0 + -613 -666 0 + -618 -628 0 + -618 -646 0 + -618 -666 0 + -628 -646 0 + -628 -666 0 + -646 -666 0 + -614 -632 0 + -614 -639 0 + -614 -647 0 + -614 -667 0 + -632 -639 0 + -632 -647 0 + -632 -667 0 + -639 -647 0 + -639 -667 0 + -647 -667 0 + -615 -629 0 + -615 -633 0 + -615 -640 0 + -615 -652 0 + -615 -663 0 + -629 -633 0 + -629 -640 0 + -629 -652 0 + -629 -663 0 + -633 -640 0 + -633 -652 0 + -633 -663 0 + -640 -652 0 + -640 -663 0 + -652 -663 0 + -641 -659 0 + -641 -668 0 + -659 -668 0 + -616 -622 0 + -616 -642 0 + -616 -653 0 + -616 -664 0 + -622 -642 0 + -622 -653 0 + -622 -664 0 + -642 -653 0 + -642 -664 0 + -653 -664 0 + -619 -623 0 + -619 -630 0 + -619 -634 0 + -619 -648 0 + -619 -660 0 + -619 -665 0 + -623 -630 0 + -623 -634 0 + -623 -648 0 + -623 -660 0 + -623 -665 0 + -630 -634 0 + -630 -648 0 + -630 -660 0 + -630 -665 0 + -634 -648 0 + -634 -660 0 + -634 -665 0 + -648 -660 0 + -648 -665 0 + -660 -665 0 + -631 -635 0 + -631 -643 0 + -631 -654 0 + -635 -643 0 + -635 -654 0 + -643 -654 0 + -620 -624 0 + -620 -636 0 + -620 -644 0 + -620 -655 0 + -624 -636 0 + -624 -644 0 + -624 -655 0 + -636 -644 0 + -636 -655 0 + -644 -655 0 + -617 -621 0 + -617 -625 0 + -617 -637 0 + -617 -649 0 + -617 -656 0 + -621 -625 0 + -621 -637 0 + -621 -649 0 + -621 -656 0 + -625 -637 0 + -625 -649 0 + -625 -656 0 + -637 -649 0 + -637 -656 0 + -649 -656 0 + -669 -674 0 + -670 -672 0 + -670 -676 0 + -672 -676 0 + -673 -677 0 + -671 -675 0 + -671 -678 0 + -675 -678 0 + -679 -686 0 + -679 -692 0 + -679 -700 0 + -679 -706 0 + -686 -692 0 + -686 -700 0 + -686 -706 0 + -692 -700 0 + -692 -706 0 + -700 -706 0 + -693 -696 0 + -693 -701 0 + -693 -716 0 + -696 -701 0 + -696 -716 0 + -701 -716 0 + -680 -687 0 + -680 -697 0 + -680 -702 0 + -680 -711 0 + -680 -717 0 + -687 -697 0 + -687 -702 0 + -687 -711 0 + -687 -717 0 + -697 -702 0 + -697 -711 0 + -697 -717 0 + -702 -711 0 + -702 -717 0 + -711 -717 0 + -682 -688 0 + -682 -703 0 + -682 -712 0 + -688 -703 0 + -688 -712 0 + -703 -712 0 + -683 -698 0 + -683 -707 0 + -683 -713 0 + -698 -707 0 + -698 -713 0 + -707 -713 0 + -681 -694 0 + -681 -699 0 + -681 -708 0 + -681 -718 0 + -694 -699 0 + -694 -708 0 + -694 -718 0 + -699 -708 0 + -699 -718 0 + -708 -718 0 + -689 -695 0 + -689 -704 0 + -689 -714 0 + -695 -704 0 + -695 -714 0 + -704 -714 0 + -684 -690 0 + -684 -709 0 + -690 -709 0 + -685 -691 0 + -685 -705 0 + -685 -710 0 + -685 -715 0 + -685 -719 0 + -691 -705 0 + -691 -710 0 + -691 -715 0 + -691 -719 0 + -705 -710 0 + -705 -715 0 + -705 -719 0 + -710 -715 0 + -710 -719 0 + -715 -719 0 + -720 -737 0 + -720 -743 0 + -720 -754 0 + -720 -761 0 + -720 -766 0 + -720 -773 0 + -737 -743 0 + -737 -754 0 + -737 -761 0 + -737 -766 0 + -737 -773 0 + -743 -754 0 + -743 -761 0 + -743 -766 0 + -743 -773 0 + -754 -761 0 + -754 -766 0 + -754 -773 0 + -761 -766 0 + -761 -773 0 + -766 -773 0 + -721 -731 0 + -721 -738 0 + -721 -749 0 + -721 -755 0 + -721 -771 0 + -731 -738 0 + -731 -749 0 + -731 -755 0 + -731 -771 0 + -738 -749 0 + -738 -755 0 + -738 -771 0 + -749 -755 0 + -749 -771 0 + -755 -771 0 + -726 -739 0 + -726 -744 0 + -726 -762 0 + -739 -744 0 + -739 -762 0 + -744 -762 0 + -727 -732 0 + -727 -745 0 + -727 -750 0 + -732 -745 0 + -732 -750 0 + -745 -750 0 + -728 -733 0 + -728 -740 0 + -728 -751 0 + -728 -763 0 + -728 -767 0 + -728 -774 0 + -733 -740 0 + -733 -751 0 + -733 -763 0 + -733 -767 0 + -733 -774 0 + -740 -751 0 + -740 -763 0 + -740 -767 0 + -740 -774 0 + -751 -763 0 + -751 -767 0 + -751 -774 0 + -763 -767 0 + -763 -774 0 + -767 -774 0 + -722 -729 0 + -722 -734 0 + -722 -752 0 + -722 -756 0 + -722 -764 0 + -722 -768 0 + -729 -734 0 + -729 -752 0 + -729 -756 0 + -729 -764 0 + -729 -768 0 + -734 -752 0 + -734 -756 0 + -734 -764 0 + -734 -768 0 + -752 -756 0 + -752 -764 0 + -752 -768 0 + -756 -764 0 + -756 -768 0 + -764 -768 0 + -723 -730 0 + -723 -746 0 + -723 -769 0 + -730 -746 0 + -730 -769 0 + -746 -769 0 + -724 -741 0 + -724 -747 0 + -724 -757 0 + -724 -775 0 + -741 -747 0 + -741 -757 0 + -741 -775 0 + -747 -757 0 + -747 -775 0 + -757 -775 0 + -735 -758 0 + -735 -765 0 + -758 -765 0 + -725 -736 0 + -725 -742 0 + -725 -753 0 + -725 -759 0 + -725 -770 0 + -725 -772 0 + -736 -742 0 + -736 -753 0 + -736 -759 0 + -736 -770 0 + -736 -772 0 + -742 -753 0 + -742 -759 0 + -742 -770 0 + -742 -772 0 + -753 -759 0 + -753 -770 0 + -753 -772 0 + -759 -770 0 + -759 -772 0 + -770 -772 0 + -748 -760 0 + -776 -787 0 + -776 -798 0 + -776 -803 0 + -776 -809 0 + -776 -818 0 + -787 -798 0 + -787 -803 0 + -787 -809 0 + -787 -818 0 + -798 -803 0 + -798 -809 0 + -798 -818 0 + -803 -809 0 + -803 -818 0 + -809 -818 0 + -777 -791 0 + -777 -799 0 + -777 -810 0 + -777 -822 0 + -791 -799 0 + -791 -810 0 + -791 -822 0 + -799 -810 0 + -799 -822 0 + -810 -822 0 + -778 -781 0 + -778 -788 0 + -778 -792 0 + -778 -814 0 + -778 -819 0 + -778 -823 0 + -781 -788 0 + -781 -792 0 + -781 -814 0 + -781 -819 0 + -781 -823 0 + -788 -792 0 + -788 -814 0 + -788 -819 0 + -788 -823 0 + -792 -814 0 + -792 -819 0 + -792 -823 0 + -814 -819 0 + -814 -823 0 + -819 -823 0 + -779 -793 0 + -779 -824 0 + -793 -824 0 + -782 -789 0 + -782 -794 0 + -782 -800 0 + -782 -804 0 + -782 -811 0 + -789 -794 0 + -789 -800 0 + -789 -804 0 + -789 -811 0 + -794 -800 0 + -794 -804 0 + -794 -811 0 + -800 -804 0 + -800 -811 0 + -804 -811 0 + -780 -783 0 + -780 -795 0 + -780 -801 0 + -780 -805 0 + -780 -812 0 + -780 -825 0 + -783 -795 0 + -783 -801 0 + -783 -805 0 + -783 -812 0 + -783 -825 0 + -795 -801 0 + -795 -805 0 + -795 -812 0 + -795 -825 0 + -801 -805 0 + -801 -812 0 + -801 -825 0 + -805 -812 0 + -805 -825 0 + -812 -825 0 + -784 -806 0 + -785 -796 0 + -785 -802 0 + -785 -807 0 + -785 -815 0 + -785 -820 0 + -796 -802 0 + -796 -807 0 + -796 -815 0 + -796 -820 0 + -802 -807 0 + -802 -815 0 + -802 -820 0 + -807 -815 0 + -807 -820 0 + -815 -820 0 + -797 -808 0 + -797 -816 0 + -797 -821 0 + -808 -816 0 + -808 -821 0 + -816 -821 0 + -786 -790 0 + -786 -813 0 + -786 -817 0 + -786 -826 0 + -790 -813 0 + -790 -817 0 + -790 -826 0 + -813 -817 0 + -813 -826 0 + -817 -826 0 + -827 -830 0 + -827 -849 0 + -827 -852 0 + -827 -858 0 + -830 -849 0 + -830 -852 0 + -830 -858 0 + -849 -852 0 + -849 -858 0 + -852 -858 0 + -831 -833 0 + -831 -836 0 + -831 -842 0 + -831 -862 0 + -833 -836 0 + -833 -842 0 + -833 -862 0 + -836 -842 0 + -836 -862 0 + -842 -862 0 + -834 -837 0 + -834 -853 0 + -834 -859 0 + -837 -853 0 + -837 -859 0 + -853 -859 0 + -828 -843 0 + -828 -850 0 + -828 -854 0 + -828 -860 0 + -843 -850 0 + -843 -854 0 + -843 -860 0 + -850 -854 0 + -850 -860 0 + -854 -860 0 + -838 -844 0 + -838 -855 0 + -838 -861 0 + -838 -863 0 + -844 -855 0 + -844 -861 0 + -844 -863 0 + -855 -861 0 + -855 -863 0 + -861 -863 0 + -832 -839 0 + -832 -845 0 + -832 -864 0 + -839 -845 0 + -839 -864 0 + -845 -864 0 + -835 -840 0 + -835 -846 0 + -835 -851 0 + -835 -865 0 + -840 -846 0 + -840 -851 0 + -840 -865 0 + -846 -851 0 + -846 -865 0 + -851 -865 0 + -841 -847 0 + -841 -856 0 + -841 -866 0 + -847 -856 0 + -847 -866 0 + -856 -866 0 + -829 -848 0 + -829 -857 0 + -829 -867 0 + -848 -857 0 + -848 -867 0 + -857 -867 0 + -868 -880 0 + -868 -890 0 + -868 -895 0 + -880 -890 0 + -880 -895 0 + -890 -895 0 + -869 -881 0 + -869 -885 0 + -869 -899 0 + -881 -885 0 + -881 -899 0 + -885 -899 0 + -870 -872 0 + -870 -875 0 + -870 -882 0 + -870 -886 0 + -870 -900 0 + -872 -875 0 + -872 -882 0 + -872 -886 0 + -872 -900 0 + -875 -882 0 + -875 -886 0 + -875 -900 0 + -882 -886 0 + -882 -900 0 + -886 -900 0 + -876 -887 0 + -876 -901 0 + -887 -901 0 + -873 -877 0 + -873 -883 0 + -873 -888 0 + -873 -891 0 + -873 -896 0 + -877 -883 0 + -877 -888 0 + -877 -891 0 + -877 -896 0 + -883 -888 0 + -883 -891 0 + -883 -896 0 + -888 -891 0 + -888 -896 0 + -891 -896 0 + -871 -874 0 + -871 -892 0 + -871 -897 0 + -874 -892 0 + -874 -897 0 + -892 -897 0 + -878 -884 0 + -878 -889 0 + -878 -893 0 + -878 -898 0 + -878 -902 0 + -884 -889 0 + -884 -893 0 + -884 -898 0 + -884 -902 0 + -889 -893 0 + -889 -898 0 + -889 -902 0 + -893 -898 0 + -893 -902 0 + -898 -902 0 + -879 -894 0 + -903 -910 0 + -903 -917 0 + -903 -926 0 + -903 -930 0 + -903 -933 0 + -910 -917 0 + -910 -926 0 + -910 -930 0 + -910 -933 0 + -917 -926 0 + -917 -930 0 + -917 -933 0 + -926 -930 0 + -926 -933 0 + -930 -933 0 + -904 -911 0 + -904 -918 0 + -904 -922 0 + -904 -934 0 + -911 -918 0 + -911 -922 0 + -911 -934 0 + -918 -922 0 + -918 -934 0 + -922 -934 0 + -905 -919 0 + -905 -923 0 + -905 -927 0 + -919 -923 0 + -919 -927 0 + -923 -927 0 + -906 -912 0 + -906 -914 0 + -906 -924 0 + -912 -914 0 + -912 -924 0 + -914 -924 0 + -907 -913 0 + -907 -915 0 + -907 -920 0 + -907 -935 0 + -913 -915 0 + -913 -920 0 + -913 -935 0 + -915 -920 0 + -915 -935 0 + -920 -935 0 + -916 -921 0 + -916 -928 0 + -916 -936 0 + -921 -928 0 + -921 -936 0 + -928 -936 0 + -908 -925 0 + -908 -929 0 + -908 -931 0 + -908 -937 0 + -925 -929 0 + -925 -931 0 + -925 -937 0 + -929 -931 0 + -929 -937 0 + -931 -937 0 + -909 -932 0 + -938 -944 0 + -938 -947 0 + -938 -952 0 + -938 -970 0 + -938 -974 0 + -938 -983 0 + -938 -988 0 + -944 -947 0 + -944 -952 0 + -944 -970 0 + -944 -974 0 + -944 -983 0 + -944 -988 0 + -947 -952 0 + -947 -970 0 + -947 -974 0 + -947 -983 0 + -947 -988 0 + -952 -970 0 + -952 -974 0 + -952 -983 0 + -952 -988 0 + -970 -974 0 + -970 -983 0 + -970 -988 0 + -974 -983 0 + -974 -988 0 + -983 -988 0 + -939 -953 0 + -939 -971 0 + -939 -975 0 + -939 -978 0 + -939 -984 0 + -953 -971 0 + -953 -975 0 + -953 -978 0 + -953 -984 0 + -971 -975 0 + -971 -978 0 + -971 -984 0 + -975 -978 0 + -975 -984 0 + -978 -984 0 + -940 -945 0 + -940 -954 0 + -940 -959 0 + -940 -964 0 + -940 -972 0 + -945 -954 0 + -945 -959 0 + -945 -964 0 + -945 -972 0 + -954 -959 0 + -954 -964 0 + -954 -972 0 + -959 -964 0 + -959 -972 0 + -964 -972 0 + -941 -955 0 + -941 -979 0 + -955 -979 0 + -948 -956 0 + -948 -960 0 + -948 -976 0 + -948 -989 0 + -956 -960 0 + -956 -976 0 + -956 -989 0 + -960 -976 0 + -960 -989 0 + -976 -989 0 + -942 -949 0 + -942 -957 0 + -942 -965 0 + -949 -957 0 + -949 -965 0 + -957 -965 0 + -946 -950 0 + -946 -961 0 + -946 -977 0 + -946 -990 0 + -950 -961 0 + -950 -977 0 + -950 -990 0 + -961 -977 0 + -961 -990 0 + -977 -990 0 + -962 -966 0 + -962 -980 0 + -962 -985 0 + -966 -980 0 + -966 -985 0 + -980 -985 0 + -951 -963 0 + -951 -967 0 + -951 -973 0 + -951 -981 0 + -963 -967 0 + -963 -973 0 + -963 -981 0 + -967 -973 0 + -967 -981 0 + -973 -981 0 + -943 -968 0 + -943 -986 0 + -943 -991 0 + -968 -986 0 + -968 -991 0 + -986 -991 0 + -958 -969 0 + -958 -982 0 + -958 -987 0 + -958 -992 0 + -969 -982 0 + -969 -987 0 + -969 -992 0 + -982 -987 0 + -982 -992 0 + -987 -992 0 + -1001 -1013 0 + -993 -997 0 + -993 -1014 0 + -993 -1022 0 + -997 -1014 0 + -997 -1022 0 + -1014 -1022 0 + -994 -1006 0 + -994 -1015 0 + -1006 -1015 0 + -1002 -1007 0 + -1002 -1016 0 + -1002 -1018 0 + -1002 -1029 0 + -1002 -1032 0 + -1007 -1016 0 + -1007 -1018 0 + -1007 -1029 0 + -1007 -1032 0 + -1016 -1018 0 + -1016 -1029 0 + -1016 -1032 0 + -1018 -1029 0 + -1018 -1032 0 + -1029 -1032 0 + -998 -1003 0 + -998 -1024 0 + -998 -1030 0 + -998 -1033 0 + -1003 -1024 0 + -1003 -1030 0 + -1003 -1033 0 + -1024 -1030 0 + -1024 -1033 0 + -1030 -1033 0 + -995 -999 0 + -995 -1008 0 + -995 -1025 0 + -995 -1031 0 + -999 -1008 0 + -999 -1025 0 + -999 -1031 0 + -1008 -1025 0 + -1008 -1031 0 + -1025 -1031 0 + -1004 -1009 0 + -1004 -1019 0 + -1009 -1019 0 + -1000 -1010 0 + -1000 -1017 0 + -1000 -1020 0 + -1000 -1026 0 + -1010 -1017 0 + -1010 -1020 0 + -1010 -1026 0 + -1017 -1020 0 + -1017 -1026 0 + -1020 -1026 0 + -1011 -1021 0 + -1011 -1027 0 + -1021 -1027 0 + -996 -1005 0 + -996 -1012 0 + -996 -1023 0 + -996 -1028 0 + -1005 -1012 0 + -1005 -1023 0 + -1005 -1028 0 + -1012 -1023 0 + -1012 -1028 0 + -1023 -1028 0 + -1034 -1049 0 + -1034 -1058 0 + -1034 -1066 0 + -1034 -1073 0 + -1049 -1058 0 + -1049 -1066 0 + -1049 -1073 0 + -1058 -1066 0 + -1058 -1073 0 + -1066 -1073 0 + -1035 -1050 0 + -1035 -1061 0 + -1035 -1074 0 + -1050 -1061 0 + -1050 -1074 0 + -1061 -1074 0 + -1039 -1059 0 + -1039 -1062 0 + -1039 -1075 0 + -1059 -1062 0 + -1059 -1075 0 + -1062 -1075 0 + -1044 -1051 0 + -1044 -1054 0 + -1044 -1063 0 + -1044 -1067 0 + -1044 -1076 0 + -1051 -1054 0 + -1051 -1063 0 + -1051 -1067 0 + -1051 -1076 0 + -1054 -1063 0 + -1054 -1067 0 + -1054 -1076 0 + -1063 -1067 0 + -1063 -1076 0 + -1067 -1076 0 + -1040 -1045 0 + -1040 -1052 0 + -1040 -1068 0 + -1045 -1052 0 + -1045 -1068 0 + -1052 -1068 0 + -1036 -1041 0 + -1036 -1046 0 + -1036 -1060 0 + -1036 -1064 0 + -1036 -1069 0 + -1041 -1046 0 + -1041 -1060 0 + -1041 -1064 0 + -1041 -1069 0 + -1046 -1060 0 + -1046 -1064 0 + -1046 -1069 0 + -1060 -1064 0 + -1060 -1069 0 + -1064 -1069 0 + -1037 -1042 0 + -1037 -1047 0 + -1037 -1053 0 + -1037 -1055 0 + -1037 -1070 0 + -1042 -1047 0 + -1042 -1053 0 + -1042 -1055 0 + -1042 -1070 0 + -1047 -1053 0 + -1047 -1055 0 + -1047 -1070 0 + -1053 -1055 0 + -1053 -1070 0 + -1055 -1070 0 + -1038 -1056 0 + -1038 -1071 0 + -1038 -1077 0 + -1056 -1071 0 + -1056 -1077 0 + -1071 -1077 0 + -1043 -1048 0 + -1043 -1057 0 + -1043 -1065 0 + -1043 -1072 0 + -1048 -1057 0 + -1048 -1065 0 + -1048 -1072 0 + -1057 -1065 0 + -1057 -1072 0 + -1065 -1072 0 + 1 2 3 4 5 6 7 0 + 8 9 10 11 12 0 + 13 14 15 16 0 + 17 18 19 20 21 22 23 0 + 24 25 26 27 0 + 28 29 30 31 0 + 32 33 34 35 36 0 + 37 38 39 40 0 + 41 42 43 44 0 + 45 46 47 48 49 0 + 50 51 52 53 0 + 54 55 56 0 + 57 58 59 0 + 60 61 62 63 64 0 + 65 66 67 68 0 + 69 70 71 72 0 + 73 74 75 76 0 + 77 78 79 80 81 82 0 + 83 84 0 + 85 86 87 88 89 0 + 90 91 92 93 94 0 + 95 96 97 98 99 0 + 100 101 102 0 + 103 104 105 106 107 108 109 0 + 110 111 112 113 114 0 + 115 116 117 118 119 120 121 122 123 0 + 124 125 126 127 128 129 0 + 130 131 132 133 0 + 134 135 136 137 138 139 140 0 + 141 142 143 144 145 146 147 0 + 148 149 150 151 152 153 154 0 + 155 156 157 158 159 160 0 + 161 162 163 164 165 0 + 166 167 168 169 0 + 170 171 172 173 174 175 176 177 178 0 + 179 180 181 182 183 184 0 + 185 186 187 188 189 190 0 + 191 192 193 194 195 196 197 198 0 + 199 200 201 202 203 204 0 + 205 206 207 208 209 210 0 + 211 212 213 214 0 + 215 216 217 218 219 220 221 222 223 0 + 224 225 226 227 228 229 230 0 + 231 232 233 234 235 236 0 + 237 238 239 240 0 + 241 242 243 244 245 0 + 246 247 248 249 250 251 0 + 252 253 254 255 256 0 + 257 258 259 260 261 262 263 264 265 0 + 266 267 268 269 270 0 + 271 272 273 274 275 276 277 0 + 278 279 280 281 282 0 + 283 284 285 286 287 288 289 0 + 290 291 292 293 294 0 + 295 296 297 298 299 300 0 + 301 302 303 304 305 0 + 306 307 308 309 310 311 312 0 + 313 314 315 316 317 0 + 318 319 320 321 322 323 0 + 324 325 326 327 328 329 0 + 330 331 332 333 334 335 336 337 338 0 + 339 340 341 342 343 344 345 0 + 346 347 348 349 350 351 0 + 352 353 354 355 356 357 358 0 + 359 360 361 362 363 0 + 364 365 366 367 368 369 370 0 + 371 372 373 374 375 0 + 376 377 378 379 380 381 0 + 382 383 384 0 + 385 386 387 388 389 390 391 0 + 392 393 394 395 0 + 396 397 398 399 400 401 0 + 402 403 404 405 0 + 406 407 408 409 0 + 410 411 412 413 0 + 414 415 416 417 0 + 418 419 420 421 0 + 422 423 424 0 + 425 426 427 428 429 0 + 430 431 432 0 + 433 434 435 436 0 + 437 438 439 440 0 + 441 442 443 444 0 + 445 446 447 448 0 + 449 450 451 452 453 454 0 + 455 456 457 458 459 0 + 460 461 462 463 464 0 + 465 466 467 468 469 0 + 470 471 472 473 474 475 476 477 0 + 478 479 480 481 0 + 482 483 484 485 0 + 486 487 488 489 490 491 0 + 492 493 494 495 496 0 + 497 498 499 500 501 502 503 0 + 504 505 506 507 508 0 + 509 510 511 512 513 514 0 + 515 516 517 518 519 520 521 0 + 522 523 524 525 526 527 528 0 + 529 530 531 532 533 534 535 0 + 536 537 538 539 540 541 0 + 542 543 544 545 546 547 0 + 548 549 550 551 552 0 + 553 554 555 556 557 0 + 558 559 560 561 562 563 564 0 + 565 566 567 568 0 + 569 570 571 572 573 0 + 574 575 576 577 0 + 578 579 580 581 0 + 582 583 584 0 + 585 586 587 588 589 0 + 590 591 592 0 + 593 594 595 596 597 0 + 598 599 600 601 0 + 602 603 604 0 + 605 606 607 608 609 610 0 + 611 612 613 614 615 616 617 0 + 618 619 620 621 0 + 622 623 624 625 0 + 626 627 628 629 630 631 0 + 632 633 634 635 636 637 0 + 638 639 640 641 642 643 644 0 + 645 646 647 648 649 0 + 650 651 652 653 654 655 656 0 + 657 658 659 660 0 + 661 662 663 664 665 0 + 666 667 668 0 + 669 670 671 0 + 672 673 0 + 674 675 0 + 676 677 678 0 + 679 680 681 0 + 682 683 684 685 0 + 686 687 688 689 690 691 0 + 692 693 694 695 0 + 696 697 698 699 0 + 700 701 702 703 704 705 0 + 706 707 708 709 710 0 + 711 712 713 714 715 0 + 716 717 718 719 0 + 720 721 722 723 724 725 0 + 726 727 728 729 730 0 + 731 732 733 734 735 736 0 + 737 738 739 740 741 742 0 + 743 744 745 746 747 748 0 + 749 750 751 752 753 0 + 754 755 756 757 758 759 760 0 + 761 762 763 764 765 0 + 766 767 768 769 770 0 + 771 772 0 + 773 774 775 0 + 776 777 778 779 780 0 + 781 782 783 784 785 786 0 + 787 788 789 790 0 + 791 792 793 794 795 796 797 0 + 798 799 800 801 802 0 + 803 804 805 806 807 808 0 + 809 810 811 812 813 0 + 814 815 816 817 0 + 818 819 820 821 0 + 822 823 824 825 826 0 + 827 828 829 0 + 830 831 832 0 + 833 834 835 0 + 836 837 838 839 840 841 0 + 842 843 844 845 846 847 848 0 + 849 850 851 0 + 852 853 854 855 856 857 0 + 858 859 860 861 0 + 862 863 864 865 866 867 0 + 868 869 870 871 0 + 872 873 874 0 + 875 876 877 878 879 0 + 880 881 882 883 884 0 + 885 886 887 888 889 0 + 890 891 892 893 894 0 + 895 896 897 898 0 + 899 900 901 902 0 + 903 904 905 906 907 908 909 0 + 910 911 912 913 0 + 914 915 916 0 + 917 918 919 920 921 0 + 922 923 924 925 0 + 926 927 928 929 0 + 930 931 932 0 + 933 934 935 936 937 0 + 938 939 940 941 942 943 0 + 944 945 946 0 + 947 948 949 950 951 0 + 952 953 954 955 956 957 958 0 + 959 960 961 962 963 0 + 964 965 966 967 968 969 0 + 970 971 972 973 0 + 974 975 976 977 0 + 978 979 980 981 982 0 + 983 984 985 986 987 0 + 988 989 990 991 992 0 + 993 994 995 996 0 + 997 998 999 1000 0 + 1001 1002 1003 1004 1005 0 + 1006 1007 1008 1009 1010 1011 1012 0 + 1013 1014 1015 1016 1017 0 + 1018 1019 1020 1021 0 + 1022 1023 0 + 1024 1025 1026 1027 1028 0 + 1029 1030 1031 0 + 1032 1033 0 + 1034 1035 1036 1037 1038 0 + 1039 1040 1041 1042 1043 0 + 1044 1045 1046 1047 1048 0 + 1049 1050 1051 1052 1053 0 + 1054 1055 1056 1057 0 + 1058 1059 1060 0 + 1061 1062 1063 1064 1065 0 + 1066 1067 1068 1069 1070 1071 1072 0 + 1073 1074 1075 1076 1077 0 + 1 77 134 215 611 827 903 938 0 + 50 135 216 612 868 904 0 + 78 295 613 869 905 939 0 + 2 51 79 136 376 870 0 + 3 137 217 296 377 614 906 0 + 4 218 297 378 615 907 940 0 + 52 80 219 298 379 941 0 + 138 220 299 380 616 828 871 908 0 + 5 139 221 381 909 942 0 + 53 81 140 222 0 + 6 82 829 943 0 + 7 223 300 617 0 + 141 224 504 830 910 944 0 + 142 225 505 679 776 911 0 + 143 422 506 777 0 + 144 226 423 507 680 778 831 0 + 145 227 779 912 0 + 228 913 945 0 + 146 229 681 780 946 0 + 147 832 0 + 230 424 508 0 + 83 148 231 574 720 947 1034 0 + 149 232 721 0 + 150 233 301 575 1035 0 + 151 234 302 722 1036 0 + 303 723 948 1037 0 + 152 235 576 949 0 + 84 153 236 304 577 724 950 1038 0 + 154 305 725 951 0 + 306 578 618 0 + 155 237 307 509 579 781 833 0 + 156 308 382 510 782 834 0 + 309 383 511 619 0 + 157 238 310 580 783 0 + 158 239 784 0 + 159 311 384 512 620 785 835 0 + 160 513 581 786 0 + 240 312 514 621 0 + 54 85 161 726 993 0 + 162 313 727 994 0 + 314 582 728 1039 0 + 86 163 315 1040 0 + 164 316 682 729 1041 0 + 55 317 683 730 1042 0 + 56 87 583 995 1043 0 + 88 684 0 + 89 165 584 685 996 0 + 385 425 449 515 872 997 0 + 241 318 386 450 998 1044 0 + 319 387 451 516 873 1045 0 + 242 320 388 622 874 1046 0 + 321 389 452 517 623 1047 0 + 243 390 426 518 0 + 244 427 453 999 1048 0 + 322 391 519 624 1000 0 + 428 454 520 0 + 245 323 429 521 625 0 + 8 246 522 626 952 1049 0 + 57 247 523 627 787 0 + 324 628 953 1001 0 + 9 248 325 524 788 1050 0 + 10 249 326 629 954 1002 0 + 58 250 327 669 955 1003 1051 0 + 328 525 789 1052 0 + 59 329 526 630 670 956 1053 0 + 11 251 527 957 0 + 12 631 1004 0 + 528 671 790 958 1005 0 + 13 60 166 392 430 455 0 + 14 167 252 393 0 + 61 253 394 456 1054 0 + 62 395 457 1055 0 + 168 254 1056 0 + 15 63 255 431 458 1057 0 + 64 169 256 0 + 16 432 459 0 + 90 396 433 460 791 875 0 + 330 434 792 836 876 0 + 331 397 632 793 914 0 + 332 398 461 633 915 959 0 + 91 333 399 462 794 837 877 916 0 + 334 400 463 634 672 960 0 + 92 335 673 795 878 961 0 + 93 435 464 838 962 0 + 635 839 879 0 + 336 401 636 796 840 963 0 + 94 337 797 841 0 + 338 436 637 0 + 65 170 257 465 529 638 686 731 0 + 17 171 258 339 530 687 842 0 + 18 172 259 340 639 732 1006 0 + 19 260 341 466 640 964 1007 0 + 261 342 467 531 641 733 0 + 173 262 343 642 688 734 843 0 + 20 174 263 532 965 0 + 21 66 95 264 468 844 966 1008 0 + 67 96 175 265 735 0 + 22 176 643 845 1009 0 + 177 344 533 644 689 736 846 967 1010 0 + 68 97 345 847 1011 0 + 23 98 469 534 690 848 968 0 + 99 178 535 691 969 1012 0 + 24 100 266 849 970 1058 0 + 101 346 971 1013 0 + 25 102 1014 0 + 26 267 347 1015 0 + 27 268 348 972 1016 0 + 269 349 1059 0 + 270 350 850 1060 0 + 351 851 973 1017 0 + 28 103 179 470 536 737 917 0 + 69 180 471 537 692 738 798 880 918 0 + 104 693 881 919 0 + 29 70 105 181 472 538 739 799 882 0 + 30 473 920 0 + 474 539 740 0 + 71 106 475 0 + 107 182 476 540 800 883 921 0 + 108 183 694 741 801 884 0 + 31 72 109 477 0 + 184 541 695 742 802 0 + 32 110 542 645 743 974 0 + 111 352 646 696 885 975 0 + 33 112 543 744 886 0 + 34 353 544 697 887 0 + 35 354 647 745 0 + 113 355 545 888 0 + 356 546 648 698 746 976 0 + 114 357 699 747 889 977 0 + 36 358 547 649 748 0 + 185 478 548 700 749 922 0 + 585 701 923 978 0 + 186 549 586 702 1061 0 + 187 750 924 0 + 479 550 587 751 1062 0 + 480 674 979 1063 0 + 188 703 752 925 1064 0 + 481 588 980 1065 0 + 189 551 704 753 981 0 + 190 552 589 675 705 982 0 + 191 271 482 553 590 650 754 0 + 192 272 483 554 651 755 803 890 0 + 273 402 484 591 652 1018 0 + 193 403 485 555 804 891 0 + 194 274 404 653 756 892 0 + 195 275 592 757 805 893 0 + 196 276 758 806 0 + 197 654 894 1019 0 + 198 405 556 655 759 807 1020 0 + 808 1021 0 + 277 557 656 760 0 + 37 115 486 593 761 852 926 983 0 + 116 359 594 927 984 0 + 38 117 406 437 487 762 0 + 360 407 438 488 595 763 0 + 118 361 408 489 853 928 0 + 362 409 764 854 929 0 + 39 119 439 490 596 855 985 0 + 120 765 0 + 121 363 856 0 + 40 122 440 491 857 986 0 + 123 597 987 0 + 124 199 657 988 0 + 200 658 706 809 0 + 125 201 410 810 1022 0 + 411 659 0 + 126 202 412 811 0 + 413 660 676 707 989 0 + 127 203 677 708 812 990 0 + 128 709 991 0 + 129 204 678 710 813 992 1023 0 + 41 205 492 558 766 930 0 + 42 206 364 441 559 711 814 0 + 365 442 493 560 767 0 + 366 494 1024 0 + 207 367 712 768 931 0 + 368 495 561 713 769 0 + 43 208 443 562 932 0 + 44 444 496 1025 0 + 209 369 563 714 770 815 1026 0 + 370 816 1027 0 + 210 564 715 817 1028 0 + 497 565 598 661 858 933 1066 0 + 498 566 662 895 934 0 + 499 599 663 935 1029 0 + 500 1030 1067 0 + 501 567 859 896 936 1068 0 + 664 860 897 937 1069 0 + 502 568 665 1070 0 + 600 898 1071 0 + 503 601 861 1031 1072 0 + 73 278 569 771 818 0 + 45 279 570 602 819 862 0 + 74 130 280 0 + 46 281 571 603 0 + 47 75 131 282 604 863 0 + 48 864 0 + 572 772 820 865 0 + 76 132 821 866 0 + 49 133 573 867 0 + 211 283 773 1073 0 + 212 284 371 1074 0 + 285 372 414 1032 0 + 286 373 415 774 1075 0 + 287 374 416 1033 1076 0 + 213 288 417 0 + 214 289 375 775 1077 0 + 605 666 716 899 0 + 418 445 822 900 0 + 290 446 606 717 823 901 0 + 291 419 667 824 0 + 292 420 447 607 668 0 + 293 421 448 608 0 + 294 609 718 825 902 0 + 610 719 826 0 + 1 8 24 28 32 37 41 0 + 2 13 25 29 33 38 0 + 9 17 34 42 45 0 + 3 14 18 26 35 0 + 4 10 19 27 30 0 + 5 11 20 43 46 0 + 15 21 31 39 44 47 0 + 12 22 48 0 + 6 16 23 40 49 0 + 7 36 0 + 50 57 65 69 73 0 + 51 54 60 70 0 + 52 58 61 71 74 0 + 55 59 62 0 + 56 63 66 72 75 0 + 53 64 67 0 + 68 76 0 + 77 83 100 103 110 115 124 0 + 78 101 104 111 116 0 + 79 85 90 102 105 112 117 125 0 + 80 106 130 0 + 86 91 107 113 118 126 0 + 84 92 108 114 127 0 + 87 93 95 109 119 131 0 + 81 96 120 0 + 94 97 121 132 0 + 82 88 98 122 128 133 0 + 89 99 123 129 0 + 134 141 148 179 191 199 205 211 0 + 135 142 149 170 180 185 192 200 0 + 136 143 161 166 181 201 0 + 144 150 155 171 186 206 212 0 + 137 145 162 167 172 187 0 + 156 163 182 193 202 0 + 138 151 164 173 188 194 207 0 + 139 152 174 208 213 0 + 146 153 157 168 183 195 203 214 0 + 140 158 169 175 196 0 + 147 176 197 0 + 154 159 177 184 189 198 209 0 + 160 165 178 190 204 210 0 + 215 224 231 246 266 271 283 0 + 216 225 232 247 257 272 278 0 + 226 233 237 248 258 279 284 290 0 + 217 227 252 259 267 291 0 + 218 228 249 260 268 273 285 0 + 261 269 286 292 0 + 219 241 250 253 280 287 0 + 220 234 242 262 270 274 0 + 221 235 243 251 263 281 288 293 0 + 229 236 238 254 275 289 294 0 + 244 255 264 282 0 + 222 239 256 265 276 0 + 223 230 240 245 277 0 + 295 306 324 346 352 359 0 + 301 307 325 330 339 353 364 371 0 + 296 313 331 340 347 354 0 + 297 326 332 341 348 372 0 + 314 342 349 360 365 373 0 + 298 318 327 366 374 0 + 308 315 319 328 333 355 361 0 + 299 302 316 320 343 350 362 367 0 + 303 309 317 321 329 334 356 368 0 + 304 310 335 357 375 0 + 305 311 322 336 344 351 369 0 + 337 345 363 370 0 + 300 312 323 338 358 0 + 376 385 392 396 406 410 418 0 + 377 393 397 419 0 + 378 398 402 414 0 + 407 411 415 420 0 + 379 386 394 416 0 + 382 387 399 403 408 412 0 + 380 388 404 409 0 + 383 389 395 400 413 0 + 381 390 417 421 0 + 384 391 401 405 0 + 422 425 430 433 437 445 0 + 423 434 441 446 0 + 438 442 447 0 + 426 443 448 0 + 427 431 435 439 444 0 + 428 432 440 0 + 424 429 436 0 + 470 482 486 492 497 0 + 465 471 478 483 498 0 + 449 455 460 472 487 0 + 461 466 473 484 499 0 + 467 474 479 488 493 0 + 450 456 475 480 494 500 0 + 451 462 476 485 489 501 0 + 452 457 463 495 502 0 + 453 458 464 468 477 481 490 496 503 0 + 454 459 469 491 0 + 504 522 536 542 553 558 565 0 + 505 523 529 537 548 554 566 569 0 + 506 515 538 543 0 + 507 509 524 530 544 549 559 570 0 + 531 539 550 560 0 + 510 516 525 540 545 555 567 0 + 511 517 526 546 561 568 0 + 518 527 532 562 571 0 + 512 519 533 541 551 556 563 572 0 + 520 534 573 0 + 513 528 535 552 564 0 + 508 514 521 547 557 0 + 574 590 593 598 0 + 578 585 594 605 0 + 575 579 586 602 606 0 + 591 599 0 + 582 587 595 607 0 + 576 603 608 0 + 577 580 592 600 609 0 + 583 588 596 601 604 0 + 581 584 589 597 610 0 + 611 626 645 650 657 661 0 + 612 627 638 651 658 662 0 + 613 618 628 646 666 0 + 614 632 639 647 667 0 + 615 629 633 640 652 663 0 + 641 659 668 0 + 616 622 642 653 664 0 + 619 623 630 634 648 660 665 0 + 631 635 643 654 0 + 620 624 636 644 655 0 + 617 621 625 637 649 656 0 + 669 674 0 + 670 672 676 0 + 673 677 0 + 671 675 678 0 + 679 686 692 700 706 0 + 693 696 701 716 0 + 680 687 697 702 711 717 0 + 682 688 703 712 0 + 683 698 707 713 0 + 681 694 699 708 718 0 + 689 695 704 714 0 + 684 690 709 0 + 685 691 705 710 715 719 0 + 720 737 743 754 761 766 773 0 + 721 731 738 749 755 771 0 + 726 739 744 762 0 + 727 732 745 750 0 + 728 733 740 751 763 767 774 0 + 722 729 734 752 756 764 768 0 + 723 730 746 769 0 + 724 741 747 757 775 0 + 735 758 765 0 + 725 736 742 753 759 770 772 0 + 748 760 0 + 776 787 798 803 809 818 0 + 777 791 799 810 822 0 + 778 781 788 792 814 819 823 0 + 779 793 824 0 + 782 789 794 800 804 811 0 + 780 783 795 801 805 812 825 0 + 784 806 0 + 785 796 802 807 815 820 0 + 797 808 816 821 0 + 786 790 813 817 826 0 + 827 830 849 852 858 0 + 831 833 836 842 862 0 + 834 837 853 859 0 + 828 843 850 854 860 0 + 838 844 855 861 863 0 + 832 839 845 864 0 + 835 840 846 851 865 0 + 841 847 856 866 0 + 829 848 857 867 0 + 868 880 890 895 0 + 869 881 885 899 0 + 870 872 875 882 886 900 0 + 876 887 901 0 + 873 877 883 888 891 896 0 + 871 874 892 897 0 + 878 884 889 893 898 902 0 + 879 894 0 + 903 910 917 926 930 933 0 + 904 911 918 922 934 0 + 905 919 923 927 0 + 906 912 914 924 0 + 907 913 915 920 935 0 + 916 921 928 936 0 + 908 925 929 931 937 0 + 909 932 0 + 938 944 947 952 970 974 983 988 0 + 939 953 971 975 978 984 0 + 940 945 954 959 964 972 0 + 941 955 979 0 + 948 956 960 976 989 0 + 942 949 957 965 0 + 946 950 961 977 990 0 + 962 966 980 985 0 + 951 963 967 973 981 0 + 943 968 986 991 0 + 958 969 982 987 992 0 + 1001 1013 0 + 993 997 1014 1022 0 + 994 1006 1015 0 + 1002 1007 1016 1018 1029 1032 0 + 998 1003 1024 1030 1033 0 + 995 999 1008 1025 1031 0 + 1004 1009 1019 0 + 1000 1010 1017 1020 1026 0 + 1011 1021 1027 0 + 996 1005 1012 1023 1028 0 + 1034 1049 1058 1066 1073 0 + 1035 1050 1061 1074 0 + 1039 1059 1062 1075 0 + 1044 1051 1054 1063 1067 1076 0 + 1040 1045 1052 1068 0 + 1036 1041 1046 1060 1064 1069 0 + 1037 1042 1047 1053 1055 1070 0 + 1038 1056 1071 1077 0 + 1043 1048 1057 1065 1072 0 diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-log_0.txt b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-log_0.txt new file mode 100644 index 000000000..79d289345 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-log_0.txt @@ -0,0 +1,3 @@ +Call: /usr/bin/ruby ../scripts/param_ils_2_3_run.rb "-numRun" "0" "-scenariofile" "example_saps/scenario-Saps-SWGCP-sat-small-train-small-test.txt" "-validN" "100" + + diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-result_0.txt b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-result_0.txt new file mode 100644 index 000000000..9653ae540 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-result_0.txt @@ -0,0 +1,6 @@ +Final best parameter configuration: alpha=1.4, ps=0.033, rho=1, wp=0.02 +================================================================== +Active parameters: alpha=1.4, ps=0.033, rho=1, wp=0.02 +================================================================== +Training quality of this final best found parameter configuration: 0.0, based on 22 runs with cutoff 5.0 +Test quality of this final best found parameter configuration: 0.0, based on 100 independent runs with cutoff 5.0 diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-runlog_0.txt b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-runlog_0.txt new file mode 100644 index 000000000..e69de29bb diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-test_0.txt b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-test_0.txt new file mode 100644 index 000000000..ba66466c2 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-test_0.txt @@ -0,0 +1 @@ +0.0 diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-traj_0.csv b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-traj_0.csv new file mode 100644 index 000000000..e69de29bb diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-traj_0.txt b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/focused-runs2000-runobjruntime-overallobjmean-maxit200000000-bm2-time5.0-tunerTime30.0-algoAlgo-traj_0.txt new file mode 100644 index 000000000..e69de29bb diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/instance_seed_file_saved-SWGCP-satisfiable-small-train.txt-numRun_0.txt b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/instance_seed_file_saved-SWGCP-satisfiable-small-train.txt-numRun_0.txt new file mode 100644 index 000000000..f7aa68c4d --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/instance_seed_file_saved-SWGCP-satisfiable-small-train.txt-numRun_0.txt @@ -0,0 +1,2000 @@ +524453158 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1880026316 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1225605784 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1202486927 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1549064881 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1187404954 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1296531115 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1967693548 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1614618394 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +498808182 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +55437432 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2090933724 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1421700432 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1299827071 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1590214902 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +13242096 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +59135052 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1171781410 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1643431418 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1058256067 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +495622784 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +323759947 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1584087043 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1860322579 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1691282316 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1944459723 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +163843691 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1248212433 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2000751859 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +292481479 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1585390058 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1873350574 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1297714257 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +617473805 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +206671988 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1986751372 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1616935933 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1408371679 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1346596511 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1898980089 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1757998681 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +256878637 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +791506985 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +203389368 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1844885740 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +406410326 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +143066074 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +263853074 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1415915182 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1136151010 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +878511811 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +704431854 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +504408308 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1770054319 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2035213199 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +292421642 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1643729924 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +509186151 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1702218039 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1225143531 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2053397241 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +840418487 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1642040937 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +231385721 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +512455010 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +908767578 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1255436146 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +693829105 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1658978247 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1024448708 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2025646330 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +460106176 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +984486260 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1717837426 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +988082601 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2060895374 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +816113438 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2107002869 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +818338669 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1876441875 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +481676256 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1796147067 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +540034880 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +884752824 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +682074068 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1881046700 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +937439128 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2046735081 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1647778632 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1882526594 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +655295083 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +293817074 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1938871778 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2063126967 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +272991524 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1210656417 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1147013802 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +920218071 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +762601684 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +727660835 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1147257164 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +893848693 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1275034832 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +248080877 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +682599499 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +632034064 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +127332925 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +403269472 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +489908435 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1838128441 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1453036862 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +673985747 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1576022947 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1878931028 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1628089661 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1084976385 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1494686398 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +784212625 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1725700902 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +577182818 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1412751928 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1043015064 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1962944972 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +339746312 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +425866543 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1862453997 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1798409366 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1005931027 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +311319983 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +315003812 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1388111143 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +388616402 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +524239970 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2051583986 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +743318054 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +575616694 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2124522025 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +516806179 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +752796052 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +40151834 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1720772715 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2049736322 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +244360769 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +364100891 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +662266830 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1582943195 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1942977386 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +225352367 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1172711871 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1977653280 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1421360176 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1120657722 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +710778787 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +780805436 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1213233747 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1123580272 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1779847817 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +681279666 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +293636529 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2008213610 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +851676420 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1942164483 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1733498414 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +251026941 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1368821167 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +545806341 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +34653564 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1794782024 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +27240120 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +401198606 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1572277987 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1387681126 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1595250729 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +926141253 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +58889944 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +944279313 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +128577025 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1201173634 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +93318125 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +527321421 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2120350834 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1462598286 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +910949613 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1906574539 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1822912705 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1560102900 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +990942544 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2042542865 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1479259644 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +920922975 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +542047726 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +736437666 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1018278745 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +545587096 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +405898718 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1298687200 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1913636598 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2057456081 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1637380025 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1906738308 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1848925574 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +965465490 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +930624423 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +176431074 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1616736840 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1211480488 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1438796717 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +358745788 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1120338535 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1583899095 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1251321339 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2111722298 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1700063786 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +152889521 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1918734352 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1782876240 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2063252940 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1756818623 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +353598991 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +53287577 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1812061033 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1603208517 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1510741102 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +558917460 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +848797389 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +914054673 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +959148739 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1802012754 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +313147034 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +949513532 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1098163635 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1855860612 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1616643578 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1275292964 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1571135056 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1722881215 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1835255791 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +9403532 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +180239357 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1204456533 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1834688613 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1245243825 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1658398391 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2057720419 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +250791699 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +398810364 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2041941998 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1238428411 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1591655514 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1111466416 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +271764515 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +163913889 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +281392166 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +682356419 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +797989294 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +147486629 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +229783545 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +363021686 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1358731049 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +556161946 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +799637335 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1032435145 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1236640444 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1531059037 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1588077747 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +606124978 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1549051428 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1937565529 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2060645166 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1431838763 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +788590647 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1879260702 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +200589409 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +709545341 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1504319779 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1939129907 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +785887966 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +327115650 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1761271359 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1210481664 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +748126725 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +280899482 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +468897343 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +45946214 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +60147814 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1584288401 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +946384215 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1733411626 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1192347355 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1381292513 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +702387806 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +925330670 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1675038892 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1841920557 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +605215926 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1417370930 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +458166572 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1383665738 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +549605783 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1501384809 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1531407959 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1301883447 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1516015827 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1429898142 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +318834374 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +848913391 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +711712312 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +4254005 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2105410401 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +863401705 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1135809610 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +976196910 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1664263489 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2105248208 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +676985986 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +693886399 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1218211992 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +157651197 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1173551335 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +62734339 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1514415077 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +420715116 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +832565081 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +159672589 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +448117301 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +224482572 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1216264723 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +623514461 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +252107817 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1603218649 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +223214728 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +68659726 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1739445508 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2145978657 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1168052277 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1406104875 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2138163268 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1722773194 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1646414571 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +589104391 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +839825967 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1910282623 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1334434065 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +280309127 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +136614583 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1986931439 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +84333599 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +892455610 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1611032827 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1710448361 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1028937243 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1175936798 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2034907865 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +152393496 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1553936097 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +94966810 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +455216466 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1996285871 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2008290127 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +891365827 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1088752876 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1966790835 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +108442801 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1221582765 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1559335979 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +157208443 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1581186666 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +742291547 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +375687714 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1305057612 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +763193938 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1049141171 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +704770375 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1435202519 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +32448786 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1838385102 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1489731423 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1628748072 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1328890384 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1051254132 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +371424505 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2116851297 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1802709136 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +738361774 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +451019254 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +773017811 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1325070971 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +422317803 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +917562552 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +566411318 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +287996551 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2123782223 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +767681451 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +52398957 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1562689831 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1115933709 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +839063119 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2080961141 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +260583803 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1728960661 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +970643398 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1306330361 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +923391708 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +962465580 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1164715633 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1144935897 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1569630969 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +221974294 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +51172324 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1455980593 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +69890741 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +855587829 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1282651966 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1553101463 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2086174418 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1468283721 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1294933751 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1934451793 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1216946649 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1052458326 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1120765899 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1889202114 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1871640435 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +392919389 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1952345167 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +590486107 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1764586248 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +184438751 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1432744810 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1721868725 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1251212365 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1303396745 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +260850666 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1307096589 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +73125381 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +795490872 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1275051905 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2068689105 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +836691470 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +816351980 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +938998002 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1892093524 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1867731918 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +697564779 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +234530411 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2105062219 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +776058431 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +562317951 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +220082869 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1267996747 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +856818710 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1330803894 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +828505274 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +914158136 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1541507324 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1313972493 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +886370695 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1404271305 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1222292711 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +248955272 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1386296334 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1454408156 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1427224311 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2056508537 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +771785426 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +321195968 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +223232145 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +183988250 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +893134640 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1059456403 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1588518186 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +117552298 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2012727002 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1406601312 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +425112520 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1518128492 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +373802200 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +144009051 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +826096075 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +504417007 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +568082043 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2037881343 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +775821868 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1118194347 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +282485622 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1151389974 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1300938890 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1076607176 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +435617986 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +725898516 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1483821245 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +393940720 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +983777090 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1149197359 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +843722509 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1400782358 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +624673745 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +631375700 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1649057709 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +317699229 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +67477373 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +580902243 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +171299003 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1435901336 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +961122916 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1122127429 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +190202352 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +88280227 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1861502765 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +826312131 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +726985441 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +271321214 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1755053521 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1032606990 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +484072115 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1739418863 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +180702031 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1984348617 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +753652446 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1333273368 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +308395833 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +242540824 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +21165739 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2024164685 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +290078704 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1364021760 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +845520003 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +602435221 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +569612770 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1450846125 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +915302334 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1440876597 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +99965167 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1165588528 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1543246459 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +985985312 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1636596988 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +177227030 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +751051323 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +620234994 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +927103530 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +706039394 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +703281217 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1163836703 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +305257075 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1358262381 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1572454739 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1194307941 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +174509637 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1879017060 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1774817547 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +587100457 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1076562926 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +771547381 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1686769654 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1058244285 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2116138915 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +148208272 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1919638910 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +722202898 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +662635679 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +450206851 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1696481466 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1608917951 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +903037113 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +538704301 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +518495048 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2100293680 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +406799148 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +834804815 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +123359860 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1727130117 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1015956821 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +552265213 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1425368713 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1497918346 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1427207966 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1484561277 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1030668403 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +790740784 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1165941624 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +147879475 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +86760290 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +180198850 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +193055291 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +307373072 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +658100851 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1639158707 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +260286473 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1509987648 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1902437197 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +341421722 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +504920263 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +760713822 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1391653602 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1804649165 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1542950482 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +200003115 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1207882693 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +85283551 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +697220709 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1106170925 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1197457584 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1982820161 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1275794721 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +754475166 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +193372693 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +275852827 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +60061471 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1045514796 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +231805268 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +231224213 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +374597220 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1439062934 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +998725633 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +201387586 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +35944731 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2009949940 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2062989428 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +908543249 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1167857056 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +707327955 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +239171438 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +313171868 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1718997648 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +395270466 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +22533214 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1312197300 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +901138057 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +993015710 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +105417349 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1105374003 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1761434916 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +36073432 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +484168676 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1513641458 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1817542960 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +994010630 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2108635307 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +736936408 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1439890034 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1242354131 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +423103732 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1899802552 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +83346595 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1508219723 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1544718729 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1885360082 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1142720667 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +105812235 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1809091492 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1539099136 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +322438454 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1890053446 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1836268284 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +74346171 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +294869417 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +19884904 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +199877218 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +472671625 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +53375740 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +621724240 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1618381011 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1023212299 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2054205236 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1040183177 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +290803167 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +274891721 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +25327211 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +109151962 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1989812877 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +801726282 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1152630714 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +952884029 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +727043160 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1727181358 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1164739575 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1775722735 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +15656362 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +9764064 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1757528006 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +979224483 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +739122660 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1651246952 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1613442877 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1323798584 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +761509743 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +30365171 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1340504464 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +255779558 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1513184178 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1712807313 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +879469723 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +683231261 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1586766549 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +555468058 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1825610640 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1533251645 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1370667733 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +647504675 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1388729722 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +92025688 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +53269949 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1671153003 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1056773428 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2012770342 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +234283613 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +883859961 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1070342211 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1437554631 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1864599316 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2022042068 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +53083726 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1129492561 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +433786592 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +462554695 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +123133759 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +841412387 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1153172089 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1630052161 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +514384889 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1386776335 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +102936767 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +586933578 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +616633186 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1717407722 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +490620551 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1878238170 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +399877556 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1479320400 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +311709663 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1935688654 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1545731351 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +69114378 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +6630402 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1205299497 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1380806034 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1947380094 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +472257807 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1297038984 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +285014764 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1872108743 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +710787250 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1588965643 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +515488650 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1603918491 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +769344233 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1444780136 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1647048256 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +736304977 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +350139022 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +312069113 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +518240221 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2147327856 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +377907982 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +686283306 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1770211753 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1724475709 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1825788091 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1664919356 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +704429114 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2066827380 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +369792503 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1917602643 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1698098554 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1783102856 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1320280116 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +683981504 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +408613402 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2042394353 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1106082310 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +560418510 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2052871629 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +111022940 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1355908591 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +395316837 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1665544928 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +132079180 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2065165375 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1712707096 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +273857685 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +44753709 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1874126891 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +776668631 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1596802966 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1114907063 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1315049866 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +498814301 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +941848428 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1182358998 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2031532160 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1005839747 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1433753764 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +423124414 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1069529515 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1502998131 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1307061128 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1811887233 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2025265357 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2072970461 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1250005922 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1367542349 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +981984009 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1972914320 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1954533344 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +559025946 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1171867153 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1327651110 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1999981848 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +746954189 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +358304529 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1741292713 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +981699834 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1874081036 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +777974380 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +217606548 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1293982305 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +816833433 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +36959858 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +87066486 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2120901845 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1297415491 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +749758538 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +203034507 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1724730539 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1410956578 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1606501265 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1015886539 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1625450168 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1391796514 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +470039877 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1791431241 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +616847786 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1197899306 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1461709729 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1727584586 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1963272052 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +467328368 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +110072333 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1637302557 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +673332854 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +582030126 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +688239652 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1839372262 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +744224614 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2126409943 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +990419835 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2047295915 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +196876431 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +506494655 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1132130309 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +144573282 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1200627539 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +797489893 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1816195514 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1861808557 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2121589278 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +205466240 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +988849967 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +600378997 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +691903656 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +307562396 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2000108286 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1760043959 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +478855001 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1894566268 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +116842790 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +974195565 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1684313980 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1988107363 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1491155422 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +764605511 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1579956521 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +592632515 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +63842474 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +743728496 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1800578340 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +689438462 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1226957404 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2128732371 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +511119207 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1200297872 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1852585316 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1467240575 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +120371950 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1209569383 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1526242470 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1903670781 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1173756689 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1689435085 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1926653674 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1049619483 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1349362604 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +846750236 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1522649234 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1620795206 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +538580096 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1818525453 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1233466291 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +28116051 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1093107962 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +185258155 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1378590541 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +97654827 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2128584850 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +367903207 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1587583046 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +607704136 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1752060806 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +208018608 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1006180809 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +285053061 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +18021136 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1176669736 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1242128987 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +491069304 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +679826943 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2046063625 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1218263925 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +468188789 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1190652616 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +253244709 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +339828564 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +705398824 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1341689284 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1360942607 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2074214263 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2071430090 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +945904233 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1260688176 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1150166318 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +157735260 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1305840051 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1433658193 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +805248060 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1873063302 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1634902501 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +594779363 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +951971045 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +391552849 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1337896552 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1797103335 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +969557410 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1557810831 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2129333636 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +508930552 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +548490071 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1444341451 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +709183096 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +414398470 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1862969098 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +576118930 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +802718971 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +301125427 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1377516849 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +762513373 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1735550151 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +933240740 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1175037484 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +336458832 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +613280187 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +6651440 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1040896475 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +14602011 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +638488185 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1307109679 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1802933313 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1456928361 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1276231687 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1868337111 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2138065559 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +222918577 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1674590769 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +723565785 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +987057885 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1596730379 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1489921395 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1446701884 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1265460699 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +273807039 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +154074606 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +847476425 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +602584259 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +475864407 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +194362443 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1470818065 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1526491395 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2129608992 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1907844109 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1723947589 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +78834356 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2049753259 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1722738895 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1849474765 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +582256110 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1287939815 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +711888567 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1839609089 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2074531787 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +317482289 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +861450100 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +895789386 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +762526768 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1521455453 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1706725900 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +419641777 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1264700423 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1174964906 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +679894190 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +216769418 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +355058570 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +165714619 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1998356413 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +445940730 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1355839492 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +513886759 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +781215578 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1455611288 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +815187200 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2023727325 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +202949079 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +27650902 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2030560687 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +94867555 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1614875343 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1502924947 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +743348335 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +13217303 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +77036413 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +569143699 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +258895975 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +291509191 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +412944105 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1371565063 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +63920045 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1218185913 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +331294043 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2027217280 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1644257634 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +115461713 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +388184845 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2004591221 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1503950382 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1982230584 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1209448123 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +758920520 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2129151507 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1250445286 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +939882849 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1436593986 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1407302646 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2057180389 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1930776533 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1855695614 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +647340230 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +562567040 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1640205407 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +180331100 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1908555312 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +232681965 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +98656291 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +312241254 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +867395258 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +630756643 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1414660771 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +594742559 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +298376260 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2052029783 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1317208395 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1529682547 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1876192932 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1735182267 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1271324477 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +489290420 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1684528838 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2034417738 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +906270776 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +139196947 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1583827456 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +497585115 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2027485264 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1178660478 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +805090299 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +922967562 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1887160104 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +913053320 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +887989599 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1839946822 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +294264985 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1492089765 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +934124262 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1676767017 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +907993301 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1926990298 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2575672 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +120804996 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +958928931 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +7257121 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1917975550 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2031214444 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +279875319 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2096302900 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1031629355 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +41619415 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1794132751 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +361593862 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1400007279 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +922418186 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1050360634 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +787445939 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +146901167 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2118065790 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +646740637 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +697318927 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +830794113 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +993370232 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2035451830 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2146696761 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +241041201 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +98942093 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +31464780 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +801278677 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +593458234 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +740550542 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1400518408 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1854466036 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1521603192 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1813887033 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +379886026 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +761650604 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +488971475 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +837125035 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1142291051 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1244834327 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +390390388 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1187401798 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +262694592 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1384774144 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1619802676 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1996963389 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1920765571 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +650885919 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +109691611 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +969630439 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1605247508 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +93511136 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1925596056 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +274045008 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +678528017 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +994476107 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1353507310 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2130864119 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +216577397 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +354420675 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +108279085 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1259868385 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +541398195 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1688699197 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1938203111 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +347894091 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1364524041 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +984076950 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +638358401 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1193560882 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1656728622 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1810793101 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1856136415 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1912009611 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +125367603 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +281465185 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +842926612 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1023217308 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1017774955 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +497169833 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +119774631 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +314826786 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1312727143 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1806087148 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +108520255 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1687821967 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1707625548 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1088410466 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1320334312 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +822987343 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +688901707 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2017891999 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +345113658 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +467733876 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1986076597 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1398772905 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +941187401 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +479107215 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +841833639 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +166339326 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1897629929 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +734369571 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +531030617 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +302708977 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2124310029 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +788049303 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2063652309 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +618159297 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +522381515 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1121815436 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1118833828 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +232864857 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +868430483 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1151959031 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1288217197 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +960203593 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +383311060 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1586133869 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +446105016 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +987776953 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +540453275 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +285792805 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1406246315 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2039824899 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1998123911 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +157568086 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +222423105 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +397439645 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1032642332 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +276155417 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1973825108 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1002450777 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1716085843 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +774452767 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +54012896 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1673710470 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1304593752 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1767274732 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +915501707 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1264609223 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1600700143 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1287119847 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +81098561 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2063093534 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1005088000 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +693320722 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1638112647 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2030022168 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +998328240 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1224282861 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +601797446 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1104669333 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1674532334 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1028381553 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1593680143 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1284983566 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +305068664 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +577258599 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2091740498 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +507928500 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1085511624 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1309006818 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1264624707 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1205249412 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +965449800 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1785417857 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +581472179 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +269820502 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +800537896 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +691226775 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +289198960 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +857483635 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +394859859 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +21436225 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1734327543 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +558218530 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1587648212 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +376629414 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1571544949 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +177156916 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1499019637 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +976538451 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1081739502 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1721202405 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1731195758 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +763855748 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2044647622 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +785270605 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +515269110 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1346762858 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1575937503 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +944193965 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2036564096 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1815140257 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +730669698 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1059681220 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1278843548 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1856485664 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1091847780 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1789616063 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1809318845 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +764681150 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1299099026 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1004206739 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +483333168 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +222152657 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +357300206 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +381560398 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2002019100 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1944526055 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1072358176 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +236023021 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +335858796 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1242708084 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1591019318 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1350195564 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1740389572 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +649823323 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1823776458 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +986616687 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1906491208 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2000665086 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +151686730 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1747644975 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +59175075 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2119753834 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +242007319 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +984245854 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +58387744 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +567436866 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1452367341 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1157740586 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1474465105 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1751712451 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1036601065 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +99474681 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +31737392 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1144999722 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1912573700 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2034136275 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +710434976 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1596720812 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +958758929 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +682814963 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +44453057 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1248121215 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +376323517 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1451378796 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1036214777 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1865142441 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +767323263 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +438589935 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1755841602 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +639998715 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1750491358 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +127753323 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1426415027 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1676264564 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +803542965 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1961070211 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1498882066 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1717562235 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1577234944 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1450677559 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1089387729 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +323943640 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +786172229 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +568576795 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +175916546 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1539520897 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +651539520 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +361162443 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +801452336 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +994074037 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +933144275 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +412044734 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1258278646 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +371586979 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +743528111 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1532539853 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +16059565 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1855241886 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +318384967 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2103437100 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1845861062 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2035267346 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +278252453 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +465187123 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +298168408 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +216479868 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1461957595 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1835294439 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +219928809 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1025778415 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1678481246 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +161130733 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +152533773 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +196245927 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +661336322 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1473218629 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1746795197 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +185214425 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +255198646 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1641657047 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1253238718 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +504891087 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1308053215 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1005761128 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1712718525 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1630678008 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +8079347 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1432320933 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +452776649 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +604765062 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +650554932 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +738704157 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +246494403 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1781314244 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1420217230 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +682918149 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1748825974 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +235003373 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1625796483 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2044232639 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1954651764 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +956909167 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +337300486 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1953904755 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2131482256 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +795535589 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +526665047 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +929637559 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +3690413 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1117040375 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1428522270 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +318679931 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +13756681 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +510606690 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +108036716 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2100676508 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +710425021 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +300124648 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1837237087 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2015443805 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +397438709 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1542931355 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1088612923 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +939585908 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +272229936 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2061852318 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +595446632 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +989505758 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1271472299 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1189792951 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +45027352 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1333525168 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1496883971 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1337979127 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1273497000 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +460041225 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +206641097 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1728041302 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1806898450 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1999053029 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +281950732 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +104717808 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +630799933 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1291180597 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +4372732 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1869259530 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1955891063 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +362838740 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2140453565 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1156716276 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +976004 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2006472761 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +266869596 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1091618220 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1918630746 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +957358048 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1991601518 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1133995451 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1480079473 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1081688901 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +718157686 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +287364588 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1733820009 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +63529904 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +919761035 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1560699268 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +883290433 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1462824933 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1180490397 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1707558067 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +669893078 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +399706632 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +868392766 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1599469353 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1482767631 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +290934591 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +171790473 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +528110065 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2079040773 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1524727830 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1955862915 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +114792039 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1450570076 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1639127729 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +492141636 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2033548186 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +838335967 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1751942101 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +428059284 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +894609124 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1855108901 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +830272171 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1266189573 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +55598524 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +662447929 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1478359225 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +425057081 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1972278641 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1480544644 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +372730412 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1227978548 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +551948748 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1841909016 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1690017117 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1408660132 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1544624394 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +444011418 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1127991998 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1454170731 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +470358793 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1976175696 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1957985036 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1569597350 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1022586219 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1546118966 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +55949582 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +591601081 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1244818320 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1580387312 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1339731120 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +817204913 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +19891180 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2114752250 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1504508213 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +869258426 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +686954722 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1571964459 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1622854465 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1419316148 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +167467700 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2131408562 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1617333463 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1999003317 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +868920427 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +972276899 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +306308574 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +441361299 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2136565071 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1655954650 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1550695414 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1192507343 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +25557302 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2010095161 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1246518660 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1816551519 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +945929631 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +698890921 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1065337594 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +308409729 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1882092204 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1534612553 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1224984967 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1730604972 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1041085803 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +53402787 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1839030578 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +592783685 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +687620681 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1243864960 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +696980386 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1423878252 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1695574320 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +880726104 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1855377723 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2138589345 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1546205644 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +208686256 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1709514136 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +368634151 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +327158732 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +598471246 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +428399013 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +371588250 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1086686136 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1040624608 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1355089494 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +575054570 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1565512654 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1671498659 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1626274580 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1175425551 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1185209246 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +689822530 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1741689935 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +315760856 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1447729377 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +707050301 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2115915871 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1115538493 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1874170756 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1708261342 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +53206317 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +759515615 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +89469386 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +390880958 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1909278790 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1490173043 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1981114270 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1794307530 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +558453706 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +648510310 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +392511146 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1004381403 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +985986351 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1965200273 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2134174558 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1194824194 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1712073728 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1986497492 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1539707517 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +44183004 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1174679211 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1906736778 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +417431460 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +513936880 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1425389276 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +888619468 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1048704892 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +763565125 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +929712064 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +963749430 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1916951680 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +424221883 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1176424759 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +57984010 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1300526350 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1102762619 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1033520654 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +574380701 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +411537704 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +892342358 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +654488345 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +238218124 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1522266318 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1477078157 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2003505290 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1965531973 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +32691020 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1702258639 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2136973654 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1314277379 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1486102647 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2013893256 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1407868051 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1393826536 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +180335325 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1760756213 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1122691674 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1094318917 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +239525790 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +891541195 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1923208487 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +648204248 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1573964176 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +246035418 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1149168835 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1750350856 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1594587813 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1477015091 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2022182612 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +364640978 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2014307567 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1508978205 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1316585921 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +329540885 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +553496555 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1366892427 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1237772355 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +276704704 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1784897616 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1408451474 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1857583616 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1975697232 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +838981740 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +532555511 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +62279887 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +575909783 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +415464835 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1365986421 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +902483424 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +337917069 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +860456585 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +674653969 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1903559079 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1532305517 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +136585376 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +777254169 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +289728140 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2144279026 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +825251056 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +326922671 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2095099016 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2136178745 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +183784775 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +230160037 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1402809398 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1322674953 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +649190988 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +286136454 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1982006001 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1745790282 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +358775322 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +423457454 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1486334145 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +787077100 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1773689164 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +437521847 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1846565869 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1519079266 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1222300575 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +259752977 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +317074588 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +184261718 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +441017313 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1080803393 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +130917062 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1456461204 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +506366373 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1532951729 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +741178629 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +902563815 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +463167222 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1103955047 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1951010099 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +553989686 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +959034980 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1151127333 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1362912271 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1832850207 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +889219561 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +433604978 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +626496087 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +635452731 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +330863128 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1620092218 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +491218472 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1292426539 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +258843143 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +357246440 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +963861838 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1077041644 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +241667513 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +486872233 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1232481312 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +348326496 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1452354917 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +9349941 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +145216238 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2009454034 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +175348716 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +879503983 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1150790928 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1277866921 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +716247157 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +767940867 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +108049420 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2063369193 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1980892218 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +247699384 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +402042714 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +457940892 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1415452099 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1618253928 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +803402003 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +890144318 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +476082060 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +966874588 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1057688782 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2137716073 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +26294663 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +725298473 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +382675226 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +303371943 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +444453736 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +435297680 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1313039314 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1682232784 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +299766953 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +71730966 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +943674474 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1001891734 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2104093497 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2101895499 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1792990236 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +135766202 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +286917756 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +18528187 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +928201328 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +231491542 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +558403791 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +431361067 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1000340776 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +82585937 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1980030228 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1981268356 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +703719023 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +382194767 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1612990392 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1902456493 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1273023638 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +591384754 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1858588681 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1271298797 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1105834312 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +748327703 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1186392568 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +492491346 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1868954517 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +525979125 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +961055428 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1024505348 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +840712479 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1922080286 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2017505133 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +16735996 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +791532158 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +521833231 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +801012610 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1352030954 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2104872688 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +346561129 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +476596045 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +680963227 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1614136232 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1354128891 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2080926327 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +832412589 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +2132106587 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +660359941 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +457897644 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +892813220 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1150888591 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1554247329 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +916134877 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1724242354 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1751183289 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +218075390 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1947816597 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +768341392 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +329650413 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1875985618 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1797202397 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2029881457 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1388025364 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +298487632 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +633572403 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1156763630 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +36227294 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1180530094 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +918646667 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +533498695 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1398340121 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1449959486 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1795882677 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +712752640 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1606846758 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1140700615 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1085327453 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1189153268 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1428741726 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +692263373 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +167809993 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +153537168 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1824623487 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +981884242 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1207046045 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +709169628 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +324731500 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +340900159 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +181771653 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1533399943 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1720914578 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +442715385 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +456764415 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1259505838 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +129350769 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1451575721 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +478884956 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +323723511 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +934461189 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1738273422 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1882171841 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +13993961 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +219067730 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1563494834 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2067086687 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1269206405 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1514322361 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +188510666 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +389246743 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +597464205 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +80646102 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +322039408 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +215769440 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +128726921 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1677238444 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1214669829 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1038517593 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1594944334 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1576658396 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1666600984 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +696889283 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +93587476 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2074691221 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +626450279 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1858391728 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1220792050 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1727932848 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +673590805 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1613067703 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1343913807 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +434247212 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +568529079 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +604142098 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1652079084 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +2142735733 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1346653354 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +293372229 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +144160669 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1125482070 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1107850657 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1212351786 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1190075281 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1913386471 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +722018471 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1934969458 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1176471788 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +807399328 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +112282964 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +279640520 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +568884215 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1291176452 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1971154127 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1657358605 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +552009369 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +881903403 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1323019396 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +867090436 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1975447509 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +809421880 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1932895333 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +336185100 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2128221694 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +444367625 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1689196131 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +651314607 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1030251268 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1731842262 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1531751810 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +553532052 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +676718197 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1644153543 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +2100653128 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1201507456 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +2059585897 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1309742903 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +287907863 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +1835944618 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1359177249 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1684742228 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +252802370 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +607063761 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +348586184 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1535669234 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2013446327 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +823465526 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1885729483 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +5742868 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +798097518 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +339056693 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +298164129 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +164911160 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1540550205 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +1078643482 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +1570547746 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf +1950845037 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +195643925 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +2021035852 example_data/SWGCP-satisfiable-instances/SWlin2006.10286.cnf +27929334 example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf +402797473 example_data/SWGCP-satisfiable-instances/SWlin2006.19724.cnf +536520640 example_data/SWGCP-satisfiable-instances/SWlin2006.8287.cnf +1652681748 example_data/SWGCP-satisfiable-instances/SWlin2006.2705.cnf diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/test_instance_seed_file_saved-SWGCP-satisfiable-small-test.txt-numRun_0.txt b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/test_instance_seed_file_saved-SWGCP-satisfiable-small-test.txt-numRun_0.txt new file mode 100644 index 000000000..4ae08f3ff --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/paramils-out/test_instance_seed_file_saved-SWGCP-satisfiable-small-test.txt-numRun_0.txt @@ -0,0 +1,2000 @@ +1146859165 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +672366178 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +9886754 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +93148022 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1708317524 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +301898490 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +633000878 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2114631564 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +385269743 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1653526072 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +384183579 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +647339952 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1423976552 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +881048618 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +741297384 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +44649610 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +743982375 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1245217504 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1420666147 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1450306296 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +979505366 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1733028247 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1099189220 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1973490419 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1419947541 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +445380817 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2135599980 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2100615346 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +496213429 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2075480282 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1162877981 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +18966011 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1820115033 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1913537771 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1768066261 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +762515371 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +654246750 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1072172306 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2099618582 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1165855341 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1825225324 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +969057281 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1023290769 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2064048513 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +278085334 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +923538699 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1134366791 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1687678276 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1134755508 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1675128125 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1147280459 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1297794882 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1716423091 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +436316537 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +756718530 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +710541548 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1332122640 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +231041575 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1472781717 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1721034138 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +505344893 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +999849558 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1346724273 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +778002105 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +979429826 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +938612977 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1766693719 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1581817414 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1462991405 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1522301134 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2027111616 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1984348799 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1600378320 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1479332024 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1218328720 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +922715172 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +731602136 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +576347831 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1677931108 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +469599848 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +952235662 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +888016404 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1308051016 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1218577583 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1709029268 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1484839409 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1342987815 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +303077566 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1037820804 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1784753026 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +483877431 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +254827888 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1412635646 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1428525344 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1828470269 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1237046720 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +440698753 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1672031431 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1770861293 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1491639373 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +853442175 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1160038119 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1663617709 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +718158342 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +192164107 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +514121063 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1771115707 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +898596550 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1645378616 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1123761417 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1689476431 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1384915649 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1123781031 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +888559622 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2013174368 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1893053644 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +266335085 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +55938265 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +555741923 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2092851185 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1930538762 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1083005383 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +696227553 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +609617110 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +617273433 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1944959732 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +19203132 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +639296375 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +467655868 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2121255829 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +92686332 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +440993928 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +225024240 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1411258951 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +487932288 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1044782812 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1143559420 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1204369242 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +86217648 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1942435342 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1739151640 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +657946894 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1015593212 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2038838447 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1716256252 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1962045076 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +612614364 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1564435721 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1140865191 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1454090513 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +809100126 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1824798232 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +886134044 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +252493082 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +5565213 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +873693819 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1978603594 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +923121052 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2126927417 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +935292332 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1709432199 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +507801027 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +784884464 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1077224557 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1585823003 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +330130358 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1149581624 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1835158178 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1815331735 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +60777139 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +38457577 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1848242105 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +657394419 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2067550686 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +464216170 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +258988432 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1508618518 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2059767195 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1421544338 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +929176144 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +197417879 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +718582024 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1087971165 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1293676949 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1253828871 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +500941894 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +849049705 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2114415629 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1271079309 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1026372410 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +985887793 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2130626867 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +738193559 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +306398255 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2039468696 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1462425878 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1199897449 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1415154265 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1667952266 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1225243647 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1545993738 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +306325572 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1224946019 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1668603901 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +931607376 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1832357828 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2138985407 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1209142490 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +154195688 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +177664835 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1387388911 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +536111368 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +3930625 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1412218612 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1540318827 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +448202264 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1516070066 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +279208812 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1382112931 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +763285596 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +663074051 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +609961465 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1453396540 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1354917486 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1832181559 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1407662906 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +646724795 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +81100728 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1738096506 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1630606756 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +343254905 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +535455574 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +398852217 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +528096571 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1925199485 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +931064955 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1109238979 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1545911371 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1159885652 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +163927453 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1596720921 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +522567373 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +115847192 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1801946710 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +185387075 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1516694055 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +896800194 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +141251176 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1806918354 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1945139908 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1562177000 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1741597253 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +530402202 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2072835895 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1990200169 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +716205014 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +576038405 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1597073343 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +180354473 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1484265520 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1621312968 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1591693222 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2046934503 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2067446577 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +685809216 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +362066755 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1619733346 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1912539388 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +89526951 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1956389761 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2140435750 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +594274759 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +978966439 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1907120542 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1137153298 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +837534898 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1376612125 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +87119891 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1690048007 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1516657384 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1838040203 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +926135816 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2033078441 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1715173919 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1313776460 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1608999379 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1566424304 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1008310983 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1190289645 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1397962505 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1191215525 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +605562846 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +523192333 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1598500012 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +809215334 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +646511377 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1930997147 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +301717783 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1999050307 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1806523712 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +425113763 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +508753957 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2063556916 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +620272131 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +43104059 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +774817565 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1904123276 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1469142856 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1831007280 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +692550986 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1832308563 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +469939099 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +300159029 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1665774575 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +343581278 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +926946939 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +955691074 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2057491336 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +258960789 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +813811297 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +768668883 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1554822292 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +555243579 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1353144291 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1099825098 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1930692338 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1425869095 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +403683713 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +658323953 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1622724301 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1813293614 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1300137079 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1594477061 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2072847274 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1972267515 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +556578414 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +523167775 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2102837194 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +216324898 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +356161470 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +696061687 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1491554086 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1647120919 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +930352150 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +468849322 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1574054495 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +992027798 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2074618823 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1830580711 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2034004185 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +414875699 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1314980442 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2044003840 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2041032623 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +245534781 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1955366358 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1909527027 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1061114009 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +398384323 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +683235613 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1432622778 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +441900272 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1907028388 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2045395405 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1273162615 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +389079545 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +110210931 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1520647493 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1214623502 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1332965697 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +576122511 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +766405667 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +501207207 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +867864388 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1623071200 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +737006373 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +175508037 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1233571258 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +932441347 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1669549953 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1895165982 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1140862122 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1310787380 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +833609350 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1757205693 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1129223261 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +156149566 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +377890459 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +865764058 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +424658828 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1318186685 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1326018222 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +602114183 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1434876843 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1823824432 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1243227789 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1130351333 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1835501699 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +20399485 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1082627157 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2115141001 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1408216617 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1052505803 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +230001880 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +257988418 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +611941912 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1143205562 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1078133187 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +240231316 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +195410422 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1242881897 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1616870182 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1188728006 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +802242457 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1197229972 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1433591429 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1347772104 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1490159791 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1081285952 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +583991518 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +938429174 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +605372292 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +668050725 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1869257243 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +610422162 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1075002010 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +974106213 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +855335229 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +276562108 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1250695187 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +751863024 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1889015976 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1259226182 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1016814763 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +791247894 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1758328552 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1347804103 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1059290800 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +369106894 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +583368034 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1870751800 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +226898426 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1223588348 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +697945058 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1164782932 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2035056241 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1453716541 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1655067149 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +547033976 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +850630797 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1231750433 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +333803096 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +325229563 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1168664241 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +875061147 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1364545639 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1253329787 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1078800476 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1655432982 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +229986262 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1262909076 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +615822808 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1915664890 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +57642920 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1370724761 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +4689569 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +997118063 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +733298548 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +26388527 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1175817602 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +873345479 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2107717910 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1319179309 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1327993905 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1933278404 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1794720559 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +192885798 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +475888461 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +215956002 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +264937749 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +879989764 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1950477468 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1416946319 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1740969834 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1634977628 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +70615518 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1693430609 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +808161895 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +247446540 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +751047037 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1431585427 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +389014713 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1841122376 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +452794374 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +107252136 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2039454332 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1872824081 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1728625837 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1145442560 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +255775133 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1618532619 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +581194215 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +553618949 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +303477347 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1441930166 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1974674393 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +568738491 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1478593575 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +734530831 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +754396183 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +967736096 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2144147951 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +621313575 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1771549971 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1216282020 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +366684253 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +744684884 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +669410568 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +108381408 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +351763275 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +503246784 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1113338088 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1810395954 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1029459766 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1547989803 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +174946701 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +57504299 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +976696623 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +895882525 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2066212451 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +272423130 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1406377372 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +379331450 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2018774436 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2121357503 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1279730772 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1210381047 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1753458915 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1377606204 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1829185575 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +194536943 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1463346870 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +562703441 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +74236711 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1894610647 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +399880515 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2006854118 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +681668701 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +828484948 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +494616779 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1135492578 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +319282230 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +551272671 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +690796752 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1440081704 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1219824837 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1262218049 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +497232517 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1210277495 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +839006997 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1743008221 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1109093362 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1180863778 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +433572603 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +556410798 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +522609969 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1696957618 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +992380541 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +216314414 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +152271211 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2074847711 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1887979026 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +593174563 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1150504456 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +157789513 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2113721980 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +215317425 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1723454162 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +520076635 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1191932150 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1005210811 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1782719183 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1811139521 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1880208498 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1305328834 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1196866451 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2080156352 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +547129664 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +109715978 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1336807171 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1364464014 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1710825657 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +891349983 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +538506412 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +779900983 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +429747203 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1477718017 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2054492554 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +901088213 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1089283763 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +770223073 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +272726902 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1167832556 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1485284940 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2032883096 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1782579551 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1550859295 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +192305775 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1650860427 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +726597346 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +242109047 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +623776168 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +140381093 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +845424234 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +767002443 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +3020609 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +554807612 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +17575278 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1835769501 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1021004295 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1884283397 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1932486698 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +508208057 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +633037421 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +239933991 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2061237831 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1908406990 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1466213381 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +592817424 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +358741597 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +636261219 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +478184909 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +613981375 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1419495353 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1635916550 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1212871936 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1119411817 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +701017284 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1365377027 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1951429843 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2144798133 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1243704431 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2127404627 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +788934120 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1472644941 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1148618787 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +445940890 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +717740841 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1013224845 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2099222734 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1651982683 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1153038791 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1007731136 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1921881722 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1790413902 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +653661880 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +909710171 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +451053570 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +288037570 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +260369648 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1664605329 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +397406674 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +788601534 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1109726813 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1961224317 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +724881333 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2043895444 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1203356805 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1486175257 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +61324486 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +469166037 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +920238993 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1839903098 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2026465753 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1959528121 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1743666693 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1646547822 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +581376206 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +377065302 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +453670658 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +331927596 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +662766642 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2001904937 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +844675071 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +48701470 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1454988782 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1579344872 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1666910521 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +203426252 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1868959430 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1316433272 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +12208852 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1956424941 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1281400637 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1625921111 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1359141985 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +594858616 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +912222213 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +233626410 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1631891358 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1072423403 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1953165078 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +308052824 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +765568734 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1780900775 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1893888424 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +798757545 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +560490648 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1163216152 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +914689950 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +803955989 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +769765180 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1612352124 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +213545742 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +688112626 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2113366761 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +167735737 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1227740710 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +232380463 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1364562253 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2066621901 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1513119469 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +346401584 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1313217097 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1793148739 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1362694894 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1578037870 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +844013330 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +542283996 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +973557278 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1270967779 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +984710271 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1414015287 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +212820642 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +609451355 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1526790968 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1636816007 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +829646962 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1446948796 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +111441834 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1176084332 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +908349566 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1111414313 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +668302957 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +155603755 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +615343919 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1652342169 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +587928169 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1950043776 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1494393371 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2121501471 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1588977301 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +444418558 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1428328945 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1714141388 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +840707285 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +19572724 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +741075530 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1357651402 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +755454619 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +374675086 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1719428408 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +170290195 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +450448435 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1397525089 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +494682405 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1527954249 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1471109025 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1401675763 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1791019461 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +716025210 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1955533387 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +203542113 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1653985578 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1252790257 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1419471897 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +540884485 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +430959696 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +442485409 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1695163382 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2067953700 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +219006683 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +297070784 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1626140892 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +616625118 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +967879501 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +54765914 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +786515903 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1553535896 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2016997319 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1286198642 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1484897547 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +202911664 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +178963572 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +552952904 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1336616835 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1545121464 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1760289255 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1985451445 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1165634736 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1781257765 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2043863960 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +992109472 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1047721314 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1713926994 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1399315051 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +780625423 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1198263042 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +598783755 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +765669931 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +421538690 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1806795770 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +997716824 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1054855743 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1226306152 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2047380744 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +718016029 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +346780946 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +974249773 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1273484860 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1513055037 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +227969923 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1020753186 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +701047155 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +277462373 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +667585355 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1470181843 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +115664461 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1044209613 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +365809996 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +190484556 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1907646605 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1697594963 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1638128326 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1046760270 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1293343822 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1129721882 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1209305322 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +22923645 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +638475034 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1709455053 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1440748752 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +4101811 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1260724482 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +43798578 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +330261051 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +610960624 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +485179943 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +829092239 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +274984927 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1641656763 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +640061226 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +877681482 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1476927287 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1042402272 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1408407923 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +518591325 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +669168468 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +231718543 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +865227585 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1432105622 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1943205081 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1591927852 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1793412560 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1386201057 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2004988547 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +127144775 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2065670242 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +273348557 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1194866548 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1714841834 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1234221702 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +402670266 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1260131072 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +673179235 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1819859323 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +734584511 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +787427680 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +888897794 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +872293489 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1506997495 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +328353386 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +753147399 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +378509288 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +403778122 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +561582698 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +190908609 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2047400037 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1444427516 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1860248893 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +850911824 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1749283170 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +930725870 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1510787877 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +452354558 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +147737134 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +158425480 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1812646207 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +351310060 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1739606477 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +994034434 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1152421636 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2072973856 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2073035543 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +38337894 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +867872973 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2037001369 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1038779059 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +114947929 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +339004487 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1155386882 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2058191779 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1346976110 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1598940944 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2079537542 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2094013515 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +541934472 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2071221649 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +287251280 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +56335421 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +554529377 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +486611366 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1397765897 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1109035855 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1960685813 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +239954778 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1652160069 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1588463179 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1964511093 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +583049139 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1354162014 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1639546017 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1040344621 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1663762900 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1917055868 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +574350065 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +349271283 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1698012278 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1967062788 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1806913085 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +305962852 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +83068620 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1859895505 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +272363694 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +945294378 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1198141736 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +997399929 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +559197238 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1690643604 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1879443115 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +735636813 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +597020260 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1842378796 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1232688611 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +686398026 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2079416452 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +525606010 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1210279005 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1029305698 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1005525793 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +268098711 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1113930294 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +138210287 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2116962407 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +634361496 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1083086038 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1030360533 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +344928393 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1593949140 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +275656476 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +153939216 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +728327981 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1126132883 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1449503215 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1097175176 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1891292126 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +416015996 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +837603608 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2057959167 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +610555113 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1792437734 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +706645047 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +234309867 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1424738119 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +720785534 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +554313461 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +792787753 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +239816659 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2005740595 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1322795105 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +935348606 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +446173640 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +626732001 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1272074223 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1977952368 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1625592545 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1903544989 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1366573747 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +238820198 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1752839876 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +758938823 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +86164672 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1449459482 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2002838216 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +223918875 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2108570640 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +523631586 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1753265767 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1602126712 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +640610880 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1284239474 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +675836823 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +560004099 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1426862051 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +279427046 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +458493223 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1238418942 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1390779681 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1981188001 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1777091307 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1479436079 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +888713993 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +739946664 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1479775992 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +340478822 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1484018481 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +708351134 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +786115862 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +191593943 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +190905034 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1131860238 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +544985033 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1823637308 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1223842600 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +286930683 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1906594818 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +604610572 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +581175130 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1440996198 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1059647792 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +224018476 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +237812640 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1514786124 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +601276591 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +464625755 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1326060604 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +708137662 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1003351011 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +444011408 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1592139436 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1662532110 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +196114783 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +174071590 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1401756833 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2027178895 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +590692593 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +891734857 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1217451602 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1798246812 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +724813403 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +278210953 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +33467250 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +480845419 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2020145142 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +78036354 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1428147890 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +148063560 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2043506485 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1639603036 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +343582619 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +975187089 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2131513399 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1437429248 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2123355771 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +600451220 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +321868338 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1947421865 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1177620701 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1646726908 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1579339578 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2000823265 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1026821815 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1560800806 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1475266408 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +467042702 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1749991524 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1365176716 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +613367138 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1602283594 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +713362600 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1736459610 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1564467506 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1516429429 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1851876017 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +279565878 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +240262109 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1655467146 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +773086070 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2139282085 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +75096074 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1727398838 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2052132175 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1057892358 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +710532475 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +20506107 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +507330409 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +865231313 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1602329501 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +734107572 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +378006468 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +816369759 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +843275438 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1036067426 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +904948326 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1908394626 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +427638781 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1647720643 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1437724601 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +767896879 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1884694320 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1061322479 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1404752749 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1337204916 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1758667445 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1654960132 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1824302866 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1571363571 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +935196791 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +978982952 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +387350939 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1668776560 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +832280806 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +57887591 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +466300156 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1750680593 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2140136360 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1737279037 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +438979517 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +361744115 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +448351404 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +631415326 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1045079613 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +469443337 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1186233638 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1112716522 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2000859540 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1895908700 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +180814509 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1350664527 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +898074841 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +38503399 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +895413121 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +645448499 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +329235717 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1227004430 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1887507000 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +538697062 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1096680262 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1272544921 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +620989516 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1748526817 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +25719081 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1683413536 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2052592827 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +142622370 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1586977666 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1350588350 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +773751888 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +293746219 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +366033236 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1061527158 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +501350650 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +634289744 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +107676074 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +973680256 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +982285265 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1571650624 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1576203190 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +226724159 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +693704653 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2095265705 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +713928103 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +925401378 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1797401261 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +442926023 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1248351711 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +40331702 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +902452146 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +806803287 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +291461409 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1372662466 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +17995282 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1669044256 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +716974084 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +4934227 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1409638654 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +903199858 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1442569236 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1373731899 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +815276324 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +832130856 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1350294246 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +593141260 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +993755653 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2061008554 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +966223917 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +487960341 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1275610216 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1947133190 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1136248312 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +338855423 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +937202177 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1703522107 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +259808673 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +116153187 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +667061972 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1515630928 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +741662190 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1311119094 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1868176035 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +96317520 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1272862348 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1675331214 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +472586204 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +731135241 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1094215439 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +347391279 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1251045101 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1884667705 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1744937683 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1544785265 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1580389630 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1237001644 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +919096876 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2126482464 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +264537412 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +620821600 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1589400462 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +490000325 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +960857239 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +575029863 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1679381589 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +562374729 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +768454689 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +17614004 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1674694385 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1031774526 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +850726484 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1193356484 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +748251665 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +984489317 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +116024281 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +754745921 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +788021953 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +290301267 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2024281362 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +497060615 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +497772697 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1477752470 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1160996892 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +995410781 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1171762038 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1459860669 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +353543056 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1094255187 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +384565478 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1734185333 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1879876159 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +444742383 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +721809933 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2052851254 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1760616857 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1594887369 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1842508478 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +863233458 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1450087929 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1747558188 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1904104665 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1917822751 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +26375539 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1639658562 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1957552561 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1785529414 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +960716475 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +539563847 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +329881760 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1010237156 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +608776274 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2067201350 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +791153321 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +559380191 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +749106412 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +130061167 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +869435102 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +506329172 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1156023225 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1812371719 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2110054173 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1738228586 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +222593553 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +691391188 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1952397073 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +280688825 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +347627128 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2000908503 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +303803875 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +854034845 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +800026936 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2019132282 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +578817147 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1091492232 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1176673620 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +276398236 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1916503954 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +779685948 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1268938263 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +555783122 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +701133166 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +707514351 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +839697427 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +835066404 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1087757766 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1819710875 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +850514940 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +752544456 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1461402552 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1030061667 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1023323968 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +454333454 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1567570225 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1125749986 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1558704548 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1045093499 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +645499608 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1989061726 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1770993084 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1298120183 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1236872033 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1880585995 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1568053369 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +933793462 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1684783167 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +919216032 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1761833565 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +149809715 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1079391412 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +182472422 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +690543069 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1715995874 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1411943041 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +318938068 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +936055644 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +511139662 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +703168135 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1973003522 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1740115320 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +115110216 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +280870843 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +346142021 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1850396682 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1753736033 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +199415628 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2056978792 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1803812778 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +262472379 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1899157911 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +416796478 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1967984176 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +110133125 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +348944605 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +15450018 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1993736079 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1309685328 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +96820739 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +635785468 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1556177003 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +862545005 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1304577657 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1547516632 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1082915821 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +233379010 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1046985653 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1880025268 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +558290801 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +411457127 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +412049897 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1696615180 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +463097658 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1008176873 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1635479876 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +957784009 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +220833580 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1793340649 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +590438534 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1760523397 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +302802098 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1450826031 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1108452793 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1439814352 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +702440259 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1486788248 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +39870162 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +786264680 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2029171683 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +406500394 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1919323355 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2004321472 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1217849069 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1698859597 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +113672212 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +383786233 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1935319363 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1553431977 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +914031526 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1115956410 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2053852584 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +56459883 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +864676833 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1253792045 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1227245312 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2033797743 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1829047294 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +476908603 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +367417123 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +486719672 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1515253086 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1688907080 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +490383691 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1854325648 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1922023814 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +616435527 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +236885286 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1867841062 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +923300691 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1139382068 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1426542219 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1190193413 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +309807415 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1305910239 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1809295083 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1979376387 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +15128167 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +705970947 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1046973089 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1573324755 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1998683642 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1646653725 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +634551862 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +598130426 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +696906414 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +814684058 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +73949097 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1720782461 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1315399199 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +91054392 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1124618429 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1200350045 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1178199439 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +545598108 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1099190540 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1284669119 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2095577360 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +841539010 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +182322098 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +543186205 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2020047386 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +227736413 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1261699202 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1621810733 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +84260711 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1508326222 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1334702793 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +753584699 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2086955793 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1805405835 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1550634613 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +758369693 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +594162856 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +360708877 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +796854894 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +744090807 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +817190762 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +632438444 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +372957615 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +372334030 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +902623674 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1374920471 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1765339236 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1834111060 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +442078385 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1358402441 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1484463498 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +921453814 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1248820055 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +771162175 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +476344957 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1695457615 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +612715540 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +649142377 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +278886539 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +981843803 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1615808961 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +815267338 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1954227094 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +186464378 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +442755910 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +78921206 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +980123212 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2073556887 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +984182042 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2019706323 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1683488718 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +993072901 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +313689606 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1410925729 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +320700148 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2078435495 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1243804079 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1492548775 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +572773024 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +573747462 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2075943350 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1233130210 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1805482325 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1435444743 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2104764837 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +363678250 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1593621137 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +365851353 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +671636165 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +954125213 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1255075625 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +65740702 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1617280620 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +109094628 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +747179445 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1263214186 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1738292624 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +935992338 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +628754139 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2070570887 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +114032962 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1491593622 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1714147609 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +553966238 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1510703475 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +610846962 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +82195912 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +189361020 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +455560731 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1661216206 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +777817583 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1177520955 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +449902941 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +521930617 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1524170568 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +656225246 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +824516293 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1483094748 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +343109217 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2025058218 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1632341864 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +598723317 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +485227921 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2050444218 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2014359763 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +89024233 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1314002544 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1938853587 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1457356657 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +920089017 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1719043944 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +147896660 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1479575912 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +828158455 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +152223102 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1150396242 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +383585005 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1390376900 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1742666661 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1099552905 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1709491800 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1556449526 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1008989627 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1543515641 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +79846102 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1489524082 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1516138050 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1655061303 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1671971897 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1617894532 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1827213385 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +937629354 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +78820493 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1649491580 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1734255557 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +861121430 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1391076563 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +78691138 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +638992685 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +399781012 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +270937541 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1573903428 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +965942339 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +899709884 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1967697987 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +510608813 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1091443085 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +737132469 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +733724115 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +587907552 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +281271566 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2144452699 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1975793241 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +629328654 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1006994790 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +558772253 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +635922822 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +376644923 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1483500659 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1260524400 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +544726851 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1182032902 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +228364932 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +424083549 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2100235195 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2098614341 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1671359230 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +560405220 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +533030251 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1298752018 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1805305022 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +400685523 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +183911585 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +749037985 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1147728815 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +665850153 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +649453013 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +696334587 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1871852719 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1308420262 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1782726172 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1573506283 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2141703414 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +155877544 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +322835774 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1609109851 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +180167741 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +802305158 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1102704746 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +350715410 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +208757383 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1296736559 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1820401233 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +171160855 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1459456074 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +97228892 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1169861393 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1271260594 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +240235849 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2141840106 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1848991364 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1370531106 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +119960379 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +83695355 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +317803655 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1596294312 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +804918156 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +559075348 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2039018698 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +687174496 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +731273950 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2144020824 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1488360019 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +395509114 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +56298921 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2037553127 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1477973170 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +215413827 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1450926230 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2069776911 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2109991056 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1466430160 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1961975770 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +496207185 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1178485208 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +106040953 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1471434867 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1916357023 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1540859337 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2033040255 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1666082224 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +349826874 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1485174633 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +919315286 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1694306982 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +244528083 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1034253546 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +171293269 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +627978295 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1851655638 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +565253134 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +716876661 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +858729069 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +670393539 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1962043036 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1899586459 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1137461868 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +464538769 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1392385402 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +664065578 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +381023467 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +799758073 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1407969114 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +221976861 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1629231739 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +293304998 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1503189645 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1968487435 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +558241477 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1898499810 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2131117208 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +338779877 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1014468393 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +906167402 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1449597265 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +494739388 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2045982923 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +433551042 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +70240507 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1336154889 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +826303470 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +662469301 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1147981153 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1447239518 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1992593614 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +43310576 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +858786299 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1601044164 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1946767280 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +485689444 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1060052905 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1468193673 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +74844809 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2097718650 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1103036534 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1928580997 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +60795806 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1783439315 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +766516066 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2127956222 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1784581514 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1057433224 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1025855020 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1110487887 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1835421073 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2077007090 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1096527577 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1545700607 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +539067971 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1089837500 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +794834337 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1880425037 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1894760475 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +137876767 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1199797885 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +148169308 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1968542395 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1607031122 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1549423383 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +681740328 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +755014601 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1861192622 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1508848837 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1529842545 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +394328895 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1578512033 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +165917455 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +946402053 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1642882608 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1472253567 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1934376991 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +3662054 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +787784298 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1985724599 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +578801433 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +760695663 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +465573652 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +243982537 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1728139634 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1569437738 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +564497387 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1711752629 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +106849641 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +933596395 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +612431067 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2004707632 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1803434092 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1354002319 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +227167524 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1606564628 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +666003152 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +938332932 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1089541550 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +225793560 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1185159048 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1376732689 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1135023123 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +604762866 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1313475594 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1079559331 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1700668087 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1749199899 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1433028149 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +208257721 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1792711761 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +748518072 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +810336342 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1466403808 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +36565598 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1799320232 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1276301442 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +929625176 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +226573282 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1835665258 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1150118645 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1776406474 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1733387493 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1233133055 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +928489608 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1994950883 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +624121045 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +260182429 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +304166163 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1120702650 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +839321231 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1121402572 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +531313406 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1405029772 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1634643104 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +738776356 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1435022742 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +309348731 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1086284273 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +8648872 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1309432124 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1591665588 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1896363477 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1500548050 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +447005970 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1764240832 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1831207097 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1548712198 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1446244244 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1276060347 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1148817522 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +265484297 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +590956860 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +99470653 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +816773604 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1492589014 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +204226812 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1722199667 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2025244848 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1144677764 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1310478440 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +247632704 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +740460406 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +939663116 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +238527396 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +439482330 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +128200982 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +643457734 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +181764054 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1751681605 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2055882944 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1511101410 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +910760023 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1468925908 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +874967796 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +75925632 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2092790283 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1280585551 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1598426747 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1441228169 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1941976112 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1107646369 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +813109857 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1705548848 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1128040639 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +276574959 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +753248040 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1062973750 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1418171900 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +82433036 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1451185799 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +464938779 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +2140697630 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2028224154 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +387730365 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1648712585 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1295164426 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1869602784 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1614136490 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1721615738 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1177425131 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +882544769 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1339986683 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +947940738 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +991733631 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1892507046 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1579557396 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1548042818 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1449319640 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1435651407 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +509208829 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1076371130 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +356503798 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1441061712 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +930046953 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1869526721 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +908444216 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2015495559 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +680658203 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1919837211 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1834979392 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +770335396 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2118547381 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +586596427 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1246327910 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1546497339 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +374996537 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +940036143 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2032821490 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1300860757 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1947498555 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1961140309 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +958980008 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +401898658 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +2126296460 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1856598907 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +567409848 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1705386610 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +143575460 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +133949684 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1815694475 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +792779399 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1418487017 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2085596047 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +2111556671 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +530318337 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1839041037 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +2112259989 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +437035315 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +392716781 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +471948724 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1721691570 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1130796540 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1098977330 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +61067858 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1025605747 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +139727795 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2022110314 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1092877671 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1357517682 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +221210190 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1272169763 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +777802527 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +236778247 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1184175910 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +106326946 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +411658414 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1573662175 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1544519013 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +374312766 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +2013813640 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +666507086 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +959919282 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1666145244 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1213087934 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +343403729 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +201677985 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1727598384 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1371959827 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +1949625488 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1689272067 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +618719543 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +715656629 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1493630800 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1917253489 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +666160950 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1142757599 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +280137676 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +1012824991 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +1405733177 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf +1209696102 example_data/SWGCP-satisfiable-instances/SWlin2006.18830.cnf +1399402404 example_data/SWGCP-satisfiable-instances/SWlin2006.4166.cnf +71821330 example_data/SWGCP-satisfiable-instances/SWlin2006.12713.cnf +181598351 example_data/SWGCP-satisfiable-instances/SWlin2006.11218.cnf +15753009 example_data/SWGCP-satisfiable-instances/SWlin2006.4435.cnf diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/saps-params.txt b/sparkle/Components/paramils2.3.8-source/example_saps/saps-params.txt new file mode 100755 index 000000000..5dcfe12fb --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/saps-params.txt @@ -0,0 +1,4 @@ +alpha {1.01, 1.066, 1.126, 1.189, 1.256, 1.326, 1.4} [1.189] #uniform on log scale between 1.01 and 1.4 +rho {0, 0.17, 0.333, 0.5, 0.666, 0.83, 1} [0.5] #uniform +ps {0, 0.033, 0.066, 0.1, 0.133, 0.166, 0.2} [0.1] #uniform +wp {0, 0.01, 0.02, 0.03, 0.04, 0.05, 0.06} [0.03] #uniform \ No newline at end of file diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/saps_wrapper.rb b/sparkle/Components/paramils2.3.8-source/example_saps/saps_wrapper.rb new file mode 100755 index 000000000..4501231e8 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/saps_wrapper.rb @@ -0,0 +1,59 @@ +#=== Deal with inputs. +if ARGV.length < 5 + puts "saps_wrapper.rb is a wrapper for the SAPS algorithm." + puts "Usage: ruby saps_wrapper.rb ." + exit -1 +end +cnf_filename = ARGV[0] +instance_specifics = ARGV[1] +cutoff_time = ARGV[2].to_f +cutoff_length = ARGV[3].to_i +seed = ARGV[4].to_i + +#=== Here I assume instance_specifics only contains the desired target quality or nothing at all for the instance, but it could contain more (to be specified in the instance_file or instance_seed_file) +if instance_specifics == "" + qual = 0 +else + qual = instance_specifics.split[0] +end + +paramstring = ARGV[5...ARGV.length].join(" ") + +#=== Build algorithm command and execute it. +cmd = "./example_saps/ubcsat -alg saps #{paramstring} -inst #{cnf_filename} -cutoff #{cutoff_length} -timeout #{cutoff_time} -target #{qual} -seed #{seed} -r stats stdout default,best" + +filename = "./example_saps/ubcsat_output#{rand}.txt" +exec_cmd = "#{cmd} > #{filename}" + +puts "Calling: #{exec_cmd}" +system exec_cmd + +#=== Parse algorithm output to extract relevant information for ParamILS. +solved = nil +runtime = nil +runlength = nil +best_sol = nil + +File.open(filename){|file| + while line = file.gets + if line =~ /SuccessfulRuns = (\d+)/ + numsolved = $1.to_i + if numsolved > 0 + solved = "SAT" + else + solved = "TIMEOUT" + end + end + if line =~ /CPUTime_Mean = (.*)$/ + runtime = $1.to_f + end + if line =~ /Steps_Mean = (\d+)/ + runlength = $1.to_i + end + if line =~ /BestSolution_Mean = (\d+)/ + best_sol = $1.to_i + end + end +} +File.delete(filename) +puts "Result for ParamILS: #{solved}, #{runtime}, #{runlength}, #{best_sol}, #{seed}" diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/scenario-Saps-SWGCP-sat-small-train-small-test.txt b/sparkle/Components/paramils2.3.8-source/example_saps/scenario-Saps-SWGCP-sat-small-train-small-test.txt new file mode 100755 index 000000000..8321f777b --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/scenario-Saps-SWGCP-sat-small-train-small-test.txt @@ -0,0 +1,12 @@ +algo = ruby example_saps/saps_wrapper.rb +execdir = . +deterministic = 0 +run_obj = runtime +overall_obj = mean +cutoff_time = 5 +cutoff_length = max +tunerTimeout = 30 +paramfile = example_saps/saps-params.txt +outdir = example_saps/paramils-out +instance_file = example_data/SWGCP-satisfiable-small-train.txt +test_instance_file = example_data/SWGCP-satisfiable-small-test.txt diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/scenario-Saps-single-QWH-instance.txt b/sparkle/Components/paramils2.3.8-source/example_saps/scenario-Saps-single-QWH-instance.txt new file mode 100755 index 000000000..a1c6d17bd --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/scenario-Saps-single-QWH-instance.txt @@ -0,0 +1,12 @@ +algo = ruby example_saps/saps_wrapper.rb +execdir = . +deterministic = 0 +run_obj = runtime +overall_obj = mean +cutoff_time = 5 +cutoff_length = max +tunerTimeout = 30 +paramfile = example_saps/saps-params.txt +outdir = example_saps/paramils-out +instance_file = example_data/qwh-single-inst.txt +test_instance_file = example_data/qwh-single-inst.txt diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/scenario-win-Saps-SWGCP-sat-small-train-small-test.txt b/sparkle/Components/paramils2.3.8-source/example_saps/scenario-win-Saps-SWGCP-sat-small-train-small-test.txt new file mode 100755 index 000000000..ca2d9eb3a --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/scenario-win-Saps-SWGCP-sat-small-train-small-test.txt @@ -0,0 +1,12 @@ +algo = ruby example_saps/win_saps_wrapper.rb +execdir = . +deterministic = 0 +run_obj = runtime +overall_obj = mean +cutoff_time = 5 +cutoff_length = max +tunerTimeout = 30 +paramfile = example_saps/saps-params.txt +outdir = example_saps/paramils-out +instance_file = example_data/SWGCP-satisfiable-small-train.txt +test_instance_file = example_data/SWGCP-satisfiable-small-test.txt diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/tmp.txt b/sparkle/Components/paramils2.3.8-source/example_saps/tmp.txt new file mode 100755 index 000000000..60a6371c8 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/tmp.txt @@ -0,0 +1,2 @@ +Calling: ubcsat.exe -alg saps -alpha 1.189 -wp 0.03 -rho 0.5 -ps 0.1 -inst C:/ParamILS/paramils2.3.2-source/paramils2.3.2-source/example_data/SWGCP-satisfiable-instances/SWlin2006.4072.cnf -cutoff 2147483647 -timeout 5.0 -target 0 -seed 524453158 -r stats stdout default,best > ubcsat_output0.365904820908691.txt +Result for ParamILS: TIMEOUT, 5.0150001049, 1068773, 1, 524453158 diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/ubcsat b/sparkle/Components/paramils2.3.8-source/example_saps/ubcsat new file mode 100755 index 000000000..0ac6bb998 Binary files /dev/null and b/sparkle/Components/paramils2.3.8-source/example_saps/ubcsat differ diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/ubcsat-legal.txt b/sparkle/Components/paramils2.3.8-source/example_saps/ubcsat-legal.txt new file mode 100755 index 000000000..221e03779 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/ubcsat-legal.txt @@ -0,0 +1,75 @@ + ## ## ##### ##### $$$$$ $$$$ $$$$$$ + ## ## ## ## ## $$ $$ $$ $$ + ## ## ##### ## $$$$ $$$$$$ $$ + ## ## ## ## ## $$ $$ $$ $$ + #### ##### ##### $$$$$ $$ $$ $$ + ====================================================== + SLS SAT Solver from The University of British Columbia + ====================================================== + ...Developed by Dave Tompkins (davet [@] cs.ubc.ca)... + ------------------------------------------------------ + ... project website: http://www.satlib.org/ubcsat .... + ------------------------------------------------------ + +FRIENDLY VERSION: + +For academic puposes, you may use the software as you wish + +We respectfully request that you notify us if you: + * modify / improve upon the software + * re-distribute the software + +If you use UBCSAT in your research, we would appreciate a citation in your publication(s). + +(this is a very verbose bibtex entry -- feel free to abbreviate) + +@inproceedings{ubcsat, + author = "Dave A. D. Tompkins and Holger H. Hoos", + title = "{UBCSAT}: An Implementation and Experimentation Environment for {SLS} Algorithms for {SAT} and {MAX-SAT}", + booktitle = "Theory and Applications of Satisfiability Testing: Revised Selected Papers of the Seventh International Conference (SAT 2004, Vancouver, BC, Canada, May 10--13, 2004)", + year = "2005", + pages = "306--320", + editor = "Holger H. Hoos and David G. Mitchell", + series = "Lecture Notes in Computer Science", + volume = "3542", + publisher = "Springer Verlag", + address = "Berlin, Germany" +} + + +If you wish to use this software for commercial applications, obtain the prior +permission of Dr. Holger hoos (hoos@cs.ubc.ca). + +Thanks, and enjoy. + +-The UBCSAT Team + + + +LEGAL VERSION: + +Copyright (c) 2003. The University of British Columbia + +Under no circumstances shall this software and associated documenation +(the "Software") be used in a commercial endeavour without the prior +expressed permission of Dr. Holger Hoos (hoos@cs.ubc.ca) or another designated +faculty member of The University of British Columbia. + +Excluding the above provision, permission is hereby granted, free of charge, +to any person obtaining a copy of the Software, to deal in the Software for +non-commercial applicaitons without restriction, including without limitation +the rights to use, copy, modify, merge, publish, distribute, and to permit +persons to whom the Software is furnished to do so, subject to the following +conditions: + +The above copyright notice and this permission notice shall be included in +all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS +IN THE SOFTWARE. + diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/ubcsat.exe b/sparkle/Components/paramils2.3.8-source/example_saps/ubcsat.exe new file mode 100755 index 000000000..7876661eb Binary files /dev/null and b/sparkle/Components/paramils2.3.8-source/example_saps/ubcsat.exe differ diff --git a/sparkle/Components/paramils2.3.8-source/example_saps/win_saps_wrapper.rb b/sparkle/Components/paramils2.3.8-source/example_saps/win_saps_wrapper.rb new file mode 100755 index 000000000..3e673aae1 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_saps/win_saps_wrapper.rb @@ -0,0 +1,59 @@ +#=== Deal with inputs. +if ARGV.length < 5 + puts "saps_wrapper.rb is a wrapper for the SAPS algorithm." + puts "Usage: ruby saps_wrapper.rb ." + exit -1 +end +cnf_filename = ARGV[0] +instance_specifics = ARGV[1] +cutoff_time = ARGV[2].to_f +cutoff_length = ARGV[3].to_i +seed = ARGV[4].to_i + +#=== Here I assume instance_specifics only contains the desired target quality or nothing at all for the instance, but it could contain more (to be specified in the instance_file or instance_seed_file) +if instance_specifics == "" + qual = 0 +else + qual = instance_specifics.split[0] +end + +paramstring = ARGV[5...ARGV.length].join(" ") + +#=== Build algorithm command and execute it. +cmd = "example_saps/ubcsat.exe -alg saps #{paramstring} -inst #{cnf_filename} -cutoff #{cutoff_length} -timeout #{cutoff_time} -target #{qual} -seed #{seed} -r stats stdout default,best" + +filename = "example_saps/ubcsat_output#{rand}.txt" +exec_cmd = "#{cmd} > #{filename}" + +puts "Calling: #{exec_cmd}" +system exec_cmd + +#=== Parse algorithm output to extract relevant information for ParamILS. +solved = nil +runtime = nil +runlength = nil +best_sol = nil + +File.open(filename){|file| + while line = file.gets + if line =~ /SuccessfulRuns = (\d+)/ + numsolved = $1.to_i + if numsolved > 0 + solved = "SAT" + else + solved = "TIMEOUT" + end + end + if line =~ /CPUTime_Mean = (.*)$/ + runtime = $1.to_f + end + if line =~ /Steps_Mean = (\d+)/ + runlength = $1.to_i + end + if line =~ /BestSolution_Mean = (\d+)/ + best_sol = $1.to_i + end + end +} +File.delete(filename) +puts "Result for ParamILS: #{solved}, #{runtime}, #{runlength}, #{best_sol}, #{seed}" diff --git a/sparkle/Components/paramils2.3.8-source/example_spear/Spear-32_1.2.1 b/sparkle/Components/paramils2.3.8-source/example_spear/Spear-32_1.2.1 new file mode 100755 index 000000000..3c13aaf51 Binary files /dev/null and b/sparkle/Components/paramils2.3.8-source/example_spear/Spear-32_1.2.1 differ diff --git a/sparkle/Components/paramils2.3.8-source/example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt b/sparkle/Components/paramils2.3.8-source/example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt new file mode 100755 index 000000000..8de0ee884 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt @@ -0,0 +1,12 @@ +algo = ruby example_spear/spear_wrapper.rb +execdir = . +deterministic = 0 +run_obj = runtime +overall_obj = mean +cutoff_time = 5 +cutoff_length = max +tunerTimeout = 30 +paramfile = example_spear/spear-params.txt +outdir = example_spear/paramils-out +instance_file = example_data/SWGCP-satisfiable-small-train.txt +test_instance_file = example_data/SWGCP-satisfiable-small-test.txt diff --git a/sparkle/Components/paramils2.3.8-source/example_spear/spear-params.txt b/sparkle/Components/paramils2.3.8-source/example_spear/spear-params.txt new file mode 100755 index 000000000..28f586006 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_spear/spear-params.txt @@ -0,0 +1,38 @@ +sp-var-dec-heur {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19}[0] # Originally, 3,4,9,10 not used following Domgoj's advice. 20 requires modular arithmetic input format +sp-learned-clause-sort-heur {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19}[0] # All values make sense here. 20 requires modular arithmetic input format +sp-orig-clause-sort-heur {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19}[0] # All values make sense here. 20 requires modular arithmetic input format +sp-res-order-heur {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19}[0] # All values make sense here. 20 requires modular arithmetic input format +sp-clause-del-heur {0,1,2}[2] # All values make sense here. +sp-phase-dec-heur {0,1,2,3,4,5,6}[5] # All values make sense here. +sp-resolution {0,1,2}[1] # 0 renders a whole bunch of conditionals irrelevant. +sp-variable-decay {1.1,1.4,2.0}[1.4] # Should be bigger than 1 (o/w increase not decay). +sp-clause-decay {1.1,1.4,2.0}[1.4] # Same thing. +sp-restart-inc {1.1,1.3,1.5,1.7,1.9}[1.5] # 1.3 and 1.7 were introduced later. Uniform because multiplicative. +sp-learned-size-factor {0.1,0.2,0.4,0.8,1.6}[0.4] # 0.2 and 0.8 were introduced later. Uniform on logarithmic scale (starting value). +sp-learned-clauses-inc {1.1,1.2,1.3,1.4,1.5}[1.3] # 1.2 and 1.4 were introduced later. Uniform because multiplicative +sp-clause-activity-inc {0.5,1,1.5}[1] # Domagoj says these make sense. +sp-var-activity-inc {0.5,1,1.5}[1] # Same thing. +sp-rand-phase-dec-freq{0, 0.0001, 0.001, 0.005, 0.01, 0.05}[0.001] # Never picked 0.05 in previous experiments, always zero. +sp-rand-var-dec-freq {0, 0.0001, 0.001, 0.005, 0.01, 0.05}[0.001] # Never picked 0.05 in previous experiments, always zero. +sp-rand-var-dec-scaling {0.3,0.6,0.9,1,1.1}[1] # 0.5 and 2 were introduced later. Domagoj said those are too coarse, so new values. +sp-rand-phase-scaling {0.3,0.6,0.9,1,1.1}[1] # Same thing. +sp-max-res-lit-inc {0.25,0.5,1,2,4}[1] # 0.5 and 2 were introduced later. +sp-first-restart {25,50,100,200,400,800,1600,3200}[100] # Uniform on logarithmic scale (starting value). +sp-res-cutoff-cls {2,4,8,16,20}[8] # 4 and 20 were introduced later. Only 20 allowed, would've used 32. +sp-res-cutoff-lits {100,200,400,800,1600}[400] # 200 and 800 were introduced later. +sp-max-res-runs {1,2,4,8,16,32}[4] # 2, 8, and 32 were introduced later. +sp-update-dec-queue {0,1}[1] # Enable by default. +sp-use-pure-literal-rule {0,1}[1] # Enable by default. No clue what this does +sp-clause-inversion {0,1}[1] # Enable by default. Enable reversion of learned clauses if fixed order (sp-learned-clause-sort-heur=19) + +Conditionals: +sp-rand-phase-dec-freq|sp-phase-dec-heur in {0,1,3,4,5,6} # when heuristic is random, then additional random steps don't change anything +sp-rand-var-dec-scaling|sp-rand-var-dec-freq in {0.0001, 0.001, 0.005, 0.01, 0.05} # not 0 +sp-rand-phase-scaling|sp-rand-phase-dec-freq in {0.0001, 0.001, 0.005, 0.01, 0.05} # not 0 +sp-clause-inversion|sp-learned-clause-sort-heur in {19} + +sp-res-order-heur|sp-resolution in {1,2} +sp-max-res-lit-inc|sp-resolution in {1,2} +sp-res-cutoff-cls|sp-resolution in {1,2} +sp-res-cutoff-lits|sp-resolution in {1,2} +sp-max-res-runs|sp-resolution in {1,2} diff --git a/sparkle/Components/paramils2.3.8-source/example_spear/spear_wrapper.rb b/sparkle/Components/paramils2.3.8-source/example_spear/spear_wrapper.rb new file mode 100755 index 000000000..d04c0ac5c --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/example_spear/spear_wrapper.rb @@ -0,0 +1,61 @@ +# $Id$ +# +# ParamILS wrapper for Spear theorem prover. + +# Deal with inputs. +if ARGV.length < 5 + puts "spear_wrapper.rb is a wrapper for the Spear theorem prover." + puts "Usage: ruby spear_wrapper.rb + ." + exit -1 +end + +input_file = ARGV[0] +#=== Here instance_specifics are not used - but you can put any information into this string you wish ... +instance_specifics = ARGV[1] +timeout = ARGV[2].to_i +cutoff_length = ARGV[3].to_i +seed = ARGV[4].to_i + +# By default, ParamILS builds parameters as -param, but Spear requires +# --param. The following line fixes that. +tmpparams = ARGV[5...ARGV.length].collect{|x| x.sub(/^-sp/, "--sp")} + +# Concatenate all params. +paramstring = tmpparams.join(" ") + +# Build algorithm command and execute it. +# +# Change --dimacs according to your input (--sf for modular arithmetic) +cmd = "./example_spear/Spear-32_1.2.1 --nosplash --time #{paramstring} --dimacs #{input_file} --tmout #{timeout} --seed #{seed}" + +tmp_file = "./example_spear/spear_output#{rand}.txt" +exec_cmd = "#{cmd} > #{tmp_file}" + +STDERR.puts "Calling: #{exec_cmd}" +system exec_cmd + +#=== Parse algorithm output to extract relevant information for ParamILS. +solved = nil +runtime = nil + +solved = "CRASHED" +File.open(tmp_file){|file| + while line = file.gets + if line =~ /s UNSATISFIABLE/ + solved = "UNSAT" + end + if line =~ /s SATISFIABLE/ + solved = "SAT" + end + if line =~ /s UNKNOWN/ + solved = "TIMEOUT" + end + if line =~ /runtime (\d+\.\d+)/ + runtime = $1.to_f + end + end +} +File.delete(tmp_file) +puts "Result for ParamILS: #{solved}, #{runtime}, 0, 0, #{seed}" diff --git a/sparkle/Components/paramils2.3.8-source/global_helper.rb b/sparkle/Components/paramils2.3.8-source/global_helper.rb new file mode 100755 index 000000000..a7b15918d --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/global_helper.rb @@ -0,0 +1,747 @@ +#Methods that are used in multiple scripts. +#require "param_ils_helper.rb" # just for tmpdir + +require "algo_specifics.rb" + +def tmpdir() + if is_win + dir = "C:\\tmp\\" + Dir.mkdir( dir ) unless File.exist?(dir) and File.stat(dir).directory? + return dir + else + if (@temporary_output_dir.length > 0) + return @temporary_output_dir + else + return "/tmp/" + end + end +end + +def float_regexp() + return '[+-]?\d+(?:\.\d+)?(?:[eE][+-]\d+)?'; +end + +def is_win() + return RUBY_PLATFORM =~ /(win|w)32$/ +end + +unless $work_dir + if is_win + filename = "pwd_#{rand}.out" + cmd = "dir | find \"Directory\" > #{filename}" + system cmd + File.open(filename){|file| + line = file.gets + line =~ /Directory of (.*)/ + $work_dir = $1 + } + File.delete(filename) +# puts $work_dir + else + File.popen("pwd"){|file| $work_dir = file.gets.chomp} + end +end +$script_dir_for_cluster ="/.autofs/csother/ubccsprojectarrow/hutter/ParamILS/scripts/" + + +########################################################################### +#Perform a 2-sided Wilcoxon paired sign rank test. Return value: [p_value, median < 0] +########################################################################### +def wilcoxon_test(alpha, x, y) + minlen = [x.length, y.length].min + + #=== With less than six observations you can't determine significance, so return right away. + return [false, -1] if minlen < 6 + + #=== Compute difference of the two vectors. + diff = [] + for i in 0...minlen + diff[i] = x[i] - y[i] + end + + #=== Construct the file holding the R script. + r_command_filename = "/tmp/tmp_r_cmd_#{random_number_without_rand}" + r_result_filename = "/tmp/tmp_r_result_#{random_number_without_rand}" + array_string = diff.join(", ") + File.open(r_command_filename, "w"){|f| + f.puts "diff<-c(#{array_string})" + f.puts "p_value<-wilcox.test(diff, exact=FALSE)$p.value" + f.puts "write(p_value, '#{r_result_filename}')" + } + + #=== Call the R script and read the results from the result file. + system "R CMD BATCH #{r_command_filename}" + File.delete(r_command_filename) + pval = -1 + File.open(r_result_filename){|f| pval = f.gets.chomp.to_f} + File.delete(r_result_filename) + dir, cmd_filename = File.split(r_command_filename) + File.delete(cmd_filename + ".Rout") + + print diff.sort{|x,y| x.abs <=> y.abs}.map{|x| x<0 ? "-" : (x==0 ? "0" : "+" )}.join(" ") + puts " #{pval}" + + require "stats_ils.rb" +# puts "Testing [#{x.join(", ")}] vs [#{y.join(", ")}]: pval=#{pval}" + return [pval < alpha/2, pval] #two-sided test, so divide alpha by 2. +end + +########################################################################### +#Sample from an exponential distribution. +########################################################################### +def generate_samples_from_exponential(median, numSamples) +#=== Simple ruby wrapper that takes the mean of an exponential distribution and generates a sample by calling a built-in function in python. +#One sample works from the command line: cmd = "python -c \"import random; print random.expovariate(#{1/mean})\"" + mean = 1/Math.log(2) * median + cmd = "python ../scripts/exponential_samples.pyt #{1/mean} #{numSamples}" + results = [] + File.popen(cmd){|f| results = f.readlines} + return results.map{|x|x.chomp.to_f} +end + + +########################################################################### +# Run a set of commands on the cluster. +########################################################################### +def runCommandsOnCluster(commands, waitToFinish=false, name = "", output=false, priorityclass="eh") + t=Time.now + datetime = t.strftime("%Y-%m-%d %H-%M-%S") # YYYY-MM-DD HH:MM:SS + todoFilename = "#{tmpdir}#{name}-tmpAlgosToRun-#{datetime}-#{random_number_without_rand}".gsub(/ /,"") + File.open(todoFilename, "w"){|f| + for command in commands + f.puts "#{command}" + end + } + + shFilename = "#{tmpdir}#{name}-tmpShFile-#{datetime}-#{random_number_without_rand}.sh".gsub(/ /,"") + #puts "todoFilename: #{todoFilename}, shFilename: #{shFilename}" + File.open(shFilename, "w"){|f| + f.puts "#!/bin/sh" + f.puts "echo \"Here's what we know from the SGE environment\"" + f.puts "echo HOME=$HOME" + f.puts "echo USER=$USER" + f.puts "echo JOB_ID=$JOB_ID" + f.puts "echo JOB_NAME=$JOB_NAME" + f.puts "echo HOSTNAME=$HOSTNAME" + f.puts "echo SGE_TASK_ID=$SGE_TASK_ID" + f.puts "echo STDOUT_FILE=$stdout" + f.puts "echo STDERR_FILE=$stderr" + f.puts "echo jobin=$jobin" + f.puts "echo jobout=$jobout" + f.puts "echo joberr=$joberr" + f.puts "RUBYLIB=/ubc/cs/home/h/hutter/arrowspace/ParamILS/scripts:/cs/public/lib/pkg/ruby-1.8.2/lib/ruby/site_ruby/1.8:/.autofs/binaries/cspubliclib/pkg/ruby-mysql/mysql-ruby-2.7.1" + f.puts "export RUBYLIB" + #/cs/local/bin in the PATH is absolutely necessary for JAVA, get java.lang.NoClassDefFoundError otherwise !!! + f.puts "PATH=/cs/beta/lib/pkg/sge-6.0u7_1/bin/lx24-x86:/cs/local/bin:/cs/local/generic/bin:/cs/local/bin/pbm+:/usr/local/bin:/usr/bin/X11:/bin:/usr/ucb:/usr/bin:/ubc/cs/home/h/hutter/bin:/ubc/cs/home/h/hutter/bin/ix86linux:/opt/kde3/bin:/opt/gnome/bin:/usr/games:/usr/sbin:/sbin:/usr/lib/java/bin:/cs/public/bin:/cs/public/generic/bin:/cs/public/bin/xwindows:/ubc/cs/home/h/hutter/ruby-scripts:/ubc/cs/home/h/hutter/ruby-scripts/autoparam/:/ubc/cs/home/h/hutter/bioinf/impl/scripts:/ubc/cs/home/h/hutter/lib:/ubc/cs/home/h/hutter/mcmc/bin/:/ubc/cs/home/h/hutter/arrowspace/ParamILS/testbed/scripts:/ubc/cs/home/h/hutter/arrowspace/ParamILS/scripts:/cs/public/lib/pkg/ruby-1.8.2/lib/ruby/site_ruby/1.8:/.autofs/binaries/cspubliclib/pkg/ruby-mysql/mysql-ruby-2.7.1:/ubc/cs/home/h/hutter/ant/bin:$SGE_BINARY_PATH:$PATH" + f.puts "export PATH" + f.puts "ILM_LICENSE_FILE=/cs/local/generic/lib/pkg/ilog/ilm/access.ilm" + f.puts "ILOG_LICENSE_FILE=/cs/local/generic/lib/pkg/ilog/ilm/access.ilm" + if output + f.puts "#\$ -o /ubc/cs/home/h/hutter/arrowspace/sgeout -e /ubc/cs/home/h/hutter/arrowspace/sgeout" + else + f.puts "#\$ -o /dev/null -e /dev/null" + end + f.puts "line=`head -n $SGE_TASK_ID #{todoFilename} | tail -1` # Get line of todoFilename." + + cmd = "cd #{$work_dir};" + f.puts "echo Calling: #{cmd} #output" + f.puts cmd + + #cmd= "pwd" + #f.puts "echo Calling: #{cmd} #output" + #f.puts cmd + cmd= "$line" + f.puts "echo Calling: #{cmd} #output" + f.puts cmd + } + + if commands.length > 0 + consumables = "" + consumables += " -l dbheavy=1" if $dbheavy + consumables += " -l db=1" if $dblight + consumables += " -l cplex=1" if $cplex +# sge_cmd = "qsub -cwd -m n -t 1-#{commands.length} -l memheavy=1 -P eh #{consumables} #{shFilename}" + sge_cmd = "qsub -cwd -m n -t 1-#{commands.length} -P #{priorityclass} #{consumables} #{shFilename}" + end + + puts sge_cmd + puts shFilename + jobid = nil + #=== Start job and remember job id. + File.popen(sge_cmd){|sge_response| + line = sge_response.gets + puts line + if line =~ /Your job (\d+)\./ + jobid = $1.to_i + elsif line =~ /Your job (\d+) \(/ + jobid = $1.to_i + end + } +## File.delete(todoFilename) +# File.delete(shFilename) + + if waitToFinish + #=== Sleep until job done. + puts "Waiting for SGE job #{jobid} to finish. TODO filename = #{todoFilename}" + still_running = true + while still_running + sleep(10) + still_running = false + File.popen("qstat"){|qstat_output| + while line = qstat_output.gets + still_running = true if line =~ /^\s*#{jobid}\s*/ + end + puts "Waiting for SGE job #{jobid} to finish. TODO filename = #{todoFilename}" + } + end + end + return [jobid, todoFilename] +end + +########################################################################### +# Run a set of commands on the cluster, as a single job (not an array job). For commands that are too fast for the scheduler ! +########################################################################### +def runCommandsOnClusterOneJob(commands, waitToFinish=false, name = "", output=false, priorityclass="eh") + t=Time.now + datetime = t.strftime("%Y-%m-%d %H-%M-%S") # YYYY-MM-DD HH:MM:SS + todoFilename = "#{tmpdir}#{name}-tmpAlgosToRun-#{datetime}-#{random_number_without_rand}".gsub(/ /,"") + File.open(todoFilename, "w"){|f| + for command in commands + f.puts "#{command}" + end + } + + shFilename = "#{tmpdir}#{name}-tmpShFile-#{datetime}-#{random_number_without_rand}.sh".gsub(/ /,"") + #puts "todoFilename: #{todoFilename}, shFilename: #{shFilename}" + File.open(shFilename, "w"){|f| + f.puts "#!/bin/sh" + f.puts "echo \"Here's what we know from the SGE environment\"" + f.puts "echo HOME=$HOME" + f.puts "echo USER=$USER" + f.puts "echo JOB_ID=$JOB_ID" + f.puts "echo JOB_NAME=$JOB_NAME" + f.puts "echo HOSTNAME=$HOSTNAME" + f.puts "echo SGE_TASK_ID=$SGE_TASK_ID" + f.puts "echo STDOUT_FILE=$stdout" + f.puts "echo STDERR_FILE=$stderr" + f.puts "echo jobin=$jobin" + f.puts "echo jobout=$jobout" + f.puts "echo joberr=$joberr" + f.puts "RUBYLIB=/ubc/cs/home/h/hutter/arrowspace/ParamILS/scripts:/cs/public/lib/pkg/ruby-1.8.2/lib/ruby/site_ruby/1.8:/.autofs/binaries/cspubliclib/pkg/ruby-mysql/mysql-ruby-2.7.1" + f.puts "export RUBYLIB" + #/cs/local/bin in the PATH is absolutely necessary for JAVA, get java.lang.NoClassDefFoundError otherwise !!! + f.puts "PATH=/ubc/cs/home/h/hutter/arrowspace/ParamILS/scripts:/cs/beta/lib/pkg/sge-6.0u7_1/bin/lx24-x86:/cs/local/bin:/cs/local/generic/bin:/cs/local/bin/pbm+:/usr/local/bin:/usr/bin/X11:/bin:/usr/ucb:/usr/bin:/ubc/cs/home/h/hutter/bin:/ubc/cs/home/h/hutter/bin/ix86linux:/opt/kde3/bin:/opt/gnome/bin:/usr/games:/usr/sbin:/sbin:/usr/lib/java/bin:/cs/public/bin:/cs/public/generic/bin:/cs/public/bin/xwindows:/ubc/cs/home/h/hutter/ruby-scripts:/ubc/cs/home/h/hutter/ruby-scripts/autoparam/:/ubc/cs/home/h/hutter/bioinf/impl/scripts:/ubc/cs/home/h/hutter/lib:/ubc/cs/home/h/hutter/mcmc/bin/:/ubc/cs/home/h/hutter/arrowspace/ParamILS/scripts:/cs/public/lib/pkg/ruby-1.8.2/lib/ruby/site_ruby/1.8:/.autofs/binaries/cspubliclib/pkg/ruby-mysql/mysql-ruby-2.7.1:/ubc/cs/home/h/hutter/ant/bin:$SGE_BINARY_PATH:$PATH" + f.puts "export PATH" + if output + f.puts "#\$ -o /ubc/cs/home/h/hutter/arrowspace/sgeout_onejob -e /ubc/cs/home/h/hutter/arrowspace/sgeout_onejob" + else + f.puts "#\$ -o /dev/null -e /dev/null" + end + cmd = "cd #{$work_dir};" + f.puts "echo Calling: #{cmd} #output" + f.puts cmd + + f.puts "for (( i = 0 ; i <= #{commands.length}; i++ ))" + f.puts "do" + f.puts "line=`head -n $i #{todoFilename} | tail -1` # Get line of todoFilename." + + #cmd= "pwd" + #f.puts "echo Calling: #{cmd} #output" + #f.puts cmd + cmd= "$line" + f.puts "echo Calling: #{cmd} #output" + f.puts cmd + + f.puts "done" + } + + if commands.length > 0 + consumables = "" + consumables += " -l dbheavy=1" if $dbheavy + consumables += " -l db=1" if $dblight + consumables += " -l cplex=1" if $cplex +# sge_cmd = "qsub -cwd -m n -t 1-#{commands.length} -l memheavy=1 -P eh #{consumables} #{shFilename}" + sge_cmd = "qsub -cwd -m n -t 1-1 -P #{priorityclass} #{consumables} #{shFilename}" + end + + puts sge_cmd + puts shFilename + jobid = nil + #=== Start job and remember job id. + File.popen(sge_cmd){|sge_response| + line = sge_response.gets + puts line + if line =~ /Your job (\d+)\./ + jobid = $1.to_i + elsif line =~ /Your job (\d+) \(/ + jobid = $1.to_i + end + } +## File.delete(todoFilename) +# File.delete(shFilename) + + if waitToFinish + #=== Sleep until job done. + puts "Waiting for SGE job #{jobid} to finish. TODO filename = #{todoFilename}" + still_running = true + while still_running + sleep(10) + still_running = false + File.popen("qstat"){|qstat_output| + while line = qstat_output.gets + still_running = true if line =~ /^\s*#{jobid}\s*/ + end + puts "Waiting for SGE job #{jobid} to finish. TODO filename = #{todoFilename}" + } + end + end + return [jobid, todoFilename] +end + + + +########################################################################### +# Run a set of algorithm runs the simple way (directly on the local machine). +########################################################################### +def runAlgosLocally(algosToRun) + for algoToRun in algosToRun + runalgo(algoToRun[0], algoToRun[1]) + #system "ruby #{$script_dir_for_cluster}/runalgo.rb #{algoToRun[0]} #{algoToRun[1]}" + end +end + +########################################################################### +# Run a set of algorithm runs on the cluster. +########################################################################### +def runAlgosOnCluster(algosToRun, waitToFinish=false, algo = "", output=false, priorityclass = "eh", oneJob=false) + commandsToRun = [] + for algoToRun in algosToRun + #cd #{$work_dir}; + commandsToRun << "/usr/bin/ruby #{$script_dir_for_cluster}/runalgo.rb #{algoToRun[0]} #{algoToRun[1]}" + end + if oneJob + runCommandsOnClusterOneJob(commandsToRun, waitToFinish, algo, output, priorityclass) + else + runCommandsOnCluster(commandsToRun, waitToFinish, algo, output, priorityclass) + end +end + + +########################################################################### +# Run a set of algorithm runs with the jobserver. +########################################################################### +def runAlgosWithJobserver(algosToRun) + require 'jobserver' + + #=== Put jobs in the queque. + myJobQueue = [] + for algoToRun in algosToRun + cmd = "cd #{$work_dir}; /usr/bin/ruby #{$script_dir_for_cluster}/runalgo.rb #{algoToRun[0]} #{algoToRun[1]}" + myJobQueue << Job.new(:name=>"ALGORUN_CONFIG #{algoToRun[0]}, seed #{algoToRun[1]}.", :client_command=>cmd) + end + + if myJobQueue.length > 0 + #=== Configure jobserver. + Job.nicelevel = nil # nice doesn't work at UBC + server = JobServer.new(myJobQueue, $work_dir, 0) + + hosts = %w{arrow41 arrow42 arrow43 arrow44 arrow45 arrow46 arrow47 arrow48 arrow49 arrow50} +# hosts = %w{arrow25} +# hosts = %w{arrow01 arrow02 arrow03 arrow04 arrow05 arrow06 arrow07 arrow08 arrow09 arrow10 arrow11 arrow12 arrow13 arrow14 arrow15 arrow16 arrow17 arrow18 arrow19 arrow20 arrow21 arrow22 arrow23 arrow24 arrow25 arrow26 arrow27 arrow28 arrow29 arrow30 arrow31 arrow32 arrow33 arrow34 arrow35 arrow36 arrow37 arrow38 arrow39 arrow40 arrow41 arrow42 arrow43 arrow44 arrow45 arrow46 arrow47 arrow48 arrow49} + + while not hosts.empty? # Add workers in randomized order, so not everyone pounds on the last worker. + randind = (random_number_without_rand*hosts.length).floor + #randind = rand(hosts.length) + host = hosts[randind] + hosts.delete_at(randind) + server.add_ssh_worker(host, $work_dir, 2) + end + + #=== Dump out statistics on the progress every 5 seconds. + server.dumpStatistics #($statsfile, 5) + + #=== Wait until all jobs have finished. + server.serve + end +end + + +########################################################################### +# Gets the results for running algo on multiple instances - keeps track of which runs are used and does not reuse them ! +########################################################################### +def getAlgoResultsForInstsAndParams(algo, instanceAndParamsHash, cutoff_time, cutoff_length, sorted_instances, oncluster=0, db=false) +# puts "getAlgoResultsForInstsAndParams begin" +# $stdout.flush + + unless db + #=== Do runs, save in instanceAndParamsHash, return + for instance in instanceAndParamsHash.keys + for param_string in instanceAndParamsHash[instance].keys + stripped_state_int = instanceAndParamsHash[instance][param_string]["params"] + params = $stripped_int_to_stripped_state[stripped_state_int] + rest_of_instance_specific_info = instanceAndParamsHash[instance][param_string]["rest"] + seeds = instanceAndParamsHash[instance][param_string]["seeds"] + + instanceAndParamsHash[instance][param_string]["results"] = {} + for seed in seeds + successful = false + t = Time.now + datetime = t.strftime("%Y-%m-%d %H:%M:%S") # YYYY-MM-DD HH:MM:SS + algo_output_file = "#{tmpdir}tmp-#{datetime}-#{random_number_without_rand}".gsub(/ /,"") + if is_win + algo_output_file = algo_output_file.gsub(/(\d):/, "#{$1}_") + end + + paramstring = params.keys.map{|x| "-#{x} #{params[x]}"}.join(" ") + cmd = "#{algo} #{instance} \"#{rest_of_instance_specific_info}\" #{cutoff_time} #{cutoff_length} #{seed} #{paramstring} > #{algo_output_file}" + + try = 1 + begin + puts " Trial #{try} for calling: #{cmd}" + puts "Executing cmd: #{cmd}" + + runresult = system(cmd) + + File.open(algo_output_file){|file| + while line = file.gets + if line =~ /Result for ParamILS: / or line =~ /Result for SMAC: / + runlog cmd + runlog line.strip + runlog "\n" + + line = line.sub(/Result for ParamILS: /,"") + line = line.sub(/Result for SMAC: /,"") + puts "Result: #{line.strip}" + + solved, runtime, runlength, best_sol, seed, additionalRunData = line.split(",").map!{|x|x.strip} + + instanceAndParamsHash[instance][param_string]["results"][seed.to_i] = [solved, runtime.to_f, runlength.to_i, best_sol.to_f, seed.to_i] + successful = true + break + end + end + raise "No result in result file of #{cmd}:\n#{algo_output_file}" if instanceAndParamsHash[instance][param_string]["results"].empty? + } + File.delete(algo_output_file) + + raise "Call unsuccessful: #{cmd}" unless successful + #raise "Solver crashed on #{cmd}" if instanceAndParamsHash[instance][param_string]["results"][seed.to_i][0] == "CRASHED" + raise "No solver result for #{cmd}" unless instanceAndParamsHash[instance][param_string]["results"][seed.to_i][0] + + if (instanceAndParamsHash[instance][param_string]["results"][seed.to_i][0] == "ABORT") + puts "ERROR: Target Algorithm signalled that we should abort" + $stderr.puts "ERROR: Target Algorithm signalled that we should abort" + puts "ERROR: Run returned ABORT status. ParamILS terminating as requested..." + $stderr.puts "ERROR: Run returned ABORT status. ParamILS terminating as requested..." + + Kernel::exit(2) + end + + if (instanceAndParamsHash[instance][param_string]["results"][seed.to_i][0] == "CRASHED") + puts "WARNING: Run crashed." + end + + # CF: Removing this because any algorithm with crashing configurations will waste all of its time here. + #rescue #=== Catch error due to files disappearing or something similar + # if $!.to_s =~ /No such file or directory/ or $!.to_s =~ /Input\output error/ or $!.to_s =~ /Stale NFS file handle/ or (not runresult) or (not successful) or $!.to_s =~ /crashed/ or $!.to_s =~ /No solver result/ + # try += 1 + # sleep(10) + # retry if try < 500 + # else + # raise + # end + + + #FH on 3 June, 2014: to guard against bad wrappers, I at least put in some functionality to treat this as a CRASHED run and continue the configuration run instead of just exiting. + rescue + puts "Caught exception when executing target algorithm: #{$!.to_s}. Counting the target algorithm run as CRASHED with runtime #{cutoff_time + 0.01} and solution quality 1e100." + instanceAndParamsHash[instance][param_string]["results"][seed.to_i] = ["CRASHED", cutoff_time + 0.01, cutoff_length, 1e100, seed.to_i] + end + end + end + end + return true #results ready + end + + begin + if $fakedCensoringForExactSameResults + #========================================= FOR DEBUGGING THE PRUNING (CPU time is not deterministic with the same seed :-( ) + #=== Temporary, for debugging, let everyone use the exact same results from the DB, but keep all entries as if used with the real time. + real_cutoff_time = cutoff_time + cutoff_time = [cutoff_time, $fakedCensoringRuntime].max + end + + #=== Collect runs I still have to do. + algosToRun = [] + for instance in sorted_instances + next unless instanceAndParamsHash.key?(instance) # If not all the original instances are in the instanceHash + for param_string in instanceAndParamsHash[instance].keys + stripped_state_int = instanceAndParamsHash[instance][param_string]["params"] + # puts "getAlgoResultsForInstsAndParams algorun_config_id. Instance #{instance}, #{params.length} params #{params.keys.join(" ")}" + # $stdout.flush + + rest_of_instance_specific_info = instanceAndParamsHash[instance][param_string]["rest"] + qual = 0 + algorun_config_id = get_algorun_config_id(algo, stripped_state_int, instance, qual, cutoff_time, cutoff_length)[0] + # puts "getAlgoResultsForInstsAndParams after algorun_config_id" + # $stdout.flush + + instanceAndParamsHash[instance][param_string]["algorun_config_id"] = algorun_config_id + seeds = instanceAndParamsHash[instance][param_string]["seeds"].map{|x| x.to_i} + computedSeeds = computedSeeds(algorun_config_id) + + #=== Make sure not to use runs that were used before. + neededSeeds = seeds - computedSeeds # Ruby set difference. + unless neededSeeds.empty? + for seed in neededSeeds + algosToRun << [algorun_config_id, seed] + end + end + puts "Need #{neededSeeds.length} new runs. (Want #{seeds.length}, have #{computedSeeds.length}, #{(seeds&computedSeeds).length} matching) for algorun_config_id #{algorun_config_id}" + end + end + + #=== Remove duplicates. (Can't use uniq! because array entries) + uniqAlgosToRun = [] + conf_seed_hash = Hash.new + for algoToRun in algosToRun + conf, seed = algoToRun + if conf_seed_hash.key?(conf) + next if conf_seed_hash[conf].include?(seed) + conf_seed_hash[conf] << seed + else + conf_seed_hash[conf] = [seed] + end + uniqAlgosToRun << algoToRun + end + + unless uniqAlgosToRun.empty? + if oncluster==1 or oncluster=="1" + runAlgosOnCluster(uniqAlgosToRun, false, algo) + elsif oncluster==2 or oncluster=="2" + runAlgosWithJobserver(uniqAlgosToRun) + elsif oncluster==3 or oncluster=="3" + runAlgosOnCluster(uniqAlgosToRun, true, "LS"+algo, true) + elsif oncluster==4 or oncluster=="4" + runAlgosOnCluster(uniqAlgosToRun, true, "LS"+algo, true, "eh2 -q arrowtest.q") + elsif oncluster==8 or oncluster=="8" + runAlgosOnCluster(uniqAlgosToRun, false, "one"+algo, false, "eh", true) + else + runAlgosLocally(uniqAlgosToRun) + end + end + + #=== Read all results if they are ready at this point (i.e. if nothing has to be run using SGE). + if algosToRun.length == 0 or not (oncluster=="1" or oncluster == 1 or oncluster==8 or oncluster=="8") + for instance in instanceAndParamsHash.keys + # puts "Read run results for instance #{instance}" + for param_string in instanceAndParamsHash[instance].keys + # puts " Read run results for param_string #{param_string}" + algorun_config_id = instanceAndParamsHash[instance][param_string]["algorun_config_id"] + seeds = instanceAndParamsHash[instance][param_string]["seeds"] + + results = readAlgoResults(algorun_config_id, seeds) + unless results.class.to_s == "Array" + raise "Results #{results} must be an array. Instance #{instance}, param_string #{param_string}" + end + for result in results + raise "at least one result for algorun_config_id #{algorun_config_id} is nil" unless result + end + unless results[0].class.to_s == "Array" + p results + p seeds + + p "doing again: readAlgoResults(#{algorun_config_id}, #{seeds})" + a = readAlgoResults(algorun_config_id, seeds) + p "New result" + p a + raise "results[0] #{results[0]} must be an array. Instance #{instance}, param_string #{param_string}" + end + + instanceAndParamsHash[instance][param_string]["results"] = Hash.new + for seed in seeds + res = results.shift + + if $fakedCensoringForExactSameResults + #========================================= FOR DEBUGGING THE PRUNING (CPU time is not absolutely deterministic even with the exact same trajectory :-( ) + #=== If the run is too long and would've timed out, put in the real result. + if res[1] > real_cutoff_time + res[0] = "TIMEOUT" + res[1] = real_cutoff_time + end + end + instanceAndParamsHash[instance][param_string]["results"][seed] = res + end + end + end + return true #results ready + end + return false #results not ready yet + rescue + p "WARNING: run crashed" + puts $!.to_s + sleep(10) + retry + end +end + + +########################################################################### +# The new and improved version of running algorithms: we get a list of entry_param pairs, run them all (as an instanceAndParamsHash) and directly modify the entries. +# If a run has already been performed with a lower cutoff and was successful, then just copy that run and don't rerun it! Of course, also reuse runs with the same cutoff. +########################################################################### +def getAlgoResultsForEntryParamsPairs(algo, entry_paramint_pairs, cutoff_time, cutoff_length, oncluster=0, db=true) + $total_cputime = 0 unless $total_cputime + $totalEvaluationCount =0 unless $totalEvaluationCount + #=== Check which of the entry param pairs we actually need to run. +# puts "Collect runs I need to do." + entry_paramints_to_run = [] + count = 1 + for entry_paramint in entry_paramint_pairs + puts "count #{count}/#{entry_paramint_pairs.length}" if count.divmod(100)[1]==0 + count += 1 + entry, stripped_state_int = entry_paramint + +#p "entry" +#p entry +#p params +#$stdout.flush + + if entry["resultForState"].key?(stripped_state_int) + #=== If a successful result for a lower cutofftime exist don't rerun it, either. + lower_cutofftimes = entry["resultForState"][stripped_state_int].keys + for lower_cutoff in lower_cutofftimes.sort + if lower_cutoff > cutoff_time + # raise "We should NEVER perform a run with shorter cutoff than before" + if entry["resultForState"][stripped_state_int][lower_cutoff][0] == "TIMEOUT" + #=== If the run had a longer runtime and still timed out, copy the run and adapt its runtime. + entry["resultForState"][stripped_state_int][cutoff_time] = entry["resultForState"][stripped_state_int][lower_cutoff].dup + entry["resultForState"][stripped_state_int][cutoff_time][1] = cutoff_time + break + else + #=== If the run had a longer runtime and solved the instance: + if entry["resultForState"][stripped_state_int][lower_cutoff][1] <= cutoff_time + #=== a) It solved the instance with a shorter runtime than we ask for, copy the run. + entry["resultForState"][stripped_state_int][cutoff_time] = entry["resultForState"][stripped_state_int][lower_cutoff].dup + else + #=== a) It solved the instance with a longer runtime than we ask for, copy the run and adapt time and solution status. + entry["resultForState"][stripped_state_int][cutoff_time] = entry["resultForState"][stripped_state_int][lower_cutoff].dup + entry["resultForState"][stripped_state_int][cutoff_time][1] = cutoff_time + entry["resultForState"][stripped_state_int][cutoff_time][0] = "TIMEOUT" + end + end + else + next if lower_cutoff == cutoff_time #=== No copying needed here. + if entry["resultForState"][stripped_state_int][lower_cutoff][0] != "TIMEOUT" + # output "Successful lower cutoff: #{lower_cutoff} -- #{entry["resultForState"][state_as_string][lower_cutoff][0]}" + entry["resultForState"][stripped_state_int][cutoff_time] = entry["resultForState"][stripped_state_int][lower_cutoff].dup + break; + end + end + end + + #=== If the result for this cutofftime exists don't rerun it. + next if entry["resultForState"][stripped_state_int].key?(cutoff_time) + + #=== If none of the lower runtimes were successful and the current one hasn't been run, then it has to be run. + entry_paramints_to_run << entry_paramint + else + entry_paramints_to_run << entry_paramint + end + end + return true if entry_paramints_to_run.empty? + +# output "Retrieve runtimes for #{entry_params_pairs_to_run.length} entry_params pairs." +# puts "Construct instanceAndParamsHash for #{entry_params_pairs_to_run.length} entry_params pairs." + #=== Construct instanceAndParamsHash to run. + instanceAndParamsHash = Hash.new + + for entry_paramint in entry_paramints_to_run + entry, stripped_state_int = entry_paramint + inst = entry["name"] + instanceAndParamsHash[inst] = Hash.new unless instanceAndParamsHash.key?(inst) + + unless instanceAndParamsHash[inst].key?(stripped_state_int) + instanceAndParamsHash[inst][stripped_state_int] = {"rest" => entry["rest"], "params" => stripped_state_int, "seeds"=>[]} + end + instanceAndParamsHash[inst][stripped_state_int]["seeds"] << entry["seed"] + end + + puts "getAlgoResultsForInstsAndParams." + + #=== Run everything in the instanceAndParamsHash. + results_ready = getAlgoResultsForInstsAndParams(algo, instanceAndParamsHash, cutoff_time, cutoff_length, instanceAndParamsHash.keys, oncluster, db) + + if results_ready + #=== Retrieve those results we had to run. + for entry_paramint in entry_paramints_to_run + entry, stripped_state_int = entry_paramint + inst = entry ["name"] + seed = entry["seed"] + + result = instanceAndParamsHash[inst][stripped_state_int]["results"][seed] + unless result + puts "ERROR - empty result." + p instanceAndParamsHash[inst] + p instanceAndParamsHash[inst][stripped_state_int] + p instanceAndParamsHash[inst][stripped_state_int]["results"] + + raise "Empty result for instance #{inst}, seed #{seed}, and stripped_state_int #{stripped_state_int}" + end + unless entry["resultForState"].key?(stripped_state_int) + entry["resultForState"][stripped_state_int] = Hash.new + end + entry["resultForState"][stripped_state_int][cutoff_time] = result + + #=== If the measured runtime is over the cutoff time the base algorithm should have terminated earlier - that's not our fault, so use the cutoff time instead. (Also helping to fix a bug with some entries in the DB.) + #=== But NEVER count a run with less than 0.1 seconds - in order to account for any potential overhead and in order to not get endless loops with runtimes that are 0.0 seconds. + #$total_cputime += [0.1, [cutoff_time, result[1]].min].max + $total_cputime += [$minimum_runtime, [cutoff_time, result[1]].min].max # new as of 09/22/07 in order to reduce runtimes of experiments. + + $totalEvaluationCount += 1 + end + end + return results_ready +end + +#=== Run numbers for each instances MUST BE INCREASING ! +def makeStandardInstanceHash(array_of_detailed_instances, stripped_state_int) + instanceHash = Hash.new + for entry in array_of_detailed_instances + inst = entry["name"] + run = entry["run"] + instanceHash[inst] = {"runs"=>0, "rest"=>entry["rest"], "result"=>[]} unless instanceHash.key?(inst) + instanceHash[inst]["runs"] += 1 + censortimes = entry["resultForState"][stripped_state_int].keys +# p censortimes +# p censortimes.max + instanceHash[inst]["result"] << entry["resultForState"][stripped_state_int][censortimes.max] + end + return instanceHash +end + +########################################################################### +# Returns the set of instances and their desired solution qualities contained in a file. +########################################################################### +def getInstanceHash(instanceset_name, algo="none") + #=== Special case: the algorithm does not take input instances. + return [{"_#{algo}_dummyInstance"=>{"desired_qual"=> 0, "reference"=>0}}, ["_#{algo}_dummyInstance"]] if instanceset_name == "_" + + #=== Read set of instances to run on. (array of arrays [instance_name, opt]) + instancesSorted = [] + instanceHash = Hash.new + File.open(instanceset_name){|file| + while line=file.gets; + raise "Incorrect number of entries #{line.strip.split.length} in #{line}" unless line.strip.split.length >= 2 + entries = line.chomp.strip.split + inst = entries[0] + qual = entries[1] + rest = entries[2...entries.length] + instanceHash[inst] = Hash.new + instanceHash[inst]["desired_qual"] = qual + instanceHash[inst]["rest"] = rest + instancesSorted << inst + end + } + return [instanceHash, instancesSorted] +end diff --git a/sparkle/Components/paramils2.3.8-source/param_ils_2_3_run.rb b/sparkle/Components/paramils2.3.8-source/param_ils_2_3_run.rb new file mode 100755 index 000000000..7d2eab1b5 --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/param_ils_2_3_run.rb @@ -0,0 +1,1900 @@ +#!/usr/bin/env ruby +$:.unshift(File.dirname(__FILE__)) + +require "param_reader.rb" +require "global_helper.rb" # for instance hash + +$state_to_int = {} +$stripped_state_to_int = {} +$int_to_full_state = [] +$int_to_full_state_string = [] +$stripped_int_to_stripped_state = [] +$full_int_to_stripped_int = [] + +# ========================================= +# This procedure is called at the first encounter of a state and defines its associated integer for the full state and the stripped version. +# It can also be called again later on. +# Returns the int of the full state, to be used everywhere in connection with the caching Hashes/arrays set u here. +# ========================================= +def full_state_to_full_int(full_state) + full_state_as_string = state_string(full_state) + unless $state_to_int.key?(full_state_as_string) + state_int = $state_to_int.length + $state_to_int[full_state_as_string] = state_int + $int_to_full_state[state_int] = full_state + $int_to_full_state_string[state_int] = full_state_as_string + + stripped_state = strip_state(full_state) + stripped_state_as_string = state_string(stripped_state) + #=== If we have not seen the stripped state before, set it up. (full -> stripped is N:1) + unless $stripped_state_to_int.key?(stripped_state_as_string) + stripped_state_int = $stripped_state_to_int.length + #$stripped_int_to_one_of_its_full_ints[stripped_state_int] = state_int + $stripped_state_to_int[stripped_state_as_string] = stripped_state_int + end + stripped_state_int = $stripped_state_to_int[stripped_state_as_string] + $full_int_to_stripped_int[state_int] = stripped_state_int + + $stripped_int_to_stripped_state[stripped_state_int] = stripped_state + end + return $state_to_int[full_state_as_string] +end + +# ========================================= +# put string to output and outfile +# ========================================= +def output(s) + if @output_level >= 50 + puts s + @out.puts s + @out.flush + end +end + +# ========================================== +# Output a string to the run log. +# ========================================== +def runlog(s) + if @use_run_log + @param_ils_runlog_file.puts s + @param_ils_runlog_file.flush + end +end + +# ========================================= +# Get quality of a parameter setting without extra runs. +# ========================================= +def eval(full_state_int) + raise "eval() takes an int argument, not a #{full_state_int.class}" unless full_state_int.is_a?(Integer) + level = detail(full_state_int) + if level > 0 + n = @numRunsPerLevelOfDetail[level-1] + c = @censoringThresholdPerLevelOfDetail[level-1] + + stripped_state_int = $full_int_to_stripped_int[full_state_int] + res = @cachedResultScalars[stripped_state_int][level-1] + else + n = 0 + c = 0 + res = 100000000 + end + return [res, n, c] +end + + +# ========================================= +# Output evaluation of a state +# ========================================= +def str(full_state_int, print_state=true) + val, n, c = eval(full_state_int) + if print_state + return "#{$int_to_full_state_string[full_state_int]} (#{val} [based on #{n} runs with cutoff #{c}])" if val + return "#{$int_to_full_state_string[full_state_int]} (-- [no runs])" + else + return "(#{val} [based on #{n} runs with cutoff #{c}])" if val + return "(-- [no runs])" + end +end + + +# ========================================= +# Output more detailed information for a state. +# ========================================= +def output_result(full_state_int) + stripped_state_int = $full_int_to_stripped_int[full_state_int] + + entriesForObjective = [] + instance_names = [] + for entry in @instances + if entry["resultForState"].key?(stripped_state_int) + entriesForObjective << entry + instance_names << entry["name"] unless instance_names.include?(entry["name"]) + else + break + end + end +# raise "FATAL! Number of results #{numEvaluated(state)} does not equal results from the beginning #{entriesForObjective.length}" if ((@approach=~ /focused/) and not numEvaluated(state)==entriesForObjective.length) + + level = detail(full_state_int) + censoringTime = @censoringThresholdPerLevelOfDetail[level-1] + + objectives = getAllObjectives(@algo, @run_obj, entriesForObjective, instance_names, stripped_state_int, censoringTime, @cutoff_length) +# objectives = getObjectivesForComputedInstances(@algo, @run_obj, entriesForObjective, @instances_sorted, state_as_string) + #instanceHash = makeStandardInstanceHash(@instances, state_string(stripped_state)) + + outputObjectives(instance_names, objectives) +end + + +def isPruned(bound) + if bound.class.to_s == "Array" + return true if bound[0] == "pruned" + raise "bound is array, but doesn't have pruned as first element." + end + return false +end + +# ========================================= +# Adaptive neighbourhood relation that takes into account conditional parameters. +# ========================================= +def neighbourhood(full_state_int) + stripped_state_int = $full_int_to_stripped_int[full_state_int] + stripped_state = $stripped_int_to_stripped_state[stripped_state_int] + full_state = $int_to_full_state[full_state_int] + result = [] + for param in stripped_state.keys + next if @fixed_ass.key?(param) + for value in @domain[param] + unless full_state[param] == value + new_state = full_state.dup + new_state[param] = value + + next if forbidden(new_state, @forbidden_combos) + #=== Cannot convert state Hash to int yet - only do that for states we actually visit because of memory constraints. + result << [new_state, param, new_state[param], value] + end + end + end + if result == [] + puts "fixed_ass:" + p @fixed_ass + puts "state.keys" + p state.keys + raise "neighbourhood can't be empty!!" + end + return result +end + + +# ========================================================================================= +# Bundle actions to be taken when a state is visited in the search. +# ========================================================================================= +def visit(full_state_int) + #=== Update statistics. + unless @allVisitedStates.key?(full_state_int) + @allVisitedStates[full_state_int] = {"number" => @allVisitedStates.size, "numVisited"=>0, "totalTime"=>0, "timesLM"=>0, "timesMadeIncumbent"=>0, "iteration"=>@iteration, "str"=>$int_to_full_state[full_state_int]} + @orderedVisitedStates << full_state_int + @statesVisited << full_state_int + end + @allVisitedStates[full_state_int]["numVisited"] += 1 +end + + +# ========================================================================================= +# Output incumbent state is found. +# ========================================================================================= +def output_incumbent_state() + val, n, c = @incumbent_res + full_state = $int_to_full_state[@incumbent_state_int] + + numeval = $totalEvaluationCount + +# "Total Time","Mean Performance","Wallclock Time","Incumbent ID","Automatic Configurator Time","Configuration..." + +# @param_ils_traj_file.print "#{$total_cputime}, #{val}, #{n}, #{@iteration}, #{@numFlip}, " + @param_ils_traj_file.print "#{$total_cputime}, #{val}, #{n}, #{@iteration}, #{c}, " + @param_ils_traj_file.puts @params.map{|x|x + "='" + full_state[x] + "'"}.join(", ") # output the current values + @param_ils_traj_file.flush + + times = Process.times + tuningTime = times.utime+times.stime + + curTime = Time.now + wallclockSeconds = curTime.tv_sec - @start_time_wallclock.tv_sec + wallclockMicroseconds = curTime.tv_usec - @start_time_wallclock.tv_usec + if (wallclockMicroseconds < 0) + wallclockMicroseconds += 1000000 + end + + wallclockTime = ("%d.%06d" % [wallclockSeconds, wallclockMicroseconds]).to_f + + totalTimeStr = ("%.4f" % [$total_cputime+tuningTime]) + wallclockStr = ("%.4f" % [wallclockTime]) + tuningTimeStr = ("%.4f" % [tuningTime]) + @param_ils_traj_csv.print "#{totalTimeStr}, #{val}, #{wallclockStr}, #{@incumbent_state_int}, #{tuningTimeStr}, " + @param_ils_traj_csv.puts @params.map{ |x| x + "='" + full_state[x] + "'"}.join(", ") + @param_ils_traj_csv.flush + + output "New Incumbent: #{$total_cputime}, #{val} [#{n}, #{c}]. With state " + @params.map{|x| "#{x}=#{full_state[x]}"}.join(", ") + @out.flush +end + + +# ========================================================================================= +# Set a new incumbent state. +# ========================================================================================= +def setNewIncumbent(full_state_int, res=nil, n=nil, c=nil) + raise "setNewIncumbent() takes an int argument, not a #{full_state_int.class}" unless full_state_int.is_a?(Integer) + @incumbent_state_int = full_state_int + if res + @incumbent_res = [res, n, c] + else + @incumbent_res = eval(full_state_int) + end + output_incumbent_state + + unless @allVisitedStates.key?(full_state_int) + @allVisitedStates[full_state_int] = {"number" => @allVisitedStates.size, "numVisited"=>0, "totalTime"=>0, "timesLM"=>0, "timesMadeIncumbent"=>0, "iteration"=>@iteration, "str"=>$int_to_full_state[full_state_int]} + @orderedVisitedStates << full_state_int + end + @allVisitedStates[full_state_int]["timesMadeIncumbent"] += 1 +end + + +# ========================================================================================= +# Update the precision of the incumbent. +# ========================================================================================= +def update_incumbent(new_inc_res=nil) + new_inc_res = eval(@incumbent_state_int) unless new_inc_res + if new_inc_res[1] >= @incumbent_res[1] and new_inc_res[2] >= @incumbent_res[2] + output " Same incumbent, new precision:" + setNewIncumbent(@incumbent_state_int, new_inc_res[0], new_inc_res[1], new_inc_res[2]) + end +end + +# ========================================================================================= +# Get the results for instance-seed combinations for a given param config. +# ========================================================================================= +def getRunsOnEntriesWithParams(entries, full_state_int, cutoffTimeForState, test=false) + stripped_state_int = $full_int_to_stripped_int[full_state_int] + + #=== Remove precision to match the one of the DB. + cutoffTimeForState = (cutoffTimeForState*(10**5)).floor * (10**(-5.0)) + +# raise "state_string error: strip_state(strip_state(s)) != strip_state(s): \n#{state_string(strip_state(param_state))} != \n#{state_string(param_state)}" unless state_string(param_state) == state_string(strip_state(param_state)) + oldTotalCpuTime = $total_cputime + + getAlgoResultsForEntryParamsPairs(@algo, entries.map{|entry| [entry, stripped_state_int]}, cutoffTimeForState, @cutoff_length, @oncluster, @db) + + @allVisitedStates[full_state_int]["totalTime"] += ($total_cputime - oldTotalCpuTime) + + #=== Assert that we now know all the entries. + for entry in entries + unless entry["resultForState"][stripped_state_int][cutoffTimeForState] + puts "Empty result! " + puts "State" + p stripped_state_int + puts "Entry" + p entry + p entry["resultForState"] + p entry["resultForState"][stripped_state_int] + raise "Empty result" + end + end + + #=== Compute the objective for each entry. + results = entries.map{|entry| singleRunObjective(@algo, @run_obj, entry["resultForState"][stripped_state_int][cutoffTimeForState], entry["desired_qual"], entry["rest"], cutoffTimeForState, @cutoff_length)} + + unless test + if $total_cputime > @lastOutputCPUTime + 10 + @lastOutputCPUTime = $total_cputime + output("#{$totalEvaluationCount}/#{@maxEvals}, #{$total_cputime}/#{@tunerTimeout}") + end + #=== Keep track of results for each pair. + end + return results +end + + +#========================================================================================= +# Add new runs for param_state, for the original FocusedILS. +# Invariants: Before and after this, @incumbent_state_int is one of the states with the most evaluations, and amongst those, it is the best. +# The number of runs is limited by @N. +# ========================================================================================= +def addNewRuns(param_state, numNewRuns) +# numNewRuns.times{|i| incTimeSpentInState(param_state)} + numNewRuns.times{|i| break if haveToStop(); boundedIncTimeSpentInState(param_state, nil)} +end + +# ========================================================================================= +# Return the current level of detail used to evaluate the state. +# ========================================================================================= +def detail(full_state_int) + stripped_state_int = $full_int_to_stripped_int[full_state_int] + raise "detail() takes an int argument, not a #{full_state_int.class}" unless full_state_int.is_a?(Integer) +# state_as_string = state_string(state) + unless @cachedResultScalars.key?(stripped_state_int) + @cachedResultScalars[stripped_state_int] = [] + end + return @cachedResultScalars[stripped_state_int].length +end + + +# ========================================================================================= +# Helper function for better. +# Returns true iff combination_of_results_1 - combination_of_results_2 <= eps, +# i.e. iff the first state is better or equal to the second one using the lesser level of detail. +# ========================================================================================= +def isBetterWithLesserDetail(state1_int, state2_int, equalIsBetter) +# puts "comparing \n#{state1} and \n#{state2}" + level1 = detail(state1_int) + level2 = detail(state2_int) + + minLevel = [level1, level2].min + return isBetterWithLevel(state1_int, state2_int, equalIsBetter, minLevel) +end + +# ========================================================================================= +# Returns true iff combination_of_results_1 - combination_of_results_2 <= eps, +# i.e. iff the first state is better or equal to the second one using that level of detail. +# ========================================================================================= +def isBetterWithLevel(state1_int, state2_int, equalIsBetter, level) + raise "Level can't be <= 0: #{level}" if level <= 0 +# p level + + res1 = @cachedResultScalars[$full_int_to_stripped_int[state1_int]][level-1] + res2 = @cachedResultScalars[$full_int_to_stripped_int[state2_int]][level-1] + +# p res1 +# p res2 +# p equalIsBetter + +# p @cachedResultScalars[state_as_string1] +# p @cachedResultScalars[state_as_string2] + + #=== In case res1 was pruned before let's compute it now (enough for the comparison). + if isPruned(res1) + if isPruned(res2) + doRunsBounded(state2_int, level-1, nil) + res2 = @cachedResultScalars[$full_int_to_stripped_int[state2_int]][level-1] + end + doRunsBounded(state1_int, level-1, res2) + res1 = @cachedResultScalars[$full_int_to_stripped_int[state1_int]][level-1] + end + + #=== In case res2 was pruned before let's compute it now (enough for the comparison). + if isPruned(res2) + doRunsBounded(state2_int, level-1, res1) + res2 = @cachedResultScalars[$full_int_to_stripped_int[state2_int]][level-1] + end + + return shortBetter(res1, res2, equalIsBetter) +end + + +def shortBetter(res1, res2, equalIsBetter=true) + return false if isPruned(res1) and not isPruned(res2) + return true if isPruned(res2) and not isPruned(res1) + + #=== Both results are pruned, break the tie by the number of solved instances with X times the bound of the incumbent. + if isPruned(res1) and isPruned(res2) + return false if res1[1] < res2[1] + return true if res1[1] > res2[1] + return "tie" if equalIsBetter + return false + end + + diff = res1 - res2 + if equalIsBetter + result = true if diff < -@eps + result = "tie" if diff >= -@eps and diff <= @eps + result = false if diff > @eps + else + result = true if diff < -@eps + result = false if diff >= -@eps + end +# p res1 - res2 +# p result + return result +end + +# ========================================================================================= +# State1 dominates state2 iff it has at least as much detail and is better with the lesser detail. +# ========================================================================================= +def dominates(state1_int, state2_int, equalIsBetter=true) + detailBetter = (detail(state1_int) >= detail(state2_int)) + return false unless detailBetter + return isBetterWithLesserDetail(state1_int, state2_int, equalIsBetter) +end + + +# ========================================================================================= +# Do runs for a state with a lower level of detail than some other one, up to a total bound on performance (from that other one). +# How that bound influences censoring thresholds depends on the objective function: +# 1) Median: all runs are cut off just after the bound, can stop after 50% cutoffs (if the bound exists, otherwise need a tie breaking criterion). +# 2) Mean, mean10, mean1000, etc: Accumulate time t_new one run at a time, counting timeouts appropriately. The timeout for each run is min(bound*numRuns-t_new, regular censoring time at this level) +# 3) Other objectives: not implemented yet, didn't really think about ways to exploit the bound there. +# ========================================================================================= +def doRunsBounded(full_state_int, level, paramBound=nil) + stripped_state_int = $full_int_to_stripped_int[full_state_int] + + bound = paramBound + bound = nil if isPruned(paramBound) + +# p "doRunsBounded #{full_state_int} #{level} #{bound}" + + raise "Should not recompute runs for level #{level} that we already did and that weren't pruned: #{@cachedResultScalars[stripped_state_int][level]} for state #{stripped_state_int}." if @cachedResultScalars[stripped_state_int][level] and not isPruned(@cachedResultScalars[stripped_state_int][level]) + + #=== Get the performance of the incumbent --- if that doesn't exist, get it first. + incumbent_bound = @cachedResultScalars[$full_int_to_stripped_int[@incumbent_state_int]][level] + +# p "incumbent bound is #{incumbent_bound}" + + if incumbent_bound == nil and not full_state_int == @incumbent_state_int + if @cachedResultScalars[$full_int_to_stripped_int[@incumbent_state_int]][level-1] == nil + raise "incumbent state has performance nil at level #{level} and nil at level #{level-1}: #{@cachedResultScalars[$full_int_to_stripped_int[@incumbent_state_int]].join("\n")}" + end + + output "State wants more detail (#{level}+1) than incumbent (#{detail(@incumbent_state_int)}), doing incumbent first:\n#{str(full_state_int)}\n#{str(@incumbent_state_int)}" + boundedIncTimeSpentInState(@incumbent_state_int, nil) + incumbent_bound = @cachedResultScalars[$full_int_to_stripped_int[@incumbent_state_int]][level] + end + + #=== This heuristic changes the trajectory but makes everything a lot faster: limit configurations by @boundMultiplier*bound from incumbent. + if @boundMultiplier and not full_state_int == @incumbent_state_int + raise "Incumbent still doesn't has a bound for level #{level}" if incumbent_bound == nil + + #=== For FocusedILS, the incumbent may actually have been pruned at that level -- in that case, leave the bound at whatever it is. + unless isPruned(incumbent_bound) + bound_from_incumbent = @boundMultiplier * incumbent_bound + bound = bound_from_incumbent unless bound + bound = [bound, bound_from_incumbent].min + end + end + +# p "doRunsBounded, level #{level}, bound #{bound} (parambound #{paramBound}) maxDetail #{@maxDetail}" + + if level == @maxDetail + output "Already at maximal level of detail #{@maxDetail} for state #{full_state_int}" + return + end + + numRuns = @numRunsPerLevelOfDetail[level] + censorTime = @censoringThresholdPerLevelOfDetail[level] + +# puts "level=#{level}, bound=#{bound}, numRuns=#{numRuns}, censorTime=#{censorTime}" + + unless @cachedResultScalars.key?(stripped_state_int) + @cachedResultScalars[stripped_state_int] = [] + end + + raise "doRunsBounded called with too low a level of detail - #{level} has been run for state #{stripped_state_int} already, result = #{@cachedResultScalars[stripped_state_int][level]}" if @cachedResultScalars[stripped_state_int].length > level and not isPruned(@cachedResultScalars[stripped_state_int][level]) + raise "doRunsBounded called with too high a level of detail - the highest level so far is #{@cachedResultScalars[stripped_state_int].length}, now supposed to do #{level} for state #{stripped_state_int}." if @cachedResultScalars[stripped_state_int].length < level + + #=== Compute the scalarResult depending on whether there is a bound and on the objective function. If censored it will be the threshhold + 1 + if bound and @pruning + if @overall_obj == "median" and bound < censorTime - @eps + ########### This only works for the following definition of median: + # ================ Let x1, x2, ..., x_n be an ordered series; then the median is x_{ceil(n/2)}. I.e. for 1 value, it's x_1; for 2 values, it's still x1; for 3 values, it's x_2, for 4 values, it is also x_2, etc. + singleResults = [] + allRunsPerformed = false + + thisCensorTime = bound + 0.01 + thisCensorTime = thisCensorTime.ceil.to_i if @algo =~ /spear/ or @algo =~ /sat4j/ or @algo =~ /smt/# Some algos can only handle full integers as cutoff. + + #=== We could be more pro-active here: it suffices to have >50% of the runs finish under the cutoff time. + #=== So you can stop after that; but you only get an upper bound on your median and may have to rerun the rest later. + #=== Since we want to keep it simple we don't do that here. + + #=== Just perform the runs with the target median as a bound. + results = getRunsOnEntriesWithParams(@instances[0...numRuns], full_state_int, thisCensorTime) + scalarResult = combinationOfObjectiveFunctions(@algo, @overall_obj, results, @run_obj, thisCensorTime, @cutoff_length).to_f +# output "scalarResult #{scalarResult}, bound #{bound}" + + raise "Still need to implement @boundMultiplier for median" if @boundMultiplier + #=== TODO: Make i the number of solved instances within the timelimit. + i = 0 + scalarResult = ["pruned",i] if scalarResult > bound + @eps + + elsif @overall_obj =~ /mean/ + t_new = 0 + totalTimeBound = bound * numRuns +# output " Bounded INCTIME: -> detail #{level}, N=#{numRuns}, censoring=#{censorTime}, totalTimeBound=#{totalTimeBound}" + + #=== Speed up the process by remembering some stuff from lower levels -- won't change trajectory. + singleResults = [] + @savedResults = Hash.new unless @savedResults + @savedResults[stripped_state_int] = Hash.new unless @savedResults.key?(stripped_state_int) + unless level == 0 + if @savedResults[stripped_state_int][level-1].key?(censorTime) + singleResults = @savedResults[stripped_state_int][level-1][censorTime].dup + #=== Popping the last items from that list, since they might be pruned. One should have been enough, but there was still a difference in the trace - this may indicate something fishy, but it seems minor and not a priority. + singleResults.pop + singleResults.pop + end + end + @savedResults[stripped_state_int][level] = Hash.new + @savedResults[stripped_state_int][level][censorTime] = singleResults + + if singleResults == [] + t_new = 0 + else + scalarResult = combinationOfObjectiveFunctions(@algo, @overall_obj, singleResults, @run_obj, censorTime, @cutoff_length).to_f + t_new = scalarResult * (singleResults.length) + end + + allRunsPerformed = true + while singleResults.length < numRuns + i = singleResults.length + #=== Compute result and then put it into @cachedResultScalars. + thisCensorTime = [[censorTime,0.01].max, (totalTimeBound-t_new) + 0.01].min + thisCensorTime = [[censorTime,0.01].max, (totalTimeBound-t_new).ceil.to_i].min if @algo =~ /spear/ or @algo =~ /sat4j/ or @algo =~ /smt/ # Some algos can only handle full integers as cutoff. + + if thisCensorTime <= @eps # don't let this get too small, numerical problems can cause infinite loop/crash + allRunsPerformed = false + break + end + singleResult = getRunsOnEntriesWithParams([@instances[i]], full_state_int, thisCensorTime) + singleResults.concat singleResult + + scalarResult = combinationOfObjectiveFunctions(@algo, @overall_obj, singleResults, @run_obj, censorTime, @cutoff_length).to_f + t_new = scalarResult * (i+1) + +# puts " Used #{t_new}/#{totalTimeBound} seconds for this state, ran #{i+1}/#{numRuns} runs." + end + scalarResult = combinationOfObjectiveFunctions(@algo, @overall_obj, singleResults, @run_obj, censorTime, @cutoff_length).to_f + + #=== If the new configuration didn't have to do all runs, register it as pruned. + if (scalarResult > bound+@eps and thisCensorTime < censorTime) + scalarResult = ["pruned",i] + end + scalarResult = ["pruned",i] unless allRunsPerformed + else + #=== Just perform the runs unboundedly. + results = getRunsOnEntriesWithParams(@instances[0...numRuns], full_state_int, censorTime) + scalarResult = combinationOfObjectiveFunctions(@algo, @overall_obj, results, @run_obj, censorTime, @cutoff_length).to_f + end + else + #=== Just perform the runs unboundedly. + results = getRunsOnEntriesWithParams(@instances[0...numRuns], full_state_int, censorTime) + scalarResult = combinationOfObjectiveFunctions(@algo, @overall_obj, results, @run_obj, censorTime, @cutoff_length).to_f + + #=== Speed up the process by remembering some stuff from lower levels -- won't change trajectory. + @savedResults = Hash.new unless @savedResults + @savedResults[stripped_state_int] = Hash.new unless @savedResults.key?(stripped_state_int) + @savedResults[stripped_state_int][level] = Hash.new + @savedResults[stripped_state_int][level][censorTime] = results + + end + @cachedResultScalars[stripped_state_int][level] = scalarResult + + #=== Care for the invariants to remain true: + #=== 1) If the detail for this state is higher than the detail of the incumbent, catch up. + if detail(@incumbent_state_int) < detail(full_state_int) + output "State got more detail (#{detail(full_state_int)}) than incumbent (#{detail(@incumbent_state_int)}), catching up:\n#{str(full_state_int)}\n#{str(@incumbent_state_int)}" + raise "This situation should not occur anymore now that the incumbent is always run first" +# boundedIncTimeSpentInState(@incumbent_state_int, state) + boundedIncTimeSpentInState(@incumbent_state_int, nil) + end + + #=== 2) If this state is itself the incumbent one, output its new value. + if full_state_int == @incumbent_state_int + update_incumbent + return + end + + #=== 3) If the detail for this state and the incumbent is identical, compare the two -- in case of ties take the old one. + if detail(@incumbent_state_int) == detail(full_state_int) + highest_level = detail(full_state_int) + inc_qual = @cachedResultScalars[$full_int_to_stripped_int[@incumbent_state_int]][highest_level-1] + this_qual = @cachedResultScalars[stripped_state_int][highest_level-1] +# output "inc_qual #{inc_qual}, this_qual #{this_qual}, highest level #{highest_level}" if @approach == "focused" + output "bound for changing incumbent #{@nStart}" if @idn == 2 + unless shortBetter(inc_qual, this_qual, true) + unless @idn == 2 and highest_level < @nStart + output "New inc: #{this_qual}" + + raise "If two states have the same detail one must dominate the other: #{inc_qual}, #{this_qual}." unless shortBetter(this_qual, inc_qual, true) + setNewIncumbent(full_state_int) + end + end + end +end + + +# ========================================================================================= +# Like boundedIncTimeSpentInState, but with bound on performance. +# ========================================================================================= +def boundedIncTimeSpentInState(undetailedState_int, detailedState_int=nil) + level = detail(undetailedState_int) + return if level == @maxDetail + + bound = nil + if detailedState_int + raise "Detailed state must have larger detail than undetailed one: #{detail(detailedState_int)} > #{detail(undetailedState_int)} violates this" unless detail(detailedState_int) > detail(undetailedState_int) + bound = @cachedResultScalars[$full_int_to_stripped_int[detailedState_int]][level] + + if isPruned(bound) + doRunsBounded(detailedState_int, level, nil) + end + bound = @cachedResultScalars[$full_int_to_stripped_int[detailedState_int]][level] + end + doRunsBounded(undetailedState_int, level, bound) +end + +# ========================================================================================= +# Better: this is a completely symmetric comparison (except in the case of ties, in which case true is returned). +# At the end of this, one state must have at least as many evals as the other one and outperform it with the lower number of evals of the two. +# Cases: +# 1) state1 has more or equal number of evals and is better with those: return false (first is better) +# 2) state2 has more or equal number of evals and is better with less evals: return true (second is better) +# 3) state1 has less evals but is better with those: execute runs of state1 until either 1) or 2) +# 4) state2 has less evals but is better with those: execute runs of state2 until either 1) or 2) +# ========================================================================================= +def better(new_state_int, old_state_int) + visit(new_state_int) + + if @approach == "basic" or @approach == "random" + raise "Old state must have been evaluated before" unless detail(old_state_int) == @maxDetail + boundedIncTimeSpentInState(new_state_int, old_state_int) + + return true if dominates(new_state_int, old_state_int, false) + return "tie" if dominates(new_state_int, old_state_int, true) + return false if dominates(old_state_int, new_state_int, false) #=== The old state must really be better, ties don't count. + return false if dominates(old_state_int, new_state_int, true) + raise "Still undecided at end of better between new state #{str(new_state_int)} and old state #{str(old_state_int)}. This shouldn't be possible." + + elsif @approach =~ /focused/ + #=== Everybody gets at least one more level of detail. + if detail(new_state_int) < detail(old_state_int) + boundedIncTimeSpentInState(new_state_int, old_state_int) + @numEvaluationsThisIteration += 1 + elsif detail(new_state_int) > detail(old_state_int) + boundedIncTimeSpentInState(old_state_int, new_state_int) + @numEvaluationsThisIteration += 1 + else + boundedIncTimeSpentInState(old_state_int, nil) + @numEvaluationsThisIteration += 1 + + if detail(new_state_int) < detail(old_state_int) # not always the case because if new_state is incumbent then we trigger a run of it. + boundedIncTimeSpentInState(new_state_int, old_state_int) + @numEvaluationsThisIteration += 1 + end + end + result = betterWithoutAutomaticIncrease(new_state_int, old_state_int) + + return result + end +end + +# ========================================================================================= +# Helper function for better - add detail until one dominates. +# ========================================================================================= +def betterWithoutAutomaticIncrease(new_state_int, old_state_int, haveToFinish=false) + + #=== If everything is clear, return. + return true if dominates(new_state_int, old_state_int, false) + return "tie" if dominates(new_state_int, old_state_int, true) #=== new <= old handled first -> moving away from incumbent. + return false if dominates(old_state_int, new_state_int, false) #=== Here, the old state is really better, no tie + if $stop_on_tie + return false if dominates(old_state_int, new_state_int, true) + end + + #=== When we get here, the one with less evaluations looks better. + #Case 1: new one has less and is better. + if detail(new_state_int) < detail(old_state_int) + while not (dominates(new_state_int, old_state_int, true) or dominates(old_state_int, new_state_int, false)) + break if haveToStop() and not haveToFinish + boundedIncTimeSpentInState(new_state_int, old_state_int) + end + end + + #Case 2: old one has less and is better. + if detail(old_state_int) < detail(new_state_int) + while not (dominates(new_state_int, old_state_int, true) or dominates(old_state_int, new_state_int, false)) + break if haveToStop() and not haveToFinish + boundedIncTimeSpentInState(old_state_int, new_state_int) + end + end + + #=== When we get here, both have the same #runs, so at least one dominates the other. + return true if dominates(new_state_int, old_state_int, false) + return "tie" if dominates(new_state_int, old_state_int, true) #=== new <= old handled first -> moving away from incumbent in case of ties. + return false if dominates(old_state_int, new_state_int, false) #=== The old state must really be better, ties don't count.) + + #=== If we have to stop, don't move. + return false if haveToStop() and not haveToFinish + + raise "Still undecided at end of better between new state #{str(new_state_int)} and old state #{str(old_state_int)}. This shouldn't be possible." +end + + +# ========================================= +# Random search, for comparison. +# ========================================= +def random_search(init_state_int) + output "========================================================\nStarting RANDOM SEARCH \n========================================================" + @iteration = 1 + current_state_int = init_state_int + setNewIncumbent(current_state_int) + visit(current_state_int) + + visited_states = Hash.new + visited_states = [current_state_int] + boundedIncTimeSpentInState(current_state_int, nil) + + @numEvaluationsThisIteration = 0 + if @iterativeDeepening and @init_def + def_state_int = init_default() + if better(def_state_int, current_state_int) + output(" -> With this level of detail, the default is better than the result of the last phase, moving back to default.\n\n") + current_state_int = def_state_int + else + output " -> Result from last phase is better than default, keeping it.}" + end + end + + while not haveToStop() + #=== Stop if all configurations have been evaluated -- otherwise, endless loop ! + while true + random_state_int = init_random() + next if visited_states.include?(random_state_int) + visited_states << random_state_int + break + end + + if better(random_state_int, @incumbent_state_int) +# checkIfNewIncumbent(random_state) + output(" -> Take improving step to random #{str(random_state_int)}\n\n") + else +# checkIfNewIncumbent(current_state) + output " -> Worse random: #{str(random_state_int)}" + end + @iteration += 1 + end +end + +# ========================================================================================= +# ========================================================================================= +# HERE THE ITERATED LOCAL SEARCH AND ITS SUBFUNCTIONS BEGIN. +# ========================================================================================= +# ========================================================================================= + + +# ========================================= +# Stop search if one of the termination criteria is fulfilled. +# ========================================= +def haveToStop() + if $totalEvaluationCount>=@maxEvals + output("ParamILS has reached the specified maximum number of #{@maxEvals} function evaluations => stopping the search now."); + return true + end + + if $total_cputime >= @tunerTimeout + output("ParamILS has reached the specified CPU time limit of #{@tunerTimeout} seconds => stopping the search now."); + return true + end + + if @iteration > @maxIts + output("ParamILS has reached the specified maximum number of #{@maxIts} iterations => stopping the search now."); + return true + end + + #return true if @algo =~ /saps/ and @allVisitedStates.size >2400 + #=== Also stop if we have already reached the minimum we can achieve + if detail(@incumbent_state_int) == @maxDetail and @cachedResultScalars[$full_int_to_stripped_int[@incumbent_state_int]][detail(@incumbent_state_int)-1] < @optimum_solqual + @eps + output("ParamILS has reached the specified optimal solution quality of #{@optimum_solqual} up to an additive error of #{@eps} => stopping the search now."); + return true + end + + puts "now " + Time.now.to_s + "; start " + @start_time_wallclock.to_s + "; time-start " + (Time.now - @start_time_wallclock).to_s + "; maxWall " + @maxWallTime.to_s + if Time.now - @start_time_wallclock > @maxWallTime + output("ParamILS has reached the specified maximum wall time limit of #{@maxWallTime} seconds => stopping the search now."); + return true + end + + return false +end + +def init_search + #=== Init. + if @init_def + return init_default() + else + return init_random() + end +end + + +def iterative_deepening_ils(depth, init_state_int) + @N = @nForDepth[depth-1] + @cutoff_time = @cForDepth[depth-1] + @tunerTimeout = @tForDepth[depth-1] + @maxEvals = @eForDepth[depth-1] + + @iteration = 1 + @numFlip = 1 + + @cachedResultScalars = Hash.new + @numRunsPerLevelOfDetail = [] + @censoringThresholdPerLevelOfDetail = [] + + puts("Level #{@depth}") + @out.puts("Level #{@depth}") +# @param_ils_traj_file.puts "Level #{@depth}" + + @allVisitedStates = {} # Hash indexed by state_string, containing number and all kinds of info. + @orderedVisitedStates = [] + @statesVisited = [] + + #=== Set up the schedule how many instances and which censoring thresholds to use at each level of detail. + if @approach == "focused" + @maxDetail = @N + for i in 0...@maxDetail + @numRunsPerLevelOfDetail[i] = i+1 + @censoringThresholdPerLevelOfDetail[i] = @cutoff_time + end + + elsif @approach == "basic" or @approach == "random" + @maxDetail = 1 + @numRunsPerLevelOfDetail[0] = @N + @censoringThresholdPerLevelOfDetail[0] = @cutoff_time + else + raise "Unknown approach #{@approach}" + end + + #=== Start the search for this level of ParamILS. + output "========================================================\nStarting ILS for level #{depth}, i.e. a limit of N=#{@N}, and cutoff time=#{@cutoff_time}.\nCurrent CPU time = #{$total_cputime}, this run goes until #{@tunerTimeout} \n========================================================" + if @approach == "random" + random_search(init_state_int) + else + iterated_local_search(init_state_int) + end + output "Final solution for depth #{depth} with limit N=#{@N}, and cutoff time=#{@cutoff_time}." + output_incumbent_state + return @incumbent_state_int +end + + +# ========================================= +# Standard ILS. +# ========================================= +def iterated_local_search(init_state_int) + current_state_int = init_state_int + setNewIncumbent(current_state_int) + visit(current_state_int) + + if @idn == 1 + @nStart.times{|i| boundedIncTimeSpentInState(current_state_int, nil)} + else + boundedIncTimeSpentInState(current_state_int, nil) + end + + @numEvaluationsThisIteration = 0 + if @iterativeDeepening and @init_def + def_state_int = init_default() + if better(def_state_int, current_state_int) + output(" -> With this level of detail, the default is better than the result of the last phase, moving back to default.\n\n") + current_state_int = def_state_int + else + output " -> Result from last phase is better than default, keeping it.}" + end + end + + #=== Perform @R random steps. + @numEvaluationsThisIteration = 0 + for i in 0...@R + break if haveToStop() + random_state_int = init_random() + + @numEvaluationsThisIteration = 0 + if better(random_state_int, current_state_int) + output(" -> Take improving step to random #{str(random_state_int)}\n\n") + current_state_int = random_state_int + else + output " -> Worse random: #{str(random_state_int)}" + end + end + + @numEvaluationsThisIteration=0 + last_ils_state_int = basic_local_search(current_state_int) + current_state_int = last_ils_state_int + + @iteration += 1 + while not haveToStop() + output("#{$totalEvaluationCount}/#{@maxEvals}, #{$total_cputime}/#{@tunerTimeout}") + + puts "iteration #{@iteration}, flip #{@numFlip}, evaluation count #{$totalEvaluationCount}" + @out.puts "iteration #{@iteration}, flip #{@numFlip}, evaluation count #{$totalEvaluationCount}" + + current_state_int = perturbation(current_state_int, @pertubation_strength) + visit(current_state_int) + boundedIncTimeSpentInState(current_state_int, nil) + + current_state_int = basic_local_search(current_state_int) + + unless @pert_rand + #=== Acceptance criterion. + acc_state_int = acceptance_criterion(last_ils_state_int, current_state_int) + #=== With low probability, random restart. + if rand(100) < @p_restart*100 + output "Random re-initialisation to #{str(acc_state_int)}" + acc_state_int = init_random() + visit(acc_state_int) + boundedIncTimeSpentInState(acc_state_int, nil) + end + current_state_int = acc_state_int + end + last_ils_state_int = current_state_int + @iteration += 1 + end +end + +# ========================================= +# Init local search with default. +# ========================================= +def init_default() + init_state = Hash.new + for param in @params + init_state[param] = @default[param] + end + for key in @start_ass.keys + init_state[key] = @start_ass[key] + end + for key in @fixed_ass.keys + init_state[key] = @fixed_ass[key] + end + return full_state_to_full_int(init_state) +end + +# ========================================= +# Init local search with random values whose combination is allowed. +# ========================================= +def init_random() + is_forbidden = true + while is_forbidden + init_state = Hash.new + for param in @params + init_state[param] = @domain[param][rand(@domain[param].length)] + end + for key in @fixed_ass.keys + init_state[key] = @fixed_ass[key] + end + is_forbidden = forbidden(init_state, @forbidden_combos) + end + return full_state_to_full_int(init_state) +end + +# ========================================= +# Basic local search. +# ========================================= +def basic_local_search(start_state_int) + current_state_int = start_state_int + +# @numEvaluationsThisIteration = 0 + output " BLS in iteration #{@iteration}, start with #{str(current_state_int)}\n" + visited_states = [current_state_int] + changed = true + while changed and not haveToStop() # local search. + changed = false + #=== Get array of [neighbouring state, param to change, old value, value to set it to] + neighbours = neighbourhood(current_state_int) + numNeighboursEvaluated = 0 + cpuBefore = $total_cputime + numEvalsBefore = $totalEvaluationCount + #=== Move to the first better neighbour + while neighbours.length > 0 and not haveToStop() + rand_index = rand(neighbours.length) + + neighbour_full_state, param, oldVal, newVal = neighbours[rand_index] + neighbour_int = full_state_to_full_int(neighbour_full_state) + neighbours.delete_at(rand_index) + + #=== To avoid loops, disallow state we have been at in this iteration. + next if visited_states.include?(neighbour_int) + visited_states << neighbour_int + + output(" Changing #{changed_between_states(current_state_int, neighbour_int)}, evaluating ...") + if better(neighbour_int, current_state_int) + #=== TODO: check if tie, increment counters accordingly. (and change output) + output(" -> Take improving step to neighbour #{str(neighbour_int)} with flip #{@numFlip}\n\n") + current_state_int = neighbour_int + + #=== Bonus runs in FocusedILS. + if @approach =~ /focused/ + numBonus = @numEvaluationsThisIteration + output(" \n============= Performing #{numBonus} bonus runs of state: #{str(current_state_int)} ============ \n\n") + addNewRuns(current_state_int, numBonus) + output(" -> After #{numBonus} bonus runs: #{str(current_state_int)}\n\n") + @numEvaluationsThisIteration=0 + end + + ##=== Treat this state as a local minimum if we have reached a maximum level of detail for the generation of LMs (maximal path length). + #break if detail(state_string(current_state)) == @maxDetail + + changed = true + break + else + #=== TODO: check if tie, increment counters accordingly. (and change output) + output " -> worse: #{str(neighbour_int,false)}" + end + numNeighboursEvaluated += 1 + break if numNeighboursEvaluated > @numNeighboursToEvaluate + end + incumbent_bound = @cachedResultScalars[$full_int_to_stripped_int[@incumbent_state_int]][detail(@incumbent_state_int)-1] +# @stepstats_out.puts "#{@numFlip}, #{@iteration}, #{numNeighboursEvaluated+1}, #{$total_cputime-cpuBefore}, #{$totalEvaluationCount-numEvalsBefore}, #{incumbent_bound}" +# @stepstats_out.flush + @numFlip += 1 + end + + #=== We now found a local minimum (w.r.t. the limited random neighbourhood we looked at) + lm_state_int = current_state_int + + #=== Bonus runs in FocusedILS + if @approach =~ /focused/ + numBonus = @numEvaluationsThisIteration + output(" \n============= Performing #{numBonus} bonus runs of state: #{str(lm_state_int)} ============ \n\n") + addNewRuns(lm_state_int, numBonus) + output(" -> After #{numBonus} bonus runs for LM: #{str(lm_state_int)}\n\n") + @numEvaluationsThisIteration=0 + end + + @allVisitedStates[lm_state_int]["timesLM"] += 1 + + output " LM for iteration #{@iteration}: #{str(lm_state_int)}\n" + output "\n========== DETAILED RESULTS (iteration #{@iteration}): ==========" + output_result(lm_state_int) + output "================================================\n" + +incumbent_stripped = $stripped_int_to_stripped_state[$full_int_to_stripped_int[@incumbent_state_int]] +res,n,c = eval(@incumbent_state_int) +output "\n==================================================================\nBest parameter configuration found so far (end of iteration #{@iteration}): #{incumbent_stripped.keys.map{|x| "#{x}=#{incumbent_stripped[x]}"}.join(", ") }\n" +output "==================================================================\nTraining quality of this incumbent parameter configuration: #{res}, based on #{n} runs with cutoff #{c}\n==================================================================\n\n" + + + #=== Compare every LM against incumbent state. + output "Comparing LM against incumbent:\n#{str(lm_state_int)}\n#{str(@incumbent_state_int)}" + if betterWithoutAutomaticIncrease(lm_state_int, @incumbent_state_int, true) + output "LM better, change incumbent" + setNewIncumbent(lm_state_int) + else + output "Incumbent better, keeping it" + end + + return lm_state_int +end + +# ========================================= +# Simple pertubation. +# ========================================= +def perturbation(state_int, strength) + if @pert_rand + result_state_int = init_random + else + result_state_int = state_int + strength.times{|x| + neighbours = neighbourhood(result_state_int) + rand_index = rand(neighbours.length) + result_state_int = full_state_to_full_int(neighbours[rand_index][0]) +# puts " perturb to ---> #{str(result_state_int)}" # Don't need to evaluate at this point! + output " perturb to ---> #{str(result_state_int)}" # Don't need to evaluate at this point! + } + end + return result_state_int +end + +# ========================================= +# Acceptance criterion BETTER. +# ========================================= +def acceptance_criterion(last_ils_state_int, current_state_int) + if last_ils_state_int == current_state_int + output "same state as last ILS: #{str(last_ils_state_int)}" + @accepted_last = "same" + return current_state_int + end + + if betterWithoutAutomaticIncrease(current_state_int, last_ils_state_int) + output " Accepting new better local optimum: #{str(current_state_int)}" + @accepted_last = "acc" + return current_state_int + end + + output "rejecting worse #{str(current_state_int)}, going back to #{str(last_ils_state_int)}" + @accepted_last = "rej" + return last_ils_state_int +end + +# ========================================= +# Return what changed between two states. +# ========================================= +def changed_between_states(old_state_int, new_state_int) + res = [] + old_state = $int_to_full_state[old_state_int] + new_state = $int_to_full_state[new_state_int] + for key in old_state.keys + res << "#{key}: #{old_state[key]}->#{new_state[key]}" if old_state[key] != new_state[key] + end + return res +end + +def output_help(out) +# puts ARGV.join(" --- ") + + out.puts "\n======================================================================================================" + out.puts "PARAM_ILS version 2.3.8, copyright Frank Hutter, 2004-2013." + out.puts "This software optimizes parameters of algorithms. See the quick start guide for a description." + out.puts "For more details, see: \"Frank Hutter, Holger Hoos, and Thomas Stueztle:" + out.puts "Automatic Algorithm Configuration based on Local Search. In Proc. of AAAI-07\"." + out.puts "======================================================================================================\n" + out.puts "Usage: paramils -scenariofile -numRun , followed by a number of optional arguments." + out.puts "======================================================================================================" + out.puts "The default is FocusedILS with a maximum of N=2000 runs per configuration.\nTo get BasicILS use -approach basic, for random search use -approach random." + out.puts "======================================================================================================" + out.puts "To change N, use -N .\nTo change the number of independent test runs for the final parameter configuration, use -validN (default 1000 runs)." + out.puts "To change the initialization, use -init , where is in {0,1} (0=random, 1=default [used if unspecified]), or = \" ...\"" + + out.puts "======================================================================================================" + if is_win + out.puts "Windows example:\n(this has a VERY small training and test set and is just meant for demonstration!)\nIn real applications, please use larger sets to avoid overtuning!!\n" + out.puts "======================================================================================================" + out.puts "param_ils_2_3_run.exe -numRun 0 -scenariofile example_saps\\scenario-win-Saps-SWGCP-sat-small-train-small-test.txt -validN 100" + else + out.puts "Examples (These have VERY small training and test sets, this is just meant for demonstration!)\nIn real applications, please use larger sets to avoid overtuning!!" + out.puts "======================================================================================================" + out.puts "ruby param_ils_2_3_run.rb -numRun 0 -scenariofile example_saps/scenario-Saps-SWGCP-sat-small-train-small-test.txt -validN 100" + out.puts "ruby param_ils_2_3_run.rb -numRun 0 -scenariofile example_saps/scenario-Saps-single-QWH-instance.txt -validN 100" + out.puts "ruby param_ils_2_3_run.rb -numRun 0 -scenariofile example_spear/scenario-Spear-SWGCP-sat-small-train-small-test.txt -validN 100" + out.puts "ruby param_ils_2_3_run.rb -numRun 0 -scenariofile example_cplex/scenario-Cplex-CATS-smalltrain-smalltest.txt -validN 100" + out.puts "ruby param_ils_2_3_run.rb -numRun 0 -scenariofile example_saps/scenario-Saps-SWGCP-sat-small-train-small-test.txt -validN 0 -maxWallTime 6" + end + out.puts "======================================================================================================" +end + + +# ========================================= +# MAIN +# ========================================= + +# ==== Init. + +@eps = 1e-5 +$statsfile = "jobserver_paramils_stats_#{rand}.txt" + +#=== Create outfile +t = Time.now +now= t.strftime("%Y-%m-%dat%I-%M%p") + +# ========================================= +# ParamILS defaults. +# ========================================= +@approach = "focused" +@init_def = 1 +@algo = "saps" +@outdir = "paramils_out/" +@numRun = "" +@instance_seed_file = "" +@test_instance_seed_file = "" + +@temporary_output_dir = "" + +@run_obj = "runtime" +@overall_obj = "adj_mean" +validN = 1000 + + +@N = 2000 +@cutoff_time = 10 +@cutoff_length = "max" +@maxEvals = 100000000 +@tunerTimeout = 8640000 # 100 days +@maxIts = 200000000 +@maxWallTime = 8640000 # 100 days + +@db = 0 #=== For public release - for my own experiments, I always use the DB. +@jobserver = 0 + +@fix_input = "" +start_input = "" + +@output_level = 50 + +$fakedCensoringForExactSameResults = false +deterministic = false + +@R = 10 +@pertubation_strength = 3 +@relative_pertubation_strength = 0.2 +@pertubation_strength_scaling = false +@p_restart = 0.01 +@numNeighboursToEvaluate = 1000000 +@pruning = true +@iterativeDeepening = false +@boundMultiplier = 2 +@idn = false +@use_run_log = false +$stop_on_tie = false # was true in Chris' version, need to eval which one is better + +$minimum_runtime = 0.1 +#=== lambda_t is the ratio of time allocated to ILS executions with lower N and c. +lambda_t = 0.5 + +#=== lambda_N is the ratio of @N allocated to the second last ILS execution. +lambda_n = 0.5 + +#=== lambda_c is the ratio of @cutoff_time allocated to the second last ILS execution. +lambda_c = 0.5 + +@pert_rand = false +@optimum_solqual = -1000000000 # stop once we reach this ! + +lambda_str = "" + +# ========================================= +# Read in ParamILS-specific command line options. +# ========================================= +0.step(ARGV.length-1, 2){|i| + case ARGV[i] + #=== The scenariofile may define any parameter. + when "-scenariofile" + @scenariofile = ARGV[i+1] + when "-userunlog" + if (ARGV[i+1] == "0" || ARGV[i+1] == "false") + @use_run_log = false + elsif (ARGV[i+1] == "1" || ARGV[i+1] == "true") + @use_run_log = true + end + when "-temporary_output_dir" + @temporary_output_dir = ARGV[i+1] + begin + Dir.mkdir(@temporary_output_dir) unless FileTest.exist?(@temporary_output_dir) and FileTest.directory?(@temporary_output_dir) + rescue + end + when "-instance_seed_file" + @instance_seed_file = ARGV[i+1] + when "-test_instance_seed_file" + @test_instance_seed_file = ARGV[i+1] + when "-instance_file" + @instance_file = ARGV[i+1] + when "-test_instance_file" + @test_instance_file = ARGV[i+1] + + when "-approach" + @approach = ARGV[i+1] + when "-numRun" + @numRun = ARGV[i+1].to_i + when "-outdir" + @outdir = ARGV[i+1] + when "-deterministic" + deterministic = ARGV[i+1] + + when "-algo" + @algo = ARGV[i+1] + when "-run_obj" + @run_obj = ARGV[i+1] + when "-overall_obj" + @overall_obj = ARGV[i+1] + when "-mintime" + $minimum_runtime = ARGV[i+1].to_f + + when "-cutoff_time" + @cutoff_time = ARGV[i+1] + when "-cutoff_length" + @cutoff_length = ARGV[i+1] + when "-maxEvals" + tmp = ARGV[i+1] + tmp = 100000000000000000 if tmp == "max" + @maxEvals = tmp.to_i + when "-maxIts" + tmp = ARGV[i+1] + tmp = 100000000000000000 if tmp == "max" + @maxIts = tmp.to_i + when "-tunerTimeout" + tmp = ARGV[i+1] + tmp = 100000000000000000 if tmp == "max" + @tunerTimeout = tmp.to_f + when "-maxWallTime" + tmp = ARGV[i+1] + tmp = 100000000000000000 if tmp == "max" + @maxWallTime = tmp.to_f + when "-wallclock-limit" + tmp = ARGV[i+1] + tmp = 100000000000000000 if tmp == "max" + @maxWallTime = tmp.to_f + when "-pruning" + @pruning = ARGV[i+1] + when "-faked" + $fakedCensoringForExactSameResults = ARGV[i+1] + when "-validN" + validN = ARGV[i+1].to_i + when "-idn" + @idn = ARGV[i+1].to_i + when "-lambda_c" + lambda_c = ARGV[i+1].to_f + lambda_str += "-lambda_c#{lambda_c}" + when "-lambda_t" + lambda_t = ARGV[i+1].to_f + lambda_str += "-lambda_t#{lambda_t}" + when "-lambda_n" + lambda_n = ARGV[i+1].to_f + lambda_str += "-lambda_n#{lambda_n}" + when "-stopOnTie" + $stop_on_tie = ARGV[i+1] + +#=== tuning parameter + when "-ps" + @pertubation_strength = ARGV[i+1].to_i + when "-rps" + @relative_pertubation_strength = ARGV[i+1].to_f + when "-psr" + @pertubation_strength_scaling = ARGV[i+1].to_i + when "-rw_prob" + @p_restart = ARGV[i+1].to_f + when "-R" + @R = ARGV[i+1].to_i + when "-mN" + @numNeighboursToEvaluate = ARGV[i+1].to_i +# when "-maxDetail" +# @maxDetail = ARGV[i+1].to_i + when "-prand" + @pert_rand = ARGV[i+1] + when "-id" + @iterativeDeepening = ARGV[i+1].to_i + when "-bm" + @boundMultiplier = ARGV[i+1].to_f + + when "-init" + if ARGV[i+1].to_s == "0" or ARGV[i+1].to_s == "1" + @init_def = ARGV[i+1].to_s + @init_def = false if @init_def == "0" + else + #=== Start input values are at least partly user-defined, rest: default. + @init_def = ARGV[i+1] + fileWithDef = ARGV[i+1] + File.open(fileWithDef, "r"){|file| start_input = file.gets.chomp} + end + when "-N" + @N = ARGV[i+1].to_i + + + when "-db" + @db = ARGV[i+1] + when "-jobserver" + @jobserver = ARGV[i+1].to_i + + when "-paramfile" + $param_file = ARGV[i+1] + when "-fix" + @fix_input = ARGV[i+1] + + when "-output_level" + @output_level = ARGV[i+1].to_i + + when "-execdir" + $execdir = ARGV[i+1] + + else + output_help($stdout) + puts "\n\n" + raise "Unknown argument: #{ARGV[i]}" + end +} + +if ARGV.length < 1 + output_help($stdout) + exit -1 +end + +if @numRun == "" + output_help($stdout) + puts "\n\n" + puts "Input error. You HAVE to specify #{-numRun} (different runs use different training sets and seeds)" + exit -1 +end + +#=== If a scenariofile is provided, use that to override any specified parameters. +#=== Currently, this is limited to the specified parameters - would be nicer to have it automatic for all parameters... +if @scenariofile + scenarioparams = {"algo" => @algo, "run_obj"=>@run_obj, "overall_obj"=>@overall_obj, "cutoff_time"=>@cutoff_time, + "cutoff_length"=>@cutoff_length, "tunerTimeout"=>@tunerTimeout, "deterministic"=>deterministic, + "instance_seed_file"=>@instance_seed_file, "test_instance_seed_file"=>@test_instance_seed_file, + "instance_file"=>@instance_file, "test_instance_file"=>@test_instance_file, + "execdir"=>$execdir, "outdir"=>@outdir, "paramfile"=>$param_file, "feature_file"=>nil, "wallclock-limit"=>@maxWallTime} # FH: added feature_file for convenient reading of SMAC scenario files + File.open(@scenariofile){|file| + while line = file.gets + recognized = false + next if line =~ /^\s*$/ + for paramindicator in scenarioparams.keys + if line =~ /^#{paramindicator}\s*=(.*)/ + entry = $1.strip + scenarioparams[paramindicator] = entry + recognized = true + break + end + end + unless recognized + puts "Input error: Unrecognized entry #{line} in scenario file #{@scenariofile}:\n\n#{line}\n\nEach line has to start with one of the following: [#{scenarioparams.keys.sort.join(", ")}], and then be followed by = (where is the desired value)." + exit -1 + end + end + } + #=== Assign the values to the parameters in question - I know things like this can be automized in Ruby, but I'm lacking the time ... + deterministic = scenarioparams["deterministic"] + @algo = scenarioparams["algo"] + @run_obj = scenarioparams["run_obj"] + @overall_obj = scenarioparams["overall_obj"] + @cutoff_time = scenarioparams["cutoff_time"] + @cutoff_length = scenarioparams["cutoff_length"] + @tunerTimeout = scenarioparams["tunerTimeout"].to_f + @instance_seed_file = scenarioparams["instance_seed_file"].sub(//,"#{@numRun}") + @test_instance_seed_file = scenarioparams["test_instance_seed_file"].sub(//,"#{@numRun}") + @instance_file = scenarioparams["instance_file"] + @test_instance_file = scenarioparams["test_instance_file"] + + $execdir = File.expand_path(scenarioparams["execdir"]) + @outdir = File.expand_path(scenarioparams["outdir"]) + $param_file = File.expand_path(scenarioparams["paramfile"]) + @maxWallTime = scenarioparams["wallclock-limit"] + + if ((@run_obj =~ /qual/ || @run_obj =~ /approx/) && + (@overall_obj =~ /mean/ || @overall_obj =~ /avg/)) + @pruning = false + end +=begin +# HACK TO OVERWRITE CERTAIN SCENARIO FILE SETTINGS + +0.step(ARGV.length-1, 2){|i| + case ARGV[i] + when "-algo" + @algo = ARGV[i+1] + when "-execdir" + $execdir = ARGV[i+1] + end +} +=end + +end + +puts "max wall time = " + @maxWallTime.to_s + +raise "Input error: If instance_file is specified the instance_seed_file is automatically generated - but you provided both." if @instance_seed_file != "" and @instance_file +raise "Input error: If test_instance_file is specified the test_instance_seed_file is automatically generated - but you provided both." if @test_instance_seed_file != "" and @test_instance_file +raise "Input error: You must provide an instance_file or an instance_seed_file." unless (@instance_seed_file != "" or @instance_file) +raise "Input error: You must provide a test_instance_file or a test_instance_seed_file." unless (@test_instance_seed_file != "" or @test_instance_file) + +# ========================================= +#=== Deal with parameters. +# ========================================= + +$param_file = "#{$execdir}params.txt" unless $param_file +puts $param_file + +@maxDetail = @N + +@db = false if @db == "0" or @db == "false" or @db == 0 +@pruning = false if @pruning == "0" or @pruning == "false" or @pruning == 0 +$fakedCensoringForExactSameResults = false if $fakedCensoringForExactSameResults == "0" or $fakedCensoringForExactSameResults == "false" or $fakedCensoringForExactSameResults == 0 +@iterativeDeepening = false if @iterativeDeepening == "0" or @iterativeDeepening == "false" or @iterativeDeepening == 0 +@idn = false if @idn == "0" or @idn == "false" or @idn == 0 +deterministic = false if deterministic == "0" or deterministic == "false" or deterministic == 0 + +@pertubation_strength_scaling = false if @pertubation_strength_scaling == "0" or @pertubation_strength_scaling == "false" or @pertubation_strength_scaling == 0 + +id_string = "" +id_string = "-id" if @iterativeDeepening +id_string = "-idn" if @idn == 1 +id_string = "-idnn" if @idn == 2 + +raise "idn but no id" if @idn and not @iterativeDeepening + +@pert_rand = false if @pert_rand == "0" or @pert_rand == "false" or @pert_rand == 0 +@pert_rand = true if @pert_rand == "1" or @pert_rand == "true" or @pert_rand == 1 + +pstring = "" +pstring = "prand-" if @pert_rand + +#=== Only I am using the database. +$user_frank = @db +$fakedCensoringRuntime = @cutoff_time + +fakedExactString = "" +fakedExactString = "faked-" if $fakedCensoringForExactSameResults + +pruning_string = "" +pruning_string = "-prune" if @pruning + +@cutoff_time = 1000000000 if @cutoff_time == "max" +@cutoff_time = @cutoff_time.to_f + +@maxWallTime = 1000000000 if @maxWallTime == "max" +@maxWallTime = @maxWallTime.to_f + +@cutoff_length = 2147483647 if @cutoff_length == "max" +@cutoff_length = @cutoff_length.to_i + +@maxEvals = 1000000000 if @maxEvals == "max" + +@oncluster = @jobserver + +if @outdir == "" + if @instance_seed_file != "" + @outdir, tmp = File.split(@instance_seed_file) + else + @outdir, tmp = File.split(@instance_file) + end + @outdir = @outdir + "/paramils-out" +end + +# ========================================= +# Initial setup. +# ========================================= +require "dbi_ils_accessor.rb" if @db +$total_cputime = 0 + +dir, subdir = File.split(@outdir) +begin + Dir.mkdir(dir) unless FileTest.exist?(dir) and FileTest.directory?(dir) +rescue +end +begin + Dir.mkdir(@outdir) unless FileTest.exist?(@outdir) and FileTest.directory?(@outdir) +rescue +end + +#=== Read params from param file. +@params, @domain, @default, $conditionals, @forbidden_combos = read_params($param_file) # Need conditionals as global to enable strip_state in param_reader +num_params = 0 +num_combos = 1 +for param in @params + num_params += 1 if @domain[param].length>1 + num_combos *= @domain[param].length +end +puts "num_params = #{num_params}, num_combos=#{num_combos}" + +if @pertubation_strength_scaling + pert_string = "psr#{@relative_pertubation_strength}-" + @pertubation_strength = [2, (@relative_pertubation_strength*num_params).ceil].max +else + pert_string = "ps#{@pertubation_strength}-" +end + +bm_string = "" +bm_string = "-bm#{@boundMultiplier}" if @pruning + +mNString = "" +mNString = "#-mN{@numNeighboursToEvaluate}" unless @numNeighboursToEvaluate == 1000000 + +max_it_string = "" +max_it_string = "-maxit#{@maxIts}" unless @maxIts == 20000 + +#log_filename = "#{@outdir}/#{@approach}-#{fakedExactString}#{pstring}#{pert_string}log-algo#{@algo}-runobj#{@run_obj}-overallobj#{@overall_obj}-runs#{@N}-time#{@cutoff_time}#{mNString}-init#{@init_def}#{id_string}#{seed_string}#{pruning_string}#{bm_string}#{lambda_str}#{max_it_string}_#{@numRun}#{meta_string}.txt" +#traj_filename = "#{@outdir}/#{@approach}-#{fakedExactString}#{pstring}#{pert_string}traj-algo#{@algo}-runobj#{@run_obj}-overallobj#{@overall_obj}-runs#{@N}-time#{@cutoff_time}#{mNString}-init#{@init_def}#{id_string}#{seed_string}#{pruning_string}#{bm_string}#{lambda_str}#{max_it_string}_#{@numRun}#{meta_string}.txt" +#stats_filename = "#{@outdir}/#{@approach}-#{fakedExactString}#{pstring}#{pert_string}stats-algo#{@algo}-runobj#{@run_obj}-overallobj#{@overall_obj}-runs#{@N}-time#{@cutoff_time}#{mNString}-init#{@init_def}#{id_string}#{seed_string}#{pruning_string}#{bm_string}#{lambda_str}#{max_it_string}_#{@numRun}#{meta_string}.txt" +#stepstats_filename = "#{@outdir}/#{@approach}-#{fakedExactString}#{pstring}#{pert_string}stepstats-algo#{@algo}-runobj#{@run_obj}-overallobj#{@overall_obj}-runs#{@N}-time#{@cutoff_time}#{mNString}-init#{@init_def}#{id_string}#{seed_string}#{pruning_string}#{bm_string}#{lambda_str}#{max_it_string}_#{@numRun}#{meta_string}.txt" +#test_output_filename = "#{@outdir}/#{@approach}-#{fakedExactString}#{pstring}#{pert_string}algo#{@algo}-runobj#{@run_obj}-overallobj#{@overall_obj}-runs#{@N}-time#{@cutoff_time}#{mNString}-init#{@init_def}#{id_string}#{seed_string}#{pruning_string}#{bm_string}#{lambda_str}#{max_it_string}_#{@numRun}#{meta_string}_test.txt" + +algostr = @algo +algostr = algostr.gsub(/ /,"") +algostr = algostr.gsub(/\//,"") +#filepart = "#{@outdir}/#{@approach}-runs#{@N}-runobj#{@run_obj}-overallobj#{@overall_obj}#{max_it_string}#{bm_string}-time#{@cutoff_time}-tunerTime#{@tunerTimeout}-algo#{algostr}" +filepart = "#{@outdir}/#{@approach}-runs#{@N}-runobj#{@run_obj}-overallobj#{@overall_obj}#{max_it_string}#{bm_string}-time#{@cutoff_time}-tunerTime#{@tunerTimeout}-algoAlgo" # to avoid too long filenames + +runlog_filename = "#{filepart}-runlog_#{@numRun}.txt" +log_filename = "#{filepart}-log_#{@numRun}.txt" +traj_filename = "#{filepart}-traj_#{@numRun}.txt" +traj_csv_filename = "#{filepart}-traj_#{@numRun}.csv" +test_output_filename = "#{filepart}-test_#{@numRun}.txt" +result_filename = "#{filepart}-result_#{@numRun}.txt" + +@out = File.open(log_filename, "w") +@param_ils_traj_file = File.open(traj_filename, "w") +@param_ils_traj_csv = File.open(traj_csv_filename, "w") +@param_ils_runlog_file = File.open(runlog_filename, "w") +#@stepstats_out = File.open(stepstats_filename , "w") + +string_arguments = ARGV.map{|x| "\"#{x}\""}.join(" ") +#string_arguments = ARGV.join(" ") +@out.puts "Call: /usr/bin/ruby ../scripts/param_ils_2_3_run.rb #{string_arguments}\n\n\n" +#output_help(@out) +@out.flush + +#=== Build fixed parameters. +@fixed_ass = set_fixed_params(@fix_input, @domain, @params, @out) +@start_ass = set_fixed_params(start_input, @domain, @params, @out) + +@number_of_params_to_opt = @params.length - @fixed_ass.keys.length + + +#=== Use random seed dependent on the run number. +seedForParamILS = (@numRun+1)*1234 # Seed for Param_ILS, not the one to pass on to algorithms. +srand(seedForParamILS) + +#=== Build @instances from file +@instances = [] +if @instance_seed_file == "" + line_list = [] + File.open(File.expand_path(@instance_file)){|file| + while line=file.gets; + line_list << line.chomp.strip unless line.chomp.empty? + end + } + orig_list = line_list.dup + + 2000.times{|i| + if line_list.empty? + line_list = orig_list.dup + break if deterministic + end + line = line_list[rand(line_list.length)] + + line_list.delete(line) + if deterministic + seed = -1 + else + seed = rand(2147483647) + end + + entries = line.strip.split + inst = entries[0] +# inst = File.expand_path(inst) # FH: dropped; this might not even be a path, and even if it is relative should be fine + rest = entries[1...entries.length].join(" ") + @instances << {"seed"=>seed, "name"=>inst, "rest"=>rest, "resultForState"=>Hash.new} + } + + #=== For repeatibility, output the corresponding instance_seed_file: + tmp, basename = File.split(@instance_file) + filename = "#{@outdir}/instance_seed_file_saved-#{basename}-numRun_#{@numRun}.txt" + File.open(filename, "w"){|file| + @instances.map{|entry| file.puts "#{entry["seed"]} #{entry["name"]} #{entry["rest"]}"} + } +else + File.open(File.expand_path(@instance_seed_file)){|file| + while line=file.gets; + raise "Have to have at least 2 entries per line, namely seed and instance name; line #{line.chomp} only has #{line.strip.split.length} entries" unless line.strip.split.length >= 2 + next if line.chomp.empty? + entries = line.strip.split + seed = entries[0].to_i + inst = entries[1] # was: inst = File.expand_path(entries[1]), but that doesn't use the right instance names and puts new instances into the DB + rest = entries[2...entries.length].join(" ") + @instances << {"seed"=>seed, "name"=>inst, "rest"=>rest, "resultForState"=>Hash.new} + end + } +end + +#=== Build @test_instances from file +@test_instances = [] +if @test_instance_seed_file == "" + line_list = [] + File.open(File.expand_path(@test_instance_file)){|file| + while line=file.gets; + line_list << line.chomp.strip unless line.chomp.empty? + end + } + orig_list = line_list.dup + 2000.times{|i| + if line_list.empty? + line_list = orig_list.dup + break if deterministic + end + line = line_list[rand(line_list.length)] + line_list.delete(line) + if deterministic + seed = -1 + else + seed = rand(2147483647) + end + + entries = line.strip.split + + inst = entries[0] +# inst = File.expand_path(inst) # FH: dropped; this might not even be a path, and even if it is relative should be fine + rest = entries[1...entries.length].join(" ") + + @test_instances << {"seed"=>seed, "name"=>inst, "rest"=>rest, "resultForState"=>Hash.new} + } + #=== For repeatibility, output the corresponding instance_seed_file: + tmp, basename = File.split(@test_instance_file) + filename = "#{@outdir}/test_instance_seed_file_saved-#{basename}-numRun_#{@numRun}.txt" + File.open(filename, "w"){|file| + @test_instances.map{|entry| file.puts "#{entry["seed"]} #{entry["name"]} #{entry["rest"]}"} + } +else + File.open(File.expand_path(@test_instance_seed_file)){|file| + while line=file.gets; + next if line.chomp.empty? + raise "Have to have at least 2 entries per line, namely seed and instance name; line #{line.chomp} only has #{line.strip.split.length} entries" unless line.strip.split.length >= 2 + entries = line.strip.split + seed = entries[0].to_i + inst = entries[1] +# inst = File.expand_path(inst) # FH: dropped; this might not even be a path, and even if it is relative should be fine + rest = entries[2...entries.length].join(" ") + @test_instances << {"seed"=>seed, "name"=>inst, "rest"=>rest, "resultForState"=>Hash.new} + end + } +end + +if (@N > @instances.length) + output "WARNING: N=#{@N} is greater than the number of entries +in the @instances array. This can happen if the algorithm is +deterministic and the number of training instances is smaller than N, +or if the instance_seed_file is provided by the user and has less +entries than N. Clamping N and maxDetail to #{@instances.length}" + + @N = @instances.length + @maxDetail = @N +end + +if (validN > @test_instances.length) + output "WARNING: validN=#{validN} is greater than the number +of entries in the @test_instances array. This can happen if the +algorithm is deterministic and the number of test instances is smaller +than validN, or if the test_instance_seed_file is provided by the user +and has less entries than validN. Clamping validN to +#{@test_instances.length}" + + validN = @test_instances.length +end + +@instances = @instances[0...@N] +@test_instances = @test_instances[0...validN] +Dir.chdir($execdir) if $execdir + + +# ========================================= +#=== Output parameters. +# ========================================= +puts "seed: #{seedForParamILS}" +@out.puts "seed: #{seedForParamILS}" + +@out.puts "algo: #{@algo}" +@out.puts "tunerTimeout (CPU time): #{@tunerTimeout}" +@out.puts "maxWallTime: #{@maxWallTime}" +@out.puts "maxEvals: #{@maxEvals}" + +@out.puts "run_obj: #{@run_obj}" +@out.puts "overall_obj: #{@overall_obj}" + +if @instance_seed_file != "" + @out.puts "instance_seed_file: #{@instance_seed_file}" +else + @out.puts "instance_file: #{@instance_file}" +end + +if @test_instance_seed_file != "" + @out.puts "test_instance_seed_file: #{@test_instance_seed_file}" +else + @out.puts "test_instance_file: #{@test_instance_file}" +end +@out.puts "N: #{@N}" + +@out.puts "cutoff_time: #{@cutoff_time}" +@out.puts "cutoff_length: #{@cutoff_length}" + +@out.puts "R: #{@R}" +@out.puts "pertubation_strength_basic: #{@pertubation_strength_basic}" +@out.puts "pertubation_strength_scaling: #{@pertubation_strength_scaling}" +@out.puts "p_restart: #{@p_restart}" + +#=== Reset the seed at this point to get exactly the same behaviour as ParamILS version 2.1 +srand(seedForParamILS) +# ========================================= +#=== Execute ParamILS. +# ========================================= + +$total_cputime = 0 +$totalEvaluationCount = 0 +@lastOutputCPUTime = 0 + +puts("Run #{@numRun+1}") +@out.puts("Run #{@numRun+1}") + +@param_ils_traj_file.puts "Run #{@numRun+1}" +@param_ils_traj_csv.puts "\"Total Time\",\"Mean Performance\",\"Wallclock Time\",\"Incumbent ID\",\"Automatic Configurator Time\",\"Configuration...\"" + +@start_time_wallclock = Time.now + +init_state_int = init_search() + +if @iterativeDeepening + if lambda_n < 1-@eps + numDepths = (Math.log(@N) / Math.log(1.0/lambda_n)).ceil + 1 + else + numDepths = (Math.log(@cutoff_time) / Math.log(1.0/lambda_c)).ceil + 1 + p numDepths + end + + @nForDepth = [] + @cForDepth = [] + @tForDepth = [] + @eForDepth = [] + + numDepths.times{|i| + @nForDepth[i] = ((@N+0.0) * (lambda_n**(numDepths-1-i))).ceil + @cForDepth[i] = ((@cutoff_time+0.0) * (lambda_c**(numDepths-1-i))).ceil + @tForDepth[i] = (@tunerTimeout+0.0) * (lambda_t**(numDepths-1-i)) + @eForDepth[i] = @maxEvals # (@maxEvals+0.0) * (lambda_t**(numDepths-1-i)) + puts "#{@nForDepth[i]} #{@cForDepth[i]} #{@tForDepth[i]}" + } + + @nStart = 1 + numDepths.times{|depth| + init_state_int = iterative_deepening_ils(depth+1, init_state_int) + @R = 0 #=== Don't need random moves anymore. + + #=== For FocusedILS: Compute number of runs to give the incumbent from the last phase to start the new phase. + if @idn and depth != numDepths-1 + @nStart = (detail(init_state_int) * @cForDepth[depth]) / @cForDepth[depth+1] + else + @nStart = 1 + end + } +else + @nStart = 1 + @nForDepth = [@N] + @cForDepth = [@cutoff_time] + @tForDepth = [@tunerTimeout] + @eForDepth = [@maxEvals] + iterative_deepening_ils(1, init_state_int) +end + +# ========================================= +#=== Statistics after the execution is over. +# ========================================= + +=begin +#=== Output gathered statistics. +puts stats_filename +File.open(stats_filename, "w"){|file| + for full_state_int in @orderedVisitedStates + hash = @allVisitedStates[full_state_int] + resDetail = detail(full_state_int) + cens = @censoringThresholdPerLevelOfDetail[resDetail-1] + n = @numRunsPerLevelOfDetail[resDetail-1] + res = @cachedResultScalars[$full_int_to_stripped_int[full_state_int]][resDetail-1] + + file.puts "#{hash["number"]}, #{res}, #{n}, #{hash["iteration"]}, #{cens}, #{hash["str"]}" +# file.puts "#{hash["number"]}, #{resDetail}, #{res}, #{hash["numVisited"]}, #{hash["totalTime"]}, #{hash["timesLM"]}, #{hash["timesMadeIncumbent"]}" + end +} +=end + +#=== Evaluate test/validation performance. +final_state = $int_to_full_state[@incumbent_state_int] +final_stripped_state = $stripped_int_to_stripped_state[$full_int_to_stripped_int[@incumbent_state_int]] +res,n,c = eval(@incumbent_state_int) + +output "\n==================================================================\nParamILS is finished.\n==================================================================\n\nFinal best parameter configuration found: "+@params.map{|x| "#{x}=#{final_state[x]}"}.join(", ")+"\n" +output "==================================================================" +output "Active parameters: #{@params.select{|x| final_stripped_state.keys.include?(x)}.map{|x| "#{x}=#{final_state[x]}"}.join(", ")}\n" +output "\n==================================================================\nTraining quality of this final best found parameter configuration: #{res}, based on #{n} runs with cutoff #{c}\n==================================================================\n\n" +output "\n==================================================================\nComputing validation result on independent data -- #{@test_instances.length} runs with cutoff time #{@cutoff_time}...\n==================================================================" + +test_results = getRunsOnEntriesWithParams(@test_instances, @incumbent_state_int, @cutoff_time, true) +for i in 0...@test_instances.length + output "#{@test_instances[i]["name"]}: #{test_results[i]}" +end +test_result = combinationOfObjectiveFunctions(@algo, @overall_obj, test_results, @run_obj, @cutoff_time, @cutoff_length) +output "Combined result: #{test_result}" +File.open(test_output_filename, "w"){|file| + file.puts test_result +} + +output "\n================================================================\n\Final best parameter configuration: "+@params.map{|x| "#{x}=#{final_state[x]}"}.join(", ")+"\n" +output "==================================================================" +output "Active parameters: #{@params.select{|x| final_stripped_state.keys.include?(x)}.map{|x| "#{x}=#{final_state[x]}"}.join(", ")}\n" +output "\n================================================================\nTraining quality of this final best found parameter configuration: #{res}, based on #{n} runs with cutoff #{c}" +output "Test quality of this final best found parameter configuration: #{test_result}, based on #{@test_instances.length} independent runs with cutoff #{@cutoff_time}\n==================================================================" + +@out.close +@param_ils_traj_file.close +@param_ils_traj_csv.close +@param_ils_runlog_file.close + +#=== Write these last lines into the result file. +File.open(result_filename, "w"){|file| + file.puts "Final best parameter configuration: "+@params.map{|x| "#{x}=#{final_state[x]}"}.join(", ")+"\n" + file.puts "==================================================================" + file.puts "Active parameters: #{@params.select{|x| final_stripped_state.keys.include?(x)}.map{|x| "#{x}=#{final_state[x]}"}.join(", ")}\n" + file.puts "==================================================================" + file.puts "Training quality of this final best found parameter configuration: #{res}, based on #{n} runs with cutoff #{c}" + file.puts "Test quality of this final best found parameter configuration: #{test_result}, based on #{@test_instances.length} independent runs with cutoff #{@cutoff_time}" +} diff --git a/sparkle/Components/paramils2.3.8-source/param_reader.rb b/sparkle/Components/paramils2.3.8-source/param_reader.rb new file mode 100755 index 000000000..359749a2e --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/param_reader.rb @@ -0,0 +1,308 @@ +def float_regexp() + return '[+-]?\d+(?:\.\d+)?(?:[eE][+-]\d+)?'; +end + +# ================================================ +# Read parameters from executable. +# ================================================ +def read_params(paramfile) + params = [] + domain = Hash.new + default = Hash.new + conditionals = Hash.new + forbidden_combos = [] + + File.open(paramfile){|file| + #=== Match parameter format: param_name {value1,value2,...}[default_value] + while line = file.gets + next if line =~ /^\s*(#.*)?\n$/ # deal with empty and comment lines + next unless line =~ /^(.*)\s*\{(.*)\}\s*\[(.*)\]/ + line =~ /^(.*)\s*\{(.*)\}\s*\[([^\]]*)\]/ + parname, vals, default_val = $1.strip, $2.strip, $3.strip + values = vals.strip.split(",").map{|x|x.strip} #Match values. + #=== Check whether possible values include default - deal with possible different number formats. + unless values.include?(default_val) + if default =~ /(#{float_regexp})/ + def_f = $1.to_f + for val in values + default = $1 if val =~ /(#{float_regexp})/ and $1.to_f == def_f + end + end + raise "default value #{default_val} is not a possible value for #{parname}. Only #{values.join(",")} are ok." unless values.include?(default_val) + end + domain[parname] = values + default[parname] = default_val + end +# p line +# p domain + params = domain.keys.sort + } + + File.open(paramfile){|file| + #=== Deal with conditional parameters. + #=== Example: parameter a is only relevant if c=1 or c=2: "a|c in {1,2}" + #=== Match lines with conditional rules. + while line=file.gets + next if line =~ /^\s*(#.*)?\n$/ # deal with empty and comment lines + next unless line =~ /^(.*)\|(.*) in \{(.*)\}/ + line =~ /^(.*)\|(.*) in \{(.*)\}/ + conditional_param, deciding_param, deciding_vals = $1, $2, $3 + conditional_param.strip! + deciding_param.strip! + deciding_vals = deciding_vals.strip.split(",").map{|x|x.strip} + + #=== Make sure there are no errors. + puts "WARNING. Conditional parameter #{conditional_param} does not exist." unless params.include?(conditional_param) + puts "WARNING. Variable #{deciding_param} which #{conditional_param} is conditional on does not exist." unless params.include?(deciding_param) + deciding_vals.each{|x| +# puts "WARNING. Value #{x} of variable #{deciding_param} which #{conditional_param} is conditional on does not exist." unless domain[deciding_param].include?(x) + } +# deciding_vals.map!{|x| domain[deciding_param].index(x)} + conditionals[conditional_param] = Hash.new unless conditionals.key?(conditional_param) + conditionals[conditional_param][deciding_param] = deciding_vals + end +# puts line + } + + File.open(paramfile){|file| + while line=file.gets + next if line =~ /^\s*(#.*)?\n$/ # deal with empty and comment lines +# puts "1: #{line}" + next unless line =~ /\{.*\}/ +# puts "2: #{line}" + next if line =~ /\[.*\]/ +# puts "3: #{line}" + next if line =~ /\|/ +# puts "4: #{line}" + line =~ /\{(.*)\}/ +#p line + combo =$1 + #TODO: implement debugging info in case specified values don't exist. + forbidden_combos << combo.split(",").map{|x|x.strip.split("=")} # One entry: "a=1,b=2,c=3" => ["a=1","b=2","c=3"] => [[a,1],[b,2],[c,3]] + end + } + + combos = 1 + num_params = 0 + for param in params + num_params += 1 if domain[param].length>1 + combos *= domain[param].length + end + + puts "#{num_params} parameters in total" + puts "#{conditionals.length} parameters are conditional." + puts "#{forbidden_combos.length} parameter combinations are forbidden." +# puts "Number of parameters with >1 value: #{num_params}" +# puts "Number of parameter configurations (less forbidden ones): #{combos}" + + return [params, domain, default, conditionals, forbidden_combos] +end + +# ========================================= +# Remove all irrelevant conditional parameters from state. When one is removed that may trigger others to be removed, too. +# ========================================= +def strip_state(state) + removedParam = true + activeParams = state.keys.sort.dup + while removedParam +# p activeParams + removedParam = false + paramsForLoop = activeParams.dup + for param in paramsForLoop + if $conditionals.key?(param) + for parent in $conditionals[param].keys + if (not $conditionals[param][parent].index(state[parent])) or (not activeParams.include?(parent)) +# p $conditionals[param][parent] + activeParams.delete(param) + removedParam = true + next + end + end + end + end + end + result = Hash.new + for param in activeParams + result[param] = state[param] + end + return result +end + +# ========================================= +# state as string +# ========================================= +def state_string(state) + return state["param_string"] if state.key?("param_string") + stripped_state = strip_state(state) + stripped_state.keys.sort.map{|param| param + "=" + stripped_state[param].to_s}.join(" ") +end + + +def output_to_s(params, domain, default, conditionals, forbidden_combos) + output = [] + output << "======================================================\nparameters begin: " + for param in params + output << " #{param}: domain=#{domain[param].join(",")}, default=#{default[param]}" + end + output << "parameters end.\n======================================================" + + output << "======================================================\nconditionals begin: " + for key in conditionals.keys.sort + output << " #{key}| #{conditionals[key].to_a.join(" ")}" + end + output << "conditionals end.\n======================================================" + + output << "======================================================\nforbidden begin: " + for forbidden_combo in forbidden_combos + output << " #{forbidden_combo.map{|x|x.join("=")}.join(", ")}" + end + output << "forbidden end.\n======================================================" + return output.join("\n") +end + + +# ========================================= +# Returns true iff state is forbidden by $forbidden_combos. +# ========================================= +def forbidden(state, forbidden_combos) + forbidden = false + for forbidden_combo in forbidden_combos + #A combo is satisfied if all its assignments are satisfied. + match = true + for assignment in forbidden_combo + param, forbidden_value = assignment + match = false unless state[param] == forbidden_value +# puts "#{param}, #{forbidden_value}" +# puts "#{param}, #{state[param]}" + end + return true if match # a forbidden combo is matched. + end + return false +end + + +# ========================================= +# Binary counter for increasing the state one at a time. Return value true/false, changing state itself! +# ========================================= +def increase_state(state, domain, sorted_params, fixed_ass) +# p $conditionals +# err + for param in sorted_params + next if fixed_ass.key?(param) + + #=== If parameter is conditional, skip it if it is inactive. + if $conditionals.key?(param) + active = true +# puts "param" +# p param + for deciding_param in $conditionals[param].keys +# puts "deciding_param" +# p deciding_param + good_vals= $conditionals[param][deciding_param] +# puts good_vals +# p good_vals + active = false unless good_vals.include?(state[deciding_param]) + end + next unless active + end + + idx = domain[param].index(state[param]) + raise "idx can't be nil but it is for state #{state} and param #{param} with domain #{$domain[param]} and value state[param]" if idx == nil + + if idx == domain[param].length-1 + state[param] = domain[param][0] + else + state[param] = domain[param][idx+1] + return true + end + end + return false # can't increase state anymore +end + +# ========================================= +# Return true if y is (indirectly) dependent on x. (Recursive procedure to determine) +# ========================================= +def predecessor(x,y) + return false if not $conditionals.key?(y) + return true if $conditionals[y].key?(x) + for pred in $conditionals[y].keys + return true if predecessor(x,pred) + end + return false +end + +########################################################################### +#=== Build array containing all possible parameter settings. +#=== Internally also build hash for quick checks if an equivalent state is already in there. +########################################################################### +def get_all_distinct_states(params, domain, forbidden_combos, out, fixed_ass) + sorted_params = params.sort{|x,y| predecessor(x,y) ? -1 :1} + + all_distinct_states = [] + all_states = Hash.new + curr_state = Hash.new + sorted_params.map{|x| curr_state[x] = domain[x][0]} + fixed_ass.keys.map{|x| curr_state[x] = fixed_ass[x]} + + all_states = {} + count = 0 + allcount = 0 + nonforbidden_count = 0 + loop do + allcount += 1 + unless forbidden(curr_state, forbidden_combos) + nonforbidden_count +=1 + + stripped_state = strip_state(curr_state) + state_as_string = state_string(curr_state) + unless all_states.key?(state_as_string) + count += 1 +# puts "#{count} (#{nonforbidden_count}, #{allcount}): #{state_as_string}" + puts "#{count} (#{nonforbidden_count}, #{allcount})" if count.modulo(1000)[1]==1 +# out.puts "#{count} (#{allcount}): #{state_as_string}" + + all_distinct_states << [stripped_state, state_as_string] + all_states[state_as_string] = 0 + end + end + break unless increase_state(curr_state, domain, sorted_params, fixed_ass) + end + puts "nonforbidden count: #{nonforbidden_count}" + return all_distinct_states +end + + +# ================================================ +# Build string of fixed parameters. +# ================================================ +def fixed_string(fixed_ass) + fixed_string = "" + for param in fixed_ass.keys + fixed_string << "#{param}=#{fixed_ass[param]} " + end + return fixed_string +end + +# ================================================ +# Build Hash of fixed parameters. +# ================================================ +def set_fixed_params(fix_input, domain, params, out) + fixed_ass = Hash.new + #=== Parse fix and remember them in hash. + if fix_input + # p fix_input + fix_input = fix_input.split.map! {|x| x.strip.to_s} +# p fix_input + 0.step(fix_input.length-1,2){|i| + param = fix_input[i] + value = fix_input[i+1] + # p [param, value] + out.puts "*************************** WARNING *****************************\nparam #{param} set to fixed value #{value}, which is not included in its domain #{domain[param].join(", ")}\n*****************************************************************" unless domain[param].include?(value) + puts "*************************** WARNING *****************************\nparam #{param} set to fixed value #{value}, which is not included in its domain #{domain[param].join(", ")}\n*****************************************************************" unless domain[param].include?(value) + fixed_ass[param] = value + } + end +# out.puts "manually fixed: #{fixed_string(fixed_ass)}" +# puts "manually fixed: #{fixed_string(fixed_ass)}" + return fixed_ass +end diff --git a/sparkle/Components/paramils2.3.8-source/paramils_target_algorithm.py b/sparkle/Components/paramils2.3.8-source/paramils_target_algorithm.py new file mode 100644 index 000000000..f9cc261ca --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/paramils_target_algorithm.py @@ -0,0 +1,50 @@ +#!/usr/bin/env python3 +# -*- coding: UTF-8 -*- +"""Handles ParamILS calls passing to sparkle solver wrappers.""" +import sys +import time +from pathlib import Path + +from runrunner import Runner + +from sparkle.solver import Solver +from sparkle.types import resolve_objective + + +if __name__ == "__main__": + # Incoming call from ParamILS: + # Translate input to Solver object input + argsiter = iter(sys.argv[8:]) + args = zip(argsiter, argsiter) + configuration = {arg.strip("-"): val for arg, val in args} + # Args 1-7 conditions of the run, the rest are configurations for the solver + # [Solver_dir, SparkleObjective, instance, specifics, cutoff_time, runlength, seed] + solver_dir = Path(sys.argv[1]) + objective = resolve_objective(sys.argv[2]) + instance = sys.argv[3] + cutoff_time = float(sys.argv[5]) + seed = int(sys.argv[7]) + + runsolver_binary = solver_dir / "runsolver" + solver = Solver(solver_dir, + raw_output_directory=Path(), + runsolver_exec=runsolver_binary) + # Call Runsolver with the solver configurator wrapper and its arguments + start_t = time.time() + output = solver.run(instance=instance, + objectives=[objective], + seed=seed, + cutoff_time=cutoff_time, + configuration=configuration, + run_on=Runner.LOCAL) + run_time = min(time.time() - start_t, cutoff_time) + + # Return values to ParamILS + # SMAC2 does not accept nan values etc for quality + quality = "0" + if not objective.time and objective.name in output.keys(): + quality = float(output[objective.name]) + if not objective.minimise: + quality = -1 * quality + print("Result for ParamILS: " + f"{output['status']}, {output['cpu_time']}, 0, {quality}, {seed}") diff --git a/sparkle/Components/paramils2.3.8-source/stats_ils.rb b/sparkle/Components/paramils2.3.8-source/stats_ils.rb new file mode 100755 index 000000000..13330567b --- /dev/null +++ b/sparkle/Components/paramils2.3.8-source/stats_ils.rb @@ -0,0 +1,231 @@ +def float_regexp() + return '[+-]?\d+(?:\.\d+)?(?:[eE][+-]\d+)?'; +end + +# ######################### +# ADDITIONAL STATS FOR ARRAYS only filled with numbers. +# ######################### +class Array + #===== Average + def avg + return nil if length == 0 + result = 0; + each {|x| + return x if x.to_s == "Infinity" + if x.to_s =~ /#{float_regexp}/ + result += x.to_f + else + raise "Trying to compute mean of array with non-float entry: #{x.inspect} !" + end + } + return result / length + end + #===== Standard deviation + def std + return nil if length == 0 + return 0 if length == 1 # no std dev if only one run + sum_of_squ = 0 + each {|x| + return x if x.to_s == "Infinity" + if x.to_s =~ /#{float_regexp}/ + sum_of_squ += x.to_f**2 + else + raise "Trying to compute stddev of array with non-float entry: #{x.inspect} !" + end + } + numerator = [0,sum_of_squ - length*(avg**2)].max + return Math.sqrt(numerator/(length-1)) + end + + def hacksort(x,y) + return -1 if x == nil + return 1 if y == nil + x=x.to_s + y=y.to_s + return -1 unless x =~ /#{float_regexp}/ + return 1 unless y =~ /#{float_regexp}/ + return x.to_f<=>y.to_f; + end + + def quantile(p) + tmp=self.sort#{|x,y| hacksort(x,y)} +# p tmp + index = (p*tmp.length).ceil.to_i-1 + return tmp[index] + end + + def median + tmp=self.sort#{|x,y| hacksort(x,y)} + if tmp.length.modulo(2)==1 + index = (tmp.length/2).floor.to_i + return tmp[index] + else + index1 = (tmp.length/2).to_i-1 + index2 = (tmp.length/2).to_i + return 0.5*(tmp[index1]+tmp[index2]) + end + end +end + +def log_zero() + return -100000 +end + +def log10_or_small(x) + raise "shall compute log10_or_small from non-float #{x}" unless x.to_s =~ /#{float_regexp}/ + raise "shall compute log10_or_small from number #{x} <= 0" unless x >= 0 + if x == 0 + return log_zero() + else + return Math.log10(x) + end +end + +def correlation_coefficient(array1, array2) + unless array1.length == array2.length + puts "Trying to compute correlation coefficient of two array of different size:" + p array1 + puts "" + p array2 + raise "Trying to compute correlation coefficient of two array of different size: #{array1.length}, #{array2.length}" + end + n=array1.length + unless n > 1 + puts "Cannot compute correlation coefficient of array with length #{n} < 2" + p array1 + puts "" + p array2 + raise "Cannot compute correlation coefficient of array with length #{n} < 2" + end + sum=0 + for i in 0...n + sum += array1[i].to_f * array2[i].to_f + end + cov = 1.0 / (n - 1.0) * (sum-n*array1.avg*array2.avg) + return cov / (array1.std * array2.std) +end + +# ######################### +# BUILD HISTOGRAM for each step/time step a run showed an improvement on. +# Each run in runs must be an array out of which we extract entry index for the x-axis (#steps / time). +# The zero'th entry of each run array must be solution quality. +# ######################### +def build_histo(runs, index) + histo = [] + for run in runs + histo += run.map{ |tupel| tupel[index]} + end + histo.uniq! + histo.sort! + + # ######################### + # For each step in the histogram compute avg. sol. quality and std. deviation + # ######################### + histo.map! {|step| + run_quals_at_step = [] + for run in runs + i=0 # this IS necessary since ruby does not assign i if the loop is not entered at all. + for i in 0...run.length # ... is exclusive ( < ) + break if run[i][index] > step + end + run_quals_at_step << run[i][0]; + end +# [step, run_quals_at_step.avg, run_quals_at_step.std] + [step, run_quals_at_step.avg, run_quals_at_step.min, run_quals_at_step.max] + } +end + +def output_histo(header, num_run, histo, outputname, format_string) +# return if histo.length == 0 + file = File.open(outputname, "w") + file.puts "# #{header}" + file.puts "# #{num_run} iterations" + for out_tupel in histo + #step, avg qual. at step, stddev qual. at step + file.puts format_string % out_tupel + end + file.close +end + +def build_qrtd(runs, index, qual_to_reach) + times = [] + maxtime = 100 + for run in runs + r = run.find{|r| r[0] >= qual_to_reach-(1e-4)} +# puts "run #{run}, qual_to_reach #{qual_to_reach-(1e-4)}, r #{r}" + times << r[index] if r + if run.length > 0 + maxtime = [run[run.length-1][index], maxtime].max + end + end + times.sort! +# times << maxtime # such that the qrtd file indicates how long the algorithm has been run. +# times.sort!{|x,y| x == nil ? 1 : (y==nil ? -1 : x<=>y) } # nil is bigger than anything + result = [] + result << [0.0,0] unless times[0]==0 + for i in 0...times.length +# break if times[i] == maxtime + next if (i != times.length-1 and times[i+1]==times[i]) + result << [times[i], (i+1.0)*100/runs.length] + end + result << [maxtime, (times.length)*100.0/runs.length] + + return result +end + +def qual_at_time(filename, time) + last_avg, last_min, last_max, last_std = nil,nil,nil,nil + avg,min,max, std = nil,nil,nil,nil + File.open(filename) do |file| + while line = file.gets +# t,avg,std = line.split + t,avg,min,max = line.split + break if t.to_f > time + last_avg, last_min, last_max, last_std = avg, min, max, std + end + end +# return [nil, nil] if last_avg == nil +# return [last_avg.to_f, last_std.to_f] + return [nil, nil, nil] if last_avg == nil + return [last_avg.to_f, last_min.to_f, last_max.to_f] +end + +def quantile(filename, quantile_prob) + raise "filename is nil in quantile" if filename == nil + # filename has to be an .qrtd / .qrld filename ! + time, prob = nil,nil + File.open(filename) do |file| + while line = file.gets + next if line =~ /^#/ + tmp, prob = line.split + if prob.to_f >= quantile_prob * 100 + time = tmp + break + end + end + end + if time + return (time.to_f*100).floor/100.0 + else + return nil + end +end + +# Returns nicely formatted avg and stddiv. +def avg_std(array, *divby) + avg = array.avg + std = array.std + if divby[0] + avg /= divby[0].to_f + std /= divby[0].to_f + end + return "%.2f(%.2f)" % [avg,std] +end + +def min_max(array) + return "[" + array.min.to_s + ", " + array.max.to_s + "]" +end + +def min_max_f(array) + return "[%.5f, %.5f]" % [array.min,array.max] +end diff --git a/sparkle/Components/sparkle_settings.ini b/sparkle/Components/sparkle_settings.ini index 31a1ffbff..3bebed2e1 100644 --- a/sparkle/Components/sparkle_settings.ini +++ b/sparkle/Components/sparkle_settings.ini @@ -13,8 +13,8 @@ wallclock_time = 600 target_cutoff_length = max [smac3] +facade = HyperparameterOptimizationFacade walltime_limit = 1200 -max_ratio = 0.2 [irace] max_time = 1750 diff --git a/sparkle/__init__.py b/sparkle/__init__.py index e210c7dcb..08d79b893 100644 --- a/sparkle/__init__.py +++ b/sparkle/__init__.py @@ -1,2 +1,3 @@ """Init file for sparkle.""" import sparkle.about as about +__version__ = about.version diff --git a/sparkle/about.py b/sparkle/about.py index 5aea18027..0cbcab90c 100644 --- a/sparkle/about.py +++ b/sparkle/about.py @@ -1,7 +1,7 @@ """Helper module for information about Sparkle.""" name = "Sparkle" -version = "0.9.1.1" +version = "0.9.2" description = "Platform for evaluating empirical algorithms/solvers" licence = "MIT" authors = ["Koen van der Blom", diff --git a/sparkle/configurator/configurator.py b/sparkle/configurator/configurator.py index 2a92ad9db..0532512b0 100644 --- a/sparkle/configurator/configurator.py +++ b/sparkle/configurator/configurator.py @@ -2,12 +2,14 @@ # -*- coding: UTF-8 -*- """Configurator class to use different algorithm configurators like SMAC.""" from __future__ import annotations -from abc import abstractmethod from pathlib import Path +import runrunner as rrr from runrunner import Runner, Run + from sparkle.solver import Solver from sparkle.instance import InstanceSet +from sparkle.structures import PerformanceDataFrame from sparkle.types import SparkleObjective @@ -40,17 +42,20 @@ def scenario_class() -> ConfigurationScenario: """Return the scenario class of the configurator.""" return ConfigurationScenario - @abstractmethod def configure(self: Configurator, + configuration_commands: list[str], + data_target: PerformanceDataFrame, + output: Path, scenario: ConfigurationScenario, - validate_after: bool = True, - sbatch_options: list[str] = [], + validation_ids: list[int] = None, + sbatch_options: list[str] = None, num_parallel_jobs: int = None, base_dir: Path = None, run_on: Runner = Runner.SLURM) -> Run: """Start configuration job. Args: + scenario: ConfigurationScenario to execute. validate_after: Whether to validate the configuration on the training set afterwards or not. @@ -62,7 +67,36 @@ def configure(self: Configurator, Returns: A RunRunner Run object. """ - raise NotImplementedError + runs = [rrr.add_to_queue( + runner=run_on, + cmd=configuration_commands, + name=f"{self.name}: {scenario.solver.name} on {scenario.instance_set.name}", + base_dir=base_dir, + output_path=output, + parallel_jobs=num_parallel_jobs, + sbatch_options=sbatch_options)] + + if validation_ids: + validate = scenario.solver.run_performance_dataframe( + scenario.instance_set, + run_ids=validation_ids, + performance_dataframe=data_target, + cutoff_time=scenario.cutoff_time, + sbatch_options=sbatch_options, + log_dir=scenario.validation, + base_dir=base_dir, + dependencies=runs, + job_name=f"{self.name}: Validating {len(validation_ids)} " + f"{scenario.solver.name} Configurations on " + f"{scenario.instance_set.name}", + run_on=run_on, + ) + runs.append(validate) + + if run_on == Runner.LOCAL: + for run in runs: + run.wait() + return runs @staticmethod def organise_output(output_source: Path, diff --git a/sparkle/configurator/implementations/__init__.py b/sparkle/configurator/implementations/__init__.py index 9f8cf90f8..b330a108a 100644 --- a/sparkle/configurator/implementations/__init__.py +++ b/sparkle/configurator/implementations/__init__.py @@ -1,13 +1,14 @@ """This package provides specific Configurator class implementations for Sparkle.""" from sparkle.configurator.configurator import Configurator from sparkle.configurator.implementations.irace import IRACE, IRACEScenario +from sparkle.configurator.implementations.paramils import ParamILS, ParamILSScenario from sparkle.configurator.implementations.smac2 import SMAC2, SMAC2Scenario from sparkle.configurator.implementations.smac3 import SMAC3, SMAC3Scenario def resolve_configurator(configurator_name: str) -> Configurator: """Returns the Configurator subclass by name.""" - subclass_names = [IRACE.__name__, SMAC2.__name__, SMAC3.__name__] + subclass_names = [IRACE.__name__, ParamILS.__name__, SMAC2.__name__, SMAC3.__name__] if configurator_name in subclass_names: return eval(configurator_name) return None diff --git a/sparkle/configurator/implementations/irace.py b/sparkle/configurator/implementations/irace.py index b75319de7..016f1c6b3 100644 --- a/sparkle/configurator/implementations/irace.py +++ b/sparkle/configurator/implementations/irace.py @@ -6,7 +6,7 @@ from sparkle.configurator.configurator import Configurator, ConfigurationScenario from sparkle.solver import Solver -from sparkle.structures import PerformanceDataFrame +from sparkle.structures import PerformanceDataFrame, FeatureDataFrame from sparkle.instance import InstanceSet, Instance_Set from sparkle.types import SparkleObjective, resolve_objective @@ -205,6 +205,7 @@ def __init__(self: ConfigurationScenario, first_test: int = None, mu: int = None, max_iterations: int = None, + feature_data: FeatureDataFrame = None, )\ -> None: """Initialize scenario paths and names. @@ -237,6 +238,8 @@ def __init__(self: ConfigurationScenario, N^param is the number of non-fixed parameters to be tuned. Setting this parameter may make irace stop sooner than it should without using all the available budget. We recommend to use the default value. + feature_data: FeatureDataFrame object with the feature data. + Currently not supported by IRACE. """ """ Other possible arguments that are not added yet to Sparkle: @@ -325,6 +328,9 @@ def __init__(self: ConfigurationScenario, else: self.sparkle_objective = None + if feature_data is not None: + print("WARNING: Instance features currently not supported by IRACE.") + self.number_of_runs = number_of_runs self.solver_calls = solver_calls if solver_calls and solver_calls > 0 else None self.max_time = max_time if max_time and max_time > 0 else None diff --git a/sparkle/configurator/implementations/paramils.py b/sparkle/configurator/implementations/paramils.py new file mode 100644 index 000000000..44e379772 --- /dev/null +++ b/sparkle/configurator/implementations/paramils.py @@ -0,0 +1,276 @@ +"""Configurator class to use different configurators like SMAC.""" + +from __future__ import annotations +# from typing import Callable +from pathlib import Path +# import ast +# from statistics import mean +# import operator +import fcntl +# import glob +import shutil + +# import pandas as pd + +from runrunner import Runner, Run + +from sparkle.configurator.configurator import Configurator, ConfigurationScenario +from sparkle.solver import Solver +from sparkle.structures import PerformanceDataFrame +from sparkle.instance import InstanceSet +from sparkle.types import SparkleObjective + + +class ParamILS(Configurator): + """Class for ParamILS (Ruby) configurator.""" + configurator_path = Path(__file__).parent.parent.parent.resolve() /\ + "Components/paramils2.3.8-source" + configurator_executable = configurator_path / "param_ils_2_3_run.rb" + target_algorithm = "paramils_target_algorithm.py" + configurator_target = configurator_path / target_algorithm + + def __init__(self: ParamILS, + base_dir: Path, + output_path: Path) -> None: + """Returns the ParamILS (Ruby) configurator, V2.3.8. + + Args: + base_dir: The path where the configurator will be executed in. + output_path: The path where the output will be placed. + """ + output_path = output_path / ParamILS.__name__ + output_path.mkdir(parents=True, exist_ok=True) + return super().__init__( + output_path=output_path, + base_dir=base_dir, + tmp_path=output_path / "tmp", + multi_objective_support=False) + + @property + def name(self: ParamILS) -> str: + """Returns the name of the configurator.""" + return ParamILS.__name__ + + @staticmethod + def scenario_class() -> ParamILSScenario: + """Returns the ParamILS scenario class.""" + return ParamILSScenario + + def configure(self: ParamILS, + scenario: ParamILSScenario, + data_target: PerformanceDataFrame, + validate_after: bool = True, + sbatch_options: list[str] = [], + num_parallel_jobs: int = None, + base_dir: Path = None, + run_on: Runner = Runner.SLURM) -> list[Run]: + """Start configuration job. + + Args: + scenario: ConfigurationScenario object + data_target: PerformanceDataFrame where to store the found configurations + validate_after: Whether the Validator will be called after the configuration + sbatch_options: List of slurm batch options to use + num_parallel_jobs: The maximum number of jobs to run parallel. + base_dir: The path where the sbatch scripts will be created for Slurm. + run_on: On which platform to run the jobs. Default: Slurm. + + Returns: + A RunRunner Run object. + """ + self.scenario = scenario + self.scenario.create_scenario(parent_directory=self.output_path) + output_csv = self.scenario.validation / "configurations.csv" + output_csv.parent.mkdir(exist_ok=True, parents=True) + seeds = data_target.run_ids[data_target.num_runs - scenario.number_of_runs:] + output = [f"{(self.scenario.result_directory).absolute()}/" + f"{self.scenario.name}_seed_{seed}_paramils.txt" + for seed in seeds] + # execdir timeout should go to another place + cmds = [f"python3 {Configurator.configurator_cli_path.absolute()} " + f"{ParamILS.__name__} {output[seed]} {output_csv.absolute()} " + f"{ParamILS.configurator_executable.absolute()} " + f"-scenariofile {(self.scenario.scenario_file_path).absolute()} " + f"-numRun {seed} " + f"-outdir {output[seed]}" + for seed in seeds] + + if num_parallel_jobs is not None: + num_parallel_jobs = max(num_parallel_jobs, len(cmds)) + + return super().configure( + configuration_commands=cmds, + data_target=data_target, + output=output, + num_parallel_jobs=num_parallel_jobs, + scenario=scenario, + validation_ids=seeds if validate_after else None, + sbatch_options=sbatch_options, + base_dir=base_dir, + run_on=run_on + ) + + @staticmethod + def organise_output(output_source: Path, output_target: Path = None) -> None | str: + """Retrieves configurations from SMAC files and places them in output.""" + call_key = ParamILS.target_algorithm + # Last line describing a call is the best found configuration + for line in reversed(output_source.open("r").readlines()): + if call_key in line: + call_str = line.split(call_key, maxsplit=1)[1].strip() + # The Configuration appears after the first 6 arguments + configuration = call_str.split(" ", 7)[-1] + if output_target is None: + return configuration + with output_target.open("a") as fout: + fcntl.flock(fout.fileno(), fcntl.LOCK_EX) + fout.write(configuration + "\n") + break + + def get_status_from_logs(self: ParamILS) -> None: + """Method to scan the log files of the configurator for warnings.""" + return + + +class ParamILSScenario(ConfigurationScenario): + """Class to handle ParamILS configuration scenarios.""" + + def __init__(self: ParamILSScenario, solver: Solver, + instance_set: InstanceSet, + tuner_timeout: int = None, cutoff_time: int = None, + cutoff_length: int = None, + sparkle_objectives: list[SparkleObjective] = None)\ + -> None: + """Initialize scenario paths and names. + + Args: + solver: Solver that should be configured. + execdir: The execution directroy. + outdir: Output directory. + instance_set: Instances object for the scenario. + tuner_timeout: The time budget allocated for each configuration run. (cpu) + cutoff_time: The maximum time allowed for each individual run during + configuration. + cutoff_length: The maximum number of iterations allowed for each + individual run during configuration. + sparkle_objectives: SparkleObjectives used for each run of the configuration. + Will be simplified to the first objective. + """ + super().__init__(solver, instance_set, sparkle_objectives) + self.solver = solver + self.instance_set = instance_set + self.name = f"{self.solver.name}_{self.instance_set.name}" + self.sparkle_objective = sparkle_objectives[0] if sparkle_objectives else None + + self.tuner_timeout = tuner_timeout + self.cutoff_time = cutoff_time + self.cutoff_length = cutoff_length + + self.parent_directory = Path() + self.directory = Path() + self.result_directory = Path() + self.scenario_file_path = Path() + + def create_scenario(self: ParamILSScenario, parent_directory: Path) -> None: + """Create scenario with solver and instances in the parent directory. + + This prepares all the necessary subdirectories related to configuration. + + Args: + parent_directory: Directory in which the scenario should be created. + """ + self._set_paths(parent_directory) + self._prepare_scenario_directory() + self._prepare_result_directory() + self._prepare_instances() + + if self.use_features: + self._create_feature_file() + + self._create_scenario_file() + + def _set_paths(self: ParamILSScenario, parent_directory: Path) -> None: + """Set the paths for the scenario based on the specified parent directory.""" + self.parent_directory = parent_directory + self.directory = self.parent_directory / "scenarios" / self.name + self.result_directory = self.directory / "results" + self.outdir_train = self.directory / "outdir_train_configuration" + self.tmp = self.directory / "tmp" + self.validation = self.directory / "validation" + + def _prepare_scenario_directory(self: ParamILSScenario) -> None: + """Delete old scenario dir, recreate it, create empty dirs inside.""" + shutil.rmtree(self.directory, ignore_errors=True) + self.directory.mkdir(parents=True) + + # Create empty directories as needed + self.outdir_train.mkdir() + self.tmp.mkdir() + + def _prepare_result_directory(self: ParamILSScenario) -> None: + """Delete possible files in result directory.""" + shutil.rmtree(self.result_directory, ignore_errors=True) + self.result_directory.mkdir(parents=True) + + def _create_scenario_file(self: ParamILSScenario) -> None: + """Create a file with the configuration scenario. + + Writes supplementary information to the target algorithm (algo =) as: + algo = {configurator_target} {solver_directory} {sparkle_objective} + """ + self.scenario_file_path = self.directory / f"{self.name}_scenario.txt" + with self.scenario_file_path.open("w") as file: + file.write(f"algo = {ParamILS.configurator_target.absolute()} " + f"{self.solver.directory.absolute()} {self.sparkle_objective} \n" + f"execdir = {self.tmp.absolute()}/\n" + f"deterministic = {1 if self.solver.deterministic else 0}\n" + f"run_obj = {self._get_performance_measure()}\n" + f"cutoffTime = {self.cutoff_time}\n" + f"cutoff_length = {self.cutoff_length}\n" + f"tunerTimeout = {self.tuner_timeout}\n" + f"paramfile = {self.solver.get_pcs_file()}\n" + f"outdir = {self.outdir_train.absolute()}\n" + f"instance_file = {self.instance_file_path.absolute()}\n" + f"test_instance_file = {self.instance_file_path.absolute()}\n") + # We don't let SMAC do the validation + # file.write("validation = false" + "\n") TODO + + def _prepare_instances(self: ParamILSScenario) -> None: + """Create instance list file without instance specifics.""" + self.instance_file_path.parent.mkdir(exist_ok=True, parents=True) + with self.instance_file_path.open("w+") as file: + for instance_path in self.instance_set._instance_paths: + file.write(f"{instance_path.absolute()}\n") + + def _get_performance_measure(self: ParamILSScenario) -> str: + """Retrieve the ParamILS performance measure of the SparkleObjective. + + Returns: + Performance measure of the sparkle objective + """ + if self.sparkle_objective.time: + return "runtime" + return "approx" + + @staticmethod + def from_file(scenario_file: Path, solver: Solver, instance_set: InstanceSet, + ) -> ParamILSScenario: + """Reads scenario file and initalises ConfigurationScenario.""" + config = {} + with scenario_file.open() as file: + for line in file: + key, value = line.strip().split(" = ") + config[key] = value + + # Collect relevant settings + wallclock_limit = int(config["wallclock-limit"]) if "wallclock-limit" in config \ + else None + + objective_str = config["algo"].split(" ")[-1] + objective = SparkleObjective(objective_str) + return ParamILSScenario(solver, + instance_set, + wallclock_limit, + int(config["cutoffTime"]), + config["cutoff_length"], + [objective]) diff --git a/sparkle/configurator/implementations/smac2.py b/sparkle/configurator/implementations/smac2.py index c8531daf5..a2129e391 100644 --- a/sparkle/configurator/implementations/smac2.py +++ b/sparkle/configurator/implementations/smac2.py @@ -3,15 +3,15 @@ from pathlib import Path import glob import shutil +import math import pandas as pd -import runrunner as rrr from runrunner import Runner, Run from sparkle.configurator.configurator import Configurator, ConfigurationScenario from sparkle.solver import Solver -from sparkle.structures import PerformanceDataFrame +from sparkle.structures import PerformanceDataFrame, FeatureDataFrame from sparkle.instance import InstanceSet, Instance_Set from sparkle.types import SparkleObjective, resolve_objective @@ -54,8 +54,8 @@ def scenario_class() -> ConfigurationScenario: """Returns the SMAC2 scenario class.""" return SMAC2Scenario - def configure(self: Configurator, - scenario: ConfigurationScenario, + def configure(self: SMAC2, + scenario: SMAC2Scenario, data_target: PerformanceDataFrame, validate_after: bool = True, sbatch_options: list[str] = [], @@ -66,6 +66,7 @@ def configure(self: Configurator, Args: scenario: ConfigurationScenario object + data_target: PerformanceDataFrame where to store the found configurations validate_after: Whether the configurations should be validated on the train set afterwards. sbatch_options: List of slurm batch options to use @@ -94,38 +95,19 @@ def configure(self: Configurator, f"--scenario-file {scenario.scenario_file_path} " f"--seed {seed} " for output_file, seed in zip(output, seeds)] - parallel_jobs = scenario.number_of_runs if num_parallel_jobs is not None: - parallel_jobs = max(num_parallel_jobs, scenario.number_of_runs) - runs = [rrr.add_to_queue( - runner=run_on, - cmd=cmds, - name=f"{self.name}: {scenario.solver.name} on {scenario.instance_set.name}", - base_dir=base_dir, - output_path=output, - parallel_jobs=parallel_jobs, + num_parallel_jobs = max(num_parallel_jobs, len(cmds)) + return super().configure( + configuration_commands=cmds, + data_target=data_target, + output=output, + num_parallel_jobs=num_parallel_jobs, + scenario=scenario, + validation_ids=seeds if validate_after else None, sbatch_options=sbatch_options, - srun_options=["-N1", "-n1"])] - - if validate_after: - # TODO: Array job specific dependency, requires RunRunner update - validate = scenario.solver.run_performance_dataframe( - scenario.instance_set, - run_ids=seeds, - performance_dataframe=data_target, - cutoff_time=scenario.cutoff_time, - run_on=run_on, - sbatch_options=sbatch_options, - log_dir=scenario.validation, - base_dir=base_dir, - dependencies=runs, - ) - runs.append(validate) - - if run_on == Runner.LOCAL: - for run in runs: - run.wait() - return runs + base_dir=base_dir, + run_on=run_on + ) @staticmethod def organise_output(output_source: Path, @@ -217,8 +199,9 @@ def __init__(self: SMAC2Scenario, wallclock_time: int = None, cutoff_time: int = None, target_cutoff_length: str = None, + cli_cores: int = None, use_cpu_time_in_tunertime: bool = None, - feature_data_df: pd.DataFrame = None)\ + feature_data: FeatureDataFrame | Path = None)\ -> None: """Initialize scenario paths and names. @@ -241,9 +224,13 @@ def __init__(self: SMAC2Scenario, configuration. target_cutoff_length: A domain specific measure of when the algorithm should consider itself done. + cli_cores: int + The number of cores to use to execute runs. Defaults in SMAC2 to 1. use_cpu_time_in_tunertime: Whether to calculate SMAC2's own used time for budget deduction. Defaults in SMAC2 to True. - feature_data_df: If features are used, this contains the feature data. + feature_data: If features are used, this contains the feature data. + If it is a FeatureDataFrame, will convert values to SMAC2 format. + If it is a Path, will pass the path to SMAC2. Defaults to None. """ super().__init__(solver, instance_set, sparkle_objectives, parent_directory) @@ -266,8 +253,42 @@ def __init__(self: SMAC2Scenario, self.cutoff_time = cutoff_time self.cutoff_length = target_cutoff_length self.max_iterations = max_iterations + self.cli_cores = cli_cores self.use_cpu_time_in_tunertime = use_cpu_time_in_tunertime - self.feature_data = feature_data_df + + self.feature_data = feature_data + self.feature_file_path = None + if self.feature_data: + if isinstance(self.feature_data, FeatureDataFrame): + # Convert feature data to SMAC2 format + data_dict = {} + for instance in self.instance_set.instance_paths: + data_dict[str(instance)] = feature_data.get_instance(str(instance)) + + self.feature_data = pd.DataFrame.from_dict( + data_dict, orient="index", + columns=[f"Feature{index+1}" + for index in range(feature_data.num_features)]) + + def map_nan(x: str) -> int: + """Map non-numeric values with -512 (Pre-defined by SMAC2).""" + if math.isnan(x): + return -512.0 + try: + return float(x) + except Exception: + return -512.0 + + self.feature_data = self.feature_data.map(map_nan) + self.feature_file_path =\ + self.directory / f"{self.instance_set.name}_features.csv" + elif isinstance(self.feature_data, Path): # Read from Path + self.feature_file_path = feature_data + self.feature_data = pd.read_csv(self.feature_file_path, + index_col=0) + else: + print(f"WARNING: Feature data is of type {type(feature_data)}. " + "Expected FeatureDataFrame or Path.") # Scenario Paths self.instance_file_path = self.directory / f"{self.instance_set.name}.txt" @@ -324,6 +345,8 @@ def create_scenario_file(self: SMAC2Scenario) -> Path: file.write(f"cputime-limit = {self.cpu_time}\n") if self.solver_calls is not None: file.write(f"runcount-limit = {self.solver_calls}\n") + if self.cli_cores is not None: + file.write(f"cli-cores = {self.cli_cores}") if self.feature_data is not None: file.write(f"feature_file = {self.feature_file_path}\n") if self.use_cpu_time_in_tunertime is not None: @@ -340,6 +363,11 @@ def _prepare_instances(self: SMAC2Scenario) -> None: for instance_path in self.instance_set._instance_paths: file.write(f"{instance_path}\n") + def _create_feature_file(self: SMAC2Scenario) -> None: + """Create CSV file from feature data.""" + self.feature_data.to_csv(self.feature_file_path, + index_label="INSTANCE_NAME") + def _get_performance_measure(self: SMAC2Scenario) -> str: """Retrieve the performance measure of the SparkleObjective. @@ -350,13 +378,6 @@ def _get_performance_measure(self: SMAC2Scenario) -> str: return "RUNTIME" return "QUALITY" - def _create_feature_file(self: SMAC2Scenario) -> None: - """Create CSV file from feature data.""" - self.feature_file_path = Path(self.directory - / f"{self.instance_set.name}_features.csv") - self.feature_data.to_csv(self.directory / self.feature_file_path, - index_label="INSTANCE_NAME") - def serialize_scenario(self: SMAC2Scenario) -> dict: """Transform ConfigurationScenario to dictionary format.""" return { @@ -368,7 +389,7 @@ def serialize_scenario(self: SMAC2Scenario) -> dict: "cutoff_length": self.cutoff_length, "max_iterations": self.max_iterations, "sparkle_objective": self.sparkle_objective.name, - "feature_data": self.feature_data, + "feature_data": self.feature_data_path, "use_cpu_time_in_tunertime": self.use_cpu_time_in_tunertime } @@ -390,6 +411,7 @@ def from_file(scenario_file: Path) -> SMAC2Scenario: else None use_cpu_time_in_tunertime = config["use-cputime-in-tunertime"]\ if "use-cputime-in-tunertime" in config else None + cli_cores = config["cli-cores"] if "cli-cores" in config else None _, solver_path, _, objective_str = config["algo"].split(" ") objective = resolve_objective(objective_str) @@ -401,6 +423,9 @@ def from_file(scenario_file: Path) -> SMAC2Scenario: results_folder = scenario_file.parent / "results" state_run_dirs = [p for p in results_folder.iterdir() if p.is_file()] number_of_runs = len(state_run_dirs) + feature_data_path = None + if "feature_file" in config: + feature_data_path = Path(config["feature_file"]) return SMAC2Scenario(solver, instance_set, [objective], @@ -412,4 +437,6 @@ def from_file(scenario_file: Path) -> SMAC2Scenario: wallclock_limit, int(config["cutoffTime"]), config["cutoff_length"], - use_cpu_time_in_tunertime) + cli_cores, + use_cpu_time_in_tunertime, + feature_data_path) diff --git a/sparkle/configurator/implementations/smac3.py b/sparkle/configurator/implementations/smac3.py index 2f67f81ac..1a0750b1b 100644 --- a/sparkle/configurator/implementations/smac3.py +++ b/sparkle/configurator/implementations/smac3.py @@ -1,8 +1,6 @@ """Configurator classes to implement SMAC3 in Sparkle.""" from __future__ import annotations from pathlib import Path -# import fcntl -# import glob import shutil from smac import version as smac_version @@ -11,7 +9,6 @@ from smac.runhistory.enumerations import StatusType as SmacStatusType import numpy as np -import runrunner as rrr from runrunner import Runner, Run from sparkle.configurator.configurator import Configurator, ConfigurationScenario @@ -92,33 +89,17 @@ def configure(self: SMAC3, f"{scenario.scenario_file_path.absolute()} {seed} " f"{data_target.csv_filepath}" for seed in seeds] - runs = [rrr.add_to_queue( - runner=run_on, - cmd=cmds, - name=f"{self.name}: {scenario.solver.name} on {scenario.instance_set.name}", - parallel_jobs=num_parallel_jobs, + return super().configure( + configuration_commands=cmds, + data_target=data_target, + output=None, + scenario=scenario, + validation_ids=seeds if validate_after else None, sbatch_options=sbatch_options, + num_parallel_jobs=num_parallel_jobs, base_dir=base_dir, - )] - if validate_after: - # TODO: Array job specific dependency, requires RunRunner update - validate = scenario.solver.run_performance_dataframe( - scenario.instance_set, - run_ids=seeds, - performance_dataframe=data_target, - cutoff_time=scenario.cutoff_time, - run_on=run_on, - sbatch_options=sbatch_options, - log_dir=scenario.validation, - base_dir=base_dir, - dependencies=runs, - ) - runs.append(validate) - - if run_on == Runner.LOCAL: - for run in runs: - run.wait() - return runs + run_on=run_on + ) @staticmethod def organise_output(output_source: Path, @@ -200,7 +181,7 @@ def __init__(self: SMAC3Scenario, parent_directory: Path, cutoff_time: int = None, number_of_runs: int = None, - smac_facade: smacfacades.AbstractFacade = + smac_facade: smacfacades.AbstractFacade | str = smacfacades.AlgorithmConfigurationFacade, crash_cost: float | list[float] = np.inf, termination_cost_threshold: float | list[float] = np.inf, @@ -208,12 +189,12 @@ def __init__(self: SMAC3Scenario, cputime_limit: float = np.inf, solver_calls: int = None, use_default_config: bool = False, - instance_features: FeatureDataFrame = None, + feature_data: FeatureDataFrame | Path = None, min_budget: float | int | None = None, max_budget: float | int | None = None, seed: int = -1, n_workers: int = 1, - max_ratio: float = 0.25, + max_ratio: float = None, smac3_output_directory: Path = Path(), ) -> None: """Initialize scenario paths and names. @@ -261,11 +242,11 @@ def __init__(self: SMAC3Scenario, instances: list[str] | None, defaults to None Names of the instances to use. If None, no instances are used. Instances could be dataset names, seeds, subsets, etc. - instance_features: FeatureDataFrame, defaults to None + feature_data: FeatureDataFrame or Path, defaults to None Instances can be associated with features. For example, meta data of the dataset (mean, var, ...) can be incorporated which are then further - used to expand the training data of the surrogate model. When no features - are given, will use index as instance features. + used to expand the training data of the surrogate model. If Path, loaded + from file. When no features are given, uses index as instance features. min_budget: float | int | None, defaults to None The minimum budget (epochs, subset size, number of instances, ...) that is used for the optimization. Use this argument if you use multi-fidelity @@ -281,10 +262,10 @@ def __init__(self: SMAC3Scenario, The number of workers to use for parallelization. If `n_workers` is greather than 1, SMAC will use DASK to parallelize the optimization. - max_ratio: float, defaults to 0.25 + max_ratio: float, defaults to None. Facade uses at most scenario.n_trials * max_ratio number of configurations in the initial design. Additional configurations are not - affected by this parameter. + affected by this parameter. Not applicable to each facade. smac3_output_directory: Path, defaults to Path() The output subdirectory for the SMAC3 scenario. Defaults to the scenario results directory. @@ -293,16 +274,20 @@ def __init__(self: SMAC3Scenario, # The files are saved in `./output_directory/name/seed`. self.log_dir = self.directory / "logs" self.number_of_runs = number_of_runs - self.feature_dataframe = instance_features + self.feature_data = feature_data + if isinstance(self.feature_data, Path): # Load from file + self.feature_data = FeatureDataFrame(self.feature_data) # Facade parameters self.smac_facade = smac_facade + if isinstance(self.smac_facade, str): + self.smac_facade = getattr(smacfacades, self.smac_facade) self.max_ratio = max_ratio - if instance_features is not None: + if self.feature_data is not None: instance_features =\ - {instance_name: self.feature_dataframe.get_instance(instance_name) - for instance_name in self.feature_dataframe.instances} + {instance: self.feature_data.get_instance(str(instance)) + for instance in self.instance_set.instance_paths} else: # 'If no instance features are passed, the runhistory encoder can not # distinguish between different instances and therefore returns the same data @@ -372,7 +357,7 @@ def create_scenario_file(self: ConfigurationScenario) -> Path: def serialize(self: ConfigurationScenario) -> dict: """Serialize the configuration scenario.""" feature_data =\ - self.feature_dataframe.csv_filepath if self.feature_dataframe else None + self.feature_data.csv_filepath if self.feature_data else None return { "solver": self.solver.directory, "instance_set": self.instance_set.directory, @@ -386,7 +371,7 @@ def serialize(self: ConfigurationScenario) -> dict: "cputime_limit": self.smac3_scenario.cputime_limit, "solver_calls": self.smac3_scenario.n_trials, "use_default_config": self.smac3_scenario.use_default_config, - "instance_features": feature_data, + "feature_data": feature_data, "min_budget": self.smac3_scenario.min_budget, "max_budget": self.smac3_scenario.max_budget, "seed": self.smac3_scenario.seed, @@ -441,10 +426,10 @@ def from_file(scenario_file: Path, variables["use_default_config"] =\ ast.literal_eval(variables["use_default_config"]) - if variables["instance_features"] != "None": - variables["instance_features"] = Path(variables["instance_features"]) + if variables["feature_data"] != "None": + variables["feature_data"] = Path(variables["feature_data"]) else: - variables["instance_features"] = None + variables["feature_data"] = None variables["min_budget"] = ast.literal_eval(variables["min_budget"]) variables["max_budget"] = ast.literal_eval(variables["max_budget"]) diff --git a/sparkle/platform/settings_objects.py b/sparkle/platform/settings_objects.py index 8e8a6f07f..d1b340920 100644 --- a/sparkle/platform/settings_objects.py +++ b/sparkle/platform/settings_objects.py @@ -6,8 +6,6 @@ from pathlib import Path from pathlib import PurePath -from smac import facade as smac_facades - from sparkle.types import SparkleObjective, resolve_objective from sparkle.types.objective import PAR from sparkle.solver import Selector @@ -131,11 +129,12 @@ class Settings: DEFAULT_smac2_cpu_time = None DEFAULT_smac2_target_cutoff_length = "max" DEFAULT_smac2_use_cpu_time_in_tunertime = None + DEFAULT_smac2_cli_cores = None DEFAULT_smac2_max_iterations = None # Default SMAC3 settings DEFAULT_smac3_number_of_runs = None - DEFAULT_smac3_facade = smac_facades.AlgorithmConfigurationFacade.__name__ + DEFAULT_smac3_facade = "AlgorithmConfigurationFacade" DEFAULT_smac3_facade_max_ratio = None DEFAULT_smac3_crash_cost = None DEFAULT_smac3_termination_cost_threshold = None @@ -189,7 +188,9 @@ def __init__(self: Settings, file_path: PurePath = None) -> None: self.__smac2_wallclock_time_set = SettingState.NOT_SET self.__smac2_cpu_time_set = SettingState.NOT_SET self.__smac2_use_cpu_time_in_tunertime_set = SettingState.NOT_SET + self.__smac2_cli_cores_set = SettingState.NOT_SET self.__smac2_max_iterations_set = SettingState.NOT_SET + self.__smac2_target_cutoff_length_set = SettingState.NOT_SET self.__smac3_number_of_trials_set = SettingState.NOT_SET self.__smac3_smac_facade_set = SettingState.NOT_SET @@ -205,7 +206,6 @@ def __init__(self: Settings, file_path: PurePath = None) -> None: self.__run_on_set = SettingState.NOT_SET self.__number_of_jobs_in_parallel_set = SettingState.NOT_SET self.__slurm_max_parallel_runs_per_node_set = SettingState.NOT_SET - self.__smac2_target_cutoff_length_set = SettingState.NOT_SET self.__ablation_racing_flag_set = SettingState.NOT_SET self.__parallel_portfolio_check_interval_set = SettingState.NOT_SET @@ -350,6 +350,13 @@ def read_settings_ini(self: Settings, file_path: PurePath = DEFAULT_settings_pat self.set_smac2_use_cpu_time_in_tunertime(value, state) file_settings.remove_option(section, option) + option_names = ("cli_cores", ) + for option in option_names: + if file_settings.has_option(section, option): + value = file_settings.getint(section, option) + self.set_smac2_cli_cores(value, state) + file_settings.remove_option(section, option) + options_names = ("iteration_limit", "numIterations", "numberOfIterations", "max_iterations") for option in options_names: @@ -367,7 +374,7 @@ def read_settings_ini(self: Settings, file_path: PurePath = DEFAULT_settings_pat self.set_smac3_number_of_trials(value, state) file_settings.remove_option(section, option) - options_names = ("facade", "smac_facade", ) + options_names = ("facade", "smac_facade", "smac3_facade") for option in options_names: if file_settings.has_option(section, option): value = file_settings.get(section, option) @@ -518,10 +525,10 @@ def read_settings_ini(self: Settings, file_path: PurePath = DEFAULT_settings_pat f'{option}" in file {file_path} ignored') # Print error if unable to read the settings - else: + elif Path(file_path).exists(): print(f"ERROR: Failed to read settings from {file_path} The file may have " - "been empty, located in a different path, or be in another format than" - " INI. Default Settings values be used.") + "been empty or be in another format than INI. Default Setting values " + "will be used.") def write_used_settings(self: Settings) -> None: """Write the used settings to the default locations.""" @@ -804,6 +811,7 @@ def get_configurator_settings(self: Settings, "wallclock_time": self.get_smac2_wallclock_time(), "target_cutoff_length": self.get_smac2_target_cutoff_length(), "use_cpu_time_in_tunertime": self.get_smac2_use_cpu_time_in_tunertime(), + "cli_cores": self.get_smac2_cli_cores(), "max_iterations": self.get_smac2_max_iterations() or configurator_settings["max_iterations"], }) @@ -990,6 +998,29 @@ def get_smac2_use_cpu_time_in_tunertime(self: Settings) -> bool: self.set_smac2_use_cpu_time_in_tunertime() return ast.literal_eval(self.__settings["smac2"]["use_cpu_time_in_tunertime"]) + def set_smac2_cli_cores( + self: Settings, value: int = DEFAULT_smac2_cli_cores, + origin: SettingState = SettingState.DEFAULT) -> None: + """Set the number of cores to use for SMAC2 CLI.""" + section = "smac2" + name = "cli_cores" + + if self.__check_setting_state( + self.__smac2_cli_cores_set, origin, name): + self.__init_section(section) + self.__smac2_cli_cores_set = origin + self.__settings[section][name] = str(value) + + def get_smac2_cli_cores(self: Settings) -> int | None: + """Number of cores to use to execute runs. + + In other words, the number of requests to run at a given time. + """ + if self.__smac2_cli_cores_set == SettingState.NOT_SET: + self.set_smac2_cli_cores() + cli_cores = self.__settings["smac2"]["cli_cores"] + return int(cli_cores) if cli_cores.isdigit() else None + def set_smac2_max_iterations( self: Settings, value: int = DEFAULT_smac2_max_iterations, origin: SettingState = SettingState.DEFAULT) -> None: @@ -1048,14 +1079,11 @@ def set_smac3_smac_facade( self.__smac3_smac_facade_set = origin self.__settings[section][name] = str(value) - def get_smac3_smac_facade(self: Settings) -> smac_facades.AbstractFacade: + def get_smac3_smac_facade(self: Settings) -> str: """Return the SMAC3 facade.""" if self.__smac3_smac_facade_set == SettingState.NOT_SET: self.set_smac3_smac_facade() - facade_name = self.__settings["smac3"]["facade"] - if facade_name == "None": - return None - return getattr(smac_facades, facade_name) + return self.__settings["smac3"]["facade"] def set_smac3_facade_max_ratio( self: Settings, value: float = DEFAULT_smac3_facade_max_ratio, @@ -1082,7 +1110,7 @@ def set_smac3_crash_cost(self: Settings, value: float = DEFAULT_smac3_crash_cost section = "smac3" name = "crash_cost" - if self.__check_setting_state(self.__smac3_smac_facade_set, origin, name): + if self.__check_setting_state(self.__smac3_crash_cost_set, origin, name): self.__init_section(section) self.__smac3_smac_facade_set = origin self.__settings[section][name] = str(value) diff --git a/sparkle/solver/solver.py b/sparkle/solver/solver.py index 9fbcf40ca..60433b048 100644 --- a/sparkle/solver/solver.py +++ b/sparkle/solver/solver.py @@ -278,6 +278,7 @@ def run_performance_dataframe( dependencies: list[SlurmRun] = None, log_dir: Path = None, base_dir: Path = None, + job_name: str = None, run_on: Runner = Runner.SLURM) -> Run: """Run the solver from and place the results in the performance dataframe. @@ -304,6 +305,8 @@ def run_performance_dataframe( log_dir: Path where to place output files. Defaults to self.raw_output_directory. base_dir: Path where to place output files. + job_name: Name of the job + If None, will generate a name based on Solver and Instances run_on: On which platform to run the jobs. Default: Slurm. Returns: @@ -332,7 +335,7 @@ def run_performance_dataframe( train_arg =\ ",".join([str(i) for i in train_set.instance_paths]) if train_set else "" cmds = [ - f"{Solver.solver_cli} " + f"python3 {Solver.solver_cli} " f"--solver {self.directory} " f"--instance {instance} " f"--run-index {run_index} " @@ -343,10 +346,11 @@ def run_performance_dataframe( f"{'--best-configuration-instances' if train_set else ''} {train_arg}" for instance, run_indices in zip(instances, run_ids) for run_index in run_indices] + job_name = f"Run: {self.name} on {set_name}" if job_name is None else job_name r = rrr.add_to_queue( runner=run_on, cmd=cmds, - name=f"Run: {self.name} on {set_name}", + name=job_name, base_dir=base_dir, sbatch_options=sbatch_options, dependencies=dependencies diff --git a/sparkle/structures/feature_dataframe.py b/sparkle/structures/feature_dataframe.py index dd0e94958..a22a84e09 100755 --- a/sparkle/structures/feature_dataframe.py +++ b/sparkle/structures/feature_dataframe.py @@ -1,5 +1,3 @@ -#!/usr/bin/env python3 -# -*- coding: UTF-8 -*- """Module to manage feature data files and common operations on them.""" from __future__ import annotations import pandas as pd @@ -17,7 +15,7 @@ def __init__(self: FeatureDataFrame, instances: list[str] = [], extractor_data: dict[str, list[tuple[str, str]]] = {} ) -> None: - """Initialise a SparkleFeatureDataCSV object. + """Initialise a FeatureDataFrame object. Arguments: csv_filepath: The Path for the CSV storage. If it does not exist, @@ -175,6 +173,11 @@ def extractors(self: FeatureDataFrame) -> list[str]: """Returns all unique extractors in the DataFrame.""" return self.dataframe.index.get_level_values("Extractor").unique().to_list() + @property + def num_features(self: FeatureDataFrame) -> int: + """Return the number of features in the dataframe.""" + return self.dataframe.shape[0] + def save_csv(self: FeatureDataFrame, csv_filepath: Path = None) -> None: """Write a CSV to the given path. diff --git a/sparkle/structures/performance_dataframe.py b/sparkle/structures/performance_dataframe.py index e23b98307..c353ed621 100755 --- a/sparkle/structures/performance_dataframe.py +++ b/sparkle/structures/performance_dataframe.py @@ -345,6 +345,14 @@ def remove_runs(self: PerformanceDataFrame, # Sort the index to optimize lookup speed self.sort_index(axis=0, inplace=True) + def remove_empty_runs(self: PerformanceDataFrame) -> None: + """Remove runs that contain no data, except for the first.""" + for row_index in self.index: + if row_index[2] == 1: # First run, never delete + continue + if self.loc[row_index].isna().all(): + self.drop(row_index, inplace=True) + def reset_value(self: PerformanceDataFrame, solver: str, instance: str, diff --git a/sparkle/tools/solver_wrapper_parsing.py b/sparkle/tools/solver_wrapper_parsing.py index cc9c80945..56e9ea9ce 100644 --- a/sparkle/tools/solver_wrapper_parsing.py +++ b/sparkle/tools/solver_wrapper_parsing.py @@ -48,11 +48,12 @@ def parse_solver_wrapper_args(args: list[str]) -> dict[Any]: return args_dict -def get_solver_call_params(args_dict: dict) -> list[str]: +def get_solver_call_params(args_dict: dict, prefix: str = "-") -> list[str]: """Gather the additional parameters for the solver call. Args: args_dict: Dictionary mapping argument names to their currently held values + prefix: Prefix of the command line options Returns: A list of parameters for the solver call @@ -62,6 +63,6 @@ def get_solver_call_params(args_dict: dict) -> list[str]: ignore_args = {"solver_dir", "instance", "cutoff_time", "seed", "objectives"} for key in args_dict: if key not in ignore_args and args_dict[key] is not None: - params.extend(["-" + str(key), str(args_dict[key])]) + params.extend([prefix + str(key), str(args_dict[key])]) return params diff --git a/tests/CLI/help/test_logging.py b/tests/CLI/help/test_logging.py index 47b9c6113..c20d95496 100644 --- a/tests/CLI/help/test_logging.py +++ b/tests/CLI/help/test_logging.py @@ -6,14 +6,14 @@ from sparkle.CLI.help import global_variables as gv -def test__update_caller() -> None: +def test_update_caller() -> None: """Test caller is correctly updated when _update_caller is called.""" argv = ["test.py"] sl._update_caller(argv) assert sl.caller == "test" -def test__update_caller_file_path() -> None: +def test_update_caller_file_path() -> None: """Test _update_caller_file_path uses the right file name and creates it.""" timestamp = "18-08-2023_12:34:56" sl._update_caller_file_path(timestamp) @@ -22,7 +22,7 @@ def test__update_caller_file_path() -> None: assert isinstance(sl.caller_log_path, PurePath) assert isinstance(sl.caller_log_dir, Path) - assert str(sl.caller_out_dir) == f"{timestamp}_{sl.caller}" + assert str(sl.caller_out_dir) == f"{sl.caller}_{timestamp}" assert Path(sl.caller_log_path).is_file() diff --git a/tests/CLI/test_cancel.py b/tests/CLI/test_jobs.py similarity index 90% rename from tests/CLI/test_cancel.py rename to tests/CLI/test_jobs.py index 2386b27d3..622c65e25 100644 --- a/tests/CLI/test_cancel.py +++ b/tests/CLI/test_jobs.py @@ -2,7 +2,8 @@ import pytest from pathlib import Path -from sparkle.CLI import initialise, cancel, add_solver, add_instances, configure_solver +from sparkle.CLI import initialise, add_solver, add_instances, configure_solver +from sparkle.CLI import jobs as sparkle_jobs from sparkle.CLI.help import jobs as jobs_help from sparkle.CLI.help import global_variables as gv @@ -26,13 +27,13 @@ def test_cancel_command_no_jobs(tmp_path: Path, # Test with nothing to cancel with pytest.raises(SystemExit) as pytest_wrapped_e: - cancel.main(["--all"]) + sparkle_jobs.main(["--cancel", "--all"]) assert pytest_wrapped_e.type is SystemExit - assert pytest_wrapped_e.value.code == 0 + assert pytest_wrapped_e.value.code == -1 # Test with an ID that does not exist with pytest.raises(SystemExit) as pytest_wrapped_e: - cancel.main(["--job-ids", "1234"]) + sparkle_jobs.main(["--cancel", "--job-ids", "1234"]) assert pytest_wrapped_e.type is SystemExit assert pytest_wrapped_e.value.code == -1 @@ -84,7 +85,7 @@ def test_cancel_command_configuration(tmp_path: Path, # Cancel configuration jobs with pytest.raises(SystemExit) as pytest_wrapped_e: - cancel.main(["--job-ids"] + [str(job.run_id) for job in jobs]) + sparkle_jobs.main(["--cancel", "--job-ids"] + [str(job.run_id) for job in jobs]) assert pytest_wrapped_e.type is SystemExit assert pytest_wrapped_e.value.code == 0 diff --git a/tests/configurator/test_configurator_ParamILS.py b/tests/configurator/test_configurator_ParamILS.py new file mode 100644 index 000000000..f8af099e4 --- /dev/null +++ b/tests/configurator/test_configurator_ParamILS.py @@ -0,0 +1,31 @@ +"""Test public methods of ParamILS configurator.""" +import pytest +from pathlib import Path + +""" +from sparkle.CLI import initialise + +from sparkle.configurator.implementations import ParamILS, ParamILSScenario +from sparkle.solver import Solver +from sparkle.instance import Instance_Set +from sparkle.types import resolve_objective + +from tests.CLI import tools as cli_tools +""" + + +def test_paramils_organise_output(tmp_path: Path, + monkeypatch: pytest.MonkeyPatch) -> None: + """Test IRACE organise output method.""" + pass + + +def test_paramils_scenario_file(tmp_path: Path, + monkeypatch: pytest.MonkeyPatch) -> None: + """Test IRACE scenario file creation.""" + pass + + +def test_paramils_scenario_from_file() -> None: + """Test ParamILS scenario file creation.""" + pass diff --git a/tests/configurator/test_configurator_SMAC2.py b/tests/configurator/test_configurator_SMAC2.py index a043f08d8..06cddc3d0 100644 --- a/tests/configurator/test_configurator_SMAC2.py +++ b/tests/configurator/test_configurator_SMAC2.py @@ -70,9 +70,8 @@ def test_smac2_configure(self: TestConfiguratorSMAC2, name=f"{SMAC2.__name__}: {self.conf_scenario.solver.name} on " f"{self.conf_scenario.instance_set.name}", output_path=expected_outputs, - parallel_jobs=2, + parallel_jobs=None, sbatch_options=[], - srun_options=["-N1", "-n1"] ) assert runs == [None] diff --git a/tests/configurator/test_configurator_SMAC3.py b/tests/configurator/test_configurator_SMAC3.py index 29215e015..c2d8fdda9 100644 --- a/tests/configurator/test_configurator_SMAC3.py +++ b/tests/configurator/test_configurator_SMAC3.py @@ -30,7 +30,7 @@ def test_smac3_scenario_to_file(tmp_path: Path, cputime_limit=20.0, solver_calls=5, use_default_config=False, - instance_features=None, + feature_data=None, min_budget=50.0, max_budget=60.0, seed=42, @@ -52,7 +52,6 @@ def test_smac3_scenario_from_file() -> None: assert scenario.directory == source.parent.parent / scenario.name assert scenario.cutoff_time == 60 assert scenario.number_of_runs == 5 - assert scenario.feature_dataframe is None assert scenario.smac3_scenario.crash_cost == 15.0 assert scenario.smac3_scenario.termination_cost_threshold == 24.0 assert scenario.smac3_scenario.walltime_limit == 10.0 @@ -88,7 +87,7 @@ def test_smac3_configure(tmp_path: Path, cputime_limit=20.0, solver_calls=5, use_default_config=False, - instance_features=None, + feature_data=None, min_budget=50.0, max_budget=60.0, seed=42, diff --git a/tests/structures/test_performance_dataframe.py b/tests/structures/test_performance_dataframe.py index f683f2bfd..b7b0881fd 100644 --- a/tests/structures/test_performance_dataframe.py +++ b/tests/structures/test_performance_dataframe.py @@ -210,6 +210,15 @@ def test_add_remove_runs() -> None: assert pd_nan.num_runs == 1 +def test_remove_empty_runs() -> None: + """Test removing empty runs.""" + empty_runs_csv = Path("tests/test_files/performance/empty_runs.csv") + pd_empty = PerformanceDataFrame(empty_runs_csv) + assert pd_empty.num_runs == 26 + pd_empty.remove_empty_runs() + assert pd_empty.num_runs == 1 + + def test_set_get_value() -> None: """Test set value method.""" pd_mo = PerformanceDataFrame(csv_example_mo) diff --git a/tests/test_files/Configuration/test_smac3_scenario.txt b/tests/test_files/Configuration/test_smac3_scenario.txt index fe090c908..75c44f097 100644 --- a/tests/test_files/Configuration/test_smac3_scenario.txt +++ b/tests/test_files/Configuration/test_smac3_scenario.txt @@ -10,7 +10,7 @@ walltime_limit = 10.0 cputime_limit = 20.0 solver_calls = 5 use_default_config = False -instance_features = None +feature_data = None min_budget = 50.0 max_budget = 60.0 seed = 42 diff --git a/tests/test_files/performance/empty_runs.csv b/tests/test_files/performance/empty_runs.csv new file mode 100644 index 000000000..0d648d5f9 --- /dev/null +++ b/tests/test_files/performance/empty_runs.csv @@ -0,0 +1,1563 @@ +Solver,,,Solvers/PbO-CCSAT-Generic,Solvers/PbO-CCSAT-Generic,Solvers/PbO-CCSAT-Generic +Meta,,,Value,Seed,Configuration +Objective,Instance,Run,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,1,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,2,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,3,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,4,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,5,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,6,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,7,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,8,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,9,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,10,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,11,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,12,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,13,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,14,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,15,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,16,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,17,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,18,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,19,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,20,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,21,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,22,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,23,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,24,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,25,,, +PAR10,Instances/PTN/Ptn-7824-b01.cnf,26,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,1,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,2,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,3,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,4,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,5,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,6,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,7,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,8,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,9,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,10,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,11,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,12,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,13,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,14,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,15,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,16,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,17,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,18,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,19,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,20,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,21,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,22,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,23,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,24,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,25,,, +PAR10,Instances/PTN/Ptn-7824-b03.cnf,26,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,1,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,2,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,3,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,4,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,5,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,6,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,7,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,8,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,9,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,10,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,11,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,12,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,13,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,14,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,15,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,16,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,17,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,18,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,19,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,20,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,21,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,22,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,23,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,24,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,25,,, +PAR10,Instances/PTN/Ptn-7824-b05.cnf,26,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,1,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,2,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,3,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,4,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,5,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,6,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,7,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,8,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,9,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,10,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,11,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,12,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,13,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,14,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,15,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,16,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,17,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,18,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,19,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,20,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,21,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,22,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,23,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,24,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,25,,, +PAR10,Instances/PTN/Ptn-7824-b07.cnf,26,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,1,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,2,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,3,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,4,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,5,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,6,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,7,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,8,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,9,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,10,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,11,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,12,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,13,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,14,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,15,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,16,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,17,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,18,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,19,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,20,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,21,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,22,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,23,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,24,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,25,,, +PAR10,Instances/PTN/Ptn-7824-b09.cnf,26,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,1,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,2,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,3,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,4,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,5,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,6,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,7,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,8,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,9,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,10,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,11,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,12,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,13,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,14,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,15,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,16,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,17,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,18,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,19,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,20,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,21,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,22,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,23,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,24,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,25,,, +PAR10,Instances/PTN/Ptn-7824-b11.cnf,26,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,1,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,2,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,3,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,4,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,5,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,6,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,7,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,8,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,9,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,10,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,11,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,12,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,13,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,14,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,15,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,16,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,17,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,18,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,19,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,20,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,21,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,22,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,23,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,24,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,25,,, +PAR10,Instances/PTN/Ptn-7824-b13.cnf,26,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,1,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,2,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,3,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,4,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,5,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,6,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,7,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,8,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,9,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,10,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,11,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,12,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,13,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,14,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,15,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,16,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,17,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,18,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,19,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,20,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,21,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,22,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,23,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,24,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,25,,, +PAR10,Instances/PTN/Ptn-7824-b15.cnf,26,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,1,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,2,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,3,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,4,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,5,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,6,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,7,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,8,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,9,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,10,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,11,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,12,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,13,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,14,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,15,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,16,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,17,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,18,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,19,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,20,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,21,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,22,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,23,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,24,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,25,,, +PAR10,Instances/PTN/Ptn-7824-b17.cnf,26,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,1,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,2,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,3,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,4,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,5,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,6,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,7,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,8,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,9,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,10,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,11,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,12,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,13,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,14,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,15,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,16,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,17,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,18,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,19,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,20,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,21,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,22,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,23,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,24,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,25,,, +PAR10,Instances/PTN/Ptn-7824-b19.cnf,26,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,1,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,2,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,3,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,4,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,5,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,6,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,7,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,8,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,9,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,10,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,11,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,12,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,13,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,14,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,15,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,16,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,17,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,18,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,19,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,20,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,21,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,22,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,23,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,24,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,25,,, +PAR10,Instances/PTN/Ptn-7824-b21.cnf,26,,, +PAR10,Instances/PTN/bce7824.cnf,1,,, +PAR10,Instances/PTN/bce7824.cnf,2,,, +PAR10,Instances/PTN/bce7824.cnf,3,,, +PAR10,Instances/PTN/bce7824.cnf,4,,, +PAR10,Instances/PTN/bce7824.cnf,5,,, +PAR10,Instances/PTN/bce7824.cnf,6,,, +PAR10,Instances/PTN/bce7824.cnf,7,,, +PAR10,Instances/PTN/bce7824.cnf,8,,, +PAR10,Instances/PTN/bce7824.cnf,9,,, +PAR10,Instances/PTN/bce7824.cnf,10,,, +PAR10,Instances/PTN/bce7824.cnf,11,,, +PAR10,Instances/PTN/bce7824.cnf,12,,, +PAR10,Instances/PTN/bce7824.cnf,13,,, +PAR10,Instances/PTN/bce7824.cnf,14,,, +PAR10,Instances/PTN/bce7824.cnf,15,,, +PAR10,Instances/PTN/bce7824.cnf,16,,, +PAR10,Instances/PTN/bce7824.cnf,17,,, +PAR10,Instances/PTN/bce7824.cnf,18,,, +PAR10,Instances/PTN/bce7824.cnf,19,,, +PAR10,Instances/PTN/bce7824.cnf,20,,, +PAR10,Instances/PTN/bce7824.cnf,21,,, +PAR10,Instances/PTN/bce7824.cnf,22,,, +PAR10,Instances/PTN/bce7824.cnf,23,,, +PAR10,Instances/PTN/bce7824.cnf,24,,, +PAR10,Instances/PTN/bce7824.cnf,25,,, +PAR10,Instances/PTN/bce7824.cnf,26,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,1,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,2,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,3,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,4,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,5,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,6,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,7,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,8,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,9,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,10,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,11,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,12,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,13,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,14,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,15,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,16,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,17,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,18,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,19,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,20,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,21,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,22,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,23,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,24,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,25,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b01.cnf,26,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,1,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,2,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,3,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,4,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,5,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,6,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,7,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,8,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,9,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,10,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,11,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,12,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,13,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,14,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,15,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,16,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,17,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,18,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,19,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,20,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,21,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,22,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,23,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,24,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,25,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b03.cnf,26,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,1,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,2,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,3,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,4,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,5,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,6,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,7,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,8,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,9,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,10,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,11,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,12,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,13,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,14,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,15,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,16,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,17,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,18,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,19,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,20,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,21,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,22,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,23,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,24,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,25,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b05.cnf,26,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,1,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,2,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,3,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,4,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,5,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,6,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,7,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,8,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,9,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,10,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,11,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,12,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,13,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,14,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,15,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,16,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,17,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,18,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,19,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,20,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,21,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,22,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,23,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,24,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,25,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b07.cnf,26,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,1,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,2,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,3,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,4,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,5,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,6,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,7,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,8,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,9,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,10,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,11,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,12,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,13,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,14,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,15,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,16,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,17,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,18,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,19,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,20,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,21,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,22,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,23,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,24,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,25,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b09.cnf,26,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,1,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,2,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,3,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,4,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,5,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,6,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,7,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,8,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,9,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,10,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,11,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,12,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,13,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,14,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,15,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,16,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,17,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,18,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,19,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,20,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,21,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,22,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,23,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,24,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,25,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b11.cnf,26,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,1,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,2,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,3,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,4,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,5,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,6,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,7,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,8,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,9,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,10,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,11,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,12,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,13,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,14,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,15,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,16,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,17,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,18,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,19,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,20,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,21,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,22,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,23,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,24,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,25,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b13.cnf,26,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,1,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,2,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,3,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,4,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,5,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,6,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,7,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,8,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,9,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,10,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,11,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,12,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,13,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,14,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,15,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,16,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,17,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,18,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,19,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,20,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,21,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,22,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,23,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,24,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,25,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b15.cnf,26,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,1,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,2,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,3,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,4,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,5,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,6,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,7,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,8,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,9,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,10,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,11,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,12,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,13,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,14,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,15,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,16,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,17,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,18,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,19,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,20,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,21,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,22,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,23,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,24,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,25,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b17.cnf,26,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,1,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,2,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,3,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,4,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,5,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,6,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,7,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,8,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,9,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,10,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,11,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,12,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,13,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,14,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,15,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,16,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,17,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,18,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,19,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,20,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,21,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,22,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,23,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,24,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,25,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b19.cnf,26,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,1,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,2,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,3,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,4,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,5,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,6,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,7,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,8,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,9,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,10,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,11,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,12,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,13,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,14,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,15,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,16,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,17,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,18,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,19,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,20,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,21,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,22,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,23,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,24,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,25,,, +cpu_time:metric,Instances/PTN/Ptn-7824-b21.cnf,26,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,1,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,2,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,3,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,4,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,5,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,6,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,7,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,8,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,9,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,10,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,11,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,12,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,13,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,14,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,15,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,16,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,17,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,18,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,19,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,20,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,21,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,22,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,23,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,24,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,25,,, +cpu_time:metric,Instances/PTN/bce7824.cnf,26,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,1,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,2,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,3,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,4,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,5,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,6,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,7,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,8,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,9,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,10,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,11,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,12,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,13,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,14,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,15,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,16,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,17,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,18,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,19,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,20,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,21,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,22,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,23,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,24,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,25,,, +memory:metric,Instances/PTN/Ptn-7824-b01.cnf,26,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,1,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,2,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,3,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,4,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,5,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,6,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,7,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,8,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,9,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,10,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,11,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,12,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,13,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,14,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,15,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,16,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,17,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,18,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,19,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,20,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,21,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,22,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,23,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,24,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,25,,, +memory:metric,Instances/PTN/Ptn-7824-b03.cnf,26,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,1,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,2,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,3,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,4,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,5,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,6,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,7,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,8,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,9,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,10,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,11,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,12,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,13,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,14,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,15,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,16,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,17,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,18,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,19,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,20,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,21,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,22,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,23,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,24,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,25,,, +memory:metric,Instances/PTN/Ptn-7824-b05.cnf,26,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,1,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,2,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,3,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,4,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,5,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,6,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,7,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,8,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,9,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,10,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,11,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,12,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,13,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,14,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,15,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,16,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,17,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,18,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,19,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,20,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,21,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,22,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,23,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,24,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,25,,, +memory:metric,Instances/PTN/Ptn-7824-b07.cnf,26,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,1,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,2,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,3,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,4,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,5,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,6,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,7,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,8,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,9,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,10,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,11,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,12,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,13,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,14,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,15,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,16,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,17,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,18,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,19,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,20,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,21,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,22,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,23,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,24,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,25,,, +memory:metric,Instances/PTN/Ptn-7824-b09.cnf,26,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,1,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,2,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,3,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,4,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,5,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,6,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,7,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,8,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,9,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,10,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,11,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,12,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,13,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,14,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,15,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,16,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,17,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,18,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,19,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,20,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,21,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,22,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,23,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,24,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,25,,, +memory:metric,Instances/PTN/Ptn-7824-b11.cnf,26,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,1,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,2,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,3,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,4,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,5,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,6,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,7,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,8,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,9,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,10,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,11,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,12,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,13,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,14,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,15,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,16,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,17,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,18,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,19,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,20,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,21,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,22,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,23,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,24,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,25,,, +memory:metric,Instances/PTN/Ptn-7824-b13.cnf,26,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,1,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,2,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,3,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,4,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,5,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,6,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,7,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,8,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,9,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,10,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,11,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,12,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,13,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,14,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,15,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,16,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,17,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,18,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,19,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,20,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,21,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,22,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,23,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,24,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,25,,, +memory:metric,Instances/PTN/Ptn-7824-b15.cnf,26,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,1,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,2,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,3,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,4,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,5,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,6,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,7,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,8,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,9,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,10,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,11,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,12,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,13,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,14,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,15,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,16,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,17,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,18,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,19,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,20,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,21,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,22,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,23,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,24,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,25,,, +memory:metric,Instances/PTN/Ptn-7824-b17.cnf,26,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,1,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,2,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,3,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,4,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,5,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,6,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,7,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,8,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,9,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,10,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,11,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,12,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,13,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,14,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,15,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,16,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,17,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,18,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,19,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,20,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,21,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,22,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,23,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,24,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,25,,, +memory:metric,Instances/PTN/Ptn-7824-b19.cnf,26,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,1,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,2,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,3,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,4,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,5,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,6,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,7,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,8,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,9,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,10,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,11,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,12,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,13,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,14,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,15,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,16,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,17,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,18,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,19,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,20,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,21,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,22,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,23,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,24,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,25,,, +memory:metric,Instances/PTN/Ptn-7824-b21.cnf,26,,, +memory:metric,Instances/PTN/bce7824.cnf,1,,, +memory:metric,Instances/PTN/bce7824.cnf,2,,, +memory:metric,Instances/PTN/bce7824.cnf,3,,, +memory:metric,Instances/PTN/bce7824.cnf,4,,, +memory:metric,Instances/PTN/bce7824.cnf,5,,, +memory:metric,Instances/PTN/bce7824.cnf,6,,, +memory:metric,Instances/PTN/bce7824.cnf,7,,, +memory:metric,Instances/PTN/bce7824.cnf,8,,, +memory:metric,Instances/PTN/bce7824.cnf,9,,, +memory:metric,Instances/PTN/bce7824.cnf,10,,, +memory:metric,Instances/PTN/bce7824.cnf,11,,, +memory:metric,Instances/PTN/bce7824.cnf,12,,, +memory:metric,Instances/PTN/bce7824.cnf,13,,, +memory:metric,Instances/PTN/bce7824.cnf,14,,, +memory:metric,Instances/PTN/bce7824.cnf,15,,, +memory:metric,Instances/PTN/bce7824.cnf,16,,, +memory:metric,Instances/PTN/bce7824.cnf,17,,, +memory:metric,Instances/PTN/bce7824.cnf,18,,, +memory:metric,Instances/PTN/bce7824.cnf,19,,, +memory:metric,Instances/PTN/bce7824.cnf,20,,, +memory:metric,Instances/PTN/bce7824.cnf,21,,, +memory:metric,Instances/PTN/bce7824.cnf,22,,, +memory:metric,Instances/PTN/bce7824.cnf,23,,, +memory:metric,Instances/PTN/bce7824.cnf,24,,, +memory:metric,Instances/PTN/bce7824.cnf,25,,, +memory:metric,Instances/PTN/bce7824.cnf,26,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,1,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,2,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,3,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,4,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,5,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,6,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,7,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,8,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,9,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,10,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,11,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,12,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,13,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,14,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,15,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,16,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,17,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,18,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,19,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,20,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,21,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,22,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,23,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,24,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,25,,, +status:metric,Instances/PTN/Ptn-7824-b01.cnf,26,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,1,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,2,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,3,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,4,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,5,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,6,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,7,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,8,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,9,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,10,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,11,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,12,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,13,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,14,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,15,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,16,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,17,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,18,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,19,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,20,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,21,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,22,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,23,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,24,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,25,,, +status:metric,Instances/PTN/Ptn-7824-b03.cnf,26,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,1,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,2,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,3,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,4,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,5,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,6,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,7,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,8,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,9,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,10,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,11,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,12,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,13,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,14,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,15,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,16,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,17,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,18,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,19,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,20,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,21,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,22,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,23,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,24,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,25,,, +status:metric,Instances/PTN/Ptn-7824-b05.cnf,26,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,1,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,2,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,3,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,4,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,5,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,6,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,7,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,8,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,9,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,10,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,11,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,12,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,13,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,14,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,15,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,16,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,17,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,18,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,19,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,20,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,21,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,22,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,23,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,24,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,25,,, +status:metric,Instances/PTN/Ptn-7824-b07.cnf,26,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,1,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,2,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,3,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,4,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,5,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,6,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,7,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,8,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,9,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,10,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,11,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,12,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,13,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,14,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,15,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,16,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,17,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,18,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,19,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,20,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,21,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,22,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,23,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,24,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,25,,, +status:metric,Instances/PTN/Ptn-7824-b09.cnf,26,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,1,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,2,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,3,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,4,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,5,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,6,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,7,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,8,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,9,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,10,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,11,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,12,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,13,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,14,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,15,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,16,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,17,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,18,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,19,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,20,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,21,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,22,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,23,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,24,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,25,,, +status:metric,Instances/PTN/Ptn-7824-b11.cnf,26,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,1,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,2,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,3,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,4,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,5,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,6,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,7,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,8,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,9,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,10,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,11,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,12,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,13,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,14,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,15,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,16,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,17,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,18,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,19,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,20,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,21,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,22,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,23,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,24,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,25,,, +status:metric,Instances/PTN/Ptn-7824-b13.cnf,26,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,1,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,2,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,3,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,4,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,5,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,6,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,7,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,8,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,9,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,10,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,11,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,12,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,13,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,14,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,15,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,16,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,17,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,18,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,19,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,20,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,21,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,22,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,23,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,24,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,25,,, +status:metric,Instances/PTN/Ptn-7824-b15.cnf,26,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,1,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,2,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,3,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,4,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,5,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,6,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,7,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,8,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,9,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,10,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,11,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,12,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,13,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,14,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,15,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,16,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,17,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,18,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,19,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,20,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,21,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,22,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,23,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,24,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,25,,, +status:metric,Instances/PTN/Ptn-7824-b17.cnf,26,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,1,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,2,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,3,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,4,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,5,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,6,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,7,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,8,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,9,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,10,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,11,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,12,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,13,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,14,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,15,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,16,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,17,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,18,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,19,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,20,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,21,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,22,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,23,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,24,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,25,,, +status:metric,Instances/PTN/Ptn-7824-b19.cnf,26,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,1,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,2,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,3,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,4,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,5,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,6,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,7,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,8,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,9,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,10,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,11,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,12,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,13,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,14,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,15,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,16,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,17,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,18,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,19,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,20,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,21,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,22,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,23,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,24,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,25,,, +status:metric,Instances/PTN/Ptn-7824-b21.cnf,26,,, +status:metric,Instances/PTN/bce7824.cnf,1,,, +status:metric,Instances/PTN/bce7824.cnf,2,,, +status:metric,Instances/PTN/bce7824.cnf,3,,, +status:metric,Instances/PTN/bce7824.cnf,4,,, +status:metric,Instances/PTN/bce7824.cnf,5,,, +status:metric,Instances/PTN/bce7824.cnf,6,,, +status:metric,Instances/PTN/bce7824.cnf,7,,, +status:metric,Instances/PTN/bce7824.cnf,8,,, +status:metric,Instances/PTN/bce7824.cnf,9,,, +status:metric,Instances/PTN/bce7824.cnf,10,,, +status:metric,Instances/PTN/bce7824.cnf,11,,, +status:metric,Instances/PTN/bce7824.cnf,12,,, +status:metric,Instances/PTN/bce7824.cnf,13,,, +status:metric,Instances/PTN/bce7824.cnf,14,,, +status:metric,Instances/PTN/bce7824.cnf,15,,, +status:metric,Instances/PTN/bce7824.cnf,16,,, +status:metric,Instances/PTN/bce7824.cnf,17,,, +status:metric,Instances/PTN/bce7824.cnf,18,,, +status:metric,Instances/PTN/bce7824.cnf,19,,, +status:metric,Instances/PTN/bce7824.cnf,20,,, +status:metric,Instances/PTN/bce7824.cnf,21,,, +status:metric,Instances/PTN/bce7824.cnf,22,,, +status:metric,Instances/PTN/bce7824.cnf,23,,, +status:metric,Instances/PTN/bce7824.cnf,24,,, +status:metric,Instances/PTN/bce7824.cnf,25,,, +status:metric,Instances/PTN/bce7824.cnf,26,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,1,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,2,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,3,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,4,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,5,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,6,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,7,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,8,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,9,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,10,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,11,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,12,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,13,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,14,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,15,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,16,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,17,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,18,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,19,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,20,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,21,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,22,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,23,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,24,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,25,,, +wall_time:metric,Instances/PTN/Ptn-7824-b01.cnf,26,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,1,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,2,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,3,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,4,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,5,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,6,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,7,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,8,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,9,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,10,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,11,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,12,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,13,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,14,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,15,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,16,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,17,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,18,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,19,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,20,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,21,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,22,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,23,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,24,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,25,,, +wall_time:metric,Instances/PTN/Ptn-7824-b03.cnf,26,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,1,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,2,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,3,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,4,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,5,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,6,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,7,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,8,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,9,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,10,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,11,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,12,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,13,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,14,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,15,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,16,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,17,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,18,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,19,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,20,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,21,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,22,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,23,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,24,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,25,,, +wall_time:metric,Instances/PTN/Ptn-7824-b05.cnf,26,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,1,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,2,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,3,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,4,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,5,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,6,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,7,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,8,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,9,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,10,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,11,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,12,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,13,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,14,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,15,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,16,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,17,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,18,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,19,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,20,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,21,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,22,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,23,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,24,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,25,,, +wall_time:metric,Instances/PTN/Ptn-7824-b07.cnf,26,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,1,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,2,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,3,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,4,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,5,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,6,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,7,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,8,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,9,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,10,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,11,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,12,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,13,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,14,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,15,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,16,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,17,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,18,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,19,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,20,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,21,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,22,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,23,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,24,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,25,,, +wall_time:metric,Instances/PTN/Ptn-7824-b09.cnf,26,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,1,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,2,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,3,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,4,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,5,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,6,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,7,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,8,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,9,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,10,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,11,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,12,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,13,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,14,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,15,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,16,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,17,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,18,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,19,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,20,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,21,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,22,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,23,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,24,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,25,,, +wall_time:metric,Instances/PTN/Ptn-7824-b11.cnf,26,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,1,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,2,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,3,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,4,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,5,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,6,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,7,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,8,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,9,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,10,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,11,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,12,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,13,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,14,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,15,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,16,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,17,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,18,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,19,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,20,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,21,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,22,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,23,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,24,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,25,,, +wall_time:metric,Instances/PTN/Ptn-7824-b13.cnf,26,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,1,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,2,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,3,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,4,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,5,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,6,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,7,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,8,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,9,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,10,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,11,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,12,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,13,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,14,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,15,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,16,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,17,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,18,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,19,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,20,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,21,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,22,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,23,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,24,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,25,,, +wall_time:metric,Instances/PTN/Ptn-7824-b15.cnf,26,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,1,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,2,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,3,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,4,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,5,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,6,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,7,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,8,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,9,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,10,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,11,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,12,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,13,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,14,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,15,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,16,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,17,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,18,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,19,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,20,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,21,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,22,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,23,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,24,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,25,,, +wall_time:metric,Instances/PTN/Ptn-7824-b17.cnf,26,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,1,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,2,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,3,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,4,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,5,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,6,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,7,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,8,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,9,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,10,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,11,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,12,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,13,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,14,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,15,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,16,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,17,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,18,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,19,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,20,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,21,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,22,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,23,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,24,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,25,,, +wall_time:metric,Instances/PTN/Ptn-7824-b19.cnf,26,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,1,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,2,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,3,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,4,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,5,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,6,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,7,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,8,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,9,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,10,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,11,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,12,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,13,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,14,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,15,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,16,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,17,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,18,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,19,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,20,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,21,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,22,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,23,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,24,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,25,,, +wall_time:metric,Instances/PTN/Ptn-7824-b21.cnf,26,,, +wall_time:metric,Instances/PTN/bce7824.cnf,1,,, +wall_time:metric,Instances/PTN/bce7824.cnf,2,,, +wall_time:metric,Instances/PTN/bce7824.cnf,3,,, +wall_time:metric,Instances/PTN/bce7824.cnf,4,,, +wall_time:metric,Instances/PTN/bce7824.cnf,5,,, +wall_time:metric,Instances/PTN/bce7824.cnf,6,,, +wall_time:metric,Instances/PTN/bce7824.cnf,7,,, +wall_time:metric,Instances/PTN/bce7824.cnf,8,,, +wall_time:metric,Instances/PTN/bce7824.cnf,9,,, +wall_time:metric,Instances/PTN/bce7824.cnf,10,,, +wall_time:metric,Instances/PTN/bce7824.cnf,11,,, +wall_time:metric,Instances/PTN/bce7824.cnf,12,,, +wall_time:metric,Instances/PTN/bce7824.cnf,13,,, +wall_time:metric,Instances/PTN/bce7824.cnf,14,,, +wall_time:metric,Instances/PTN/bce7824.cnf,15,,, +wall_time:metric,Instances/PTN/bce7824.cnf,16,,, +wall_time:metric,Instances/PTN/bce7824.cnf,17,,, +wall_time:metric,Instances/PTN/bce7824.cnf,18,,, +wall_time:metric,Instances/PTN/bce7824.cnf,19,,, +wall_time:metric,Instances/PTN/bce7824.cnf,20,,, +wall_time:metric,Instances/PTN/bce7824.cnf,21,,, +wall_time:metric,Instances/PTN/bce7824.cnf,22,,, +wall_time:metric,Instances/PTN/bce7824.cnf,23,,, +wall_time:metric,Instances/PTN/bce7824.cnf,24,,, +wall_time:metric,Instances/PTN/bce7824.cnf,25,,, +wall_time:metric,Instances/PTN/bce7824.cnf,26,,,