imap-processing 0.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- imap_processing/__init__.py +34 -0
- imap_processing/_version.py +3 -0
- imap_processing/ccsds/__init__.py +0 -0
- imap_processing/ccsds/ccsds_data.py +55 -0
- imap_processing/ccsds/excel_to_xtce.py +477 -0
- imap_processing/cdf/__init__.py +0 -0
- imap_processing/cdf/cdf_attribute_manager.py +322 -0
- imap_processing/cdf/config/imap_codice_global_cdf_attrs.yaml +212 -0
- imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +1358 -0
- imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +391 -0
- imap_processing/cdf/config/imap_constant_attrs.yaml +33 -0
- imap_processing/cdf/config/imap_default_global_cdf_attrs.yaml +17 -0
- imap_processing/cdf/config/imap_glows_global_cdf_attrs.yaml +41 -0
- imap_processing/cdf/config/imap_glows_l1a_variable_attrs.yaml +499 -0
- imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +334 -0
- imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +51 -0
- imap_processing/cdf/config/imap_hi_variable_attrs.yaml +435 -0
- imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +27 -0
- imap_processing/cdf/config/imap_hit_l1a_variable_attrs.yaml +493 -0
- imap_processing/cdf/config/imap_hit_l1b_variable_attrs.yaml +564 -0
- imap_processing/cdf/config/imap_idex_global_cdf_attrs.yaml +24 -0
- imap_processing/cdf/config/imap_idex_l1a_variable_attrs.yaml +426 -0
- imap_processing/cdf/config/imap_lo_global_cdf_attrs.yaml +90 -0
- imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +487 -0
- imap_processing/cdf/config/imap_lo_l1b_variable_attrs.yaml +121 -0
- imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +179 -0
- imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +97 -0
- imap_processing/cdf/config/imap_mag_l1_variable_attrs.yaml +201 -0
- imap_processing/cdf/config/imap_swapi_global_cdf_attrs.yaml +33 -0
- imap_processing/cdf/config/imap_swapi_variable_attrs.yaml +137 -0
- imap_processing/cdf/config/imap_swe_global_cdf_attrs.yaml +24 -0
- imap_processing/cdf/config/imap_swe_l1a_variable_attrs.yaml +234 -0
- imap_processing/cdf/config/imap_swe_l1b_variable_attrs.yaml +273 -0
- imap_processing/cdf/config/imap_ultra_global_cdf_attrs.yaml +100 -0
- imap_processing/cdf/config/imap_ultra_l1a_variable_attrs.yaml +52 -0
- imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +297 -0
- imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +121 -0
- imap_processing/cdf/config/shared/default_global_cdf_attrs_schema.yaml +246 -0
- imap_processing/cdf/config/shared/default_variable_cdf_attrs_schema.yaml +466 -0
- imap_processing/cdf/imap_cdf_manager.py +64 -0
- imap_processing/cdf/utils.py +147 -0
- imap_processing/cli.py +863 -0
- imap_processing/codice/__init__.py +1 -0
- imap_processing/codice/codice_l0.py +54 -0
- imap_processing/codice/codice_l1a.py +558 -0
- imap_processing/codice/codice_l1b.py +194 -0
- imap_processing/codice/constants.py +986 -0
- imap_processing/codice/data/esa_sweep_values.csv +257 -0
- imap_processing/codice/data/lo_stepping_values.csv +129 -0
- imap_processing/codice/decompress.py +142 -0
- imap_processing/codice/packet_definitions/P_COD_NHK.xml +618 -0
- imap_processing/codice/packet_definitions/codice_packet_definition.xml +5073 -0
- imap_processing/codice/utils.py +95 -0
- imap_processing/decom.py +40 -0
- imap_processing/glows/__init__.py +1 -0
- imap_processing/glows/ancillary/l1b_conversion_table_v001.json +42 -0
- imap_processing/glows/l0/__init__.py +0 -0
- imap_processing/glows/l0/decom_glows.py +91 -0
- imap_processing/glows/l0/glows_l0_data.py +194 -0
- imap_processing/glows/l1a/glows_l1a.py +424 -0
- imap_processing/glows/l1a/glows_l1a_data.py +555 -0
- imap_processing/glows/l1b/glows_l1b.py +270 -0
- imap_processing/glows/l1b/glows_l1b_data.py +583 -0
- imap_processing/glows/packet_definitions/GLX_COMBINED.xml +254 -0
- imap_processing/glows/packet_definitions/P_GLX_TMSCDE.xml +97 -0
- imap_processing/glows/packet_definitions/P_GLX_TMSCHIST.xml +215 -0
- imap_processing/glows/utils/__init__.py +0 -0
- imap_processing/glows/utils/constants.py +105 -0
- imap_processing/hi/__init__.py +1 -0
- imap_processing/hi/l0/__init__.py +0 -0
- imap_processing/hi/l0/decom_hi.py +24 -0
- imap_processing/hi/l1a/__init__.py +0 -0
- imap_processing/hi/l1a/hi_l1a.py +73 -0
- imap_processing/hi/l1a/histogram.py +142 -0
- imap_processing/hi/l1a/housekeeping.py +27 -0
- imap_processing/hi/l1a/science_direct_event.py +341 -0
- imap_processing/hi/l1b/__init__.py +0 -0
- imap_processing/hi/l1b/hi_eng_unit_convert_table.csv +154 -0
- imap_processing/hi/l1b/hi_l1b.py +127 -0
- imap_processing/hi/l1c/__init__.py +0 -0
- imap_processing/hi/l1c/hi_l1c.py +228 -0
- imap_processing/hi/packet_definitions/__init__.py +0 -0
- imap_processing/hi/packet_definitions/hi_packet_definition.xml +482 -0
- imap_processing/hi/utils.py +27 -0
- imap_processing/hit/__init__.py +1 -0
- imap_processing/hit/l0/__init__.py +0 -0
- imap_processing/hit/l0/data_classes/housekeeping.py +240 -0
- imap_processing/hit/l0/data_classes/science_packet.py +259 -0
- imap_processing/hit/l0/decom_hit.py +467 -0
- imap_processing/hit/l0/utils/hit_base.py +57 -0
- imap_processing/hit/l1a/__init__.py +0 -0
- imap_processing/hit/l1a/hit_l1a.py +254 -0
- imap_processing/hit/l1b/hit_l1b.py +179 -0
- imap_processing/hit/packet_definitions/hit_packet_definitions.xml +1276 -0
- imap_processing/ialirt/__init__.py +0 -0
- imap_processing/ialirt/l0/__init__.py +0 -0
- imap_processing/ialirt/l0/process_hit.py +220 -0
- imap_processing/ialirt/packet_definitions/__init__.py +0 -0
- imap_processing/ialirt/packet_definitions/ialirt.xml +778 -0
- imap_processing/ialirt/packet_definitions/ialirt_hit.xml +186 -0
- imap_processing/idex/__init__.py +2 -0
- imap_processing/idex/idex_constants.py +27 -0
- imap_processing/idex/idex_l0.py +31 -0
- imap_processing/idex/idex_l1a.py +631 -0
- imap_processing/idex/packet_definitions/idex_packet_definition.xml +3162 -0
- imap_processing/lo/__init__.py +1 -0
- imap_processing/lo/l0/__init__.py +0 -0
- imap_processing/lo/l0/data_classes/science_direct_events.py +215 -0
- imap_processing/lo/l0/data_classes/star_sensor.py +98 -0
- imap_processing/lo/l0/decompression_tables/12_to_16_bit.csv +4097 -0
- imap_processing/lo/l0/decompression_tables/8_to_12_bit.csv +257 -0
- imap_processing/lo/l0/decompression_tables/8_to_16_bit.csv +257 -0
- imap_processing/lo/l0/decompression_tables/decompression_tables.py +75 -0
- imap_processing/lo/l0/lo_apid.py +15 -0
- imap_processing/lo/l0/lo_science.py +150 -0
- imap_processing/lo/l0/utils/binary_string.py +59 -0
- imap_processing/lo/l0/utils/bit_decompression.py +62 -0
- imap_processing/lo/l0/utils/lo_base.py +57 -0
- imap_processing/lo/l1a/__init__.py +0 -0
- imap_processing/lo/l1a/lo_l1a.py +157 -0
- imap_processing/lo/l1b/lo_l1b.py +160 -0
- imap_processing/lo/l1c/lo_l1c.py +180 -0
- imap_processing/lo/packet_definitions/lo_xtce.xml +3541 -0
- imap_processing/mag/__init__.py +2 -0
- imap_processing/mag/constants.py +108 -0
- imap_processing/mag/l0/decom_mag.py +170 -0
- imap_processing/mag/l0/mag_l0_data.py +118 -0
- imap_processing/mag/l1a/mag_l1a.py +317 -0
- imap_processing/mag/l1a/mag_l1a_data.py +1007 -0
- imap_processing/mag/l1b/__init__.py +0 -0
- imap_processing/mag/l1b/imap_calibration_mag_20240229_v01.cdf +0 -0
- imap_processing/mag/l1b/mag_l1b.py +125 -0
- imap_processing/mag/l1c/mag_l1c.py +57 -0
- imap_processing/mag/packet_definitions/MAG_SCI_COMBINED.xml +235 -0
- imap_processing/quality_flags.py +91 -0
- imap_processing/spice/__init__.py +1 -0
- imap_processing/spice/geometry.py +322 -0
- imap_processing/spice/kernels.py +459 -0
- imap_processing/spice/time.py +72 -0
- imap_processing/swapi/__init__.py +1 -0
- imap_processing/swapi/l1/__init__.py +0 -0
- imap_processing/swapi/l1/swapi_l1.py +685 -0
- imap_processing/swapi/l2/__init__.py +0 -0
- imap_processing/swapi/l2/swapi_l2.py +107 -0
- imap_processing/swapi/packet_definitions/__init__.py +0 -0
- imap_processing/swapi/packet_definitions/swapi_packet_definition.xml +708 -0
- imap_processing/swapi/swapi_utils.py +25 -0
- imap_processing/swe/__init__.py +1 -0
- imap_processing/swe/l1a/__init__.py +0 -0
- imap_processing/swe/l1a/swe_l1a.py +48 -0
- imap_processing/swe/l1a/swe_science.py +223 -0
- imap_processing/swe/l1b/engineering_unit_convert_table.csv +65 -0
- imap_processing/swe/l1b/swe_esa_lookup_table.csv +1441 -0
- imap_processing/swe/l1b/swe_l1b.py +49 -0
- imap_processing/swe/l1b/swe_l1b_science.py +557 -0
- imap_processing/swe/packet_definitions/__init__.py +0 -0
- imap_processing/swe/packet_definitions/swe_packet_definition.xml +303 -0
- imap_processing/swe/utils/__init__.py +0 -0
- imap_processing/swe/utils/swe_utils.py +9 -0
- imap_processing/tests/__init__.py +0 -0
- imap_processing/tests/ccsds/test_data/expected_output.xml +171 -0
- imap_processing/tests/ccsds/test_excel_to_xtce.py +285 -0
- imap_processing/tests/cdf/__init__.py +0 -0
- imap_processing/tests/cdf/imap_default_global_cdf_attrs.yaml +8 -0
- imap_processing/tests/cdf/shared/default_global_cdf_attrs_schema.yaml +246 -0
- imap_processing/tests/cdf/shared/default_variable_cdf_attrs_schema.yaml +466 -0
- imap_processing/tests/cdf/test_cdf_attribute_manager.py +353 -0
- imap_processing/tests/cdf/test_data/imap_default_global_test_cdf_attrs.yaml +7 -0
- imap_processing/tests/cdf/test_data/imap_instrument1_global_cdf_attrs.yaml +14 -0
- imap_processing/tests/cdf/test_data/imap_instrument1_level1_variable_attrs.yaml +23 -0
- imap_processing/tests/cdf/test_data/imap_instrument2_global_cdf_attrs.yaml +23 -0
- imap_processing/tests/cdf/test_data/imap_instrument2_level2_variable_attrs.yaml +30 -0
- imap_processing/tests/cdf/test_data/imap_test_global.yaml +26 -0
- imap_processing/tests/cdf/test_data/imap_test_variable.yaml +41 -0
- imap_processing/tests/cdf/test_imap_cdf_manager.py +62 -0
- imap_processing/tests/cdf/test_utils.py +109 -0
- imap_processing/tests/codice/__init__.py +0 -0
- imap_processing/tests/codice/conftest.py +56 -0
- imap_processing/tests/codice/data/eu_unit_lookup_table.csv +101 -0
- imap_processing/tests/codice/data/idle_export_eu.COD_NHK_20230822_122700 2.csv +100 -0
- imap_processing/tests/codice/data/idle_export_raw.COD_NHK_20230822_122700.csv +100 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-counters-aggregated_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-counters-singles_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-omni_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-pha_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hi-sectored_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_hskp_20100101_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-counters-aggregated_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-counters-singles_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-angular_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-priority_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-nsw-species_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-pha_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-angular_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-priority_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l0_lo-sw-species_20240429_v001.pkts +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-omni_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hi-sectored_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_hskp_20100101_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-nsw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1a_lo-sw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-omni_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hi-sectored_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_hskp_20100101_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-aggregated_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-counters-singles_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-nsw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-angular_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-priority_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/data/imap_codice_l1b_lo-sw-species_20240429_v001.cdf +0 -0
- imap_processing/tests/codice/test_codice_l0.py +144 -0
- imap_processing/tests/codice/test_codice_l1a.py +187 -0
- imap_processing/tests/codice/test_codice_l1b.py +60 -0
- imap_processing/tests/codice/test_decompress.py +50 -0
- imap_processing/tests/conftest.py +372 -0
- imap_processing/tests/glows/direct_events_validation_data_l1a.csv +5704 -0
- imap_processing/tests/glows/glows_test_packet_20110921_v01.pkts +0 -0
- imap_processing/tests/glows/test_glows_decom.py +133 -0
- imap_processing/tests/glows/test_glows_l1a_cdf.py +85 -0
- imap_processing/tests/glows/test_glows_l1a_data.py +510 -0
- imap_processing/tests/glows/test_glows_l1b.py +348 -0
- imap_processing/tests/glows/test_glows_l1b_data.py +70 -0
- imap_processing/tests/hi/__init__.py +0 -0
- imap_processing/tests/hi/conftest.py +133 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_APP_NHK.bin +0 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_APP_NHK.csv +201 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_SCI_CNT.bin +0 -0
- imap_processing/tests/hi/test_data/l0/20231030_H45_SCI_DE.bin +0 -0
- imap_processing/tests/hi/test_data/l0/README.txt +54 -0
- imap_processing/tests/hi/test_decom.py +55 -0
- imap_processing/tests/hi/test_hi_l1b.py +31 -0
- imap_processing/tests/hi/test_hi_l1c.py +69 -0
- imap_processing/tests/hi/test_l1a.py +96 -0
- imap_processing/tests/hi/test_l1a_sci_de.py +72 -0
- imap_processing/tests/hi/test_utils.py +15 -0
- imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1251.pkts +0 -0
- imap_processing/tests/hit/PREFLIGHT_raw_record_2023_256_15_59_04_apid1252.pkts +0 -0
- imap_processing/tests/hit/__init__.py +0 -0
- imap_processing/tests/hit/test_data/imap_hit_l0_hk_20100105_v001.pkts +0 -0
- imap_processing/tests/hit/test_data/sci_sample.ccsds +0 -0
- imap_processing/tests/hit/test_hit_decom.py +230 -0
- imap_processing/tests/hit/test_hit_l1a.py +224 -0
- imap_processing/tests/hit/test_hit_l1b.py +52 -0
- imap_processing/tests/hit/validation_data/hskp_sample_raw.csv +88 -0
- imap_processing/tests/ialirt/__init__.py +0 -0
- imap_processing/tests/ialirt/test_data/l0/IALiRT Raw Packet Telemetry.txt +33 -0
- imap_processing/tests/ialirt/test_data/l0/hit_ialirt_sample.ccsds +0 -0
- imap_processing/tests/ialirt/test_data/l0/hit_ialirt_sample.csv +1001 -0
- imap_processing/tests/ialirt/unit/__init__.py +0 -0
- imap_processing/tests/ialirt/unit/test_decom_ialirt.py +94 -0
- imap_processing/tests/ialirt/unit/test_process_hit.py +226 -0
- imap_processing/tests/idex/__init__.py +0 -0
- imap_processing/tests/idex/conftest.py +22 -0
- imap_processing/tests/idex/imap_idex_l0_raw_20230725_v001.pkts +0 -0
- imap_processing/tests/idex/impact_14_tof_high_data.txt +8189 -0
- imap_processing/tests/idex/test_idex_l0.py +45 -0
- imap_processing/tests/idex/test_idex_l1a.py +91 -0
- imap_processing/tests/lo/__init__.py +0 -0
- imap_processing/tests/lo/test_binary_string.py +21 -0
- imap_processing/tests/lo/test_bit_decompression.py +39 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l0_raw_20240627_v001.pkts +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_de_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1a_spin_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_cdfs/imap_lo_l1b_de_20100101_v001.cdf +0 -0
- imap_processing/tests/lo/test_lo_l1a.py +66 -0
- imap_processing/tests/lo/test_lo_l1b.py +74 -0
- imap_processing/tests/lo/test_lo_l1c.py +66 -0
- imap_processing/tests/lo/test_science_counts.py +41 -0
- imap_processing/tests/lo/test_science_direct_events.py +209 -0
- imap_processing/tests/lo/test_star_sensor.py +35 -0
- imap_processing/tests/mag/imap_mag_l1a_burst-magi_20231025_v001.cdf +0 -0
- imap_processing/tests/mag/mag_l0_test_data.pkts +0 -0
- imap_processing/tests/mag/mag_l0_test_output.csv +37 -0
- imap_processing/tests/mag/mag_l1_test_data.pkts +0 -0
- imap_processing/tests/mag/mag_l1a_test_output.csv +97 -0
- imap_processing/tests/mag/test_mag_decom.py +117 -0
- imap_processing/tests/mag/test_mag_l1a.py +856 -0
- imap_processing/tests/mag/test_mag_l1b.py +77 -0
- imap_processing/tests/mag/test_mag_l1c.py +40 -0
- imap_processing/tests/spice/__init__.py +0 -0
- imap_processing/tests/spice/test_data/imap_ena_sim_metakernel.template +4 -0
- imap_processing/tests/spice/test_data/imap_science_0001.tf +171 -0
- imap_processing/tests/spice/test_data/imap_sclk_0000.tsc +156 -0
- imap_processing/tests/spice/test_data/imap_sim_ck_2hr_2secsampling_with_nutation.bc +0 -0
- imap_processing/tests/spice/test_data/imap_simple_metakernel.template +3 -0
- imap_processing/tests/spice/test_data/imap_spk_demo.bsp +0 -0
- imap_processing/tests/spice/test_data/imap_wkcp.tf +1806 -0
- imap_processing/tests/spice/test_data/naif0012.tls +150 -0
- imap_processing/tests/spice/test_data/sim_1yr_imap_attitude.bc +0 -0
- imap_processing/tests/spice/test_data/sim_1yr_imap_pointing_frame.bc +0 -0
- imap_processing/tests/spice/test_geometry.py +214 -0
- imap_processing/tests/spice/test_kernels.py +272 -0
- imap_processing/tests/spice/test_time.py +35 -0
- imap_processing/tests/swapi/__init__.py +0 -0
- imap_processing/tests/swapi/conftest.py +16 -0
- imap_processing/tests/swapi/l0_data/__init__.py +0 -0
- imap_processing/tests/swapi/l0_data/imap_swapi_l0_raw_20231012_v001.pkts +0 -0
- imap_processing/tests/swapi/l0_validation_data/__init__.py +0 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_AUT_20231012_125245.csv +124 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_HK_20231012_125245.csv +98 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_MG_20231012_125245.csv +9 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_eu.SWP_SCI_20231012_125245.csv +72 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_AUT_20231012_125245.csv +124 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_HK_20231012_125245.csv +98 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_MG_20231012_125245.csv +9 -0
- imap_processing/tests/swapi/l0_validation_data/idle_export_raw.SWP_SCI_20231012_125245.csv +72 -0
- imap_processing/tests/swapi/test_swapi_decom.py +135 -0
- imap_processing/tests/swapi/test_swapi_l1.py +354 -0
- imap_processing/tests/swapi/test_swapi_l2.py +21 -0
- imap_processing/tests/swe/__init__.py +0 -0
- imap_processing/tests/swe/conftest.py +35 -0
- imap_processing/tests/swe/decompressed/20230927173238_4th_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/decompressed/20230927173253_1st_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/decompressed/20230927173308_2nd_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/decompressed/20230927173323_3rd_quarter_decompressed.csv +181 -0
- imap_processing/tests/swe/l0_data/2024051010_SWE_SCIENCE_packet.bin +0 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_eu.SWE_SCIENCE_20240510_092742.csv +544 -0
- imap_processing/tests/swe/l0_validation_data/idle_export_raw.SWE_SCIENCE_20240510_092742.csv +363 -0
- imap_processing/tests/swe/test_swe_l1a.py +12 -0
- imap_processing/tests/swe/test_swe_l1a_science.py +129 -0
- imap_processing/tests/swe/test_swe_l1b.py +61 -0
- imap_processing/tests/swe/test_swe_l1b_science.py +65 -0
- imap_processing/tests/test_cli.py +229 -0
- imap_processing/tests/test_decom.py +66 -0
- imap_processing/tests/test_quality_flags.py +71 -0
- imap_processing/tests/test_utils.py +107 -0
- imap_processing/tests/ultra/__init__.py +0 -0
- imap_processing/tests/ultra/test_data/l0/FM45_40P_Phi28p5_BeamCal_LinearScan_phi28.50_theta-0.00_20240207T102740.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/FM45_7P_Phi0.0_BeamCal_LinearScan_phi0.04_theta-0.01_20230821T121304.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.CCSDS +0 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_auxdata_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +24 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_enaphxtofhangimg_FM45_TV_Cycle6_Hot_Ops_Front212_20240124T063837.csv +105 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultraimgrates_Ultra45_EM_SwRI_Cal_Run7_ThetaScan_20220530T225054.csv +24 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimg_withFSWcalcs_FM45_40P_Phi28p5_BeamCal_LinearScan_phi2850_theta-000_20240207T102740.csv +3314 -0
- imap_processing/tests/ultra/test_data/l0/ultra45_raw_sc_ultrarawimgevent_FM45_7P_Phi00_BeamCal_LinearScan_phi004_theta-001_20230821T121304.csv +702 -0
- imap_processing/tests/ultra/unit/__init__.py +0 -0
- imap_processing/tests/ultra/unit/conftest.py +210 -0
- imap_processing/tests/ultra/unit/test_decom_apid_880.py +98 -0
- imap_processing/tests/ultra/unit/test_decom_apid_881.py +50 -0
- imap_processing/tests/ultra/unit/test_decom_apid_883.py +44 -0
- imap_processing/tests/ultra/unit/test_decom_apid_896.py +104 -0
- imap_processing/tests/ultra/unit/test_lookup_utils.py +68 -0
- imap_processing/tests/ultra/unit/test_ultra_l1a.py +338 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b.py +122 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b_annotated.py +57 -0
- imap_processing/tests/ultra/unit/test_ultra_l1b_extended.py +342 -0
- imap_processing/tests/ultra/unit/test_ultra_l1c.py +104 -0
- imap_processing/tests/ultra/unit/test_ultra_l1c_pset_bins.py +35 -0
- imap_processing/ultra/__init__.py +1 -0
- imap_processing/ultra/constants.py +60 -0
- imap_processing/ultra/l0/__init__.py +0 -0
- imap_processing/ultra/l0/decom_tools.py +281 -0
- imap_processing/ultra/l0/decom_ultra.py +278 -0
- imap_processing/ultra/l0/ultra_utils.py +326 -0
- imap_processing/ultra/l1a/__init__.py +0 -0
- imap_processing/ultra/l1a/ultra_l1a.py +319 -0
- imap_processing/ultra/l1b/badtimes.py +26 -0
- imap_processing/ultra/l1b/cullingmask.py +26 -0
- imap_processing/ultra/l1b/de.py +59 -0
- imap_processing/ultra/l1b/extendedspin.py +45 -0
- imap_processing/ultra/l1b/lookup_utils.py +165 -0
- imap_processing/ultra/l1b/ultra_l1b.py +65 -0
- imap_processing/ultra/l1b/ultra_l1b_annotated.py +54 -0
- imap_processing/ultra/l1b/ultra_l1b_extended.py +764 -0
- imap_processing/ultra/l1c/histogram.py +36 -0
- imap_processing/ultra/l1c/pset.py +36 -0
- imap_processing/ultra/l1c/ultra_l1c.py +52 -0
- imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +54 -0
- imap_processing/ultra/lookup_tables/EgyNorm.mem.csv +32769 -0
- imap_processing/ultra/lookup_tables/FM45_Startup1_ULTRA_IMGPARAMS_20240719.csv +2 -0
- imap_processing/ultra/lookup_tables/ultra45_back-pos-luts.csv +4097 -0
- imap_processing/ultra/lookup_tables/ultra45_tdc_norm.csv +2050 -0
- imap_processing/ultra/lookup_tables/ultra90_back-pos-luts.csv +4097 -0
- imap_processing/ultra/lookup_tables/ultra90_tdc_norm.csv +2050 -0
- imap_processing/ultra/lookup_tables/yadjust.csv +257 -0
- imap_processing/ultra/packet_definitions/ULTRA_SCI_COMBINED.xml +547 -0
- imap_processing/ultra/packet_definitions/__init__.py +0 -0
- imap_processing/ultra/utils/__init__.py +0 -0
- imap_processing/ultra/utils/ultra_l1_utils.py +50 -0
- imap_processing/utils.py +413 -0
- imap_processing-0.6.0.dist-info/LICENSE +21 -0
- imap_processing-0.6.0.dist-info/METADATA +107 -0
- imap_processing-0.6.0.dist-info/RECORD +398 -0
- imap_processing-0.6.0.dist-info/WHEEL +4 -0
- imap_processing-0.6.0.dist-info/entry_points.txt +4 -0
|
@@ -0,0 +1,2050 @@
|
|
|
1
|
+
#DN raw,Normalized DN (scale = 0.2ns/DN),,,,,
|
|
2
|
+
Index,SpN,SpS,SpE,SpW,CoinN,CoinS
|
|
3
|
+
0,0,0,0,0,0,0
|
|
4
|
+
1,1,1,1,1,1,1
|
|
5
|
+
2,2,2,2,2,2,2
|
|
6
|
+
3,3,3,3,3,3,3
|
|
7
|
+
4,4,4,4,4,4,4
|
|
8
|
+
5,5,5,5,5,5,5
|
|
9
|
+
6,6,6,6,6,6,6
|
|
10
|
+
7,7,7,7,7,7,7
|
|
11
|
+
8,8,8,8,8,8,8
|
|
12
|
+
9,9,9,9,9,9,9
|
|
13
|
+
10,10,10,10,10,10,10
|
|
14
|
+
11,11,11,11,11,11,11
|
|
15
|
+
12,12,12,12,12,12,12
|
|
16
|
+
13,13,13,13,13,13,13
|
|
17
|
+
14,14,14,14,14,14,14
|
|
18
|
+
15,15,15,15,15,15,15
|
|
19
|
+
16,16,16,16,16,16,16
|
|
20
|
+
17,17,17,17,17,17,17
|
|
21
|
+
18,18,18,18,18,18,18
|
|
22
|
+
19,19,19,19,19,19,19
|
|
23
|
+
20,20,20,20,20,20,20
|
|
24
|
+
21,21,21,21,21,21,21
|
|
25
|
+
22,22,22,22,22,22,22
|
|
26
|
+
23,23,23,23,23,23,23
|
|
27
|
+
24,24,24,24,24,24,24
|
|
28
|
+
25,25,24,25,25,25,25
|
|
29
|
+
26,26,25,26,26,26,26
|
|
30
|
+
27,27,26,27,27,26,27
|
|
31
|
+
28,28,27,28,28,27,28
|
|
32
|
+
29,29,28,29,29,28,29
|
|
33
|
+
30,30,29,30,30,29,30
|
|
34
|
+
31,31,30,31,31,30,31
|
|
35
|
+
32,31,31,32,32,31,32
|
|
36
|
+
33,32,32,32,33,32,33
|
|
37
|
+
34,33,33,33,34,33,34
|
|
38
|
+
35,34,34,34,35,34,35
|
|
39
|
+
36,35,35,35,36,35,36
|
|
40
|
+
37,36,36,36,37,36,37
|
|
41
|
+
38,37,37,37,38,37,38
|
|
42
|
+
39,38,38,38,39,38,39
|
|
43
|
+
40,39,39,39,40,39,40
|
|
44
|
+
41,40,40,40,41,40,41
|
|
45
|
+
42,41,41,41,42,41,42
|
|
46
|
+
43,42,42,42,43,42,43
|
|
47
|
+
44,43,43,43,44,43,44
|
|
48
|
+
45,44,44,44,45,44,45
|
|
49
|
+
46,45,45,45,46,45,46
|
|
50
|
+
47,46,46,46,47,46,47
|
|
51
|
+
48,47,47,47,48,47,48
|
|
52
|
+
49,48,48,48,49,48,49
|
|
53
|
+
50,49,49,49,50,49,50
|
|
54
|
+
51,50,50,50,51,50,51
|
|
55
|
+
52,51,51,51,52,51,52
|
|
56
|
+
53,52,52,52,53,52,53
|
|
57
|
+
54,53,53,53,54,53,54
|
|
58
|
+
55,54,54,54,55,54,55
|
|
59
|
+
56,55,55,55,56,55,56
|
|
60
|
+
57,56,56,56,57,56,57
|
|
61
|
+
58,57,57,57,58,57,58
|
|
62
|
+
59,58,58,58,59,58,59
|
|
63
|
+
60,59,59,59,60,59,60
|
|
64
|
+
61,60,60,60,61,60,61
|
|
65
|
+
62,61,61,61,62,61,62
|
|
66
|
+
63,62,62,62,63,62,63
|
|
67
|
+
64,63,63,63,64,63,64
|
|
68
|
+
65,64,64,64,65,64,65
|
|
69
|
+
66,65,65,65,66,65,66
|
|
70
|
+
67,66,66,66,67,66,67
|
|
71
|
+
68,67,67,67,68,67,68
|
|
72
|
+
69,68,68,68,69,68,69
|
|
73
|
+
70,69,69,69,70,69,70
|
|
74
|
+
71,70,70,70,71,70,71
|
|
75
|
+
72,71,71,71,72,71,72
|
|
76
|
+
73,72,72,72,73,72,73
|
|
77
|
+
74,73,73,73,74,73,74
|
|
78
|
+
75,74,73,74,75,74,75
|
|
79
|
+
76,75,74,75,76,75,75
|
|
80
|
+
77,76,75,76,77,76,76
|
|
81
|
+
78,77,76,77,78,77,77
|
|
82
|
+
79,78,77,78,79,78,78
|
|
83
|
+
80,79,78,79,80,78,79
|
|
84
|
+
81,80,79,80,81,79,80
|
|
85
|
+
82,81,80,81,82,80,81
|
|
86
|
+
83,82,81,82,83,81,82
|
|
87
|
+
84,83,82,83,84,82,83
|
|
88
|
+
85,84,83,84,85,83,84
|
|
89
|
+
86,85,84,85,86,84,85
|
|
90
|
+
87,86,85,86,87,85,86
|
|
91
|
+
88,87,86,87,88,86,87
|
|
92
|
+
89,88,87,88,88,87,88
|
|
93
|
+
90,89,88,89,89,88,89
|
|
94
|
+
91,90,89,90,90,89,90
|
|
95
|
+
92,91,90,91,91,90,91
|
|
96
|
+
93,92,91,92,92,91,92
|
|
97
|
+
94,92,92,93,93,92,93
|
|
98
|
+
95,93,93,94,94,93,94
|
|
99
|
+
96,94,94,95,95,94,95
|
|
100
|
+
97,95,95,96,96,95,96
|
|
101
|
+
98,96,96,96,97,96,97
|
|
102
|
+
99,97,97,97,98,97,98
|
|
103
|
+
100,98,98,98,99,98,99
|
|
104
|
+
101,99,99,99,100,99,100
|
|
105
|
+
102,100,100,100,101,100,101
|
|
106
|
+
103,101,101,101,102,101,102
|
|
107
|
+
104,102,102,102,103,102,103
|
|
108
|
+
105,103,103,103,104,103,104
|
|
109
|
+
106,104,104,104,105,104,105
|
|
110
|
+
107,105,105,105,106,105,106
|
|
111
|
+
108,106,106,106,107,106,107
|
|
112
|
+
109,107,107,107,108,107,108
|
|
113
|
+
110,108,108,108,109,108,109
|
|
114
|
+
111,109,109,109,110,109,110
|
|
115
|
+
112,110,110,110,111,110,111
|
|
116
|
+
113,111,111,111,112,111,112
|
|
117
|
+
114,112,112,112,113,112,113
|
|
118
|
+
115,113,113,113,114,113,114
|
|
119
|
+
116,114,114,114,115,114,115
|
|
120
|
+
117,115,115,115,116,115,116
|
|
121
|
+
118,116,116,116,117,116,117
|
|
122
|
+
119,117,117,117,118,117,118
|
|
123
|
+
120,118,118,118,119,118,119
|
|
124
|
+
121,119,119,119,120,119,120
|
|
125
|
+
122,120,120,120,121,120,121
|
|
126
|
+
123,121,121,121,122,121,122
|
|
127
|
+
124,122,121,122,123,122,123
|
|
128
|
+
125,123,122,123,124,123,124
|
|
129
|
+
126,124,123,124,125,124,125
|
|
130
|
+
127,125,124,125,126,125,126
|
|
131
|
+
128,126,125,126,127,126,127
|
|
132
|
+
129,127,126,127,128,127,128
|
|
133
|
+
130,128,127,128,129,128,129
|
|
134
|
+
131,129,128,129,130,129,130
|
|
135
|
+
132,130,129,130,131,130,131
|
|
136
|
+
133,131,130,131,132,130,132
|
|
137
|
+
134,132,131,132,133,131,133
|
|
138
|
+
135,133,132,133,134,132,134
|
|
139
|
+
136,134,133,134,135,133,135
|
|
140
|
+
137,135,134,135,136,134,136
|
|
141
|
+
138,136,135,136,137,135,137
|
|
142
|
+
139,137,136,137,138,136,138
|
|
143
|
+
140,138,137,138,139,137,139
|
|
144
|
+
141,139,138,139,140,138,140
|
|
145
|
+
142,140,139,140,141,139,141
|
|
146
|
+
143,141,140,141,142,140,142
|
|
147
|
+
144,142,141,142,143,141,143
|
|
148
|
+
145,143,142,143,144,142,144
|
|
149
|
+
146,144,143,144,145,143,145
|
|
150
|
+
147,145,144,145,146,144,146
|
|
151
|
+
148,146,145,146,147,145,147
|
|
152
|
+
149,147,146,147,148,146,148
|
|
153
|
+
150,148,147,148,149,147,149
|
|
154
|
+
151,149,148,149,150,148,150
|
|
155
|
+
152,150,149,150,151,149,151
|
|
156
|
+
153,151,150,151,152,150,152
|
|
157
|
+
154,152,151,152,153,151,153
|
|
158
|
+
155,153,152,153,154,152,154
|
|
159
|
+
156,154,153,154,155,153,155
|
|
160
|
+
157,154,154,155,156,154,156
|
|
161
|
+
158,155,155,156,157,155,157
|
|
162
|
+
159,156,156,157,158,156,158
|
|
163
|
+
160,157,157,158,159,157,159
|
|
164
|
+
161,158,158,159,160,158,160
|
|
165
|
+
162,159,159,160,161,159,161
|
|
166
|
+
163,160,160,160,162,160,162
|
|
167
|
+
164,161,161,161,163,161,163
|
|
168
|
+
165,162,162,162,164,162,164
|
|
169
|
+
166,163,163,163,165,163,165
|
|
170
|
+
167,164,164,164,166,164,166
|
|
171
|
+
168,165,165,165,167,165,167
|
|
172
|
+
169,166,166,166,168,166,168
|
|
173
|
+
170,167,167,167,169,167,169
|
|
174
|
+
171,168,168,168,170,168,170
|
|
175
|
+
172,169,169,169,171,169,171
|
|
176
|
+
173,170,170,170,172,170,172
|
|
177
|
+
174,171,170,171,173,171,173
|
|
178
|
+
175,172,171,172,174,172,174
|
|
179
|
+
176,173,172,173,175,173,175
|
|
180
|
+
177,174,173,174,176,174,176
|
|
181
|
+
178,175,174,175,177,175,177
|
|
182
|
+
179,176,175,176,178,176,178
|
|
183
|
+
180,177,176,177,179,177,179
|
|
184
|
+
181,178,177,178,180,178,180
|
|
185
|
+
182,179,178,179,181,179,181
|
|
186
|
+
183,180,179,180,182,180,182
|
|
187
|
+
184,181,180,181,183,181,183
|
|
188
|
+
185,182,181,182,184,182,184
|
|
189
|
+
186,183,182,183,185,183,185
|
|
190
|
+
187,184,183,184,186,183,186
|
|
191
|
+
188,185,184,185,187,184,187
|
|
192
|
+
189,186,185,186,188,185,188
|
|
193
|
+
190,187,186,187,189,186,189
|
|
194
|
+
191,188,187,188,190,187,190
|
|
195
|
+
192,189,188,189,191,188,191
|
|
196
|
+
193,190,189,190,192,189,192
|
|
197
|
+
194,191,190,191,193,190,193
|
|
198
|
+
195,192,191,192,194,191,194
|
|
199
|
+
196,193,192,193,195,192,195
|
|
200
|
+
197,194,193,194,196,193,196
|
|
201
|
+
198,195,194,195,197,194,197
|
|
202
|
+
199,196,195,196,198,195,198
|
|
203
|
+
200,197,196,197,199,196,199
|
|
204
|
+
201,198,197,198,200,197,200
|
|
205
|
+
202,199,198,199,201,198,201
|
|
206
|
+
203,200,199,200,202,199,202
|
|
207
|
+
204,201,200,201,203,200,203
|
|
208
|
+
205,202,201,202,204,201,204
|
|
209
|
+
206,203,202,203,205,202,205
|
|
210
|
+
207,204,203,204,206,203,206
|
|
211
|
+
208,205,204,205,207,204,207
|
|
212
|
+
209,206,205,206,208,205,208
|
|
213
|
+
210,207,206,207,209,206,209
|
|
214
|
+
211,208,207,208,210,207,210
|
|
215
|
+
212,209,208,209,211,208,211
|
|
216
|
+
213,210,209,210,212,209,212
|
|
217
|
+
214,211,210,211,213,210,213
|
|
218
|
+
215,212,211,212,214,211,214
|
|
219
|
+
216,213,212,213,215,212,215
|
|
220
|
+
217,214,213,214,216,213,216
|
|
221
|
+
218,215,214,215,217,214,217
|
|
222
|
+
219,215,215,216,218,215,218
|
|
223
|
+
220,216,216,217,219,216,219
|
|
224
|
+
221,217,217,218,220,217,220
|
|
225
|
+
222,218,218,219,221,218,221
|
|
226
|
+
223,219,219,220,222,219,222
|
|
227
|
+
224,220,219,221,223,220,223
|
|
228
|
+
225,221,220,222,224,221,224
|
|
229
|
+
226,222,221,223,225,222,225
|
|
230
|
+
227,223,222,224,226,223,225
|
|
231
|
+
228,224,223,225,227,224,226
|
|
232
|
+
229,225,224,225,228,225,227
|
|
233
|
+
230,226,225,226,229,226,228
|
|
234
|
+
231,227,226,227,230,227,229
|
|
235
|
+
232,228,227,228,231,228,230
|
|
236
|
+
233,229,228,229,232,229,231
|
|
237
|
+
234,230,229,230,233,230,232
|
|
238
|
+
235,231,230,231,234,231,233
|
|
239
|
+
236,232,231,232,235,232,234
|
|
240
|
+
237,233,232,233,236,233,235
|
|
241
|
+
238,234,233,234,237,234,236
|
|
242
|
+
239,235,234,235,238,235,237
|
|
243
|
+
240,236,235,236,239,235,238
|
|
244
|
+
241,237,236,237,240,236,239
|
|
245
|
+
242,238,237,238,241,237,240
|
|
246
|
+
243,239,238,239,242,238,241
|
|
247
|
+
244,240,239,240,243,239,242
|
|
248
|
+
245,241,240,241,244,240,243
|
|
249
|
+
246,242,241,242,245,241,244
|
|
250
|
+
247,243,242,243,246,242,245
|
|
251
|
+
248,244,243,244,247,243,246
|
|
252
|
+
249,245,244,245,248,244,247
|
|
253
|
+
250,246,245,246,249,245,248
|
|
254
|
+
251,247,246,247,250,246,249
|
|
255
|
+
252,248,247,248,251,247,250
|
|
256
|
+
253,249,248,249,252,248,251
|
|
257
|
+
254,250,249,250,253,249,252
|
|
258
|
+
255,251,250,251,254,250,253
|
|
259
|
+
256,252,251,252,255,251,254
|
|
260
|
+
257,253,252,253,256,252,255
|
|
261
|
+
258,254,253,254,257,253,256
|
|
262
|
+
259,255,254,255,258,254,257
|
|
263
|
+
260,256,255,256,259,255,258
|
|
264
|
+
261,257,256,257,260,256,259
|
|
265
|
+
262,258,257,258,261,257,260
|
|
266
|
+
263,259,258,259,262,258,261
|
|
267
|
+
264,260,259,260,263,259,262
|
|
268
|
+
265,261,260,261,263,260,263
|
|
269
|
+
266,262,261,262,264,261,264
|
|
270
|
+
267,263,262,263,265,262,265
|
|
271
|
+
268,264,263,264,266,263,266
|
|
272
|
+
269,265,264,265,267,264,267
|
|
273
|
+
270,266,265,266,268,265,268
|
|
274
|
+
271,267,266,267,269,266,269
|
|
275
|
+
272,268,267,268,270,267,270
|
|
276
|
+
273,269,267,269,271,268,271
|
|
277
|
+
274,270,268,270,272,269,272
|
|
278
|
+
275,271,269,271,273,270,273
|
|
279
|
+
276,272,270,272,274,271,274
|
|
280
|
+
277,273,271,273,275,272,275
|
|
281
|
+
278,274,272,274,276,273,276
|
|
282
|
+
279,275,273,275,277,274,277
|
|
283
|
+
280,276,274,276,278,275,278
|
|
284
|
+
281,277,275,277,279,276,279
|
|
285
|
+
282,277,276,278,280,277,280
|
|
286
|
+
283,278,277,279,281,278,281
|
|
287
|
+
284,279,278,280,282,279,282
|
|
288
|
+
285,280,279,281,283,280,283
|
|
289
|
+
286,281,280,282,284,281,284
|
|
290
|
+
287,282,281,283,285,282,285
|
|
291
|
+
288,283,282,284,286,283,286
|
|
292
|
+
289,284,283,285,287,284,287
|
|
293
|
+
290,285,284,286,288,285,288
|
|
294
|
+
291,286,285,287,289,286,289
|
|
295
|
+
292,287,286,288,290,287,290
|
|
296
|
+
293,288,287,289,291,287,291
|
|
297
|
+
294,289,288,289,292,288,292
|
|
298
|
+
295,290,289,290,293,289,293
|
|
299
|
+
296,291,290,291,294,290,294
|
|
300
|
+
297,292,291,292,295,291,295
|
|
301
|
+
298,293,292,293,296,292,296
|
|
302
|
+
299,294,293,294,297,293,297
|
|
303
|
+
300,295,294,295,298,294,298
|
|
304
|
+
301,296,295,296,299,295,299
|
|
305
|
+
302,297,296,297,300,296,300
|
|
306
|
+
303,298,297,298,301,297,301
|
|
307
|
+
304,299,298,299,302,298,302
|
|
308
|
+
305,300,299,300,303,299,303
|
|
309
|
+
306,301,300,301,304,300,304
|
|
310
|
+
307,302,301,302,305,301,305
|
|
311
|
+
308,303,302,303,306,302,306
|
|
312
|
+
309,304,303,304,307,303,307
|
|
313
|
+
310,305,304,305,308,304,308
|
|
314
|
+
311,306,305,306,309,305,309
|
|
315
|
+
312,307,306,307,310,306,310
|
|
316
|
+
313,308,307,308,311,307,311
|
|
317
|
+
314,309,308,309,312,308,312
|
|
318
|
+
315,310,309,310,313,309,313
|
|
319
|
+
316,311,310,311,314,310,314
|
|
320
|
+
317,312,311,312,315,311,315
|
|
321
|
+
318,313,312,313,316,312,316
|
|
322
|
+
319,314,313,314,317,313,317
|
|
323
|
+
320,315,314,315,318,314,318
|
|
324
|
+
321,316,315,316,319,315,319
|
|
325
|
+
322,317,316,317,320,316,320
|
|
326
|
+
323,318,316,318,321,317,321
|
|
327
|
+
324,319,317,319,322,318,322
|
|
328
|
+
325,320,318,320,323,319,323
|
|
329
|
+
326,321,319,321,324,320,324
|
|
330
|
+
327,322,320,322,325,321,325
|
|
331
|
+
328,323,321,323,326,322,326
|
|
332
|
+
329,324,322,324,327,323,327
|
|
333
|
+
330,325,323,325,328,324,328
|
|
334
|
+
331,326,324,326,329,325,329
|
|
335
|
+
332,327,325,327,330,326,330
|
|
336
|
+
333,328,326,328,331,327,331
|
|
337
|
+
334,329,327,329,332,328,332
|
|
338
|
+
335,330,328,330,333,329,333
|
|
339
|
+
336,331,329,331,334,330,334
|
|
340
|
+
337,332,330,332,335,331,335
|
|
341
|
+
338,333,331,333,336,332,336
|
|
342
|
+
339,334,332,334,337,333,337
|
|
343
|
+
340,335,333,335,338,334,338
|
|
344
|
+
341,336,334,336,339,335,339
|
|
345
|
+
342,337,335,337,340,336,340
|
|
346
|
+
343,338,336,338,341,337,341
|
|
347
|
+
344,338,337,339,342,338,342
|
|
348
|
+
345,339,338,340,343,339,343
|
|
349
|
+
346,340,339,341,344,339,344
|
|
350
|
+
347,341,340,342,345,340,345
|
|
351
|
+
348,342,341,343,346,341,346
|
|
352
|
+
349,343,342,344,347,342,347
|
|
353
|
+
350,344,343,345,348,343,348
|
|
354
|
+
351,345,344,346,349,344,349
|
|
355
|
+
352,346,345,347,350,345,350
|
|
356
|
+
353,347,346,348,351,346,351
|
|
357
|
+
354,348,347,349,352,347,352
|
|
358
|
+
355,349,348,350,353,348,353
|
|
359
|
+
356,350,349,351,354,349,354
|
|
360
|
+
357,351,350,352,355,350,355
|
|
361
|
+
358,352,351,353,356,351,356
|
|
362
|
+
359,353,352,353,357,352,357
|
|
363
|
+
360,354,353,354,358,353,358
|
|
364
|
+
361,355,354,355,359,354,359
|
|
365
|
+
362,356,355,356,360,355,360
|
|
366
|
+
363,357,356,357,361,356,361
|
|
367
|
+
364,358,357,358,362,357,362
|
|
368
|
+
365,359,358,359,363,358,363
|
|
369
|
+
366,360,359,360,364,359,364
|
|
370
|
+
367,361,360,361,365,360,365
|
|
371
|
+
368,362,361,362,366,361,366
|
|
372
|
+
369,363,362,363,367,362,367
|
|
373
|
+
370,364,363,364,368,363,368
|
|
374
|
+
371,365,364,365,369,364,369
|
|
375
|
+
372,366,364,366,370,365,370
|
|
376
|
+
373,367,365,367,371,366,371
|
|
377
|
+
374,368,366,368,372,367,372
|
|
378
|
+
375,369,367,369,373,368,373
|
|
379
|
+
376,370,368,370,374,369,374
|
|
380
|
+
377,371,369,371,375,370,375
|
|
381
|
+
378,372,370,372,376,371,375
|
|
382
|
+
379,373,371,373,377,372,376
|
|
383
|
+
380,374,372,374,378,373,377
|
|
384
|
+
381,375,373,375,379,374,378
|
|
385
|
+
382,376,374,376,380,375,379
|
|
386
|
+
383,377,375,377,381,376,380
|
|
387
|
+
384,378,376,378,382,377,381
|
|
388
|
+
385,379,377,379,383,378,382
|
|
389
|
+
386,380,378,380,384,379,383
|
|
390
|
+
387,381,379,381,385,380,384
|
|
391
|
+
388,382,380,382,386,381,385
|
|
392
|
+
389,383,381,383,387,382,386
|
|
393
|
+
390,384,382,384,388,383,387
|
|
394
|
+
391,385,383,385,389,384,388
|
|
395
|
+
392,386,384,386,390,385,389
|
|
396
|
+
393,387,385,387,391,386,390
|
|
397
|
+
394,388,386,388,392,387,391
|
|
398
|
+
395,389,387,389,393,388,392
|
|
399
|
+
396,390,388,390,394,389,393
|
|
400
|
+
397,391,389,391,395,390,394
|
|
401
|
+
398,392,390,392,396,391,395
|
|
402
|
+
399,393,391,393,397,391,396
|
|
403
|
+
400,394,392,394,398,392,397
|
|
404
|
+
401,395,393,395,399,393,398
|
|
405
|
+
402,396,394,396,400,394,399
|
|
406
|
+
403,397,395,397,401,395,400
|
|
407
|
+
404,398,396,398,402,396,401
|
|
408
|
+
405,399,397,399,403,397,402
|
|
409
|
+
406,400,398,400,404,398,403
|
|
410
|
+
407,400,399,401,405,399,404
|
|
411
|
+
408,401,400,402,406,400,405
|
|
412
|
+
409,402,401,403,407,401,406
|
|
413
|
+
410,403,402,404,408,402,407
|
|
414
|
+
411,404,403,405,409,403,408
|
|
415
|
+
412,405,404,406,410,404,409
|
|
416
|
+
413,406,405,407,411,405,410
|
|
417
|
+
414,407,406,408,412,406,411
|
|
418
|
+
415,408,407,409,413,407,412
|
|
419
|
+
416,409,408,410,414,408,413
|
|
420
|
+
417,410,409,411,415,409,414
|
|
421
|
+
418,411,410,412,416,410,415
|
|
422
|
+
419,412,411,413,417,411,416
|
|
423
|
+
420,413,412,414,418,412,417
|
|
424
|
+
421,414,413,415,419,413,418
|
|
425
|
+
422,415,413,416,420,414,419
|
|
426
|
+
423,416,414,417,421,415,420
|
|
427
|
+
424,417,415,417,422,416,421
|
|
428
|
+
425,418,416,418,423,417,422
|
|
429
|
+
426,419,417,419,424,418,423
|
|
430
|
+
427,420,418,420,425,419,424
|
|
431
|
+
428,421,419,421,426,420,425
|
|
432
|
+
429,422,420,422,427,421,426
|
|
433
|
+
430,423,421,423,428,422,427
|
|
434
|
+
431,424,422,424,429,423,428
|
|
435
|
+
432,425,423,425,430,424,429
|
|
436
|
+
433,426,424,426,431,425,430
|
|
437
|
+
434,427,425,427,432,426,431
|
|
438
|
+
435,428,426,428,433,427,432
|
|
439
|
+
436,429,427,429,434,428,433
|
|
440
|
+
437,430,428,430,435,429,434
|
|
441
|
+
438,431,429,431,436,430,435
|
|
442
|
+
439,432,430,432,437,431,436
|
|
443
|
+
440,433,431,433,438,432,437
|
|
444
|
+
441,434,432,434,439,433,438
|
|
445
|
+
442,435,433,435,439,434,439
|
|
446
|
+
443,436,434,436,440,435,440
|
|
447
|
+
444,437,435,437,441,436,441
|
|
448
|
+
445,438,436,438,442,437,442
|
|
449
|
+
446,439,437,439,443,438,443
|
|
450
|
+
447,440,438,440,444,439,444
|
|
451
|
+
448,441,439,441,445,440,445
|
|
452
|
+
449,442,440,442,446,441,446
|
|
453
|
+
450,443,441,443,447,442,447
|
|
454
|
+
451,444,442,444,448,443,448
|
|
455
|
+
452,445,443,445,449,444,449
|
|
456
|
+
453,446,444,446,450,444,450
|
|
457
|
+
454,447,445,447,451,445,451
|
|
458
|
+
455,448,446,448,452,446,452
|
|
459
|
+
456,449,447,449,453,447,453
|
|
460
|
+
457,450,448,450,454,448,454
|
|
461
|
+
458,451,449,451,455,449,455
|
|
462
|
+
459,452,450,452,456,450,456
|
|
463
|
+
460,453,451,453,457,451,457
|
|
464
|
+
461,454,452,454,458,452,458
|
|
465
|
+
462,455,453,455,459,453,459
|
|
466
|
+
463,456,454,456,460,454,460
|
|
467
|
+
464,457,455,457,461,455,461
|
|
468
|
+
465,458,456,458,462,456,462
|
|
469
|
+
466,459,457,459,463,457,463
|
|
470
|
+
467,460,458,460,464,458,464
|
|
471
|
+
468,461,459,461,465,459,465
|
|
472
|
+
469,461,460,462,466,460,466
|
|
473
|
+
470,462,461,463,467,461,467
|
|
474
|
+
471,463,462,464,468,462,468
|
|
475
|
+
472,464,462,465,469,463,469
|
|
476
|
+
473,465,463,466,470,464,470
|
|
477
|
+
474,466,464,467,471,465,471
|
|
478
|
+
475,467,465,468,472,466,472
|
|
479
|
+
476,468,466,469,473,467,473
|
|
480
|
+
477,469,467,470,474,468,474
|
|
481
|
+
478,470,468,471,475,469,475
|
|
482
|
+
479,471,469,472,476,470,476
|
|
483
|
+
480,472,470,473,477,471,477
|
|
484
|
+
481,473,471,474,478,472,478
|
|
485
|
+
482,474,472,475,479,473,479
|
|
486
|
+
483,475,473,476,480,474,480
|
|
487
|
+
484,476,474,477,481,475,481
|
|
488
|
+
485,477,475,478,482,476,482
|
|
489
|
+
486,478,476,479,483,477,483
|
|
490
|
+
487,479,477,480,484,478,484
|
|
491
|
+
488,480,478,481,485,479,485
|
|
492
|
+
489,481,479,481,486,480,486
|
|
493
|
+
490,482,480,482,487,481,487
|
|
494
|
+
491,483,481,483,488,482,488
|
|
495
|
+
492,484,482,484,489,483,489
|
|
496
|
+
493,485,483,485,490,484,490
|
|
497
|
+
494,486,484,486,491,485,491
|
|
498
|
+
495,487,485,487,492,486,492
|
|
499
|
+
496,488,486,488,493,487,493
|
|
500
|
+
497,489,487,489,494,488,494
|
|
501
|
+
498,490,488,490,495,489,495
|
|
502
|
+
499,491,489,491,496,490,496
|
|
503
|
+
500,492,490,492,497,491,497
|
|
504
|
+
501,493,491,493,498,492,498
|
|
505
|
+
502,494,492,494,499,493,499
|
|
506
|
+
503,495,493,495,500,494,500
|
|
507
|
+
504,496,494,496,501,495,501
|
|
508
|
+
505,497,495,497,502,496,502
|
|
509
|
+
506,498,496,498,503,496,503
|
|
510
|
+
507,499,497,499,504,497,504
|
|
511
|
+
508,500,498,500,505,498,505
|
|
512
|
+
509,501,499,501,506,499,506
|
|
513
|
+
510,502,500,502,507,500,507
|
|
514
|
+
511,503,501,503,508,501,508
|
|
515
|
+
512,504,502,504,509,502,509
|
|
516
|
+
513,505,503,505,510,503,510
|
|
517
|
+
514,506,504,506,511,504,511
|
|
518
|
+
515,507,505,507,512,505,512
|
|
519
|
+
516,508,506,508,513,506,513
|
|
520
|
+
517,509,507,509,514,507,514
|
|
521
|
+
518,510,508,510,515,508,515
|
|
522
|
+
519,511,509,511,516,509,516
|
|
523
|
+
520,512,510,512,517,510,517
|
|
524
|
+
521,513,510,513,518,511,518
|
|
525
|
+
522,514,511,514,519,512,519
|
|
526
|
+
523,515,512,515,520,513,520
|
|
527
|
+
524,516,513,516,521,514,521
|
|
528
|
+
525,517,514,517,522,515,522
|
|
529
|
+
526,518,515,518,523,516,523
|
|
530
|
+
527,519,516,519,524,517,524
|
|
531
|
+
528,520,517,520,525,518,525
|
|
532
|
+
529,521,518,521,526,519,526
|
|
533
|
+
530,522,519,522,527,520,526
|
|
534
|
+
531,523,520,523,528,521,527
|
|
535
|
+
532,523,521,524,529,522,528
|
|
536
|
+
533,524,522,525,530,523,529
|
|
537
|
+
534,525,523,526,531,524,530
|
|
538
|
+
535,526,524,527,532,525,531
|
|
539
|
+
536,527,525,528,533,526,532
|
|
540
|
+
537,528,526,529,534,527,533
|
|
541
|
+
538,529,527,530,535,528,534
|
|
542
|
+
539,530,528,531,536,529,535
|
|
543
|
+
540,531,529,532,537,530,536
|
|
544
|
+
541,532,530,533,538,531,537
|
|
545
|
+
542,533,531,534,539,532,538
|
|
546
|
+
543,534,532,535,540,533,539
|
|
547
|
+
544,535,533,536,541,534,540
|
|
548
|
+
545,536,534,537,542,535,541
|
|
549
|
+
546,537,535,538,543,536,542
|
|
550
|
+
547,538,536,539,544,537,543
|
|
551
|
+
548,539,537,540,545,538,544
|
|
552
|
+
549,540,538,541,546,539,545
|
|
553
|
+
550,541,539,542,547,540,546
|
|
554
|
+
551,542,540,543,548,541,547
|
|
555
|
+
552,543,541,544,549,542,548
|
|
556
|
+
553,544,542,545,550,543,549
|
|
557
|
+
554,545,543,546,551,544,550
|
|
558
|
+
555,546,544,546,552,545,551
|
|
559
|
+
556,547,545,547,553,546,552
|
|
560
|
+
557,548,546,548,554,547,553
|
|
561
|
+
558,549,547,549,555,548,554
|
|
562
|
+
559,550,548,550,556,548,555
|
|
563
|
+
560,551,549,551,557,549,556
|
|
564
|
+
561,552,550,552,558,550,557
|
|
565
|
+
562,553,551,553,559,551,558
|
|
566
|
+
563,554,552,554,560,552,559
|
|
567
|
+
564,555,553,555,561,553,560
|
|
568
|
+
565,556,554,556,562,554,561
|
|
569
|
+
566,557,555,557,563,555,562
|
|
570
|
+
567,558,556,558,564,556,563
|
|
571
|
+
568,559,557,559,565,557,564
|
|
572
|
+
569,560,558,560,566,558,565
|
|
573
|
+
570,561,559,561,567,559,566
|
|
574
|
+
571,562,559,562,568,560,567
|
|
575
|
+
572,563,560,563,569,561,568
|
|
576
|
+
573,564,561,564,570,562,569
|
|
577
|
+
574,565,562,565,571,563,570
|
|
578
|
+
575,566,563,566,572,564,571
|
|
579
|
+
576,567,564,567,573,565,572
|
|
580
|
+
577,568,565,568,574,566,573
|
|
581
|
+
578,569,566,569,575,567,574
|
|
582
|
+
579,570,567,570,576,568,575
|
|
583
|
+
580,571,568,571,577,569,576
|
|
584
|
+
581,572,569,572,578,570,577
|
|
585
|
+
582,573,570,573,579,571,578
|
|
586
|
+
583,574,571,574,580,572,579
|
|
587
|
+
584,575,572,575,581,573,580
|
|
588
|
+
585,576,573,576,582,574,581
|
|
589
|
+
586,577,574,577,583,575,582
|
|
590
|
+
587,578,575,578,584,576,583
|
|
591
|
+
588,579,576,579,585,577,584
|
|
592
|
+
589,580,577,580,586,578,585
|
|
593
|
+
590,581,578,581,587,579,586
|
|
594
|
+
591,582,579,582,588,580,587
|
|
595
|
+
592,583,580,583,589,581,588
|
|
596
|
+
593,584,581,584,590,582,589
|
|
597
|
+
594,584,582,585,591,583,590
|
|
598
|
+
595,585,583,586,592,584,591
|
|
599
|
+
596,586,584,587,593,585,592
|
|
600
|
+
597,587,585,588,594,586,593
|
|
601
|
+
598,588,586,589,595,587,594
|
|
602
|
+
599,589,587,590,596,588,595
|
|
603
|
+
600,590,588,591,597,589,596
|
|
604
|
+
601,591,589,592,598,590,597
|
|
605
|
+
602,592,590,593,599,591,598
|
|
606
|
+
603,593,591,594,600,592,599
|
|
607
|
+
604,594,592,595,601,593,600
|
|
608
|
+
605,595,593,596,602,594,601
|
|
609
|
+
606,596,594,597,603,595,602
|
|
610
|
+
607,597,595,598,604,596,603
|
|
611
|
+
608,598,596,599,605,597,604
|
|
612
|
+
609,599,597,600,606,598,605
|
|
613
|
+
610,600,598,601,607,599,606
|
|
614
|
+
611,601,599,602,608,600,607
|
|
615
|
+
612,602,600,603,609,600,608
|
|
616
|
+
613,603,601,604,610,601,609
|
|
617
|
+
614,604,602,605,611,602,610
|
|
618
|
+
615,605,603,606,612,603,611
|
|
619
|
+
616,606,604,607,613,604,612
|
|
620
|
+
617,607,605,608,614,605,613
|
|
621
|
+
618,608,606,609,614,606,614
|
|
622
|
+
619,609,607,610,615,607,615
|
|
623
|
+
620,610,607,610,616,608,616
|
|
624
|
+
621,611,608,611,617,609,617
|
|
625
|
+
622,612,609,612,618,610,618
|
|
626
|
+
623,613,610,613,619,611,619
|
|
627
|
+
624,614,611,614,620,612,620
|
|
628
|
+
625,615,612,615,621,613,621
|
|
629
|
+
626,616,613,616,622,614,622
|
|
630
|
+
627,617,614,617,623,615,623
|
|
631
|
+
628,618,615,618,624,616,624
|
|
632
|
+
629,619,616,619,625,617,625
|
|
633
|
+
630,620,617,620,626,618,626
|
|
634
|
+
631,621,618,621,627,619,627
|
|
635
|
+
632,622,619,622,628,620,628
|
|
636
|
+
633,623,620,623,629,621,629
|
|
637
|
+
634,624,621,624,630,622,630
|
|
638
|
+
635,625,622,625,631,623,631
|
|
639
|
+
636,626,623,626,632,624,632
|
|
640
|
+
637,627,624,627,633,625,633
|
|
641
|
+
638,628,625,628,634,626,634
|
|
642
|
+
639,629,626,629,635,627,635
|
|
643
|
+
640,630,627,630,636,628,636
|
|
644
|
+
641,631,628,631,637,629,637
|
|
645
|
+
642,632,629,632,638,630,638
|
|
646
|
+
643,633,630,633,639,631,639
|
|
647
|
+
644,634,631,634,640,632,640
|
|
648
|
+
645,635,632,635,641,633,641
|
|
649
|
+
646,636,633,636,642,634,642
|
|
650
|
+
647,637,634,637,643,635,643
|
|
651
|
+
648,638,635,638,644,636,644
|
|
652
|
+
649,639,636,639,645,637,645
|
|
653
|
+
650,640,637,640,646,638,646
|
|
654
|
+
651,641,638,641,647,639,647
|
|
655
|
+
652,642,639,642,648,640,648
|
|
656
|
+
653,643,640,643,649,641,649
|
|
657
|
+
654,644,641,644,650,642,650
|
|
658
|
+
655,645,642,645,651,643,651
|
|
659
|
+
656,646,643,646,652,644,652
|
|
660
|
+
657,646,644,647,653,645,653
|
|
661
|
+
658,647,645,648,654,646,654
|
|
662
|
+
659,648,646,649,655,647,655
|
|
663
|
+
660,649,647,650,656,648,656
|
|
664
|
+
661,650,648,651,657,649,657
|
|
665
|
+
662,651,649,652,658,650,658
|
|
666
|
+
663,652,650,653,659,651,659
|
|
667
|
+
664,653,651,654,660,652,660
|
|
668
|
+
665,654,652,655,661,652,661
|
|
669
|
+
666,655,653,656,662,653,662
|
|
670
|
+
667,656,654,657,663,654,663
|
|
671
|
+
668,657,655,658,664,655,664
|
|
672
|
+
669,658,656,659,665,656,665
|
|
673
|
+
670,659,656,660,666,657,666
|
|
674
|
+
671,660,657,661,667,658,667
|
|
675
|
+
672,661,658,662,668,659,668
|
|
676
|
+
673,662,659,663,669,660,669
|
|
677
|
+
674,663,660,664,670,661,670
|
|
678
|
+
675,664,661,665,671,662,671
|
|
679
|
+
676,665,662,666,672,663,672
|
|
680
|
+
677,666,663,667,673,664,673
|
|
681
|
+
678,667,664,668,674,665,674
|
|
682
|
+
679,668,665,669,675,666,675
|
|
683
|
+
680,669,666,670,676,667,676
|
|
684
|
+
681,670,667,671,677,668,676
|
|
685
|
+
682,671,668,672,678,669,677
|
|
686
|
+
683,672,669,673,679,670,678
|
|
687
|
+
684,673,670,674,680,671,679
|
|
688
|
+
685,674,671,674,681,672,680
|
|
689
|
+
686,675,672,675,682,673,681
|
|
690
|
+
687,676,673,676,683,674,682
|
|
691
|
+
688,677,674,677,684,675,683
|
|
692
|
+
689,678,675,678,685,676,684
|
|
693
|
+
690,679,676,679,686,677,685
|
|
694
|
+
691,680,677,680,687,678,686
|
|
695
|
+
692,681,678,681,688,679,687
|
|
696
|
+
693,682,679,682,689,680,688
|
|
697
|
+
694,683,680,683,690,681,689
|
|
698
|
+
695,684,681,684,691,682,690
|
|
699
|
+
696,685,682,685,692,683,691
|
|
700
|
+
697,686,683,686,693,684,692
|
|
701
|
+
698,687,684,687,694,685,693
|
|
702
|
+
699,688,685,688,695,686,694
|
|
703
|
+
700,689,686,689,696,687,695
|
|
704
|
+
701,690,687,690,697,688,696
|
|
705
|
+
702,691,688,691,698,689,697
|
|
706
|
+
703,692,689,692,699,690,698
|
|
707
|
+
704,693,690,693,700,691,699
|
|
708
|
+
705,694,691,694,701,692,700
|
|
709
|
+
706,695,692,695,702,693,701
|
|
710
|
+
707,696,693,696,703,694,702
|
|
711
|
+
708,697,694,697,704,695,703
|
|
712
|
+
709,698,695,698,705,696,704
|
|
713
|
+
710,699,696,699,706,697,705
|
|
714
|
+
711,700,697,700,707,698,706
|
|
715
|
+
712,701,698,701,708,699,707
|
|
716
|
+
713,702,699,702,709,700,708
|
|
717
|
+
714,703,700,703,710,701,709
|
|
718
|
+
715,704,701,704,711,702,710
|
|
719
|
+
716,705,702,705,712,703,711
|
|
720
|
+
717,706,703,706,713,704,712
|
|
721
|
+
718,707,704,707,714,705,713
|
|
722
|
+
719,707,705,708,715,705,714
|
|
723
|
+
720,708,705,709,716,706,715
|
|
724
|
+
721,709,706,710,717,707,716
|
|
725
|
+
722,710,707,711,718,708,717
|
|
726
|
+
723,711,708,712,719,709,718
|
|
727
|
+
724,712,709,713,720,710,719
|
|
728
|
+
725,713,710,714,721,711,720
|
|
729
|
+
726,714,711,715,722,712,721
|
|
730
|
+
727,715,712,716,723,713,722
|
|
731
|
+
728,716,713,717,724,714,723
|
|
732
|
+
729,717,714,718,725,715,724
|
|
733
|
+
730,718,715,719,726,716,725
|
|
734
|
+
731,719,716,720,727,717,726
|
|
735
|
+
732,720,717,721,728,718,727
|
|
736
|
+
733,721,718,722,729,719,728
|
|
737
|
+
734,722,719,723,730,720,729
|
|
738
|
+
735,723,720,724,731,721,730
|
|
739
|
+
736,724,721,725,732,722,731
|
|
740
|
+
737,725,722,726,733,723,732
|
|
741
|
+
738,726,723,727,734,724,733
|
|
742
|
+
739,727,724,728,735,725,734
|
|
743
|
+
740,728,725,729,736,726,735
|
|
744
|
+
741,729,726,730,737,727,736
|
|
745
|
+
742,730,727,731,738,728,737
|
|
746
|
+
743,731,728,732,739,729,738
|
|
747
|
+
744,732,729,733,740,730,739
|
|
748
|
+
745,733,730,734,741,731,740
|
|
749
|
+
746,734,731,735,742,732,741
|
|
750
|
+
747,735,732,736,743,733,742
|
|
751
|
+
748,736,733,737,744,734,743
|
|
752
|
+
749,737,734,738,745,735,744
|
|
753
|
+
750,738,735,738,746,736,745
|
|
754
|
+
751,739,736,739,747,737,746
|
|
755
|
+
752,740,737,740,748,738,747
|
|
756
|
+
753,741,738,741,749,739,748
|
|
757
|
+
754,742,739,742,750,740,749
|
|
758
|
+
755,743,740,743,751,741,750
|
|
759
|
+
756,744,741,744,752,742,751
|
|
760
|
+
757,745,742,745,753,743,752
|
|
761
|
+
758,746,743,746,754,744,753
|
|
762
|
+
759,747,744,747,755,745,754
|
|
763
|
+
760,748,745,748,756,746,755
|
|
764
|
+
761,749,746,749,757,747,756
|
|
765
|
+
762,750,747,750,758,748,757
|
|
766
|
+
763,751,748,751,759,749,758
|
|
767
|
+
764,752,749,752,760,750,759
|
|
768
|
+
765,753,750,753,761,751,760
|
|
769
|
+
766,754,751,754,762,752,761
|
|
770
|
+
767,755,752,755,763,753,762
|
|
771
|
+
768,756,753,756,764,754,763
|
|
772
|
+
769,757,753,757,765,755,764
|
|
773
|
+
770,758,754,758,766,756,765
|
|
774
|
+
771,759,755,759,767,757,766
|
|
775
|
+
772,760,756,760,768,757,767
|
|
776
|
+
773,761,757,761,769,758,768
|
|
777
|
+
774,762,758,762,770,759,769
|
|
778
|
+
775,763,759,763,771,760,770
|
|
779
|
+
776,764,760,764,772,761,771
|
|
780
|
+
777,765,761,765,773,762,772
|
|
781
|
+
778,766,762,766,774,763,773
|
|
782
|
+
779,767,763,767,775,764,774
|
|
783
|
+
780,768,764,768,776,765,775
|
|
784
|
+
781,769,765,769,777,766,776
|
|
785
|
+
782,769,766,770,778,767,777
|
|
786
|
+
783,770,767,771,779,768,778
|
|
787
|
+
784,771,768,772,780,769,779
|
|
788
|
+
785,772,769,773,781,770,780
|
|
789
|
+
786,773,770,774,782,771,781
|
|
790
|
+
787,774,771,775,783,772,782
|
|
791
|
+
788,775,772,776,784,773,783
|
|
792
|
+
789,776,773,777,785,774,784
|
|
793
|
+
790,777,774,778,786,775,785
|
|
794
|
+
791,778,775,779,787,776,786
|
|
795
|
+
792,779,776,780,788,777,787
|
|
796
|
+
793,780,777,781,789,778,788
|
|
797
|
+
794,781,778,782,789,779,789
|
|
798
|
+
795,782,779,783,790,780,790
|
|
799
|
+
796,783,780,784,791,781,791
|
|
800
|
+
797,784,781,785,792,782,792
|
|
801
|
+
798,785,782,786,793,783,793
|
|
802
|
+
799,786,783,787,794,784,794
|
|
803
|
+
800,787,784,788,795,785,795
|
|
804
|
+
801,788,785,789,796,786,796
|
|
805
|
+
802,789,786,790,797,787,797
|
|
806
|
+
803,790,787,791,798,788,798
|
|
807
|
+
804,791,788,792,799,789,799
|
|
808
|
+
805,792,789,793,800,790,800
|
|
809
|
+
806,793,790,794,801,791,801
|
|
810
|
+
807,794,791,795,802,792,802
|
|
811
|
+
808,795,792,796,803,793,803
|
|
812
|
+
809,796,793,797,804,794,804
|
|
813
|
+
810,797,794,798,805,795,805
|
|
814
|
+
811,798,795,799,806,796,806
|
|
815
|
+
812,799,796,800,807,797,807
|
|
816
|
+
813,800,797,801,808,798,808
|
|
817
|
+
814,801,798,802,809,799,809
|
|
818
|
+
815,802,799,802,810,800,810
|
|
819
|
+
816,803,800,803,811,801,811
|
|
820
|
+
817,804,801,804,812,802,812
|
|
821
|
+
818,805,802,805,813,803,813
|
|
822
|
+
819,806,802,806,814,804,814
|
|
823
|
+
820,807,803,807,815,805,815
|
|
824
|
+
821,808,804,808,816,806,816
|
|
825
|
+
822,809,805,809,817,807,817
|
|
826
|
+
823,810,806,810,818,808,818
|
|
827
|
+
824,811,807,811,819,809,819
|
|
828
|
+
825,812,808,812,820,809,820
|
|
829
|
+
826,813,809,813,821,810,821
|
|
830
|
+
827,814,810,814,822,811,822
|
|
831
|
+
828,815,811,815,823,812,823
|
|
832
|
+
829,816,812,816,824,813,824
|
|
833
|
+
830,817,813,817,825,814,825
|
|
834
|
+
831,818,814,818,826,815,826
|
|
835
|
+
832,819,815,819,827,816,826
|
|
836
|
+
833,820,816,820,828,817,827
|
|
837
|
+
834,821,817,821,829,818,828
|
|
838
|
+
835,822,818,822,830,819,829
|
|
839
|
+
836,823,819,823,831,820,830
|
|
840
|
+
837,824,820,824,832,821,831
|
|
841
|
+
838,825,821,825,833,822,832
|
|
842
|
+
839,826,822,826,834,823,833
|
|
843
|
+
840,827,823,827,835,824,834
|
|
844
|
+
841,828,824,828,836,825,835
|
|
845
|
+
842,829,825,829,837,826,836
|
|
846
|
+
843,830,826,830,838,827,837
|
|
847
|
+
844,830,827,831,839,828,838
|
|
848
|
+
845,831,828,832,840,829,839
|
|
849
|
+
846,832,829,833,841,830,840
|
|
850
|
+
847,833,830,834,842,831,841
|
|
851
|
+
848,834,831,835,843,832,842
|
|
852
|
+
849,835,832,836,844,833,843
|
|
853
|
+
850,836,833,837,845,834,844
|
|
854
|
+
851,837,834,838,846,835,845
|
|
855
|
+
852,838,835,839,847,836,846
|
|
856
|
+
853,839,836,840,848,837,847
|
|
857
|
+
854,840,837,841,849,838,848
|
|
858
|
+
855,841,838,842,850,839,849
|
|
859
|
+
856,842,839,843,851,840,850
|
|
860
|
+
857,843,840,844,852,841,851
|
|
861
|
+
858,844,841,845,853,842,852
|
|
862
|
+
859,845,842,846,854,843,853
|
|
863
|
+
860,846,843,847,855,844,854
|
|
864
|
+
861,847,844,848,856,845,855
|
|
865
|
+
862,848,845,849,857,846,856
|
|
866
|
+
863,849,846,850,858,847,857
|
|
867
|
+
864,850,847,851,859,848,858
|
|
868
|
+
865,851,848,852,860,849,859
|
|
869
|
+
866,852,849,853,861,850,860
|
|
870
|
+
867,853,850,854,862,851,861
|
|
871
|
+
868,854,850,855,863,852,862
|
|
872
|
+
869,855,851,856,864,853,863
|
|
873
|
+
870,856,852,857,865,854,864
|
|
874
|
+
871,857,853,858,866,855,865
|
|
875
|
+
872,858,854,859,867,856,866
|
|
876
|
+
873,859,855,860,868,857,867
|
|
877
|
+
874,860,856,861,869,858,868
|
|
878
|
+
875,861,857,862,870,859,869
|
|
879
|
+
876,862,858,863,871,860,870
|
|
880
|
+
877,863,859,864,872,861,871
|
|
881
|
+
878,864,860,865,873,861,872
|
|
882
|
+
879,865,861,866,874,862,873
|
|
883
|
+
880,866,862,866,875,863,874
|
|
884
|
+
881,867,863,867,876,864,875
|
|
885
|
+
882,868,864,868,877,865,876
|
|
886
|
+
883,869,865,869,878,866,877
|
|
887
|
+
884,870,866,870,879,867,878
|
|
888
|
+
885,871,867,871,880,868,879
|
|
889
|
+
886,872,868,872,881,869,880
|
|
890
|
+
887,873,869,873,882,870,881
|
|
891
|
+
888,874,870,874,883,871,882
|
|
892
|
+
889,875,871,875,884,872,883
|
|
893
|
+
890,876,872,876,885,873,884
|
|
894
|
+
891,877,873,877,886,874,885
|
|
895
|
+
892,878,874,878,887,875,886
|
|
896
|
+
893,879,875,879,888,876,887
|
|
897
|
+
894,880,876,880,889,877,888
|
|
898
|
+
895,881,877,881,890,878,889
|
|
899
|
+
896,882,878,882,891,879,890
|
|
900
|
+
897,883,879,883,892,880,891
|
|
901
|
+
898,884,880,884,893,881,892
|
|
902
|
+
899,885,881,885,894,882,893
|
|
903
|
+
900,886,882,886,895,883,894
|
|
904
|
+
901,887,883,887,896,884,895
|
|
905
|
+
902,888,884,888,897,885,896
|
|
906
|
+
903,889,885,889,898,886,897
|
|
907
|
+
904,890,886,890,899,887,898
|
|
908
|
+
905,891,887,891,900,888,899
|
|
909
|
+
906,892,888,892,901,889,900
|
|
910
|
+
907,892,889,893,902,890,901
|
|
911
|
+
908,893,890,894,903,891,902
|
|
912
|
+
909,894,891,895,904,892,903
|
|
913
|
+
910,895,892,896,905,893,904
|
|
914
|
+
911,896,893,897,906,894,905
|
|
915
|
+
912,897,894,898,907,895,906
|
|
916
|
+
913,898,895,899,908,896,907
|
|
917
|
+
914,899,896,900,909,897,908
|
|
918
|
+
915,900,897,901,910,898,909
|
|
919
|
+
916,901,898,902,911,899,910
|
|
920
|
+
917,902,899,903,912,900,911
|
|
921
|
+
918,903,899,904,913,901,912
|
|
922
|
+
919,904,900,905,914,902,913
|
|
923
|
+
920,905,901,906,915,903,914
|
|
924
|
+
921,906,902,907,916,904,915
|
|
925
|
+
922,907,903,908,917,905,916
|
|
926
|
+
923,908,904,909,918,906,917
|
|
927
|
+
924,909,905,910,919,907,918
|
|
928
|
+
925,910,906,911,920,908,919
|
|
929
|
+
926,911,907,912,921,909,920
|
|
930
|
+
927,912,908,913,922,910,921
|
|
931
|
+
928,913,909,914,923,911,922
|
|
932
|
+
929,914,910,915,924,912,923
|
|
933
|
+
930,915,911,916,925,913,924
|
|
934
|
+
931,916,912,917,926,913,925
|
|
935
|
+
932,917,913,918,927,914,926
|
|
936
|
+
933,918,914,919,928,915,927
|
|
937
|
+
934,919,915,920,929,916,928
|
|
938
|
+
935,920,916,921,930,917,929
|
|
939
|
+
936,921,917,922,931,918,930
|
|
940
|
+
937,922,918,923,932,919,931
|
|
941
|
+
938,923,919,924,933,920,932
|
|
942
|
+
939,924,920,925,934,921,933
|
|
943
|
+
940,925,921,926,935,922,934
|
|
944
|
+
941,926,922,927,936,923,935
|
|
945
|
+
942,927,923,928,937,924,936
|
|
946
|
+
943,928,924,929,938,925,937
|
|
947
|
+
944,929,925,930,939,926,938
|
|
948
|
+
945,930,926,931,940,927,939
|
|
949
|
+
946,931,927,931,941,928,940
|
|
950
|
+
947,932,928,932,942,929,941
|
|
951
|
+
948,933,929,933,943,930,942
|
|
952
|
+
949,934,930,934,944,931,943
|
|
953
|
+
950,935,931,935,945,932,944
|
|
954
|
+
951,936,932,936,946,933,945
|
|
955
|
+
952,937,933,937,947,934,946
|
|
956
|
+
953,938,934,938,948,935,947
|
|
957
|
+
954,939,935,939,949,936,948
|
|
958
|
+
955,940,936,940,950,937,949
|
|
959
|
+
956,941,937,941,951,938,950
|
|
960
|
+
957,942,938,942,952,939,951
|
|
961
|
+
958,943,939,943,953,940,952
|
|
962
|
+
959,944,940,944,954,941,953
|
|
963
|
+
960,945,941,945,955,942,954
|
|
964
|
+
961,946,942,946,956,943,955
|
|
965
|
+
962,947,943,947,957,944,956
|
|
966
|
+
963,948,944,948,958,945,957
|
|
967
|
+
964,949,945,949,959,946,958
|
|
968
|
+
965,950,946,950,960,947,959
|
|
969
|
+
966,951,947,951,961,948,960
|
|
970
|
+
967,952,948,952,962,949,961
|
|
971
|
+
968,953,948,953,963,950,962
|
|
972
|
+
969,953,949,954,964,951,963
|
|
973
|
+
970,954,950,955,965,952,964
|
|
974
|
+
971,955,951,956,965,953,965
|
|
975
|
+
972,956,952,957,966,954,966
|
|
976
|
+
973,957,953,958,967,955,967
|
|
977
|
+
974,958,954,959,968,956,968
|
|
978
|
+
975,959,955,960,969,957,969
|
|
979
|
+
976,960,956,961,970,958,970
|
|
980
|
+
977,961,957,962,971,959,971
|
|
981
|
+
978,962,958,963,972,960,972
|
|
982
|
+
979,963,959,964,973,961,973
|
|
983
|
+
980,964,960,965,974,962,974
|
|
984
|
+
981,965,961,966,975,963,975
|
|
985
|
+
982,966,962,967,976,964,976
|
|
986
|
+
983,967,963,968,977,965,976
|
|
987
|
+
984,968,964,969,978,966,977
|
|
988
|
+
985,969,965,970,979,966,978
|
|
989
|
+
986,970,966,971,980,967,979
|
|
990
|
+
987,971,967,972,981,968,980
|
|
991
|
+
988,972,968,973,982,969,981
|
|
992
|
+
989,973,969,974,983,970,982
|
|
993
|
+
990,974,970,975,984,971,983
|
|
994
|
+
991,975,971,976,985,972,984
|
|
995
|
+
992,976,972,977,986,973,985
|
|
996
|
+
993,977,973,978,987,974,986
|
|
997
|
+
994,978,974,979,988,975,987
|
|
998
|
+
995,979,975,980,989,976,988
|
|
999
|
+
996,980,976,981,990,977,989
|
|
1000
|
+
997,981,977,982,991,978,990
|
|
1001
|
+
998,982,978,983,992,979,991
|
|
1002
|
+
999,983,979,984,993,980,992
|
|
1003
|
+
1000,984,980,985,994,981,993
|
|
1004
|
+
1001,985,981,986,995,982,994
|
|
1005
|
+
1002,986,982,987,996,983,995
|
|
1006
|
+
1003,987,983,988,997,984,996
|
|
1007
|
+
1004,988,984,989,998,985,997
|
|
1008
|
+
1005,989,985,990,999,986,998
|
|
1009
|
+
1006,990,986,991,1000,987,999
|
|
1010
|
+
1007,991,987,992,1001,988,1000
|
|
1011
|
+
1008,992,988,993,1002,989,1001
|
|
1012
|
+
1009,993,989,994,1003,990,1002
|
|
1013
|
+
1010,994,990,995,1004,991,1003
|
|
1014
|
+
1011,995,991,995,1005,992,1004
|
|
1015
|
+
1012,996,992,996,1006,993,1005
|
|
1016
|
+
1013,997,993,997,1007,994,1006
|
|
1017
|
+
1014,998,994,998,1008,995,1007
|
|
1018
|
+
1015,999,995,999,1009,996,1008
|
|
1019
|
+
1016,1000,996,1000,1010,997,1009
|
|
1020
|
+
1017,1001,996,1001,1011,998,1010
|
|
1021
|
+
1018,1002,997,1002,1012,999,1011
|
|
1022
|
+
1019,1003,998,1003,1013,1000,1012
|
|
1023
|
+
1020,1004,999,1004,1014,1001,1013
|
|
1024
|
+
1021,1005,1000,1005,1015,1002,1014
|
|
1025
|
+
1022,1006,1001,1006,1016,1003,1015
|
|
1026
|
+
1023,1007,1002,1007,1017,1004,1016
|
|
1027
|
+
1024,1008,1003,1008,1018,1005,1017
|
|
1028
|
+
1025,1009,1004,1009,1019,1006,1018
|
|
1029
|
+
1026,1010,1005,1010,1020,1007,1019
|
|
1030
|
+
1027,1011,1006,1011,1021,1008,1020
|
|
1031
|
+
1028,1012,1007,1012,1022,1009,1021
|
|
1032
|
+
1029,1013,1008,1013,1023,1010,1022
|
|
1033
|
+
1030,1014,1009,1014,1024,1011,1023
|
|
1034
|
+
1031,1015,1010,1015,1025,1012,1024
|
|
1035
|
+
1032,1015,1011,1016,1026,1013,1025
|
|
1036
|
+
1033,1016,1012,1017,1027,1014,1026
|
|
1037
|
+
1034,1017,1013,1018,1028,1015,1027
|
|
1038
|
+
1035,1018,1014,1019,1029,1016,1028
|
|
1039
|
+
1036,1019,1015,1020,1030,1017,1029
|
|
1040
|
+
1037,1020,1016,1021,1031,1018,1030
|
|
1041
|
+
1038,1021,1017,1022,1032,1018,1031
|
|
1042
|
+
1039,1022,1018,1023,1033,1019,1032
|
|
1043
|
+
1040,1023,1019,1024,1034,1020,1033
|
|
1044
|
+
1041,1024,1020,1025,1035,1021,1034
|
|
1045
|
+
1042,1025,1021,1026,1036,1022,1035
|
|
1046
|
+
1043,1026,1022,1027,1037,1023,1036
|
|
1047
|
+
1044,1027,1023,1028,1038,1024,1037
|
|
1048
|
+
1045,1028,1024,1029,1039,1025,1038
|
|
1049
|
+
1046,1029,1025,1030,1040,1026,1039
|
|
1050
|
+
1047,1030,1026,1031,1041,1027,1040
|
|
1051
|
+
1048,1031,1027,1032,1042,1028,1041
|
|
1052
|
+
1049,1032,1028,1033,1043,1029,1042
|
|
1053
|
+
1050,1033,1029,1034,1044,1030,1043
|
|
1054
|
+
1051,1034,1030,1035,1045,1031,1044
|
|
1055
|
+
1052,1035,1031,1036,1046,1032,1045
|
|
1056
|
+
1053,1036,1032,1037,1047,1033,1046
|
|
1057
|
+
1054,1037,1033,1038,1048,1034,1047
|
|
1058
|
+
1055,1038,1034,1039,1049,1035,1048
|
|
1059
|
+
1056,1039,1035,1040,1050,1036,1049
|
|
1060
|
+
1057,1040,1036,1041,1051,1037,1050
|
|
1061
|
+
1058,1041,1037,1042,1052,1038,1051
|
|
1062
|
+
1059,1042,1038,1043,1053,1039,1052
|
|
1063
|
+
1060,1043,1039,1044,1054,1040,1053
|
|
1064
|
+
1061,1044,1040,1045,1055,1041,1054
|
|
1065
|
+
1062,1045,1041,1046,1056,1042,1055
|
|
1066
|
+
1063,1046,1042,1047,1057,1043,1056
|
|
1067
|
+
1064,1047,1043,1048,1058,1044,1057
|
|
1068
|
+
1065,1048,1044,1049,1059,1045,1058
|
|
1069
|
+
1066,1049,1045,1050,1060,1046,1059
|
|
1070
|
+
1067,1050,1045,1051,1061,1047,1060
|
|
1071
|
+
1068,1051,1046,1052,1062,1048,1061
|
|
1072
|
+
1069,1052,1047,1053,1063,1049,1062
|
|
1073
|
+
1070,1053,1048,1054,1064,1050,1063
|
|
1074
|
+
1071,1054,1049,1055,1065,1051,1064
|
|
1075
|
+
1072,1055,1050,1056,1066,1052,1065
|
|
1076
|
+
1073,1056,1051,1057,1067,1053,1066
|
|
1077
|
+
1074,1057,1052,1058,1068,1054,1067
|
|
1078
|
+
1075,1058,1053,1059,1069,1055,1068
|
|
1079
|
+
1076,1059,1054,1059,1070,1056,1069
|
|
1080
|
+
1077,1060,1055,1060,1071,1057,1070
|
|
1081
|
+
1078,1061,1056,1061,1072,1058,1071
|
|
1082
|
+
1079,1062,1057,1062,1073,1059,1072
|
|
1083
|
+
1080,1063,1058,1063,1074,1060,1073
|
|
1084
|
+
1081,1064,1059,1064,1075,1061,1074
|
|
1085
|
+
1082,1065,1060,1065,1076,1062,1075
|
|
1086
|
+
1083,1066,1061,1066,1077,1063,1076
|
|
1087
|
+
1084,1067,1062,1067,1078,1064,1077
|
|
1088
|
+
1085,1068,1063,1068,1079,1065,1078
|
|
1089
|
+
1086,1069,1064,1069,1080,1066,1079
|
|
1090
|
+
1087,1070,1065,1070,1081,1067,1080
|
|
1091
|
+
1088,1071,1066,1071,1082,1068,1081
|
|
1092
|
+
1089,1072,1067,1072,1083,1069,1082
|
|
1093
|
+
1090,1073,1068,1073,1084,1070,1083
|
|
1094
|
+
1091,1074,1069,1074,1085,1070,1084
|
|
1095
|
+
1092,1075,1070,1075,1086,1071,1085
|
|
1096
|
+
1093,1076,1071,1076,1087,1072,1086
|
|
1097
|
+
1094,1076,1072,1077,1088,1073,1087
|
|
1098
|
+
1095,1077,1073,1078,1089,1074,1088
|
|
1099
|
+
1096,1078,1074,1079,1090,1075,1089
|
|
1100
|
+
1097,1079,1075,1080,1091,1076,1090
|
|
1101
|
+
1098,1080,1076,1081,1092,1077,1091
|
|
1102
|
+
1099,1081,1077,1082,1093,1078,1092
|
|
1103
|
+
1100,1082,1078,1083,1094,1079,1093
|
|
1104
|
+
1101,1083,1079,1084,1095,1080,1094
|
|
1105
|
+
1102,1084,1080,1085,1096,1081,1095
|
|
1106
|
+
1103,1085,1081,1086,1097,1082,1096
|
|
1107
|
+
1104,1086,1082,1087,1098,1083,1097
|
|
1108
|
+
1105,1087,1083,1088,1099,1084,1098
|
|
1109
|
+
1106,1088,1084,1089,1100,1085,1099
|
|
1110
|
+
1107,1089,1085,1090,1101,1086,1100
|
|
1111
|
+
1108,1090,1086,1091,1102,1087,1101
|
|
1112
|
+
1109,1091,1087,1092,1103,1088,1102
|
|
1113
|
+
1110,1092,1088,1093,1104,1089,1103
|
|
1114
|
+
1111,1093,1089,1094,1105,1090,1104
|
|
1115
|
+
1112,1094,1090,1095,1106,1091,1105
|
|
1116
|
+
1113,1095,1091,1096,1107,1092,1106
|
|
1117
|
+
1114,1096,1092,1097,1108,1093,1107
|
|
1118
|
+
1115,1097,1093,1098,1109,1094,1108
|
|
1119
|
+
1116,1098,1093,1099,1110,1095,1109
|
|
1120
|
+
1117,1099,1094,1100,1111,1096,1110
|
|
1121
|
+
1118,1100,1095,1101,1112,1097,1111
|
|
1122
|
+
1119,1101,1096,1102,1113,1098,1112
|
|
1123
|
+
1120,1102,1097,1103,1114,1099,1113
|
|
1124
|
+
1121,1103,1098,1104,1115,1100,1114
|
|
1125
|
+
1122,1104,1099,1105,1116,1101,1115
|
|
1126
|
+
1123,1105,1100,1106,1117,1102,1116
|
|
1127
|
+
1124,1106,1101,1107,1118,1103,1117
|
|
1128
|
+
1125,1107,1102,1108,1119,1104,1118
|
|
1129
|
+
1126,1108,1103,1109,1120,1105,1119
|
|
1130
|
+
1127,1109,1104,1110,1121,1106,1120
|
|
1131
|
+
1128,1110,1105,1111,1122,1107,1121
|
|
1132
|
+
1129,1111,1106,1112,1123,1108,1122
|
|
1133
|
+
1130,1112,1107,1113,1124,1109,1123
|
|
1134
|
+
1131,1113,1108,1114,1125,1110,1124
|
|
1135
|
+
1132,1114,1109,1115,1126,1111,1125
|
|
1136
|
+
1133,1115,1110,1116,1127,1112,1126
|
|
1137
|
+
1134,1116,1111,1117,1128,1113,1126
|
|
1138
|
+
1135,1117,1112,1118,1129,1114,1127
|
|
1139
|
+
1136,1118,1113,1119,1130,1115,1128
|
|
1140
|
+
1137,1119,1114,1120,1131,1116,1129
|
|
1141
|
+
1138,1120,1115,1121,1132,1117,1130
|
|
1142
|
+
1139,1121,1116,1122,1133,1118,1131
|
|
1143
|
+
1140,1122,1117,1123,1134,1119,1132
|
|
1144
|
+
1141,1123,1118,1123,1135,1120,1133
|
|
1145
|
+
1142,1124,1119,1124,1136,1121,1134
|
|
1146
|
+
1143,1125,1120,1125,1137,1122,1135
|
|
1147
|
+
1144,1126,1121,1126,1138,1122,1136
|
|
1148
|
+
1145,1127,1122,1127,1139,1123,1137
|
|
1149
|
+
1146,1128,1123,1128,1140,1124,1138
|
|
1150
|
+
1147,1129,1124,1129,1140,1125,1139
|
|
1151
|
+
1148,1130,1125,1130,1141,1126,1140
|
|
1152
|
+
1149,1131,1126,1131,1142,1127,1141
|
|
1153
|
+
1150,1132,1127,1132,1143,1128,1142
|
|
1154
|
+
1151,1133,1128,1133,1144,1129,1143
|
|
1155
|
+
1152,1134,1129,1134,1145,1130,1144
|
|
1156
|
+
1153,1135,1130,1135,1146,1131,1145
|
|
1157
|
+
1154,1136,1131,1136,1147,1132,1146
|
|
1158
|
+
1155,1137,1132,1137,1148,1133,1147
|
|
1159
|
+
1156,1138,1133,1138,1149,1134,1148
|
|
1160
|
+
1157,1138,1134,1139,1150,1135,1149
|
|
1161
|
+
1158,1139,1135,1140,1151,1136,1150
|
|
1162
|
+
1159,1140,1136,1141,1152,1137,1151
|
|
1163
|
+
1160,1141,1137,1142,1153,1138,1152
|
|
1164
|
+
1161,1142,1138,1143,1154,1139,1153
|
|
1165
|
+
1162,1143,1139,1144,1155,1140,1154
|
|
1166
|
+
1163,1144,1140,1145,1156,1141,1155
|
|
1167
|
+
1164,1145,1141,1146,1157,1142,1156
|
|
1168
|
+
1165,1146,1142,1147,1158,1143,1157
|
|
1169
|
+
1166,1147,1142,1148,1159,1144,1158
|
|
1170
|
+
1167,1148,1143,1149,1160,1145,1159
|
|
1171
|
+
1168,1149,1144,1150,1161,1146,1160
|
|
1172
|
+
1169,1150,1145,1151,1162,1147,1161
|
|
1173
|
+
1170,1151,1146,1152,1163,1148,1162
|
|
1174
|
+
1171,1152,1147,1153,1164,1149,1163
|
|
1175
|
+
1172,1153,1148,1154,1165,1150,1164
|
|
1176
|
+
1173,1154,1149,1155,1166,1151,1165
|
|
1177
|
+
1174,1155,1150,1156,1167,1152,1166
|
|
1178
|
+
1175,1156,1151,1157,1168,1153,1167
|
|
1179
|
+
1176,1157,1152,1158,1169,1154,1168
|
|
1180
|
+
1177,1158,1153,1159,1170,1155,1169
|
|
1181
|
+
1178,1159,1154,1160,1171,1156,1170
|
|
1182
|
+
1179,1160,1155,1161,1172,1157,1171
|
|
1183
|
+
1180,1161,1156,1162,1173,1158,1172
|
|
1184
|
+
1181,1162,1157,1163,1174,1159,1173
|
|
1185
|
+
1182,1163,1158,1164,1175,1160,1174
|
|
1186
|
+
1183,1164,1159,1165,1176,1161,1175
|
|
1187
|
+
1184,1165,1160,1166,1177,1162,1176
|
|
1188
|
+
1185,1166,1161,1167,1178,1163,1177
|
|
1189
|
+
1186,1167,1162,1168,1179,1164,1178
|
|
1190
|
+
1187,1168,1163,1169,1180,1165,1179
|
|
1191
|
+
1188,1169,1164,1170,1181,1166,1180
|
|
1192
|
+
1189,1170,1165,1171,1182,1167,1181
|
|
1193
|
+
1190,1171,1166,1172,1183,1168,1182
|
|
1194
|
+
1191,1172,1167,1173,1184,1169,1183
|
|
1195
|
+
1192,1173,1168,1174,1185,1170,1184
|
|
1196
|
+
1193,1174,1169,1175,1186,1171,1185
|
|
1197
|
+
1194,1175,1170,1176,1187,1172,1186
|
|
1198
|
+
1195,1176,1171,1177,1188,1173,1187
|
|
1199
|
+
1196,1177,1172,1178,1189,1174,1188
|
|
1200
|
+
1197,1178,1173,1179,1190,1174,1189
|
|
1201
|
+
1198,1179,1174,1180,1191,1175,1190
|
|
1202
|
+
1199,1180,1175,1181,1192,1176,1191
|
|
1203
|
+
1200,1181,1176,1182,1193,1177,1192
|
|
1204
|
+
1201,1182,1177,1183,1194,1178,1193
|
|
1205
|
+
1202,1183,1178,1184,1195,1179,1194
|
|
1206
|
+
1203,1184,1179,1185,1196,1180,1195
|
|
1207
|
+
1204,1185,1180,1186,1197,1181,1196
|
|
1208
|
+
1205,1186,1181,1187,1198,1182,1197
|
|
1209
|
+
1206,1187,1182,1187,1199,1183,1198
|
|
1210
|
+
1207,1188,1183,1188,1200,1184,1199
|
|
1211
|
+
1208,1189,1184,1189,1201,1185,1200
|
|
1212
|
+
1209,1190,1185,1190,1202,1186,1201
|
|
1213
|
+
1210,1191,1186,1191,1203,1187,1202
|
|
1214
|
+
1211,1192,1187,1192,1204,1188,1203
|
|
1215
|
+
1212,1193,1188,1193,1205,1189,1204
|
|
1216
|
+
1213,1194,1189,1194,1206,1190,1205
|
|
1217
|
+
1214,1195,1190,1195,1207,1191,1206
|
|
1218
|
+
1215,1196,1190,1196,1208,1192,1207
|
|
1219
|
+
1216,1197,1191,1197,1209,1193,1208
|
|
1220
|
+
1217,1198,1192,1198,1210,1194,1209
|
|
1221
|
+
1218,1199,1193,1199,1211,1195,1210
|
|
1222
|
+
1219,1199,1194,1200,1212,1196,1211
|
|
1223
|
+
1220,1200,1195,1201,1213,1197,1212
|
|
1224
|
+
1221,1201,1196,1202,1214,1198,1213
|
|
1225
|
+
1222,1202,1197,1203,1215,1199,1214
|
|
1226
|
+
1223,1203,1198,1204,1216,1200,1215
|
|
1227
|
+
1224,1204,1199,1205,1217,1201,1216
|
|
1228
|
+
1225,1205,1200,1206,1218,1202,1217
|
|
1229
|
+
1226,1206,1201,1207,1219,1203,1218
|
|
1230
|
+
1227,1207,1202,1208,1220,1204,1219
|
|
1231
|
+
1228,1208,1203,1209,1221,1205,1220
|
|
1232
|
+
1229,1209,1204,1210,1222,1206,1221
|
|
1233
|
+
1230,1210,1205,1211,1223,1207,1222
|
|
1234
|
+
1231,1211,1206,1212,1224,1208,1223
|
|
1235
|
+
1232,1212,1207,1213,1225,1209,1224
|
|
1236
|
+
1233,1213,1208,1214,1226,1210,1225
|
|
1237
|
+
1234,1214,1209,1215,1227,1211,1226
|
|
1238
|
+
1235,1215,1210,1216,1228,1212,1227
|
|
1239
|
+
1236,1216,1211,1217,1229,1213,1228
|
|
1240
|
+
1237,1217,1212,1218,1230,1214,1229
|
|
1241
|
+
1238,1218,1213,1219,1231,1215,1230
|
|
1242
|
+
1239,1219,1214,1220,1232,1216,1231
|
|
1243
|
+
1240,1220,1215,1221,1233,1217,1232
|
|
1244
|
+
1241,1221,1216,1222,1234,1218,1233
|
|
1245
|
+
1242,1222,1217,1223,1235,1219,1234
|
|
1246
|
+
1243,1223,1218,1224,1236,1220,1235
|
|
1247
|
+
1244,1224,1219,1225,1237,1221,1236
|
|
1248
|
+
1245,1225,1220,1226,1238,1222,1237
|
|
1249
|
+
1246,1226,1221,1227,1239,1223,1238
|
|
1250
|
+
1247,1227,1222,1228,1240,1224,1239
|
|
1251
|
+
1248,1228,1223,1229,1241,1225,1240
|
|
1252
|
+
1249,1229,1224,1230,1242,1226,1241
|
|
1253
|
+
1250,1230,1225,1231,1243,1227,1242
|
|
1254
|
+
1251,1231,1226,1232,1244,1227,1243
|
|
1255
|
+
1252,1232,1227,1233,1245,1228,1244
|
|
1256
|
+
1253,1233,1228,1234,1246,1229,1245
|
|
1257
|
+
1254,1234,1229,1235,1247,1230,1246
|
|
1258
|
+
1255,1235,1230,1236,1248,1231,1247
|
|
1259
|
+
1256,1236,1231,1237,1249,1232,1248
|
|
1260
|
+
1257,1237,1232,1238,1250,1233,1249
|
|
1261
|
+
1258,1238,1233,1239,1251,1234,1250
|
|
1262
|
+
1259,1239,1234,1240,1252,1235,1251
|
|
1263
|
+
1260,1240,1235,1241,1253,1236,1252
|
|
1264
|
+
1261,1241,1236,1242,1254,1237,1253
|
|
1265
|
+
1262,1242,1237,1243,1255,1238,1254
|
|
1266
|
+
1263,1243,1238,1244,1256,1239,1255
|
|
1267
|
+
1264,1244,1239,1245,1257,1240,1256
|
|
1268
|
+
1265,1245,1239,1246,1258,1241,1257
|
|
1269
|
+
1266,1246,1240,1247,1259,1242,1258
|
|
1270
|
+
1267,1247,1241,1248,1260,1243,1259
|
|
1271
|
+
1268,1248,1242,1249,1261,1244,1260
|
|
1272
|
+
1269,1249,1243,1250,1262,1245,1261
|
|
1273
|
+
1270,1250,1244,1251,1263,1246,1262
|
|
1274
|
+
1271,1251,1245,1252,1264,1247,1263
|
|
1275
|
+
1272,1252,1246,1252,1265,1248,1264
|
|
1276
|
+
1273,1253,1247,1253,1266,1249,1265
|
|
1277
|
+
1274,1254,1248,1254,1267,1250,1266
|
|
1278
|
+
1275,1255,1249,1255,1268,1251,1267
|
|
1279
|
+
1276,1256,1250,1256,1269,1252,1268
|
|
1280
|
+
1277,1257,1251,1257,1270,1253,1269
|
|
1281
|
+
1278,1258,1252,1258,1271,1254,1270
|
|
1282
|
+
1279,1259,1253,1259,1272,1255,1271
|
|
1283
|
+
1280,1260,1254,1260,1273,1256,1272
|
|
1284
|
+
1281,1261,1255,1261,1274,1257,1273
|
|
1285
|
+
1282,1261,1256,1262,1275,1258,1274
|
|
1286
|
+
1283,1262,1257,1263,1276,1259,1275
|
|
1287
|
+
1284,1263,1258,1264,1277,1260,1276
|
|
1288
|
+
1285,1264,1259,1265,1278,1261,1276
|
|
1289
|
+
1286,1265,1260,1266,1279,1262,1277
|
|
1290
|
+
1287,1266,1261,1267,1280,1263,1278
|
|
1291
|
+
1288,1267,1262,1268,1281,1264,1279
|
|
1292
|
+
1289,1268,1263,1269,1282,1265,1280
|
|
1293
|
+
1290,1269,1264,1270,1283,1266,1281
|
|
1294
|
+
1291,1270,1265,1271,1284,1267,1282
|
|
1295
|
+
1292,1271,1266,1272,1285,1268,1283
|
|
1296
|
+
1293,1272,1267,1273,1286,1269,1284
|
|
1297
|
+
1294,1273,1268,1274,1287,1270,1285
|
|
1298
|
+
1295,1274,1269,1275,1288,1271,1286
|
|
1299
|
+
1296,1275,1270,1276,1289,1272,1287
|
|
1300
|
+
1297,1276,1271,1277,1290,1273,1288
|
|
1301
|
+
1298,1277,1272,1278,1291,1274,1289
|
|
1302
|
+
1299,1278,1273,1279,1292,1275,1290
|
|
1303
|
+
1300,1279,1274,1280,1293,1276,1291
|
|
1304
|
+
1301,1280,1275,1281,1294,1277,1292
|
|
1305
|
+
1302,1281,1276,1282,1295,1278,1293
|
|
1306
|
+
1303,1282,1277,1283,1296,1279,1294
|
|
1307
|
+
1304,1283,1278,1284,1297,1279,1295
|
|
1308
|
+
1305,1284,1279,1285,1298,1280,1296
|
|
1309
|
+
1306,1285,1280,1286,1299,1281,1297
|
|
1310
|
+
1307,1286,1281,1287,1300,1282,1298
|
|
1311
|
+
1308,1287,1282,1288,1301,1283,1299
|
|
1312
|
+
1309,1288,1283,1289,1302,1284,1300
|
|
1313
|
+
1310,1289,1284,1290,1303,1285,1301
|
|
1314
|
+
1311,1290,1285,1291,1304,1286,1302
|
|
1315
|
+
1312,1291,1286,1292,1305,1287,1303
|
|
1316
|
+
1313,1292,1287,1293,1306,1288,1304
|
|
1317
|
+
1314,1293,1288,1294,1307,1289,1305
|
|
1318
|
+
1315,1294,1288,1295,1308,1290,1306
|
|
1319
|
+
1316,1295,1289,1296,1309,1291,1307
|
|
1320
|
+
1317,1296,1290,1297,1310,1292,1308
|
|
1321
|
+
1318,1297,1291,1298,1311,1293,1309
|
|
1322
|
+
1319,1298,1292,1299,1312,1294,1310
|
|
1323
|
+
1320,1299,1293,1300,1313,1295,1311
|
|
1324
|
+
1321,1300,1294,1301,1314,1296,1312
|
|
1325
|
+
1322,1301,1295,1302,1315,1297,1313
|
|
1326
|
+
1323,1302,1296,1303,1316,1298,1314
|
|
1327
|
+
1324,1303,1297,1304,1316,1299,1315
|
|
1328
|
+
1325,1304,1298,1305,1317,1300,1316
|
|
1329
|
+
1326,1305,1299,1306,1318,1301,1317
|
|
1330
|
+
1327,1306,1300,1307,1319,1302,1318
|
|
1331
|
+
1328,1307,1301,1308,1320,1303,1319
|
|
1332
|
+
1329,1308,1302,1309,1321,1304,1320
|
|
1333
|
+
1330,1309,1303,1310,1322,1305,1321
|
|
1334
|
+
1331,1310,1304,1311,1323,1306,1322
|
|
1335
|
+
1332,1311,1305,1312,1324,1307,1323
|
|
1336
|
+
1333,1312,1306,1313,1325,1308,1324
|
|
1337
|
+
1334,1313,1307,1314,1326,1309,1325
|
|
1338
|
+
1335,1314,1308,1315,1327,1310,1326
|
|
1339
|
+
1336,1315,1309,1316,1328,1311,1327
|
|
1340
|
+
1337,1316,1310,1316,1329,1312,1328
|
|
1341
|
+
1338,1317,1311,1317,1330,1313,1329
|
|
1342
|
+
1339,1318,1312,1318,1331,1314,1330
|
|
1343
|
+
1340,1319,1313,1319,1332,1315,1331
|
|
1344
|
+
1341,1320,1314,1320,1333,1316,1332
|
|
1345
|
+
1342,1321,1315,1321,1334,1317,1333
|
|
1346
|
+
1343,1322,1316,1322,1335,1318,1334
|
|
1347
|
+
1344,1322,1317,1323,1336,1319,1335
|
|
1348
|
+
1345,1323,1318,1324,1337,1320,1336
|
|
1349
|
+
1346,1324,1319,1325,1338,1321,1337
|
|
1350
|
+
1347,1325,1320,1326,1339,1322,1338
|
|
1351
|
+
1348,1326,1321,1327,1340,1323,1339
|
|
1352
|
+
1349,1327,1322,1328,1341,1324,1340
|
|
1353
|
+
1350,1328,1323,1329,1342,1325,1341
|
|
1354
|
+
1351,1329,1324,1330,1343,1326,1342
|
|
1355
|
+
1352,1330,1325,1331,1344,1327,1343
|
|
1356
|
+
1353,1331,1326,1332,1345,1328,1344
|
|
1357
|
+
1354,1332,1327,1333,1346,1329,1345
|
|
1358
|
+
1355,1333,1328,1334,1347,1330,1346
|
|
1359
|
+
1356,1334,1329,1335,1348,1331,1347
|
|
1360
|
+
1357,1335,1330,1336,1349,1331,1348
|
|
1361
|
+
1358,1336,1331,1337,1350,1332,1349
|
|
1362
|
+
1359,1337,1332,1338,1351,1333,1350
|
|
1363
|
+
1360,1338,1333,1339,1352,1334,1351
|
|
1364
|
+
1361,1339,1334,1340,1353,1335,1352
|
|
1365
|
+
1362,1340,1335,1341,1354,1336,1353
|
|
1366
|
+
1363,1341,1336,1342,1355,1337,1354
|
|
1367
|
+
1364,1342,1336,1343,1356,1338,1355
|
|
1368
|
+
1365,1343,1337,1344,1357,1339,1356
|
|
1369
|
+
1366,1344,1338,1345,1358,1340,1357
|
|
1370
|
+
1367,1345,1339,1346,1359,1341,1358
|
|
1371
|
+
1368,1346,1340,1347,1360,1342,1359
|
|
1372
|
+
1369,1347,1341,1348,1361,1343,1360
|
|
1373
|
+
1370,1348,1342,1349,1362,1344,1361
|
|
1374
|
+
1371,1349,1343,1350,1363,1345,1362
|
|
1375
|
+
1372,1350,1344,1351,1364,1346,1363
|
|
1376
|
+
1373,1351,1345,1352,1365,1347,1364
|
|
1377
|
+
1374,1352,1346,1353,1366,1348,1365
|
|
1378
|
+
1375,1353,1347,1354,1367,1349,1366
|
|
1379
|
+
1376,1354,1348,1355,1368,1350,1367
|
|
1380
|
+
1377,1355,1349,1356,1369,1351,1368
|
|
1381
|
+
1378,1356,1350,1357,1370,1352,1369
|
|
1382
|
+
1379,1357,1351,1358,1371,1353,1370
|
|
1383
|
+
1380,1358,1352,1359,1372,1354,1371
|
|
1384
|
+
1381,1359,1353,1360,1373,1355,1372
|
|
1385
|
+
1382,1360,1354,1361,1374,1356,1373
|
|
1386
|
+
1383,1361,1355,1362,1375,1357,1374
|
|
1387
|
+
1384,1362,1356,1363,1376,1358,1375
|
|
1388
|
+
1385,1363,1357,1364,1377,1359,1376
|
|
1389
|
+
1386,1364,1358,1365,1378,1360,1377
|
|
1390
|
+
1387,1365,1359,1366,1379,1361,1378
|
|
1391
|
+
1388,1366,1360,1367,1380,1362,1379
|
|
1392
|
+
1389,1367,1361,1368,1381,1363,1380
|
|
1393
|
+
1390,1368,1362,1369,1382,1364,1381
|
|
1394
|
+
1391,1369,1363,1370,1383,1365,1382
|
|
1395
|
+
1392,1370,1364,1371,1384,1366,1383
|
|
1396
|
+
1393,1371,1365,1372,1385,1367,1384
|
|
1397
|
+
1394,1372,1366,1373,1386,1368,1385
|
|
1398
|
+
1395,1373,1367,1374,1387,1369,1386
|
|
1399
|
+
1396,1374,1368,1375,1388,1370,1387
|
|
1400
|
+
1397,1375,1369,1376,1389,1371,1388
|
|
1401
|
+
1398,1376,1370,1377,1390,1372,1389
|
|
1402
|
+
1399,1377,1371,1378,1391,1373,1390
|
|
1403
|
+
1400,1378,1372,1379,1392,1374,1391
|
|
1404
|
+
1401,1379,1373,1380,1393,1375,1392
|
|
1405
|
+
1402,1380,1374,1380,1394,1376,1393
|
|
1406
|
+
1403,1381,1375,1381,1395,1377,1394
|
|
1407
|
+
1404,1382,1376,1382,1396,1378,1395
|
|
1408
|
+
1405,1383,1377,1383,1397,1379,1396
|
|
1409
|
+
1406,1384,1378,1384,1398,1380,1397
|
|
1410
|
+
1407,1384,1379,1385,1399,1381,1398
|
|
1411
|
+
1408,1385,1380,1386,1400,1382,1399
|
|
1412
|
+
1409,1386,1381,1387,1401,1383,1400
|
|
1413
|
+
1410,1387,1382,1388,1402,1383,1401
|
|
1414
|
+
1411,1388,1383,1389,1403,1384,1402
|
|
1415
|
+
1412,1389,1384,1390,1404,1385,1403
|
|
1416
|
+
1413,1390,1385,1391,1405,1386,1404
|
|
1417
|
+
1414,1391,1385,1392,1406,1387,1405
|
|
1418
|
+
1415,1392,1386,1393,1407,1388,1406
|
|
1419
|
+
1416,1393,1387,1394,1408,1389,1407
|
|
1420
|
+
1417,1394,1388,1395,1409,1390,1408
|
|
1421
|
+
1418,1395,1389,1396,1410,1391,1409
|
|
1422
|
+
1419,1396,1390,1397,1411,1392,1410
|
|
1423
|
+
1420,1397,1391,1398,1412,1393,1411
|
|
1424
|
+
1421,1398,1392,1399,1413,1394,1412
|
|
1425
|
+
1422,1399,1393,1400,1414,1395,1413
|
|
1426
|
+
1423,1400,1394,1401,1415,1396,1414
|
|
1427
|
+
1424,1401,1395,1402,1416,1397,1415
|
|
1428
|
+
1425,1402,1396,1403,1417,1398,1416
|
|
1429
|
+
1426,1403,1397,1404,1418,1399,1417
|
|
1430
|
+
1427,1404,1398,1405,1419,1400,1418
|
|
1431
|
+
1428,1405,1399,1406,1420,1401,1419
|
|
1432
|
+
1429,1406,1400,1407,1421,1402,1420
|
|
1433
|
+
1430,1407,1401,1408,1422,1403,1421
|
|
1434
|
+
1431,1408,1402,1409,1423,1404,1422
|
|
1435
|
+
1432,1409,1403,1410,1424,1405,1423
|
|
1436
|
+
1433,1410,1404,1411,1425,1406,1424
|
|
1437
|
+
1434,1411,1405,1412,1426,1407,1425
|
|
1438
|
+
1435,1412,1406,1413,1427,1408,1426
|
|
1439
|
+
1436,1413,1407,1414,1428,1409,1426
|
|
1440
|
+
1437,1414,1408,1415,1429,1410,1427
|
|
1441
|
+
1438,1415,1409,1416,1430,1411,1428
|
|
1442
|
+
1439,1416,1410,1417,1431,1412,1429
|
|
1443
|
+
1440,1417,1411,1418,1432,1413,1430
|
|
1444
|
+
1441,1418,1412,1419,1433,1414,1431
|
|
1445
|
+
1442,1419,1413,1420,1434,1415,1432
|
|
1446
|
+
1443,1420,1414,1421,1435,1416,1433
|
|
1447
|
+
1444,1421,1415,1422,1436,1417,1434
|
|
1448
|
+
1445,1422,1416,1423,1437,1418,1435
|
|
1449
|
+
1446,1423,1417,1424,1438,1419,1436
|
|
1450
|
+
1447,1424,1418,1425,1439,1420,1437
|
|
1451
|
+
1448,1425,1419,1426,1440,1421,1438
|
|
1452
|
+
1449,1426,1420,1427,1441,1422,1439
|
|
1453
|
+
1450,1427,1421,1428,1442,1423,1440
|
|
1454
|
+
1451,1428,1422,1429,1443,1424,1441
|
|
1455
|
+
1452,1429,1423,1430,1444,1425,1442
|
|
1456
|
+
1453,1430,1424,1431,1445,1426,1443
|
|
1457
|
+
1454,1431,1425,1432,1446,1427,1444
|
|
1458
|
+
1455,1432,1426,1433,1447,1428,1445
|
|
1459
|
+
1456,1433,1427,1434,1448,1429,1446
|
|
1460
|
+
1457,1434,1428,1435,1449,1430,1447
|
|
1461
|
+
1458,1435,1429,1436,1450,1431,1448
|
|
1462
|
+
1459,1436,1430,1437,1451,1432,1449
|
|
1463
|
+
1460,1437,1431,1438,1452,1433,1450
|
|
1464
|
+
1461,1438,1432,1439,1453,1434,1451
|
|
1465
|
+
1462,1439,1433,1440,1454,1435,1452
|
|
1466
|
+
1463,1440,1433,1441,1455,1435,1453
|
|
1467
|
+
1464,1441,1434,1442,1456,1436,1454
|
|
1468
|
+
1465,1442,1435,1443,1457,1437,1455
|
|
1469
|
+
1466,1443,1436,1444,1458,1438,1456
|
|
1470
|
+
1467,1444,1437,1444,1459,1439,1457
|
|
1471
|
+
1468,1445,1438,1445,1460,1440,1458
|
|
1472
|
+
1469,1445,1439,1446,1461,1441,1459
|
|
1473
|
+
1470,1446,1440,1447,1462,1442,1460
|
|
1474
|
+
1471,1447,1441,1448,1463,1443,1461
|
|
1475
|
+
1472,1448,1442,1449,1464,1444,1462
|
|
1476
|
+
1473,1449,1443,1450,1465,1445,1463
|
|
1477
|
+
1474,1450,1444,1451,1466,1446,1464
|
|
1478
|
+
1475,1451,1445,1452,1467,1447,1465
|
|
1479
|
+
1476,1452,1446,1453,1468,1448,1466
|
|
1480
|
+
1477,1453,1447,1454,1469,1449,1467
|
|
1481
|
+
1478,1454,1448,1455,1470,1450,1468
|
|
1482
|
+
1479,1455,1449,1456,1471,1451,1469
|
|
1483
|
+
1480,1456,1450,1457,1472,1452,1470
|
|
1484
|
+
1481,1457,1451,1458,1473,1453,1471
|
|
1485
|
+
1482,1458,1452,1459,1474,1454,1472
|
|
1486
|
+
1483,1459,1453,1460,1475,1455,1473
|
|
1487
|
+
1484,1460,1454,1461,1476,1456,1474
|
|
1488
|
+
1485,1461,1455,1462,1477,1457,1475
|
|
1489
|
+
1486,1462,1456,1463,1478,1458,1476
|
|
1490
|
+
1487,1463,1457,1464,1479,1459,1477
|
|
1491
|
+
1488,1464,1458,1465,1480,1460,1478
|
|
1492
|
+
1489,1465,1459,1466,1481,1461,1479
|
|
1493
|
+
1490,1466,1460,1467,1482,1462,1480
|
|
1494
|
+
1491,1467,1461,1468,1483,1463,1481
|
|
1495
|
+
1492,1468,1462,1469,1484,1464,1482
|
|
1496
|
+
1493,1469,1463,1470,1485,1465,1483
|
|
1497
|
+
1494,1470,1464,1471,1486,1466,1484
|
|
1498
|
+
1495,1471,1465,1472,1487,1467,1485
|
|
1499
|
+
1496,1472,1466,1473,1488,1468,1486
|
|
1500
|
+
1497,1473,1467,1474,1489,1469,1487
|
|
1501
|
+
1498,1474,1468,1475,1490,1470,1488
|
|
1502
|
+
1499,1475,1469,1476,1491,1471,1489
|
|
1503
|
+
1500,1476,1470,1477,1491,1472,1490
|
|
1504
|
+
1501,1477,1471,1478,1492,1473,1491
|
|
1505
|
+
1502,1478,1472,1479,1493,1474,1492
|
|
1506
|
+
1503,1479,1473,1480,1494,1475,1493
|
|
1507
|
+
1504,1480,1474,1481,1495,1476,1494
|
|
1508
|
+
1505,1481,1475,1482,1496,1477,1495
|
|
1509
|
+
1506,1482,1476,1483,1497,1478,1496
|
|
1510
|
+
1507,1483,1477,1484,1498,1479,1497
|
|
1511
|
+
1508,1484,1478,1485,1499,1480,1498
|
|
1512
|
+
1509,1485,1479,1486,1500,1481,1499
|
|
1513
|
+
1510,1486,1480,1487,1501,1482,1500
|
|
1514
|
+
1511,1487,1481,1488,1502,1483,1501
|
|
1515
|
+
1512,1488,1482,1489,1503,1484,1502
|
|
1516
|
+
1513,1489,1482,1490,1504,1485,1503
|
|
1517
|
+
1514,1490,1483,1491,1505,1486,1504
|
|
1518
|
+
1515,1491,1484,1492,1506,1487,1505
|
|
1519
|
+
1516,1492,1485,1493,1507,1487,1506
|
|
1520
|
+
1517,1493,1486,1494,1508,1488,1507
|
|
1521
|
+
1518,1494,1487,1495,1509,1489,1508
|
|
1522
|
+
1519,1495,1488,1496,1510,1490,1509
|
|
1523
|
+
1520,1496,1489,1497,1511,1491,1510
|
|
1524
|
+
1521,1497,1490,1498,1512,1492,1511
|
|
1525
|
+
1522,1498,1491,1499,1513,1493,1512
|
|
1526
|
+
1523,1499,1492,1500,1514,1494,1513
|
|
1527
|
+
1524,1500,1493,1501,1515,1495,1514
|
|
1528
|
+
1525,1501,1494,1502,1516,1496,1515
|
|
1529
|
+
1526,1502,1495,1503,1517,1497,1516
|
|
1530
|
+
1527,1503,1496,1504,1518,1498,1517
|
|
1531
|
+
1528,1504,1497,1505,1519,1499,1518
|
|
1532
|
+
1529,1505,1498,1506,1520,1500,1519
|
|
1533
|
+
1530,1506,1499,1507,1521,1501,1520
|
|
1534
|
+
1531,1507,1500,1508,1522,1502,1521
|
|
1535
|
+
1532,1507,1501,1508,1523,1503,1522
|
|
1536
|
+
1533,1508,1502,1509,1524,1504,1523
|
|
1537
|
+
1534,1509,1503,1510,1525,1505,1524
|
|
1538
|
+
1535,1510,1504,1511,1526,1506,1525
|
|
1539
|
+
1536,1511,1505,1512,1527,1507,1526
|
|
1540
|
+
1537,1512,1506,1513,1528,1508,1527
|
|
1541
|
+
1538,1513,1507,1514,1529,1509,1528
|
|
1542
|
+
1539,1514,1508,1515,1530,1510,1529
|
|
1543
|
+
1540,1515,1509,1516,1531,1511,1530
|
|
1544
|
+
1541,1516,1510,1517,1532,1512,1531
|
|
1545
|
+
1542,1517,1511,1518,1533,1513,1532
|
|
1546
|
+
1543,1518,1512,1519,1534,1514,1533
|
|
1547
|
+
1544,1519,1513,1520,1535,1515,1534
|
|
1548
|
+
1545,1520,1514,1521,1536,1516,1535
|
|
1549
|
+
1546,1521,1515,1522,1537,1517,1536
|
|
1550
|
+
1547,1522,1516,1523,1538,1518,1537
|
|
1551
|
+
1548,1523,1517,1524,1539,1519,1538
|
|
1552
|
+
1549,1524,1518,1525,1540,1520,1539
|
|
1553
|
+
1550,1525,1519,1526,1541,1521,1540
|
|
1554
|
+
1551,1526,1520,1527,1542,1522,1541
|
|
1555
|
+
1552,1527,1521,1528,1543,1523,1542
|
|
1556
|
+
1553,1528,1522,1529,1544,1524,1543
|
|
1557
|
+
1554,1529,1523,1530,1545,1525,1544
|
|
1558
|
+
1555,1530,1524,1531,1546,1526,1545
|
|
1559
|
+
1556,1531,1525,1532,1547,1527,1546
|
|
1560
|
+
1557,1532,1526,1533,1548,1528,1547
|
|
1561
|
+
1558,1533,1527,1534,1549,1529,1548
|
|
1562
|
+
1559,1534,1528,1535,1550,1530,1549
|
|
1563
|
+
1560,1535,1529,1536,1551,1531,1550
|
|
1564
|
+
1561,1536,1530,1537,1552,1532,1551
|
|
1565
|
+
1562,1537,1531,1538,1553,1533,1552
|
|
1566
|
+
1563,1538,1531,1539,1554,1534,1553
|
|
1567
|
+
1564,1539,1532,1540,1555,1535,1554
|
|
1568
|
+
1565,1540,1533,1541,1556,1536,1555
|
|
1569
|
+
1566,1541,1534,1542,1557,1537,1556
|
|
1570
|
+
1567,1542,1535,1543,1558,1538,1557
|
|
1571
|
+
1568,1543,1536,1544,1559,1539,1558
|
|
1572
|
+
1569,1544,1537,1545,1560,1540,1559
|
|
1573
|
+
1570,1545,1538,1546,1561,1540,1560
|
|
1574
|
+
1571,1546,1539,1547,1562,1541,1561
|
|
1575
|
+
1572,1547,1540,1548,1563,1542,1562
|
|
1576
|
+
1573,1548,1541,1549,1564,1543,1563
|
|
1577
|
+
1574,1549,1542,1550,1565,1544,1564
|
|
1578
|
+
1575,1550,1543,1551,1566,1545,1565
|
|
1579
|
+
1576,1551,1544,1552,1567,1546,1566
|
|
1580
|
+
1577,1552,1545,1553,1568,1547,1567
|
|
1581
|
+
1578,1553,1546,1554,1569,1548,1568
|
|
1582
|
+
1579,1554,1547,1555,1570,1549,1569
|
|
1583
|
+
1580,1555,1548,1556,1571,1550,1570
|
|
1584
|
+
1581,1556,1549,1557,1572,1551,1571
|
|
1585
|
+
1582,1557,1550,1558,1573,1552,1572
|
|
1586
|
+
1583,1558,1551,1559,1574,1553,1573
|
|
1587
|
+
1584,1559,1552,1560,1575,1554,1574
|
|
1588
|
+
1585,1560,1553,1561,1576,1555,1575
|
|
1589
|
+
1586,1561,1554,1562,1577,1556,1576
|
|
1590
|
+
1587,1562,1555,1563,1578,1557,1577
|
|
1591
|
+
1588,1563,1556,1564,1579,1558,1577
|
|
1592
|
+
1589,1564,1557,1565,1580,1559,1578
|
|
1593
|
+
1590,1565,1558,1566,1581,1560,1579
|
|
1594
|
+
1591,1566,1559,1567,1582,1561,1580
|
|
1595
|
+
1592,1567,1560,1568,1583,1562,1581
|
|
1596
|
+
1593,1568,1561,1569,1584,1563,1582
|
|
1597
|
+
1594,1568,1562,1570,1585,1564,1583
|
|
1598
|
+
1595,1569,1563,1571,1586,1565,1584
|
|
1599
|
+
1596,1570,1564,1572,1587,1566,1585
|
|
1600
|
+
1597,1571,1565,1573,1588,1567,1586
|
|
1601
|
+
1598,1572,1566,1573,1589,1568,1587
|
|
1602
|
+
1599,1573,1567,1574,1590,1569,1588
|
|
1603
|
+
1600,1574,1568,1575,1591,1570,1589
|
|
1604
|
+
1601,1575,1569,1576,1592,1571,1590
|
|
1605
|
+
1602,1576,1570,1577,1593,1572,1591
|
|
1606
|
+
1603,1577,1571,1578,1594,1573,1592
|
|
1607
|
+
1604,1578,1572,1579,1595,1574,1593
|
|
1608
|
+
1605,1579,1573,1580,1596,1575,1594
|
|
1609
|
+
1606,1580,1574,1581,1597,1576,1595
|
|
1610
|
+
1607,1581,1575,1582,1598,1577,1596
|
|
1611
|
+
1608,1582,1576,1583,1599,1578,1597
|
|
1612
|
+
1609,1583,1577,1584,1600,1579,1598
|
|
1613
|
+
1610,1584,1578,1585,1601,1580,1599
|
|
1614
|
+
1611,1585,1579,1586,1602,1581,1600
|
|
1615
|
+
1612,1586,1579,1587,1603,1582,1601
|
|
1616
|
+
1613,1587,1580,1588,1604,1583,1602
|
|
1617
|
+
1614,1588,1581,1589,1605,1584,1603
|
|
1618
|
+
1615,1589,1582,1590,1606,1585,1604
|
|
1619
|
+
1616,1590,1583,1591,1607,1586,1605
|
|
1620
|
+
1617,1591,1584,1592,1608,1587,1606
|
|
1621
|
+
1618,1592,1585,1593,1609,1588,1607
|
|
1622
|
+
1619,1593,1586,1594,1610,1589,1608
|
|
1623
|
+
1620,1594,1587,1595,1611,1590,1609
|
|
1624
|
+
1621,1595,1588,1596,1612,1591,1610
|
|
1625
|
+
1622,1596,1589,1597,1613,1592,1611
|
|
1626
|
+
1623,1597,1590,1598,1614,1592,1612
|
|
1627
|
+
1624,1598,1591,1599,1615,1593,1613
|
|
1628
|
+
1625,1599,1592,1600,1616,1594,1614
|
|
1629
|
+
1626,1600,1593,1601,1617,1595,1615
|
|
1630
|
+
1627,1601,1594,1602,1618,1596,1616
|
|
1631
|
+
1628,1602,1595,1603,1619,1597,1617
|
|
1632
|
+
1629,1603,1596,1604,1620,1598,1618
|
|
1633
|
+
1630,1604,1597,1605,1621,1599,1619
|
|
1634
|
+
1631,1605,1598,1606,1622,1600,1620
|
|
1635
|
+
1632,1606,1599,1607,1623,1601,1621
|
|
1636
|
+
1633,1607,1600,1608,1624,1602,1622
|
|
1637
|
+
1634,1608,1601,1609,1625,1603,1623
|
|
1638
|
+
1635,1609,1602,1610,1626,1604,1624
|
|
1639
|
+
1636,1610,1603,1611,1627,1605,1625
|
|
1640
|
+
1637,1611,1604,1612,1628,1606,1626
|
|
1641
|
+
1638,1612,1605,1613,1629,1607,1627
|
|
1642
|
+
1639,1613,1606,1614,1630,1608,1628
|
|
1643
|
+
1640,1614,1607,1615,1631,1609,1629
|
|
1644
|
+
1641,1615,1608,1616,1632,1610,1630
|
|
1645
|
+
1642,1616,1609,1617,1633,1611,1631
|
|
1646
|
+
1643,1617,1610,1618,1634,1612,1632
|
|
1647
|
+
1644,1618,1611,1619,1635,1613,1633
|
|
1648
|
+
1645,1619,1612,1620,1636,1614,1634
|
|
1649
|
+
1646,1620,1613,1621,1637,1615,1635
|
|
1650
|
+
1647,1621,1614,1622,1638,1616,1636
|
|
1651
|
+
1648,1622,1615,1623,1639,1617,1637
|
|
1652
|
+
1649,1623,1616,1624,1640,1618,1638
|
|
1653
|
+
1650,1624,1617,1625,1641,1619,1639
|
|
1654
|
+
1651,1625,1618,1626,1642,1620,1640
|
|
1655
|
+
1652,1626,1619,1627,1643,1621,1641
|
|
1656
|
+
1653,1627,1620,1628,1644,1622,1642
|
|
1657
|
+
1654,1628,1621,1629,1645,1623,1643
|
|
1658
|
+
1655,1629,1622,1630,1646,1624,1644
|
|
1659
|
+
1656,1630,1623,1631,1647,1625,1645
|
|
1660
|
+
1657,1630,1624,1632,1648,1626,1646
|
|
1661
|
+
1658,1631,1625,1633,1649,1627,1647
|
|
1662
|
+
1659,1632,1626,1634,1650,1628,1648
|
|
1663
|
+
1660,1633,1627,1635,1651,1629,1649
|
|
1664
|
+
1661,1634,1628,1636,1652,1630,1650
|
|
1665
|
+
1662,1635,1628,1637,1653,1631,1651
|
|
1666
|
+
1663,1636,1629,1637,1654,1632,1652
|
|
1667
|
+
1664,1637,1630,1638,1655,1633,1653
|
|
1668
|
+
1665,1638,1631,1639,1656,1634,1654
|
|
1669
|
+
1666,1639,1632,1640,1657,1635,1655
|
|
1670
|
+
1667,1640,1633,1641,1658,1636,1656
|
|
1671
|
+
1668,1641,1634,1642,1659,1637,1657
|
|
1672
|
+
1669,1642,1635,1643,1660,1638,1658
|
|
1673
|
+
1670,1643,1636,1644,1661,1639,1659
|
|
1674
|
+
1671,1644,1637,1645,1662,1640,1660
|
|
1675
|
+
1672,1645,1638,1646,1663,1641,1661
|
|
1676
|
+
1673,1646,1639,1647,1664,1642,1662
|
|
1677
|
+
1674,1647,1640,1648,1665,1643,1663
|
|
1678
|
+
1675,1648,1641,1649,1666,1644,1664
|
|
1679
|
+
1676,1649,1642,1650,1667,1644,1665
|
|
1680
|
+
1677,1650,1643,1651,1667,1645,1666
|
|
1681
|
+
1678,1651,1644,1652,1668,1646,1667
|
|
1682
|
+
1679,1652,1645,1653,1669,1647,1668
|
|
1683
|
+
1680,1653,1646,1654,1670,1648,1669
|
|
1684
|
+
1681,1654,1647,1655,1671,1649,1670
|
|
1685
|
+
1682,1655,1648,1656,1672,1650,1671
|
|
1686
|
+
1683,1656,1649,1657,1673,1651,1672
|
|
1687
|
+
1684,1657,1650,1658,1674,1652,1673
|
|
1688
|
+
1685,1658,1651,1659,1675,1653,1674
|
|
1689
|
+
1686,1659,1652,1660,1676,1654,1675
|
|
1690
|
+
1687,1660,1653,1661,1677,1655,1676
|
|
1691
|
+
1688,1661,1654,1662,1678,1656,1677
|
|
1692
|
+
1689,1662,1655,1663,1679,1657,1678
|
|
1693
|
+
1690,1663,1656,1664,1680,1658,1679
|
|
1694
|
+
1691,1664,1657,1665,1681,1659,1680
|
|
1695
|
+
1692,1665,1658,1666,1682,1660,1681
|
|
1696
|
+
1693,1666,1659,1667,1683,1661,1682
|
|
1697
|
+
1694,1667,1660,1668,1684,1662,1683
|
|
1698
|
+
1695,1668,1661,1669,1685,1663,1684
|
|
1699
|
+
1696,1669,1662,1670,1686,1664,1685
|
|
1700
|
+
1697,1670,1663,1671,1687,1665,1686
|
|
1701
|
+
1698,1671,1664,1672,1688,1666,1687
|
|
1702
|
+
1699,1672,1665,1673,1689,1667,1688
|
|
1703
|
+
1700,1673,1666,1674,1690,1668,1689
|
|
1704
|
+
1701,1674,1667,1675,1691,1669,1690
|
|
1705
|
+
1702,1675,1668,1676,1692,1670,1691
|
|
1706
|
+
1703,1676,1669,1677,1693,1671,1692
|
|
1707
|
+
1704,1677,1670,1678,1694,1672,1693
|
|
1708
|
+
1705,1678,1671,1679,1695,1673,1694
|
|
1709
|
+
1706,1679,1672,1680,1696,1674,1695
|
|
1710
|
+
1707,1680,1673,1681,1697,1675,1696
|
|
1711
|
+
1708,1681,1674,1682,1698,1676,1697
|
|
1712
|
+
1709,1682,1675,1683,1699,1677,1698
|
|
1713
|
+
1710,1683,1676,1684,1700,1678,1699
|
|
1714
|
+
1711,1684,1676,1685,1701,1679,1700
|
|
1715
|
+
1712,1685,1677,1686,1702,1680,1701
|
|
1716
|
+
1713,1686,1678,1687,1703,1681,1702
|
|
1717
|
+
1714,1687,1679,1688,1704,1682,1703
|
|
1718
|
+
1715,1688,1680,1689,1705,1683,1704
|
|
1719
|
+
1716,1689,1681,1690,1706,1684,1705
|
|
1720
|
+
1717,1690,1682,1691,1707,1685,1706
|
|
1721
|
+
1718,1691,1683,1692,1708,1686,1707
|
|
1722
|
+
1719,1691,1684,1693,1709,1687,1708
|
|
1723
|
+
1720,1692,1685,1694,1710,1688,1709
|
|
1724
|
+
1721,1693,1686,1695,1711,1689,1710
|
|
1725
|
+
1722,1694,1687,1696,1712,1690,1711
|
|
1726
|
+
1723,1695,1688,1697,1713,1691,1712
|
|
1727
|
+
1724,1696,1689,1698,1714,1692,1713
|
|
1728
|
+
1725,1697,1690,1699,1715,1693,1714
|
|
1729
|
+
1726,1698,1691,1700,1716,1694,1715
|
|
1730
|
+
1727,1699,1692,1701,1717,1695,1716
|
|
1731
|
+
1728,1700,1693,1701,1718,1696,1717
|
|
1732
|
+
1729,1701,1694,1702,1719,1696,1718
|
|
1733
|
+
1730,1702,1695,1703,1720,1697,1719
|
|
1734
|
+
1731,1703,1696,1704,1721,1698,1720
|
|
1735
|
+
1732,1704,1697,1705,1722,1699,1721
|
|
1736
|
+
1733,1705,1698,1706,1723,1700,1722
|
|
1737
|
+
1734,1706,1699,1707,1724,1701,1723
|
|
1738
|
+
1735,1707,1700,1708,1725,1702,1724
|
|
1739
|
+
1736,1708,1701,1709,1726,1703,1725
|
|
1740
|
+
1737,1709,1702,1710,1727,1704,1726
|
|
1741
|
+
1738,1710,1703,1711,1728,1705,1727
|
|
1742
|
+
1739,1711,1704,1712,1729,1706,1727
|
|
1743
|
+
1740,1712,1705,1713,1730,1707,1728
|
|
1744
|
+
1741,1713,1706,1714,1731,1708,1729
|
|
1745
|
+
1742,1714,1707,1715,1732,1709,1730
|
|
1746
|
+
1743,1715,1708,1716,1733,1710,1731
|
|
1747
|
+
1744,1716,1709,1717,1734,1711,1732
|
|
1748
|
+
1745,1717,1710,1718,1735,1712,1733
|
|
1749
|
+
1746,1718,1711,1719,1736,1713,1734
|
|
1750
|
+
1747,1719,1712,1720,1737,1714,1735
|
|
1751
|
+
1748,1720,1713,1721,1738,1715,1736
|
|
1752
|
+
1749,1721,1714,1722,1739,1716,1737
|
|
1753
|
+
1750,1722,1715,1723,1740,1717,1738
|
|
1754
|
+
1751,1723,1716,1724,1741,1718,1739
|
|
1755
|
+
1752,1724,1717,1725,1742,1719,1740
|
|
1756
|
+
1753,1725,1718,1726,1743,1720,1741
|
|
1757
|
+
1754,1726,1719,1727,1744,1721,1742
|
|
1758
|
+
1755,1727,1720,1728,1745,1722,1743
|
|
1759
|
+
1756,1728,1721,1729,1746,1723,1744
|
|
1760
|
+
1757,1729,1722,1730,1747,1724,1745
|
|
1761
|
+
1758,1730,1723,1731,1748,1725,1746
|
|
1762
|
+
1759,1731,1724,1732,1749,1726,1747
|
|
1763
|
+
1760,1732,1725,1733,1750,1727,1748
|
|
1764
|
+
1761,1733,1725,1734,1751,1728,1749
|
|
1765
|
+
1762,1734,1726,1735,1752,1729,1750
|
|
1766
|
+
1763,1735,1727,1736,1753,1730,1751
|
|
1767
|
+
1764,1736,1728,1737,1754,1731,1752
|
|
1768
|
+
1765,1737,1729,1738,1755,1732,1753
|
|
1769
|
+
1766,1738,1730,1739,1756,1733,1754
|
|
1770
|
+
1767,1739,1731,1740,1757,1734,1755
|
|
1771
|
+
1768,1740,1732,1741,1758,1735,1756
|
|
1772
|
+
1769,1741,1733,1742,1759,1736,1757
|
|
1773
|
+
1770,1742,1734,1743,1760,1737,1758
|
|
1774
|
+
1771,1743,1735,1744,1761,1738,1759
|
|
1775
|
+
1772,1744,1736,1745,1762,1739,1760
|
|
1776
|
+
1773,1745,1737,1746,1763,1740,1761
|
|
1777
|
+
1774,1746,1738,1747,1764,1741,1762
|
|
1778
|
+
1775,1747,1739,1748,1765,1742,1763
|
|
1779
|
+
1776,1748,1740,1749,1766,1743,1764
|
|
1780
|
+
1777,1749,1741,1750,1767,1744,1765
|
|
1781
|
+
1778,1750,1742,1751,1768,1745,1766
|
|
1782
|
+
1779,1751,1743,1752,1769,1746,1767
|
|
1783
|
+
1780,1752,1744,1753,1770,1747,1768
|
|
1784
|
+
1781,1753,1745,1754,1771,1748,1769
|
|
1785
|
+
1782,1753,1746,1755,1772,1748,1770
|
|
1786
|
+
1783,1754,1747,1756,1773,1749,1771
|
|
1787
|
+
1784,1755,1748,1757,1774,1750,1772
|
|
1788
|
+
1785,1756,1749,1758,1775,1751,1773
|
|
1789
|
+
1786,1757,1750,1759,1776,1752,1774
|
|
1790
|
+
1787,1758,1751,1760,1777,1753,1775
|
|
1791
|
+
1788,1759,1752,1761,1778,1754,1776
|
|
1792
|
+
1789,1760,1753,1762,1779,1755,1777
|
|
1793
|
+
1790,1761,1754,1763,1780,1756,1778
|
|
1794
|
+
1791,1762,1755,1764,1781,1757,1779
|
|
1795
|
+
1792,1763,1756,1765,1782,1758,1780
|
|
1796
|
+
1793,1764,1757,1765,1783,1759,1781
|
|
1797
|
+
1794,1765,1758,1766,1784,1760,1782
|
|
1798
|
+
1795,1766,1759,1767,1785,1761,1783
|
|
1799
|
+
1796,1767,1760,1768,1786,1762,1784
|
|
1800
|
+
1797,1768,1761,1769,1787,1763,1785
|
|
1801
|
+
1798,1769,1762,1770,1788,1764,1786
|
|
1802
|
+
1799,1770,1763,1771,1789,1765,1787
|
|
1803
|
+
1800,1771,1764,1772,1790,1766,1788
|
|
1804
|
+
1801,1772,1765,1773,1791,1767,1789
|
|
1805
|
+
1802,1773,1766,1774,1792,1768,1790
|
|
1806
|
+
1803,1774,1767,1775,1793,1769,1791
|
|
1807
|
+
1804,1775,1768,1776,1794,1770,1792
|
|
1808
|
+
1805,1776,1769,1777,1795,1771,1793
|
|
1809
|
+
1806,1777,1770,1778,1796,1772,1794
|
|
1810
|
+
1807,1778,1771,1779,1797,1773,1795
|
|
1811
|
+
1808,1779,1772,1780,1798,1774,1796
|
|
1812
|
+
1809,1780,1773,1781,1799,1775,1797
|
|
1813
|
+
1810,1781,1774,1782,1800,1776,1798
|
|
1814
|
+
1811,1782,1774,1783,1801,1777,1799
|
|
1815
|
+
1812,1783,1775,1784,1802,1778,1800
|
|
1816
|
+
1813,1784,1776,1785,1803,1779,1801
|
|
1817
|
+
1814,1785,1777,1786,1804,1780,1802
|
|
1818
|
+
1815,1786,1778,1787,1805,1781,1803
|
|
1819
|
+
1816,1787,1779,1788,1806,1782,1804
|
|
1820
|
+
1817,1788,1780,1789,1807,1783,1805
|
|
1821
|
+
1818,1789,1781,1790,1808,1784,1806
|
|
1822
|
+
1819,1790,1782,1791,1809,1785,1807
|
|
1823
|
+
1820,1791,1783,1792,1810,1786,1808
|
|
1824
|
+
1821,1792,1784,1793,1811,1787,1809
|
|
1825
|
+
1822,1793,1785,1794,1812,1788,1810
|
|
1826
|
+
1823,1794,1786,1795,1813,1789,1811
|
|
1827
|
+
1824,1795,1787,1796,1814,1790,1812
|
|
1828
|
+
1825,1796,1788,1797,1815,1791,1813
|
|
1829
|
+
1826,1797,1789,1798,1816,1792,1814
|
|
1830
|
+
1827,1798,1790,1799,1817,1793,1815
|
|
1831
|
+
1828,1799,1791,1800,1818,1794,1816
|
|
1832
|
+
1829,1800,1792,1801,1819,1795,1817
|
|
1833
|
+
1830,1801,1793,1802,1820,1796,1818
|
|
1834
|
+
1831,1802,1794,1803,1821,1797,1819
|
|
1835
|
+
1832,1803,1795,1804,1822,1798,1820
|
|
1836
|
+
1833,1804,1796,1805,1823,1799,1821
|
|
1837
|
+
1834,1805,1797,1806,1824,1800,1822
|
|
1838
|
+
1835,1806,1798,1807,1825,1801,1823
|
|
1839
|
+
1836,1807,1799,1808,1826,1801,1824
|
|
1840
|
+
1837,1808,1800,1809,1827,1802,1825
|
|
1841
|
+
1838,1809,1801,1810,1828,1803,1826
|
|
1842
|
+
1839,1810,1802,1811,1829,1804,1827
|
|
1843
|
+
1840,1811,1803,1812,1830,1805,1828
|
|
1844
|
+
1841,1812,1804,1813,1831,1806,1829
|
|
1845
|
+
1842,1813,1805,1814,1832,1807,1830
|
|
1846
|
+
1843,1814,1806,1815,1833,1808,1831
|
|
1847
|
+
1844,1814,1807,1816,1834,1809,1832
|
|
1848
|
+
1845,1815,1808,1817,1835,1810,1833
|
|
1849
|
+
1846,1816,1809,1818,1836,1811,1834
|
|
1850
|
+
1847,1817,1810,1819,1837,1812,1835
|
|
1851
|
+
1848,1818,1811,1820,1838,1813,1836
|
|
1852
|
+
1849,1819,1812,1821,1839,1814,1837
|
|
1853
|
+
1850,1820,1813,1822,1840,1815,1838
|
|
1854
|
+
1851,1821,1814,1823,1841,1816,1839
|
|
1855
|
+
1852,1822,1815,1824,1842,1817,1840
|
|
1856
|
+
1853,1823,1816,1825,1842,1818,1841
|
|
1857
|
+
1854,1824,1817,1826,1843,1819,1842
|
|
1858
|
+
1855,1825,1818,1827,1844,1820,1843
|
|
1859
|
+
1856,1826,1819,1828,1845,1821,1844
|
|
1860
|
+
1857,1827,1820,1829,1846,1822,1845
|
|
1861
|
+
1858,1828,1821,1829,1847,1823,1846
|
|
1862
|
+
1859,1829,1822,1830,1848,1824,1847
|
|
1863
|
+
1860,1830,1822,1831,1849,1825,1848
|
|
1864
|
+
1861,1831,1823,1832,1850,1826,1849
|
|
1865
|
+
1862,1832,1824,1833,1851,1827,1850
|
|
1866
|
+
1863,1833,1825,1834,1852,1828,1851
|
|
1867
|
+
1864,1834,1826,1835,1853,1829,1852
|
|
1868
|
+
1865,1835,1827,1836,1854,1830,1853
|
|
1869
|
+
1866,1836,1828,1837,1855,1831,1854
|
|
1870
|
+
1867,1837,1829,1838,1856,1832,1855
|
|
1871
|
+
1868,1838,1830,1839,1857,1833,1856
|
|
1872
|
+
1869,1839,1831,1840,1858,1834,1857
|
|
1873
|
+
1870,1840,1832,1841,1859,1835,1858
|
|
1874
|
+
1871,1841,1833,1842,1860,1836,1859
|
|
1875
|
+
1872,1842,1834,1843,1861,1837,1860
|
|
1876
|
+
1873,1843,1835,1844,1862,1838,1861
|
|
1877
|
+
1874,1844,1836,1845,1863,1839,1862
|
|
1878
|
+
1875,1845,1837,1846,1864,1840,1863
|
|
1879
|
+
1876,1846,1838,1847,1865,1841,1864
|
|
1880
|
+
1877,1847,1839,1848,1866,1842,1865
|
|
1881
|
+
1878,1848,1840,1849,1867,1843,1866
|
|
1882
|
+
1879,1849,1841,1850,1868,1844,1867
|
|
1883
|
+
1880,1850,1842,1851,1869,1845,1868
|
|
1884
|
+
1881,1851,1843,1852,1870,1846,1869
|
|
1885
|
+
1882,1852,1844,1853,1871,1847,1870
|
|
1886
|
+
1883,1853,1845,1854,1872,1848,1871
|
|
1887
|
+
1884,1854,1846,1855,1873,1849,1872
|
|
1888
|
+
1885,1855,1847,1856,1874,1850,1873
|
|
1889
|
+
1886,1856,1848,1857,1875,1851,1874
|
|
1890
|
+
1887,1857,1849,1858,1876,1852,1875
|
|
1891
|
+
1888,1858,1850,1859,1877,1853,1876
|
|
1892
|
+
1889,1859,1851,1860,1878,1853,1877
|
|
1893
|
+
1890,1860,1852,1861,1879,1854,1877
|
|
1894
|
+
1891,1861,1853,1862,1880,1855,1878
|
|
1895
|
+
1892,1862,1854,1863,1881,1856,1879
|
|
1896
|
+
1893,1863,1855,1864,1882,1857,1880
|
|
1897
|
+
1894,1864,1856,1865,1883,1858,1881
|
|
1898
|
+
1895,1865,1857,1866,1884,1859,1882
|
|
1899
|
+
1896,1866,1858,1867,1885,1860,1883
|
|
1900
|
+
1897,1867,1859,1868,1886,1861,1884
|
|
1901
|
+
1898,1868,1860,1869,1887,1862,1885
|
|
1902
|
+
1899,1869,1861,1870,1888,1863,1886
|
|
1903
|
+
1900,1870,1862,1871,1889,1864,1887
|
|
1904
|
+
1901,1871,1863,1872,1890,1865,1888
|
|
1905
|
+
1902,1872,1864,1873,1891,1866,1889
|
|
1906
|
+
1903,1873,1865,1874,1892,1867,1890
|
|
1907
|
+
1904,1874,1866,1875,1893,1868,1891
|
|
1908
|
+
1905,1875,1867,1876,1894,1869,1892
|
|
1909
|
+
1906,1876,1868,1877,1895,1870,1893
|
|
1910
|
+
1907,1876,1869,1878,1896,1871,1894
|
|
1911
|
+
1908,1877,1870,1879,1897,1872,1895
|
|
1912
|
+
1909,1878,1871,1880,1898,1873,1896
|
|
1913
|
+
1910,1879,1871,1881,1899,1874,1897
|
|
1914
|
+
1911,1880,1872,1882,1900,1875,1898
|
|
1915
|
+
1912,1881,1873,1883,1901,1876,1899
|
|
1916
|
+
1913,1882,1874,1884,1902,1877,1900
|
|
1917
|
+
1914,1883,1875,1885,1903,1878,1901
|
|
1918
|
+
1915,1884,1876,1886,1904,1879,1902
|
|
1919
|
+
1916,1885,1877,1887,1905,1880,1903
|
|
1920
|
+
1917,1886,1878,1888,1906,1881,1904
|
|
1921
|
+
1918,1887,1879,1889,1907,1882,1905
|
|
1922
|
+
1919,1888,1880,1890,1908,1883,1906
|
|
1923
|
+
1920,1889,1881,1891,1909,1884,1907
|
|
1924
|
+
1921,1890,1882,1892,1910,1885,1908
|
|
1925
|
+
1922,1891,1883,1893,1911,1886,1909
|
|
1926
|
+
1923,1892,1884,1893,1912,1887,1910
|
|
1927
|
+
1924,1893,1885,1894,1913,1888,1911
|
|
1928
|
+
1925,1894,1886,1895,1914,1889,1912
|
|
1929
|
+
1926,1895,1887,1896,1915,1890,1913
|
|
1930
|
+
1927,1896,1888,1897,1916,1891,1914
|
|
1931
|
+
1928,1897,1889,1898,1917,1892,1915
|
|
1932
|
+
1929,1898,1890,1899,1918,1893,1916
|
|
1933
|
+
1930,1899,1891,1900,1919,1894,1917
|
|
1934
|
+
1931,1900,1892,1901,1920,1895,1918
|
|
1935
|
+
1932,1901,1893,1902,1921,1896,1919
|
|
1936
|
+
1933,1902,1894,1903,1922,1897,1920
|
|
1937
|
+
1934,1903,1895,1904,1923,1898,1921
|
|
1938
|
+
1935,1904,1896,1905,1924,1899,1922
|
|
1939
|
+
1936,1905,1897,1906,1925,1900,1923
|
|
1940
|
+
1937,1906,1898,1907,1926,1901,1924
|
|
1941
|
+
1938,1907,1899,1908,1927,1902,1925
|
|
1942
|
+
1939,1908,1900,1909,1928,1903,1926
|
|
1943
|
+
1940,1909,1901,1910,1929,1904,1927
|
|
1944
|
+
1941,1910,1902,1911,1930,1905,1928
|
|
1945
|
+
1942,1911,1903,1912,1931,1905,1929
|
|
1946
|
+
1943,1912,1904,1913,1932,1906,1930
|
|
1947
|
+
1944,1913,1905,1914,1933,1907,1931
|
|
1948
|
+
1945,1914,1906,1915,1934,1908,1932
|
|
1949
|
+
1946,1915,1907,1916,1935,1909,1933
|
|
1950
|
+
1947,1916,1908,1917,1936,1910,1934
|
|
1951
|
+
1948,1917,1909,1918,1937,1911,1935
|
|
1952
|
+
1949,1918,1910,1919,1938,1912,1936
|
|
1953
|
+
1950,1919,1911,1920,1939,1913,1937
|
|
1954
|
+
1951,1920,1912,1921,1940,1914,1938
|
|
1955
|
+
1952,1921,1913,1922,1941,1915,1939
|
|
1956
|
+
1953,1922,1914,1923,1942,1916,1940
|
|
1957
|
+
1954,1923,1915,1924,1943,1917,1941
|
|
1958
|
+
1955,1924,1916,1925,1944,1918,1942
|
|
1959
|
+
1956,1925,1917,1926,1945,1919,1943
|
|
1960
|
+
1957,1926,1918,1927,1946,1920,1944
|
|
1961
|
+
1958,1927,1919,1928,1947,1921,1945
|
|
1962
|
+
1959,1928,1919,1929,1948,1922,1946
|
|
1963
|
+
1960,1929,1920,1930,1949,1923,1947
|
|
1964
|
+
1961,1930,1921,1931,1950,1924,1948
|
|
1965
|
+
1962,1931,1922,1932,1951,1925,1949
|
|
1966
|
+
1963,1932,1923,1933,1952,1926,1950
|
|
1967
|
+
1964,1933,1924,1934,1953,1927,1951
|
|
1968
|
+
1965,1934,1925,1935,1954,1928,1952
|
|
1969
|
+
1966,1935,1926,1936,1955,1929,1953
|
|
1970
|
+
1967,1936,1927,1937,1956,1930,1954
|
|
1971
|
+
1968,1937,1928,1938,1957,1931,1955
|
|
1972
|
+
1969,1937,1929,1939,1958,1932,1956
|
|
1973
|
+
1970,1938,1930,1940,1959,1933,1957
|
|
1974
|
+
1971,1939,1931,1941,1960,1934,1958
|
|
1975
|
+
1972,1940,1932,1942,1961,1935,1959
|
|
1976
|
+
1973,1941,1933,1943,1962,1936,1960
|
|
1977
|
+
1974,1942,1934,1944,1963,1937,1961
|
|
1978
|
+
1975,1943,1935,1945,1964,1938,1962
|
|
1979
|
+
1976,1944,1936,1946,1965,1939,1963
|
|
1980
|
+
1977,1945,1937,1947,1966,1940,1964
|
|
1981
|
+
1978,1946,1938,1948,1967,1941,1965
|
|
1982
|
+
1979,1947,1939,1949,1968,1942,1966
|
|
1983
|
+
1980,1948,1940,1950,1969,1943,1967
|
|
1984
|
+
1981,1949,1941,1951,1970,1944,1968
|
|
1985
|
+
1982,1950,1942,1952,1971,1945,1969
|
|
1986
|
+
1983,1951,1943,1953,1972,1946,1970
|
|
1987
|
+
1984,1952,1944,1954,1973,1947,1971
|
|
1988
|
+
1985,1953,1945,1955,1974,1948,1972
|
|
1989
|
+
1986,1954,1946,1956,1975,1949,1973
|
|
1990
|
+
1987,1955,1947,1957,1976,1950,1974
|
|
1991
|
+
1988,1956,1948,1958,1977,1951,1975
|
|
1992
|
+
1989,1957,1949,1958,1978,1952,1976
|
|
1993
|
+
1990,1958,1950,1959,1979,1953,1977
|
|
1994
|
+
1991,1959,1951,1960,1980,1954,1978
|
|
1995
|
+
1992,1960,1952,1961,1981,1955,1979
|
|
1996
|
+
1993,1961,1953,1962,1982,1956,1980
|
|
1997
|
+
1994,1962,1954,1963,1983,1957,1981
|
|
1998
|
+
1995,1963,1955,1964,1984,1957,1982
|
|
1999
|
+
1996,1964,1956,1965,1985,1958,1983
|
|
2000
|
+
1997,1965,1957,1966,1986,1959,1984
|
|
2001
|
+
1998,1966,1958,1967,1987,1960,1985
|
|
2002
|
+
1999,1967,1959,1968,1988,1961,1986
|
|
2003
|
+
2000,1968,1960,1969,1989,1962,1987
|
|
2004
|
+
2001,1969,1961,1970,1990,1963,1988
|
|
2005
|
+
2002,1970,1962,1971,1991,1964,1989
|
|
2006
|
+
2003,1971,1963,1972,1992,1965,1990
|
|
2007
|
+
2004,1972,1964,1973,1993,1966,1991
|
|
2008
|
+
2005,1973,1965,1974,1994,1967,1992
|
|
2009
|
+
2006,1974,1966,1975,1995,1968,1993
|
|
2010
|
+
2007,1975,1967,1976,1996,1969,1994
|
|
2011
|
+
2008,1976,1968,1977,1997,1970,1995
|
|
2012
|
+
2009,1977,1968,1978,1998,1971,1996
|
|
2013
|
+
2010,1978,1969,1979,1999,1972,1997
|
|
2014
|
+
2011,1979,1970,1980,2000,1973,1998
|
|
2015
|
+
2012,1980,1971,1981,2001,1974,1999
|
|
2016
|
+
2013,1981,1972,1982,2002,1975,2000
|
|
2017
|
+
2014,1982,1973,1983,2003,1976,2001
|
|
2018
|
+
2015,1983,1974,1984,2004,1977,2002
|
|
2019
|
+
2016,1984,1975,1985,2005,1978,2003
|
|
2020
|
+
2017,1985,1976,1986,2006,1979,2004
|
|
2021
|
+
2018,1986,1977,1987,2007,1980,2005
|
|
2022
|
+
2019,1987,1978,1988,2008,1981,2006
|
|
2023
|
+
2020,1988,1979,1989,2009,1982,2007
|
|
2024
|
+
2021,1989,1980,1990,2010,1983,2008
|
|
2025
|
+
2022,1990,1981,1991,2011,1984,2009
|
|
2026
|
+
2023,1991,1982,1992,2012,1985,2010
|
|
2027
|
+
2024,1992,1983,1993,2013,1986,2011
|
|
2028
|
+
2025,1993,1984,1994,2014,1987,2012
|
|
2029
|
+
2026,1994,1985,1995,2015,1988,2013
|
|
2030
|
+
2027,1995,1986,1996,2016,1989,2014
|
|
2031
|
+
2028,1996,1987,1997,2017,1990,2015
|
|
2032
|
+
2029,1997,1988,1998,2018,1991,2016
|
|
2033
|
+
2030,1998,1989,1999,2018,1992,2017
|
|
2034
|
+
2031,1999,1990,2000,2019,1993,2018
|
|
2035
|
+
2032,1999,1991,2001,2020,1994,2019
|
|
2036
|
+
2033,2000,1992,2002,2021,1995,2020
|
|
2037
|
+
2034,2001,1993,2003,2022,1996,2021
|
|
2038
|
+
2035,2002,1994,2004,2023,1997,2022
|
|
2039
|
+
2036,2003,1995,2005,2024,1998,2023
|
|
2040
|
+
2037,2004,1996,2006,2025,1999,2024
|
|
2041
|
+
2038,2005,1997,2007,2026,2000,2025
|
|
2042
|
+
2039,2006,1998,2008,2027,2001,2026
|
|
2043
|
+
2040,2007,1999,2009,2028,2002,2027
|
|
2044
|
+
2041,2008,2000,2010,2029,2003,2027
|
|
2045
|
+
2042,2009,2001,2011,2030,2004,2028
|
|
2046
|
+
2043,2010,2002,2012,2031,2005,2029
|
|
2047
|
+
2044,2011,2003,2013,2032,2006,2030
|
|
2048
|
+
2045,2012,2004,2014,2033,2007,2031
|
|
2049
|
+
2046,2013,2005,2015,2034,2008,2032
|
|
2050
|
+
2047,2014,2006,2016,2035,2009,2033
|