From 1bbf050726eaea351b918cce6ead56f178c31f35 Mon Sep 17 00:00:00 2001 From: gwm17 Date: Thu, 6 Feb 2025 16:38:42 -0500 Subject: [PATCH 1/5] Fix to synchronizer reader, now redirects to MERGER_1_0 --- src/spyral/trace/trace_reader.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/spyral/trace/trace_reader.py b/src/spyral/trace/trace_reader.py index 7ec9287..78d4bf8 100644 --- a/src/spyral/trace/trace_reader.py +++ b/src/spyral/trace/trace_reader.py @@ -57,9 +57,9 @@ def version_string_to_enum(version: str) -> TraceVersion: The version enum """ - if version == "libattpc_merger:1.0": + if version == "libattpc_merger:1.0" or version == "synchronizer:0.1.0": return TraceVersion.MERGER_1_0 - elif version == "harmonizer:0.1.0" or version == "synchronizer:0.1.0": + elif version == "harmonizer:0.1.0": return TraceVersion.HARMONIZER_0_1 else: return TraceVersion.INVALID From b943d78c99e81130e1a4c3051a562119b777f24b Mon Sep 17 00:00:00 2001 From: gwm17 Date: Tue, 25 Mar 2025 10:15:15 -0400 Subject: [PATCH 2/5] Start impl of merger format v2 --- src/spyral/phases/pointcloud_phase.py | 4 +- src/spyral/trace/trace_reader.py | 153 ++++++++++++++++++++++++-- 2 files changed, 144 insertions(+), 13 deletions(-) diff --git a/src/spyral/phases/pointcloud_phase.py b/src/spyral/phases/pointcloud_phase.py index 840f2fb..a2e9c22 100644 --- a/src/spyral/phases/pointcloud_phase.py +++ b/src/spyral/phases/pointcloud_phase.py @@ -185,11 +185,11 @@ def run( ): # ugh ic_within_mult_count += 1 continue - if event.get is None: + if event.get_pads is None: continue # Convert traces to pointcloud - cloud = point_cloud_from_get(event.get, self.pad_map) + cloud = point_cloud_from_get(event.get_pads, self.pad_map) # Calibrate the time to z-position calibrate_point_cloud_z(cloud, self.det_params, corrector) # Sort the cloud in z diff --git a/src/spyral/trace/trace_reader.py b/src/spyral/trace/trace_reader.py index 78d4bf8..069a5c1 100644 --- a/src/spyral/trace/trace_reader.py +++ b/src/spyral/trace/trace_reader.py @@ -34,6 +34,7 @@ class TraceVersion(Enum): """ MERGER_1_0 = 2 + MERGER_2_0 = 4 HARMONIZER_0_1 = 3 INVALID = -1 @@ -61,6 +62,8 @@ def version_string_to_enum(version: str) -> TraceVersion: return TraceVersion.MERGER_1_0 elif version == "harmonizer:0.1.0": return TraceVersion.HARMONIZER_0_1 + elif version == "libattpc_merger:2.0": + return TraceVersion.MERGER_2_0 else: return TraceVersion.INVALID @@ -73,8 +76,16 @@ class Event: ---------- id: int The event id number - get: GetEvent | None - Optional GET trace data + get_pads: GetEvent | None + Optional GET AT-TPC pad trace data + get_si_upstream_front: GetEvent | None + Optional GET silicon upstream front trace data + get_si_upstream_back: GetEvent | None + Optional GET silicon upstream back trace data + get_si_downstream_front: GetEvent | None + Optional GET silicon downstream front trace data + get_si_downstream_back: GetEvent | None + Optional GET silicon downstream back trace data frib: FribEvent | None Optional FRIBDAQ trace data original_run: int @@ -88,7 +99,11 @@ class Event: """ id: int - get: GetEvent | None + get_pads: GetEvent | None + get_si_upstream_front: GetEvent | None + get_si_upstream_back: GetEvent | None + get_si_downstream_front: GetEvent | None + get_si_downstream_back: GetEvent | None frib: FribEvent | None original_run: int original_event: int @@ -305,10 +320,12 @@ def read_event( frib_event_name = f"evt{event_id}_1903" frib_coinc_name = f"evt{event_id}_977" - event = Event(event_id, None, None, self.run_number, event_id) + event = Event( + event_id, None, None, None, None, None, None, self.run_number, event_id + ) if event_name in get_group: get_data: h5.Dataset = get_group[event_name] # type: ignore - event.get = GetEvent(get_data[:], event_id, get_params, rng) + event.get_pads = GetEvent(get_data[:], event_id, get_params, rng) if frib_event_name in frib_evt_group and frib_coinc_name in frib_evt_group: frib_data: h5.Dataset = frib_evt_group[frib_event_name] # type: ignore frib_coinc: h5.Dataset = frib_evt_group[frib_coinc_name] # type: ignore @@ -352,7 +369,7 @@ def read_scalers(self) -> FribScalers | None: return scalers -class MergerCurrentReader: +class MergerV1Reader: """A TraceReader for the current (1.0) libattpc_merger data Attributes @@ -398,11 +415,13 @@ def read_event( events_group: h5.Group = self.file["events"] # type: ignore event_name = f"event_{event_id}" - event = Event(event_id, None, None, self.run_number, event_id) + event = Event( + event_id, None, None, None, None, None, None, self.run_number, event_id + ) if event_name in events_group: event_data: h5.Group = events_group[event_name] # type: ignore get_data: h5.Dataset = event_data["get_traces"] # type: ignore - event.get = GetEvent(get_data[:], event_id, get_params, rng) + event.get_pads = GetEvent(get_data[:], event_id, get_params, rng) if "frib_physics" in event_data: frib_1903_data: h5.Dataset = event_data["frib_physics"]["1903"] # type: ignore frib_977_data: h5.Dataset = event_data["frib_physics"]["977"] # type: ignore @@ -488,13 +507,13 @@ def read_event( events_group: h5.Group = self.file["events"] # type: ignore event_name = f"event_{event_id}" - event = Event(event_id, None, None, -1, -1) + event = Event(event_id, None, None, None, None, None, None, -1, -1) if event_name in events_group: event_data: h5.Group = events_group[event_name] # type: ignore event.original_event = event_data.attrs["orig_event"] # type: ignore event.original_run = event_data.attrs["orig_run"] # type: ignore get_data: h5.Dataset = event_data["get_traces"] # type: ignore - event.get = GetEvent(get_data[:], event_id, get_params, rng) + event.get_pads = GetEvent(get_data[:], event_id, get_params, rng) if "frib_physics" in event_data: frib_1903_data: h5.Dataset = event_data["frib_physics"]["1903"] # type: ignore frib_977_data: h5.Dataset = event_data["frib_physics"]["977"] # type: ignore @@ -522,6 +541,116 @@ def read_scalers(self) -> FribScalers | None: return None +class MergerV2Reader: + """A TraceReader for the current (1.0) libattpc_merger data + + Attributes + ---------- + file: h5py.File + The hdf5 file + run_number: int + The run_number + version: str + The version string + min_event: int + The first event number + max_event: int + The last event number + """ + + def __init__(self, file: h5.File, run_number: int): + self.file = file + self.run_number: int = run_number + self.version: str = self.file["events"].attrs["version"] # type: ignore + self.min_event = int(self.file["events"].attrs["min_event"]) # type: ignore + self.max_event = int(self.file["events"].attrs["max_event"]) # type: ignore + + def event_range(self) -> range: + return range(self.min_event, self.max_event) + + def __len__(self) -> int: + return self.max_event - self.min_event + 1 + + def first_event(self) -> int: + return self.min_event + + def last_event(self) -> int: + return self.max_event + + def read_event( + self, + event_id: int, + get_params: GetParameters, + frib_params: FribParameters, + rng: Generator, + ) -> Event: + events_group: h5.Group = self.file["events"] # type: ignore + event_name = f"event_{event_id}" + + event = Event( + event_id, None, None, None, None, None, None, self.run_number, event_id + ) + if event_name in events_group: + event_data: h5.Group = events_group[event_name] # type: ignore + get_group: h5.Group = event_data["get"] # type: ignore + get_pad_data: h5.Dataset = get_group["pads"] # type: ignore + get_si_upfront_data: h5.Dataset = get_group["silicon_upstream_front"] # type: ignore + get_si_upback_data: h5.Dataset = get_group["silicon_upstream_back"] # type: ignore + get_si_downfront_data: h5.Dataset = get_group["silicon_downstream_front"] # type: ignore + get_si_downback_data: h5.Dataset = get_group["silicon_downstream_back"] # type: ignore + event.get_pads = GetEvent(get_pad_data[:], event_id, get_params, rng) + event.get_si_upstream_front = GetEvent( + get_si_upfront_data[:], event_id, get_params, rng + ) + event.get_si_upstream_back = GetEvent( + get_si_upback_data[:], event_id, get_params, rng + ) + event.get_si_downstream_front = GetEvent( + get_si_downfront_data[:], event_id, get_params, rng + ) + event.get_si_downstream_back = GetEvent( + get_si_downback_data[:], event_id, get_params, rng + ) + if "frib_physics" in event_data: + frib_1903_data: h5.Dataset = event_data["frib_physics"]["1903"] # type: ignore + frib_977_data: h5.Dataset = event_data["frib_physics"]["977"] # type: ignore + event.frib = FribEvent( + frib_1903_data[:], frib_977_data[:], event_id, frib_params + ) + return event + + def read_raw_get_event(self, event_id: int) -> np.ndarray | None: + events_group: h5.Group = self.file["events"] # type: ignore + event_name = f"event_{event_id}" + if event_name in events_group: + event_data: h5.Group = events_group[event_name] # type: ignore + get_group: h5.Group = event_data["get"] # type: ignore + return get_group["pads"][:].copy() # type: ignore + + def read_raw_frib_event(self, event_id: int) -> np.ndarray | None: + events_group: h5.Group = self.file["events"] # type: ignore + event_name = f"event_{event_id}" + if event_name in events_group: + event_data: h5.Group = events_group[event_name] # type: ignore + if "frib_physics" in event_data: + return event_data["frib_physics"]["1903"][:].copy() # type: ignore + + def read_scalers(self) -> FribScalers | None: + if "scalers" not in self.file: + return None + scaler_group: h5.Group = self.file["scalers"] # type: ignore + scaler_min = int(scaler_group.attrs["min_event"]) # type: ignore + scaler_max = int(scaler_group.attrs["min_event"]) # type: ignore + scalers = FribScalers() + + for event in range(scaler_min, scaler_max + 1): + event_name = f"event_{event}" + if event_name in scaler_group: + event_data: h5.Dataset = scaler_group[event_name] # type: ignore + scalers.load_scalers(event, event_data) + return scalers + + def create_reader(path: Path, run_number: int) -> TraceReader | None: """Create a TraceReader @@ -552,9 +681,11 @@ def create_reader(path: Path, run_number: int) -> TraceReader | None: version = version_string_to_enum(version_string) match version: case TraceVersion.MERGER_1_0: - return MergerCurrentReader(file, run_number) + return MergerV1Reader(file, run_number) case TraceVersion.HARMONIZER_0_1: return HarmonizerReader(file, run_number) + case TraceVersion.MERGER_2_0: + return MergerV2Reader(file, run_number) case TraceVersion.INVALID: spyral_error( __name__, From 408a255506221ba450627261d3e148b69b8efff1 Mon Sep 17 00:00:00 2001 From: gwm17 Date: Tue, 15 Apr 2025 11:09:16 -0400 Subject: [PATCH 3/5] Move to 1.0.0 release candidate --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c4d2a2f..3989115 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "attpc_spyral" -version = "0.18.0" +version = "1.0.0rc0" description = "AT-TPC analysis pipeline" authors = [ {name = "gwm17", email = "gordonmccann215@gmail.com"}, From 1282e25d29ba6c5416ddddf8ef303ba1fbdecc52 Mon Sep 17 00:00:00 2001 From: gwm17 Date: Mon, 21 Apr 2025 08:22:30 -0400 Subject: [PATCH 4/5] Remove pad electronics map to avoid double map maintenance --- README.md | 1 - docs/user_guide/config/pad.md | 5 - docs/user_guide/getting_started.md | 1 - src/spyral/core/config.py | 4 - src/spyral/core/pad_map.py | 77 +- src/spyral/core/point_cloud.py | 17 +- src/spyral/data/pad_electronics.csv | 10241 -------------------------- tests/test_default_pipeline.py | 1 - tests/test_pad.py | 5 - 9 files changed, 7 insertions(+), 10345 deletions(-) delete mode 100644 src/spyral/data/pad_electronics.csv diff --git a/README.md b/README.md index dcee4a3..4af2a0f 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,6 @@ n_processes = 4 pad_params = PadParameters( pad_geometry_path=DEFAULT_MAP, pad_time_path=DEFAULT_MAP, - pad_electronics_path=DEFAULT_MAP, pad_scale_path=DEFAULT_MAP, ) diff --git a/docs/user_guide/config/pad.md b/docs/user_guide/config/pad.md index 1c2262a..c8f3bf9 100644 --- a/docs/user_guide/config/pad.md +++ b/docs/user_guide/config/pad.md @@ -6,7 +6,6 @@ The AT-TPC Pad Plane mapping of electronics channel to physical pad is controlle pad_params = PadParameters( pad_geometry_path=DEFAULT_MAP, pad_time_path=DEFAULT_MAP, - pad_electronics_path=DEFAULT_MAP, pad_scale_path=DEFAULT_MAP, ) ``` @@ -21,10 +20,6 @@ This is the path to a `.csv` file containing the mapping of pad number to X-Y co This is the path to a `.csv` file containing the mapping of pad number to a time offset. This corrects for small jitters in the timestamp on a channel by channel basis. This is parameter is currently under investigation for it's impact. -## pad_electronics_path - -This is the path to a `.csv` file containing the mapping of pad number to electronics hardware. This file is more of a utility for validating checking data and uses in plotting. - ## pad_scale_path This is the path to a `.csv` file containing the mapping of pad number to scale relative to a Big Pad. This information is used to estimate relative positional errors. diff --git a/docs/user_guide/getting_started.md b/docs/user_guide/getting_started.md index df4c529..bac2111 100644 --- a/docs/user_guide/getting_started.md +++ b/docs/user_guide/getting_started.md @@ -41,7 +41,6 @@ n_processes = 4 pad_params = PadParameters( pad_geometry_path=DEFAULT_MAP, pad_time_path=DEFAULT_MAP, - pad_electronics_path=DEFAULT_MAP, pad_scale_path=DEFAULT_MAP, ) diff --git a/src/spyral/core/config.py b/src/spyral/core/config.py index 630fb7d..8deec02 100644 --- a/src/spyral/core/config.py +++ b/src/spyral/core/config.py @@ -19,14 +19,10 @@ class PadParameters: pad_time_path: Path Path to the csv file containing the pad time corrections. If set to DEFAULT_MAP uses the packaged maps. - pad_electronics_path: Path - Path to the csv file containing the pad electronics ids. If set to DEFAULT_MAP - uses the packaged maps. """ pad_geometry_path: Path pad_time_path: Path - pad_electronics_path: Path pad_scale_path: Path diff --git a/src/spyral/core/pad_map.py b/src/spyral/core/pad_map.py index a7dddfc..21e57cf 100644 --- a/src/spyral/core/pad_map.py +++ b/src/spyral/core/pad_map.py @@ -1,7 +1,6 @@ from .constants import INVALID_PAD_ID -from .hardware_id import HardwareID, generate_electronics_id from .config import PadParameters, DEFAULT_MAP -from dataclasses import dataclass, field +from dataclasses import dataclass from importlib import resources from .legacy_beam_pads import LEGACY_BEAM_PADS @@ -23,8 +22,6 @@ class PadData: The pad time offset due to GET electronics scale: float The pad scale (big pad or small pad) - hardware: HardwareID - The pad HardwareID """ x: float = 0.0 @@ -32,7 +29,6 @@ class PadData: gain: float = 1.0 time_offset: float = 0.0 scale: float = 0.0 - hardware: HardwareID = field(default_factory=HardwareID) class PadMap: @@ -47,25 +43,19 @@ class PadMap: ---------- map: dict[int, PadData] The forward map (pad number -> PadData) - elec_map: dict[int -> int] - Essentially a reverse map of HardwareID -> pad number Methods ------- - PadMap(geometry_path: Path, gain_path: Path, time_correction_path: Path, electronics_path: Path, scale_path: Path) + PadMap(params) Construct the PadMap - load(geometry_path: Path, gain_path: Path, time_correction_path: Path, electronics_path: Path, scale_path: Path) - load the map data - get_pad_data(pad_number: int) -> PadData | None + get_pad_data(pad_number) Get the PadData for a given pad. Returns None if the pad does not exist - get_pad_from_hardware(hardware: HardwareID) -> int | None - Get the pad number for a given HardwareID. Returns None if the HardwareID is invalid - + is_beam_pad(pad_number) + Check if a pad is a beam pad (returns True if beam, False otherwise) """ def __init__(self, params: PadParameters): self.map: dict[int, PadData] = {} - self.elec_map: dict[int, int] = {} self.is_valid = False self.load(params) @@ -122,41 +112,6 @@ def load(self, params: PadParameters): entries = line.split(",") self.map[pad_number].time_offset = float(entries[0]) - # Electronics - if params.pad_electronics_path == DEFAULT_MAP: - elec_handle = directory.joinpath("pad_electronics.csv") - with resources.as_file(elec_handle) as elecpath: - elecfile = open(elecpath, "r") - elecfile.readline() - lines = elecfile.readlines() - for line in lines: - entries = line.split(",") - hardware = HardwareID( - int(entries[4]), - int(entries[0]), - int(entries[1]), - int(entries[2]), - int(entries[3]), - ) - self.map[hardware.pad_id].hardware = hardware - self.elec_map[generate_electronics_id(hardware)] = hardware.pad_id - elecfile.close() - else: - with open(params.pad_electronics_path, "r") as elecfile: - elecfile.readline() - lines = elecfile.readlines() - for line in lines: - entries = line.split(",") - hardware = HardwareID( - int(entries[4]), - int(entries[0]), - int(entries[1]), - int(entries[2]), - int(entries[3]), - ) - self.map[hardware.pad_id].hardware = hardware - self.elec_map[generate_electronics_id(hardware)] = hardware.pad_id - # Scale if params.pad_scale_path == DEFAULT_MAP: scale_handle = directory.joinpath("pad_scale.csv") @@ -199,28 +154,6 @@ def get_pad_data(self, pad_number: int) -> PadData | None: return self.map[pad_number] - def get_pad_from_hardware(self, hardware: HardwareID) -> int | None: - """Get the pad number associated with a HardwareID - - Returns None if the HardwareID is invalid - - Parameters - ---------- - hardware: HardwareID - A HardwareID - - Returns - ------- - int | None - The associated pad number, or None if the HardwareID is invalid - - """ - key = generate_electronics_id(hardware) - if key in self.elec_map.keys(): - return self.elec_map[generate_electronics_id(hardware)] - - return None - def is_beam_pad(self, pad_id: int) -> bool: """Check if a pad is a Beam Pad (TM) diff --git a/src/spyral/core/point_cloud.py b/src/spyral/core/point_cloud.py index 4a47cc4..6a188f2 100644 --- a/src/spyral/core/point_cloud.py +++ b/src/spyral/core/point_cloud.py @@ -2,7 +2,6 @@ from .config import DetectorParameters from ..correction import ElectronCorrector from ..trace.get_event import GetEvent -from .spy_log import spyral_warn from dataclasses import dataclass import numpy as np @@ -65,20 +64,8 @@ def point_cloud_from_get(event: GetEvent, pad_map: PadMap) -> PointCloud: continue pid = trace.hw_id.pad_id - check = pad_map.get_pad_from_hardware(trace.hw_id) - if check is None: - spyral_warn( - __name__, - f"When checking pad number of hardware: {trace.hw_id}, recieved None!", - ) - continue - if ( - check != pid - ): # This is dangerous! We trust the pad map over the merged data! - pid = check - - pad = pad_map.get_pad_data(check) - if pad is None or pad_map.is_beam_pad(check): + pad = pad_map.get_pad_data(pid) + if pad is None or pad_map.is_beam_pad(pid): continue for peak in trace.get_peaks(): cloud_matrix[idx, 0] = pad.x # X-coordinate, geometry diff --git a/src/spyral/data/pad_electronics.csv b/src/spyral/data/pad_electronics.csv deleted file mode 100644 index d406bd9..0000000 --- a/src/spyral/data/pad_electronics.csv +++ /dev/null @@ -1,10241 +0,0 @@ -cobo,asad,aget,aget channel,pad -7,2,1,10,9908 -7,2,1,12,9919 -7,2,1,13,9909 -7,2,1,14,9920 -7,2,1,15,9910 -7,2,1,16,9921 -7,2,1,17,9911 -7,2,1,18,9922 -7,2,1,19,9912 -7,2,1,20,9923 -7,2,1,21,9913 -7,2,1,23,9924 -7,2,1,24,9914 -7,2,1,25,9974 -7,2,1,26,9915 -7,2,1,27,9973 -7,2,1,28,9916 -7,2,1,29,9983 -7,2,1,30,9917 -7,2,1,31,9984 -7,2,1,32,9918 -7,2,1,33,9985 -7,2,1,34,9982 -7,2,1,35,9986 -7,2,1,36,9981 -7,2,1,37,9987 -7,2,1,38,9972 -7,2,1,39,9988 -7,2,1,40,9980 -7,2,1,41,10043 -7,2,1,42,9979 -7,2,1,43,10041 -7,2,1,44,9978 -7,2,1,46,10039 -7,2,1,47,9977 -7,2,1,48,10037 -7,2,1,49,9976 -7,2,1,50,10036 -7,2,1,51,9975 -7,2,1,52,10035 -7,2,1,53,10042 -7,2,1,54,10044 -7,2,1,55,10040 -7,2,1,57,10034 -7,2,1,58,10038 -7,2,1,59,10045 -7,2,1,60,10033 -7,2,1,61,10099 -7,2,1,62,10032 -7,2,1,63,10098 -7,2,1,64,10046 -7,2,1,65,10097 -7,2,1,66,10047 -7,2,1,67,10155 -7,2,0,0,10048 -7,2,0,1,10154 -7,2,0,2,10049 -7,2,0,3,10153 -7,2,0,4,10050 -7,2,0,5,10152 -7,2,0,6,10096 -7,2,0,7,10151 -7,2,0,8,10095 -7,2,0,9,10150 -7,2,0,10,10094 -7,2,0,12,10149 -7,2,0,13,10093 -7,2,0,14,10148 -7,2,0,15,10105 -7,2,0,16,10147 -7,2,0,17,10104 -7,2,0,18,10146 -7,2,0,19,10103 -7,2,0,20,10089 -7,2,0,21,10102 -7,2,0,23,10145 -7,2,0,24,10101 -7,2,0,25,10142 -7,2,0,26,10100 -7,2,0,27,10141 -7,2,0,28,10088 -7,2,0,29,10140 -7,2,0,30,10092 -7,2,0,31,10195 -7,2,0,32,10091 -7,2,0,33,10193 -7,2,0,34,10090 -7,2,0,35,10191 -7,2,0,36,10087 -7,2,0,37,10189 -7,2,0,38,10144 -7,2,0,39,10187 -7,2,0,40,10143 -7,2,0,41,10186 -7,2,0,42,10194 -7,2,0,43,10139 -7,2,0,44,10192 -7,2,0,46,10138 -7,2,0,47,10190 -7,2,0,48,10183 -7,2,0,49,10188 -7,2,0,50,10137 -7,2,0,51,10185 -7,2,0,52,10180 -7,2,0,53,10184 -7,2,0,54,10226 -7,2,0,55,10182 -7,2,0,57,10223 -7,2,0,58,10136 -7,2,0,59,10222 -7,2,0,60,10181 -7,2,0,61,10221 -7,2,0,62,10227 -7,2,0,63,10220 -7,2,0,64,10225 -7,2,0,65,10179 -7,2,0,66,10224 -7,2,0,67,10178 -7,2,3,0,9167 -7,2,3,1,9438 -7,2,3,2,9437 -7,2,3,3,9443 -7,2,3,4,9168 -7,2,3,5,9444 -7,2,3,6,9169 -7,2,3,7,9445 -7,2,3,8,9261 -7,2,3,9,9446 -7,2,3,10,9262 -7,2,3,12,8804 -7,2,3,13,9263 -7,2,3,14,8596 -7,2,3,15,9264 -7,2,3,16,8595 -7,2,3,17,9353 -7,2,3,18,8379 -7,2,3,19,9354 -7,2,3,20,9166 -7,2,3,21,9355 -7,2,3,23,9525 -7,2,3,24,9356 -7,2,3,25,7193 -7,2,3,26,8378 -7,2,3,27,9524 -7,2,3,28,8594 -7,2,3,29,9530 -7,2,3,30,8593 -7,2,3,31,9531 -7,2,3,32,8801 -7,2,3,33,9532 -7,2,3,34,9523 -7,2,3,35,9533 -7,2,3,36,8802 -7,2,3,37,7196 -7,2,3,38,8800 -7,2,3,39,9349 -7,2,3,40,8799 -7,2,3,41,9439 -7,2,3,42,8591 -7,2,3,43,9526 -7,2,3,44,8592 -7,2,3,46,9610 -7,2,3,47,8376 -7,2,3,48,9609 -7,2,3,49,8797 -7,2,3,50,9611 -7,2,3,51,8798 -7,2,3,52,9608 -7,2,3,53,8590 -7,2,3,54,9527 -7,2,3,55,8589 -7,2,3,57,9614 -7,2,3,58,8373 -7,2,3,59,9615 -7,2,3,60,9007 -7,2,3,61,9616 -7,2,3,62,9008 -7,2,3,63,9617 -7,2,3,64,9607 -7,2,3,65,9440 -7,2,3,66,9606 -7,2,3,67,9350 -7,2,2,0,9006 -7,2,2,1,9612 -7,2,2,2,9005 -7,2,2,3,9528 -7,2,2,4,9004 -7,2,2,5,9441 -7,2,2,6,9003 -7,2,2,7,9351 -7,2,2,8,7937 -7,2,2,9,9613 -7,2,2,10,7944 -7,2,2,12,9691 -7,2,2,13,7945 -7,2,2,14,9690 -7,2,2,15,7928 -7,2,2,16,9688 -7,2,2,17,7926 -7,2,2,18,9695 -7,2,2,19,7925 -7,2,2,20,9696 -7,2,2,21,7923 -7,2,2,23,9697 -7,2,2,24,9687 -7,2,2,25,9698 -7,2,2,26,7929 -7,2,2,27,9529 -7,2,2,28,7927 -7,2,2,29,9442 -7,2,2,30,7924 -7,2,2,31,9352 -7,2,2,32,7922 -7,2,2,33,9260 -7,2,2,34,9347 -7,2,2,35,9259 -7,2,2,36,9346 -7,2,2,37,9258 -7,2,2,38,9345 -7,2,2,39,9257 -7,2,2,40,9255 -7,2,2,41,9163 -7,2,2,42,9162 -7,2,2,43,9766 -7,2,2,44,9161 -7,2,2,46,9765 -7,2,2,47,9344 -7,2,2,48,9256 -7,2,2,49,9843 -7,2,2,50,9348 -7,2,2,51,9844 -7,2,2,52,9767 -7,2,2,53,9764 -7,2,2,54,9768 -7,2,2,55,9845 -7,2,2,57,9769 -7,2,2,58,9846 -7,2,2,59,9770 -7,2,2,60,9847 -7,2,2,61,9771 -7,2,2,62,9848 -7,2,2,63,9772 -7,2,2,64,9849 -7,2,2,65,9773 -7,2,2,66,9850 -7,2,2,67,9774 -7,2,1,0,9851 -7,2,1,1,9775 -7,2,1,2,9852 -7,2,1,3,9776 -7,2,1,4,9853 -7,2,1,5,9840 -7,2,1,6,9839 -7,2,1,7,9842 -7,2,1,8,9838 -7,2,1,9,9841 -7,3,1,10,9760 -7,3,1,12,9907 -7,3,1,13,9682 -7,3,1,14,9837 -7,3,1,15,9601 -7,3,1,16,9906 -7,3,1,17,7917 -7,3,1,18,9836 -7,3,1,19,9430 -7,3,1,20,9835 -7,3,1,21,9759 -7,3,1,23,9834 -7,3,1,24,9905 -7,3,1,25,9833 -7,3,1,26,9681 -7,3,1,27,9903 -7,3,1,28,9600 -7,3,1,29,9904 -7,3,1,30,9516 -7,3,1,31,9967 -7,3,1,32,9429 -7,3,1,33,9902 -7,3,1,34,9339 -7,3,1,35,9832 -7,3,1,36,9247 -7,3,1,37,9757 -7,3,1,38,9153 -7,3,1,39,9679 -7,3,1,40,9758 -7,3,1,41,9900 -7,3,1,42,9680 -7,3,1,43,9971 -7,3,1,44,9599 -7,3,1,46,9970 -7,3,1,47,9515 -7,3,1,48,9830 -7,3,1,49,9428 -7,3,1,50,9755 -7,3,1,51,9338 -7,3,1,52,9677 -7,3,1,53,9246 -7,3,1,54,9596 -7,3,1,55,9969 -7,3,1,57,9512 -7,3,1,58,9598 -7,3,1,59,9425 -7,3,1,60,9514 -7,3,1,61,9899 -7,3,1,62,9427 -7,3,1,63,9829 -7,3,1,64,9337 -7,3,1,65,9754 -7,3,1,66,9901 -7,3,1,67,9676 -7,3,0,0,9831 -7,3,0,1,9595 -7,3,0,2,9756 -7,3,0,3,9511 -7,3,0,4,9678 -7,3,0,5,10031 -7,3,0,6,9597 -7,3,0,7,9898 -7,3,0,8,9513 -7,3,0,9,9828 -7,3,0,10,9426 -7,3,0,12,9753 -7,3,0,13,10030 -7,3,0,14,9675 -7,3,0,15,9752 -7,3,0,16,9594 -7,3,0,17,9968 -7,3,0,18,9897 -7,3,0,19,9674 -7,3,0,20,9827 -7,3,0,21,9896 -7,3,0,23,9826 -7,3,0,24,9751 -7,3,0,25,9895 -7,3,0,26,9673 -7,3,0,27,9825 -7,3,0,28,9894 -7,3,0,29,9750 -7,3,0,30,9824 -7,3,0,31,9964 -7,3,0,32,9893 -7,3,0,33,9963 -7,3,0,34,7918 -7,3,0,35,9962 -7,3,0,36,9966 -7,3,0,37,10086 -7,3,0,38,9965 -7,3,0,39,9959 -7,3,0,40,9961 -7,3,0,41,9958 -7,3,0,42,9960 -7,3,0,43,10029 -7,3,0,44,10085 -7,3,0,46,10028 -7,3,0,47,10084 -7,3,0,48,10027 -7,3,0,49,10025 -7,3,0,50,10026 -7,3,0,51,10024 -7,3,0,52,10219 -7,3,0,53,10023 -7,3,0,54,10218 -7,3,0,55,10022 -7,3,0,57,10217 -7,3,0,58,10021 -7,3,0,59,10216 -7,3,0,60,10083 -7,3,0,61,10215 -7,3,0,62,10082 -7,3,0,63,10135 -7,3,0,64,10081 -7,3,0,65,10134 -7,3,0,66,10080 -7,3,0,67,10133 -7,3,3,0,8983 -7,3,3,1,8996 -7,3,3,2,8986 -7,3,3,3,8993 -7,3,3,4,8984 -7,3,3,5,8991 -7,3,3,6,8792 -7,3,3,7,8990 -7,3,3,8,8791 -7,3,3,9,8998 -7,3,3,10,8583 -7,3,3,12,9436 -7,3,3,13,8584 -7,3,3,14,9435 -7,3,3,15,8368 -7,3,3,16,8999 -7,3,3,17,8789 -7,3,3,18,9002 -7,3,3,19,9434 -7,3,3,20,9000 -7,3,3,21,8790 -7,3,3,23,8997 -7,3,3,24,8582 -7,3,3,25,8988 -7,3,3,26,8581 -7,3,3,27,8995 -7,3,3,28,8365 -7,3,3,29,8994 -7,3,3,30,8787 -7,3,3,31,8992 -7,3,3,32,8788 -7,3,3,33,8989 -7,3,3,34,8580 -7,3,3,35,8987 -7,3,3,36,8579 -7,3,3,37,8985 -7,3,3,38,8363 -7,3,3,39,9522 -7,3,3,40,8786 -7,3,3,41,9521 -7,3,3,42,8785 -7,3,3,43,8795 -7,3,3,44,8577 -7,3,3,46,8796 -7,3,3,47,8578 -7,3,3,48,8588 -7,3,3,49,8362 -7,3,3,50,8587 -7,3,3,51,9520 -7,3,3,52,8371 -7,3,3,53,8784 -7,3,3,54,8794 -7,3,3,55,8783 -7,3,3,57,8793 -7,3,3,58,8575 -7,3,3,59,8585 -7,3,3,60,8576 -7,3,3,61,8586 -7,3,3,62,8360 -7,3,3,63,8370 -7,3,3,64,8982 -7,3,3,65,9254 -7,3,3,66,8980 -7,3,3,67,9253 -7,3,2,0,8981 -7,3,2,1,9605 -7,3,2,2,8979 -7,3,2,3,9160 -7,3,2,4,8781 -7,3,2,5,9252 -7,3,2,6,8779 -7,3,2,7,9159 -7,3,2,8,9604 -7,3,2,9,9158 -7,3,2,10,8782 -7,3,2,12,8977 -7,3,2,13,9603 -7,3,2,14,8978 -7,3,2,15,8780 -7,3,2,16,8778 -7,3,2,17,8574 -7,3,2,18,8777 -7,3,2,19,8572 -7,3,2,20,8569 -7,3,2,21,8573 -7,3,2,23,8570 -7,3,2,24,8571 -7,3,2,25,8975 -7,3,2,26,8357 -7,3,2,27,8976 -7,3,2,28,9433 -7,3,2,29,8776 -7,3,2,30,9343 -7,3,2,31,9686 -7,3,2,32,9251 -7,3,2,33,9685 -7,3,2,34,9157 -7,3,2,35,8775 -7,3,2,36,7209 -7,3,2,37,8567 -7,3,2,38,9519 -7,3,2,39,9518 -7,3,2,40,9684 -7,3,2,41,9431 -7,3,2,42,9432 -7,3,2,43,9341 -7,3,2,44,9342 -7,3,2,46,9249 -7,3,2,47,9250 -7,3,2,48,9155 -7,3,2,49,9156 -7,3,2,50,9517 -7,3,2,51,9689 -7,3,2,52,9340 -7,3,2,53,8974 -7,3,2,54,9248 -7,3,2,55,8973 -7,3,2,57,9154 -7,3,2,58,8773 -7,3,2,59,9763 -7,3,2,60,8774 -7,3,2,61,8969 -7,3,2,62,8972 -7,3,2,63,8970 -7,3,2,64,8971 -7,3,2,65,8967 -7,3,2,66,8771 -7,3,2,67,8968 -7,3,1,0,8772 -7,3,1,1,8770 -7,3,1,2,9762 -7,3,1,3,8768 -7,3,1,4,9761 -7,3,1,5,8966 -7,3,1,6,9683 -7,3,1,7,8965 -7,3,1,8,9602 -7,3,1,9,8964 -3,2,1,10,9041 -3,2,1,12,8430 -3,2,1,13,7487 -3,2,1,14,9361 -3,2,1,15,9360 -3,2,1,16,8207 -3,2,1,17,7488 -3,2,1,18,8206 -3,2,1,19,7733 -3,2,1,20,9043 -3,2,1,21,7732 -3,2,1,23,9044 -3,2,1,24,7237 -3,2,1,25,8431 -3,2,1,26,7489 -3,2,1,27,8208 -3,2,1,28,7490 -3,2,1,29,8209 -3,2,1,30,7735 -3,2,1,31,9045 -3,2,1,32,7734 -3,2,1,33,9046 -3,2,1,34,7240 -3,2,1,35,9042 -3,2,1,36,7492 -3,2,1,37,8204 -3,2,1,38,7491 -3,2,1,39,8205 -3,2,1,40,9359 -3,2,1,41,9451 -3,2,1,42,9450 -3,2,1,43,8428 -3,2,1,44,7736 -3,2,1,46,9040 -3,2,1,47,7737 -3,2,1,48,9039 -3,2,1,49,8196 -3,2,1,50,8203 -3,2,1,51,7966 -3,2,1,52,8202 -3,2,1,53,7967 -3,2,1,54,8425 -3,2,1,55,8422 -3,2,1,57,8201 -3,2,1,58,8199 -3,2,1,59,8200 -3,2,1,60,8198 -3,2,1,61,8423 -3,2,1,62,7968 -3,2,1,63,8840 -3,2,1,64,7969 -3,2,1,65,8839 -3,2,1,66,7971 -3,2,1,67,8631 -3,2,0,0,7970 -3,2,0,1,9538 -3,2,0,2,9537 -3,2,0,3,8632 -3,2,0,4,8197 -3,2,0,5,8416 -3,2,0,6,8420 -3,2,0,7,8842 -3,2,0,8,9269 -3,2,0,9,8841 -3,2,0,10,7965 -3,2,0,12,8633 -3,2,0,13,8195 -3,2,0,14,8634 -3,2,0,15,8194 -3,2,0,16,8418 -3,2,0,17,8417 -3,2,0,18,8843 -3,2,0,19,7962 -3,2,0,20,8844 -3,2,0,21,7963 -3,2,0,23,8636 -3,2,0,24,8193 -3,2,0,25,8635 -3,2,0,26,8192 -3,2,0,27,8419 -3,2,0,28,9536 -3,2,0,29,9622 -3,2,0,30,9621 -3,2,0,31,8845 -3,2,0,32,8415 -3,2,0,33,8846 -3,2,0,34,7235 -3,2,0,35,8638 -3,2,0,36,7731 -3,2,0,37,8637 -3,2,0,38,7730 -3,2,0,39,8421 -3,2,0,40,7485 -3,2,0,41,8848 -3,2,0,42,7486 -3,2,0,43,8847 -3,2,0,44,7234 -3,2,0,46,8639 -3,2,0,47,7729 -3,2,0,48,8640 -3,2,0,49,7728 -3,2,0,50,8424 -3,2,0,51,7483 -3,2,0,52,8850 -3,2,0,53,7484 -3,2,0,54,8849 -3,2,0,55,7232 -3,2,0,57,9703 -3,2,0,58,9702 -3,2,0,59,8641 -3,2,0,60,7726 -3,2,0,61,8642 -3,2,0,62,7727 -3,2,0,63,8426 -3,2,0,64,9701 -3,2,0,65,8851 -3,2,0,66,9780 -3,2,0,67,9781 -3,2,3,0,8186 -3,2,3,1,8189 -3,2,3,2,8183 -3,2,3,3,8191 -3,2,3,4,8180 -3,2,3,5,6964 -3,2,3,6,8184 -3,2,3,7,7223 -3,2,3,8,6421 -3,2,3,9,6965 -3,2,3,10,6691 -3,2,3,12,6700 -3,2,3,13,6957 -3,2,3,14,8412 -3,2,3,15,8406 -3,2,3,16,8409 -3,2,3,17,8407 -3,2,3,18,8414 -3,2,3,19,7215 -3,2,3,20,6699 -3,2,3,21,7468 -3,2,3,23,6701 -3,2,3,24,7712 -3,2,3,25,6702 -3,2,3,26,6959 -3,2,3,27,8413 -3,2,3,28,8408 -3,2,3,29,8411 -3,2,3,30,8405 -3,2,3,31,8410 -3,2,3,32,8404 -3,2,3,33,6967 -3,2,3,34,6694 -3,2,3,35,6966 -3,2,3,36,6693 -3,2,3,37,7225 -3,2,3,38,6422 -3,2,3,39,8629 -3,2,3,40,6958 -3,2,3,41,8627 -3,2,3,42,8621 -3,2,3,43,8626 -3,2,3,44,8624 -3,2,3,46,7718 -3,2,3,47,7217 -3,2,3,48,7719 -3,2,3,49,7953 -3,2,3,50,7474 -3,2,3,51,7715 -3,2,3,52,7473 -3,2,3,53,7714 -3,2,3,54,8625 -3,2,3,55,8623 -3,2,3,57,8628 -3,2,3,58,8622 -3,2,3,59,8630 -3,2,3,60,8619 -3,2,3,61,7221 -3,2,3,62,7469 -3,2,3,63,7721 -3,2,3,64,7470 -3,2,3,65,7720 -3,2,3,66,7218 -3,2,3,67,8838 -3,2,2,0,6425 -3,2,2,1,8836 -3,2,2,2,8830 -3,2,2,3,8833 -3,2,2,4,8831 -3,2,2,5,7475 -3,2,2,6,6696 -3,2,2,7,7476 -3,2,2,8,6695 -3,2,2,9,7224 -3,2,2,10,6960 -3,2,2,12,7723 -3,2,2,13,6961 -3,2,2,14,8834 -3,2,2,15,8829 -3,2,2,16,8835 -3,2,2,17,8828 -3,2,2,18,8837 -3,2,2,19,8832 -3,2,2,20,7722 -3,2,2,21,7220 -3,2,2,23,7477 -3,2,2,24,9708 -3,2,2,25,7478 -3,2,2,26,9709 -3,2,2,27,9037 -3,2,2,28,9710 -3,2,2,29,9035 -3,2,2,30,9029 -3,2,2,31,9034 -3,2,2,32,9032 -3,2,2,33,7226 -3,2,2,34,6427 -3,2,2,35,7227 -3,2,2,36,6698 -3,2,2,37,7479 -3,2,2,38,6697 -3,2,2,39,7480 -3,2,2,40,6962 -3,2,2,41,9036 -3,2,2,42,9031 -3,2,2,43,9033 -3,2,2,44,9030 -3,2,2,46,9038 -3,2,2,47,9027 -3,2,2,48,7959 -3,2,2,49,6963 -3,2,2,50,7958 -3,2,2,51,7716 -3,2,2,52,7961 -3,2,2,53,7717 -3,2,2,54,7960 -3,2,2,55,7472 -3,2,2,57,8190 -3,2,2,58,7471 -3,2,2,59,8188 -3,2,2,60,7219 -3,2,2,61,8187 -3,2,2,62,8182 -3,2,2,63,9175 -3,2,2,64,9174 -3,2,2,65,9176 -3,2,2,66,7952 -3,2,2,67,7725 -3,2,1,0,7951 -3,2,1,1,7724 -3,2,1,2,8185 -3,2,1,3,7229 -3,2,1,4,7955 -3,2,1,5,7481 -3,2,1,6,7954 -3,2,1,7,7482 -3,2,1,8,9173 -3,2,1,9,9268 -3,3,1,10,9014 -3,3,1,12,7447 -3,3,1,13,8377 -3,3,1,14,9358 -3,3,1,15,9357 -3,3,1,16,7448 -3,3,1,17,8154 -3,3,1,18,7693 -3,3,1,19,8155 -3,3,1,20,7692 -3,3,1,21,9011 -3,3,1,23,7194 -3,3,1,24,9012 -3,3,1,25,7446 -3,3,1,26,8375 -3,3,1,27,7445 -3,3,1,28,8152 -3,3,1,29,7690 -3,3,1,30,8153 -3,3,1,31,7691 -3,3,1,32,9010 -3,3,1,33,7192 -3,3,1,34,9009 -3,3,1,35,7444 -3,3,1,36,9013 -3,3,1,37,7443 -3,3,1,38,8156 -3,3,1,39,9449 -3,3,1,40,8157 -3,3,1,41,9448 -3,3,1,42,9447 -3,3,1,43,7688 -3,3,1,44,8380 -3,3,1,46,7689 -3,3,1,47,9016 -3,3,1,48,8164 -3,3,1,49,9015 -3,3,1,50,7934 -3,3,1,51,8158 -3,3,1,52,7935 -3,3,1,53,8159 -3,3,1,54,8385 -3,3,1,55,8382 -3,3,1,57,8162 -3,3,1,58,8161 -3,3,1,59,8163 -3,3,1,60,8160 -3,3,1,61,7933 -3,3,1,62,8383 -3,3,1,63,7932 -3,3,1,64,8816 -3,3,1,65,7931 -3,3,1,66,8815 -3,3,1,67,7930 -3,3,0,0,8607 -3,3,0,1,9535 -3,3,0,2,9534 -3,3,0,3,8165 -3,3,0,4,8608 -3,3,0,5,8388 -3,3,0,6,8392 -3,3,0,7,9265 -3,3,0,8,8813 -3,3,0,9,7936 -3,3,0,10,8814 -3,3,0,12,8166 -3,3,0,13,8606 -3,3,0,14,8167 -3,3,0,15,8605 -3,3,0,16,8390 -3,3,0,17,8389 -3,3,0,18,7938 -3,3,0,19,8811 -3,3,0,20,7939 -3,3,0,21,8812 -3,3,0,23,8169 -3,3,0,24,8604 -3,3,0,25,8168 -3,3,0,26,8603 -3,3,0,27,9620 -3,3,0,28,8387 -3,3,0,29,9619 -3,3,0,30,9618 -3,3,0,31,8391 -3,3,0,32,8810 -3,3,0,33,7195 -3,3,0,34,8809 -3,3,0,35,7694 -3,3,0,36,8601 -3,3,0,37,7695 -3,3,0,38,8602 -3,3,0,39,7450 -3,3,0,40,8386 -3,3,0,41,7449 -3,3,0,42,8808 -3,3,0,43,7197 -3,3,0,44,8807 -3,3,0,46,7697 -3,3,0,47,8599 -3,3,0,48,7696 -3,3,0,49,8600 -3,3,0,50,7451 -3,3,0,51,8384 -3,3,0,52,7452 -3,3,0,53,8805 -3,3,0,54,7200 -3,3,0,55,8806 -3,3,0,57,9700 -3,3,0,58,9699 -3,3,0,59,7699 -3,3,0,60,8598 -3,3,0,61,7698 -3,3,0,62,8597 -3,3,0,63,9779 -3,3,0,64,8381 -3,3,0,65,9778 -3,3,0,66,8803 -3,3,0,67,9777 -3,3,3,0,8175 -3,3,3,1,8178 -3,3,3,2,8173 -3,3,3,3,8181 -3,3,3,4,8170 -3,3,3,5,8176 -3,3,3,6,6948 -3,3,3,7,6420 -3,3,3,8,7207 -3,3,3,9,6692 -3,3,3,10,6949 -3,3,3,12,6956 -3,3,3,13,6684 -3,3,3,14,8401 -3,3,3,15,8396 -3,3,3,16,8399 -3,3,3,17,8398 -3,3,3,18,7216 -3,3,3,19,8393 -3,3,3,20,7467 -3,3,3,21,6683 -3,3,3,23,7713 -3,3,3,24,6682 -3,3,3,25,6954 -3,3,3,26,6681 -3,3,3,27,8400 -3,3,3,28,8394 -3,3,3,29,8402 -3,3,3,30,8395 -3,3,3,31,8403 -3,3,3,32,8397 -3,3,3,33,6689 -3,3,3,34,6946 -3,3,3,35,6690 -3,3,3,36,6947 -3,3,3,37,6419 -3,3,3,38,7206 -3,3,3,39,6955 -3,3,3,40,8610 -3,3,3,41,8618 -3,3,3,42,8611 -3,3,3,43,8616 -3,3,3,44,8613 -3,3,3,46,7214 -3,3,3,47,7707 -3,3,3,48,7948 -3,3,3,49,7706 -3,3,3,50,7710 -3,3,3,51,7461 -3,3,3,52,7711 -3,3,3,53,7462 -3,3,3,54,8615 -3,3,3,55,8614 -3,3,3,57,8617 -3,3,3,58,8612 -3,3,3,59,8620 -3,3,3,60,8609 -3,3,3,61,7466 -3,3,3,62,7210 -3,3,3,63,7465 -3,3,3,64,7705 -3,3,3,65,7213 -3,3,3,66,7704 -3,3,3,67,6417 -3,3,2,0,8817 -3,3,2,1,8825 -3,3,2,2,8820 -3,3,2,3,8823 -3,3,2,4,8822 -3,3,2,5,6688 -3,3,2,6,7459 -3,3,2,7,6687 -3,3,2,8,7460 -3,3,2,9,6952 -3,3,2,10,7208 -3,3,2,12,6953 -3,3,2,13,7702 -3,3,2,14,8826 -3,3,2,15,8821 -3,3,2,16,8827 -3,3,2,17,8819 -3,3,2,18,8824 -3,3,2,19,8818 -3,3,2,20,7212 -3,3,2,21,7703 -3,3,2,23,9694 -3,3,2,24,7458 -3,3,2,25,9693 -3,3,2,26,7457 -3,3,2,27,9692 -3,3,2,28,9018 -3,3,2,29,9026 -3,3,2,30,9019 -3,3,2,31,9024 -3,3,2,32,9021 -3,3,2,33,6414 -3,3,2,34,7205 -3,3,2,35,6685 -3,3,2,36,7203 -3,3,2,37,6686 -3,3,2,38,7455 -3,3,2,39,6951 -3,3,2,40,7456 -3,3,2,41,9023 -3,3,2,42,9020 -3,3,2,43,9025 -3,3,2,44,9022 -3,3,2,46,9028 -3,3,2,47,9017 -3,3,2,48,6950 -3,3,2,49,7943 -3,3,2,50,7708 -3,3,2,51,7942 -3,3,2,52,7709 -3,3,2,53,7940 -3,3,2,54,7464 -3,3,2,55,7941 -3,3,2,57,7463 -3,3,2,58,8171 -3,3,2,59,7211 -3,3,2,60,8172 -3,3,2,61,8179 -3,3,2,62,8174 -3,3,2,63,9172 -3,3,2,64,9171 -3,3,2,65,7949 -3,3,2,66,9170 -3,3,2,67,7950 -3,3,1,0,7701 -3,3,1,1,8177 -3,3,1,2,7700 -3,3,1,3,7947 -3,3,1,4,7202 -3,3,1,5,7946 -3,3,1,6,7454 -3,3,1,7,9267 -3,3,1,8,7453 -3,3,1,9,9266 -1,3,1,10,7651 -1,3,1,12,7896 -1,3,1,13,7890 -1,3,1,14,7894 -1,3,1,15,7884 -1,3,1,16,7895 -1,3,1,17,7889 -1,3,1,18,7893 -1,3,1,19,7880 -1,3,1,20,7897 -1,3,1,21,7887 -1,3,1,23,7891 -1,3,1,24,7878 -1,3,1,25,7898 -1,3,1,26,7877 -1,3,1,27,8124 -1,3,1,28,7888 -1,3,1,29,8123 -1,3,1,30,7875 -1,3,1,31,7892 -1,3,1,32,7886 -1,3,1,33,8121 -1,3,1,34,7872 -1,3,1,35,7660 -1,3,1,36,7870 -1,3,1,37,7659 -1,3,1,38,7885 -1,3,1,39,8118 -1,3,1,40,7869 -1,3,1,41,7657 -1,3,1,42,7883 -1,3,1,43,7655 -1,3,1,44,7867 -1,3,1,46,7654 -1,3,1,47,8116 -1,3,1,48,8120 -1,3,1,49,8115 -1,3,1,50,8119 -1,3,1,51,8108 -1,3,1,52,7653 -1,3,1,53,8113 -1,3,1,54,8117 -1,3,1,55,8107 -1,3,1,57,8114 -1,3,1,58,8110 -1,3,1,59,7652 -1,3,1,60,8105 -1,3,1,61,6364 -1,3,1,62,8102 -1,3,1,63,8342 -1,3,1,64,8112 -1,3,1,65,8340 -1,3,1,66,8100 -1,3,1,67,7159 -1,3,0,0,8099 -1,3,0,1,8337 -1,3,0,2,8111 -1,3,0,3,8335 -1,3,0,4,8106 -1,3,0,5,6900 -1,3,0,6,8109 -1,3,0,7,8339 -1,3,0,8,8104 -1,3,0,9,6901 -1,3,0,10,8103 -1,3,0,12,6636 -1,3,0,13,8334 -1,3,0,14,8338 -1,3,0,15,8101 -1,3,0,16,7158 -1,3,0,17,8332 -1,3,0,18,8336 -1,3,0,19,6897 -1,3,0,20,8333 -1,3,0,21,8329 -1,3,0,23,6899 -1,3,0,24,8327 -1,3,0,25,6898 -1,3,0,26,8326 -1,3,0,27,8554 -1,3,0,28,8331 -1,3,0,29,8552 -1,3,0,30,6632 -1,3,0,31,6633 -1,3,0,32,6631 -1,3,0,33,8549 -1,3,0,34,8330 -1,3,0,35,6634 -1,3,0,36,6896 -1,3,0,37,8547 -1,3,0,38,8328 -1,3,0,39,6635 -1,3,0,40,7153 -1,3,0,41,7156 -1,3,0,42,6894 -1,3,0,43,8550 -1,3,0,44,6895 -1,3,0,46,6630 -1,3,0,47,8546 -1,3,0,48,6629 -1,3,0,49,6627 -1,3,0,50,8548 -1,3,0,51,7150 -1,3,0,52,7151 -1,3,0,53,6891 -1,3,0,54,6892 -1,3,0,55,8545 -1,3,0,57,6625 -1,3,0,58,6893 -1,3,0,59,6626 -1,3,0,60,6628 -1,3,0,61,7148 -1,3,0,62,8544 -1,3,0,63,6889 -1,3,0,64,6890 -1,3,0,65,6888 -1,3,0,66,6624 -1,3,0,67,6623 -1,3,3,0,6388 -1,3,3,1,6664 -1,3,3,2,6387 -1,3,3,3,6661 -1,3,3,4,6391 -1,3,3,5,5845 -1,3,3,6,6385 -1,3,3,7,6659 -1,3,3,8,6389 -1,3,3,9,5556 -1,3,3,10,6386 -1,3,3,12,6124 -1,3,3,13,6384 -1,3,3,14,6662 -1,3,3,15,6658 -1,3,3,16,6390 -1,3,3,17,6382 -1,3,3,18,6660 -1,3,3,19,6656 -1,3,3,20,6392 -1,3,3,21,6383 -1,3,3,23,6125 -1,3,3,24,6653 -1,3,3,25,6657 -1,3,3,26,6651 -1,3,3,27,5843 -1,3,3,28,6380 -1,3,3,29,6126 -1,3,3,30,6655 -1,3,3,31,6925 -1,3,3,32,6381 -1,3,3,33,6393 -1,3,3,34,6654 -1,3,3,35,6922 -1,3,3,36,6103 -1,3,3,37,6394 -1,3,3,38,6652 -1,3,3,39,6920 -1,3,3,40,6650 -1,3,3,41,6919 -1,3,3,42,6379 -1,3,3,43,6395 -1,3,3,44,6649 -1,3,3,46,6923 -1,3,3,47,6378 -1,3,3,48,6397 -1,3,3,49,6100 -1,3,3,50,6921 -1,3,3,51,6917 -1,3,3,52,6396 -1,3,3,53,6121 -1,3,3,54,6399 -1,3,3,55,6914 -1,3,3,57,6918 -1,3,3,58,6122 -1,3,3,59,6916 -1,3,3,60,6912 -1,3,3,61,6400 -1,3,3,62,5554 -1,3,3,63,6398 -1,3,3,64,5844 -1,3,3,65,6666 -1,3,3,66,6915 -1,3,3,67,7177 -1,3,2,0,5841 -1,3,2,1,6648 -1,3,2,2,6913 -1,3,2,3,7175 -1,3,2,4,6647 -1,3,2,5,7174 -1,3,2,6,6910 -1,3,2,7,6376 -1,3,2,8,6377 -1,3,2,9,6098 -1,3,2,10,6911 -1,3,2,12,6646 -1,3,2,13,6099 -1,3,2,14,7176 -1,3,2,15,7172 -1,3,2,16,6645 -1,3,2,17,7169 -1,3,2,18,7173 -1,3,2,19,6375 -1,3,2,20,6374 -1,3,2,21,6908 -1,3,2,23,7171 -1,3,2,24,7167 -1,3,2,25,6097 -1,3,2,26,6909 -1,3,2,27,7166 -1,3,2,28,6644 -1,3,2,29,6907 -1,3,2,30,7170 -1,3,2,31,7425 -1,3,2,32,6643 -1,3,2,33,6906 -1,3,2,34,7168 -1,3,2,35,7423 -1,3,2,36,6372 -1,3,2,37,6641 -1,3,2,38,7165 -1,3,2,39,7422 -1,3,2,40,7163 -1,3,2,41,7420 -1,3,2,42,5266 -1,3,2,43,6642 -1,3,2,44,5265 -1,3,2,46,7424 -1,3,2,47,5267 -1,3,2,48,6371 -1,3,2,49,7164 -1,3,2,50,7421 -1,3,2,51,7417 -1,3,2,52,7161 -1,3,2,53,6905 -1,3,2,54,7419 -1,3,2,55,7415 -1,3,2,57,6902 -1,3,2,58,7414 -1,3,2,59,7418 -1,3,2,60,6904 -1,3,2,61,6903 -1,3,2,62,6639 -1,3,2,63,6638 -1,3,2,64,6640 -1,3,2,65,7666 -1,3,2,66,7416 -1,3,2,67,7664 -1,3,1,0,6369 -1,3,1,1,6637 -1,3,1,2,7413 -1,3,1,3,7663 -1,3,1,4,7658 -1,3,1,5,6366 -1,3,1,6,7411 -1,3,1,7,7661 -1,3,1,8,7656 -1,3,1,9,7662 -1,2,1,10,7899 -1,2,1,12,8132 -1,2,1,13,7901 -1,2,1,14,7919 -1,2,1,15,8131 -1,2,1,16,8135 -1,2,1,17,8129 -1,2,1,18,8133 -1,2,1,19,7204 -1,2,1,20,7681 -1,2,1,21,8126 -1,2,1,23,8130 -1,2,1,24,6945 -1,2,1,25,7680 -1,2,1,26,6944 -1,2,1,27,7435 -1,2,1,28,6679 -1,2,1,29,7916 -1,2,1,30,7902 -1,2,1,31,7678 -1,2,1,32,8128 -1,2,1,33,7679 -1,2,1,34,8127 -1,2,1,35,8353 -1,2,1,36,8125 -1,2,1,37,7914 -1,2,1,38,8122 -1,2,1,39,8351 -1,2,1,40,7904 -1,2,1,41,8350 -1,2,1,42,7907 -1,2,1,43,7921 -1,2,1,44,7909 -1,2,1,46,7683 -1,2,1,47,7910 -1,2,1,48,7682 -1,2,1,49,8140 -1,2,1,50,7437 -1,2,1,51,8348 -1,2,1,52,8352 -1,2,1,53,8345 -1,2,1,54,8349 -1,2,1,55,8343 -1,2,1,57,8347 -1,2,1,58,8139 -1,2,1,59,7439 -1,2,1,60,8137 -1,2,1,61,7440 -1,2,1,62,8134 -1,2,1,63,7685 -1,2,1,64,8142 -1,2,1,65,7684 -1,2,1,66,8145 -1,2,1,67,7441 -1,2,0,0,8346 -1,2,0,1,9164 -1,2,0,2,8344 -1,2,0,3,8563 -1,2,0,4,8341 -1,2,0,5,8562 -1,2,0,6,7915 -1,2,0,7,7442 -1,2,0,8,7912 -1,2,0,9,7687 -1,2,0,10,8144 -1,2,0,12,8147 -1,2,0,13,8143 -1,2,0,14,8148 -1,2,0,15,8141 -1,2,0,16,8150 -1,2,0,17,8557 -1,2,0,18,8561 -1,2,0,19,8560 -1,2,0,20,8559 -1,2,0,21,8555 -1,2,0,23,7686 -1,2,0,24,8138 -1,2,0,25,8146 -1,2,0,26,8136 -1,2,0,27,8149 -1,2,0,28,8356 -1,2,0,29,8151 -1,2,0,30,8358 -1,2,0,31,8369 -1,2,0,32,8558 -1,2,0,33,8372 -1,2,0,34,8556 -1,2,0,35,8767 -1,2,0,36,8553 -1,2,0,37,8766 -1,2,0,38,8551 -1,2,0,39,8764 -1,2,0,40,8359 -1,2,0,41,8374 -1,2,0,42,8361 -1,2,0,43,8769 -1,2,0,44,8364 -1,2,0,46,8564 -1,2,0,47,8366 -1,2,0,48,8765 -1,2,0,49,8367 -1,2,0,50,8565 -1,2,0,51,8761 -1,2,0,52,8354 -1,2,0,53,8759 -1,2,0,54,8355 -1,2,0,55,8758 -1,2,0,57,8763 -1,2,0,58,8961 -1,2,0,59,8762 -1,2,0,60,8959 -1,2,0,61,8568 -1,2,0,62,8960 -1,2,0,63,8963 -1,2,0,64,8760 -1,2,0,65,8566 -1,2,0,66,8757 -1,2,0,67,8962 -1,2,3,0,5850 -1,2,3,1,6418 -1,2,3,2,5847 -1,2,3,3,6140 -1,2,3,4,5855 -1,2,3,5,6141 -1,2,3,6,6665 -1,2,3,7,5856 -1,2,3,8,6405 -1,2,3,9,6933 -1,2,3,10,6127 -1,2,3,12,6930 -1,2,3,13,5852 -1,2,3,14,6935 -1,2,3,15,5853 -1,2,3,16,6936 -1,2,3,17,5857 -1,2,3,18,6667 -1,2,3,19,5849 -1,2,3,20,6934 -1,2,3,21,6134 -1,2,3,23,6932 -1,2,3,24,6928 -1,2,3,25,6668 -1,2,3,26,6135 -1,2,3,27,6931 -1,2,3,28,6143 -1,2,3,29,6929 -1,2,3,30,6927 -1,2,3,31,6663 -1,2,3,32,6413 -1,2,3,33,6670 -1,2,3,34,6404 -1,2,3,35,9001 -1,2,3,36,6128 -1,2,3,37,7191 -1,2,3,38,6926 -1,2,3,39,7190 -1,2,3,40,6129 -1,2,3,41,6669 -1,2,3,42,6924 -1,2,3,43,7188 -1,2,3,44,6407 -1,2,3,46,7185 -1,2,3,47,5559 -1,2,3,48,7920 -1,2,3,49,5561 -1,2,3,50,6938 -1,2,3,51,5562 -1,2,3,52,7189 -1,2,3,53,7673 -1,2,3,54,7187 -1,2,3,55,5564 -1,2,3,57,6673 -1,2,3,58,7183 -1,2,3,59,7186 -1,2,3,60,7182 -1,2,3,61,6674 -1,2,3,62,5567 -1,2,3,63,7184 -1,2,3,64,7180 -1,2,3,65,6675 -1,2,3,66,5851 -1,2,3,67,6406 -1,2,2,0,6136 -1,2,2,1,6409 -1,2,2,2,7181 -1,2,2,3,7438 -1,2,2,4,7179 -1,2,2,5,6677 -1,2,2,6,6137 -1,2,2,7,7436 -1,2,2,8,6415 -1,2,2,9,7433 -1,2,2,10,6408 -1,2,2,12,7431 -1,2,2,13,7178 -1,2,2,14,6411 -1,2,2,15,6130 -1,2,2,16,6412 -1,2,2,17,6131 -1,2,2,18,6403 -1,2,2,19,5846 -1,2,2,20,6671 -1,2,2,21,7430 -1,2,2,23,7434 -1,2,2,24,5854 -1,2,2,25,6672 -1,2,2,26,6139 -1,2,2,27,7432 -1,2,2,28,5565 -1,2,2,29,7429 -1,2,2,30,7428 -1,2,2,31,6940 -1,2,2,32,5563 -1,2,2,33,6939 -1,2,2,34,5560 -1,2,2,35,6941 -1,2,2,36,6138 -1,2,2,37,6676 -1,2,2,38,7427 -1,2,2,39,6937 -1,2,2,40,6416 -1,2,2,41,7677 -1,2,2,42,7426 -1,2,2,43,7674 -1,2,2,44,6410 -1,2,2,46,7672 -1,2,2,47,6401 -1,2,2,48,7198 -1,2,2,49,6132 -1,2,2,50,7199 -1,2,2,51,6133 -1,2,2,52,6678 -1,2,2,53,7671 -1,2,2,54,7675 -1,2,2,55,6402 -1,2,2,57,7676 -1,2,2,58,7669 -1,2,2,59,7670 -1,2,2,60,5269 -1,2,2,61,7668 -1,2,2,62,5268 -1,2,2,63,6943 -1,2,2,64,5848 -1,2,2,65,6942 -1,2,2,66,7905 -1,2,2,67,7201 -1,2,1,0,7903 -1,2,1,1,6680 -1,2,1,2,7900 -1,2,1,3,7911 -1,2,1,4,7906 -1,2,1,5,7913 -1,2,1,6,7667 -1,2,1,7,7908 -1,2,1,8,7665 -1,2,1,9,9165 -8,0,1,10,9231 -8,0,1,12,9325 -8,0,1,13,9145 -8,0,1,14,9324 -8,0,1,15,9146 -8,0,1,16,9326 -8,0,1,17,9147 -8,0,1,18,9327 -8,0,1,19,9230 -8,0,1,20,9328 -8,0,1,21,9148 -8,0,1,23,9329 -8,0,1,24,9149 -8,0,1,25,9323 -8,0,1,26,9150 -8,0,1,27,9330 -8,0,1,28,9151 -8,0,1,29,9331 -8,0,1,30,9152 -8,0,1,31,9332 -8,0,1,32,9232 -8,0,1,33,9333 -8,0,1,34,9233 -8,0,1,35,9322 -8,0,1,36,9234 -8,0,1,37,9334 -8,0,1,38,9235 -8,0,1,39,9335 -8,0,1,40,9236 -8,0,1,41,9424 -8,0,1,42,9237 -8,0,1,43,9423 -8,0,1,44,9238 -8,0,1,46,9422 -8,0,1,47,9239 -8,0,1,48,9421 -8,0,1,49,9321 -8,0,1,50,9420 -8,0,1,51,9240 -8,0,1,52,9419 -8,0,1,53,9241 -8,0,1,54,9418 -8,0,1,55,9242 -8,0,1,57,9417 -8,0,1,58,9243 -8,0,1,59,9416 -8,0,1,60,9244 -8,0,1,61,9415 -8,0,1,62,9320 -8,0,1,63,9414 -8,0,1,64,9245 -8,0,1,65,9413 -8,0,1,66,9584 -8,0,1,67,9411 -8,0,0,0,9585 -8,0,0,1,9412 -8,0,0,2,9583 -8,0,0,3,9510 -8,0,0,4,9582 -8,0,0,5,9509 -8,0,0,6,9581 -8,0,0,7,9508 -8,0,0,8,9580 -8,0,0,9,9410 -8,0,0,10,9136 -8,0,0,12,9507 -8,0,0,13,9586 -8,0,0,14,9506 -8,0,0,15,9587 -8,0,0,16,9505 -8,0,0,17,9588 -8,0,0,18,9504 -8,0,0,19,9589 -8,0,0,20,9503 -8,0,0,21,9590 -8,0,0,23,9502 -8,0,0,24,9409 -8,0,0,25,9501 -8,0,0,26,9591 -8,0,0,27,9500 -8,0,0,28,9592 -8,0,0,29,9499 -8,0,0,30,9593 -8,0,0,31,9498 -8,0,0,32,9663 -8,0,0,33,9497 -8,0,0,34,9749 -8,0,0,35,9672 -8,0,0,36,9408 -8,0,0,37,9671 -8,0,0,38,9748 -8,0,0,39,9496 -8,0,0,40,9747 -8,0,0,41,9670 -8,0,0,42,9746 -8,0,0,43,9669 -8,0,0,44,9745 -8,0,0,46,9668 -8,0,0,47,9744 -8,0,0,48,9667 -8,0,0,49,9743 -8,0,0,50,9666 -8,0,0,51,9742 -8,0,0,52,9495 -8,0,0,53,9892 -8,0,0,54,9665 -8,0,0,55,9891 -8,0,0,57,9664 -8,0,0,58,9818 -8,0,0,59,9823 -8,0,0,60,9741 -8,0,0,61,9822 -8,0,0,62,9662 -8,0,0,63,9821 -8,0,0,64,9579 -8,0,0,65,9820 -8,0,0,66,9494 -8,0,0,67,9819 -8,0,3,0,8537 -8,0,3,1,7154 -8,0,3,2,7120 -8,0,3,3,8538 -8,0,3,4,7118 -8,0,3,5,8539 -8,0,3,6,7119 -8,0,3,7,8540 -8,0,3,8,7121 -8,0,3,9,8541 -8,0,3,10,7122 -8,0,3,12,8542 -8,0,3,13,8536 -8,0,3,14,8543 -8,0,3,15,7374 -8,0,3,16,8748 -8,0,3,17,7124 -8,0,3,18,7155 -8,0,3,19,7123 -8,0,3,20,7157 -8,0,3,21,7375 -8,0,3,23,7160 -8,0,3,24,7376 -8,0,3,25,7162 -8,0,3,26,7126 -8,0,3,27,7391 -8,0,3,28,7125 -8,0,3,29,8747 -8,0,3,30,7377 -8,0,3,31,7393 -8,0,3,32,7378 -8,0,3,33,7396 -8,0,3,34,7623 -8,0,3,35,7398 -8,0,3,36,7127 -8,0,3,37,7399 -8,0,3,38,7128 -8,0,3,39,8749 -8,0,3,40,7380 -8,0,3,41,8750 -8,0,3,42,8746 -8,0,3,43,8751 -8,0,3,44,7379 -8,0,3,46,8752 -8,0,3,47,7624 -8,0,3,48,8753 -8,0,3,49,7625 -8,0,3,50,8754 -8,0,3,51,7130 -8,0,3,52,8755 -8,0,3,53,7382 -8,0,3,54,8756 -8,0,3,55,8745 -8,0,3,57,7401 -8,0,3,58,7381 -8,0,3,59,8949 -8,0,3,60,7626 -8,0,3,61,7404 -8,0,3,62,7627 -8,0,3,63,7406 -8,0,3,64,7865 -8,0,3,65,7407 -8,0,3,66,7383 -8,0,3,67,7409 -8,0,2,0,8744 -8,0,2,1,7412 -8,0,2,2,7384 -8,0,2,3,8948 -8,0,2,4,7629 -8,0,2,5,7402 -8,0,2,6,7628 -8,0,2,7,7403 -8,0,2,8,7866 -8,0,2,9,7405 -8,0,2,10,7385 -8,0,2,12,7408 -8,0,2,13,7386 -8,0,2,14,7410 -8,0,2,15,7631 -8,0,2,16,8947 -8,0,2,17,7630 -8,0,2,18,8950 -8,0,2,19,7868 -8,0,2,20,8951 -8,0,2,21,7388 -8,0,2,23,8952 -8,0,2,24,7387 -8,0,2,25,8953 -8,0,2,26,7632 -8,0,2,27,8954 -8,0,2,28,7633 -8,0,2,29,8955 -8,0,2,30,8946 -8,0,2,31,8956 -8,0,2,32,7871 -8,0,2,33,8957 -8,0,2,34,7389 -8,0,2,35,8958 -8,0,2,36,7634 -8,0,2,37,7639 -8,0,2,38,7635 -8,0,2,39,7640 -8,0,2,40,8945 -8,0,2,41,7642 -8,0,2,42,7873 -8,0,2,43,7645 -8,0,2,44,7390 -8,0,2,46,9141 -8,0,2,47,7637 -8,0,2,48,7647 -8,0,2,49,7636 -8,0,2,50,7648 -8,0,2,51,7392 -8,0,2,52,7650 -8,0,2,53,7394 -8,0,2,54,7638 -8,0,2,55,7395 -8,0,2,57,7641 -8,0,2,58,7397 -8,0,2,59,9140 -8,0,2,60,7400 -8,0,2,61,7643 -8,0,2,62,7149 -8,0,2,63,7644 -8,0,2,64,7152 -8,0,2,65,7646 -8,0,2,66,9137 -8,0,2,67,7649 -8,0,1,0,9142 -8,0,1,1,7874 -8,0,1,2,9139 -8,0,1,3,7876 -8,0,1,4,9143 -8,0,1,5,7879 -8,0,1,6,9144 -8,0,1,7,7881 -8,0,1,8,9138 -8,0,1,9,7882 -8,1,1,10,8940 -8,1,1,12,7357 -8,1,1,13,8737 -8,1,1,14,7102 -8,1,1,15,9135 -8,1,1,16,7356 -8,1,1,17,8526 -8,1,1,18,7604 -8,1,1,19,8307 -8,1,1,20,7845 -8,1,1,21,8306 -8,1,1,23,8078 -8,1,1,24,8525 -8,1,1,25,7355 -8,1,1,26,8736 -8,1,1,27,7603 -8,1,1,28,9134 -8,1,1,29,7844 -8,1,1,30,8939 -8,1,1,31,9229 -8,1,1,32,8305 -8,1,1,33,8077 -8,1,1,34,8524 -8,1,1,35,7599 -8,1,1,36,8735 -8,1,1,37,7840 -8,1,1,38,8938 -8,1,1,39,8073 -8,1,1,40,9133 -8,1,1,41,8299 -8,1,1,42,8304 -8,1,1,43,9228 -8,1,1,44,8523 -8,1,1,46,8518 -8,1,1,47,8734 -8,1,1,48,8729 -8,1,1,49,8937 -8,1,1,50,8932 -8,1,1,51,9132 -8,1,1,52,9127 -8,1,1,53,8303 -8,1,1,54,9221 -8,1,1,55,8522 -8,1,1,57,7598 -8,1,1,58,8733 -8,1,1,59,7839 -8,1,1,60,8936 -8,1,1,61,8072 -8,1,1,62,9131 -8,1,1,63,8298 -8,1,1,64,7354 -8,1,1,65,8517 -8,1,1,66,7602 -8,1,1,67,8728 -8,1,0,0,9226 -8,1,0,1,8931 -8,1,0,2,7843 -8,1,0,3,7597 -8,1,0,4,8076 -8,1,0,5,9319 -8,1,0,6,8302 -8,1,0,7,7838 -8,1,0,8,8521 -8,1,0,9,8071 -8,1,0,10,8732 -8,1,0,12,8297 -8,1,0,13,9225 -8,1,0,14,8516 -8,1,0,15,8935 -8,1,0,16,9318 -8,1,0,17,9130 -8,1,0,18,9314 -8,1,0,19,7353 -8,1,0,20,9126 -8,1,0,21,7601 -8,1,0,23,8727 -8,1,0,24,9224 -8,1,0,25,7596 -8,1,0,26,7842 -8,1,0,27,7837 -8,1,0,28,8075 -8,1,0,29,8070 -8,1,0,30,8301 -8,1,0,31,8296 -8,1,0,32,8520 -8,1,0,33,8515 -8,1,0,34,8731 -8,1,0,35,7595 -8,1,0,36,8934 -8,1,0,37,7836 -8,1,0,38,9129 -8,1,0,39,8069 -8,1,0,40,9223 -8,1,0,41,8295 -8,1,0,42,9316 -8,1,0,43,8930 -8,1,0,44,7352 -8,1,0,46,8726 -8,1,0,47,7600 -8,1,0,48,9407 -8,1,0,49,7841 -8,1,0,50,8514 -8,1,0,51,8074 -8,1,0,52,7594 -8,1,0,53,8300 -8,1,0,54,7835 -8,1,0,55,9315 -8,1,0,57,9405 -8,1,0,58,8519 -8,1,0,59,9406 -8,1,0,60,8730 -8,1,0,61,8068 -8,1,0,62,8933 -8,1,0,63,7593 -8,1,0,64,9128 -8,1,0,65,7834 -8,1,0,66,9222 -8,1,0,67,8294 -8,1,3,0,8091 -8,1,3,1,8317 -8,1,3,2,8090 -8,1,3,3,8318 -8,1,3,4,8089 -8,1,3,5,8319 -8,1,3,6,8088 -8,1,3,7,8320 -8,1,3,8,8316 -8,1,3,9,8321 -8,1,3,10,8092 -8,1,3,12,8322 -8,1,3,13,8093 -8,1,3,14,8323 -8,1,3,15,8094 -8,1,3,16,8324 -8,1,3,17,8095 -8,1,3,18,8325 -8,1,3,19,8096 -8,1,3,20,6617 -8,1,3,21,8315 -8,1,3,23,6882 -8,1,3,24,8097 -8,1,3,25,8535 -8,1,3,26,8098 -8,1,3,27,6883 -8,1,3,28,7134 -8,1,3,29,7142 -8,1,3,30,6875 -8,1,3,31,7141 -8,1,3,32,8314 -8,1,3,33,6620 -8,1,3,34,6874 -8,1,3,35,6885 -8,1,3,36,6609 -8,1,3,37,8534 -8,1,3,38,7131 -8,1,3,39,6884 -8,1,3,40,7132 -8,1,3,41,7143 -8,1,3,42,6873 -8,1,3,43,7144 -8,1,3,44,6872 -8,1,3,46,6622 -8,1,3,47,6607 -8,1,3,48,6887 -8,1,3,49,7129 -8,1,3,50,8533 -8,1,3,51,6870 -8,1,3,52,6886 -8,1,3,53,6871 -8,1,3,54,7145 -8,1,3,55,6606 -8,1,3,57,7146 -8,1,3,58,6868 -8,1,3,59,7147 -8,1,3,60,6869 -8,1,3,61,7139 -8,1,3,62,6867 -8,1,3,63,7140 -8,1,3,64,8532 -8,1,3,65,6881 -8,1,3,66,6866 -8,1,3,67,6880 -8,1,2,0,6865 -8,1,2,1,6615 -8,1,2,2,6864 -8,1,2,3,7138 -8,1,2,4,6862 -8,1,2,5,7137 -8,1,2,6,8531 -8,1,2,7,6878 -8,1,2,8,6863 -8,1,2,9,8743 -8,1,2,10,6860 -8,1,2,12,6879 -8,1,2,13,6861 -8,1,2,14,6614 -8,1,2,15,6858 -8,1,2,16,7136 -8,1,2,17,6859 -8,1,2,18,7135 -8,1,2,19,6857 -8,1,2,20,6876 -8,1,2,21,7864 -8,1,2,23,8742 -8,1,2,24,7863 -8,1,2,25,6877 -8,1,2,26,7862 -8,1,2,27,6612 -8,1,2,28,7861 -8,1,2,29,7133 -8,1,2,30,7860 -8,1,2,31,8739 -8,1,2,32,7859 -8,1,2,33,8528 -8,1,2,34,7858 -8,1,2,35,8309 -8,1,2,36,8741 -8,1,2,37,8083 -8,1,2,38,7857 -8,1,2,39,7850 -8,1,2,40,7856 -8,1,2,41,8738 -8,1,2,42,7855 -8,1,2,43,8527 -8,1,2,44,8530 -8,1,2,46,8308 -8,1,2,47,8313 -8,1,2,48,8082 -8,1,2,49,8740 -8,1,2,50,7849 -8,1,2,51,8312 -8,1,2,52,8944 -8,1,2,53,8311 -8,1,2,54,7608 -8,1,2,55,8087 -8,1,2,57,8941 -8,1,2,58,8086 -8,1,2,59,8081 -8,1,2,60,8085 -8,1,2,61,7848 -8,1,2,62,7854 -8,1,2,63,7607 -8,1,2,64,7853 -8,1,2,65,8943 -8,1,2,66,7852 -8,1,2,67,8080 -8,1,1,0,8529 -8,1,1,1,7847 -8,1,1,2,8310 -8,1,1,3,7606 -8,1,1,4,8084 -8,1,1,5,8079 -8,1,1,6,7851 -8,1,1,7,7846 -8,1,1,8,8942 -8,1,1,9,7605 -4,0,1,10,5258 -4,0,1,12,6851 -4,0,1,13,5260 -4,0,1,14,6850 -4,0,1,15,5538 -4,0,1,16,6361 -4,0,1,17,5540 -4,0,1,18,6360 -4,0,1,19,5543 -4,0,1,20,6363 -4,0,1,21,5261 -4,0,1,23,6362 -4,0,1,24,5263 -4,0,1,25,6365 -4,0,1,26,6618 -4,0,1,27,6367 -4,0,1,28,6619 -4,0,1,29,6368 -4,0,1,30,6849 -4,0,1,31,6370 -4,0,1,32,6350 -4,0,1,33,6373 -4,0,1,34,6353 -4,0,1,35,5546 -4,0,1,36,6355 -4,0,1,37,7111 -4,0,1,38,6356 -4,0,1,39,5548 -4,0,1,40,6358 -4,0,1,41,5551 -4,0,1,42,6621 -4,0,1,43,5553 -4,0,1,44,6848 -4,0,1,46,5555 -4,0,1,47,5828 -4,0,1,48,5557 -4,0,1,49,5829 -4,0,1,50,5558 -4,0,1,51,5830 -4,0,1,52,7110 -4,0,1,53,5827 -4,0,1,54,5842 -4,0,1,55,5831 -4,0,1,57,5840 -4,0,1,58,5832 -4,0,1,59,6102 -4,0,1,60,6847 -4,0,1,61,6104 -4,0,1,62,5834 -4,0,1,63,6105 -4,0,1,64,5835 -4,0,1,65,6107 -4,0,1,66,5836 -4,0,1,67,7109 -4,0,0,0,5837 -4,0,0,1,6109 -4,0,0,2,5839 -4,0,0,3,6110 -4,0,0,4,5838 -4,0,0,5,6106 -4,0,0,6,6846 -4,0,0,7,6108 -4,0,0,8,5549 -4,0,0,9,6111 -4,0,0,10,5550 -4,0,0,12,6113 -4,0,0,13,5552 -4,0,0,14,7108 -4,0,0,15,7370 -4,0,0,16,6114 -4,0,0,17,7103 -4,0,0,18,6115 -4,0,0,19,7104 -4,0,0,20,6116 -4,0,0,21,6845 -4,0,0,23,6117 -4,0,0,24,7371 -4,0,0,25,6119 -4,0,0,26,7372 -4,0,0,27,6118 -4,0,0,28,7373 -4,0,0,29,7107 -4,0,0,30,7609 -4,0,0,31,6120 -4,0,0,32,7359 -4,0,0,33,6123 -4,0,0,34,7610 -4,0,0,35,7112 -4,0,0,36,7611 -4,0,0,37,7113 -4,0,0,38,7612 -4,0,0,39,7114 -4,0,0,40,7613 -4,0,0,41,7115 -4,0,0,42,7614 -4,0,0,43,7116 -4,0,0,44,7106 -4,0,0,46,7117 -4,0,0,47,7615 -4,0,0,48,7361 -4,0,0,49,7616 -4,0,0,50,7362 -4,0,0,51,7617 -4,0,0,52,7363 -4,0,0,53,7358 -4,0,0,54,7364 -4,0,0,55,7622 -4,0,0,57,7365 -4,0,0,58,7621 -4,0,0,59,7366 -4,0,0,60,7105 -4,0,0,61,7367 -4,0,0,62,7620 -4,0,0,63,7368 -4,0,0,64,7619 -4,0,0,65,7369 -4,0,0,66,7618 -4,0,0,67,7360 -4,0,3,0,6075 -4,0,3,1,6347 -4,0,3,2,6346 -4,0,3,3,6348 -4,0,3,4,6344 -4,0,3,5,6345 -4,0,3,6,6343 -4,0,3,7,6359 -4,0,3,8,6066 -4,0,3,9,6616 -4,0,3,10,6065 -4,0,3,12,6342 -4,0,3,13,6063 -4,0,3,14,6082 -4,0,3,15,6068 -4,0,3,16,6613 -4,0,3,17,6341 -4,0,3,18,6083 -4,0,3,19,6071 -4,0,3,20,6081 -4,0,3,21,6340 -4,0,3,23,6080 -4,0,3,24,6073 -4,0,3,25,6611 -4,0,3,26,6338 -4,0,3,27,5798 -4,0,3,28,6339 -4,0,3,29,6084 -4,0,3,30,6074 -4,0,3,31,6085 -4,0,3,32,6351 -4,0,3,33,6610 -4,0,3,34,6336 -4,0,3,35,5800 -4,0,3,36,6337 -4,0,3,37,6087 -4,0,3,38,6349 -4,0,3,39,6608 -4,0,3,40,6335 -4,0,3,41,6086 -4,0,3,42,6352 -4,0,3,43,5801 -4,0,3,44,6334 -4,0,3,46,6089 -4,0,3,47,6333 -4,0,3,48,6605 -4,0,3,49,6354 -4,0,3,50,6092 -4,0,3,51,6332 -4,0,3,52,6088 -4,0,3,53,6076 -4,0,3,54,6603 -4,0,3,55,6330 -4,0,3,57,5803 -4,0,3,58,6077 -4,0,3,59,6604 -4,0,3,60,6331 -4,0,3,61,6090 -4,0,3,62,6328 -4,0,3,63,6602 -4,0,3,64,6357 -4,0,3,65,6091 -4,0,3,66,6329 -4,0,3,67,6601 -4,0,2,0,6079 -4,0,2,1,5806 -4,0,2,2,6078 -4,0,2,3,6600 -4,0,2,4,6112 -4,0,2,5,6599 -4,0,2,6,6326 -4,0,2,7,6093 -4,0,2,8,5833 -4,0,2,9,5822 -4,0,2,10,6597 -4,0,2,12,6094 -4,0,2,13,6324 -4,0,2,14,6598 -4,0,2,15,6072 -4,0,2,16,5529 -4,0,2,17,9336 -4,0,2,18,5821 -4,0,2,19,6595 -4,0,2,20,6596 -4,0,2,21,6323 -4,0,2,23,5530 -4,0,2,24,9317 -4,0,2,25,5824 -4,0,2,26,6594 -4,0,2,27,5823 -4,0,2,28,6321 -4,0,2,29,6593 -4,0,2,30,9227 -4,0,2,31,5532 -4,0,2,32,6592 -4,0,2,33,5535 -4,0,2,34,5810 -4,0,2,35,6591 -4,0,2,36,6318 -4,0,2,37,5825 -4,0,2,38,5809 -4,0,2,39,5826 -4,0,2,40,6589 -4,0,2,41,6856 -4,0,2,42,5812 -4,0,2,43,6590 -4,0,2,44,5808 -4,0,2,46,5811 -4,0,2,47,5814 -4,0,2,48,6855 -4,0,2,49,6587 -4,0,2,50,5813 -4,0,2,51,5545 -4,0,2,52,6588 -4,0,2,53,5541 -4,0,2,54,5816 -4,0,2,55,6586 -4,0,2,57,5815 -4,0,2,58,5542 -4,0,2,59,6854 -4,0,2,60,5253 -4,0,2,61,5817 -4,0,2,62,5255 -4,0,2,63,5818 -4,0,2,64,5264 -4,0,2,65,5820 -4,0,2,66,6585 -4,0,2,67,5819 -4,0,1,0,5537 -4,0,1,1,6101 -4,0,1,2,5544 -4,0,1,3,6096 -4,0,1,4,5547 -4,0,1,5,6853 -4,0,1,6,6583 -4,0,1,7,6095 -4,0,1,8,6584 -4,0,1,9,6852 -4,1,1,10,6308 -4,1,1,12,6582 -4,1,1,13,6307 -4,1,1,14,5206 -4,1,1,15,72 -4,1,1,16,5501 -4,1,1,17,73 -4,1,1,18,5204 -4,1,1,19,70 -4,1,1,20,6581 -4,1,1,21,5183 -4,1,1,23,5502 -4,1,1,24,69 -4,1,1,25,5504 -4,1,1,26,5187 -4,1,1,27,5203 -4,1,1,28,6306 -4,1,1,29,5201 -4,1,1,30,5185 -4,1,1,31,5499 -4,1,1,32,5190 -4,1,1,33,5202 -4,1,1,34,67 -4,1,1,35,80 -4,1,1,36,5470 -4,1,1,37,6580 -4,1,1,38,68 -4,1,1,39,5498 -4,1,1,40,5746 -4,1,1,41,5200 -4,1,1,42,6305 -4,1,1,43,5199 -4,1,1,44,5184 -4,1,1,46,78 -4,1,1,47,5457 -4,1,1,48,5496 -4,1,1,49,65 -4,1,1,50,6579 -4,1,1,51,5192 -4,1,1,52,5198 -4,1,1,53,66 -4,1,1,54,5497 -4,1,1,55,363 -4,1,1,57,75 -4,1,1,58,6304 -4,1,1,59,5197 -4,1,1,60,5477 -4,1,1,61,5494 -4,1,1,62,5478 -4,1,1,63,5195 -4,1,1,64,5480 -4,1,1,65,6578 -4,1,1,66,5483 -4,1,1,67,5495 -4,1,0,0,5485 -4,1,0,1,5492 -4,1,0,2,5474 -4,1,0,3,5490 -4,1,0,4,5194 -4,1,0,5,5489 -4,1,0,6,5476 -4,1,0,7,5487 -4,1,0,8,5196 -4,1,0,9,5484 -4,1,0,10,5479 -4,1,0,12,5493 -4,1,0,13,6577 -4,1,0,14,5491 -4,1,0,15,5759 -4,1,0,16,5468 -4,1,0,17,6035 -4,1,0,18,5751 -4,1,0,19,5760 -4,1,0,20,5754 -4,1,0,21,5758 -4,1,0,23,5756 -4,1,0,24,5762 -4,1,0,25,5466 -4,1,0,26,6032 -4,1,0,27,5191 -4,1,0,28,6576 -4,1,0,29,5189 -4,1,0,30,5764 -4,1,0,31,5465 -4,1,0,32,5473 -4,1,0,33,5749 -4,1,0,34,5765 -4,1,0,35,5188 -4,1,0,36,6028 -4,1,0,37,6844 -4,1,0,38,5767 -4,1,0,39,5463 -4,1,0,40,5471 -4,1,0,41,5475 -4,1,0,42,6575 -4,1,0,43,5745 -4,1,0,44,5770 -4,1,0,46,5186 -4,1,0,47,6030 -4,1,0,48,5748 -4,1,0,49,5755 -4,1,0,50,6843 -4,1,0,51,6029 -4,1,0,52,5460 -4,1,0,53,5757 -4,1,0,54,5472 -4,1,0,55,5753 -4,1,0,57,5193 -4,1,0,58,6574 -4,1,0,59,5488 -4,1,0,60,5752 -4,1,0,61,5482 -4,1,0,62,5750 -4,1,0,63,5481 -4,1,0,64,5747 -4,1,0,65,6842 -4,1,0,66,6573 -4,1,0,67,5486 -4,1,3,0,5778 -4,1,3,1,6064 -4,1,3,2,5779 -4,1,3,3,6067 -4,1,3,4,5777 -4,1,3,5,5802 -4,1,3,6,5780 -4,1,3,7,5521 -4,1,3,8,5775 -4,1,3,9,6062 -4,1,3,10,5789 -4,1,3,12,5528 -4,1,3,13,5511 -4,1,3,14,5526 -4,1,3,15,5776 -4,1,3,16,6061 -4,1,3,17,5773 -4,1,3,18,5525 -4,1,3,19,5513 -4,1,3,20,6060 -4,1,3,21,5774 -4,1,3,23,6059 -4,1,3,24,5772 -4,1,3,25,5523 -4,1,3,26,5514 -4,1,3,27,6058 -4,1,3,28,5771 -4,1,3,29,5519 -4,1,3,30,5516 -4,1,3,31,6056 -4,1,3,32,5788 -4,1,3,33,5520 -4,1,3,34,5786 -4,1,3,35,5231 -4,1,3,36,5769 -4,1,3,37,6057 -4,1,3,38,5508 -4,1,3,39,6054 -4,1,3,40,5783 -4,1,3,41,5229 -4,1,3,42,5768 -4,1,3,43,6055 -4,1,3,44,5781 -4,1,3,46,6053 -4,1,3,47,5506 -4,1,3,48,5522 -4,1,3,49,5766 -4,1,3,50,6052 -4,1,3,51,5518 -4,1,3,52,5804 -4,1,3,53,6051 -4,1,3,54,5524 -4,1,3,55,5517 -4,1,3,57,6050 -4,1,3,58,5763 -4,1,3,59,5805 -4,1,3,60,5228 -4,1,3,61,6069 -4,1,3,62,6048 -4,1,3,63,5793 -4,1,3,64,5515 -4,1,3,65,6049 -4,1,3,66,5761 -4,1,3,67,5527 -4,1,2,0,5226 -4,1,2,1,6327 -4,1,2,2,6046 -4,1,2,3,6047 -4,1,2,4,5223 -4,1,2,5,6070 -4,1,2,6,5512 -4,1,2,7,5795 -4,1,2,8,5232 -4,1,2,9,6325 -4,1,2,10,6045 -4,1,2,12,6044 -4,1,2,13,5230 -4,1,2,14,5807 -4,1,2,15,6043 -4,1,2,16,6322 -4,1,2,17,5227 -4,1,2,18,6042 -4,1,2,19,5225 -4,1,2,20,5792 -4,1,2,21,5221 -4,1,2,23,5790 -4,1,2,24,6040 -4,1,2,25,6320 -4,1,2,26,5224 -4,1,2,27,6041 -4,1,2,28,5222 -4,1,2,29,5787 -4,1,2,30,5220 -4,1,2,31,5799 -4,1,2,32,6038 -4,1,2,33,6319 -4,1,2,34,5218 -4,1,2,35,5797 -4,1,2,36,6039 -4,1,2,37,5796 -4,1,2,38,6037 -4,1,2,39,6317 -4,1,2,40,5215 -4,1,2,41,5794 -4,1,2,42,6036 -4,1,2,43,6316 -4,1,2,44,5219 -4,1,2,46,6314 -4,1,2,47,5213 -4,1,2,48,5785 -4,1,2,49,5217 -4,1,2,50,6315 -4,1,2,51,6034 -4,1,2,52,5791 -4,1,2,53,5216 -4,1,2,54,6312 -4,1,2,55,5210 -4,1,2,57,5784 -4,1,2,58,6033 -4,1,2,59,6313 -4,1,2,60,5212 -4,1,2,61,6311 -4,1,2,62,5207 -4,1,2,63,5782 -4,1,2,64,5214 -4,1,2,65,5510 -4,1,2,66,6031 -4,1,2,67,5505 -4,1,1,0,5205 -4,1,1,1,5503 -4,1,1,2,5211 -4,1,1,3,6310 -4,1,1,4,5209 -4,1,1,5,5509 -4,1,1,6,5208 -4,1,1,7,5507 -4,1,1,8,6309 -4,1,1,9,5500 -8,2,1,10,5727 -8,2,1,12,8 -8,2,1,13,6016 -8,2,1,14,7351 -8,2,1,15,6298 -8,2,1,16,7096 -8,2,1,17,5431 -8,2,1,18,5128 -8,2,1,19,5726 -8,2,1,20,6834 -8,2,1,21,6015 -8,2,1,23,7 -8,2,1,24,6297 -8,2,1,25,6566 -8,2,1,26,6014 -8,2,1,27,6292 -8,2,1,28,6295 -8,2,1,29,6011 -8,2,1,30,7098 -8,2,1,31,7350 -8,2,1,32,6836 -8,2,1,33,7095 -8,2,1,34,7097 -8,2,1,35,5126 -8,2,1,36,6835 -8,2,1,37,6 -8,2,1,38,6567 -8,2,1,39,6564 -8,2,1,40,6293 -8,2,1,41,6290 -8,2,1,42,6833 -8,2,1,43,6009 -8,2,1,44,6565 -8,2,1,46,7348 -8,2,1,47,6291 -8,2,1,48,7093 -8,2,1,49,6010 -8,2,1,50,6831 -8,2,1,51,7349 -8,2,1,52,5125 -8,2,1,53,7094 -8,2,1,54,5 -8,2,1,55,305 -8,2,1,57,6563 -8,2,1,58,6832 -8,2,1,59,6289 -8,2,1,60,5127 -8,2,1,61,6830 -8,2,1,62,6008 -8,2,1,63,6562 -8,2,1,64,5720 -8,2,1,65,6288 -8,2,1,66,7347 -8,2,1,67,5124 -8,2,0,0,7092 -8,2,0,1,6007 -8,2,0,2,304 -8,2,0,3,4 -8,2,0,4,5719 -8,2,0,5,7091 -8,2,0,6,7346 -8,2,0,7,6829 -8,2,0,8,5718 -8,2,0,9,6561 -8,2,0,10,6012 -8,2,0,12,6287 -8,2,0,13,5724 -8,2,0,14,6006 -8,2,0,15,5430 -8,2,0,16,5123 -8,2,0,17,5723 -8,2,0,18,3 -8,2,0,19,303 -8,2,0,20,7345 -8,2,0,21,5429 -8,2,0,23,7090 -8,2,0,24,5722 -8,2,0,25,6828 -8,2,0,26,5428 -8,2,0,27,6560 -8,2,0,28,5721 -8,2,0,29,6286 -8,2,0,30,5427 -8,2,0,31,6005 -8,2,0,32,5426 -8,2,0,33,2 -8,2,0,34,302 -8,2,0,35,5717 -8,2,0,36,5425 -8,2,0,37,5423 -8,2,0,38,5424 -8,2,0,39,6559 -8,2,0,40,7592 -8,2,0,41,6285 -8,2,0,42,7344 -8,2,0,43,6004 -8,2,0,44,7089 -8,2,0,46,5716 -8,2,0,47,6827 -8,2,0,48,1 -8,2,0,49,7088 -8,2,0,50,5422 -8,2,0,51,301 -8,2,0,52,5122 -8,2,0,53,6826 -8,2,0,54,6284 -8,2,0,55,6558 -8,2,0,57,6003 -8,2,0,58,5715 -8,2,0,59,5421 -8,2,0,60,6002 -8,2,0,61,5121 -8,2,0,62,5420 -8,2,0,63,5714 -8,2,0,64,894 -8,2,0,65,0 -8,2,0,66,300 -8,2,0,67,5120 -8,2,3,0,20 -8,2,3,1,5140 -8,2,3,2,32 -8,2,3,3,5139 -8,2,3,4,30 -8,2,3,5,5157 -8,2,3,6,19 -8,2,3,7,5449 -8,2,3,8,5459 -8,2,3,9,5156 -8,2,3,10,27 -8,2,3,12,5447 -8,2,3,13,5456 -8,2,3,14,5154 -8,2,3,15,25 -8,2,3,16,5743 -8,2,3,17,5454 -8,2,3,18,5151 -8,2,3,19,24 -8,2,3,20,5741 -8,2,3,21,18 -8,2,3,23,5149 -8,2,3,24,5179 -8,2,3,25,5740 -8,2,3,26,5458 -8,2,3,27,5141 -8,2,3,28,5177 -8,2,3,29,5744 -8,2,3,30,895 -8,2,3,31,5148 -8,2,3,32,5176 -8,2,3,33,5742 -8,2,3,34,5455 -8,2,3,35,5137 -8,2,3,36,5153 -8,2,3,37,5146 -8,2,3,38,17 -8,2,3,39,5739 -8,2,3,40,5452 -8,2,3,41,5453 -8,2,3,42,5152 -8,2,3,43,5443 -8,2,3,44,5450 -8,2,3,46,5451 -8,2,3,47,5150 -8,2,3,48,5442 -8,2,3,49,5444 -8,2,3,50,5136 -8,2,3,51,5147 -8,2,3,52,5448 -8,2,3,53,16 -8,2,3,54,5138 -8,2,3,55,37 -8,2,3,57,6300 -8,2,3,58,5145 -8,2,3,59,5446 -8,2,3,60,908 -8,2,3,61,6299 -8,2,3,62,5144 -8,2,3,63,5445 -8,2,3,64,618 -8,2,3,65,6027 -8,2,3,66,5164 -8,2,3,67,5135 -8,2,2,0,907 -8,2,2,1,6026 -8,2,2,2,15 -8,2,2,3,5738 -8,2,2,4,5162 -8,2,2,5,5737 -8,2,2,6,617 -8,2,2,7,5441 -8,2,2,8,5159 -8,2,2,9,5736 -8,2,2,10,906 -8,2,2,12,5440 -8,2,2,13,1187 -8,2,2,14,5134 -8,2,2,15,1461 -8,2,2,16,6025 -8,2,2,17,14 -8,2,2,18,5735 -8,2,2,19,905 -8,2,2,20,5439 -8,2,2,21,1186 -8,2,2,23,6024 -8,2,2,24,1460 -8,2,2,25,5734 -8,2,2,26,904 -8,2,2,27,5438 -8,2,2,28,1185 -8,2,2,29,6023 -8,2,2,30,1459 -8,2,2,31,5733 -8,2,2,32,903 -8,2,2,33,5437 -8,2,2,34,13 -8,2,2,35,6022 -8,2,2,36,1184 -8,2,2,37,5732 -8,2,2,38,1458 -8,2,2,39,5436 -8,2,2,40,902 -8,2,2,41,6021 -8,2,2,42,1183 -8,2,2,43,5133 -8,2,2,44,1457 -8,2,2,46,5731 -8,2,2,47,901 -8,2,2,48,5435 -8,2,2,49,12 -8,2,2,50,5434 -8,2,2,51,1182 -8,2,2,52,6303 -8,2,2,53,1456 -8,2,2,54,6020 -8,2,2,55,1724 -8,2,2,57,5730 -8,2,2,58,900 -8,2,2,59,6302 -8,2,2,60,1181 -8,2,2,61,5132 -8,2,2,62,1455 -8,2,2,63,5131 -8,2,2,64,1723 -8,2,2,65,6019 -8,2,2,66,11 -8,2,2,67,5729 -8,2,1,0,899 -8,2,1,1,6301 -8,2,1,2,1180 -8,2,1,3,6018 -8,2,1,4,1454 -8,2,1,5,5130 -8,2,1,6,1722 -8,2,1,7,5129 -8,2,1,8,10 -8,2,1,9,9 -10,0,1,10,602 -10,0,1,12,309 -10,0,1,13,603 -10,0,1,14,308 -10,0,1,15,890 -10,0,1,16,1715 -10,0,1,17,1977 -10,0,1,18,1720 -10,0,1,19,1446 -10,0,1,20,1175 -10,0,1,21,1714 -10,0,1,23,307 -10,0,1,24,1976 -10,0,1,25,892 -10,0,1,26,889 -10,0,1,27,1451 -10,0,1,28,601 -10,0,1,29,893 -10,0,1,30,2231 -10,0,1,31,1176 -10,0,1,32,1171 -10,0,1,33,1721 -10,0,1,34,1445 -10,0,1,35,1452 -10,0,1,36,1713 -10,0,1,37,1453 -10,0,1,38,1975 -10,0,1,39,306 -10,0,1,40,2230 -10,0,1,41,1178 -10,0,1,42,600 -10,0,1,43,5433 -10,0,1,44,888 -10,0,1,46,5728 -10,0,1,47,1170 -10,0,1,48,6017 -10,0,1,49,1444 -10,0,1,50,5432 -10,0,1,51,1712 -10,0,1,52,6840 -10,0,1,53,1974 -10,0,1,54,6841 -10,0,1,55,2229 -10,0,1,57,599 -10,0,1,58,1169 -10,0,1,59,6572 -10,0,1,60,887 -10,0,1,61,7101 -10,0,1,62,1443 -10,0,1,63,6839 -10,0,1,64,1711 -10,0,1,65,6571 -10,0,1,66,1973 -10,0,1,67,7100 -10,0,0,0,2228 -10,0,0,1,6838 -10,0,0,2,1168 -10,0,0,3,598 -10,0,0,4,1442 -10,0,0,5,6570 -10,0,0,6,886 -10,0,0,7,6296 -10,0,0,8,1710 -10,0,0,9,7099 -10,0,0,10,1972 -10,0,0,12,6837 -10,0,0,13,2227 -10,0,0,14,6569 -10,0,0,15,1167 -10,0,0,16,6568 -10,0,0,17,1441 -10,0,0,18,6294 -10,0,0,19,1709 -10,0,0,20,597 -10,0,0,21,1971 -10,0,0,23,5725 -10,0,0,24,885 -10,0,0,25,6013 -10,0,0,26,2226 -10,0,0,27,1174 -10,0,0,28,1166 -10,0,0,29,1450 -10,0,0,30,1440 -10,0,0,31,1719 -10,0,0,32,1708 -10,0,0,33,1173 -10,0,0,34,1970 -10,0,0,35,596 -10,0,0,36,2225 -10,0,0,37,1449 -10,0,0,38,884 -10,0,0,39,891 -10,0,0,40,2473 -10,0,0,41,1718 -10,0,0,42,1165 -10,0,0,43,1172 -10,0,0,44,1439 -10,0,0,46,1448 -10,0,0,47,1707 -10,0,0,48,1981 -10,0,0,49,1969 -10,0,0,50,1447 -10,0,0,51,2224 -10,0,0,52,595 -10,0,0,53,883 -10,0,0,54,1717 -10,0,0,55,2472 -10,0,0,57,1980 -10,0,0,58,1164 -10,0,0,59,1979 -10,0,0,60,1438 -10,0,0,61,1716 -10,0,0,62,1706 -10,0,0,63,1978 -10,0,0,64,1968 -10,0,0,65,4772 -10,0,0,66,882 -10,0,0,67,594 -10,0,3,0,614 -10,0,3,1,320 -10,0,3,2,342 -10,0,3,3,53 -10,0,3,4,22 -10,0,3,5,319 -10,0,3,6,341 -10,0,3,7,29 -10,0,3,8,613 -10,0,3,9,36 -10,0,3,10,5171 -10,0,3,12,28 -10,0,3,13,339 -10,0,3,14,34 -10,0,3,15,23 -10,0,3,16,26 -10,0,3,17,336 -10,0,3,18,31 -10,0,3,19,5174 -10,0,3,20,64 -10,0,3,21,334 -10,0,3,23,318 -10,0,3,24,333 -10,0,3,25,62 -10,0,3,26,612 -10,0,3,27,5469 -10,0,3,28,51 -10,0,3,29,59 -10,0,3,30,344 -10,0,3,31,5142 -10,0,3,32,35 -10,0,3,33,57 -10,0,3,34,347 -10,0,3,35,5467 -10,0,3,36,322 -10,0,3,37,317 -10,0,3,38,349 -10,0,3,39,56 -10,0,3,40,611 -10,0,3,41,5464 -10,0,3,42,38 -10,0,3,43,54 -10,0,3,44,350 -10,0,3,46,5462 -10,0,3,47,40 -10,0,3,48,21 -10,0,3,49,329 -10,0,3,50,5461 -10,0,3,51,327 -10,0,3,52,33 -10,0,3,53,330 -10,0,3,54,316 -10,0,3,55,1179 -10,0,3,57,5170 -10,0,3,58,610 -10,0,3,59,5165 -10,0,3,60,41 -10,0,3,61,5143 -10,0,3,62,332 -10,0,3,63,5167 -10,0,3,64,43 -10,0,3,65,55 -10,0,3,66,335 -10,0,3,67,5172 -10,0,2,0,321 -10,0,2,1,315 -10,0,2,2,337 -10,0,2,3,58 -10,0,2,4,609 -10,0,2,5,5173 -10,0,2,6,46 -10,0,2,7,60 -10,0,2,8,338 -10,0,2,9,5175 -10,0,2,10,48 -10,0,2,12,61 -10,0,2,13,340 -10,0,2,14,5178 -10,0,2,15,49 -10,0,2,16,63 -10,0,2,17,620 -10,0,2,18,314 -10,0,2,19,608 -10,0,2,20,331 -10,0,2,21,1177 -10,0,2,23,5180 -10,0,2,24,621 -10,0,2,25,5181 -10,0,2,26,42 -10,0,2,27,5182 -10,0,2,28,619 -10,0,2,29,5155 -10,0,2,30,323 -10,0,2,31,5158 -10,0,2,32,623 -10,0,2,33,5160 -10,0,2,34,45 -10,0,2,35,313 -10,0,2,36,607 -10,0,2,37,5161 -10,0,2,38,626 -10,0,2,39,5163 -10,0,2,40,52 -10,0,2,41,5166 -10,0,2,42,628 -10,0,2,43,5168 -10,0,2,44,325 -10,0,2,46,5169 -10,0,2,47,629 -10,0,2,48,615 -10,0,2,49,328 -10,0,2,50,312 -10,0,2,51,606 -10,0,2,52,39 -10,0,2,53,631 -10,0,2,54,44 -10,0,2,55,622 -10,0,2,57,47 -10,0,2,58,624 -10,0,2,59,50 -10,0,2,60,625 -10,0,2,61,71 -10,0,2,62,627 -10,0,2,63,616 -10,0,2,64,630 -10,0,2,65,311 -10,0,2,66,632 -10,0,2,67,326 -10,0,1,0,605 -10,0,1,1,324 -10,0,1,2,912 -10,0,1,3,898 -10,0,1,4,910 -10,0,1,5,897 -10,0,1,6,909 -10,0,1,7,896 -10,0,1,8,604 -10,0,1,9,310 -2,0,1,10,935 -2,0,1,12,649 -2,0,1,13,937 -2,0,1,14,648 -2,0,1,15,934 -2,0,1,16,646 -2,0,1,17,932 -2,0,1,18,931 -2,0,1,19,933 -2,0,1,20,84 -2,0,1,21,92 -2,0,1,23,643 -2,0,1,24,930 -2,0,1,25,364 -2,0,1,26,381 -2,0,1,27,928 -2,0,1,28,413 -2,0,1,29,368 -2,0,1,30,929 -2,0,1,31,362 -2,0,1,32,938 -2,0,1,33,926 -2,0,1,34,1207 -2,0,1,35,652 -2,0,1,36,379 -2,0,1,37,640 -2,0,1,38,927 -2,0,1,39,925 -2,0,1,40,370 -2,0,1,41,366 -2,0,1,42,90 -2,0,1,43,82 -2,0,1,44,1205 -2,0,1,46,79 -2,0,1,47,924 -2,0,1,48,923 -2,0,1,49,376 -2,0,1,50,77 -2,0,1,51,1202 -2,0,1,52,641 -2,0,1,53,922 -2,0,1,54,86 -2,0,1,55,936 -2,0,1,57,920 -2,0,1,58,1200 -2,0,1,59,83 -2,0,1,60,87 -2,0,1,61,365 -2,0,1,62,921 -2,0,1,63,638 -2,0,1,64,1199 -2,0,1,65,918 -2,0,1,66,85 -2,0,1,67,635 -2,0,0,0,374 -2,0,0,1,919 -2,0,0,2,369 -2,0,0,3,917 -2,0,0,4,1197 -2,0,0,5,76 -2,0,0,6,94 -2,0,0,7,916 -2,0,0,8,1196 -2,0,0,9,645 -2,0,0,10,373 -2,0,0,12,915 -2,0,0,13,1194 -2,0,0,14,81 -2,0,0,15,91 -2,0,0,16,914 -2,0,0,17,1195 -2,0,0,18,74 -2,0,0,19,1192 -2,0,0,20,647 -2,0,0,21,89 -2,0,0,23,913 -2,0,0,24,651 -2,0,0,25,358 -2,0,0,26,1193 -2,0,0,27,356 -2,0,0,28,1191 -2,0,0,29,911 -2,0,0,30,367 -2,0,0,31,357 -2,0,0,32,371 -2,0,0,33,644 -2,0,0,34,88 -2,0,0,35,354 -2,0,0,36,1190 -2,0,0,37,355 -2,0,0,38,93 -2,0,0,39,353 -2,0,0,40,110 -2,0,0,41,642 -2,0,0,42,105 -2,0,0,43,352 -2,0,0,44,104 -2,0,0,46,351 -2,0,0,47,102 -2,0,0,48,639 -2,0,0,49,99 -2,0,0,50,348 -2,0,0,51,97 -2,0,0,52,637 -2,0,0,53,1189 -2,0,0,54,346 -2,0,0,55,96 -2,0,0,57,345 -2,0,0,58,650 -2,0,0,59,633 -2,0,0,60,361 -2,0,0,61,636 -2,0,0,62,360 -2,0,0,63,343 -2,0,0,64,359 -2,0,0,65,1188 -2,0,0,66,1462 -2,0,0,67,634 -2,0,3,0,405 -2,0,3,1,106 -2,0,3,2,404 -2,0,3,3,103 -2,0,3,4,402 -2,0,3,5,403 -2,0,3,6,401 -2,0,3,7,5250 -2,0,3,8,400 -2,0,3,9,101 -2,0,3,10,398 -2,0,3,12,5247 -2,0,3,13,416 -2,0,3,14,100 -2,0,3,15,139 -2,0,3,16,5245 -2,0,3,17,399 -2,0,3,18,397 -2,0,3,19,407 -2,0,3,20,98 -2,0,3,21,396 -2,0,3,23,5243 -2,0,3,24,142 -2,0,3,25,395 -2,0,3,26,132 -2,0,3,27,95 -2,0,3,28,394 -2,0,3,29,5244 -2,0,3,30,130 -2,0,3,31,392 -2,0,3,32,414 -2,0,3,33,5252 -2,0,3,34,685 -2,0,3,35,5246 -2,0,3,36,393 -2,0,3,37,5248 -2,0,3,38,137 -2,0,3,39,5249 -2,0,3,40,136 -2,0,3,41,390 -2,0,3,42,684 -2,0,3,43,126 -2,0,3,44,391 -2,0,3,46,389 -2,0,3,47,127 -2,0,3,48,128 -2,0,3,49,682 -2,0,3,50,5251 -2,0,3,51,388 -2,0,3,52,5254 -2,0,3,53,134 -2,0,3,54,387 -2,0,3,55,125 -2,0,3,57,129 -2,0,3,58,679 -2,0,3,59,5257 -2,0,3,60,386 -2,0,3,61,384 -2,0,3,62,131 -2,0,3,63,5256 -2,0,3,64,677 -2,0,3,65,107 -2,0,3,66,5262 -2,0,3,67,385 -2,0,2,0,5259 -2,0,2,1,382 -2,0,2,2,676 -2,0,2,3,111 -2,0,2,4,119 -2,0,2,5,383 -2,0,2,6,675 -2,0,2,7,5242 -2,0,2,8,117 -2,0,2,9,113 -2,0,2,10,674 -2,0,2,12,5239 -2,0,2,13,116 -2,0,2,14,380 -2,0,2,15,122 -2,0,2,16,109 -2,0,2,17,673 -2,0,2,18,5237 -2,0,2,19,671 -2,0,2,20,378 -2,0,2,21,672 -2,0,2,23,5236 -2,0,2,24,411 -2,0,2,25,5235 -2,0,2,26,669 -2,0,2,27,377 -2,0,2,28,124 -2,0,2,29,5238 -2,0,2,30,670 -2,0,2,31,5240 -2,0,2,32,668 -2,0,2,33,5534 -2,0,2,34,123 -2,0,2,35,375 -2,0,2,36,121 -2,0,2,37,5233 -2,0,2,38,120 -2,0,2,39,5533 -2,0,2,40,667 -2,0,2,41,666 -2,0,2,42,118 -2,0,2,43,372 -2,0,2,44,665 -2,0,2,46,5234 -2,0,2,47,408 -2,0,2,48,663 -2,0,2,49,950 -2,0,2,50,5531 -2,0,2,51,664 -2,0,2,52,5536 -2,0,2,53,114 -2,0,2,54,661 -2,0,2,55,949 -2,0,2,57,5539 -2,0,2,58,115 -2,0,2,59,112 -2,0,2,60,662 -2,0,2,61,108 -2,0,2,62,5241 -2,0,2,63,406 -2,0,2,64,947 -2,0,2,65,660 -2,0,2,66,659 -2,0,2,67,658 -2,0,1,0,939 -2,0,1,1,655 -2,0,1,2,941 -2,0,1,3,657 -2,0,1,4,944 -2,0,1,5,656 -2,0,1,6,940 -2,0,1,7,653 -2,0,1,8,942 -2,0,1,9,654 -2,1,1,10,1488 -2,1,1,12,1218 -2,1,1,13,1485 -2,1,1,14,1217 -2,1,1,15,1530 -2,1,1,16,1214 -2,1,1,17,1531 -2,1,1,18,1212 -2,1,1,19,1486 -2,1,1,20,1216 -2,1,1,21,1483 -2,1,1,23,1215 -2,1,1,24,1533 -2,1,1,25,1213 -2,1,1,26,1484 -2,1,1,27,1210 -2,1,1,28,1246 -2,1,1,29,1211 -2,1,1,30,1482 -2,1,1,31,1209 -2,1,1,32,1249 -2,1,1,33,1248 -2,1,1,34,1481 -2,1,1,35,1250 -2,1,1,36,1480 -2,1,1,37,1253 -2,1,1,38,1251 -2,1,1,39,1206 -2,1,1,40,1479 -2,1,1,41,1477 -2,1,1,42,1252 -2,1,1,43,1204 -2,1,1,44,1254 -2,1,1,46,1255 -2,1,1,47,1257 -2,1,1,48,991 -2,1,1,49,1259 -2,1,1,50,1475 -2,1,1,51,1478 -2,1,1,52,988 -2,1,1,53,1260 -2,1,1,54,1203 -2,1,1,55,1476 -2,1,1,57,986 -2,1,1,58,1262 -2,1,1,59,1474 -2,1,1,60,1265 -2,1,1,61,985 -2,1,1,62,1523 -2,1,1,63,1201 -2,1,1,64,1473 -2,1,1,65,983 -2,1,1,66,1525 -2,1,1,67,1472 -2,1,0,0,1528 -2,1,0,1,1198 -2,1,0,2,1471 -2,1,0,3,980 -2,1,0,4,1244 -2,1,0,5,1469 -2,1,0,6,1243 -2,1,0,7,978 -2,1,0,8,1736 -2,1,0,9,992 -2,1,0,10,1470 -2,1,0,12,990 -2,1,0,13,1241 -2,1,0,14,1467 -2,1,0,15,1735 -2,1,0,16,989 -2,1,0,17,1238 -2,1,0,18,1468 -2,1,0,19,1236 -2,1,0,20,1256 -2,1,0,21,1506 -2,1,0,23,1466 -2,1,0,24,1504 -2,1,0,25,1258 -2,1,0,26,1734 -2,1,0,27,1261 -2,1,0,28,1498 -2,1,0,29,1263 -2,1,0,30,1768 -2,1,0,31,1465 -2,1,0,32,1772 -2,1,0,33,1522 -2,1,0,34,1767 -2,1,0,35,1520 -2,1,0,36,1771 -2,1,0,37,1517 -2,1,0,38,1765 -2,1,0,39,1515 -2,1,0,40,1733 -2,1,0,41,1514 -2,1,0,42,1770 -2,1,0,43,1512 -2,1,0,44,1502 -2,1,0,46,1509 -2,1,0,47,1500 -2,1,0,48,1464 -2,1,0,49,1773 -2,1,0,50,1507 -2,1,0,51,1503 -2,1,0,52,1501 -2,1,0,53,1775 -2,1,0,54,1499 -2,1,0,55,1732 -2,1,0,57,1490 -2,1,0,58,1776 -2,1,0,59,1491 -2,1,0,60,1505 -2,1,0,61,1463 -2,1,0,62,1508 -2,1,0,63,1493 -2,1,0,64,1510 -2,1,0,65,1496 -2,1,0,66,1731 -2,1,0,67,1487 -2,1,3,0,982 -2,1,3,1,144 -2,1,3,2,984 -2,1,3,3,696 -2,1,3,4,981 -2,1,3,5,141 -2,1,3,6,979 -2,1,3,7,694 -2,1,3,8,976 -2,1,3,9,437 -2,1,3,10,145 -2,1,3,12,434 -2,1,3,13,143 -2,1,3,14,691 -2,1,3,15,438 -2,1,3,16,716 -2,1,3,17,721 -2,1,3,18,693 -2,1,3,19,436 -2,1,3,20,692 -2,1,3,21,147 -2,1,3,23,690 -2,1,3,24,977 -2,1,3,25,687 -2,1,3,26,146 -2,1,3,27,688 -2,1,3,28,439 -2,1,3,29,433 -2,1,3,30,975 -2,1,3,31,435 -2,1,3,32,974 -2,1,3,33,140 -2,1,3,34,973 -2,1,3,35,432 -2,1,3,36,971 -2,1,3,37,686 -2,1,3,38,972 -2,1,3,39,138 -2,1,3,40,968 -2,1,3,41,430 -2,1,3,42,970 -2,1,3,43,683 -2,1,3,44,431 -2,1,3,46,717 -2,1,3,47,428 -2,1,3,48,133 -2,1,3,49,713 -2,1,3,50,135 -2,1,3,51,712 -2,1,3,52,681 -2,1,3,53,969 -2,1,3,54,429 -2,1,3,55,710 -2,1,3,57,427 -2,1,3,58,707 -2,1,3,59,680 -2,1,3,60,967 -2,1,3,61,966 -2,1,3,62,1247 -2,1,3,63,424 -2,1,3,64,705 -2,1,3,65,965 -2,1,3,66,1245 -2,1,3,67,678 -2,1,2,0,964 -2,1,2,1,714 -2,1,2,2,718 -2,1,2,3,963 -2,1,2,4,720 -2,1,2,5,426 -2,1,2,6,1242 -2,1,2,7,425 -2,1,2,8,962 -2,1,2,9,960 -2,1,2,10,961 -2,1,2,12,423 -2,1,2,13,1240 -2,1,2,14,418 -2,1,2,15,719 -2,1,2,16,417 -2,1,2,17,722 -2,1,2,18,695 -2,1,2,19,1239 -2,1,2,20,958 -2,1,2,21,724 -2,1,2,23,698 -2,1,2,24,725 -2,1,2,25,700 -2,1,2,26,727 -2,1,2,27,957 -2,1,2,28,1237 -2,1,2,29,959 -2,1,2,30,987 -2,1,2,31,956 -2,1,2,32,715 -2,1,2,33,955 -2,1,2,34,1234 -2,1,2,35,701 -2,1,2,36,422 -2,1,2,37,954 -2,1,2,38,421 -2,1,2,39,703 -2,1,2,40,419 -2,1,2,41,952 -2,1,2,42,1232 -2,1,2,43,706 -2,1,2,44,1235 -2,1,2,46,953 -2,1,2,47,1233 -2,1,2,48,708 -2,1,2,49,1231 -2,1,2,50,709 -2,1,2,51,415 -2,1,2,52,951 -2,1,2,53,412 -2,1,2,54,711 -2,1,2,55,1230 -2,1,2,57,699 -2,1,2,58,1229 -2,1,2,59,948 -2,1,2,60,410 -2,1,2,61,702 -2,1,2,62,1228 -2,1,2,63,704 -2,1,2,64,1226 -2,1,2,65,697 -2,1,2,66,409 -2,1,2,67,946 -2,1,1,0,1227 -2,1,1,1,689 -2,1,1,2,1224 -2,1,1,3,945 -2,1,1,4,420 -2,1,1,5,943 -2,1,1,6,1225 -2,1,1,7,1223 -2,1,1,8,1222 -2,1,1,9,1221 -9,0,1,10,3615 -9,0,1,12,3404 -9,0,1,13,3616 -9,0,1,14,3403 -9,0,1,15,3824 -9,0,1,16,3405 -9,0,1,17,3825 -9,0,1,18,1982 -9,0,1,19,3826 -9,0,1,20,2237 -9,0,1,21,4023 -9,0,1,23,2485 -9,0,1,24,3614 -9,0,1,25,2726 -9,0,1,26,4119 -9,0,1,27,2236 -9,0,1,28,2957 -9,0,1,29,2484 -9,0,1,30,2956 -9,0,1,31,2958 -9,0,1,32,2955 -9,0,1,33,2725 -9,0,1,34,3183 -9,0,1,35,2235 -9,0,1,36,2954 -9,0,1,37,2483 -9,0,1,38,3182 -9,0,1,39,3613 -9,0,1,40,3181 -9,0,1,41,3184 -9,0,1,42,3401 -9,0,1,43,3402 -9,0,1,44,3400 -9,0,1,46,2724 -9,0,1,47,2728 -9,0,1,48,2234 -9,0,1,49,4213 -9,0,1,50,3612 -9,0,1,51,2488 -9,0,1,52,2482 -9,0,1,53,3816 -9,0,1,54,2723 -9,0,1,55,1984 -9,0,1,57,3399 -9,0,1,58,4022 -9,0,1,59,2233 -9,0,1,60,2239 -9,0,1,61,3611 -9,0,1,62,4118 -9,0,1,63,2481 -9,0,1,64,2487 -9,0,1,65,2722 -9,0,1,66,4212 -9,0,1,67,2232 -9,0,0,0,3815 -9,0,0,1,2480 -9,0,0,2,1983 -9,0,0,3,3823 -9,0,0,4,3610 -9,0,0,5,2721 -9,0,0,6,2959 -9,0,0,7,3180 -9,0,0,8,2719 -9,0,0,9,2479 -9,0,0,10,2238 -9,0,0,12,3814 -9,0,0,13,3398 -9,0,0,14,2720 -9,0,0,15,3185 -9,0,0,16,2953 -9,0,0,17,3609 -9,0,0,18,3179 -9,0,0,19,2727 -9,0,0,20,2478 -9,0,0,21,2952 -9,0,0,23,3813 -9,0,0,24,2486 -9,0,0,25,3177 -9,0,0,26,3608 -9,0,0,27,2950 -9,0,0,28,4009 -9,0,0,29,2475 -9,0,0,30,3178 -9,0,0,31,3396 -9,0,0,32,2477 -9,0,0,33,2716 -9,0,0,34,3397 -9,0,0,35,3812 -9,0,0,36,2718 -9,0,0,37,3176 -9,0,0,38,4008 -9,0,0,39,3607 -9,0,0,40,2951 -9,0,0,41,2474 -9,0,0,42,2476 -9,0,0,43,3395 -9,0,0,44,2717 -9,0,0,46,3811 -9,0,0,47,4021 -9,0,0,48,2949 -9,0,0,49,4117 -9,0,0,50,2715 -9,0,0,51,4007 -9,0,0,52,3175 -9,0,0,53,4020 -9,0,0,54,2948 -9,0,0,55,4116 -9,0,0,57,2714 -9,0,0,58,4019 -9,0,0,59,3810 -9,0,0,60,4018 -9,0,0,61,3606 -9,0,0,62,4114 -9,0,0,63,3394 -9,0,0,64,4017 -9,0,0,65,4006 -9,0,0,66,4113 -9,0,0,67,3174 -9,0,3,0,2736 -9,0,3,1,1220 -9,0,3,2,2013 -9,0,3,3,2735 -9,0,3,4,2029 -9,0,3,5,1219 -9,0,3,6,2250 -9,0,3,7,1995 -9,0,3,8,1777 -9,0,3,9,1760 -9,0,3,10,2011 -9,0,3,12,1998 -9,0,3,13,2253 -9,0,3,14,1756 -9,0,3,15,2497 -9,0,3,16,2734 -9,0,3,17,2033 -9,0,3,18,2248 -9,0,3,19,2968 -9,0,3,20,1759 -9,0,3,21,2010 -9,0,3,23,1495 -9,0,3,24,2027 -9,0,3,25,1755 -9,0,3,26,2008 -9,0,3,27,1994 -9,0,3,28,2031 -9,0,3,29,1753 -9,0,3,30,2005 -9,0,3,31,2733 -9,0,3,32,2967 -9,0,3,33,1494 -9,0,3,34,2026 -9,0,3,35,1754 -9,0,3,36,2003 -9,0,3,37,1492 -9,0,3,38,2024 -9,0,3,39,1750 -9,0,3,40,2002 -9,0,3,41,1489 -9,0,3,42,2021 -9,0,3,43,1752 -9,0,3,44,2000 -9,0,3,46,1749 -9,0,3,47,2966 -9,0,3,48,1748 -9,0,3,49,2019 -9,0,3,50,1746 -9,0,3,51,2015 -9,0,3,52,1751 -9,0,3,53,1774 -9,0,3,54,1744 -9,0,3,55,2014 -9,0,3,57,1747 -9,0,3,58,2030 -9,0,3,59,1743 -9,0,3,60,2012 -9,0,3,61,2965 -9,0,3,62,2028 -9,0,3,63,2247 -9,0,3,64,2249 -9,0,3,65,1745 -9,0,3,66,2025 -9,0,3,67,1741 -9,0,2,0,2496 -9,0,2,1,1742 -9,0,2,2,1769 -9,0,2,3,2964 -9,0,2,4,2009 -9,0,2,5,1993 -9,0,2,6,3191 -9,0,2,7,1740 -9,0,2,8,2023 -9,0,2,9,1739 -9,0,2,10,2007 -9,0,2,12,2963 -9,0,2,13,1766 -9,0,2,14,1737 -9,0,2,15,2006 -9,0,2,16,1738 -9,0,2,17,2022 -9,0,2,18,2495 -9,0,2,19,1997 -9,0,2,20,2494 -9,0,2,21,3190 -9,0,2,23,2493 -9,0,2,24,1764 -9,0,2,25,2732 -9,0,2,26,2004 -9,0,2,27,2492 -9,0,2,28,2020 -9,0,2,29,1730 -9,0,2,30,2001 -9,0,2,31,1992 -9,0,2,32,1763 -9,0,2,33,3189 -9,0,2,34,1999 -9,0,2,35,1729 -9,0,2,36,2017 -9,0,2,37,1991 -9,0,2,38,1996 -9,0,2,39,1728 -9,0,2,40,1761 -9,0,2,41,1990 -9,0,2,42,1757 -9,0,2,43,3188 -9,0,2,44,1762 -9,0,2,46,1727 -9,0,2,47,1497 -9,0,2,48,2962 -9,0,2,49,3408 -9,0,2,50,1989 -9,0,2,51,1758 -9,0,2,52,2244 -9,0,2,53,2246 -9,0,2,54,2730 -9,0,2,55,2731 -9,0,2,57,3187 -9,0,2,58,2491 -9,0,2,59,1988 -9,0,2,60,2245 -9,0,2,61,2243 -9,0,2,62,3407 -9,0,2,63,1725 -9,0,2,64,1726 -9,0,2,65,1987 -9,0,2,66,2490 -9,0,2,67,3186 -9,0,1,0,2961 -9,0,1,1,2242 -9,0,1,2,2729 -9,0,1,3,1986 -9,0,1,4,3406 -9,0,1,5,2241 -9,0,1,6,2489 -9,0,1,7,1985 -9,0,1,8,2960 -9,0,1,9,2240 -9,1,1,10,3820 -9,1,1,12,3819 -9,1,1,13,4302 -9,1,1,14,4211 -9,1,1,15,4301 -9,1,1,16,4208 -9,1,1,17,4300 -9,1,1,18,4209 -9,1,1,19,4389 -9,1,1,20,4210 -9,1,1,21,4299 -9,1,1,23,4303 -9,1,1,24,4388 -9,1,1,25,3818 -9,1,1,26,4298 -9,1,1,27,4115 -9,1,1,28,4387 -9,1,1,29,4207 -9,1,1,30,4014 -9,1,1,31,4016 -9,1,1,32,4297 -9,1,1,33,4112 -9,1,1,34,4386 -9,1,1,35,4206 -9,1,1,36,4472 -9,1,1,37,3817 -9,1,1,38,4013 -9,1,1,39,4015 -9,1,1,40,4385 -9,1,1,41,4111 -9,1,1,42,4471 -9,1,1,43,4205 -9,1,1,44,4384 -9,1,1,46,4110 -9,1,1,47,4470 -9,1,1,48,4204 -9,1,1,49,4383 -9,1,1,50,4296 -9,1,1,51,4469 -9,1,1,52,4109 -9,1,1,53,4012 -9,1,1,54,4203 -9,1,1,55,4552 -9,1,1,57,4295 -9,1,1,58,4382 -9,1,1,59,4108 -9,1,1,60,4468 -9,1,1,61,4202 -9,1,1,62,4551 -9,1,1,63,4294 -9,1,1,64,4381 -9,1,1,65,4107 -9,1,1,66,4467 -9,1,1,67,4011 -9,1,0,0,4550 -9,1,0,1,4201 -9,1,0,2,4380 -9,1,0,3,4293 -9,1,0,4,4466 -9,1,0,5,4292 -9,1,0,6,4549 -9,1,0,7,4200 -9,1,0,8,4465 -9,1,0,9,4106 -9,1,0,10,4548 -9,1,0,12,4010 -9,1,0,13,4628 -9,1,0,14,4291 -9,1,0,15,4105 -9,1,0,16,4199 -9,1,0,17,4464 -9,1,0,18,4379 -9,1,0,19,4547 -9,1,0,20,4290 -9,1,0,21,4627 -9,1,0,23,4198 -9,1,0,24,4463 -9,1,0,25,4378 -9,1,0,26,4546 -9,1,0,27,4289 -9,1,0,28,4104 -9,1,0,29,4197 -9,1,0,30,4626 -9,1,0,31,4377 -9,1,0,32,4462 -9,1,0,33,4196 -9,1,0,34,4545 -9,1,0,35,4288 -9,1,0,36,4625 -9,1,0,37,4376 -9,1,0,38,4103 -9,1,0,39,4287 -9,1,0,40,4702 -9,1,0,41,1208 -9,1,0,42,4375 -9,1,0,43,4544 -9,1,0,44,4461 -9,1,0,46,4624 -9,1,0,47,2294 -9,1,0,48,4460 -9,1,0,49,4701 -9,1,0,50,4102 -9,1,0,51,4700 -9,1,0,52,4543 -9,1,0,53,4286 -9,1,0,54,4622 -9,1,0,55,4623 -9,1,0,57,4285 -9,1,0,58,4195 -9,1,0,59,4374 -9,1,0,60,4699 -9,1,0,61,4459 -9,1,0,62,4771 -9,1,0,63,4101 -9,1,0,64,4698 -9,1,0,65,4542 -9,1,0,66,4194 -9,1,0,67,4621 -9,1,3,0,2753 -9,1,3,1,2970 -9,1,3,2,2503 -9,1,3,3,2276 -9,1,3,4,2510 -9,1,3,5,2737 -9,1,3,6,2504 -9,1,3,7,2969 -9,1,3,8,3196 -9,1,3,9,2251 -9,1,3,10,2754 -9,1,3,12,2273 -9,1,3,13,2506 -9,1,3,14,2255 -9,1,3,15,2513 -9,1,3,16,2034 -9,1,3,17,2509 -9,1,3,18,2254 -9,1,3,19,2756 -9,1,3,20,2036 -9,1,3,21,2511 -9,1,3,23,2018 -9,1,3,24,3195 -9,1,3,25,2032 -9,1,3,26,2508 -9,1,3,27,2016 -9,1,3,28,2740 -9,1,3,29,2256 -9,1,3,30,2751 -9,1,3,31,2257 -9,1,3,32,2512 -9,1,3,33,2278 -9,1,3,34,2755 -9,1,3,35,3194 -9,1,3,36,2505 -9,1,3,37,2260 -9,1,3,38,2748 -9,1,3,39,2279 -9,1,3,40,2507 -9,1,3,41,2262 -9,1,3,42,2752 -9,1,3,43,2281 -9,1,3,44,2502 -9,1,3,46,3193 -9,1,3,47,2746 -9,1,3,48,2252 -9,1,3,49,2500 -9,1,3,50,2284 -9,1,3,51,3413 -9,1,3,52,2263 -9,1,3,53,2750 -9,1,3,54,2282 -9,1,3,55,2501 -9,1,3,57,2498 -9,1,3,58,2745 -9,1,3,59,3192 -9,1,3,60,2741 -9,1,3,61,2280 -9,1,3,62,2749 -9,1,3,63,2265 -9,1,3,64,3412 -9,1,3,65,2277 -9,1,3,66,2742 -9,1,3,67,2268 -9,1,2,0,2982 -9,1,2,1,2275 -9,1,2,2,2743 -9,1,2,3,2270 -9,1,2,4,2747 -9,1,2,5,2274 -9,1,2,6,3411 -9,1,2,7,2271 -9,1,2,8,2971 -9,1,2,9,2525 -9,1,2,10,2980 -9,1,2,12,2258 -9,1,2,13,2972 -9,1,2,14,2522 -9,1,2,15,2744 -9,1,2,16,2259 -9,1,2,17,3197 -9,1,2,18,2520 -9,1,2,19,2979 -9,1,2,20,3410 -9,1,2,21,2738 -9,1,2,23,2261 -9,1,2,24,3414 -9,1,2,25,2519 -9,1,2,26,2973 -9,1,2,27,2264 -9,1,2,28,3198 -9,1,2,29,2517 -9,1,2,30,3199 -9,1,2,31,2739 -9,1,2,32,3200 -9,1,2,33,3409 -9,1,2,34,3415 -9,1,2,35,2521 -9,1,2,36,3621 -9,1,2,37,2266 -9,1,2,38,3416 -9,1,2,39,2514 -9,1,2,40,3622 -9,1,2,41,2267 -9,1,2,42,3417 -9,1,2,43,2518 -9,1,2,44,3418 -9,1,2,46,2269 -9,1,2,47,3419 -9,1,2,48,2516 -9,1,2,49,3620 -9,1,2,50,2499 -9,1,2,51,3623 -9,1,2,52,2515 -9,1,2,53,3624 -9,1,2,54,2272 -9,1,2,55,3625 -9,1,2,57,4027 -9,1,2,58,3626 -9,1,2,59,3829 -9,1,2,60,3619 -9,1,2,61,4026 -9,1,2,62,3627 -9,1,2,63,4121 -9,1,2,64,3628 -9,1,2,65,4025 -9,1,2,66,3629 -9,1,2,67,3828 -9,1,1,0,3832 -9,1,1,1,3827 -9,1,1,2,3831 -9,1,1,3,4024 -9,1,1,4,3830 -9,1,1,5,4120 -9,1,1,6,3822 -9,1,1,7,3617 -9,1,1,8,3821 -9,1,1,9,3618 -4,2,1,10,3636 -4,2,1,12,2287 -4,2,1,13,993 -4,2,1,14,2984 -4,2,1,15,994 -4,2,1,16,3635 -4,2,1,17,4214 -4,2,1,18,2038 -4,2,1,19,995 -4,2,1,20,1779 -4,2,1,21,997 -4,2,1,23,2987 -4,2,1,24,998 -4,2,1,25,3634 -4,2,1,26,1791 -4,2,1,27,1778 -4,2,1,28,1788 -4,2,1,29,1511 -4,2,1,30,2290 -4,2,1,31,2759 -4,2,1,32,2046 -4,2,1,33,3206 -4,2,1,34,2043 -4,2,1,35,1524 -4,2,1,36,2285 -4,2,1,37,2986 -4,2,1,38,3838 -4,2,1,39,1780 -4,2,1,40,2529 -4,2,1,41,2039 -4,2,1,42,2530 -4,2,1,43,2037 -4,2,1,44,2292 -4,2,1,46,1782 -4,2,1,47,3837 -4,2,1,48,2040 -4,2,1,49,1527 -4,2,1,50,1786 -4,2,1,51,2288 -4,2,1,52,3207 -4,2,1,53,2528 -4,2,1,54,3836 -4,2,1,55,1532 -4,2,1,57,1785 -4,2,1,58,2045 -4,2,1,59,2289 -4,2,1,60,1794 -4,2,1,61,1526 -4,2,1,62,1793 -4,2,1,63,2526 -4,2,1,64,2049 -4,2,1,65,3835 -4,2,1,66,2047 -4,2,1,67,1781 -4,2,0,0,1790 -4,2,0,1,1513 -4,2,0,2,4032 -4,2,0,3,1783 -4,2,0,4,1792 -4,2,0,5,1516 -4,2,0,6,1529 -4,2,0,7,1518 -4,2,0,8,2042 -4,2,0,9,1784 -4,2,0,10,4031 -4,2,0,12,1519 -4,2,0,13,2761 -4,2,0,14,1521 -4,2,0,15,2988 -4,2,0,16,2760 -4,2,0,17,2524 -4,2,0,18,4030 -4,2,0,19,2527 -4,2,0,20,2041 -4,2,0,21,2758 -4,2,0,23,2762 -4,2,0,24,2283 -4,2,0,25,3205 -4,2,0,26,2044 -4,2,0,27,2981 -4,2,0,28,1787 -4,2,0,29,4029 -4,2,0,30,1789 -4,2,0,31,2978 -4,2,0,32,2983 -4,2,0,33,3204 -4,2,0,34,2757 -4,2,0,35,3423 -4,2,0,36,2985 -4,2,0,37,2977 -4,2,0,38,2286 -4,2,0,39,3203 -4,2,0,40,2035 -4,2,0,41,3422 -4,2,0,42,4124 -4,2,0,43,3633 -4,2,0,44,2523 -4,2,0,46,2976 -4,2,0,47,3424 -4,2,0,48,3202 -4,2,0,49,3421 -4,2,0,50,4123 -4,2,0,51,4028 -4,2,0,52,3632 -4,2,0,53,3420 -4,2,0,54,2975 -4,2,0,55,3631 -4,2,0,57,3201 -4,2,0,58,4703 -4,2,0,59,3834 -4,2,0,60,4390 -4,2,0,61,4122 -4,2,0,62,4629 -4,2,0,63,2974 -4,2,0,64,4304 -4,2,0,65,3630 -4,2,0,66,4215 -4,2,0,67,3833 -4,2,3,0,2299 -4,2,3,1,723 -4,2,3,2,2298 -4,2,3,3,2293 -4,2,3,4,2543 -4,2,3,5,2296 -4,2,3,6,2541 -4,2,3,7,2291 -4,2,3,8,2060 -4,2,3,9,1005 -4,2,3,10,2538 -4,2,3,12,1275 -4,2,3,13,1803 -4,2,3,14,1277 -4,2,3,15,1807 -4,2,3,16,2536 -4,2,3,17,1543 -4,2,3,18,2535 -4,2,3,19,2540 -4,2,3,20,2533 -4,2,3,21,1546 -4,2,3,23,1001 -4,2,3,24,2539 -4,2,3,25,1003 -4,2,3,26,1276 -4,2,3,27,1802 -4,2,3,28,2537 -4,2,3,29,1540 -4,2,3,30,1279 -4,2,3,31,1541 -4,2,3,32,2056 -4,2,3,33,2534 -4,2,3,34,2058 -4,2,3,35,2532 -4,2,3,36,1002 -4,2,3,37,1273 -4,2,3,38,2777 -4,2,3,39,1274 -4,2,3,40,2775 -4,2,3,41,2531 -4,2,3,42,2772 -4,2,3,43,999 -4,2,3,44,1804 -4,2,3,46,2770 -4,2,3,47,1542 -4,2,3,48,1000 -4,2,3,49,2308 -4,2,3,50,2769 -4,2,3,51,2774 -4,2,3,52,1270 -4,2,3,53,1544 -4,2,3,54,1272 -4,2,3,55,2773 -4,2,3,57,2767 -4,2,3,58,2305 -4,2,3,59,2050 -4,2,3,60,2771 -4,2,3,61,1796 -4,2,3,62,2544 -4,2,3,63,2768 -4,2,3,64,1006 -4,2,3,65,2766 -4,2,3,66,3003 -4,2,3,67,1799 -4,2,2,0,2542 -4,2,2,1,2297 -4,2,2,2,3001 -4,2,2,3,2765 -4,2,2,4,2778 -4,2,2,5,2300 -4,2,2,6,2998 -4,2,2,7,1539 -4,2,2,8,1004 -4,2,2,9,2996 -4,2,2,10,1280 -4,2,2,12,2052 -4,2,2,13,1278 -4,2,2,14,996 -4,2,2,15,3000 -4,2,2,16,2995 -4,2,2,17,2999 -4,2,2,18,2993 -4,2,2,19,2301 -4,2,2,20,2763 -4,2,2,21,726 -4,2,2,23,2764 -4,2,2,24,2997 -4,2,2,25,2990 -4,2,2,26,1801 -4,2,2,27,1795 -4,2,2,28,2994 -4,2,2,29,1797 -4,2,2,30,3222 -4,2,2,31,1534 -4,2,2,32,2053 -4,2,2,33,2992 -4,2,2,34,2055 -4,2,2,35,2991 -4,2,2,36,3220 -4,2,2,37,2295 -4,2,2,38,3217 -4,2,2,39,2048 -4,2,2,40,1798 -4,2,2,41,2989 -4,2,2,42,3215 -4,2,2,43,1269 -4,2,2,44,2302 -4,2,2,46,3214 -4,2,2,47,1800 -4,2,2,48,1266 -4,2,2,49,2051 -4,2,2,50,3212 -4,2,2,51,3218 -4,2,2,52,1267 -4,2,2,53,3216 -4,2,2,54,1536 -4,2,2,55,1537 -4,2,2,57,3209 -4,2,2,58,2054 -4,2,2,59,1535 -4,2,2,60,3213 -4,2,2,61,3211 -4,2,2,62,2303 -4,2,2,63,1538 -4,2,2,64,2057 -4,2,2,65,3210 -4,2,2,66,3432 -4,2,2,67,1264 -4,2,1,0,1805 -4,2,1,1,1268 -4,2,1,2,3429 -4,2,1,3,3208 -4,2,1,4,3427 -4,2,1,5,1271 -4,2,1,6,3430 -4,2,1,7,3426 -4,2,1,8,3428 -4,2,1,9,3425 -4,3,1,10,3841 -4,3,1,12,3637 -4,3,1,13,2558 -4,3,1,14,2320 -4,3,1,15,2794 -4,3,1,16,2317 -4,3,1,17,3239 -4,3,1,18,3840 -4,3,1,19,2792 -4,3,1,20,2315 -4,3,1,21,2796 -4,3,1,23,2554 -4,3,1,24,2795 -4,3,1,25,3839 -4,3,1,26,3021 -4,3,1,27,2314 -4,3,1,28,3241 -4,3,1,29,2318 -4,3,1,30,3022 -4,3,1,31,2557 -4,3,1,32,2561 -4,3,1,33,2322 -4,3,1,34,2563 -4,3,1,35,3019 -4,3,1,36,2799 -4,3,1,37,2555 -4,3,1,38,4035 -4,3,1,39,2559 -4,3,1,40,3023 -4,3,1,41,3016 -4,3,1,42,2797 -4,3,1,43,2560 -4,3,1,44,3025 -4,3,1,46,2562 -4,3,1,47,2565 -4,3,1,48,2556 -4,3,1,49,2567 -4,3,1,50,3448 -4,3,1,51,4034 -4,3,1,52,3238 -4,3,1,53,3024 -4,3,1,54,3235 -4,3,1,55,2564 -4,3,1,57,3020 -4,3,1,58,2801 -4,3,1,59,4033 -4,3,1,60,3027 -4,3,1,61,3018 -4,3,1,62,2798 -4,3,1,63,3446 -4,3,1,64,2566 -4,3,1,65,3450 -4,3,1,66,3650 -4,3,1,67,3028 -4,3,0,0,3247 -4,3,0,1,3237 -4,3,0,2,3654 -4,3,0,3,3244 -4,3,0,4,4128 -4,3,0,5,3246 -4,3,0,6,3842 -4,3,0,7,2800 -4,3,0,8,3453 -4,3,0,9,3026 -4,3,0,10,3843 -4,3,0,12,3451 -4,3,0,13,3651 -4,3,0,14,2802 -4,3,0,15,4127 -4,3,0,16,3240 -4,3,0,17,3452 -4,3,0,18,3642 -4,3,0,19,3845 -4,3,0,20,3640 -4,3,0,21,3030 -4,3,0,23,3643 -4,3,0,24,3242 -4,3,0,25,4126 -4,3,0,26,3456 -4,3,0,27,3447 -4,3,0,28,3653 -4,3,0,29,3652 -4,3,0,30,3851 -4,3,0,31,4125 -4,3,0,32,3846 -4,3,0,33,2568 -4,3,0,34,3243 -4,3,0,35,3449 -4,3,0,36,4219 -4,3,0,37,3848 -4,3,0,38,3454 -4,3,0,39,3655 -4,3,0,40,3657 -4,3,0,41,3850 -4,3,0,42,3656 -4,3,0,43,3844 -4,3,0,44,3245 -4,3,0,46,4036 -4,3,0,47,4218 -4,3,0,48,3853 -4,3,0,49,3455 -4,3,0,50,3458 -4,3,0,51,3847 -4,3,0,52,3660 -4,3,0,53,3849 -4,3,0,54,4217 -4,3,0,55,3852 -4,3,0,57,3658 -4,3,0,58,4037 -4,3,0,59,3856 -4,3,0,60,4129 -4,3,0,61,4305 -4,3,0,62,4220 -4,3,0,63,4216 -4,3,0,64,4308 -4,3,0,65,4393 -4,3,0,66,4307 -4,3,0,67,4306 -4,3,3,0,2553 -4,3,3,1,2548 -4,3,3,2,2791 -4,3,3,3,2551 -4,3,3,4,2793 -4,3,3,5,1808 -4,3,3,6,2788 -4,3,3,7,1282 -4,3,3,8,1815 -4,3,3,9,2545 -4,3,3,10,2786 -4,3,3,12,1547 -4,3,3,13,2790 -4,3,3,14,2059 -4,3,3,15,1281 -4,3,3,16,2310 -4,3,3,17,2789 -4,3,3,18,2307 -4,3,3,19,1806 -4,3,3,20,2547 -4,3,3,21,2787 -4,3,3,23,2783 -4,3,3,24,1816 -4,3,3,25,1545 -4,3,3,26,2784 -4,3,3,27,2780 -4,3,3,28,1818 -4,3,3,29,2306 -4,3,3,30,1811 -4,3,3,31,2546 -4,3,3,32,3017 -4,3,3,33,2062 -4,3,3,34,1812 -4,3,3,35,2781 -4,3,3,36,3014 -4,3,3,37,2549 -4,3,3,38,1814 -4,3,3,39,2779 -4,3,3,40,2316 -4,3,3,41,2776 -4,3,3,42,3012 -4,3,3,43,2063 -4,3,3,44,2068 -4,3,3,46,2311 -4,3,3,47,3015 -4,3,3,48,2785 -4,3,3,49,2066 -4,3,3,50,2309 -4,3,3,51,1817 -4,3,3,52,2061 -4,3,3,53,1819 -4,3,3,54,3009 -4,3,3,55,3013 -4,3,3,57,2782 -4,3,3,58,2070 -4,3,3,59,3006 -4,3,3,60,3010 -4,3,3,61,3004 -4,3,3,62,2071 -4,3,3,63,2552 -4,3,3,64,3236 -4,3,3,65,2550 -4,3,3,66,2073 -4,3,3,67,3005 -4,3,2,0,3233 -4,3,2,1,3007 -4,3,2,2,2067 -4,3,2,3,3002 -4,3,2,4,3231 -4,3,2,5,1554 -4,3,2,6,2076 -4,3,2,7,1283 -4,3,2,8,3230 -4,3,2,9,1552 -4,3,2,10,3234 -4,3,2,12,1549 -4,3,2,13,2078 -4,3,2,14,1548 -4,3,2,15,3232 -4,3,2,16,1553 -4,3,2,17,2319 -4,3,2,18,1809 -4,3,2,19,2069 -4,3,2,20,2065 -4,3,2,21,3229 -4,3,2,23,1551 -4,3,2,24,2072 -4,3,2,25,2064 -4,3,2,26,3227 -4,3,2,27,3223 -4,3,2,28,2074 -4,3,2,29,1810 -4,3,2,30,3226 -4,3,2,31,2313 -4,3,2,32,3445 -4,3,2,33,1550 -4,3,2,34,2075 -4,3,2,35,3225 -4,3,2,36,3443 -4,3,2,37,3011 -4,3,2,38,2077 -4,3,2,39,3008 -4,3,2,40,2321 -4,3,2,41,3221 -4,3,2,42,3442 -4,3,2,43,3228 -4,3,2,44,3440 -4,3,2,46,3219 -4,3,2,47,3444 -4,3,2,48,2312 -4,3,2,49,2324 -4,3,2,50,1813 -4,3,2,51,2326 -4,3,2,52,3224 -4,3,2,53,2327 -4,3,2,54,3437 -4,3,2,55,3441 -4,3,2,57,3435 -4,3,2,58,2329 -4,3,2,59,3434 -4,3,2,60,3439 -4,3,2,61,3438 -4,3,2,62,2323 -4,3,2,63,3860 -4,3,2,64,3649 -4,3,2,65,3436 -4,3,2,66,2325 -4,3,2,67,2304 -4,3,1,0,3647 -4,3,1,1,3644 -4,3,1,2,2328 -4,3,1,3,3433 -4,3,1,4,3646 -4,3,1,5,3431 -4,3,1,6,3648 -4,3,1,7,3639 -4,3,1,8,3645 -4,3,1,9,3641 -9,2,1,10,4566 -9,2,1,12,4790 -9,2,1,13,4485 -9,2,1,14,4789 -9,2,1,15,4484 -9,2,1,16,4476 -9,2,1,17,4565 -9,2,1,18,4475 -9,2,1,19,4856 -9,2,1,20,4855 -9,2,1,21,4483 -9,2,1,23,4474 -9,2,1,24,4482 -9,2,1,25,4854 -9,2,1,26,4481 -9,2,1,27,4473 -9,2,1,28,4480 -9,2,1,29,4559 -9,2,1,30,4479 -9,2,1,31,4558 -9,2,1,32,4478 -9,2,1,33,4557 -9,2,1,34,4477 -9,2,1,35,4556 -9,2,1,36,4564 -9,2,1,37,4555 -9,2,1,38,4563 -9,2,1,39,4554 -9,2,1,40,4562 -9,2,1,41,4553 -9,2,1,42,4561 -9,2,1,43,4635 -9,2,1,44,4917 -9,2,1,46,4634 -9,2,1,47,4560 -9,2,1,48,4633 -9,2,1,49,4916 -9,2,1,50,4632 -9,2,1,51,4641 -9,2,1,52,4915 -9,2,1,53,4640 -9,2,1,54,4631 -9,2,1,55,4639 -9,2,1,57,4914 -9,2,1,58,4638 -9,2,1,59,4630 -9,2,1,60,4637 -9,2,1,61,4709 -9,2,1,62,4636 -9,2,1,63,4708 -9,2,1,64,4718 -9,2,1,65,4707 -9,2,1,66,4717 -9,2,1,67,4706 -9,2,0,0,4788 -9,2,0,1,4705 -9,2,0,2,4787 -9,2,0,3,4704 -9,2,0,4,4786 -9,2,0,5,4780 -9,2,0,6,4853 -9,2,0,7,4779 -9,2,0,8,4972 -9,2,0,9,4971 -9,2,0,10,4785 -9,2,0,12,4778 -9,2,0,13,4784 -9,2,0,14,4970 -9,2,0,15,4783 -9,2,0,16,4777 -9,2,0,17,4782 -9,2,0,18,4776 -9,2,0,19,4781 -9,2,0,20,4775 -9,2,0,21,4852 -9,2,0,23,4774 -9,2,0,24,4851 -9,2,0,25,4773 -9,2,0,26,4850 -9,2,0,27,440 -9,2,0,28,4849 -9,2,0,29,4845 -9,2,0,30,4848 -9,2,0,31,4844 -9,2,0,32,4847 -9,2,0,33,4843 -9,2,0,34,5021 -9,2,0,35,4842 -9,2,0,36,4846 -9,2,0,37,4841 -9,2,0,38,5020 -9,2,0,39,4840 -9,2,0,40,4913 -9,2,0,41,4839 -9,2,0,42,4912 -9,2,0,43,5019 -9,2,0,44,4911 -9,2,0,46,4838 -9,2,0,47,4910 -9,2,0,48,4908 -9,2,0,49,4909 -9,2,0,50,4907 -9,2,0,51,5018 -9,2,0,52,4906 -9,2,0,53,4969 -9,2,0,54,4905 -9,2,0,55,4968 -9,2,0,57,4904 -9,2,0,58,4967 -9,2,0,59,4903 -9,2,0,60,4966 -9,2,0,61,4902 -9,2,0,62,4965 -9,2,0,63,4901 -9,2,0,64,5017 -9,2,0,65,5060 -9,2,0,66,5061 -9,2,0,67,5059 -9,2,3,0,4319 -9,2,3,1,4318 -9,2,3,2,3249 -9,2,3,3,4317 -9,2,3,4,3462 -9,2,3,5,3664 -9,2,3,6,3866 -9,2,3,7,3861 -9,2,3,8,3248 -9,2,3,9,3663 -9,2,3,10,3461 -9,2,3,12,3661 -9,2,3,13,3666 -9,2,3,14,3859 -9,2,3,15,3668 -9,2,3,16,3662 -9,2,3,17,3864 -9,2,3,18,3659 -9,2,3,19,3460 -9,2,3,20,3858 -9,2,3,21,4406 -9,2,3,23,4405 -9,2,3,24,3665 -9,2,3,25,3855 -9,2,3,26,3459 -9,2,3,27,4404 -9,2,3,28,4227 -9,2,3,29,3854 -9,2,3,30,3457 -9,2,3,31,4040 -9,2,3,32,4137 -9,2,3,33,4226 -9,2,3,34,3256 -9,2,3,35,4134 -9,2,3,36,3469 -9,2,3,37,4316 -9,2,3,38,3674 -9,2,3,39,4039 -9,2,3,40,3468 -9,2,3,41,4133 -9,2,3,42,3870 -9,2,3,43,4038 -9,2,3,44,3872 -9,2,3,46,4132 -9,2,3,47,4490 -9,2,3,48,4403 -9,2,3,49,4043 -9,2,3,50,4225 -9,2,3,51,4489 -9,2,3,52,4131 -9,2,3,53,3673 -9,2,3,54,4488 -9,2,3,55,3467 -9,2,3,57,4487 -9,2,3,58,3251 -9,2,3,59,3466 -9,2,3,60,3868 -9,2,3,61,3865 -9,2,3,62,4136 -9,2,3,63,3669 -9,2,3,64,3672 -9,2,3,65,3463 -9,2,3,66,3869 -9,2,3,67,4042 -9,2,2,0,3465 -9,2,2,1,3867 -9,2,2,2,3671 -9,2,2,3,3250 -9,2,2,4,3253 -9,2,2,5,3863 -9,2,2,6,1558 -9,2,2,7,3862 -9,2,2,8,4570 -9,2,2,9,4135 -9,2,2,10,3857 -9,2,2,12,4569 -9,2,2,13,3871 -9,2,2,14,4041 -9,2,2,15,3464 -9,2,2,16,4568 -9,2,2,17,3667 -9,2,2,18,4130 -9,2,2,19,4228 -9,2,2,20,4486 -9,2,2,21,3670 -9,2,2,23,4567 -9,2,2,24,3029 -9,2,2,25,4402 -9,2,2,26,3031 -9,2,2,27,4315 -9,2,2,28,3676 -9,2,2,29,4401 -9,2,2,30,3874 -9,2,2,31,4314 -9,2,2,32,3470 -9,2,2,33,4224 -9,2,2,34,3675 -9,2,2,35,4400 -9,2,2,36,4648 -9,2,2,37,4313 -9,2,2,38,4044 -9,2,2,39,4223 -9,2,2,40,4647 -9,2,2,41,4646 -9,2,2,42,3472 -9,2,2,43,4222 -9,2,2,44,3873 -9,2,2,46,4221 -9,2,2,47,3678 -9,2,2,48,4645 -9,2,2,49,3677 -9,2,2,50,4399 -9,2,2,51,3875 -9,2,2,52,4312 -9,2,2,53,3471 -9,2,2,54,4311 -9,2,2,55,4138 -9,2,2,57,4310 -9,2,2,58,3876 -9,2,2,59,4309 -9,2,2,60,3252 -9,2,2,61,4398 -9,2,2,62,2803 -9,2,2,63,4397 -9,2,2,64,2804 -9,2,2,65,4396 -9,2,2,66,4722 -9,2,2,67,4395 -9,2,1,0,4229 -9,2,1,1,4721 -9,2,1,2,3033 -9,2,1,3,4394 -9,2,1,4,2805 -9,2,1,5,4392 -9,2,1,6,2569 -9,2,1,7,4720 -9,2,1,8,4792 -9,2,1,9,4391 -9,3,1,10,4859 -9,3,1,12,4858 -9,3,1,13,4860 -9,3,1,14,4857 -9,3,1,15,4861 -9,3,1,16,4654 -9,3,1,17,4862 -9,3,1,18,4655 -9,3,1,19,4863 -9,3,1,20,4656 -9,3,1,21,4864 -9,3,1,23,4657 -9,3,1,24,4865 -9,3,1,25,4658 -9,3,1,26,4866 -9,3,1,27,4791 -9,3,1,28,4867 -9,3,1,29,4796 -9,3,1,30,4868 -9,3,1,31,4727 -9,3,1,32,4920 -9,3,1,33,4797 -9,3,1,34,4921 -9,3,1,35,4728 -9,3,1,36,4919 -9,3,1,37,4798 -9,3,1,38,4922 -9,3,1,39,4918 -9,3,1,40,4923 -9,3,1,41,4729 -9,3,1,42,4924 -9,3,1,43,4799 -9,3,1,44,4925 -9,3,1,46,4730 -9,3,1,47,4926 -9,3,1,48,4731 -9,3,1,49,4927 -9,3,1,50,4732 -9,3,1,51,4928 -9,3,1,52,4733 -9,3,1,53,4929 -9,3,1,54,4800 -9,3,1,55,4978 -9,3,1,57,4801 -9,3,1,58,4977 -9,3,1,59,4802 -9,3,1,60,4976 -9,3,1,61,4803 -9,3,1,62,4979 -9,3,1,63,4719 -9,3,1,64,4975 -9,3,1,65,4644 -9,3,1,66,4980 -9,3,1,67,4974 -9,3,0,0,4981 -9,3,0,1,4643 -9,3,0,2,4982 -9,3,0,3,4973 -9,3,0,4,4983 -9,3,0,5,4642 -9,3,0,6,4984 -9,3,0,7,4716 -9,3,0,8,4985 -9,3,0,9,4715 -9,3,0,10,5028 -9,3,0,12,4714 -9,3,0,13,5027 -9,3,0,14,4713 -9,3,0,15,5026 -9,3,0,16,4712 -9,3,0,17,5025 -9,3,0,18,4711 -9,3,0,19,5029 -9,3,0,20,4710 -9,3,0,21,5024 -9,3,0,23,5016 -9,3,0,24,5030 -9,3,0,25,5015 -9,3,0,26,5023 -9,3,0,27,4964 -9,3,0,28,5031 -9,3,0,29,5022 -9,3,0,30,5032 -9,3,0,31,5014 -9,3,0,32,5033 -9,3,0,33,5058 -9,3,0,34,5034 -9,3,0,35,5013 -9,3,0,36,5070 -9,3,0,37,4960 -9,3,0,38,5069 -9,3,0,39,4961 -9,3,0,40,5068 -9,3,0,41,4962 -9,3,0,42,5067 -9,3,0,43,4963 -9,3,0,44,5066 -9,3,0,46,5104 -9,3,0,47,5071 -9,3,0,48,5103 -9,3,0,49,5065 -9,3,0,50,5102 -9,3,0,51,5072 -9,3,0,52,5101 -9,3,0,53,5064 -9,3,0,54,5100 -9,3,0,55,5073 -9,3,0,57,5063 -9,3,0,58,5074 -9,3,0,59,5099 -9,3,0,60,5075 -9,3,0,61,5062 -9,3,0,62,5106 -9,3,0,63,5098 -9,3,0,64,5105 -9,3,0,65,5097 -9,3,0,66,5095 -9,3,0,67,5096 -9,3,3,0,4322 -9,3,3,1,4320 -9,3,3,2,3882 -9,3,3,3,3877 -9,3,3,4,2575 -9,3,3,5,3254 -9,3,3,6,4409 -9,3,3,7,3032 -9,3,3,8,3881 -9,3,3,9,4408 -9,3,3,10,4231 -9,3,3,12,2570 -9,3,3,13,3039 -9,3,3,14,2807 -9,3,3,15,4046 -9,3,3,16,4407 -9,3,3,17,3475 -9,3,3,18,3035 -9,3,3,19,4140 -9,3,3,20,2571 -9,3,3,21,2574 -9,3,3,23,3255 -9,3,3,24,3884 -9,3,3,25,2806 -9,3,3,26,3262 -9,3,3,27,3034 -9,3,3,28,4232 -9,3,3,29,3679 -9,3,3,30,2811 -9,3,3,31,3258 -9,3,3,32,4047 -9,3,3,33,3473 -9,3,3,34,4493 -9,3,3,35,4230 -9,3,3,36,3684 -9,3,3,37,4045 -9,3,3,38,3886 -9,3,3,39,3680 -9,3,3,40,4492 -9,3,3,41,4491 -9,3,3,42,3261 -9,3,3,43,3878 -9,3,3,44,4141 -9,3,3,46,4321 -9,3,3,47,3041 -9,3,3,48,3259 -9,3,3,49,3887 -9,3,3,50,3880 -9,3,3,51,3477 -9,3,3,52,4139 -9,3,3,53,4233 -9,3,3,54,3681 -9,3,3,55,3683 -9,3,3,57,3879 -9,3,3,58,3889 -9,3,3,59,3682 -9,3,3,60,4574 -9,3,3,61,3476 -9,3,3,62,3883 -9,3,3,63,2809 -9,3,3,64,4573 -9,3,3,65,3036 -9,3,3,66,3892 -9,3,3,67,4572 -9,3,2,0,4494 -9,3,2,1,2573 -9,3,2,2,3478 -9,3,2,3,3257 -9,3,2,4,4143 -9,3,2,5,4571 -9,3,2,6,3040 -9,3,2,7,2572 -9,3,2,8,4144 -9,3,2,9,2808 -9,3,2,10,3686 -9,3,2,12,3037 -9,3,2,13,4575 -9,3,2,14,2330 -9,3,2,15,3263 -9,3,2,16,3474 -9,3,2,17,4235 -9,3,2,18,3260 -9,3,2,19,3264 -9,3,2,20,3038 -9,3,2,21,4325 -9,3,2,23,4410 -9,3,2,24,4651 -9,3,2,25,4048 -9,3,2,26,3885 -9,3,2,27,4323 -9,3,2,28,4496 -9,3,2,29,4142 -9,3,2,30,4650 -9,3,2,31,4234 -9,3,2,32,3685 -9,3,2,33,4649 -9,3,2,34,4413 -9,3,2,35,4411 -9,3,2,36,3480 -9,3,2,37,4324 -9,3,2,38,4497 -9,3,2,39,4050 -9,3,2,40,3479 -9,3,2,41,4049 -9,3,2,42,4578 -9,3,2,43,4495 -9,3,2,44,3687 -9,3,2,46,4652 -9,3,2,47,4498 -9,3,2,48,4576 -9,3,2,49,4726 -9,3,2,50,4412 -9,3,2,51,3482 -9,3,2,52,4236 -9,3,2,53,2810 -9,3,2,54,4326 -9,3,2,55,4725 -9,3,2,57,4724 -9,3,2,58,4499 -9,3,2,59,4653 -9,3,2,60,3888 -9,3,2,61,4723 -9,3,2,62,4580 -9,3,2,63,4577 -9,3,2,64,3688 -9,3,2,65,4237 -9,3,2,66,3481 -9,3,2,67,4327 -9,3,1,0,3689 -9,3,1,1,4414 -9,3,1,2,3690 -9,3,1,3,4328 -9,3,1,4,3890 -9,3,1,5,4579 -9,3,1,6,4795 -9,3,1,7,4415 -9,3,1,8,4794 -9,3,1,9,4793 -0,0,1,10,3282 -0,0,1,12,3493 -0,0,1,13,3499 -0,0,1,14,2332 -0,0,1,15,3496 -0,0,1,16,2331 -0,0,1,17,3498 -0,0,1,18,3490 -0,0,1,19,3280 -0,0,1,20,2815 -0,0,1,21,3277 -0,0,1,23,2814 -0,0,1,24,3495 -0,0,1,25,3494 -0,0,1,26,3275 -0,0,1,27,3044 -0,0,1,28,3273 -0,0,1,29,3489 -0,0,1,30,3274 -0,0,1,31,3702 -0,0,1,32,2818 -0,0,1,33,3697 -0,0,1,34,2580 -0,0,1,35,1570 -0,0,1,36,3708 -0,0,1,37,3048 -0,0,1,38,2581 -0,0,1,39,3271 -0,0,1,40,2336 -0,0,1,41,3270 -0,0,1,42,3703 -0,0,1,43,3269 -0,0,1,44,2819 -0,0,1,46,3045 -0,0,1,47,2334 -0,0,1,48,3701 -0,0,1,49,2082 -0,0,1,50,3698 -0,0,1,51,3704 -0,0,1,52,3268 -0,0,1,53,2081 -0,0,1,54,2577 -0,0,1,55,1822 -0,0,1,57,2576 -0,0,1,58,2333 -0,0,1,59,3267 -0,0,1,60,2578 -0,0,1,61,3488 -0,0,1,62,3904 -0,0,1,63,3901 -0,0,1,64,3907 -0,0,1,65,3898 -0,0,1,66,2579 -0,0,1,67,3047 -0,0,0,0,2817 -0,0,0,1,3485 -0,0,0,2,2816 -0,0,0,3,2812 -0,0,0,4,3049 -0,0,0,5,2813 -0,0,0,6,3906 -0,0,0,7,3043 -0,0,0,8,3706 -0,0,0,9,3902 -0,0,0,10,3905 -0,0,0,12,3897 -0,0,0,13,3705 -0,0,0,14,3265 -0,0,0,15,3497 -0,0,0,16,3042 -0,0,0,17,3903 -0,0,0,18,3266 -0,0,0,19,1823 -0,0,0,20,3483 -0,0,0,21,1007 -0,0,0,23,3491 -0,0,0,24,1285 -0,0,0,25,3492 -0,0,0,26,1284 -0,0,0,27,3700 -0,0,0,28,3046 -0,0,0,29,3699 -0,0,0,30,4053 -0,0,0,31,3899 -0,0,0,32,4052 -0,0,0,33,3900 -0,0,0,34,1555 -0,0,0,35,4051 -0,0,0,36,1556 -0,0,0,37,3487 -0,0,0,38,1821 -0,0,0,39,3486 -0,0,0,40,1820 -0,0,0,41,3695 -0,0,0,42,2079 -0,0,0,43,3694 -0,0,0,44,2080 -0,0,0,46,3484 -0,0,0,47,3272 -0,0,0,48,3692 -0,0,0,49,4239 -0,0,0,50,3696 -0,0,0,51,4416 -0,0,0,52,3693 -0,0,0,53,4581 -0,0,0,54,3691 -0,0,0,55,4734 -0,0,0,57,3896 -0,0,0,58,4146 -0,0,0,59,3893 -0,0,0,60,4869 -0,0,0,61,3895 -0,0,0,62,4986 -0,0,0,63,3894 -0,0,0,64,4238 -0,0,0,65,4145 -0,0,0,66,5076 -0,0,0,67,3891 -0,0,3,0,1834 -0,0,3,1,1829 -0,0,3,2,1294 -0,0,3,3,1564 -0,0,3,4,1295 -0,0,3,5,1563 -0,0,3,6,1017 -0,0,3,7,728 -0,0,3,8,1571 -0,0,3,9,1013 -0,0,3,10,1837 -0,0,3,12,1012 -0,0,3,13,1569 -0,0,3,14,1290 -0,0,3,15,1565 -0,0,3,16,1291 -0,0,3,17,1566 -0,0,3,18,2089 -0,0,3,19,2095 -0,0,3,20,730 -0,0,3,21,2092 -0,0,3,23,729 -0,0,3,24,446 -0,0,3,25,1014 -0,0,3,26,150 -0,0,3,27,1015 -0,0,3,28,738 -0,0,3,29,1293 -0,0,3,30,1022 -0,0,3,31,2090 -0,0,3,32,2091 -0,0,3,33,1292 -0,0,3,34,148 -0,0,3,35,1830 -0,0,3,36,445 -0,0,3,37,1562 -0,0,3,38,444 -0,0,3,39,1561 -0,0,3,40,735 -0,0,3,41,1828 -0,0,3,42,1301 -0,0,3,43,2342 -0,0,3,44,736 -0,0,3,46,2087 -0,0,3,47,2343 -0,0,3,48,2088 -0,0,3,49,2348 -0,0,3,50,2340 -0,0,3,51,1019 -0,0,3,52,1011 -0,0,3,53,734 -0,0,3,54,2341 -0,0,3,55,733 -0,0,3,57,1010 -0,0,3,58,443 -0,0,3,59,1288 -0,0,3,60,2344 -0,0,3,61,1289 -0,0,3,62,442 -0,0,3,63,1560 -0,0,3,64,2346 -0,0,3,65,1559 -0,0,3,66,1299 -0,0,3,67,2586 -0,0,2,0,1298 -0,0,2,1,1008 -0,0,2,2,1020 -0,0,2,3,1009 -0,0,2,4,2592 -0,0,2,5,1287 -0,0,2,6,2589 -0,0,2,7,1286 -0,0,2,8,1021 -0,0,2,9,1557 -0,0,2,10,2591 -0,0,2,12,2587 -0,0,2,13,1567 -0,0,2,14,1826 -0,0,2,15,1568 -0,0,2,16,1827 -0,0,2,17,1297 -0,0,2,18,2086 -0,0,2,19,2588 -0,0,2,20,2085 -0,0,2,21,1296 -0,0,2,23,2338 -0,0,2,24,1018 -0,0,2,25,2583 -0,0,2,26,3638 -0,0,2,27,2582 -0,0,2,28,441 -0,0,2,29,2820 -0,0,2,30,732 -0,0,2,31,2825 -0,0,2,32,2826 -0,0,2,33,2337 -0,0,2,34,2831 -0,0,2,35,2339 -0,0,2,36,731 -0,0,2,37,2585 -0,0,2,38,1016 -0,0,2,39,2823 -0,0,2,40,1833 -0,0,2,41,1824 -0,0,2,42,2828 -0,0,2,43,2824 -0,0,2,44,2590 -0,0,2,46,2821 -0,0,2,47,1832 -0,0,2,48,1825 -0,0,2,49,2827 -0,0,2,50,2084 -0,0,2,51,1835 -0,0,2,52,2083 -0,0,2,53,2094 -0,0,2,54,2335 -0,0,2,55,2345 -0,0,2,57,2584 -0,0,2,58,2829 -0,0,2,59,3054 -0,0,2,60,3057 -0,0,2,61,3051 -0,0,2,62,3060 -0,0,2,63,2822 -0,0,2,64,3059 -0,0,2,65,3052 -0,0,2,66,2093 -0,0,2,67,3050 -0,0,1,0,3058 -0,0,1,1,3055 -0,0,1,2,3056 -0,0,1,3,3053 -0,0,1,4,1831 -0,0,1,5,3281 -0,0,1,6,3284 -0,0,1,7,3278 -0,0,1,8,3279 -0,0,1,9,3276 -0,1,1,10,3285 -0,1,1,12,3500 -0,1,1,13,3506 -0,1,1,14,3504 -0,1,1,15,2364 -0,1,1,16,3501 -0,1,1,17,2363 -0,1,1,18,3288 -0,1,1,19,3509 -0,1,1,20,3290 -0,1,1,21,2847 -0,1,1,23,3503 -0,1,1,24,2846 -0,1,1,25,3291 -0,1,1,26,3505 -0,1,1,27,3294 -0,1,1,28,3076 -0,1,1,29,3293 -0,1,1,30,3510 -0,1,1,31,2842 -0,1,1,32,3713 -0,1,1,33,2604 -0,1,1,34,3718 -0,1,1,35,3707 -0,1,1,36,1573 -0,1,1,37,2605 -0,1,1,38,3072 -0,1,1,39,2360 -0,1,1,40,3295 -0,1,1,41,3711 -0,1,1,42,3297 -0,1,1,43,2843 -0,1,1,44,3298 -0,1,1,46,2361 -0,1,1,47,3077 -0,1,1,48,2109 -0,1,1,49,3714 -0,1,1,50,3712 -0,1,1,51,3717 -0,1,1,52,2110 -0,1,1,53,3300 -0,1,1,54,1851 -0,1,1,55,2609 -0,1,1,57,2362 -0,1,1,58,2608 -0,1,1,59,2607 -0,1,1,60,3299 -0,1,1,61,3912 -0,1,1,62,3512 -0,1,1,63,3908 -0,1,1,64,3914 -0,1,1,65,2606 -0,1,1,66,3917 -0,1,1,67,2844 -0,1,0,0,3074 -0,1,0,1,2845 -0,1,0,2,3514 -0,1,0,3,3073 -0,1,0,4,2849 -0,1,0,5,3909 -0,1,0,6,2848 -0,1,0,7,3709 -0,1,0,8,3078 -0,1,0,9,3910 -0,1,0,10,3913 -0,1,0,12,3710 -0,1,0,13,3918 -0,1,0,14,3502 -0,1,0,15,3302 -0,1,0,16,3911 -0,1,0,17,3079 -0,1,0,18,1850 -0,1,0,19,3301 -0,1,0,20,1039 -0,1,0,21,3515 -0,1,0,23,1317 -0,1,0,24,3507 -0,1,0,25,1316 -0,1,0,26,3508 -0,1,0,27,3075 -0,1,0,28,3716 -0,1,0,29,4147 -0,1,0,30,3715 -0,1,0,31,4054 -0,1,0,32,3915 -0,1,0,33,1587 -0,1,0,34,3916 -0,1,0,35,1588 -0,1,0,36,4055 -0,1,0,37,1853 -0,1,0,38,3511 -0,1,0,39,1852 -0,1,0,40,3513 -0,1,0,41,2111 -0,1,0,42,3719 -0,1,0,43,2112 -0,1,0,44,3721 -0,1,0,46,3296 -0,1,0,47,3516 -0,1,0,48,4329 -0,1,0,49,3724 -0,1,0,50,4500 -0,1,0,51,3720 -0,1,0,52,4659 -0,1,0,53,3722 -0,1,0,54,4804 -0,1,0,55,3723 -0,1,0,57,4148 -0,1,0,58,3920 -0,1,0,59,4930 -0,1,0,60,3922 -0,1,0,61,5035 -0,1,0,62,3919 -0,1,0,63,4240 -0,1,0,64,3921 -0,1,0,65,5107 -0,1,0,66,4149 -0,1,0,67,3923 -0,1,3,0,1839 -0,1,3,1,1307 -0,1,3,2,1845 -0,1,3,3,1306 -0,1,3,4,1580 -0,1,3,5,1028 -0,1,3,6,1579 -0,1,3,7,1572 -0,1,3,8,747 -0,1,3,9,1836 -0,1,3,10,1032 -0,1,3,12,1574 -0,1,3,13,1033 -0,1,3,14,1578 -0,1,3,15,1311 -0,1,3,16,1577 -0,1,3,17,1310 -0,1,3,18,2096 -0,1,3,19,2102 -0,1,3,20,2100 -0,1,3,21,746 -0,1,3,23,447 -0,1,3,24,745 -0,1,3,25,149 -0,1,3,26,1030 -0,1,3,27,737 -0,1,3,28,1031 -0,1,3,29,1023 -0,1,3,30,1309 -0,1,3,31,2099 -0,1,3,32,2101 -0,1,3,33,151 -0,1,3,34,1308 -0,1,3,35,448 -0,1,3,36,1843 -0,1,3,37,449 -0,1,3,38,1581 -0,1,3,39,740 -0,1,3,40,1582 -0,1,3,41,1300 -0,1,3,42,1844 -0,1,3,43,739 -0,1,3,44,2353 -0,1,3,46,2351 -0,1,3,47,2103 -0,1,3,48,2347 -0,1,3,49,2104 -0,1,3,50,1027 -0,1,3,51,2356 -0,1,3,52,742 -0,1,3,53,1035 -0,1,3,54,741 -0,1,3,55,2354 -0,1,3,57,451 -0,1,3,58,1034 -0,1,3,59,2352 -0,1,3,60,1312 -0,1,3,61,450 -0,1,3,62,1313 -0,1,3,63,2349 -0,1,3,64,1584 -0,1,3,65,1302 -0,1,3,66,1583 -0,1,3,67,1303 -0,1,2,0,2599 -0,1,2,1,1025 -0,1,2,2,1037 -0,1,2,3,2593 -0,1,2,4,1036 -0,1,2,5,2597 -0,1,2,6,1314 -0,1,2,7,1024 -0,1,2,8,1315 -0,1,2,9,2594 -0,1,2,10,1586 -0,1,2,12,1575 -0,1,2,13,2598 -0,1,2,14,1576 -0,1,2,15,1847 -0,1,2,16,1305 -0,1,2,17,1846 -0,1,2,18,2596 -0,1,2,19,2105 -0,1,2,20,1304 -0,1,2,21,2106 -0,1,2,23,1026 -0,1,2,24,2357 -0,1,2,25,3974 -0,1,2,26,2602 -0,1,2,27,452 -0,1,2,28,2603 -0,1,2,29,743 -0,1,2,30,2841 -0,1,2,31,2834 -0,1,2,32,2836 -0,1,2,33,2830 -0,1,2,34,2358 -0,1,2,35,744 -0,1,2,36,2355 -0,1,2,37,1029 -0,1,2,38,2601 -0,1,2,39,1841 -0,1,2,40,2839 -0,1,2,41,2833 -0,1,2,42,1848 -0,1,2,43,2595 -0,1,2,44,2837 -0,1,2,46,1840 -0,1,2,47,2840 -0,1,2,48,2835 -0,1,2,49,1849 -0,1,2,50,1838 -0,1,2,51,2108 -0,1,2,52,2097 -0,1,2,53,2107 -0,1,2,54,2350 -0,1,2,55,2359 -0,1,2,57,2832 -0,1,2,58,2600 -0,1,2,59,3065 -0,1,2,60,3067 -0,1,2,61,3061 -0,1,2,62,3070 -0,1,2,63,3062 -0,1,2,64,2838 -0,1,2,65,2098 -0,1,2,66,3068 -0,1,2,67,3063 -0,1,1,0,3071 -0,1,1,1,3064 -0,1,1,2,3066 -0,1,1,3,1842 -0,1,1,4,3069 -0,1,1,5,3283 -0,1,1,6,3286 -0,1,1,7,3287 -0,1,1,8,3289 -0,1,1,9,3292 -5,0,1,10,4879 -5,0,1,12,4878 -5,0,1,13,4880 -5,0,1,14,4877 -5,0,1,15,4881 -5,0,1,16,4876 -5,0,1,17,4664 -5,0,1,18,4875 -5,0,1,19,4663 -5,0,1,20,4874 -5,0,1,21,4662 -5,0,1,23,4873 -5,0,1,24,4661 -5,0,1,25,4872 -5,0,1,26,4660 -5,0,1,27,4871 -5,0,1,28,4817 -5,0,1,29,4870 -5,0,1,30,4812 -5,0,1,31,4940 -5,0,1,32,4741 -5,0,1,33,4939 -5,0,1,34,4811 -5,0,1,35,4941 -5,0,1,36,4740 -5,0,1,37,4938 -5,0,1,38,4810 -5,0,1,39,4937 -5,0,1,40,4942 -5,0,1,41,4936 -5,0,1,42,4739 -5,0,1,43,4935 -5,0,1,44,4809 -5,0,1,46,4934 -5,0,1,47,4738 -5,0,1,48,4933 -5,0,1,49,4737 -5,0,1,50,4932 -5,0,1,51,4736 -5,0,1,52,4931 -5,0,1,53,4735 -5,0,1,54,4994 -5,0,1,55,4808 -5,0,1,57,4995 -5,0,1,58,4807 -5,0,1,59,4996 -5,0,1,60,4806 -5,0,1,61,4993 -5,0,1,62,4805 -5,0,1,63,4997 -5,0,1,64,4749 -5,0,1,65,4992 -5,0,1,66,4674 -5,0,1,67,4991 -5,0,0,0,4998 -5,0,0,1,4990 -5,0,0,2,4675 -5,0,0,3,4989 -5,0,0,4,4999 -5,0,0,5,4988 -5,0,0,6,4676 -5,0,0,7,4987 -5,0,0,8,4752 -5,0,0,9,5042 -5,0,0,10,4753 -5,0,0,12,5043 -5,0,0,13,4754 -5,0,0,14,5044 -5,0,0,15,4755 -5,0,0,16,5045 -5,0,0,17,4756 -5,0,0,18,5041 -5,0,0,19,4757 -5,0,0,20,5046 -5,0,0,21,4758 -5,0,0,23,5040 -5,0,0,24,5054 -5,0,0,25,5047 -5,0,0,26,5055 -5,0,0,27,5039 -5,0,0,28,5008 -5,0,0,29,5038 -5,0,0,30,5048 -5,0,0,31,5037 -5,0,0,32,5056 -5,0,0,33,5036 -5,0,0,34,5094 -5,0,0,35,5082 -5,0,0,36,5057 -5,0,0,37,5083 -5,0,0,38,5012 -5,0,0,39,5084 -5,0,0,40,5011 -5,0,0,41,5085 -5,0,0,42,5010 -5,0,0,43,5086 -5,0,0,44,5009 -5,0,0,46,5081 -5,0,0,47,5110 -5,0,0,48,5087 -5,0,0,49,5111 -5,0,0,50,5080 -5,0,0,51,5112 -5,0,0,52,5088 -5,0,0,53,5113 -5,0,0,54,5079 -5,0,0,55,5114 -5,0,0,57,5078 -5,0,0,58,5089 -5,0,0,59,5077 -5,0,0,60,5115 -5,0,0,61,5108 -5,0,0,62,5090 -5,0,0,63,5109 -5,0,0,64,5116 -5,0,0,65,5119 -5,0,0,66,5117 -5,0,0,67,5118 -5,0,3,0,4336 -5,0,3,1,3933 -5,0,3,2,4338 -5,0,3,3,2610 -5,0,3,4,3938 -5,0,3,5,4423 -5,0,3,6,3313 -5,0,3,7,3934 -5,0,3,8,3088 -5,0,3,9,4247 -5,0,3,10,4424 -5,0,3,12,3082 -5,0,3,13,2615 -5,0,3,14,4060 -5,0,3,15,2855 -5,0,3,16,3523 -5,0,3,17,4425 -5,0,3,18,4154 -5,0,3,19,3086 -5,0,3,20,2611 -5,0,3,21,2614 -5,0,3,23,3932 -5,0,3,24,3311 -5,0,3,25,3305 -5,0,3,26,2854 -5,0,3,27,4246 -5,0,3,28,3087 -5,0,3,29,2851 -5,0,3,30,3735 -5,0,3,31,4059 -5,0,3,32,3309 -5,0,3,33,4507 -5,0,3,34,3526 -5,0,3,35,3732 -5,0,3,36,4248 -5,0,3,37,3929 -5,0,3,38,4061 -5,0,3,39,4508 -5,0,3,40,3736 -5,0,3,41,3306 -5,0,3,42,4509 -5,0,3,43,4153 -5,0,3,44,3937 -5,0,3,46,3081 -5,0,3,47,4337 -5,0,3,48,3927 -5,0,3,49,3307 -5,0,3,50,3522 -5,0,3,51,3936 -5,0,3,52,4245 -5,0,3,53,4155 -5,0,3,54,3731 -5,0,3,55,3734 -5,0,3,57,3926 -5,0,3,58,3935 -5,0,3,59,4588 -5,0,3,60,3733 -5,0,3,61,3931 -5,0,3,62,3524 -5,0,3,63,4589 -5,0,3,64,2852 -5,0,3,65,3924 -5,0,3,66,3084 -5,0,3,67,4506 -5,0,2,0,4590 -5,0,2,1,3521 -5,0,2,2,2613 -5,0,2,3,4151 -5,0,2,4,3310 -5,0,2,5,3080 -5,0,2,6,4591 -5,0,2,7,4150 -5,0,2,8,2612 -5,0,2,9,3729 -5,0,2,10,2853 -5,0,2,12,4587 -5,0,2,13,3085 -5,0,2,14,3303 -5,0,2,15,2365 -5,0,2,16,4243 -5,0,2,17,3525 -5,0,2,18,3304 -5,0,2,19,3308 -5,0,2,20,4333 -5,0,2,21,3083 -5,0,2,23,4667 -5,0,2,24,4422 -5,0,2,25,3930 -5,0,2,26,4058 -5,0,2,27,4504 -5,0,2,28,4335 -5,0,2,29,4668 -5,0,2,30,4152 -5,0,2,31,3730 -5,0,2,32,4244 -5,0,2,33,4419 -5,0,2,34,4669 -5,0,2,35,3520 -5,0,2,36,4421 -5,0,2,37,4503 -5,0,2,38,4334 -5,0,2,39,3519 -5,0,2,40,4056 -5,0,2,41,4584 -5,0,2,42,4057 -5,0,2,43,3727 -5,0,2,44,4505 -5,0,2,46,4502 -5,0,2,47,4666 -5,0,2,48,4742 -5,0,2,49,4586 -5,0,2,50,3517 -5,0,2,51,4420 -5,0,2,52,2850 -5,0,2,53,4242 -5,0,2,54,4743 -5,0,2,55,4332 -5,0,2,57,4501 -5,0,2,58,4744 -5,0,2,59,3928 -5,0,2,60,4665 -5,0,2,61,4582 -5,0,2,62,4745 -5,0,2,63,3728 -5,0,2,64,4585 -5,0,2,65,3518 -5,0,2,66,4241 -5,0,2,67,3726 -5,0,1,0,4331 -5,0,1,1,3725 -5,0,1,2,4418 -5,0,1,3,3925 -5,0,1,4,4330 -5,0,1,5,4813 -5,0,1,6,4583 -5,0,1,7,4814 -5,0,1,8,4417 -5,0,1,9,4815 -5,1,1,10,4596 -5,1,1,12,4515 -5,1,1,13,4818 -5,1,1,14,4516 -5,1,1,15,4819 -5,1,1,16,4597 -5,1,1,17,4524 -5,1,1,18,4882 -5,1,1,19,4525 -5,1,1,20,4517 -5,1,1,21,4883 -5,1,1,23,4518 -5,1,1,24,4526 -5,1,1,25,4519 -5,1,1,26,4884 -5,1,1,27,4520 -5,1,1,28,4527 -5,1,1,29,4521 -5,1,1,30,4603 -5,1,1,31,4522 -5,1,1,32,4604 -5,1,1,33,4523 -5,1,1,34,4605 -5,1,1,35,4598 -5,1,1,36,4606 -5,1,1,37,4599 -5,1,1,38,4607 -5,1,1,39,4600 -5,1,1,40,4608 -5,1,1,41,4601 -5,1,1,42,4609 -5,1,1,43,4943 -5,1,1,44,4683 -5,1,1,46,4602 -5,1,1,47,4684 -5,1,1,48,4944 -5,1,1,49,4685 -5,1,1,50,4677 -5,1,1,51,4686 -5,1,1,52,4678 -5,1,1,53,4945 -5,1,1,54,4679 -5,1,1,55,4687 -5,1,1,57,4680 -5,1,1,58,4946 -5,1,1,59,4681 -5,1,1,60,4688 -5,1,1,61,4682 -5,1,1,62,4759 -5,1,1,63,4750 -5,1,1,64,4760 -5,1,1,65,4751 -5,1,1,66,4761 -5,1,1,67,4820 -5,1,0,0,4762 -5,1,0,1,4821 -5,1,0,2,4763 -5,1,0,3,4822 -5,1,0,4,4764 -5,1,0,5,4885 -5,1,0,6,4828 -5,1,0,7,5000 -5,1,0,8,4829 -5,1,0,9,4823 -5,1,0,10,5001 -5,1,0,12,4824 -5,1,0,13,4830 -5,1,0,14,4825 -5,1,0,15,5002 -5,1,0,16,4826 -5,1,0,17,4831 -5,1,0,18,4827 -5,1,0,19,4832 -5,1,0,20,4886 -5,1,0,21,4833 -5,1,0,23,4887 -5,1,0,24,4834 -5,1,0,25,4888 -5,1,0,26,4835 -5,1,0,27,4889 -5,1,0,28,453 -5,1,0,29,4890 -5,1,0,30,4893 -5,1,0,31,4891 -5,1,0,32,4894 -5,1,0,33,5049 -5,1,0,34,4895 -5,1,0,35,4892 -5,1,0,36,4896 -5,1,0,37,5050 -5,1,0,38,4897 -5,1,0,39,4947 -5,1,0,40,4898 -5,1,0,41,4948 -5,1,0,42,4899 -5,1,0,43,4949 -5,1,0,44,5051 -5,1,0,46,4950 -5,1,0,47,4900 -5,1,0,48,4951 -5,1,0,49,4952 -5,1,0,50,5052 -5,1,0,51,4953 -5,1,0,52,5003 -5,1,0,53,4954 -5,1,0,54,5004 -5,1,0,55,4955 -5,1,0,57,5005 -5,1,0,58,4956 -5,1,0,59,5006 -5,1,0,60,4957 -5,1,0,61,5007 -5,1,0,62,4958 -5,1,0,63,5053 -5,1,0,64,4959 -5,1,0,65,5091 -5,1,0,66,5092 -5,1,0,67,5093 -5,1,3,0,4339 -5,1,3,1,3318 -5,1,3,2,4340 -5,1,3,3,3537 -5,1,3,4,4341 -5,1,3,5,3949 -5,1,3,6,3752 -5,1,3,7,3320 -5,1,3,8,3954 -5,1,3,9,3538 -5,1,3,10,3751 -5,1,3,12,3749 -5,1,3,13,3754 -5,1,3,14,3748 -5,1,3,15,3955 -5,1,3,16,3952 -5,1,3,17,3753 -5,1,3,18,3540 -5,1,3,19,3755 -5,1,3,20,4426 -5,1,3,21,3957 -5,1,3,23,3750 -5,1,3,24,4427 -5,1,3,25,3539 -5,1,3,26,3959 -5,1,3,27,4251 -5,1,3,28,4428 -5,1,3,29,3542 -5,1,3,30,3961 -5,1,3,31,4157 -5,1,3,32,4066 -5,1,3,33,3312 -5,1,3,34,4252 -5,1,3,35,3530 -5,1,3,36,4160 -5,1,3,37,3741 -5,1,3,38,4342 -5,1,3,39,3532 -5,1,3,40,4067 -5,1,3,41,3945 -5,1,3,42,4161 -5,1,3,43,3944 -5,1,3,44,4068 -5,1,3,46,4510 -5,1,3,47,4162 -5,1,3,48,4063 -5,1,3,49,4429 -5,1,3,50,4511 -5,1,3,51,4253 -5,1,3,52,3742 -5,1,3,53,4163 -5,1,3,54,3531 -5,1,3,55,4512 -5,1,3,57,3315 -5,1,3,58,4513 -5,1,3,59,3948 -5,1,3,60,3533 -5,1,3,61,4158 -5,1,3,62,3950 -5,1,3,63,3744 -5,1,3,64,3746 -5,1,3,65,3946 -5,1,3,66,3535 -5,1,3,67,3534 -5,1,2,0,4064 -5,1,2,1,3743 -5,1,2,2,3947 -5,1,2,3,3314 -5,1,2,4,3317 -5,1,2,5,1585 -5,1,2,6,3951 -5,1,2,7,4592 -5,1,2,8,3953 -5,1,2,9,3958 -5,1,2,10,4159 -5,1,2,12,3943 -5,1,2,13,4593 -5,1,2,14,3536 -5,1,2,15,4065 -5,1,2,16,3747 -5,1,2,17,4594 -5,1,2,18,4250 -5,1,2,19,4164 -5,1,2,20,3745 -5,1,2,21,4514 -5,1,2,23,3093 -5,1,2,24,4595 -5,1,2,25,3090 -5,1,2,26,4430 -5,1,2,27,3740 -5,1,2,28,4343 -5,1,2,29,3941 -5,1,2,30,4431 -5,1,2,31,3529 -5,1,2,32,4344 -5,1,2,33,3739 -5,1,2,34,4254 -5,1,2,35,4670 -5,1,2,36,4432 -5,1,2,37,4062 -5,1,2,38,4345 -5,1,2,39,4671 -5,1,2,40,4255 -5,1,2,41,3528 -5,1,2,42,4672 -5,1,2,43,3942 -5,1,2,44,4256 -5,1,2,46,3737 -5,1,2,47,4257 -5,1,2,48,3738 -5,1,2,49,4673 -5,1,2,50,3939 -5,1,2,51,4433 -5,1,2,52,3527 -5,1,2,53,4346 -5,1,2,54,4156 -5,1,2,55,4347 -5,1,2,57,3940 -5,1,2,58,4348 -5,1,2,59,3316 -5,1,2,60,4349 -5,1,2,61,2859 -5,1,2,62,4434 -5,1,2,63,2857 -5,1,2,64,4435 -5,1,2,65,4746 -5,1,2,66,4436 -5,1,2,67,4249 -5,1,1,0,4437 -5,1,1,1,3089 -5,1,1,2,4747 -5,1,1,3,2856 -5,1,1,4,4438 -5,1,1,5,2617 -5,1,1,6,4440 -5,1,1,7,4816 -5,1,1,8,4748 -5,1,1,9,4441 -2,2,1,10,3777 -2,2,1,12,2627 -2,2,1,13,3778 -2,2,1,14,2866 -2,2,1,15,2376 -2,2,1,16,3327 -2,2,1,17,2378 -2,2,1,18,2869 -2,2,1,19,3975 -2,2,1,20,2865 -2,2,1,21,2379 -2,2,1,23,2867 -2,2,1,24,2631 -2,2,1,25,3101 -2,2,1,26,3976 -2,2,1,27,3326 -2,2,1,28,2381 -2,2,1,29,3099 -2,2,1,30,2377 -2,2,1,31,2625 -2,2,1,32,2629 -2,2,1,33,2622 -2,2,1,34,2373 -2,2,1,35,2863 -2,2,1,36,3102 -2,2,1,37,4071 -2,2,1,38,2630 -2,2,1,39,3098 -2,2,1,40,2626 -2,2,1,41,2864 -2,2,1,42,3104 -2,2,1,43,3097 -2,2,1,44,2624 -2,2,1,46,2621 -2,2,1,47,2623 -2,2,1,48,2618 -2,2,1,49,2628 -2,2,1,50,4072 -2,2,1,51,3552 -2,2,1,52,3096 -2,2,1,53,3329 -2,2,1,54,2620 -2,2,1,55,3331 -2,2,1,57,2860 -2,2,1,58,3100 -2,2,1,59,3094 -2,2,1,60,4073 -2,2,1,61,2862 -2,2,1,62,3103 -2,2,1,63,2619 -2,2,1,64,3553 -2,2,1,65,3765 -2,2,1,66,3549 -2,2,1,67,3319 -2,2,0,0,3092 -2,2,0,1,3761 -2,2,0,2,3330 -2,2,0,3,4166 -2,2,0,4,3324 -2,2,0,5,3973 -2,2,0,6,3321 -2,2,0,7,3546 -2,2,0,8,2861 -2,2,0,9,3971 -2,2,0,10,3095 -2,2,0,12,3763 -2,2,0,13,3547 -2,2,0,14,4167 -2,2,0,15,2858 -2,2,0,16,3548 -2,2,0,17,3328 -2,2,0,18,3970 -2,2,0,19,3773 -2,2,0,20,3091 -2,2,0,21,3776 -2,2,0,23,3325 -2,2,0,24,3771 -2,2,0,25,3544 -2,2,0,26,4168 -2,2,0,27,3762 -2,2,0,28,3551 -2,2,0,29,3963 -2,2,0,30,3764 -2,2,0,31,3969 -2,2,0,32,4169 -2,2,0,33,3323 -2,2,0,34,2616 -2,2,0,35,4259 -2,2,0,36,3550 -2,2,0,37,3545 -2,2,0,38,3968 -2,2,0,39,3758 -2,2,0,40,3759 -2,2,0,41,3760 -2,2,0,42,3965 -2,2,0,43,3322 -2,2,0,44,3972 -2,2,0,46,4260 -2,2,0,47,4070 -2,2,0,48,3543 -2,2,0,49,3962 -2,2,0,50,3967 -2,2,0,51,3541 -2,2,0,52,3966 -2,2,0,53,3756 -2,2,0,54,3964 -2,2,0,55,4261 -2,2,0,57,4069 -2,2,0,58,3757 -2,2,0,59,4165 -2,2,0,60,3960 -2,2,0,61,4258 -2,2,0,62,4353 -2,2,0,63,4350 -2,2,0,64,4262 -2,2,0,65,4351 -2,2,0,66,4439 -2,2,0,67,4352 -2,2,3,0,2633 -2,2,3,1,2871 -2,2,3,2,2636 -2,2,3,3,2868 -2,2,3,4,2634 -2,2,3,5,2873 -2,2,3,6,1864 -2,2,3,7,1858 -2,2,3,8,1319 -2,2,3,9,2874 -2,2,3,10,2641 -2,2,3,12,2870 -2,2,3,13,1595 -2,2,3,14,1321 -2,2,3,15,2131 -2,2,3,16,2872 -2,2,3,17,2385 -2,2,3,18,1867 -2,2,3,19,2387 -2,2,3,20,2875 -2,2,3,21,2638 -2,2,3,23,1856 -2,2,3,24,2879 -2,2,3,25,2877 -2,2,3,26,1598 -2,2,3,27,1855 -2,2,3,28,2881 -2,2,3,29,1862 -2,2,3,30,2389 -2,2,3,31,3105 -2,2,3,32,2639 -2,2,3,33,1860 -2,2,3,34,2129 -2,2,3,35,3107 -2,2,3,36,2880 -2,2,3,37,1859 -2,2,3,38,2637 -2,2,3,39,2380 -2,2,3,40,2883 -2,2,3,41,3108 -2,2,3,42,2885 -2,2,3,43,2124 -2,2,3,44,2127 -2,2,3,46,3106 -2,2,3,47,2383 -2,2,3,48,2125 -2,2,3,49,2876 -2,2,3,50,1857 -2,2,3,51,2386 -2,2,3,52,1854 -2,2,3,53,2130 -2,2,3,54,3109 -2,2,3,55,3113 -2,2,3,57,2121 -2,2,3,58,2878 -2,2,3,59,3111 -2,2,3,60,3115 -2,2,3,61,2119 -2,2,3,62,3116 -2,2,3,63,3332 -2,2,3,64,2632 -2,2,3,65,2118 -2,2,3,66,2635 -2,2,3,67,3334 -2,2,2,0,3117 -2,2,2,1,2123 -2,2,2,2,3114 -2,2,2,3,3335 -2,2,2,4,3119 -2,2,2,5,2116 -2,2,2,6,1589 -2,2,2,7,3337 -2,2,2,8,1318 -2,2,2,9,3333 -2,2,2,10,1592 -2,2,2,12,2113 -2,2,2,13,1594 -2,2,2,14,3336 -2,2,2,15,1596 -2,2,2,16,2375 -2,2,2,17,1590 -2,2,2,18,2122 -2,2,2,19,1865 -2,2,2,20,3338 -2,2,2,21,2126 -2,2,2,23,2120 -2,2,2,24,1591 -2,2,2,25,3339 -2,2,2,26,2128 -2,2,2,27,2117 -2,2,2,28,3343 -2,2,2,29,3341 -2,2,2,30,1863 -2,2,2,31,3554 -2,2,2,32,2382 -2,2,2,33,2115 -2,2,2,34,1593 -2,2,2,35,3555 -2,2,2,36,3342 -2,2,2,37,2114 -2,2,2,38,3110 -2,2,2,39,2374 -2,2,2,40,3112 -2,2,2,41,3557 -2,2,2,42,3346 -2,2,2,43,3560 -2,2,2,44,3340 -2,2,2,46,3556 -2,2,2,47,3347 -2,2,2,48,2372 -2,2,2,49,2384 -2,2,2,50,2369 -2,2,2,51,1861 -2,2,2,52,2367 -2,2,2,53,3344 -2,2,2,54,3558 -2,2,2,55,3562 -2,2,2,57,2366 -2,2,2,58,3563 -2,2,2,59,3559 -2,2,2,60,3565 -2,2,2,61,2371 -2,2,2,62,3561 -2,2,2,63,3766 -2,2,2,64,3956 -2,2,2,65,2370 -2,2,2,66,3564 -2,2,2,67,3767 -2,2,1,0,2392 -2,2,1,1,2368 -2,2,1,2,3772 -2,2,1,3,3769 -2,2,1,4,3566 -2,2,1,5,3768 -2,2,1,6,3567 -2,2,1,7,3770 -2,2,1,8,3775 -2,2,1,9,3774 -10,1,1,10,3779 -10,1,1,12,1052 -10,1,1,13,2407 -10,1,1,14,1050 -10,1,1,15,3136 -10,1,1,16,4264 -10,1,1,17,3780 -10,1,1,18,1051 -10,1,1,19,2153 -10,1,1,20,1048 -10,1,1,21,1894 -10,1,1,23,1046 -10,1,1,24,3134 -10,1,1,25,1882 -10,1,1,26,3781 -10,1,1,27,1884 -10,1,1,28,1895 -10,1,1,29,2405 -10,1,1,30,1631 -10,1,1,31,2145 -10,1,1,32,2903 -10,1,1,33,2147 -10,1,1,34,3361 -10,1,1,35,2410 -10,1,1,36,1620 -10,1,1,37,3977 -10,1,1,38,3135 -10,1,1,39,2657 -10,1,1,40,1892 -10,1,1,41,2655 -10,1,1,42,2151 -10,1,1,43,2404 -10,1,1,44,2154 -10,1,1,46,3978 -10,1,1,47,1891 -10,1,1,48,1615 -10,1,1,49,2152 -10,1,1,50,2408 -10,1,1,51,1887 -10,1,1,52,2656 -10,1,1,53,3359 -10,1,1,54,1612 -10,1,1,55,3979 -10,1,1,57,2146 -10,1,1,58,1889 -10,1,1,59,1879 -10,1,1,60,2406 -10,1,1,61,1881 -10,1,1,62,1617 -10,1,1,63,2142 -10,1,1,64,2659 -10,1,1,65,2143 -10,1,1,66,3980 -10,1,1,67,1883 -10,1,0,0,1893 -10,1,0,1,4074 -10,1,0,2,1630 -10,1,0,3,1880 -10,1,0,4,1890 -10,1,0,5,1614 -10,1,0,6,1628 -10,1,0,7,2149 -10,1,0,8,1625 -10,1,0,9,4075 -10,1,0,10,1888 -10,1,0,12,2900 -10,1,0,13,1623 -10,1,0,14,3132 -10,1,0,15,1622 -10,1,0,16,2660 -10,1,0,17,2901 -10,1,0,18,2658 -10,1,0,19,4076 -10,1,0,20,2902 -10,1,0,21,2150 -10,1,0,23,2411 -10,1,0,24,2898 -10,1,0,25,2148 -10,1,0,26,3362 -10,1,0,27,1886 -10,1,0,28,3141 -10,1,0,29,1885 -10,1,0,30,4077 -10,1,0,31,3138 -10,1,0,32,3143 -10,1,0,33,2904 -10,1,0,34,3363 -10,1,0,35,3137 -10,1,0,36,3576 -10,1,0,37,2409 -10,1,0,38,3144 -10,1,0,39,2155 -10,1,0,40,3364 -10,1,0,41,4170 -10,1,0,42,3577 -10,1,0,43,2662 -10,1,0,44,3782 -10,1,0,46,3575 -10,1,0,47,3145 -10,1,0,48,3578 -10,1,0,49,3365 -10,1,0,50,4078 -10,1,0,51,4171 -10,1,0,52,3579 -10,1,0,53,3783 -10,1,0,54,3784 -10,1,0,55,3146 -10,1,0,57,4765 -10,1,0,58,3366 -10,1,0,59,4442 -10,1,0,60,3981 -10,1,0,61,4689 -10,1,0,62,4172 -10,1,0,63,4354 -10,1,0,64,3147 -10,1,0,65,4263 -10,1,0,66,3785 -10,1,0,67,3982 -10,1,3,0,2395 -10,1,3,1,2397 -10,1,3,2,752 -10,1,3,3,2642 -10,1,3,4,2402 -10,1,3,5,2645 -10,1,3,6,2400 -10,1,3,7,2132 -10,1,3,8,2403 -10,1,3,9,2647 -10,1,3,10,1040 -10,1,3,12,1870 -10,1,3,13,1326 -10,1,3,14,1866 -10,1,3,15,1325 -10,1,3,16,1599 -10,1,3,17,2648 -10,1,3,18,2644 -10,1,3,19,2650 -10,1,3,20,1597 -10,1,3,21,2653 -10,1,3,23,2646 -10,1,3,24,1044 -10,1,3,25,1324 -10,1,3,26,1043 -10,1,3,27,2649 -10,1,3,28,1871 -10,1,3,29,1322 -10,1,3,30,1604 -10,1,3,31,2136 -10,1,3,32,1602 -10,1,3,33,2133 -10,1,3,34,2651 -10,1,3,35,1042 -10,1,3,36,2652 -10,1,3,37,2884 -10,1,3,38,1329 -10,1,3,39,2887 -10,1,3,40,1327 -10,1,3,41,2889 -10,1,3,42,2654 -10,1,3,43,1868 -10,1,3,44,1047 -10,1,3,46,1601 -10,1,3,47,2890 -10,1,3,48,2388 -10,1,3,49,1045 -10,1,3,50,2886 -10,1,3,51,2892 -10,1,3,52,1600 -10,1,3,53,1331 -10,1,3,54,2888 -10,1,3,55,1328 -10,1,3,57,2390 -10,1,3,58,2895 -10,1,3,59,2891 -10,1,3,60,2141 -10,1,3,61,2640 -10,1,3,62,1876 -10,1,3,63,1038 -10,1,3,64,2893 -10,1,3,65,3118 -10,1,3,66,2894 -10,1,3,67,2643 -10,1,2,0,1874 -10,1,2,1,3121 -10,1,2,2,2398 -10,1,2,3,2882 -10,1,2,4,2896 -10,1,2,5,3123 -10,1,2,6,2396 -10,1,2,7,1041 -10,1,2,8,1603 -10,1,2,9,1320 -10,1,2,10,3124 -10,1,2,12,1323 -10,1,2,13,2140 -10,1,2,14,3120 -10,1,2,15,1049 -10,1,2,16,3122 -10,1,2,17,3126 -10,1,2,18,2394 -10,1,2,19,3129 -10,1,2,20,750 -10,1,2,21,2899 -10,1,2,23,3125 -10,1,2,24,2897 -10,1,2,25,1873 -10,1,2,26,3131 -10,1,2,27,3127 -10,1,2,28,1878 -10,1,2,29,3345 -10,1,2,30,1877 -10,1,2,31,2138 -10,1,2,32,1609 -10,1,2,33,2135 -10,1,2,34,3128 -10,1,2,35,3348 -10,1,2,36,3130 -10,1,2,37,3350 -10,1,2,38,2399 -10,1,2,39,1875 -10,1,2,40,2144 -10,1,2,41,3351 -10,1,2,42,3133 -10,1,2,43,2393 -10,1,2,44,1333 -10,1,2,46,1872 -10,1,2,47,3353 -10,1,2,48,2139 -10,1,2,49,1335 -10,1,2,50,3349 -10,1,2,51,3356 -10,1,2,52,3352 -10,1,2,53,1334 -10,1,2,54,1606 -10,1,2,55,1608 -10,1,2,57,2137 -10,1,2,58,3358 -10,1,2,59,3354 -10,1,2,60,1607 -10,1,2,61,2391 -10,1,2,62,3355 -10,1,2,63,2134 -10,1,2,64,1605 -10,1,2,65,3568 -10,1,2,66,3357 -10,1,2,67,1869 -10,1,1,0,1336 -10,1,1,1,3570 -10,1,1,2,1332 -10,1,1,3,3571 -10,1,1,4,3360 -10,1,1,5,3569 -10,1,1,6,1330 -10,1,1,7,3572 -10,1,1,8,3573 -10,1,1,9,3574 -5,2,1,10,3800 -5,2,1,12,4356 -5,2,1,13,3996 -5,2,1,14,4357 -5,2,1,15,4267 -5,2,1,16,4358 -5,2,1,17,4270 -5,2,1,18,4443 -5,2,1,19,4269 -5,2,1,20,4359 -5,2,1,21,4268 -5,2,1,23,4444 -5,2,1,24,4355 -5,2,1,25,4360 -5,2,1,26,3997 -5,2,1,27,4445 -5,2,1,28,4179 -5,2,1,29,4092 -5,2,1,30,4271 -5,2,1,31,4361 -5,2,1,32,4090 -5,2,1,33,4446 -5,2,1,34,4182 -5,2,1,35,4528 -5,2,1,36,4272 -5,2,1,37,4093 -5,2,1,38,3998 -5,2,1,39,4447 -5,2,1,40,4091 -5,2,1,41,4529 -5,2,1,42,4183 -5,2,1,43,4448 -5,2,1,44,4273 -5,2,1,46,4530 -5,2,1,47,4184 -5,2,1,48,4449 -5,2,1,49,4274 -5,2,1,50,4531 -5,2,1,51,4362 -5,2,1,52,4094 -5,2,1,53,4185 -5,2,1,54,4610 -5,2,1,55,4275 -5,2,1,57,4450 -5,2,1,58,4363 -5,2,1,59,4532 -5,2,1,60,4186 -5,2,1,61,4611 -5,2,1,62,4276 -5,2,1,63,4451 -5,2,1,64,4364 -5,2,1,65,4533 -5,2,1,66,4187 -5,2,1,67,4612 -5,2,0,0,4095 -5,2,0,1,4452 -5,2,0,2,4277 -5,2,0,3,4534 -5,2,0,4,4365 -5,2,0,5,4613 -5,2,0,6,4366 -5,2,0,7,4535 -5,2,0,8,4278 -5,2,0,9,4614 -5,2,0,10,4188 -5,2,0,12,4690 -5,2,0,13,4096 -5,2,0,14,4189 -5,2,0,15,4367 -5,2,0,16,4536 -5,2,0,17,4279 -5,2,0,18,4615 -5,2,0,19,4453 -5,2,0,20,4691 -5,2,0,21,4368 -5,2,0,23,4537 -5,2,0,24,4280 -5,2,0,25,4616 -5,2,0,26,4454 -5,2,0,27,4190 -5,2,0,28,4369 -5,2,0,29,4692 -5,2,0,30,4281 -5,2,0,31,4538 -5,2,0,32,4455 -5,2,0,33,4617 -5,2,0,34,4282 -5,2,0,35,4693 -5,2,0,36,4370 -5,2,0,37,4191 -5,2,0,38,4456 -5,2,0,39,4766 -5,2,0,40,4371 -5,2,0,41,4457 -5,2,0,42,1392 -5,2,0,43,4539 -5,2,0,44,4618 -5,2,0,46,2401 -5,2,0,47,4694 -5,2,0,48,4767 -5,2,0,49,4540 -5,2,0,50,4768 -5,2,0,51,4192 -5,2,0,52,4372 -5,2,0,53,4619 -5,2,0,54,4695 -5,2,0,55,4696 -5,2,0,57,4283 -5,2,0,58,4373 -5,2,0,59,4769 -5,2,0,60,4458 -5,2,0,61,4837 -5,2,0,62,4541 -5,2,0,63,4770 -5,2,0,64,4193 -5,2,0,65,4284 -5,2,0,66,4620 -5,2,0,67,4697 -5,2,3,0,2908 -5,2,3,1,2682 -5,2,3,2,3151 -5,2,3,3,2675 -5,2,3,4,2420 -5,2,3,5,2680 -5,2,3,6,2924 -5,2,3,7,3371 -5,2,3,8,3152 -5,2,3,9,2906 -5,2,3,10,2444 -5,2,3,12,2679 -5,2,3,13,2422 -5,2,3,14,2673 -5,2,3,15,2439 -5,2,3,16,2677 -5,2,3,17,2157 -5,2,3,18,2905 -5,2,3,19,2441 -5,2,3,20,2674 -5,2,3,21,2156 -5,2,3,23,3372 -5,2,3,24,2173 -5,2,3,25,2676 -5,2,3,26,2160 -5,2,3,27,2921 -5,2,3,28,2176 -5,2,3,29,2911 -5,2,3,30,2440 -5,2,3,31,2672 -5,2,3,32,2438 -5,2,3,33,2907 -5,2,3,34,2417 -5,2,3,35,2681 -5,2,3,36,3373 -5,2,3,37,2913 -5,2,3,38,2436 -5,2,3,39,2678 -5,2,3,40,2415 -5,2,3,41,2909 -5,2,3,42,2433 -5,2,3,43,2683 -5,2,3,44,2414 -5,2,3,46,2914 -5,2,3,47,3374 -5,2,3,48,2685 -5,2,3,49,2443 -5,2,3,50,3586 -5,2,3,51,2412 -5,2,3,52,2910 -5,2,3,53,2431 -5,2,3,54,2684 -5,2,3,55,2413 -5,2,3,57,2916 -5,2,3,58,2687 -5,2,3,59,2920 -5,2,3,60,3375 -5,2,3,61,2912 -5,2,3,62,2416 -5,2,3,63,3587 -5,2,3,64,2430 -5,2,3,65,2919 -5,2,3,66,2418 -5,2,3,67,3139 -5,2,2,0,2428 -5,2,2,1,2918 -5,2,2,2,2419 -5,2,2,3,2915 -5,2,2,4,2425 -5,2,2,5,3588 -5,2,2,6,2421 -5,2,2,7,3150 -5,2,2,8,2423 -5,2,2,9,3140 -5,2,2,10,2661 -5,2,2,12,3149 -5,2,2,13,2437 -5,2,2,14,2917 -5,2,2,15,2663 -5,2,2,16,3370 -5,2,2,17,2435 -5,2,2,18,3142 -5,2,2,19,2664 -5,2,2,20,2923 -5,2,2,21,3589 -5,2,2,23,3585 -5,2,2,24,2434 -5,2,2,25,3148 -5,2,2,26,2666 -5,2,2,27,3369 -5,2,2,28,2432 -5,2,2,29,3368 -5,2,2,30,2669 -5,2,2,31,3367 -5,2,2,32,2922 -5,2,2,33,3584 -5,2,2,34,3590 -5,2,2,35,3794 -5,2,2,36,2665 -5,2,2,37,3583 -5,2,2,38,2429 -5,2,2,39,3793 -5,2,2,40,2671 -5,2,2,41,3582 -5,2,2,42,2427 -5,2,2,43,3581 -5,2,2,44,2667 -5,2,2,46,3580 -5,2,2,47,2426 -5,2,2,48,3795 -5,2,2,49,2668 -5,2,2,50,3792 -5,2,2,51,2686 -5,2,2,52,3791 -5,2,2,53,2670 -5,2,2,54,3790 -5,2,2,55,2424 -5,2,2,57,3789 -5,2,2,58,4079 -5,2,2,59,3796 -5,2,2,60,3986 -5,2,2,61,3788 -5,2,2,62,4080 -5,2,2,63,3787 -5,2,2,64,4173 -5,2,2,65,3786 -5,2,2,66,4081 -5,2,2,67,3983 -5,2,1,0,3987 -5,2,1,1,3984 -5,2,1,2,3988 -5,2,1,3,3985 -5,2,1,4,4082 -5,2,1,5,3993 -5,2,1,6,4174 -5,2,1,7,3994 -5,2,1,8,3798 -5,2,1,9,3797 -5,3,1,10,3995 -5,3,1,12,3799 -5,3,1,13,3595 -5,3,1,14,3991 -5,3,1,15,3596 -5,3,1,16,3990 -5,3,1,17,3594 -5,3,1,18,3989 -5,3,1,19,2209 -5,3,1,20,4083 -5,3,1,21,2458 -5,3,1,23,3801 -5,3,1,24,2700 -5,3,1,25,4175 -5,3,1,26,2935 -5,3,1,27,3164 -5,3,1,28,2459 -5,3,1,29,3165 -5,3,1,30,2701 -5,3,1,31,3166 -5,3,1,32,3163 -5,3,1,33,3384 -5,3,1,34,2936 -5,3,1,35,3167 -5,3,1,36,2460 -5,3,1,37,3385 -5,3,1,38,2702 -5,3,1,39,3386 -5,3,1,40,3802 -5,3,1,41,3598 -5,3,1,42,3383 -5,3,1,43,3599 -5,3,1,44,3597 -5,3,1,46,2933 -5,3,1,47,2937 -5,3,1,48,4265 -5,3,1,49,2461 -5,3,1,50,2697 -5,3,1,51,3803 -5,3,1,52,3999 -5,3,1,53,2703 -5,3,1,54,2207 -5,3,1,55,2938 -5,3,1,57,4084 -5,3,1,58,3600 -5,3,1,59,2456 -5,3,1,60,2462 -5,3,1,61,4176 -5,3,1,62,3804 -5,3,1,63,2698 -5,3,1,64,2704 -5,3,1,65,4266 -5,3,1,66,2939 -5,3,1,67,4000 -5,3,0,0,2463 -5,3,0,1,2208 -5,3,0,2,2705 -5,3,0,3,3805 -5,3,0,4,3992 -5,3,0,5,3162 -5,3,0,6,2940 -5,3,0,7,2942 -5,3,0,8,3387 -5,3,0,9,2457 -5,3,0,10,2706 -5,3,0,12,3601 -5,3,0,13,4001 -5,3,0,14,3382 -5,3,0,15,2941 -5,3,0,16,3806 -5,3,0,17,3168 -5,3,0,18,2934 -5,3,0,19,3388 -5,3,0,20,3169 -5,3,0,21,2707 -5,3,0,23,2699 -5,3,0,24,4002 -5,3,0,25,3807 -5,3,0,26,3390 -5,3,0,27,4097 -5,3,0,28,3171 -5,3,0,29,3389 -5,3,0,30,2710 -5,3,0,31,2708 -5,3,0,32,3603 -5,3,0,33,3602 -5,3,0,34,2945 -5,3,0,35,2943 -5,3,0,36,4003 -5,3,0,37,4098 -5,3,0,38,3391 -5,3,0,39,3170 -5,3,0,40,3808 -5,3,0,41,2709 -5,3,0,42,2711 -5,3,0,43,2944 -5,3,0,44,3604 -5,3,0,46,4085 -5,3,0,47,4004 -5,3,0,48,4177 -5,3,0,49,3172 -5,3,0,50,4099 -5,3,0,51,2946 -5,3,0,52,4086 -5,3,0,53,3392 -5,3,0,54,4178 -5,3,0,55,3173 -5,3,0,57,4087 -5,3,0,58,2947 -5,3,0,59,4088 -5,3,0,60,4005 -5,3,0,61,4180 -5,3,0,62,3809 -5,3,0,63,4089 -5,3,0,64,3605 -5,3,0,65,4181 -5,3,0,66,4100 -5,3,0,67,3393 -5,3,3,0,2925 -5,3,3,1,2178 -5,3,3,2,1380 -5,3,3,3,2162 -5,3,3,4,2926 -5,3,3,5,2445 -5,3,3,6,1382 -5,3,3,7,1897 -5,3,3,8,2196 -5,3,3,9,2179 -5,3,3,10,1912 -5,3,3,12,2442 -5,3,3,13,2193 -5,3,3,14,2688 -5,3,3,15,1916 -5,3,3,16,2158 -5,3,3,17,2927 -5,3,3,18,3153 -5,3,3,19,2447 -5,3,3,20,2181 -5,3,3,21,1914 -5,3,3,23,2163 -5,3,3,24,1647 -5,3,3,25,2184 -5,3,3,26,1918 -5,3,3,27,2159 -5,3,3,28,2197 -5,3,3,29,2186 -5,3,3,30,1921 -5,3,3,31,3154 -5,3,3,32,2928 -5,3,3,33,2165 -5,3,3,34,1649 -5,3,3,35,2187 -5,3,3,36,1919 -5,3,3,37,2168 -5,3,3,38,1652 -5,3,3,39,2189 -5,3,3,40,1923 -5,3,3,41,2170 -5,3,3,42,1654 -5,3,3,43,2192 -5,3,3,44,1920 -5,3,3,46,3155 -5,3,3,47,1925 -5,3,3,48,2171 -5,3,3,49,1924 -5,3,3,50,2175 -5,3,3,51,1927 -5,3,3,52,1899 -5,3,3,53,1922 -5,3,3,54,2177 -5,3,3,55,1928 -5,3,3,57,2161 -5,3,3,58,1926 -5,3,3,59,2180 -5,3,3,60,1930 -5,3,3,61,2164 -5,3,3,62,3156 -5,3,3,63,2446 -5,3,3,64,2448 -5,3,3,65,2166 -5,3,3,66,1929 -5,3,3,67,2689 -5,3,2,0,1933 -5,3,2,1,1905 -5,3,2,2,1931 -5,3,2,3,2182 -5,3,2,4,3157 -5,3,2,5,3376 -5,3,2,6,2198 -5,3,2,7,2167 -5,3,2,8,1932 -5,3,2,9,2183 -5,3,2,10,1934 -5,3,2,12,1907 -5,3,2,13,3158 -5,3,2,14,2185 -5,3,2,15,1937 -5,3,2,16,2169 -5,3,2,17,1935 -5,3,2,18,2194 -5,3,2,19,2690 -5,3,2,20,3377 -5,3,2,21,2691 -5,3,2,23,1908 -5,3,2,24,2692 -5,3,2,25,2188 -5,3,2,26,2929 -5,3,2,27,2172 -5,3,2,28,2693 -5,3,2,29,2190 -5,3,2,30,1943 -5,3,2,31,1910 -5,3,2,32,2199 -5,3,2,33,2191 -5,3,2,34,3378 -5,3,2,35,2174 -5,3,2,36,1944 -5,3,2,37,2195 -5,3,2,38,2200 -5,3,2,39,1913 -5,3,2,40,1945 -5,3,2,41,1917 -5,3,2,42,2201 -5,3,2,43,1911 -5,3,2,44,3379 -5,3,2,46,1646 -5,3,2,47,1946 -5,3,2,48,3591 -5,3,2,49,3159 -5,3,2,50,1915 -5,3,2,51,2202 -5,3,2,52,2449 -5,3,2,53,2451 -5,3,2,54,2930 -5,3,2,55,2931 -5,3,2,57,2694 -5,3,2,58,3380 -5,3,2,59,2450 -5,3,2,60,2203 -5,3,2,61,3592 -5,3,2,62,2452 -5,3,2,63,1947 -5,3,2,64,1948 -5,3,2,65,2695 -5,3,2,66,2204 -5,3,2,67,3160 -5,3,1,0,3381 -5,3,1,1,2932 -5,3,1,2,2453 -5,3,1,3,3593 -5,3,1,4,2205 -5,3,1,5,2696 -5,3,1,6,2454 -5,3,1,7,3161 -5,3,1,8,2206 -5,3,1,9,2455 -0,3,1,10,1111 -0,3,1,12,1108 -0,3,1,13,825 -0,3,1,14,1110 -0,3,1,15,827 -0,3,1,16,1113 -0,3,1,17,830 -0,3,1,18,1112 -0,3,1,19,1115 -0,3,1,20,207 -0,3,1,21,215 -0,3,1,23,1114 -0,3,1,24,832 -0,3,1,25,512 -0,3,1,26,529 -0,3,1,27,480 -0,3,1,28,1117 -0,3,1,29,1116 -0,3,1,30,525 -0,3,1,31,1106 -0,3,1,32,530 -0,3,1,33,1394 -0,3,1,34,1118 -0,3,1,35,515 -0,3,1,36,823 -0,3,1,37,1119 -0,3,1,38,835 -0,3,1,39,522 -0,3,1,40,1120 -0,3,1,41,210 -0,3,1,42,526 -0,3,1,43,1397 -0,3,1,44,218 -0,3,1,46,1121 -0,3,1,47,220 -0,3,1,48,517 -0,3,1,49,1123 -0,3,1,50,1399 -0,3,1,51,221 -0,3,1,52,1122 -0,3,1,53,833 -0,3,1,54,1109 -0,3,1,55,214 -0,3,1,57,1400 -0,3,1,58,1125 -0,3,1,59,212 -0,3,1,60,216 -0,3,1,61,1124 -0,3,1,62,528 -0,3,1,63,1402 -0,3,1,64,838 -0,3,1,65,213 -0,3,1,66,1126 -0,3,1,67,518 -0,3,0,0,840 -0,3,0,1,524 -0,3,0,2,1127 -0,3,0,3,1405 -0,3,0,4,1128 -0,3,0,5,206 -0,3,0,6,223 -0,3,0,7,1404 -0,3,0,8,1129 -0,3,0,9,520 -0,3,0,10,829 -0,3,0,12,1407 -0,3,0,13,1131 -0,3,0,14,208 -0,3,0,15,217 -0,3,0,16,1406 -0,3,0,17,1130 -0,3,0,18,1408 -0,3,0,19,226 -0,3,0,20,209 -0,3,0,21,828 -0,3,0,23,824 -0,3,0,24,1132 -0,3,0,25,1409 -0,3,0,26,534 -0,3,0,27,1410 -0,3,0,28,537 -0,3,0,29,527 -0,3,0,30,1135 -0,3,0,31,523 -0,3,0,32,536 -0,3,0,33,211 -0,3,0,34,831 -0,3,0,35,1411 -0,3,0,36,538 -0,3,0,37,205 -0,3,0,38,539 -0,3,0,39,190 -0,3,0,40,540 -0,3,0,41,193 -0,3,0,42,834 -0,3,0,43,195 -0,3,0,44,541 -0,3,0,46,198 -0,3,0,47,543 -0,3,0,48,200 -0,3,0,49,836 -0,3,0,50,201 -0,3,0,51,545 -0,3,0,52,1412 -0,3,0,53,837 -0,3,0,54,203 -0,3,0,55,546 -0,3,0,57,826 -0,3,0,58,548 -0,3,0,59,532 -0,3,0,60,841 -0,3,0,61,533 -0,3,0,62,839 -0,3,0,63,535 -0,3,0,64,551 -0,3,0,65,1681 -0,3,0,66,1413 -0,3,0,67,842 -0,3,3,0,488 -0,3,3,1,489 -0,3,3,2,194 -0,3,3,3,490 -0,3,3,4,196 -0,3,3,5,492 -0,3,3,6,491 -0,3,3,7,493 -0,3,3,8,5290 -0,3,3,9,494 -0,3,3,10,197 -0,3,3,12,477 -0,3,3,13,5292 -0,3,3,14,160 -0,3,3,15,199 -0,3,3,16,495 -0,3,3,17,5293 -0,3,3,18,487 -0,3,3,19,496 -0,3,3,20,497 -0,3,3,21,202 -0,3,3,23,158 -0,3,3,24,5296 -0,3,3,25,167 -0,3,3,26,499 -0,3,3,27,498 -0,3,3,28,204 -0,3,3,29,170 -0,3,3,30,5295 -0,3,3,31,478 -0,3,3,32,501 -0,3,3,33,789 -0,3,3,34,5287 -0,3,3,35,500 -0,3,3,36,5294 -0,3,3,37,161 -0,3,3,38,5291 -0,3,3,39,163 -0,3,3,40,5289 -0,3,3,41,791 -0,3,3,42,502 -0,3,3,43,503 -0,3,3,44,174 -0,3,3,46,172 -0,3,3,47,504 -0,3,3,48,794 -0,3,3,49,171 -0,3,3,50,505 -0,3,3,51,5288 -0,3,3,52,166 -0,3,3,53,5286 -0,3,3,54,173 -0,3,3,55,507 -0,3,3,57,796 -0,3,3,58,169 -0,3,3,59,506 -0,3,3,60,5281 -0,3,3,61,168 -0,3,3,62,509 -0,3,3,63,797 -0,3,3,64,5283 -0,3,3,65,5278 -0,3,3,66,192 -0,3,3,67,5280 -0,3,2,0,508 -0,3,2,1,799 -0,3,2,2,510 -0,3,2,3,180 -0,3,2,4,188 -0,3,2,5,800 -0,3,2,6,511 -0,3,2,7,181 -0,3,2,8,5298 -0,3,2,9,802 -0,3,2,10,185 -0,3,2,12,183 -0,3,2,13,5300 -0,3,2,14,178 -0,3,2,15,513 -0,3,2,16,801 -0,3,2,17,189 -0,3,2,18,804 -0,3,2,19,5301 -0,3,2,20,803 -0,3,2,21,514 -0,3,2,23,483 -0,3,2,24,5303 -0,3,2,25,805 -0,3,2,26,5304 -0,3,2,27,175 -0,3,2,28,516 -0,3,2,29,806 -0,3,2,30,5302 -0,3,2,31,807 -0,3,2,32,5299 -0,3,2,33,176 -0,3,2,34,5598 -0,3,2,35,177 -0,3,2,36,519 -0,3,2,37,179 -0,3,2,38,5305 -0,3,2,39,808 -0,3,2,40,5600 -0,3,2,41,182 -0,3,2,42,810 -0,3,2,43,809 -0,3,2,44,521 -0,3,2,46,485 -0,3,2,47,5306 -0,3,2,48,1094 -0,3,2,49,812 -0,3,2,50,811 -0,3,2,51,5603 -0,3,2,52,186 -0,3,2,53,5597 -0,3,2,54,1096 -0,3,2,55,813 -0,3,2,57,184 -0,3,2,58,5595 -0,3,2,59,814 -0,3,2,60,187 -0,3,2,61,5297 -0,3,2,62,191 -0,3,2,63,1099 -0,3,2,64,486 -0,3,2,65,816 -0,3,2,66,815 -0,3,2,67,1107 -0,3,1,0,818 -0,3,1,1,1104 -0,3,1,2,820 -0,3,1,3,1101 -0,3,1,4,817 -0,3,1,5,1105 -0,3,1,6,819 -0,3,1,7,1102 -0,3,1,8,821 -0,3,1,9,822 -0,2,1,10,1656 -0,2,1,12,1658 -0,2,1,13,1383 -0,2,1,14,1613 -0,2,1,15,1385 -0,2,1,16,1611 -0,2,1,17,1387 -0,2,1,18,1657 -0,2,1,19,1388 -0,2,1,20,1659 -0,2,1,21,1384 -0,2,1,23,1610 -0,2,1,24,1386 -0,2,1,25,1660 -0,2,1,26,1389 -0,2,1,27,1355 -0,2,1,28,1391 -0,2,1,29,1661 -0,2,1,30,1390 -0,2,1,31,1353 -0,2,1,32,1393 -0,2,1,33,1662 -0,2,1,34,1352 -0,2,1,35,1664 -0,2,1,36,1351 -0,2,1,37,1350 -0,2,1,38,1349 -0,2,1,39,1663 -0,2,1,40,1395 -0,2,1,41,1348 -0,2,1,42,1666 -0,2,1,43,1347 -0,2,1,44,1396 -0,2,1,46,1345 -0,2,1,47,1346 -0,2,1,48,1342 -0,2,1,49,1055 -0,2,1,50,1665 -0,2,1,51,1667 -0,2,1,52,1340 -0,2,1,53,1057 -0,2,1,54,1668 -0,2,1,55,1398 -0,2,1,57,1339 -0,2,1,58,1058 -0,2,1,59,1337 -0,2,1,60,1669 -0,2,1,61,1619 -0,2,1,62,1060 -0,2,1,63,1670 -0,2,1,64,1401 -0,2,1,65,1618 -0,2,1,66,1063 -0,2,1,67,1616 -0,2,0,0,1672 -0,2,0,1,1671 -0,2,0,2,1403 -0,2,0,3,1356 -0,2,0,4,1065 -0,2,0,5,1358 -0,2,0,6,1674 -0,2,0,7,1936 -0,2,0,8,1066 -0,2,0,9,1673 -0,2,0,10,1053 -0,2,0,12,1361 -0,2,0,13,1054 -0,2,0,14,1938 -0,2,0,15,1675 -0,2,0,16,1363 -0,2,0,17,1056 -0,2,0,18,1364 -0,2,0,19,1676 -0,2,0,20,1637 -0,2,0,21,1344 -0,2,0,23,1640 -0,2,0,24,1677 -0,2,0,25,1939 -0,2,0,26,1343 -0,2,0,27,1645 -0,2,0,28,1341 -0,2,0,29,1904 -0,2,0,30,1338 -0,2,0,31,1900 -0,2,0,32,1678 -0,2,0,33,1906 -0,2,0,34,1621 -0,2,0,35,1902 -0,2,0,36,1624 -0,2,0,37,1909 -0,2,0,38,1626 -0,2,0,39,1940 -0,2,0,40,1627 -0,2,0,41,1903 -0,2,0,42,1629 -0,2,0,43,1641 -0,2,0,44,1632 -0,2,0,46,1644 -0,2,0,47,1634 -0,2,0,48,1901 -0,2,0,49,1679 -0,2,0,50,1639 -0,2,0,51,1635 -0,2,0,52,1898 -0,2,0,53,1642 -0,2,0,54,1941 -0,2,0,55,1643 -0,2,0,57,1896 -0,2,0,58,1653 -0,2,0,59,1638 -0,2,0,60,1651 -0,2,0,61,1636 -0,2,0,62,1680 -0,2,0,63,1633 -0,2,0,64,1650 -0,2,0,65,1942 -0,2,0,66,1648 -0,2,0,67,1655 -0,2,3,0,1062 -0,2,3,1,1061 -0,2,3,2,155 -0,2,3,3,1064 -0,2,3,4,779 -0,2,3,5,1067 -0,2,3,6,157 -0,2,3,7,1069 -0,2,3,8,782 -0,2,3,9,153 -0,2,3,10,456 -0,2,3,12,156 -0,2,3,13,458 -0,2,3,14,454 -0,2,3,15,784 -0,2,3,16,753 -0,2,3,17,759 -0,2,3,18,457 -0,2,3,19,781 -0,2,3,20,152 -0,2,3,21,783 -0,2,3,23,1068 -0,2,3,24,786 -0,2,3,25,154 -0,2,3,26,788 -0,2,3,27,455 -0,2,3,28,787 -0,2,3,29,1071 -0,2,3,30,460 -0,2,3,31,1070 -0,2,3,32,459 -0,2,3,33,1072 -0,2,3,34,159 -0,2,3,35,1075 -0,2,3,36,461 -0,2,3,37,1073 -0,2,3,38,790 -0,2,3,39,1077 -0,2,3,40,162 -0,2,3,41,1074 -0,2,3,42,462 -0,2,3,43,463 -0,2,3,44,792 -0,2,3,46,465 -0,2,3,47,757 -0,2,3,48,761 -0,2,3,49,165 -0,2,3,50,763 -0,2,3,51,164 -0,2,3,52,1076 -0,2,3,53,793 -0,2,3,54,766 -0,2,3,55,464 -0,2,3,57,768 -0,2,3,58,467 -0,2,3,59,1079 -0,2,3,60,795 -0,2,3,61,1354 -0,2,3,62,1078 -0,2,3,63,769 -0,2,3,64,469 -0,2,3,65,1357 -0,2,3,66,1080 -0,2,3,67,1081 -0,2,2,0,798 -0,2,2,1,758 -0,2,2,2,762 -0,2,2,3,755 -0,2,2,4,1083 -0,2,2,5,1359 -0,2,2,6,466 -0,2,2,7,1082 -0,2,2,8,468 -0,2,2,9,1084 -0,2,2,10,1085 -0,2,2,12,1360 -0,2,2,13,471 -0,2,2,14,756 -0,2,2,15,474 -0,2,2,16,754 -0,2,2,17,476 -0,2,2,18,1362 -0,2,2,19,780 -0,2,2,20,751 -0,2,2,21,1086 -0,2,2,23,749 -0,2,2,24,778 -0,2,2,25,748 -0,2,2,26,775 -0,2,2,27,1365 -0,2,2,28,1088 -0,2,2,29,1059 -0,2,2,30,1087 -0,2,2,31,760 -0,2,2,32,1089 -0,2,2,33,1367 -0,2,2,34,1091 -0,2,2,35,470 -0,2,2,36,773 -0,2,2,37,472 -0,2,2,38,1090 -0,2,2,39,475 -0,2,2,40,772 -0,2,2,41,1368 -0,2,2,42,1093 -0,2,2,43,1366 -0,2,2,44,770 -0,2,2,46,1369 -0,2,2,47,1092 -0,2,2,48,1370 -0,2,2,49,767 -0,2,2,50,479 -0,2,2,51,765 -0,2,2,52,481 -0,2,2,53,1095 -0,2,2,54,1371 -0,2,2,55,764 -0,2,2,57,1373 -0,2,2,58,776 -0,2,2,59,482 -0,2,2,60,1097 -0,2,2,61,1372 -0,2,2,62,774 -0,2,2,63,1375 -0,2,2,64,771 -0,2,2,65,484 -0,2,2,66,777 -0,2,2,67,1374 -0,2,1,0,1098 -0,2,1,1,1376 -0,2,1,2,785 -0,2,1,3,473 -0,2,1,4,1100 -0,2,1,5,1377 -0,2,1,6,1103 -0,2,1,7,1379 -0,2,1,8,1378 -0,2,1,9,1381 -6,0,1,10,873 -6,0,1,12,872 -6,0,1,13,584 -6,0,1,14,1155 -6,0,1,15,585 -6,0,1,16,2214 -6,0,1,17,1958 -6,0,1,18,1697 -6,0,1,19,1953 -6,0,1,20,1959 -6,0,1,21,1426 -6,0,1,23,2215 -6,0,1,24,586 -6,0,1,25,1156 -6,0,1,26,1153 -6,0,1,27,874 -6,0,1,28,1692 -6,0,1,29,2464 -6,0,1,30,1152 -6,0,1,31,1430 -6,0,1,32,1425 -6,0,1,33,1698 -6,0,1,34,1952 -6,0,1,35,1960 -6,0,1,36,1691 -6,0,1,37,2216 -6,0,1,38,1690 -6,0,1,39,2465 -6,0,1,40,587 -6,0,1,41,875 -6,0,1,42,1423 -6,0,1,43,1157 -6,0,1,44,5700 -6,0,1,46,1431 -6,0,1,47,5987 -6,0,1,48,1699 -6,0,1,49,6268 -6,0,1,50,1961 -6,0,1,51,5701 -6,0,1,52,2217 -6,0,1,53,7073 -6,0,1,54,2466 -6,0,1,55,7072 -6,0,1,57,1432 -6,0,1,58,876 -6,0,1,59,1158 -6,0,1,60,6811 -6,0,1,61,1700 -6,0,1,62,7330 -6,0,1,63,1962 -6,0,1,64,7074 -6,0,1,65,2218 -6,0,1,66,6812 -6,0,1,67,2467 -6,0,0,0,7331 -6,0,0,1,1433 -6,0,0,2,7075 -6,0,0,3,1701 -6,0,0,4,877 -6,0,0,5,1159 -6,0,0,6,6813 -6,0,0,7,1963 -6,0,0,8,6545 -6,0,0,9,2219 -6,0,0,10,7332 -6,0,0,12,2468 -6,0,0,13,7076 -6,0,0,14,1434 -6,0,0,15,6814 -6,0,0,16,1702 -6,0,0,17,6815 -6,0,0,18,1964 -6,0,0,19,6547 -6,0,0,20,2220 -6,0,0,21,878 -6,0,0,23,1160 -6,0,0,24,5990 -6,0,0,25,2469 -6,0,0,26,6272 -6,0,0,27,1435 -6,0,0,28,1427 -6,0,0,29,1703 -6,0,0,30,1693 -6,0,0,31,1965 -6,0,0,32,1954 -6,0,0,33,2221 -6,0,0,34,1428 -6,0,0,35,2470 -6,0,0,36,879 -6,0,0,37,1161 -6,0,0,38,1694 -6,0,0,39,2712 -6,0,0,40,1154 -6,0,0,41,1436 -6,0,0,42,1955 -6,0,0,43,1704 -6,0,0,44,1429 -6,0,0,46,1966 -6,0,0,47,1695 -6,0,0,48,2222 -6,0,0,49,2210 -6,0,0,50,2471 -6,0,0,51,1696 -6,0,0,52,1162 -6,0,0,53,880 -6,0,0,54,2713 -6,0,0,55,1956 -6,0,0,57,1437 -6,0,0,58,2211 -6,0,0,59,1705 -6,0,0,60,2212 -6,0,0,61,1967 -6,0,0,62,1957 -6,0,0,63,2223 -6,0,0,64,2213 -6,0,0,65,1163 -6,0,0,66,4836 -6,0,0,67,881 -6,0,3,0,861 -6,0,3,1,550 -6,0,3,2,573 -6,0,3,3,277 -6,0,3,4,245 -6,0,3,5,552 -6,0,3,6,574 -6,0,3,7,862 -6,0,3,8,269 -6,0,3,9,5368 -6,0,3,10,263 -6,0,3,12,555 -6,0,3,13,271 -6,0,3,14,276 -6,0,3,15,266 -6,0,3,16,557 -6,0,3,17,274 -6,0,3,18,5366 -6,0,3,19,268 -6,0,3,20,558 -6,0,3,21,235 -6,0,3,23,560 -6,0,3,24,575 -6,0,3,25,863 -6,0,3,26,238 -6,0,3,27,248 -6,0,3,28,5664 -6,0,3,29,549 -6,0,3,30,240 -6,0,3,31,264 -6,0,3,32,5397 -6,0,3,33,547 -6,0,3,34,241 -6,0,3,35,571 -6,0,3,36,5667 -6,0,3,37,544 -6,0,3,38,576 -6,0,3,39,864 -6,0,3,40,243 -6,0,3,41,262 -6,0,3,42,5669 -6,0,3,43,542 -6,0,3,44,246 -6,0,3,46,259 -6,0,3,47,5670 -6,0,3,48,564 -6,0,3,49,278 -6,0,3,50,567 -6,0,3,51,5672 -6,0,3,52,562 -6,0,3,53,265 -6,0,3,54,1422 -6,0,3,55,577 -6,0,3,57,865 -6,0,3,58,5370 -6,0,3,59,257 -6,0,3,60,5373 -6,0,3,61,561 -6,0,3,62,5396 -6,0,3,63,256 -6,0,3,64,5372 -6,0,3,65,559 -6,0,3,66,244 -6,0,3,67,572 -6,0,2,0,5367 -6,0,2,1,556 -6,0,2,2,578 -6,0,2,3,866 -6,0,2,4,242 -6,0,2,5,254 -6,0,2,6,5365 -6,0,2,7,554 -6,0,2,8,239 -6,0,2,9,251 -6,0,2,10,5364 -6,0,2,12,553 -6,0,2,13,237 -6,0,2,14,249 -6,0,2,15,5362 -6,0,2,16,855 -6,0,2,17,236 -6,0,2,18,867 -6,0,2,19,579 -6,0,2,20,1424 -6,0,2,21,563 -6,0,2,23,853 -6,0,2,24,5359 -6,0,2,25,258 -6,0,2,26,5357 -6,0,2,27,856 -6,0,2,28,5358 -6,0,2,29,570 -6,0,2,30,5384 -6,0,2,31,852 -6,0,2,32,5382 -6,0,2,33,253 -6,0,2,34,5379 -6,0,2,35,868 -6,0,2,36,580 -6,0,2,37,850 -6,0,2,38,5377 -6,0,2,39,247 -6,0,2,40,5376 -6,0,2,41,847 -6,0,2,42,5374 -6,0,2,43,568 -6,0,2,44,5371 -6,0,2,46,845 -6,0,2,47,5369 -6,0,2,48,565 -6,0,2,49,860 -6,0,2,50,869 -6,0,2,51,581 -6,0,2,52,844 -6,0,2,53,260 -6,0,2,54,854 -6,0,2,55,255 -6,0,2,57,851 -6,0,2,58,252 -6,0,2,59,849 -6,0,2,60,250 -6,0,2,61,848 -6,0,2,62,228 -6,0,2,63,846 -6,0,2,64,859 -6,0,2,65,843 -6,0,2,66,582 -6,0,2,67,870 -6,0,1,0,566 -6,0,1,1,1133 -6,0,1,2,569 -6,0,1,3,1134 -6,0,1,4,1147 -6,0,1,5,1136 -6,0,1,6,1148 -6,0,1,7,871 -6,0,1,8,1149 -6,0,1,9,583 -6,1,1,10,5988 -6,1,1,12,6269 -6,1,1,13,291 -6,1,1,14,6543 -6,1,1,15,7584 -6,1,1,16,5702 -6,1,1,17,7335 -6,1,1,18,5989 -6,1,1,19,5411 -6,1,1,20,6270 -6,1,1,21,7079 -6,1,1,23,6544 -6,1,1,24,292 -6,1,1,25,6271 -6,1,1,26,6817 -6,1,1,27,6546 -6,1,1,28,6549 -6,1,1,29,7333 -6,1,1,30,6274 -6,1,1,31,7077 -6,1,1,32,7585 -6,1,1,33,7334 -6,1,1,34,7336 -6,1,1,35,7078 -6,1,1,36,5413 -6,1,1,37,6816 -6,1,1,38,293 -6,1,1,39,6548 -6,1,1,40,6819 -6,1,1,41,7080 -6,1,1,42,6551 -6,1,1,43,6818 -6,1,1,44,6276 -6,1,1,46,6550 -6,1,1,47,7587 -6,1,1,48,6275 -6,1,1,49,7338 -6,1,1,50,7586 -6,1,1,51,7082 -6,1,1,52,7337 -6,1,1,53,5414 -6,1,1,54,588 -6,1,1,55,294 -6,1,1,57,7081 -6,1,1,58,6820 -6,1,1,59,5412 -6,1,1,60,6552 -6,1,1,61,6277 -6,1,1,62,7083 -6,1,1,63,5995 -6,1,1,64,6821 -6,1,1,65,7588 -6,1,1,66,6553 -6,1,1,67,7339 -6,1,0,0,5415 -6,1,0,1,589 -6,1,0,2,6278 -6,1,0,3,5996 -6,1,0,4,295 -6,1,0,5,7589 -6,1,0,6,7340 -6,1,0,7,5997 -6,1,0,8,7084 -6,1,0,9,6273 -6,1,0,10,6822 -6,1,0,12,5991 -6,1,0,13,6554 -6,1,0,14,5703 -6,1,0,15,6279 -6,1,0,16,5992 -6,1,0,17,5416 -6,1,0,18,590 -6,1,0,19,296 -6,1,0,20,5704 -6,1,0,21,7590 -6,1,0,23,5993 -6,1,0,24,7341 -6,1,0,25,5705 -6,1,0,26,7085 -6,1,0,27,5994 -6,1,0,28,6823 -6,1,0,29,5706 -6,1,0,30,6555 -6,1,0,31,5707 -6,1,0,32,6280 -6,1,0,33,591 -6,1,0,34,297 -6,1,0,35,5708 -6,1,0,36,5998 -6,1,0,37,5709 -6,1,0,38,5710 -6,1,0,39,7833 -6,1,0,40,6824 -6,1,0,41,7591 -6,1,0,42,6556 -6,1,0,43,7342 -6,1,0,44,6281 -6,1,0,46,7086 -6,1,0,47,5999 -6,1,0,48,7343 -6,1,0,49,298 -6,1,0,50,592 -6,1,0,51,5711 -6,1,0,52,7087 -6,1,0,53,5417 -6,1,0,54,6825 -6,1,0,55,6557 -6,1,0,57,6000 -6,1,0,58,6282 -6,1,0,59,6283 -6,1,0,60,5712 -6,1,0,61,5713 -6,1,0,62,5418 -6,1,0,63,1151 -6,1,0,64,6001 -6,1,0,65,593 -6,1,0,66,299 -6,1,0,67,5419 -6,1,3,0,279 -6,1,3,1,267 -6,1,3,2,5399 -6,1,3,3,270 -6,1,3,4,5400 -6,1,3,5,280 -6,1,3,6,5381 -6,1,3,7,5675 -6,1,3,8,5684 -6,1,3,9,272 -6,1,3,10,5383 -6,1,3,12,5677 -6,1,3,13,5687 -6,1,3,14,273 -6,1,3,15,5386 -6,1,3,16,5678 -6,1,3,17,5972 -6,1,3,18,275 -6,1,3,19,5388 -6,1,3,20,281 -6,1,3,21,5973 -6,1,3,23,5360 -6,1,3,24,5389 -6,1,3,25,5674 -6,1,3,26,5975 -6,1,3,27,5361 -6,1,3,28,5398 -6,1,3,29,1150 -6,1,3,30,5971 -6,1,3,31,5363 -6,1,3,32,5391 -6,1,3,33,5679 -6,1,3,34,5974 -6,1,3,35,5385 -6,1,3,36,5402 -6,1,3,37,282 -6,1,3,38,5394 -6,1,3,39,5681 -6,1,3,40,5976 -6,1,3,41,5387 -6,1,3,42,5680 -6,1,3,43,5682 -6,1,3,44,5690 -6,1,3,46,5390 -6,1,3,47,5683 -6,1,3,48,5689 -6,1,3,49,5691 -6,1,3,50,5392 -6,1,3,51,5403 -6,1,3,52,283 -6,1,3,53,5685 -6,1,3,54,261 -6,1,3,55,5401 -6,1,3,57,5393 -6,1,3,58,6541 -6,1,3,59,1137 -6,1,3,60,5686 -6,1,3,61,5395 -6,1,3,62,6542 -6,1,3,63,857 -6,1,3,64,5688 -6,1,3,65,5375 -6,1,3,66,6258 -6,1,3,67,1138 -6,1,2,0,5404 -6,1,2,1,284 -6,1,2,2,6259 -6,1,2,3,5378 -6,1,2,4,5977 -6,1,2,5,858 -6,1,2,6,5978 -6,1,2,7,5380 -6,1,2,8,5692 -6,1,2,9,1139 -6,1,2,10,5979 -6,1,2,12,1414 -6,1,2,13,5693 -6,1,2,14,1682 -6,1,2,15,5405 -6,1,2,16,285 -6,1,2,17,6260 -6,1,2,18,1140 -6,1,2,19,5980 -6,1,2,20,1415 -6,1,2,21,5694 -6,1,2,23,1683 -6,1,2,24,6261 -6,1,2,25,1141 -6,1,2,26,5981 -6,1,2,27,1416 -6,1,2,28,5695 -6,1,2,29,1684 -6,1,2,30,6262 -6,1,2,31,1142 -6,1,2,32,5982 -6,1,2,33,286 -6,1,2,34,5696 -6,1,2,35,1417 -6,1,2,36,6263 -6,1,2,37,1685 -6,1,2,38,5983 -6,1,2,39,1143 -6,1,2,40,5697 -6,1,2,41,1418 -6,1,2,42,6264 -6,1,2,43,1686 -6,1,2,44,5406 -6,1,2,46,1144 -6,1,2,47,5984 -6,1,2,48,287 -6,1,2,49,5698 -6,1,2,50,1419 -6,1,2,51,5699 -6,1,2,52,1687 -6,1,2,53,6538 -6,1,2,54,1949 -6,1,2,55,6265 -6,1,2,57,1145 -6,1,2,58,5985 -6,1,2,59,1420 -6,1,2,60,6539 -6,1,2,61,1688 -6,1,2,62,5407 -6,1,2,63,1950 -6,1,2,64,5408 -6,1,2,65,288 -6,1,2,66,6266 -6,1,2,67,1146 -6,1,1,0,5986 -6,1,1,1,1421 -6,1,1,2,6540 -6,1,1,3,1689 -6,1,1,4,6267 -6,1,1,5,1951 -6,1,1,6,5409 -6,1,1,7,289 -6,1,1,8,5410 -6,1,1,9,290 -3,0,1,10,6533 -3,0,1,12,6534 -3,0,1,13,6801 -3,0,1,14,227 -3,0,1,15,5334 -3,0,1,16,225 -3,0,1,17,5632 -3,0,1,18,230 -3,0,1,19,5335 -3,0,1,20,5356 -3,0,1,21,6802 -3,0,1,23,229 -3,0,1,24,5630 -3,0,1,25,5352 -3,0,1,26,5629 -3,0,1,27,6535 -3,0,1,28,5336 -3,0,1,29,5353 -3,0,1,30,5337 -3,0,1,31,5350 -3,0,1,32,5635 -3,0,1,33,232 -3,0,1,34,5338 -3,0,1,35,5662 -3,0,1,36,219 -3,0,1,37,231 -3,0,1,38,6803 -3,0,1,39,5970 -3,0,1,40,5634 -3,0,1,41,6536 -3,0,1,42,5339 -3,0,1,43,5355 -3,0,1,44,5340 -3,0,1,46,5676 -3,0,1,47,222 -3,0,1,48,233 -3,0,1,49,5637 -3,0,1,50,5347 -3,0,1,51,6804 -3,0,1,52,234 -3,0,1,53,5342 -3,0,1,54,531 -3,0,1,55,5636 -3,0,1,57,6537 -3,0,1,58,224 -3,0,1,59,5656 -3,0,1,60,5341 -3,0,1,61,5654 -3,0,1,62,5638 -3,0,1,63,5653 -3,0,1,64,5344 -3,0,1,65,5651 -3,0,1,66,6805 -3,0,1,67,5648 -3,0,0,0,5639 -3,0,0,1,5658 -3,0,0,2,5641 -3,0,0,3,5346 -3,0,0,4,5642 -3,0,0,5,5657 -3,0,0,6,5644 -3,0,0,7,5343 -3,0,0,8,5647 -3,0,0,9,5655 -3,0,0,10,5649 -3,0,0,12,6806 -3,0,0,13,5640 -3,0,0,14,5956 -3,0,0,15,5643 -3,0,0,16,6251 -3,0,0,17,5665 -3,0,0,18,5955 -3,0,0,19,5964 -3,0,0,20,5958 -3,0,0,21,5962 -3,0,0,23,5954 -3,0,0,24,5959 -3,0,0,25,6253 -3,0,0,26,5666 -3,0,0,27,6807 -3,0,0,28,5348 -3,0,0,29,5951 -3,0,0,30,5349 -3,0,0,31,5660 -3,0,0,32,5668 -3,0,0,33,5949 -3,0,0,34,5965 -3,0,0,35,6257 -3,0,0,36,5351 -3,0,0,37,5948 -3,0,0,38,7069 -3,0,0,39,5663 -3,0,0,40,5671 -3,0,0,41,6808 -3,0,0,42,5659 -3,0,0,43,5946 -3,0,0,44,5969 -3,0,0,46,6254 -3,0,0,47,5354 -3,0,0,48,5960 -3,0,0,49,5967 -3,0,0,50,6256 -3,0,0,51,7070 -3,0,0,52,5957 -3,0,0,53,5673 -3,0,0,54,5961 -3,0,0,55,5661 -3,0,0,57,6809 -3,0,0,58,5345 -3,0,0,59,5963 -3,0,0,60,5645 -3,0,0,61,5966 -3,0,0,62,5650 -3,0,0,63,5968 -3,0,0,64,5652 -3,0,0,65,6810 -3,0,0,66,7071 -3,0,0,67,5646 -3,0,3,0,5938 -3,0,3,1,5936 -3,0,3,2,6221 -3,0,3,3,5937 -3,0,3,4,6219 -3,0,3,5,5935 -3,0,3,6,5914 -3,0,3,7,5940 -3,0,3,8,5612 -3,0,3,9,5925 -3,0,3,10,6222 -3,0,3,12,5623 -3,0,3,13,5605 -3,0,3,14,5939 -3,0,3,15,5606 -3,0,3,16,5941 -3,0,3,17,6224 -3,0,3,18,5620 -3,0,3,19,5608 -3,0,3,20,5942 -3,0,3,21,6225 -3,0,3,23,5943 -3,0,3,24,6227 -3,0,3,25,5618 -3,0,3,26,5611 -3,0,3,27,5944 -3,0,3,28,6226 -3,0,3,29,5617 -3,0,3,30,5615 -3,0,3,31,5927 -3,0,3,32,6229 -3,0,3,33,5930 -3,0,3,34,5613 -3,0,3,35,5945 -3,0,3,36,5308 -3,0,3,37,5625 -3,0,3,38,6228 -3,0,3,39,5932 -3,0,3,40,6230 -3,0,3,41,5947 -3,0,3,42,5309 -3,0,3,43,5933 -3,0,3,44,6231 -3,0,3,46,5626 -3,0,3,47,6232 -3,0,3,48,5950 -3,0,3,49,5610 -3,0,3,50,5614 -3,0,3,51,6233 -3,0,3,52,6235 -3,0,3,53,5911 -3,0,3,54,5616 -3,0,3,55,5609 -3,0,3,57,5952 -3,0,3,58,6234 -3,0,3,59,5311 -3,0,3,60,5909 -3,0,3,61,6237 -3,0,3,62,6216 -3,0,3,63,5619 -3,0,3,64,5921 -3,0,3,65,5953 -3,0,3,66,6236 -3,0,3,67,5314 -3,0,2,0,5607 -3,0,2,1,6238 -3,0,2,2,6514 -3,0,2,3,5316 -3,0,2,4,6239 -3,0,2,5,5621 -3,0,2,6,6214 -3,0,2,7,5307 -3,0,2,8,5920 -3,0,2,9,6240 -3,0,2,10,6517 -3,0,2,12,5310 -3,0,2,13,6241 -3,0,2,14,6243 -3,0,2,15,5908 -3,0,2,16,5312 -3,0,2,17,6519 -3,0,2,18,5313 -3,0,2,19,6242 -3,0,2,20,5317 -3,0,2,21,5923 -3,0,2,23,6245 -3,0,2,24,5926 -3,0,2,25,5315 -3,0,2,26,6520 -3,0,2,27,5318 -3,0,2,28,6244 -3,0,2,29,5319 -3,0,2,30,5928 -3,0,2,31,6246 -3,0,2,32,5916 -3,0,2,33,5322 -3,0,2,34,6522 -3,0,2,35,6247 -3,0,2,36,5917 -3,0,2,37,6248 -3,0,2,38,5919 -3,0,2,39,5324 -3,0,2,40,6525 -3,0,2,41,6249 -3,0,2,42,5922 -3,0,2,43,5320 -3,0,2,44,6524 -3,0,2,46,5325 -3,0,2,47,6527 -3,0,2,48,5321 -3,0,2,49,5929 -3,0,2,50,6250 -3,0,2,51,6526 -3,0,2,52,5323 -3,0,2,53,5924 -3,0,2,54,5330 -3,0,2,55,6528 -3,0,2,57,6252 -3,0,2,58,5931 -3,0,2,59,5327 -3,0,2,60,6529 -3,0,2,61,5332 -3,0,2,62,6530 -3,0,2,63,5326 -3,0,2,64,5934 -3,0,2,65,6255 -3,0,2,66,5622 -3,0,2,67,5333 -3,0,1,0,5628 -3,0,1,1,5328 -3,0,1,2,5631 -3,0,1,3,5329 -3,0,1,4,6531 -3,0,1,5,5331 -3,0,1,6,5624 -3,0,1,7,6532 -3,0,1,8,5627 -3,0,1,9,5633 -3,1,1,10,5282 -3,1,1,12,5279 -3,1,1,13,7062 -3,1,1,14,5594 -3,1,1,15,7063 -3,1,1,16,5593 -3,1,1,17,6481 -3,1,1,18,5591 -3,1,1,19,6480 -3,1,1,20,5277 -3,1,1,21,6478 -3,1,1,23,5276 -3,1,1,24,6479 -3,1,1,25,6765 -3,1,1,26,6477 -3,1,1,27,6763 -3,1,1,28,6474 -3,1,1,29,7064 -3,1,1,30,6472 -3,1,1,31,6491 -3,1,1,32,6471 -3,1,1,33,6489 -3,1,1,34,6469 -3,1,1,35,6486 -3,1,1,36,5586 -3,1,1,37,6484 -3,1,1,38,7320 -3,1,1,39,6483 -3,1,1,40,5585 -3,1,1,41,6762 -3,1,1,42,5583 -3,1,1,43,7065 -3,1,1,44,5580 -3,1,1,46,5887 -3,1,1,47,5579 -3,1,1,48,5885 -3,1,1,49,5576 -3,1,1,50,5886 -3,1,1,51,5574 -3,1,1,52,5888 -3,1,1,53,7321 -3,1,1,54,5884 -3,1,1,55,5874 -3,1,1,57,5883 -3,1,1,58,5875 -3,1,1,59,7066 -3,1,1,60,6182 -3,1,1,61,5882 -3,1,1,62,6181 -3,1,1,63,5880 -3,1,1,64,6180 -3,1,1,65,5879 -3,1,1,66,6179 -3,1,1,67,5877 -3,1,0,0,7322 -3,1,0,1,5876 -3,1,0,2,6176 -3,1,0,3,5878 -3,1,0,4,6174 -3,1,0,5,7067 -3,1,0,6,6178 -3,1,0,7,5584 -3,1,0,8,6177 -3,1,0,9,5582 -3,1,0,10,6175 -3,1,0,12,5581 -3,1,0,13,6172 -3,1,0,14,7565 -3,1,0,15,7323 -3,1,0,16,7328 -3,1,0,17,6170 -3,1,0,18,7327 -3,1,0,19,6171 -3,1,0,20,7068 -3,1,0,21,6169 -3,1,0,23,7564 -3,1,0,24,6168 -3,1,0,25,7563 -3,1,0,26,6167 -3,1,0,27,7562 -3,1,0,28,6166 -3,1,0,29,7816 -3,1,0,30,7324 -3,1,0,31,7576 -3,1,0,32,6165 -3,1,0,33,7815 -3,1,0,34,6163 -3,1,0,35,7814 -3,1,0,36,7319 -3,1,0,37,7813 -3,1,0,38,7318 -3,1,0,39,7812 -3,1,0,40,7317 -3,1,0,41,7811 -3,1,0,42,7316 -3,1,0,43,7325 -3,1,0,44,7315 -3,1,0,46,7810 -3,1,0,47,7314 -3,1,0,48,7809 -3,1,0,49,7574 -3,1,0,50,7808 -3,1,0,51,7573 -3,1,0,52,7577 -3,1,0,53,7572 -3,1,0,54,7803 -3,1,0,55,7571 -3,1,0,57,7804 -3,1,0,58,7570 -3,1,0,59,7326 -3,1,0,60,7569 -3,1,0,61,7805 -3,1,0,62,7568 -3,1,0,63,7806 -3,1,0,64,7567 -3,1,0,65,7807 -3,1,0,66,7566 -3,1,0,67,7575 -3,1,3,0,6211 -3,1,3,1,6495 -3,1,3,2,6494 -3,1,3,3,6496 -3,1,3,4,6492 -3,1,3,5,6498 -3,1,3,6,6497 -3,1,3,7,6218 -3,1,3,8,6482 -3,1,3,9,6220 -3,1,3,10,6768 -3,1,3,12,6223 -3,1,3,13,6499 -3,1,3,14,6217 -3,1,3,15,6202 -3,1,3,16,6501 -3,1,3,17,6770 -3,1,3,18,6215 -3,1,3,19,6203 -3,1,3,20,6500 -3,1,3,21,6204 -3,1,3,23,6212 -3,1,3,24,6205 -3,1,3,25,6503 -3,1,3,26,6771 -3,1,3,27,6502 -3,1,3,28,5918 -3,1,3,29,6210 -3,1,3,30,6201 -3,1,3,31,6490 -3,1,3,32,6200 -3,1,3,33,6504 -3,1,3,34,6773 -3,1,3,35,6505 -3,1,3,36,5915 -3,1,3,37,6493 -3,1,3,38,6199 -3,1,3,39,6506 -3,1,3,40,6776 -3,1,3,41,6488 -3,1,3,42,6198 -3,1,3,43,6507 -3,1,3,44,5913 -3,1,3,46,6509 -3,1,3,47,6196 -3,1,3,48,6487 -3,1,3,49,6778 -3,1,3,50,6508 -3,1,3,51,6193 -3,1,3,52,6209 -3,1,3,53,6197 -3,1,3,54,6511 -3,1,3,55,6779 -3,1,3,57,6208 -3,1,3,58,5912 -3,1,3,59,6510 -3,1,3,60,6780 -3,1,3,61,6512 -3,1,3,62,6194 -3,1,3,63,6485 -3,1,3,64,6781 -3,1,3,65,6513 -3,1,3,66,6195 -3,1,3,67,6207 -3,1,2,0,6782 -3,1,2,1,6206 -3,1,2,2,5910 -3,1,2,3,6173 -3,1,2,4,6784 -3,1,2,5,6515 -3,1,2,6,6783 -3,1,2,7,5881 -3,1,2,8,6192 -3,1,2,9,6786 -3,1,2,10,5894 -3,1,2,12,6516 -3,1,2,13,6190 -3,1,2,14,6213 -3,1,2,15,6785 -3,1,2,16,9382 -3,1,2,17,5604 -3,1,2,18,6787 -3,1,2,19,5893 -3,1,2,20,6518 -3,1,2,21,6788 -3,1,2,23,9401 -3,1,2,24,5602 -3,1,2,25,6789 -3,1,2,26,5891 -3,1,2,27,6521 -3,1,2,28,5892 -3,1,2,29,9307 -3,1,2,30,6790 -3,1,2,31,6792 -3,1,2,32,5601 -3,1,2,33,5906 -3,1,2,34,5599 -3,1,2,35,6523 -3,1,2,36,6791 -3,1,2,37,5905 -3,1,2,38,5889 -3,1,2,39,6794 -3,1,2,40,5890 -3,1,2,41,5903 -3,1,2,42,7056 -3,1,2,43,5907 -3,1,2,44,6793 -3,1,2,46,5902 -3,1,2,47,5904 -3,1,2,48,6795 -3,1,2,49,7058 -3,1,2,50,5588 -3,1,2,51,5901 -3,1,2,52,5592 -3,1,2,53,6796 -3,1,2,54,6797 -3,1,2,55,5899 -3,1,2,57,5590 -3,1,2,58,5900 -3,1,2,59,5285 -3,1,2,60,7059 -3,1,2,61,5284 -3,1,2,62,5897 -3,1,2,63,5275 -3,1,2,64,5898 -3,1,2,65,6798 -3,1,2,66,5895 -3,1,2,67,5596 -3,1,1,0,5896 -3,1,1,1,5589 -3,1,1,2,6184 -3,1,1,3,5587 -3,1,1,4,6189 -3,1,1,5,6800 -3,1,1,6,7060 -3,1,1,7,6799 -3,1,1,8,6191 -3,1,1,9,7061 -6,2,1,10,9115 -6,2,1,12,8918 -6,2,1,13,7578 -6,2,1,14,9211 -6,2,1,15,7329 -6,2,1,16,8713 -6,2,1,17,7579 -6,2,1,18,8500 -6,2,1,19,7821 -6,2,1,20,8501 -6,2,1,21,8056 -6,2,1,23,8714 -6,2,1,24,8283 -6,2,1,25,8919 -6,2,1,26,7580 -6,2,1,27,9212 -6,2,1,28,7822 -6,2,1,29,9116 -6,2,1,30,8057 -6,2,1,31,8502 -6,2,1,32,9305 -6,2,1,33,8715 -6,2,1,34,8284 -6,2,1,35,8920 -6,2,1,36,7826 -6,2,1,37,9117 -6,2,1,38,8061 -6,2,1,39,9213 -6,2,1,40,8288 -6,2,1,41,8503 -6,2,1,42,8508 -6,2,1,43,8716 -6,2,1,44,9306 -6,2,1,46,8921 -6,2,1,47,8721 -6,2,1,48,9118 -6,2,1,49,8926 -6,2,1,50,9214 -6,2,1,51,9123 -6,2,1,52,8504 -6,2,1,53,9219 -6,2,1,54,8717 -6,2,1,55,9313 -6,2,1,57,8922 -6,2,1,58,7827 -6,2,1,59,9119 -6,2,1,60,8062 -6,2,1,61,9215 -6,2,1,62,8289 -6,2,1,63,7581 -6,2,1,64,8509 -6,2,1,65,7823 -6,2,1,66,8722 -6,2,1,67,9308 -6,2,0,0,8927 -6,2,0,1,8058 -6,2,0,2,9124 -6,2,0,3,8285 -6,2,0,4,7828 -6,2,0,5,8505 -6,2,0,6,9399 -6,2,0,7,8718 -6,2,0,8,8063 -6,2,0,9,8923 -6,2,0,10,8290 -6,2,0,12,9309 -6,2,0,13,8510 -6,2,0,14,9120 -6,2,0,15,8723 -6,2,0,16,9216 -6,2,0,17,9400 -6,2,0,18,7582 -6,2,0,19,9404 -6,2,0,20,7824 -6,2,0,21,9220 -6,2,0,23,9310 -6,2,0,24,8928 -6,2,0,25,8059 -6,2,0,26,7829 -6,2,0,27,8286 -6,2,0,28,8064 -6,2,0,29,8506 -6,2,0,30,8291 -6,2,0,31,8719 -6,2,0,32,8511 -6,2,0,33,8924 -6,2,0,34,8724 -6,2,0,35,9121 -6,2,0,36,7830 -6,2,0,37,9217 -6,2,0,38,8065 -6,2,0,39,9311 -6,2,0,40,8292 -6,2,0,41,9402 -6,2,0,42,8512 -6,2,0,43,7583 -6,2,0,44,9125 -6,2,0,46,7825 -6,2,0,47,8929 -6,2,0,48,8060 -6,2,0,49,9491 -6,2,0,50,8287 -6,2,0,51,8725 -6,2,0,52,8507 -6,2,0,53,7831 -6,2,0,54,9403 -6,2,0,55,8066 -6,2,0,57,8720 -6,2,0,58,9493 -6,2,0,59,8925 -6,2,0,60,9492 -6,2,0,61,9122 -6,2,0,62,8293 -6,2,0,63,9218 -6,2,0,64,7832 -6,2,0,65,9312 -6,2,0,66,8067 -6,2,0,67,8513 -6,2,3,0,8270 -6,2,3,1,8271 -6,2,3,2,8490 -6,2,3,3,8272 -6,2,3,4,8489 -6,2,3,5,8273 -6,2,3,6,8488 -6,2,3,7,8491 -6,2,3,8,8487 -6,2,3,9,8269 -6,2,3,10,8486 -6,2,3,12,8268 -6,2,3,13,8485 -6,2,3,14,8267 -6,2,3,15,8484 -6,2,3,16,8266 -6,2,3,17,8483 -6,2,3,18,8265 -6,2,3,19,8482 -6,2,3,20,8492 -6,2,3,21,6766 -6,2,3,23,8264 -6,2,3,24,7031 -6,2,3,25,8263 -6,2,3,26,8704 -6,2,3,27,7297 -6,2,3,28,7030 -6,2,3,29,7038 -6,2,3,30,7289 -6,2,3,31,8493 -6,2,3,32,7290 -6,2,3,33,7039 -6,2,3,34,6764 -6,2,3,35,6774 -6,2,3,36,7029 -6,2,3,37,7299 -6,2,3,38,8705 -6,2,3,39,7300 -6,2,3,40,7028 -6,2,3,41,7041 -6,2,3,42,7287 -6,2,3,43,7040 -6,2,3,44,7288 -6,2,3,46,6775 -6,2,3,47,6761 -6,2,3,48,7302 -6,2,3,49,7026 -6,2,3,50,7043 -6,2,3,51,8706 -6,2,3,52,7042 -6,2,3,53,7027 -6,2,3,54,6777 -6,2,3,55,7286 -6,2,3,57,7044 -6,2,3,58,7285 -6,2,3,59,7045 -6,2,3,60,7283 -6,2,3,61,7046 -6,2,3,62,7291 -6,2,3,63,8707 -6,2,3,64,7292 -6,2,3,65,7047 -6,2,3,66,7033 -6,2,3,67,7049 -6,2,2,0,7032 -6,2,2,1,7048 -6,2,2,2,6767 -6,2,2,3,7051 -6,2,2,4,7293 -6,2,2,5,8708 -6,2,2,6,7294 -6,2,2,7,7050 -6,2,2,8,7035 -6,2,2,9,7052 -6,2,2,10,8912 -6,2,2,12,7053 -6,2,2,13,7034 -6,2,2,14,7055 -6,2,2,15,6769 -6,2,2,16,7054 -6,2,2,17,7296 -6,2,2,18,7057 -6,2,2,19,7295 -6,2,2,20,8037 -6,2,2,21,7036 -6,2,2,23,8038 -6,2,2,24,8913 -6,2,2,25,8039 -6,2,2,26,7037 -6,2,2,27,8040 -6,2,2,28,6772 -6,2,2,29,8041 -6,2,2,30,7298 -6,2,2,31,8042 -6,2,2,32,8916 -6,2,2,33,8043 -6,2,2,34,8711 -6,2,2,35,8914 -6,2,2,36,8498 -6,2,2,37,8044 -6,2,2,38,8278 -6,2,2,39,8045 -6,2,2,40,8051 -6,2,2,41,8046 -6,2,2,42,8917 -6,2,2,43,8709 -6,2,2,44,8712 -6,2,2,46,8494 -6,2,2,47,8499 -6,2,2,48,8915 -6,2,2,49,8279 -6,2,2,50,8495 -6,2,2,51,8052 -6,2,2,52,8496 -6,2,2,53,9111 -6,2,2,54,8274 -6,2,2,55,7817 -6,2,2,57,8275 -6,2,2,58,9114 -6,2,2,59,8276 -6,2,2,60,8280 -6,2,2,61,8047 -6,2,2,62,8053 -6,2,2,63,8048 -6,2,2,64,7818 -6,2,2,65,8049 -6,2,2,66,9112 -6,2,2,67,8710 -6,2,1,0,8281 -6,2,1,1,8497 -6,2,1,2,8054 -6,2,1,3,8277 -6,2,1,4,7819 -6,2,1,5,8050 -6,2,1,6,8282 -6,2,1,7,9113 -6,2,1,8,8055 -6,2,1,9,7820 -6,3,1,10,9303 -6,3,1,12,9201 -6,3,1,13,9393 -6,3,1,14,9200 -6,3,1,15,9394 -6,3,1,16,9199 -6,3,1,17,9392 -6,3,1,18,9304 -6,3,1,19,9391 -6,3,1,20,9198 -6,3,1,21,9390 -6,3,1,23,9197 -6,3,1,24,9389 -6,3,1,25,9196 -6,3,1,26,9395 -6,3,1,27,9195 -6,3,1,28,9388 -6,3,1,29,9194 -6,3,1,30,9387 -6,3,1,31,9302 -6,3,1,32,9386 -6,3,1,33,9301 -6,3,1,34,9385 -6,3,1,35,9300 -6,3,1,36,9396 -6,3,1,37,9299 -6,3,1,38,9384 -6,3,1,39,9298 -6,3,1,40,9383 -6,3,1,41,9297 -6,3,1,42,9474 -6,3,1,43,9296 -6,3,1,44,9475 -6,3,1,46,9295 -6,3,1,47,9476 -6,3,1,48,9397 -6,3,1,49,9477 -6,3,1,50,9294 -6,3,1,51,9478 -6,3,1,52,9293 -6,3,1,53,9479 -6,3,1,54,9292 -6,3,1,55,9480 -6,3,1,57,9291 -6,3,1,58,9481 -6,3,1,59,9290 -6,3,1,60,9482 -6,3,1,61,9398 -6,3,1,62,9483 -6,3,1,63,9289 -6,3,1,64,9484 -6,3,1,65,9656 -6,3,1,66,9485 -6,3,1,67,9655 -6,3,0,0,9487 -6,3,0,1,9657 -6,3,0,2,9486 -6,3,0,3,9658 -6,3,0,4,9562 -6,3,0,5,9659 -6,3,0,6,9563 -6,3,0,7,9660 -6,3,0,8,9564 -6,3,0,9,9210 -6,3,0,10,9488 -6,3,0,12,9654 -6,3,0,13,9565 -6,3,0,14,9653 -6,3,0,15,9566 -6,3,0,16,9652 -6,3,0,17,9567 -6,3,0,18,9651 -6,3,0,19,9568 -6,3,0,20,9650 -6,3,0,21,9569 -6,3,0,23,9489 -6,3,0,24,9570 -6,3,0,25,9649 -6,3,0,26,9571 -6,3,0,27,9648 -6,3,0,28,9572 -6,3,0,29,9647 -6,3,0,30,9573 -6,3,0,31,9739 -6,3,0,32,9574 -6,3,0,33,9809 -6,3,0,34,9575 -6,3,0,35,9490 -6,3,0,36,9730 -6,3,0,37,9810 -6,3,0,38,9731 -6,3,0,39,9811 -6,3,0,40,9576 -6,3,0,41,9812 -6,3,0,42,9732 -6,3,0,43,9813 -6,3,0,44,9733 -6,3,0,46,9814 -6,3,0,47,9734 -6,3,0,48,9815 -6,3,0,49,9735 -6,3,0,50,9816 -6,3,0,51,9736 -6,3,0,52,9956 -6,3,0,53,9577 -6,3,0,54,9957 -6,3,0,55,9737 -6,3,0,57,9890 -6,3,0,58,9738 -6,3,0,59,9817 -6,3,0,60,9885 -6,3,0,61,9740 -6,3,0,62,9886 -6,3,0,63,9661 -6,3,0,64,9887 -6,3,0,65,9578 -6,3,0,66,9888 -6,3,0,67,9889 -6,3,3,0,8702 -6,3,3,1,7312 -6,3,3,2,7277 -6,3,3,3,7313 -6,3,3,4,8701 -6,3,3,5,7311 -6,3,3,6,8700 -6,3,3,7,7310 -6,3,3,8,8699 -6,3,3,9,7309 -6,3,3,10,8698 -6,3,3,12,8703 -6,3,3,13,8697 -6,3,3,14,7561 -6,3,3,15,8696 -6,3,3,16,7308 -6,3,3,17,8907 -6,3,3,18,7307 -6,3,3,19,7275 -6,3,3,20,7559 -6,3,3,21,7274 -6,3,3,23,7560 -6,3,3,24,7272 -6,3,3,25,7305 -6,3,3,26,7269 -6,3,3,27,7306 -6,3,3,28,7543 -6,3,3,29,7558 -6,3,3,30,8908 -6,3,3,31,7557 -6,3,3,32,7542 -6,3,3,33,7802 -6,3,3,34,7540 -6,3,3,35,7303 -6,3,3,36,7537 -6,3,3,37,7304 -6,3,3,38,7535 -6,3,3,39,7556 -6,3,3,40,8906 -6,3,3,41,8909 -6,3,3,42,8905 -6,3,3,43,7555 -6,3,3,44,8904 -6,3,3,46,7800 -6,3,3,47,8903 -6,3,3,48,7801 -6,3,3,49,8902 -6,3,3,50,7301 -6,3,3,51,8901 -6,3,3,52,7553 -6,3,3,53,8900 -6,3,3,54,8910 -6,3,3,55,8899 -6,3,3,57,7554 -6,3,3,58,7534 -6,3,3,59,7799 -6,3,3,60,9106 -6,3,3,61,7798 -6,3,3,62,7532 -6,3,3,63,8036 -6,3,3,64,7529 -6,3,3,65,7551 -6,3,3,66,7527 -6,3,3,67,8911 -6,3,2,0,7526 -6,3,2,1,7552 -6,3,2,2,7524 -6,3,2,3,7797 -6,3,2,4,9107 -6,3,2,5,7796 -6,3,2,6,7533 -6,3,2,7,8034 -6,3,2,8,7531 -6,3,2,9,7550 -6,3,2,10,7530 -6,3,2,12,7549 -6,3,2,13,7528 -6,3,2,14,7794 -6,3,2,15,7525 -6,3,2,16,7795 -6,3,2,17,9108 -6,3,2,18,8033 -6,3,2,19,9105 -6,3,2,20,7548 -6,3,2,21,9104 -6,3,2,23,7547 -6,3,2,24,9103 -6,3,2,25,7792 -6,3,2,26,9102 -6,3,2,27,7793 -6,3,2,28,9101 -6,3,2,29,9109 -6,3,2,30,9100 -6,3,2,31,8031 -6,3,2,32,9099 -6,3,2,33,7546 -6,3,2,34,9098 -6,3,2,35,7791 -6,3,2,36,9097 -6,3,2,37,7790 -6,3,2,38,7786 -6,3,2,39,9110 -6,3,2,40,7784 -6,3,2,41,8028 -6,3,2,42,7783 -6,3,2,43,7545 -6,3,2,44,7781 -6,3,2,46,7789 -6,3,2,47,9205 -6,3,2,48,7788 -6,3,2,49,7778 -6,3,2,50,7544 -6,3,2,51,7776 -6,3,2,52,7541 -6,3,2,53,7775 -6,3,2,54,7539 -6,3,2,55,7787 -6,3,2,57,7538 -6,3,2,58,7785 -6,3,2,59,7536 -6,3,2,60,9206 -6,3,2,61,7282 -6,3,2,62,7782 -6,3,2,63,7280 -6,3,2,64,7780 -6,3,2,65,9209 -6,3,2,66,7779 -6,3,2,67,9204 -6,3,1,0,7777 -6,3,1,1,9207 -6,3,1,2,8026 -6,3,1,3,9203 -6,3,1,4,8025 -6,3,1,5,9202 -6,3,1,6,8023 -6,3,1,7,9208 -6,3,1,8,8020 -6,3,1,9,8018 -1,0,1,10,7774 -1,0,1,12,8010 -1,0,1,13,8005 -1,0,1,14,8017 -1,0,1,15,8006 -1,0,1,16,8012 -1,0,1,17,8007 -1,0,1,18,8021 -1,0,1,19,8008 -1,0,1,20,8015 -1,0,1,21,8004 -1,0,1,23,8022 -1,0,1,24,8011 -1,0,1,25,8024 -1,0,1,26,8002 -1,0,1,27,8013 -1,0,1,28,8236 -1,0,1,29,8027 -1,0,1,30,8238 -1,0,1,31,8014 -1,0,1,32,8009 -1,0,1,33,8029 -1,0,1,34,8241 -1,0,1,35,8030 -1,0,1,36,7764 -1,0,1,37,8016 -1,0,1,38,7766 -1,0,1,39,8032 -1,0,1,40,8243 -1,0,1,41,8019 -1,0,1,42,7769 -1,0,1,43,8035 -1,0,1,44,7770 -1,0,1,46,8244 -1,0,1,47,7771 -1,0,1,48,8246 -1,0,1,49,8240 -1,0,1,50,8252 -1,0,1,51,8242 -1,0,1,52,8249 -1,0,1,53,7773 -1,0,1,54,8254 -1,0,1,55,8245 -1,0,1,57,8251 -1,0,1,58,8247 -1,0,1,59,8257 -1,0,1,60,7772 -1,0,1,61,8259 -1,0,1,62,6476 -1,0,1,63,8248 -1,0,1,64,8465 -1,0,1,65,8260 -1,0,1,66,8468 -1,0,1,67,8262 -1,0,0,0,7271 -1,0,0,1,8250 -1,0,0,2,8470 -1,0,0,3,8255 -1,0,0,4,8471 -1,0,0,5,8253 -1,0,0,6,7012 -1,0,0,7,8256 -1,0,0,8,8467 -1,0,0,9,8258 -1,0,0,10,7013 -1,0,0,12,8473 -1,0,0,13,6748 -1,0,0,14,8261 -1,0,0,15,8469 -1,0,0,16,8476 -1,0,0,17,7273 -1,0,0,18,7017 -1,0,0,19,8472 -1,0,0,20,8478 -1,0,0,21,8474 -1,0,0,23,8479 -1,0,0,24,7014 -1,0,0,25,8481 -1,0,0,26,7015 -1,0,0,27,8475 -1,0,0,28,8685 -1,0,0,29,6752 -1,0,0,30,8688 -1,0,0,31,6751 -1,0,0,32,6750 -1,0,0,33,8477 -1,0,0,34,8690 -1,0,0,35,7016 -1,0,0,36,6749 -1,0,0,37,8480 -1,0,0,38,8691 -1,0,0,39,7278 -1,0,0,40,6747 -1,0,0,41,7019 -1,0,0,42,7276 -1,0,0,43,7018 -1,0,0,44,8689 -1,0,0,46,8693 -1,0,0,47,6753 -1,0,0,48,6755 -1,0,0,49,6754 -1,0,0,50,7281 -1,0,0,51,8692 -1,0,0,52,7022 -1,0,0,53,7279 -1,0,0,54,8694 -1,0,0,55,7020 -1,0,0,57,7021 -1,0,0,58,6758 -1,0,0,59,6756 -1,0,0,60,6757 -1,0,0,61,8695 -1,0,0,62,7284 -1,0,0,63,7023 -1,0,0,64,7025 -1,0,0,65,6760 -1,0,0,66,7024 -1,0,0,67,6759 -1,0,3,0,6452 -1,0,3,1,6454 -1,0,3,2,6720 -1,0,3,3,6450 -1,0,3,4,6722 -1,0,3,5,6457 -1,0,3,6,5869 -1,0,3,7,6453 -1,0,3,8,6723 -1,0,3,9,6455 -1,0,3,10,5577 -1,0,3,12,6456 -1,0,3,13,6161 -1,0,3,14,6725 -1,0,3,15,6721 -1,0,3,16,6459 -1,0,3,17,6451 -1,0,3,18,6728 -1,0,3,19,6724 -1,0,3,20,6458 -1,0,3,21,6448 -1,0,3,23,6730 -1,0,3,24,6160 -1,0,3,25,6731 -1,0,3,26,6726 -1,0,3,27,6460 -1,0,3,28,5872 -1,0,3,29,6727 -1,0,3,30,6158 -1,0,3,31,6461 -1,0,3,32,6989 -1,0,3,33,6729 -1,0,3,34,6449 -1,0,3,35,6183 -1,0,3,36,6991 -1,0,3,37,6732 -1,0,3,38,6447 -1,0,3,39,6733 -1,0,3,40,6992 -1,0,3,41,6462 -1,0,3,42,6994 -1,0,3,43,6734 -1,0,3,44,6446 -1,0,3,46,6463 -1,0,3,47,6990 -1,0,3,48,6185 -1,0,3,49,6445 -1,0,3,50,6997 -1,0,3,51,6993 -1,0,3,52,6164 -1,0,3,53,6444 -1,0,3,54,6999 -1,0,3,55,6442 -1,0,3,57,6162 -1,0,3,58,6995 -1,0,3,59,7000 -1,0,3,60,6996 -1,0,3,61,5578 -1,0,3,62,6440 -1,0,3,63,5871 -1,0,3,64,6443 -1,0,3,65,6998 -1,0,3,66,6717 -1,0,3,67,5873 -1,0,2,0,7254 -1,0,2,1,7001 -1,0,2,2,6736 -1,0,2,3,6735 -1,0,2,4,7255 -1,0,2,5,7003 -1,0,2,6,7257 -1,0,2,7,6465 -1,0,2,8,6464 -1,0,2,9,7002 -1,0,2,10,6186 -1,0,2,12,6187 -1,0,2,13,6737 -1,0,2,14,7260 -1,0,2,15,7256 -1,0,2,16,7262 -1,0,2,17,6738 -1,0,2,18,6466 -1,0,2,19,7258 -1,0,2,20,7004 -1,0,2,21,6467 -1,0,2,23,7263 -1,0,2,24,7259 -1,0,2,25,7005 -1,0,2,26,6188 -1,0,2,27,6740 -1,0,2,28,7265 -1,0,2,29,7261 -1,0,2,30,7006 -1,0,2,31,6739 -1,0,2,32,7510 -1,0,2,33,7264 -1,0,2,34,7007 -1,0,2,35,6468 -1,0,2,36,7511 -1,0,2,37,7266 -1,0,2,38,6742 -1,0,2,39,7267 -1,0,2,40,7513 -1,0,2,41,5274 -1,0,2,42,7516 -1,0,2,43,5273 -1,0,2,44,6741 -1,0,2,46,5272 -1,0,2,47,7512 -1,0,2,48,7268 -1,0,2,49,6470 -1,0,2,50,7518 -1,0,2,51,7514 -1,0,2,52,7009 -1,0,2,53,7270 -1,0,2,54,7519 -1,0,2,55,7515 -1,0,2,57,7521 -1,0,2,58,7011 -1,0,2,59,7008 -1,0,2,60,7517 -1,0,2,61,6743 -1,0,2,62,7010 -1,0,2,63,6744 -1,0,2,64,6745 -1,0,2,65,7520 -1,0,2,66,7759 -1,0,2,67,6473 -1,0,1,0,7760 -1,0,1,1,7522 -1,0,1,2,6746 -1,0,1,3,7767 -1,0,1,4,7762 -1,0,1,5,7523 -1,0,1,6,6475 -1,0,1,7,7768 -1,0,1,8,7765 -1,0,1,9,7763 -1,1,1,10,8003 -1,1,1,12,8000 -1,1,1,13,8228 -1,1,1,14,8230 -1,1,1,15,7983 -1,1,1,16,8233 -1,1,1,17,8226 -1,1,1,18,7228 -1,1,1,19,8229 -1,1,1,20,8235 -1,1,1,21,7745 -1,1,1,23,6969 -1,1,1,24,8231 -1,1,1,25,6968 -1,1,1,26,7744 -1,1,1,27,6703 -1,1,1,28,7499 -1,1,1,29,7998 -1,1,1,30,7985 -1,1,1,31,8232 -1,1,1,32,7747 -1,1,1,33,8234 -1,1,1,34,7746 -1,1,1,35,8237 -1,1,1,36,8454 -1,1,1,37,8239 -1,1,1,38,7986 -1,1,1,39,7997 -1,1,1,40,8455 -1,1,1,41,7995 -1,1,1,42,8457 -1,1,1,43,7992 -1,1,1,44,7980 -1,1,1,46,7990 -1,1,1,47,7742 -1,1,1,48,8220 -1,1,1,49,7743 -1,1,1,50,8460 -1,1,1,51,7498 -1,1,1,52,8462 -1,1,1,53,8456 -1,1,1,54,8463 -1,1,1,55,8458 -1,1,1,57,8222 -1,1,1,58,8459 -1,1,1,59,8225 -1,1,1,60,7495 -1,1,1,61,8227 -1,1,1,62,7496 -1,1,1,63,8219 -1,1,1,64,7741 -1,1,1,65,8217 -1,1,1,66,7740 -1,1,1,67,8461 -1,1,0,0,7494 -1,1,0,1,8464 -1,1,0,2,9182 -1,1,0,3,8466 -1,1,0,4,8675 -1,1,0,5,7987 -1,1,0,6,8677 -1,1,0,7,7989 -1,1,0,8,7493 -1,1,0,9,8216 -1,1,0,10,7738 -1,1,0,12,8218 -1,1,0,13,8214 -1,1,0,14,8221 -1,1,0,15,8212 -1,1,0,16,8682 -1,1,0,17,8211 -1,1,0,18,8680 -1,1,0,19,8678 -1,1,0,20,8683 -1,1,0,21,8679 -1,1,0,23,8223 -1,1,0,24,7739 -1,1,0,25,8224 -1,1,0,26,8215 -1,1,0,27,8452 -1,1,0,28,8213 -1,1,0,29,8449 -1,1,0,30,8210 -1,1,0,31,8681 -1,1,0,32,8438 -1,1,0,33,8684 -1,1,0,34,8436 -1,1,0,35,8686 -1,1,0,36,8887 -1,1,0,37,8687 -1,1,0,38,8889 -1,1,0,39,8447 -1,1,0,40,8892 -1,1,0,41,8446 -1,1,0,42,8433 -1,1,0,43,8444 -1,1,0,44,8886 -1,1,0,46,8441 -1,1,0,47,8676 -1,1,0,48,8439 -1,1,0,49,8890 -1,1,0,50,8894 -1,1,0,51,8674 -1,1,0,52,8895 -1,1,0,53,8453 -1,1,0,54,8897 -1,1,0,55,8451 -1,1,0,57,9094 -1,1,0,58,8891 -1,1,0,59,9096 -1,1,0,60,8893 -1,1,0,61,9095 -1,1,0,62,8672 -1,1,0,63,8896 -1,1,0,64,9091 -1,1,0,65,8898 -1,1,0,66,8673 -1,1,0,67,9093 -1,1,3,0,5866 -1,1,3,1,5868 -1,1,3,2,6423 -1,1,3,3,5860 -1,1,3,4,6145 -1,1,3,5,6718 -1,1,3,6,6144 -1,1,3,7,6437 -1,1,3,8,5859 -1,1,3,9,6159 -1,1,3,10,6981 -1,1,3,12,5863 -1,1,3,13,6983 -1,1,3,14,5861 -1,1,3,15,6978 -1,1,3,16,5858 -1,1,3,17,6976 -1,1,3,18,5865 -1,1,3,19,6715 -1,1,3,20,6150 -1,1,3,21,6979 -1,1,3,23,6984 -1,1,3,24,6980 -1,1,3,25,6151 -1,1,3,26,6716 -1,1,3,27,6142 -1,1,3,28,6982 -1,1,3,29,6986 -1,1,3,30,6985 -1,1,3,31,6429 -1,1,3,32,6719 -1,1,3,33,6436 -1,1,3,34,6713 -1,1,3,35,6157 -1,1,3,36,9054 -1,1,3,37,6987 -1,1,3,38,7239 -1,1,3,39,6156 -1,1,3,40,7241 -1,1,3,41,6988 -1,1,3,42,6714 -1,1,3,43,6434 -1,1,3,44,7244 -1,1,3,46,5575 -1,1,3,47,7246 -1,1,3,48,5572 -1,1,3,49,7981 -1,1,3,50,5570 -1,1,3,51,6975 -1,1,3,52,7753 -1,1,3,53,7242 -1,1,3,54,5569 -1,1,3,55,7243 -1,1,3,57,7247 -1,1,3,58,6710 -1,1,3,59,7249 -1,1,3,60,7245 -1,1,3,61,5566 -1,1,3,62,6709 -1,1,3,63,7252 -1,1,3,64,7248 -1,1,3,65,5864 -1,1,3,66,6707 -1,1,3,67,6149 -1,1,2,0,6435 -1,1,2,1,7250 -1,1,2,2,6433 -1,1,2,3,7251 -1,1,2,4,7497 -1,1,2,5,6148 -1,1,2,6,6706 -1,1,2,7,6426 -1,1,2,8,7500 -1,1,2,9,6432 -1,1,2,10,7502 -1,1,2,12,7253 -1,1,2,13,7503 -1,1,2,14,6154 -1,1,2,15,6430 -1,1,2,16,6155 -1,1,2,17,6428 -1,1,2,18,5870 -1,1,2,19,6438 -1,1,2,20,7505 -1,1,2,21,6711 -1,1,2,23,5862 -1,1,2,24,7501 -1,1,2,25,6147 -1,1,2,26,6712 -1,1,2,27,5568 -1,1,2,28,7504 -1,1,2,29,7508 -1,1,2,30,7506 -1,1,2,31,5571 -1,1,2,32,6972 -1,1,2,33,5573 -1,1,2,34,6974 -1,1,2,35,6146 -1,1,2,36,6973 -1,1,2,37,7507 -1,1,2,38,6708 -1,1,2,39,6424 -1,1,2,40,6977 -1,1,2,41,7509 -1,1,2,42,7749 -1,1,2,43,6431 -1,1,2,44,7751 -1,1,2,46,6441 -1,1,2,47,7752 -1,1,2,48,6153 -1,1,2,49,7233 -1,1,2,50,6152 -1,1,2,51,7231 -1,1,2,52,7754 -1,1,2,53,6705 -1,1,2,54,6439 -1,1,2,55,7750 -1,1,2,57,7757 -1,1,2,58,7748 -1,1,2,59,5270 -1,1,2,60,7755 -1,1,2,61,5271 -1,1,2,62,7756 -1,1,2,63,5867 -1,1,2,64,6970 -1,1,2,65,7996 -1,1,2,66,6971 -1,1,2,67,7999 -1,1,1,0,7230 -1,1,1,1,8001 -1,1,1,2,6704 -1,1,1,3,7994 -1,1,1,4,7991 -1,1,1,5,7758 -1,1,1,6,7988 -1,1,1,7,7761 -1,1,1,8,7993 -1,1,1,9,9181 -7,0,1,10,9798 -7,0,1,12,9720 -7,0,1,13,9941 -7,0,1,14,9639 -7,0,1,15,9871 -7,0,1,16,7984 -7,0,1,17,9942 -7,0,1,18,9468 -7,0,1,19,9872 -7,0,1,20,9799 -7,0,1,21,9873 -7,0,1,23,9943 -7,0,1,24,9874 -7,0,1,25,9721 -7,0,1,26,9875 -7,0,1,27,9640 -7,0,1,28,9945 -7,0,1,29,9556 -7,0,1,30,9944 -7,0,1,31,9469 -7,0,1,32,10011 -7,0,1,33,9379 -7,0,1,34,9946 -7,0,1,35,9287 -7,0,1,36,9876 -7,0,1,37,9193 -7,0,1,38,9801 -7,0,1,39,9800 -7,0,1,40,9723 -7,0,1,41,9722 -7,0,1,42,9948 -7,0,1,43,9641 -7,0,1,44,10007 -7,0,1,46,9557 -7,0,1,47,10008 -7,0,1,48,9470 -7,0,1,49,9878 -7,0,1,50,9380 -7,0,1,51,9803 -7,0,1,52,9288 -7,0,1,53,9725 -7,0,1,54,10009 -7,0,1,55,9644 -7,0,1,57,9642 -7,0,1,58,9560 -7,0,1,59,9558 -7,0,1,60,9473 -7,0,1,61,9471 -7,0,1,62,9949 -7,0,1,63,9381 -7,0,1,64,9879 -7,0,1,65,9947 -7,0,1,66,9804 -7,0,1,67,9877 -7,0,0,0,9726 -7,0,0,1,9802 -7,0,0,2,9645 -7,0,0,3,9724 -7,0,0,4,9561 -7,0,0,5,9643 -7,0,0,6,10069 -7,0,0,7,9559 -7,0,0,8,9950 -7,0,0,9,9472 -7,0,0,10,9880 -7,0,0,12,10070 -7,0,0,13,9805 -7,0,0,14,9806 -7,0,0,15,9727 -7,0,0,16,10010 -7,0,0,17,9646 -7,0,0,18,9728 -7,0,0,19,9951 -7,0,0,20,9952 -7,0,0,21,9881 -7,0,0,23,9807 -7,0,0,24,9882 -7,0,0,25,9729 -7,0,0,26,9953 -7,0,0,27,9954 -7,0,0,28,9883 -7,0,0,29,9884 -7,0,0,30,9808 -7,0,0,31,9955 -7,0,0,32,10014 -7,0,0,33,7982 -7,0,0,34,10015 -7,0,0,35,10012 -7,0,0,36,10016 -7,0,0,37,10013 -7,0,0,38,10126 -7,0,0,39,10017 -7,0,0,40,10019 -7,0,0,41,10018 -7,0,0,42,10020 -7,0,0,43,10127 -7,0,0,44,10071 -7,0,0,46,10128 -7,0,0,47,10072 -7,0,0,48,10075 -7,0,0,49,10073 -7,0,0,50,10076 -7,0,0,51,10074 -7,0,0,52,10077 -7,0,0,53,10235 -7,0,0,54,10078 -7,0,0,55,10236 -7,0,0,57,10079 -7,0,0,58,10237 -7,0,0,59,10129 -7,0,0,60,10238 -7,0,0,61,10130 -7,0,0,62,10239 -7,0,0,63,10131 -7,0,0,64,10175 -7,0,0,65,10132 -7,0,0,66,10176 -7,0,0,67,10177 -7,0,3,0,9071 -7,0,3,1,9069 -7,0,3,2,9060 -7,0,3,3,9072 -7,0,3,4,9062 -7,0,3,5,8864 -7,0,3,6,9063 -7,0,3,7,8863 -7,0,3,8,9065 -7,0,3,9,8655 -7,0,3,10,9057 -7,0,3,12,8656 -7,0,3,13,9462 -7,0,3,14,8440 -7,0,3,15,9463 -7,0,3,16,8866 -7,0,3,17,9055 -7,0,3,18,9464 -7,0,3,19,9053 -7,0,3,20,8865 -7,0,3,21,9056 -7,0,3,23,8657 -7,0,3,24,9058 -7,0,3,25,8658 -7,0,3,26,9068 -7,0,3,27,8442 -7,0,3,28,9059 -7,0,3,29,8867 -7,0,3,30,9061 -7,0,3,31,8868 -7,0,3,32,9064 -7,0,3,33,8660 -7,0,3,34,9066 -7,0,3,35,8659 -7,0,3,36,9067 -7,0,3,37,8443 -7,0,3,38,9070 -7,0,3,39,8869 -7,0,3,40,9550 -7,0,3,41,8870 -7,0,3,42,9551 -7,0,3,43,8662 -7,0,3,44,8859 -7,0,3,46,8661 -7,0,3,47,8860 -7,0,3,48,8445 -7,0,3,49,8652 -7,0,3,50,9552 -7,0,3,51,8651 -7,0,3,52,8872 -7,0,3,53,8435 -7,0,3,54,8871 -7,0,3,55,8861 -7,0,3,57,8663 -7,0,3,58,8862 -7,0,3,59,8664 -7,0,3,60,8654 -7,0,3,61,8448 -7,0,3,62,8653 -7,0,3,63,9073 -7,0,3,64,8437 -7,0,3,65,9076 -7,0,3,66,9280 -7,0,3,67,9074 -7,0,2,0,9281 -7,0,2,1,9075 -7,0,2,2,9635 -7,0,2,3,8874 -7,0,2,4,9186 -7,0,2,5,8875 -7,0,2,6,9282 -7,0,2,7,9636 -7,0,2,8,9187 -7,0,2,9,8873 -7,0,2,10,9188 -7,0,2,12,9637 -7,0,2,13,9078 -7,0,2,14,8876 -7,0,2,15,9077 -7,0,2,16,8665 -7,0,2,17,8877 -7,0,2,18,8668 -7,0,2,19,8878 -7,0,2,20,8666 -7,0,2,21,8670 -7,0,2,23,8667 -7,0,2,24,8669 -7,0,2,25,8450 -7,0,2,26,9079 -7,0,2,27,9465 -7,0,2,28,9080 -7,0,2,29,9375 -7,0,2,30,8880 -7,0,2,31,9283 -7,0,2,32,9716 -7,0,2,33,9189 -7,0,2,34,9717 -7,0,2,35,7222 -7,0,2,36,8879 -7,0,2,37,9553 -7,0,2,38,8671 -7,0,2,39,9718 -7,0,2,40,9554 -7,0,2,41,9466 -7,0,2,42,9467 -7,0,2,43,9376 -7,0,2,44,9377 -7,0,2,46,9284 -7,0,2,47,9285 -7,0,2,48,9190 -7,0,2,49,9191 -7,0,2,50,9713 -7,0,2,51,9555 -7,0,2,52,9081 -7,0,2,53,9378 -7,0,2,54,9082 -7,0,2,55,9286 -7,0,2,57,8882 -7,0,2,58,9192 -7,0,2,59,8881 -7,0,2,60,9795 -7,0,2,61,9084 -7,0,2,62,9086 -7,0,2,63,9083 -7,0,2,64,9085 -7,0,2,65,8883 -7,0,2,66,9087 -7,0,2,67,8884 -7,0,1,0,9088 -7,0,1,1,9796 -7,0,1,2,8885 -7,0,1,3,9797 -7,0,1,4,8888 -7,0,1,5,9719 -7,0,1,6,9089 -7,0,1,7,9638 -7,0,1,8,9090 -7,0,1,9,9092 -7,1,1,10,9940 -7,1,1,12,9939 -7,1,1,13,9929 -7,1,1,14,9938 -7,1,1,15,9928 -7,1,1,16,9937 -7,1,1,17,9927 -7,1,1,18,9936 -7,1,1,19,9926 -7,1,1,20,9935 -7,1,1,21,9925 -7,1,1,23,9934 -7,1,1,24,9854 -7,1,1,25,9933 -7,1,1,26,10004 -7,1,1,27,9932 -7,1,1,28,10005 -7,1,1,29,9931 -7,1,1,30,9995 -7,1,1,31,9930 -7,1,1,32,9994 -7,1,1,33,9996 -7,1,1,34,9993 -7,1,1,35,9997 -7,1,1,36,9992 -7,1,1,37,10006 -7,1,1,38,9991 -7,1,1,39,9998 -7,1,1,40,9990 -7,1,1,41,9999 -7,1,1,42,10057 -7,1,1,43,10000 -7,1,1,44,10059 -7,1,1,46,10001 -7,1,1,47,10061 -7,1,1,48,10002 -7,1,1,49,10063 -7,1,1,50,10003 -7,1,1,51,10064 -7,1,1,52,10058 -7,1,1,53,10065 -7,1,1,54,10060 -7,1,1,55,10056 -7,1,1,57,10062 -7,1,1,58,10066 -7,1,1,59,10067 -7,1,1,60,10055 -7,1,1,61,10068 -7,1,1,62,10113 -7,1,1,63,10054 -7,1,1,64,10114 -7,1,1,65,10053 -7,1,1,66,10115 -7,1,1,67,10052 -7,1,0,0,10106 -7,1,0,1,10051 -7,1,0,2,10156 -7,1,0,3,9989 -7,1,0,4,10157 -7,1,0,5,10116 -7,1,0,6,10158 -7,1,0,7,10117 -7,1,0,8,10159 -7,1,0,9,10118 -7,1,0,10,10160 -7,1,0,12,10119 -7,1,0,13,10161 -7,1,0,14,10107 -7,1,0,15,10162 -7,1,0,16,10108 -7,1,0,17,10163 -7,1,0,18,10109 -7,1,0,19,10164 -7,1,0,20,10110 -7,1,0,21,10123 -7,1,0,23,10111 -7,1,0,24,10165 -7,1,0,25,10112 -7,1,0,26,10168 -7,1,0,27,10124 -7,1,0,28,10169 -7,1,0,29,10120 -7,1,0,30,10170 -7,1,0,31,10121 -7,1,0,32,10197 -7,1,0,33,10122 -7,1,0,34,10199 -7,1,0,35,10125 -7,1,0,36,10201 -7,1,0,37,10166 -7,1,0,38,10203 -7,1,0,39,10167 -7,1,0,40,10205 -7,1,0,41,10198 -7,1,0,42,10206 -7,1,0,43,10200 -7,1,0,44,10171 -7,1,0,46,10202 -7,1,0,47,10172 -7,1,0,48,10204 -7,1,0,49,10209 -7,1,0,50,10207 -7,1,0,51,10173 -7,1,0,52,10208 -7,1,0,53,10212 -7,1,0,54,10210 -7,1,0,55,10228 -7,1,0,57,10174 -7,1,0,58,10231 -7,1,0,59,10211 -7,1,0,60,10232 -7,1,0,61,10196 -7,1,0,62,10233 -7,1,0,63,10229 -7,1,0,64,10234 -7,1,0,65,10230 -7,1,0,66,10213 -7,1,0,67,10214 -7,1,3,0,9179 -7,1,3,1,9461 -7,1,3,2,9460 -7,1,3,3,9178 -7,1,3,4,9455 -7,1,3,5,9177 -7,1,3,6,9454 -7,1,3,7,9273 -7,1,3,8,9453 -7,1,3,9,9272 -7,1,3,10,9452 -7,1,3,12,9271 -7,1,3,13,8852 -7,1,3,14,9270 -7,1,3,15,8644 -7,1,3,16,9365 -7,1,3,17,8643 -7,1,3,18,9364 -7,1,3,19,8427 -7,1,3,20,9363 -7,1,3,21,9180 -7,1,3,23,9362 -7,1,3,24,9547 -7,1,3,25,8429 -7,1,3,26,7238 -7,1,3,27,8645 -7,1,3,28,9548 -7,1,3,29,8646 -7,1,3,30,9542 -7,1,3,31,8854 -7,1,3,32,9541 -7,1,3,33,9549 -7,1,3,34,9540 -7,1,3,35,8853 -7,1,3,36,9539 -7,1,3,37,8856 -7,1,3,38,7236 -7,1,3,39,8855 -7,1,3,40,9369 -7,1,3,41,8647 -7,1,3,42,9459 -7,1,3,43,8648 -7,1,3,44,9546 -7,1,3,46,8432 -7,1,3,47,9630 -7,1,3,48,8858 -7,1,3,49,9631 -7,1,3,50,8857 -7,1,3,51,9629 -7,1,3,52,8649 -7,1,3,53,9632 -7,1,3,54,8650 -7,1,3,55,9545 -7,1,3,57,8434 -7,1,3,58,9626 -7,1,3,59,9047 -7,1,3,60,9625 -7,1,3,61,9048 -7,1,3,62,9624 -7,1,3,63,9633 -7,1,3,64,9623 -7,1,3,65,9634 -7,1,3,66,9458 -7,1,3,67,9049 -7,1,2,0,9368 -7,1,2,1,9050 -7,1,2,2,9628 -7,1,2,3,9052 -7,1,2,4,9544 -7,1,2,5,9051 -7,1,2,6,9457 -7,1,2,7,7964 -7,1,2,8,9367 -7,1,2,9,7957 -7,1,2,10,9627 -7,1,2,12,7956 -7,1,2,13,9711 -7,1,2,14,7973 -7,1,2,15,9712 -7,1,2,16,7974 -7,1,2,17,9714 -7,1,2,18,7976 -7,1,2,19,9707 -7,1,2,20,7979 -7,1,2,21,9706 -7,1,2,23,9715 -7,1,2,24,9705 -7,1,2,25,7972 -7,1,2,26,9704 -7,1,2,27,7975 -7,1,2,28,9543 -7,1,2,29,7977 -7,1,2,30,9456 -7,1,2,31,7978 -7,1,2,32,9366 -7,1,2,33,9371 -7,1,2,34,9274 -7,1,2,35,9372 -7,1,2,36,9275 -7,1,2,37,9373 -7,1,2,38,9276 -7,1,2,39,9279 -7,1,2,40,9277 -7,1,2,41,9184 -7,1,2,42,9183 -7,1,2,43,9185 -7,1,2,44,9792 -7,1,2,46,9374 -7,1,2,47,9793 -7,1,2,48,9865 -7,1,2,49,9278 -7,1,2,50,9864 -7,1,2,51,9370 -7,1,2,52,9794 -7,1,2,53,9791 -7,1,2,54,9863 -7,1,2,55,9790 -7,1,2,57,9862 -7,1,2,58,9789 -7,1,2,59,9861 -7,1,2,60,9788 -7,1,2,61,9860 -7,1,2,62,9787 -7,1,2,63,9859 -7,1,2,64,9786 -7,1,2,65,9858 -7,1,2,66,9785 -7,1,2,67,9857 -7,1,1,0,9784 -7,1,1,1,9856 -7,1,1,2,9783 -7,1,1,3,9855 -7,1,1,4,9782 -7,1,1,5,9869 -7,1,1,6,9868 -7,1,1,7,9870 -7,1,1,8,9866 -7,1,1,9,9867 diff --git a/tests/test_default_pipeline.py b/tests/test_default_pipeline.py index 2e38dd2..7364173 100644 --- a/tests/test_default_pipeline.py +++ b/tests/test_default_pipeline.py @@ -26,7 +26,6 @@ pad_params = PadParameters( pad_geometry_path=DEFAULT_MAP, pad_time_path=DEFAULT_MAP, - pad_electronics_path=DEFAULT_MAP, pad_scale_path=DEFAULT_MAP, ) get_params = GetParameters( diff --git a/tests/test_pad.py b/tests/test_pad.py index 3a6686b..8a048a9 100644 --- a/tests/test_pad.py +++ b/tests/test_pad.py @@ -7,7 +7,6 @@ def test_default_pads(): params = PadParameters( pad_geometry_path=DEFAULT_MAP, pad_time_path=DEFAULT_MAP, - pad_electronics_path=DEFAULT_MAP, pad_scale_path=DEFAULT_MAP, ) @@ -22,7 +21,3 @@ def test_default_pads(): assert pad0.gain == 1.0 assert pad0.time_offset == 0 assert pad0.scale == 1.0 - - reverse0 = default_pmap.get_pad_from_hardware(pad0.hardware) - assert reverse0 is not None - assert reverse0 == 0 From db0694826665afeec1a081f3fa4878f94e243ed8 Mon Sep 17 00:00:00 2001 From: gwm17 Date: Tue, 22 Apr 2025 13:24:47 -0400 Subject: [PATCH 5/5] Bump to full release --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3989115..536387c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "attpc_spyral" -version = "1.0.0rc0" +version = "1.0.0" description = "AT-TPC analysis pipeline" authors = [ {name = "gwm17", email = "gordonmccann215@gmail.com"},