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