Start mapping notes! Spheres and some lines

This commit is contained in:
544146
2023-09-17 01:57:55 +01:00
parent eb3fa7a6db
commit ed5dec4751
668 changed files with 171346 additions and 171205 deletions
+115 -13
View File
@@ -11,13 +11,101 @@ from drsxml2json import TRACK_ID_TO_PATH
from model.dancedash import DDBeatMap
from model.dancedash import DDBeatMapData
from model.dancedash import DDBeatMapInfoFile
from model.dancedash import DDLineNode
from model.dancedash import DDSphereNode
from model.dancedash import DRS_TO_DDS_LINE_NOTE_TYPE
from model.dancedash import DRS_TO_DDS_NOTE_TYPE
from model.dancedash import X_Y
from model.dancedash import X_Y_Z
from model.dancerush import DRS_DOWN
from model.dancerush import DRS_JUMP
from model.dancerush import DRSSongData
from model.dancerush import DRSSongDifficulty
from model.dancerush import DRSTrackPoint
from model.dancerush import DRSTrackStep
from util import get_m4a_and_duration
from util import get_song_cover_path
from util import ORDER_COUNT_PER_BEAT
def map_sphere_nodes(
difficulty: DRSSongDifficulty,
total_time_seconds: float,
bpm: int,
) -> list[DDSphereNode]:
spheres = []
for track_step in difficulty.track.sequence_data:
track_step: DRSTrackStep = track_step
# Long note get mapped elsewhere
if track_step.long_point or track_step.kind in (DRS_DOWN, DRS_JUMP):
continue
bps = bpm / 60
ticks_per_second = difficulty.track.info.end_tick / total_time_seconds
time = track_step.tick_info.end_tick / ticks_per_second
sphere = DDSphereNode(
noteOrder=round(bps * time * ORDER_COUNT_PER_BEAT),
time=time / total_time_seconds,
position=X_Y(x=track_step.position_info.to_dance_dash_x, y=0),
position2D=X_Y(x=0, y=0),
size=X_Y_Z(x=1, y=1, z=1),
noteType=DRS_TO_DDS_NOTE_TYPE[track_step.kind],
postionOffset=None,
isPlayAudio=False,
)
spheres.append(sphere)
return spheres
def map_line_nodes(
difficulty: DRSSongDifficulty,
total_time_seconds: float,
bpm: int,
) -> list[DDLineNode]:
lines = []
for line_group_id, track_step in enumerate(difficulty.track.sequence_data, start=1):
track_step: DRSTrackStep = track_step
if not track_step.long_point or track_step.kind in (DRS_DOWN, DRS_JUMP):
continue
bps = bpm / 60
ticks_per_second = difficulty.track.info.end_tick / total_time_seconds
# DANCERUSH defines the first line step as a point, with the first point being the start of the line.
# So we need to add a point at the start of the line for Dance Dash.
initial_track_point = DRSTrackPoint(
tick=track_step.tick_info.start_tick,
left_pos=track_step.position_info.left_pos,
right_pos=track_step.position_info.right_pos,
)
track_step.long_point.insert(0, initial_track_point)
for index_in_line, drs_track_point in enumerate(track_step.long_point):
drs_track_point: DRSTrackPoint = drs_track_point
if drs_track_point.left_end_pos or drs_track_point.right_end_pos:
continue # handle shuffles later
time = drs_track_point.tick / ticks_per_second
line = DDLineNode(
lineGroupId=line_group_id,
indexInLine=index_in_line,
isSliding=False,
noteOrder=round(bps * time * ORDER_COUNT_PER_BEAT),
time=time / total_time_seconds,
position=X_Y(x=drs_track_point.to_dance_dash_x, y=0),
position2D=X_Y(x=0, y=0),
size=X_Y_Z(x=1, y=1, z=1),
noteType=DRS_TO_DDS_LINE_NOTE_TYPE[track_step.kind],
postionOffset=None,
isPlayAudio=False,
)
lines.append(line)
return lines
def create_dd_tracks_from_DRSSongData(
drs_song_data: DRSSongData, target_dir: str,
) -> bool:
@@ -27,6 +115,20 @@ def create_dd_tracks_from_DRSSongData(
dd_bmp = int(drs_song_data.info.bpm_max / 100)
folder_path = TRACK_ID_TO_PATH.get(drs_song_data.song_id)
song_path, song_length = get_m4a_and_duration(folder_path)
if song_path and song_length:
shutil.copy(song_path, target_dir)
if song_cover_path := get_song_cover_path(folder_path):
shutil.copy(song_cover_path, target_dir)
if not song_path or not song_length:
print(
f'Could not find song path or song length for {drs_song_data.info.title_name}',
)
return False
song_paths = []
for attr, difficulty in drs_song_data.difficulties.with_attrs_as_str.items():
target_difficulty_path = os.path.join(
@@ -40,8 +142,18 @@ def create_dd_tracks_from_DRSSongData(
gridSize=X_Y(x=0, y=0),
planeSize=X_Y(x=0, y=0),
orderCountPerBeat=ORDER_COUNT_PER_BEAT,
sphereNodes=[], # TODO: DO THE MAPPING LOL.
lineNodes=[], # TODO: DO THE MAPPING LOL.
sphereNodes=map_sphere_nodes(
difficulty,
# 10 seconds because the songs are 10 seconds longer... ?
float(song_length) - 10,
dd_bmp,
),
lineNodes=map_line_nodes(
difficulty,
# 10 seconds because the songs are 10 seconds longer... ?
float(song_length) - 10,
dd_bmp,
),
effectNodes=[],
roadBlockNodes=[],
trapNodes=[],
@@ -60,14 +172,6 @@ def create_dd_tracks_from_DRSSongData(
json.dump(asdict(drs_beat_map), f, indent=4)
print(f'Created file: {target_difficulty_path}')
folder_path = TRACK_ID_TO_PATH.get(drs_song_data.song_id)
song_path, song_length = get_m4a_and_duration(folder_path)
if song_path and song_length:
shutil.copy(song_path, target_dir)
if song_cover_path := get_song_cover_path(folder_path):
shutil.copy(song_cover_path, target_dir)
drs_song_info_json = DDBeatMapInfoFile(
EditorVersion='1.3.2',
BeatMapId=drs_song_data.song_id,
@@ -101,9 +205,7 @@ def create_dd_tracks_from_DRSSongData(
) > 3 else None,
)
info_file_path = os.path.join(
target_dir, f'{drs_song_data.song_id}_info.json',
)
info_file_path = os.path.join(target_dir, 'info.json')
with open(info_file_path, 'w') as f:
json.dump(asdict(drs_song_info_json), f, indent=4)
print(f'Created file: {info_file_path}')
+5 -5
View File
@@ -10,9 +10,9 @@ from alive_progress import alive_bar
from loguru import logger
from model.dancedash import create_note_sphere
from model.dancedash import DD_LEFT
from model.dancedash import DD_RIGHT
from model.dancedash import DDBeatMap
from model.dancedash import LEFT_NOTE
from model.dancedash import RIGHT_NOTE
from util import crop_frame
from util import find_l
from util import find_r
@@ -83,7 +83,7 @@ def extract_spheres_from_drs_video(video_path: str, bpm: int): # noqa
frames_since_l -= 1
frames_since_r -= 1
note_order = int(
note_order = round(
bps * current_position_seconds *
ORDER_COUNT_PER_BEAT,
)
@@ -95,7 +95,7 @@ def extract_spheres_from_drs_video(video_path: str, bpm: int): # noqa
progress_percentage,
map_position_to_dd_x(left[0]),
note_order,
LEFT_NOTE,
DD_LEFT,
)
spheres.append(note)
@@ -106,7 +106,7 @@ def extract_spheres_from_drs_video(video_path: str, bpm: int): # noqa
progress_percentage,
map_position_to_dd_x(right[0]),
note_order,
RIGHT_NOTE,
DD_RIGHT,
)
spheres.append(note)
+20 -5
View File
@@ -3,9 +3,14 @@ from __future__ import annotations
from dataclasses import dataclass
from dataclasses import field
from model.dancerush import DRS_LEFT
from model.dancerush import DRS_RIGHT
LEFT_NOTE = 8
RIGHT_NOTE = 9
DD_LEFT = 8
DD_RIGHT = 9
DD_LINE_LEFT = 12
DD_LINE_RIGHT = 13
@dataclass
@@ -32,7 +37,17 @@ class DDLineNode:
noteType: int
postionOffset: X_Y_Z | None # Yes, postionOffset - not positionOffset.
isPlayAudio: bool
Ticks: int
DRS_TO_DDS_NOTE_TYPE = {
DRS_LEFT: DD_LEFT,
DRS_RIGHT: DD_RIGHT,
}
DRS_TO_DDS_LINE_NOTE_TYPE = {
DRS_LEFT: DD_LINE_LEFT,
DRS_RIGHT: DD_LINE_RIGHT,
}
@dataclass
@@ -42,7 +57,7 @@ class DDSphereNode:
position: X_Y
position2D: X_Y
size: X_Y_Z
noteType: int
noteType: DD_LEFT | DD_RIGHT
postionOffset: dict | None
isPlayAudio: bool
@@ -51,7 +66,7 @@ def create_note_sphere(
time: float,
position: 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9,
note_order: int,
note_type: LEFT_NOTE | RIGHT_NOTE,
note_type: DD_LEFT | DD_RIGHT,
):
return DDSphereNode(
noteOrder=note_order,
+18 -10
View File
@@ -5,6 +5,9 @@ from dataclasses import field
import xmltodict
MIN_POS = 0
MAX_POS = 65536
def safe_int(value):
try:
@@ -254,14 +257,18 @@ class DRSTrackStepPositionInfo:
left_pos: int
right_pos: int
@property
def to_dance_dash_x(self):
center_pos = (self.left_pos + self.right_pos) / 2
mapped_value = 1 + (center_pos / MAX_POS) * 8
return round(mapped_value)
@dataclass
class DRSTrackPoint:
class DRSTrackPoint(DRSTrackStepPositionInfo):
tick: int
left_pos: int
right_pos: int
left_end_pos: int
right_end_pos: int
left_end_pos: int | None = None
right_end_pos: int | None = None
@dataclass
@@ -272,12 +279,13 @@ class DRSTrackStepPlayerInfo:
DRS_LEFT = 1
DRS_RIGHT = 2
DRS_DOWN = 3
DRS_JUMP = 4
@dataclass
class DRSTrackStep:
tick_info: DRSTrackStepTickInfo
kind: DRS_LEFT | DRS_RIGHT | DRS_DOWN
kind: DRS_LEFT | DRS_RIGHT | DRS_DOWN | DRS_JUMP
position_info: DRSTrackStepPositionInfo
player_info: DRSTrackStepPlayerInfo
long_point: list[DRSTrackPoint] = field(default_factory=list)
@@ -339,16 +347,16 @@ class DRSTrackStep:
tick=int(point['tick']) if point.get('tick') else None,
left_pos=int(point['left_pos']) if point.get(
'left_pos',
) else None,
) is not None else None,
right_pos=int(point['right_pos']) if point.get(
'right_pos',
) else None,
) is not None else None,
left_end_pos=int(point['left_end_pos']) if point.get(
'left_end_pos',
) else None,
) is not None else None,
right_end_pos=int(point['right_end_pos']) if point.get(
'right_end_pos',
) else None,
) is not None else None,
) for point in data['long_point']
],
)
File diff suppressed because it is too large Load Diff
@@ -76,9 +76,9 @@
},
"long_point": [
{
"tick": 6720,
"left_pos": 8192,
"right_pos": 32768,
"tick": 6720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -99,9 +99,9 @@
},
"long_point": [
{
"tick": 8160,
"left_pos": 32768,
"right_pos": 57344,
"tick": 8160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -152,9 +152,9 @@
},
"long_point": [
{
"tick": 12480,
"left_pos": 8192,
"right_pos": 32768,
"tick": 12480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -175,9 +175,9 @@
},
"long_point": [
{
"tick": 13920,
"left_pos": 32768,
"right_pos": 57344,
"tick": 13920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -258,9 +258,9 @@
},
"long_point": [
{
"tick": 17760,
"left_pos": 8192,
"right_pos": 32768,
"tick": 17760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -296,9 +296,9 @@
},
"long_point": [
{
"tick": 19200,
"left_pos": 32768,
"right_pos": 57344,
"tick": 19200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -334,9 +334,9 @@
},
"long_point": [
{
"tick": 20640,
"left_pos": 8192,
"right_pos": 32768,
"tick": 20640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -372,9 +372,9 @@
},
"long_point": [
{
"tick": 22080,
"left_pos": 32768,
"right_pos": 57344,
"tick": 22080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -410,9 +410,9 @@
},
"long_point": [
{
"tick": 25920,
"left_pos": 8192,
"right_pos": 32768,
"tick": 25920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -433,9 +433,9 @@
},
"long_point": [
{
"tick": 25920,
"left_pos": 32768,
"right_pos": 57344,
"tick": 25920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -501,9 +501,9 @@
},
"long_point": [
{
"tick": 31200,
"left_pos": 32768,
"right_pos": 57344,
"tick": 31200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -584,9 +584,9 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 8192,
"right_pos": 32768,
"tick": 34080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -622,9 +622,9 @@
},
"long_point": [
{
"tick": 35520,
"left_pos": 32768,
"right_pos": 57344,
"tick": 35520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -645,9 +645,9 @@
},
"long_point": [
{
"tick": 36960,
"left_pos": 8192,
"right_pos": 32768,
"tick": 36960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -803,9 +803,9 @@
},
"long_point": [
{
"tick": 42720,
"left_pos": 8192,
"right_pos": 32768,
"tick": 42720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -886,9 +886,9 @@
},
"long_point": [
{
"tick": 45600,
"left_pos": 32768,
"right_pos": 57344,
"tick": 45600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -924,9 +924,9 @@
},
"long_point": [
{
"tick": 47040,
"left_pos": 8192,
"right_pos": 32768,
"tick": 47040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -947,9 +947,9 @@
},
"long_point": [
{
"tick": 48480,
"left_pos": 32768,
"right_pos": 57344,
"tick": 48480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1060,9 +1060,9 @@
},
"long_point": [
{
"tick": 53280,
"left_pos": 8192,
"right_pos": 32768,
"tick": 53280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1098,9 +1098,9 @@
},
"long_point": [
{
"tick": 56160,
"left_pos": 32768,
"right_pos": 57344,
"tick": 56160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1286,9 +1286,9 @@
},
"long_point": [
{
"tick": 64800,
"left_pos": 32768,
"right_pos": 57344,
"tick": 64800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1324,9 +1324,9 @@
},
"long_point": [
{
"tick": 67680,
"left_pos": 8192,
"right_pos": 32768,
"tick": 67680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1542,9 +1542,9 @@
},
"long_point": [
{
"tick": 80160,
"left_pos": 32768,
"right_pos": 57344,
"tick": 80160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1565,9 +1565,9 @@
},
"long_point": [
{
"tick": 80160,
"left_pos": 8192,
"right_pos": 32768,
"tick": 80160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1648,9 +1648,9 @@
},
"long_point": [
{
"tick": 83040,
"left_pos": 36864,
"right_pos": 61440,
"tick": 83040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1671,9 +1671,9 @@
},
"long_point": [
{
"tick": 83040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 83040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1694,9 +1694,9 @@
},
"long_point": [
{
"tick": 85920,
"left_pos": 16384,
"right_pos": 40960,
"tick": 85920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1717,9 +1717,9 @@
},
"long_point": [
{
"tick": 85920,
"left_pos": 24576,
"right_pos": 49152,
"tick": 85920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1740,9 +1740,9 @@
},
"long_point": [
{
"tick": 87120,
"left_pos": 8192,
"right_pos": 32768,
"tick": 87120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1778,9 +1778,9 @@
},
"long_point": [
{
"tick": 91680,
"left_pos": 32768,
"right_pos": 57344,
"tick": 91680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1801,9 +1801,9 @@
},
"long_point": [
{
"tick": 92880,
"left_pos": 8192,
"right_pos": 32768,
"tick": 92880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1839,9 +1839,9 @@
},
"long_point": [
{
"tick": 96000,
"left_pos": 8192,
"right_pos": 32768,
"tick": 96000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1862,9 +1862,9 @@
},
"long_point": [
{
"tick": 96000,
"left_pos": 32768,
"right_pos": 57344,
"tick": 96000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1930,9 +1930,9 @@
},
"long_point": [
{
"tick": 101280,
"left_pos": 32768,
"right_pos": 57344,
"tick": 101280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1968,9 +1968,9 @@
},
"long_point": [
{
"tick": 104160,
"left_pos": 8192,
"right_pos": 32768,
"tick": 104160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2006,9 +2006,9 @@
},
"long_point": [
{
"tick": 106560,
"left_pos": 32768,
"right_pos": 57344,
"tick": 106560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2029,9 +2029,9 @@
},
"long_point": [
{
"tick": 106560,
"left_pos": 8192,
"right_pos": 32768,
"tick": 106560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2097,9 +2097,9 @@
},
"long_point": [
{
"tick": 109440,
"left_pos": 12288,
"right_pos": 32768,
"tick": 109440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2120,9 +2120,9 @@
},
"long_point": [
{
"tick": 110880,
"left_pos": 32768,
"right_pos": 53248,
"tick": 110880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2143,9 +2143,9 @@
},
"long_point": [
{
"tick": 112800,
"left_pos": 8192,
"right_pos": 32768,
"tick": 112800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2181,9 +2181,9 @@
},
"long_point": [
{
"tick": 115680,
"left_pos": 32768,
"right_pos": 57344,
"tick": 115680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2219,9 +2219,9 @@
},
"long_point": [
{
"tick": 118080,
"left_pos": 32768,
"right_pos": 57344,
"tick": 118080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2242,9 +2242,9 @@
},
"long_point": [
{
"tick": 118080,
"left_pos": 8192,
"right_pos": 32768,
"tick": 118080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2310,9 +2310,9 @@
},
"long_point": [
{
"tick": 120960,
"left_pos": 32768,
"right_pos": 57344,
"tick": 120960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2348,9 +2348,9 @@
},
"long_point": [
{
"tick": 122400,
"left_pos": 16384,
"right_pos": 40960,
"tick": 122400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2431,9 +2431,9 @@
},
"long_point": [
{
"tick": 125280,
"left_pos": 8192,
"right_pos": 32768,
"tick": 125280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2469,9 +2469,9 @@
},
"long_point": [
{
"tick": 126720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 126720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2492,9 +2492,9 @@
},
"long_point": [
{
"tick": 128160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 128160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2515,9 +2515,9 @@
},
"long_point": [
{
"tick": 129600,
"left_pos": 36864,
"right_pos": 61440,
"tick": 129600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2538,9 +2538,9 @@
},
"long_point": [
{
"tick": 131040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 131040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2561,9 +2561,9 @@
},
"long_point": [
{
"tick": 133920,
"left_pos": 32768,
"right_pos": 57344,
"tick": 133920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2584,9 +2584,9 @@
},
"long_point": [
{
"tick": 133920,
"left_pos": 8192,
"right_pos": 32768,
"tick": 133920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2607,9 +2607,9 @@
},
"long_point": [
{
"tick": 135360,
"left_pos": 36864,
"right_pos": 61440,
"tick": 135360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2645,9 +2645,9 @@
},
"long_point": [
{
"tick": 136800,
"left_pos": 4096,
"right_pos": 28672,
"tick": 136800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2683,9 +2683,9 @@
},
"long_point": [
{
"tick": 138240,
"left_pos": 4096,
"right_pos": 28672,
"tick": 138240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2706,9 +2706,9 @@
},
"long_point": [
{
"tick": 138240,
"left_pos": 36864,
"right_pos": 61440,
"tick": 138240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2729,9 +2729,9 @@
},
"long_point": [
{
"tick": 139680,
"left_pos": 16384,
"right_pos": 40960,
"tick": 139680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2752,9 +2752,9 @@
},
"long_point": [
{
"tick": 139680,
"left_pos": 24576,
"right_pos": 49152,
"tick": 139680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2820,9 +2820,9 @@
},
"long_point": [
{
"tick": 144000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 144000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2858,9 +2858,9 @@
},
"long_point": [
{
"tick": 145440,
"left_pos": 4096,
"right_pos": 28672,
"tick": 145440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2896,9 +2896,9 @@
},
"long_point": [
{
"tick": 146880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 146880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2934,9 +2934,9 @@
},
"long_point": [
{
"tick": 148320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 148320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3092,9 +3092,9 @@
},
"long_point": [
{
"tick": 155520,
"left_pos": 32768,
"right_pos": 53248,
"tick": 155520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3115,9 +3115,9 @@
},
"long_point": [
{
"tick": 156960,
"left_pos": 12288,
"right_pos": 32768,
"tick": 156960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3138,9 +3138,9 @@
},
"long_point": [
{
"tick": 158400,
"left_pos": 32768,
"right_pos": 53248,
"tick": 158400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3161,9 +3161,9 @@
},
"long_point": [
{
"tick": 159840,
"left_pos": 12288,
"right_pos": 32768,
"tick": 159840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3184,9 +3184,9 @@
},
"long_point": [
{
"tick": 161280,
"left_pos": 4096,
"right_pos": 28672,
"tick": 161280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3207,9 +3207,9 @@
},
"long_point": [
{
"tick": 161280,
"left_pos": 36864,
"right_pos": 61440,
"tick": 161280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3320,9 +3320,9 @@
},
"long_point": [
{
"tick": 168480,
"left_pos": 8192,
"right_pos": 32768,
"tick": 168480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3388,9 +3388,9 @@
},
"long_point": [
{
"tick": 171360,
"left_pos": 32768,
"right_pos": 57344,
"tick": 171360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3411,9 +3411,9 @@
},
"long_point": [
{
"tick": 172800,
"left_pos": 8192,
"right_pos": 32768,
"tick": 172800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3434,9 +3434,9 @@
},
"long_point": [
{
"tick": 174240,
"left_pos": 32768,
"right_pos": 57344,
"tick": 174240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3652,9 +3652,9 @@
},
"long_point": [
{
"tick": 182880,
"left_pos": 8192,
"right_pos": 32768,
"tick": 182880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3690,9 +3690,9 @@
},
"long_point": [
{
"tick": 184800,
"left_pos": 36864,
"right_pos": 61440,
"tick": 184800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3728,9 +3728,9 @@
},
"long_point": [
{
"tick": 187680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 187680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3766,9 +3766,9 @@
},
"long_point": [
{
"tick": 190080,
"left_pos": 32768,
"right_pos": 57344,
"tick": 190080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3789,9 +3789,9 @@
},
"long_point": [
{
"tick": 191520,
"left_pos": 8192,
"right_pos": 32768,
"tick": 191520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3962,9 +3962,9 @@
},
"long_point": [
{
"tick": 201600,
"left_pos": 32768,
"right_pos": 57344,
"tick": 201600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4000,9 +4000,9 @@
},
"long_point": [
{
"tick": 203040,
"left_pos": 8192,
"right_pos": 32768,
"tick": 203040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4038,9 +4038,9 @@
},
"long_point": [
{
"tick": 204480,
"left_pos": 32768,
"right_pos": 53248,
"tick": 204480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4061,9 +4061,9 @@
},
"long_point": [
{
"tick": 205920,
"left_pos": 12288,
"right_pos": 32768,
"tick": 205920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4084,9 +4084,9 @@
},
"long_point": [
{
"tick": 207360,
"left_pos": 36864,
"right_pos": 61440,
"tick": 207360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4107,9 +4107,9 @@
},
"long_point": [
{
"tick": 207360,
"left_pos": 4096,
"right_pos": 28672,
"tick": 207360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4130,9 +4130,9 @@
},
"long_point": [
{
"tick": 208800,
"left_pos": 24576,
"right_pos": 49152,
"tick": 208800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4153,9 +4153,9 @@
},
"long_point": [
{
"tick": 208800,
"left_pos": 16384,
"right_pos": 40960,
"tick": 208800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4266,9 +4266,9 @@
},
"long_point": [
{
"tick": 217920,
"left_pos": 4096,
"right_pos": 28672,
"tick": 217920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4289,9 +4289,9 @@
},
"long_point": [
{
"tick": 217920,
"left_pos": 36864,
"right_pos": 61440,
"tick": 217920,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -276,9 +276,9 @@
},
"long_point": [
{
"tick": 18240,
"left_pos": 24576,
"right_pos": 49152,
"tick": 18240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -314,9 +314,9 @@
},
"long_point": [
{
"tick": 20160,
"left_pos": 32768,
"right_pos": 57344,
"tick": 20160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -352,9 +352,9 @@
},
"long_point": [
{
"tick": 23040,
"left_pos": 8192,
"right_pos": 32768,
"tick": 23040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -435,9 +435,9 @@
},
"long_point": [
{
"tick": 25920,
"left_pos": 16384,
"right_pos": 40960,
"tick": 25920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -473,9 +473,9 @@
},
"long_point": [
{
"tick": 27840,
"left_pos": 8192,
"right_pos": 32768,
"tick": 27840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -511,9 +511,9 @@
},
"long_point": [
{
"tick": 30720,
"left_pos": 32768,
"right_pos": 57344,
"tick": 30720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -564,9 +564,9 @@
},
"long_point": [
{
"tick": 31680,
"left_pos": 16384,
"right_pos": 40960,
"tick": 31680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -692,9 +692,9 @@
},
"long_point": [
{
"tick": 36960,
"left_pos": 20480,
"right_pos": 45056,
"tick": 36960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -715,9 +715,9 @@
},
"long_point": [
{
"tick": 37920,
"left_pos": 20480,
"right_pos": 45056,
"tick": 37920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -858,9 +858,9 @@
},
"long_point": [
{
"tick": 44640,
"left_pos": 20480,
"right_pos": 45056,
"tick": 44640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -881,9 +881,9 @@
},
"long_point": [
{
"tick": 45600,
"left_pos": 20480,
"right_pos": 45056,
"tick": 45600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -934,9 +934,9 @@
},
"long_point": [
{
"tick": 48480,
"left_pos": 32768,
"right_pos": 57344,
"tick": 48480,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -957,9 +957,9 @@
},
"long_point": [
{
"tick": 49440,
"left_pos": 32768,
"right_pos": 57344,
"tick": 49440,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1010,9 +1010,9 @@
},
"long_point": [
{
"tick": 52320,
"left_pos": 24576,
"right_pos": 49152,
"tick": 52320,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1033,9 +1033,9 @@
},
"long_point": [
{
"tick": 53280,
"left_pos": 24576,
"right_pos": 49152,
"tick": 53280,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1086,9 +1086,9 @@
},
"long_point": [
{
"tick": 56160,
"left_pos": 8192,
"right_pos": 32768,
"tick": 56160,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1109,9 +1109,9 @@
},
"long_point": [
{
"tick": 57120,
"left_pos": 8192,
"right_pos": 32768,
"tick": 57120,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1162,9 +1162,9 @@
},
"long_point": [
{
"tick": 60000,
"left_pos": 16384,
"right_pos": 40960,
"tick": 60000,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1185,9 +1185,9 @@
},
"long_point": [
{
"tick": 60960,
"left_pos": 16384,
"right_pos": 40960,
"tick": 60960,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1238,9 +1238,9 @@
},
"long_point": [
{
"tick": 64320,
"left_pos": 28672,
"right_pos": 53248,
"tick": 64320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1276,9 +1276,9 @@
},
"long_point": [
{
"tick": 66240,
"left_pos": 12288,
"right_pos": 36864,
"tick": 66240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1389,9 +1389,9 @@
},
"long_point": [
{
"tick": 72000,
"left_pos": 12288,
"right_pos": 36864,
"tick": 72000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1427,9 +1427,9 @@
},
"long_point": [
{
"tick": 73920,
"left_pos": 28672,
"right_pos": 53248,
"tick": 73920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1465,9 +1465,9 @@
},
"long_point": [
{
"tick": 75360,
"left_pos": 12288,
"right_pos": 36864,
"tick": 75360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1488,9 +1488,9 @@
},
"long_point": [
{
"tick": 75360,
"left_pos": 28672,
"right_pos": 53248,
"tick": 75360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1511,9 +1511,9 @@
},
"long_point": [
{
"tick": 76320,
"left_pos": 36864,
"right_pos": 61440,
"tick": 76320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1534,9 +1534,9 @@
},
"long_point": [
{
"tick": 76320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 76320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1662,9 +1662,9 @@
},
"long_point": [
{
"tick": 83040,
"left_pos": 32768,
"right_pos": 57344,
"tick": 83040,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1685,9 +1685,9 @@
},
"long_point": [
{
"tick": 84000,
"left_pos": 8192,
"right_pos": 32768,
"tick": 84000,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1843,9 +1843,9 @@
},
"long_point": [
{
"tick": 90720,
"left_pos": 8192,
"right_pos": 32768,
"tick": 90720,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1866,9 +1866,9 @@
},
"long_point": [
{
"tick": 91680,
"left_pos": 32768,
"right_pos": 57344,
"tick": 91680,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1934,9 +1934,9 @@
},
"long_point": [
{
"tick": 94560,
"left_pos": 28672,
"right_pos": 53248,
"tick": 94560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1972,9 +1972,9 @@
},
"long_point": [
{
"tick": 95520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 95520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2010,9 +2010,9 @@
},
"long_point": [
{
"tick": 96480,
"left_pos": 12288,
"right_pos": 36864,
"tick": 96480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2048,9 +2048,9 @@
},
"long_point": [
{
"tick": 97440,
"left_pos": 4096,
"right_pos": 28672,
"tick": 97440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2086,9 +2086,9 @@
},
"long_point": [
{
"tick": 99360,
"left_pos": 20480,
"right_pos": 45056,
"tick": 99360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2184,9 +2184,9 @@
},
"long_point": [
{
"tick": 102240,
"left_pos": 12288,
"right_pos": 36864,
"tick": 102240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2222,9 +2222,9 @@
},
"long_point": [
{
"tick": 103200,
"left_pos": 4096,
"right_pos": 28672,
"tick": 103200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2260,9 +2260,9 @@
},
"long_point": [
{
"tick": 104160,
"left_pos": 28672,
"right_pos": 53248,
"tick": 104160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2298,9 +2298,9 @@
},
"long_point": [
{
"tick": 105120,
"left_pos": 36864,
"right_pos": 61440,
"tick": 105120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2336,9 +2336,9 @@
},
"long_point": [
{
"tick": 107040,
"left_pos": 20480,
"right_pos": 45056,
"tick": 107040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2554,16 +2554,16 @@
},
"long_point": [
{
"tick": 113760,
"left_pos": 16384,
"right_pos": 40960,
"tick": 113760,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 114720,
"left_pos": 16384,
"right_pos": 40960,
"tick": 114720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2614,16 +2614,16 @@
},
"long_point": [
{
"tick": 115680,
"left_pos": 24576,
"right_pos": 49152,
"tick": 115680,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 116640,
"left_pos": 24576,
"right_pos": 49152,
"tick": 116640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2674,16 +2674,16 @@
},
"long_point": [
{
"tick": 117600,
"left_pos": 8192,
"right_pos": 32768,
"tick": 117600,
"left_end_pos": 16384,
"right_end_pos": 40960
},
{
"tick": 118080,
"left_pos": 16384,
"right_pos": 40960,
"tick": 118080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2704,16 +2704,16 @@
},
"long_point": [
{
"tick": 118560,
"left_pos": 8192,
"right_pos": 32768,
"tick": 118560,
"left_end_pos": 16384,
"right_end_pos": 40960
},
{
"tick": 119040,
"left_pos": 16384,
"right_pos": 40960,
"tick": 119040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2734,16 +2734,16 @@
},
"long_point": [
{
"tick": 119520,
"left_pos": 8192,
"right_pos": 32768,
"tick": 119520,
"left_end_pos": 16384,
"right_end_pos": 40960
},
{
"tick": 120000,
"left_pos": 16384,
"right_pos": 40960,
"tick": 120000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2764,16 +2764,16 @@
},
"long_point": [
{
"tick": 120480,
"left_pos": 8192,
"right_pos": 32768,
"tick": 120480,
"left_end_pos": 16384,
"right_end_pos": 40960
},
{
"tick": 120960,
"left_pos": 16384,
"right_pos": 40960,
"tick": 120960,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -36,9 +36,9 @@
},
"long_point": [
{
"tick": 3840,
"left_pos": 36864,
"right_pos": 61440,
"tick": 3840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -74,9 +74,9 @@
},
"long_point": [
{
"tick": 5760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 5760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -232,9 +232,9 @@
},
"long_point": [
{
"tick": 11520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 11520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -270,9 +270,9 @@
},
"long_point": [
{
"tick": 13440,
"left_pos": 4096,
"right_pos": 28672,
"tick": 13440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -308,9 +308,9 @@
},
"long_point": [
{
"tick": 14400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 14400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -331,9 +331,9 @@
},
"long_point": [
{
"tick": 15360,
"left_pos": 4096,
"right_pos": 28672,
"tick": 15360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -564,9 +564,9 @@
},
"long_point": [
{
"tick": 21600,
"left_pos": 32768,
"right_pos": 57344,
"tick": 21600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -602,9 +602,9 @@
},
"long_point": [
{
"tick": 22560,
"left_pos": 8192,
"right_pos": 32768,
"tick": 22560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -700,16 +700,16 @@
},
"long_point": [
{
"tick": 25440,
"left_pos": 36864,
"right_pos": 61440,
"tick": 25440,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 25920,
"left_pos": 28672,
"right_pos": 53248,
"tick": 25920,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -730,16 +730,16 @@
},
"long_point": [
{
"tick": 26400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 26400,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 26880,
"left_pos": 28672,
"right_pos": 53248,
"tick": 26880,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -820,16 +820,16 @@
},
"long_point": [
{
"tick": 29280,
"left_pos": 4096,
"right_pos": 28672,
"tick": 29280,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 29760,
"left_pos": 12288,
"right_pos": 36864,
"tick": 29760,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -850,16 +850,16 @@
},
"long_point": [
{
"tick": 30240,
"left_pos": 4096,
"right_pos": 28672,
"tick": 30240,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 30720,
"left_pos": 12288,
"right_pos": 36864,
"tick": 30720,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -940,9 +940,9 @@
},
"long_point": [
{
"tick": 33120,
"left_pos": 36864,
"right_pos": 61440,
"tick": 33120,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -963,9 +963,9 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 34080,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -986,9 +986,9 @@
},
"long_point": [
{
"tick": 35040,
"left_pos": 36864,
"right_pos": 61440,
"tick": 35040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1024,9 +1024,9 @@
},
"long_point": [
{
"tick": 36000,
"left_pos": 4096,
"right_pos": 28672,
"tick": 36000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1062,16 +1062,16 @@
},
"long_point": [
{
"tick": 36960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 36960,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 37440,
"left_pos": 28672,
"right_pos": 53248,
"tick": 37440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1092,16 +1092,16 @@
},
"long_point": [
{
"tick": 37920,
"left_pos": 36864,
"right_pos": 61440,
"tick": 37920,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 38400,
"left_pos": 28672,
"right_pos": 53248,
"tick": 38400,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1197,9 +1197,9 @@
},
"long_point": [
{
"tick": 42240,
"left_pos": 4096,
"right_pos": 28672,
"tick": 42240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1235,9 +1235,9 @@
},
"long_point": [
{
"tick": 44160,
"left_pos": 36864,
"right_pos": 61440,
"tick": 44160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1333,9 +1333,9 @@
},
"long_point": [
{
"tick": 47520,
"left_pos": 8192,
"right_pos": 32768,
"tick": 47520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1356,9 +1356,9 @@
},
"long_point": [
{
"tick": 47520,
"left_pos": 32768,
"right_pos": 57344,
"tick": 47520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1379,9 +1379,9 @@
},
"long_point": [
{
"tick": 49920,
"left_pos": 36864,
"right_pos": 61440,
"tick": 49920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1417,9 +1417,9 @@
},
"long_point": [
{
"tick": 51840,
"left_pos": 4096,
"right_pos": 28672,
"tick": 51840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1515,9 +1515,9 @@
},
"long_point": [
{
"tick": 54240,
"left_pos": 8192,
"right_pos": 32768,
"tick": 54240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1538,9 +1538,9 @@
},
"long_point": [
{
"tick": 54240,
"left_pos": 32768,
"right_pos": 57344,
"tick": 54240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1591,9 +1591,9 @@
},
"long_point": [
{
"tick": 56640,
"left_pos": 36864,
"right_pos": 61440,
"tick": 56640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1614,9 +1614,9 @@
},
"long_point": [
{
"tick": 57600,
"left_pos": 4096,
"right_pos": 28672,
"tick": 57600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1637,9 +1637,9 @@
},
"long_point": [
{
"tick": 58560,
"left_pos": 36864,
"right_pos": 61440,
"tick": 58560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1660,9 +1660,9 @@
},
"long_point": [
{
"tick": 59520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 59520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1743,9 +1743,9 @@
},
"long_point": [
{
"tick": 61920,
"left_pos": 8192,
"right_pos": 32768,
"tick": 61920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1766,9 +1766,9 @@
},
"long_point": [
{
"tick": 61920,
"left_pos": 32768,
"right_pos": 57344,
"tick": 61920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1819,9 +1819,9 @@
},
"long_point": [
{
"tick": 64320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 64320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1842,9 +1842,9 @@
},
"long_point": [
{
"tick": 65280,
"left_pos": 36864,
"right_pos": 61440,
"tick": 65280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1865,9 +1865,9 @@
},
"long_point": [
{
"tick": 66240,
"left_pos": 4096,
"right_pos": 28672,
"tick": 66240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1888,9 +1888,9 @@
},
"long_point": [
{
"tick": 67200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 67200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2316,9 +2316,9 @@
},
"long_point": [
{
"tick": 84480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 84480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2339,9 +2339,9 @@
},
"long_point": [
{
"tick": 84480,
"left_pos": 4096,
"right_pos": 28672,
"tick": 84480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2497,9 +2497,9 @@
},
"long_point": [
{
"tick": 90720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 90720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2520,9 +2520,9 @@
},
"long_point": [
{
"tick": 91680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 91680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2603,16 +2603,16 @@
},
"long_point": [
{
"tick": 94560,
"left_pos": 36864,
"right_pos": 61440,
"tick": 94560,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 95040,
"left_pos": 28672,
"right_pos": 53248,
"tick": 95040,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2633,16 +2633,16 @@
},
"long_point": [
{
"tick": 95520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 95520,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 96000,
"left_pos": 28672,
"right_pos": 53248,
"tick": 96000,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2723,16 +2723,16 @@
},
"long_point": [
{
"tick": 98400,
"left_pos": 4096,
"right_pos": 28672,
"tick": 98400,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 98880,
"left_pos": 12288,
"right_pos": 36864,
"tick": 98880,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2753,16 +2753,16 @@
},
"long_point": [
{
"tick": 99360,
"left_pos": 4096,
"right_pos": 28672,
"tick": 99360,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 99840,
"left_pos": 12288,
"right_pos": 36864,
"tick": 99840,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2843,9 +2843,9 @@
},
"long_point": [
{
"tick": 102240,
"left_pos": 36864,
"right_pos": 61440,
"tick": 102240,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2866,9 +2866,9 @@
},
"long_point": [
{
"tick": 103200,
"left_pos": 4096,
"right_pos": 28672,
"tick": 103200,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2949,9 +2949,9 @@
},
"long_point": [
{
"tick": 106080,
"left_pos": 36864,
"right_pos": 61440,
"tick": 106080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2987,9 +2987,9 @@
},
"long_point": [
{
"tick": 107040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 107040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3115,9 +3115,9 @@
},
"long_point": [
{
"tick": 110400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 110400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3153,9 +3153,9 @@
},
"long_point": [
{
"tick": 111360,
"left_pos": 4096,
"right_pos": 28672,
"tick": 111360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3236,9 +3236,9 @@
},
"long_point": [
{
"tick": 113760,
"left_pos": 28672,
"right_pos": 53248,
"tick": 113760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3274,9 +3274,9 @@
},
"long_point": [
{
"tick": 114720,
"left_pos": 12288,
"right_pos": 36864,
"tick": 114720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3312,9 +3312,9 @@
},
"long_point": [
{
"tick": 115680,
"left_pos": 28672,
"right_pos": 53248,
"tick": 115680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3335,9 +3335,9 @@
},
"long_point": [
{
"tick": 116640,
"left_pos": 12288,
"right_pos": 36864,
"tick": 116640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3388,16 +3388,16 @@
},
"long_point": [
{
"tick": 117600,
"left_pos": 36864,
"right_pos": 61440,
"tick": 117600,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 118080,
"left_pos": 28672,
"right_pos": 53248,
"tick": 118080,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3418,9 +3418,9 @@
},
"long_point": [
{
"tick": 118560,
"left_pos": 36864,
"right_pos": 61440,
"tick": 118560,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3501,16 +3501,16 @@
},
"long_point": [
{
"tick": 121440,
"left_pos": 36864,
"right_pos": 61440,
"tick": 121440,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 121920,
"left_pos": 28672,
"right_pos": 53248,
"tick": 121920,
"left_end_pos": 36864,
"right_end_pos": 61440
}
@@ -3561,9 +3561,9 @@
},
"long_point": [
{
"tick": 124800,
"left_pos": 12288,
"right_pos": 36864,
"tick": 124800,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -36,9 +36,9 @@
},
"long_point": [
{
"tick": 3840,
"left_pos": 40960,
"right_pos": 61440,
"tick": 3840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -59,9 +59,9 @@
},
"long_point": [
{
"tick": 5760,
"left_pos": 4096,
"right_pos": 24576,
"tick": 5760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -82,9 +82,9 @@
},
"long_point": [
{
"tick": 7680,
"left_pos": 32768,
"right_pos": 53248,
"tick": 7680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -105,9 +105,9 @@
},
"long_point": [
{
"tick": 9600,
"left_pos": 0,
"right_pos": 20480,
"tick": 9600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -638,9 +638,9 @@
},
"long_point": [
{
"tick": 26400,
"left_pos": 28672,
"right_pos": 49152,
"tick": 26400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -706,9 +706,9 @@
},
"long_point": [
{
"tick": 28320,
"left_pos": 16384,
"right_pos": 36864,
"tick": 28320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -894,23 +894,23 @@
},
"long_point": [
{
"tick": 33120,
"left_pos": 16384,
"right_pos": 36864,
"tick": 33120,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 33600,
"left_pos": 0,
"right_pos": 20480,
"tick": 33600,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 34080,
"left_pos": 16384,
"right_pos": 36864,
"tick": 34080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -976,23 +976,23 @@
},
"long_point": [
{
"tick": 35040,
"left_pos": 28672,
"right_pos": 49152,
"tick": 35040,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 35520,
"left_pos": 45056,
"right_pos": 65536,
"tick": 35520,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 36000,
"left_pos": 28672,
"right_pos": 49152,
"tick": 36000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1058,9 +1058,9 @@
},
"long_point": [
{
"tick": 37440,
"left_pos": 12288,
"right_pos": 32768,
"tick": 37440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1096,9 +1096,9 @@
},
"long_point": [
{
"tick": 38400,
"left_pos": 32768,
"right_pos": 53248,
"tick": 38400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1134,9 +1134,9 @@
},
"long_point": [
{
"tick": 39360,
"left_pos": 12288,
"right_pos": 32768,
"tick": 39360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1172,9 +1172,9 @@
},
"long_point": [
{
"tick": 40320,
"left_pos": 32768,
"right_pos": 53248,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1210,9 +1210,9 @@
},
"long_point": [
{
"tick": 44160,
"left_pos": 8192,
"right_pos": 28672,
"tick": 44160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1338,9 +1338,9 @@
},
"long_point": [
{
"tick": 48000,
"left_pos": 32768,
"right_pos": 53248,
"tick": 48000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1706,9 +1706,9 @@
},
"long_point": [
{
"tick": 57600,
"left_pos": 32768,
"right_pos": 53248,
"tick": 57600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1774,9 +1774,9 @@
},
"long_point": [
{
"tick": 59520,
"left_pos": 12288,
"right_pos": 32768,
"tick": 59520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1842,9 +1842,9 @@
},
"long_point": [
{
"tick": 60000,
"left_pos": 0,
"right_pos": 20480,
"tick": 60000,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -1865,9 +1865,9 @@
},
"long_point": [
{
"tick": 60960,
"left_pos": 36864,
"right_pos": 57344,
"tick": 60960,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -1888,9 +1888,9 @@
},
"long_point": [
{
"tick": 61920,
"left_pos": 0,
"right_pos": 20480,
"tick": 61920,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -1911,9 +1911,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 36864,
"right_pos": 57344,
"tick": 62880,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -1934,9 +1934,9 @@
},
"long_point": [
{
"tick": 65280,
"left_pos": 32768,
"right_pos": 53248,
"tick": 65280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2002,9 +2002,9 @@
},
"long_point": [
{
"tick": 67200,
"left_pos": 12288,
"right_pos": 32768,
"tick": 67200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2160,16 +2160,16 @@
},
"long_point": [
{
"tick": 71280,
"left_pos": 40960,
"right_pos": 61440,
"tick": 71280,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 71520,
"left_pos": 32768,
"right_pos": 53248,
"tick": 71520,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -2190,16 +2190,16 @@
},
"long_point": [
{
"tick": 71760,
"left_pos": 40960,
"right_pos": 61440,
"tick": 71760,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 72000,
"left_pos": 32768,
"right_pos": 53248,
"tick": 72000,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -2220,16 +2220,16 @@
},
"long_point": [
{
"tick": 72240,
"left_pos": 40960,
"right_pos": 61440,
"tick": 72240,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 72480,
"left_pos": 32768,
"right_pos": 53248,
"tick": 72480,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -2250,16 +2250,16 @@
},
"long_point": [
{
"tick": 72720,
"left_pos": 40960,
"right_pos": 61440,
"tick": 72720,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 72960,
"left_pos": 32768,
"right_pos": 53248,
"tick": 72960,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -2280,16 +2280,16 @@
},
"long_point": [
{
"tick": 73200,
"left_pos": 40960,
"right_pos": 61440,
"tick": 73200,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 73440,
"left_pos": 32768,
"right_pos": 53248,
"tick": 73440,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -2310,16 +2310,16 @@
},
"long_point": [
{
"tick": 73680,
"left_pos": 40960,
"right_pos": 61440,
"tick": 73680,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 73920,
"left_pos": 32768,
"right_pos": 53248,
"tick": 73920,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -2340,16 +2340,16 @@
},
"long_point": [
{
"tick": 74160,
"left_pos": 40960,
"right_pos": 61440,
"tick": 74160,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 74400,
"left_pos": 32768,
"right_pos": 53248,
"tick": 74400,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -2370,16 +2370,16 @@
},
"long_point": [
{
"tick": 74640,
"left_pos": 40960,
"right_pos": 61440,
"tick": 74640,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 74880,
"left_pos": 32768,
"right_pos": 53248,
"tick": 74880,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -2520,16 +2520,16 @@
},
"long_point": [
{
"tick": 78960,
"left_pos": 4096,
"right_pos": 24576,
"tick": 78960,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 79200,
"left_pos": 12288,
"right_pos": 32768,
"tick": 79200,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -2550,16 +2550,16 @@
},
"long_point": [
{
"tick": 79440,
"left_pos": 4096,
"right_pos": 24576,
"tick": 79440,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 79680,
"left_pos": 12288,
"right_pos": 32768,
"tick": 79680,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -2580,16 +2580,16 @@
},
"long_point": [
{
"tick": 79920,
"left_pos": 4096,
"right_pos": 24576,
"tick": 79920,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 80160,
"left_pos": 12288,
"right_pos": 32768,
"tick": 80160,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -2610,16 +2610,16 @@
},
"long_point": [
{
"tick": 80400,
"left_pos": 4096,
"right_pos": 24576,
"tick": 80400,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 80640,
"left_pos": 12288,
"right_pos": 32768,
"tick": 80640,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -2640,16 +2640,16 @@
},
"long_point": [
{
"tick": 80880,
"left_pos": 4096,
"right_pos": 24576,
"tick": 80880,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 81120,
"left_pos": 12288,
"right_pos": 32768,
"tick": 81120,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -2670,16 +2670,16 @@
},
"long_point": [
{
"tick": 81360,
"left_pos": 4096,
"right_pos": 24576,
"tick": 81360,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 81600,
"left_pos": 12288,
"right_pos": 32768,
"tick": 81600,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -2700,16 +2700,16 @@
},
"long_point": [
{
"tick": 81840,
"left_pos": 4096,
"right_pos": 24576,
"tick": 81840,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 82080,
"left_pos": 12288,
"right_pos": 32768,
"tick": 82080,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -2730,16 +2730,16 @@
},
"long_point": [
{
"tick": 82320,
"left_pos": 4096,
"right_pos": 24576,
"tick": 82320,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 82560,
"left_pos": 12288,
"right_pos": 32768,
"tick": 82560,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -2880,9 +2880,9 @@
},
"long_point": [
{
"tick": 86880,
"left_pos": 4096,
"right_pos": 24576,
"tick": 86880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2903,9 +2903,9 @@
},
"long_point": [
{
"tick": 87840,
"left_pos": 32768,
"right_pos": 53248,
"tick": 87840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2926,9 +2926,9 @@
},
"long_point": [
{
"tick": 88800,
"left_pos": 8192,
"right_pos": 28672,
"tick": 88800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2949,9 +2949,9 @@
},
"long_point": [
{
"tick": 89760,
"left_pos": 36864,
"right_pos": 57344,
"tick": 89760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2972,9 +2972,9 @@
},
"long_point": [
{
"tick": 90720,
"left_pos": 8192,
"right_pos": 28672,
"tick": 90720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2995,9 +2995,9 @@
},
"long_point": [
{
"tick": 91680,
"left_pos": 45056,
"right_pos": 65536,
"tick": 91680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3078,9 +3078,9 @@
},
"long_point": [
{
"tick": 94560,
"left_pos": 16384,
"right_pos": 36864,
"tick": 94560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3101,9 +3101,9 @@
},
"long_point": [
{
"tick": 95520,
"left_pos": 16384,
"right_pos": 36864,
"tick": 95520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3124,9 +3124,9 @@
},
"long_point": [
{
"tick": 96480,
"left_pos": 20480,
"right_pos": 40960,
"tick": 96480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3147,9 +3147,9 @@
},
"long_point": [
{
"tick": 97440,
"left_pos": 20480,
"right_pos": 40960,
"tick": 97440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3500,16 +3500,16 @@
},
"long_point": [
{
"tick": 109680,
"left_pos": 40960,
"right_pos": 61440,
"tick": 109680,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 109920,
"left_pos": 32768,
"right_pos": 53248,
"tick": 109920,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -3530,16 +3530,16 @@
},
"long_point": [
{
"tick": 110160,
"left_pos": 40960,
"right_pos": 61440,
"tick": 110160,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 110400,
"left_pos": 32768,
"right_pos": 53248,
"tick": 110400,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -3560,16 +3560,16 @@
},
"long_point": [
{
"tick": 110640,
"left_pos": 40960,
"right_pos": 61440,
"tick": 110640,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 110880,
"left_pos": 32768,
"right_pos": 53248,
"tick": 110880,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -3590,16 +3590,16 @@
},
"long_point": [
{
"tick": 111120,
"left_pos": 40960,
"right_pos": 61440,
"tick": 111120,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 111360,
"left_pos": 32768,
"right_pos": 53248,
"tick": 111360,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -3620,9 +3620,9 @@
},
"long_point": [
{
"tick": 112800,
"left_pos": 12288,
"right_pos": 32768,
"tick": 112800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3688,16 +3688,16 @@
},
"long_point": [
{
"tick": 113520,
"left_pos": 4096,
"right_pos": 24576,
"tick": 113520,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 113760,
"left_pos": 12288,
"right_pos": 32768,
"tick": 113760,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -3718,16 +3718,16 @@
},
"long_point": [
{
"tick": 114000,
"left_pos": 4096,
"right_pos": 24576,
"tick": 114000,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 114240,
"left_pos": 12288,
"right_pos": 32768,
"tick": 114240,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -3748,16 +3748,16 @@
},
"long_point": [
{
"tick": 114480,
"left_pos": 4096,
"right_pos": 24576,
"tick": 114480,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 114720,
"left_pos": 12288,
"right_pos": 32768,
"tick": 114720,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -3778,16 +3778,16 @@
},
"long_point": [
{
"tick": 114960,
"left_pos": 4096,
"right_pos": 24576,
"tick": 114960,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 115200,
"left_pos": 12288,
"right_pos": 32768,
"tick": 115200,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -3808,9 +3808,9 @@
},
"long_point": [
{
"tick": 116640,
"left_pos": 32768,
"right_pos": 53248,
"tick": 116640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4056,9 +4056,9 @@
},
"long_point": [
{
"tick": 123840,
"left_pos": 8192,
"right_pos": 28672,
"tick": 123840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4079,9 +4079,9 @@
},
"long_point": [
{
"tick": 126720,
"left_pos": 36864,
"right_pos": 57344,
"tick": 126720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4102,9 +4102,9 @@
},
"long_point": [
{
"tick": 126720,
"left_pos": 8192,
"right_pos": 28672,
"tick": 126720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -36,9 +36,9 @@
},
"long_point": [
{
"tick": 2400,
"left_pos": 32768,
"right_pos": 57344,
"tick": 2400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -59,9 +59,9 @@
},
"long_point": [
{
"tick": 4320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 4320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -82,9 +82,9 @@
},
"long_point": [
{
"tick": 6240,
"left_pos": 32768,
"right_pos": 57344,
"tick": 6240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -105,9 +105,9 @@
},
"long_point": [
{
"tick": 8160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 8160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -533,9 +533,9 @@
},
"long_point": [
{
"tick": 25920,
"left_pos": 20480,
"right_pos": 45056,
"tick": 25920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -571,9 +571,9 @@
},
"long_point": [
{
"tick": 27840,
"left_pos": 20480,
"right_pos": 45056,
"tick": 27840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -669,9 +669,9 @@
},
"long_point": [
{
"tick": 33600,
"left_pos": 20480,
"right_pos": 45056,
"tick": 33600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -707,9 +707,9 @@
},
"long_point": [
{
"tick": 35520,
"left_pos": 20480,
"right_pos": 45056,
"tick": 35520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -745,9 +745,9 @@
},
"long_point": [
{
"tick": 37440,
"left_pos": 8192,
"right_pos": 32768,
"tick": 37440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -768,9 +768,9 @@
},
"long_point": [
{
"tick": 38400,
"left_pos": 32768,
"right_pos": 57344,
"tick": 38400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -791,9 +791,9 @@
},
"long_point": [
{
"tick": 39360,
"left_pos": 4096,
"right_pos": 28672,
"tick": 39360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -814,9 +814,9 @@
},
"long_point": [
{
"tick": 40320,
"left_pos": 36864,
"right_pos": 61440,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -837,9 +837,9 @@
},
"long_point": [
{
"tick": 44160,
"left_pos": 8192,
"right_pos": 32768,
"tick": 44160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -905,9 +905,9 @@
},
"long_point": [
{
"tick": 48000,
"left_pos": 32768,
"right_pos": 57344,
"tick": 48000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1123,9 +1123,9 @@
},
"long_point": [
{
"tick": 56640,
"left_pos": 20480,
"right_pos": 45056,
"tick": 56640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1161,9 +1161,9 @@
},
"long_point": [
{
"tick": 58560,
"left_pos": 20480,
"right_pos": 45056,
"tick": 58560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1199,9 +1199,9 @@
},
"long_point": [
{
"tick": 60000,
"left_pos": 4096,
"right_pos": 28672,
"tick": 60000,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1222,9 +1222,9 @@
},
"long_point": [
{
"tick": 60960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 60960,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1245,9 +1245,9 @@
},
"long_point": [
{
"tick": 61920,
"left_pos": 4096,
"right_pos": 28672,
"tick": 61920,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1268,9 +1268,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 62880,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1291,9 +1291,9 @@
},
"long_point": [
{
"tick": 64320,
"left_pos": 20480,
"right_pos": 45056,
"tick": 64320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1329,9 +1329,9 @@
},
"long_point": [
{
"tick": 66240,
"left_pos": 20480,
"right_pos": 45056,
"tick": 66240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1457,9 +1457,9 @@
},
"long_point": [
{
"tick": 71520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 71520,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1480,9 +1480,9 @@
},
"long_point": [
{
"tick": 72480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 72480,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1503,9 +1503,9 @@
},
"long_point": [
{
"tick": 73440,
"left_pos": 36864,
"right_pos": 61440,
"tick": 73440,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1526,9 +1526,9 @@
},
"long_point": [
{
"tick": 74400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 74400,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1609,9 +1609,9 @@
},
"long_point": [
{
"tick": 79200,
"left_pos": 4096,
"right_pos": 28672,
"tick": 79200,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1632,9 +1632,9 @@
},
"long_point": [
{
"tick": 80160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 80160,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1655,9 +1655,9 @@
},
"long_point": [
{
"tick": 81120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 81120,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1678,9 +1678,9 @@
},
"long_point": [
{
"tick": 82080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 82080,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1761,9 +1761,9 @@
},
"long_point": [
{
"tick": 86880,
"left_pos": 4096,
"right_pos": 28672,
"tick": 86880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1784,9 +1784,9 @@
},
"long_point": [
{
"tick": 87840,
"left_pos": 24576,
"right_pos": 49152,
"tick": 87840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1807,9 +1807,9 @@
},
"long_point": [
{
"tick": 88800,
"left_pos": 16384,
"right_pos": 40960,
"tick": 88800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1830,9 +1830,9 @@
},
"long_point": [
{
"tick": 89760,
"left_pos": 24576,
"right_pos": 49152,
"tick": 89760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1853,9 +1853,9 @@
},
"long_point": [
{
"tick": 90720,
"left_pos": 16384,
"right_pos": 40960,
"tick": 90720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1876,9 +1876,9 @@
},
"long_point": [
{
"tick": 91680,
"left_pos": 36864,
"right_pos": 61440,
"tick": 91680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1929,9 +1929,9 @@
},
"long_point": [
{
"tick": 94560,
"left_pos": 8192,
"right_pos": 32768,
"tick": 94560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1952,9 +1952,9 @@
},
"long_point": [
{
"tick": 95520,
"left_pos": 20480,
"right_pos": 45056,
"tick": 95520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1975,9 +1975,9 @@
},
"long_point": [
{
"tick": 96480,
"left_pos": 12288,
"right_pos": 36864,
"tick": 96480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1998,9 +1998,9 @@
},
"long_point": [
{
"tick": 97440,
"left_pos": 28672,
"right_pos": 53248,
"tick": 97440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2291,9 +2291,9 @@
},
"long_point": [
{
"tick": 109920,
"left_pos": 36864,
"right_pos": 61440,
"tick": 109920,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -2314,9 +2314,9 @@
},
"long_point": [
{
"tick": 110880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 110880,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -2337,9 +2337,9 @@
},
"long_point": [
{
"tick": 112320,
"left_pos": 20480,
"right_pos": 45056,
"tick": 112320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2375,9 +2375,9 @@
},
"long_point": [
{
"tick": 113760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 113760,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2398,9 +2398,9 @@
},
"long_point": [
{
"tick": 114720,
"left_pos": 4096,
"right_pos": 28672,
"tick": 114720,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2421,9 +2421,9 @@
},
"long_point": [
{
"tick": 116160,
"left_pos": 20480,
"right_pos": 45056,
"tick": 116160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2609,9 +2609,9 @@
},
"long_point": [
{
"tick": 123840,
"left_pos": 4096,
"right_pos": 28672,
"tick": 123840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2632,9 +2632,9 @@
},
"long_point": [
{
"tick": 126720,
"left_pos": 4096,
"right_pos": 28672,
"tick": 126720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2655,9 +2655,9 @@
},
"long_point": [
{
"tick": 126720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 126720,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
+103 -103
View File
@@ -36,9 +36,9 @@
},
"long_point": [
{
"tick": 2400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 2400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -59,9 +59,9 @@
},
"long_point": [
{
"tick": 2400,
"left_pos": 4096,
"right_pos": 28672,
"tick": 2400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -82,9 +82,9 @@
},
"long_point": [
{
"tick": 4320,
"left_pos": 28672,
"right_pos": 53248,
"tick": 4320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -105,9 +105,9 @@
},
"long_point": [
{
"tick": 4320,
"left_pos": 12288,
"right_pos": 36864,
"tick": 4320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -128,9 +128,9 @@
},
"long_point": [
{
"tick": 6240,
"left_pos": 4096,
"right_pos": 28672,
"tick": 6240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -151,9 +151,9 @@
},
"long_point": [
{
"tick": 6240,
"left_pos": 36864,
"right_pos": 61440,
"tick": 6240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -174,9 +174,9 @@
},
"long_point": [
{
"tick": 8160,
"left_pos": 28672,
"right_pos": 53248,
"tick": 8160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -197,9 +197,9 @@
},
"long_point": [
{
"tick": 8160,
"left_pos": 12288,
"right_pos": 36864,
"tick": 8160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1000,9 +1000,9 @@
},
"long_point": [
{
"tick": 25920,
"left_pos": 28672,
"right_pos": 53248,
"tick": 25920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1023,9 +1023,9 @@
},
"long_point": [
{
"left_pos": 12288,
"right_pos": 36864,
"tick": 25920,
"left_pos": 12288,
"right_pos": 36864,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1076,9 +1076,9 @@
},
"long_point": [
{
"tick": 27840,
"left_pos": 16384,
"right_pos": 40960,
"tick": 27840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1099,9 +1099,9 @@
},
"long_point": [
{
"tick": 27840,
"left_pos": 24576,
"right_pos": 49152,
"tick": 27840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1272,9 +1272,9 @@
},
"long_point": [
{
"tick": 33600,
"left_pos": 12288,
"right_pos": 36864,
"tick": 33600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1295,9 +1295,9 @@
},
"long_point": [
{
"tick": 33600,
"left_pos": 28672,
"right_pos": 53248,
"tick": 33600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1348,9 +1348,9 @@
},
"long_point": [
{
"tick": 35520,
"left_pos": 24576,
"right_pos": 49152,
"tick": 35520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1371,9 +1371,9 @@
},
"long_point": [
{
"tick": 35520,
"left_pos": 16384,
"right_pos": 40960,
"tick": 35520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1424,9 +1424,9 @@
},
"long_point": [
{
"tick": 37440,
"left_pos": 24576,
"right_pos": 49152,
"tick": 37440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1447,9 +1447,9 @@
},
"long_point": [
{
"tick": 37440,
"left_pos": 16384,
"right_pos": 40960,
"tick": 37440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1470,9 +1470,9 @@
},
"long_point": [
{
"tick": 38400,
"left_pos": 40960,
"right_pos": 65536,
"tick": 38400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1493,9 +1493,9 @@
},
"long_point": [
{
"tick": 38400,
"left_pos": 0,
"right_pos": 24576,
"tick": 38400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1516,9 +1516,9 @@
},
"long_point": [
{
"tick": 39360,
"left_pos": 12288,
"right_pos": 36864,
"tick": 39360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1539,9 +1539,9 @@
},
"long_point": [
{
"tick": 39360,
"left_pos": 28672,
"right_pos": 53248,
"tick": 39360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1562,9 +1562,9 @@
},
"long_point": [
{
"tick": 40320,
"left_pos": 0,
"right_pos": 24576,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1585,9 +1585,9 @@
},
"long_point": [
{
"tick": 40320,
"left_pos": 40960,
"right_pos": 65536,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1608,9 +1608,9 @@
},
"long_point": [
{
"tick": 44160,
"left_pos": 24576,
"right_pos": 49152,
"tick": 44160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1631,9 +1631,9 @@
},
"long_point": [
{
"tick": 44160,
"left_pos": 16384,
"right_pos": 40960,
"tick": 44160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1744,9 +1744,9 @@
},
"long_point": [
{
"tick": 48000,
"left_pos": 0,
"right_pos": 24576,
"tick": 48000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1767,9 +1767,9 @@
},
"long_point": [
{
"tick": 48000,
"left_pos": 40960,
"right_pos": 65536,
"tick": 48000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2180,9 +2180,9 @@
},
"long_point": [
{
"tick": 56640,
"left_pos": 28672,
"right_pos": 53248,
"tick": 56640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2203,9 +2203,9 @@
},
"long_point": [
{
"tick": 56640,
"left_pos": 12288,
"right_pos": 36864,
"tick": 56640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2256,9 +2256,9 @@
},
"long_point": [
{
"tick": 58560,
"left_pos": 16384,
"right_pos": 40960,
"tick": 58560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2279,9 +2279,9 @@
},
"long_point": [
{
"tick": 58560,
"left_pos": 24576,
"right_pos": 49152,
"tick": 58560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2332,9 +2332,9 @@
},
"long_point": [
{
"tick": 60000,
"left_pos": 12288,
"right_pos": 36864,
"tick": 60000,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2355,9 +2355,9 @@
},
"long_point": [
{
"tick": 60000,
"left_pos": 28672,
"right_pos": 53248,
"tick": 60000,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2378,9 +2378,9 @@
},
"long_point": [
{
"tick": 60960,
"left_pos": 0,
"right_pos": 24576,
"tick": 60960,
"left_end_pos": 8192,
"right_end_pos": 32768
}
@@ -2401,9 +2401,9 @@
},
"long_point": [
{
"tick": 60960,
"left_pos": 40960,
"right_pos": 65536,
"tick": 60960,
"left_end_pos": 32768,
"right_end_pos": 57344
}
@@ -2424,9 +2424,9 @@
},
"long_point": [
{
"tick": 61920,
"left_pos": 28672,
"right_pos": 53248,
"tick": 61920,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2447,9 +2447,9 @@
},
"long_point": [
{
"tick": 61920,
"left_pos": 12288,
"right_pos": 36864,
"tick": 61920,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2470,9 +2470,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 0,
"right_pos": 24576,
"tick": 62880,
"left_end_pos": 8192,
"right_end_pos": 32768
}
@@ -2493,9 +2493,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 40960,
"right_pos": 65536,
"tick": 62880,
"left_end_pos": 32768,
"right_end_pos": 57344
}
@@ -2516,9 +2516,9 @@
},
"long_point": [
{
"tick": 64320,
"left_pos": 12288,
"right_pos": 36864,
"tick": 64320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2539,9 +2539,9 @@
},
"long_point": [
{
"tick": 64320,
"left_pos": 28672,
"right_pos": 53248,
"tick": 64320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2592,9 +2592,9 @@
},
"long_point": [
{
"tick": 66240,
"left_pos": 24576,
"right_pos": 49152,
"tick": 66240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2615,9 +2615,9 @@
},
"long_point": [
{
"tick": 66240,
"left_pos": 16384,
"right_pos": 40960,
"tick": 66240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2818,9 +2818,9 @@
},
"long_point": [
{
"tick": 71520,
"left_pos": 40960,
"right_pos": 65536,
"tick": 71520,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2841,9 +2841,9 @@
},
"long_point": [
{
"left_pos": 0,
"right_pos": 24576,
"tick": 71520,
"left_pos": 0,
"right_pos": 24576,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2864,9 +2864,9 @@
},
"long_point": [
{
"tick": 72480,
"left_pos": 40960,
"right_pos": 65536,
"tick": 72480,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2887,9 +2887,9 @@
},
"long_point": [
{
"tick": 72480,
"left_pos": 0,
"right_pos": 24576,
"tick": 72480,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2910,9 +2910,9 @@
},
"long_point": [
{
"tick": 73440,
"left_pos": 40960,
"right_pos": 65536,
"tick": 73440,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2933,9 +2933,9 @@
},
"long_point": [
{
"tick": 73440,
"left_pos": 0,
"right_pos": 24576,
"tick": 73440,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2956,9 +2956,9 @@
},
"long_point": [
{
"tick": 74400,
"left_pos": 0,
"right_pos": 24576,
"tick": 74400,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2979,9 +2979,9 @@
},
"long_point": [
{
"tick": 74400,
"left_pos": 40960,
"right_pos": 65536,
"tick": 74400,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3122,9 +3122,9 @@
},
"long_point": [
{
"tick": 79200,
"left_pos": 4096,
"right_pos": 28672,
"tick": 79200,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -3145,9 +3145,9 @@
},
"long_point": [
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 79200,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -3168,9 +3168,9 @@
},
"long_point": [
{
"tick": 80160,
"left_pos": 36864,
"right_pos": 61440,
"tick": 80160,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -3191,9 +3191,9 @@
},
"long_point": [
{
"left_pos": 4096,
"right_pos": 28672,
"tick": 80160,
"left_pos": 4096,
"right_pos": 28672,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -3214,9 +3214,9 @@
},
"long_point": [
{
"tick": 81120,
"left_pos": 36864,
"right_pos": 61440,
"tick": 81120,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -3237,9 +3237,9 @@
},
"long_point": [
{
"tick": 81120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 81120,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -3260,9 +3260,9 @@
},
"long_point": [
{
"tick": 82080,
"left_pos": 36864,
"right_pos": 61440,
"tick": 82080,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -3283,9 +3283,9 @@
},
"long_point": [
{
"tick": 82080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 82080,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -3426,9 +3426,9 @@
},
"long_point": [
{
"tick": 86880,
"left_pos": 12288,
"right_pos": 36864,
"tick": 86880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3449,9 +3449,9 @@
},
"long_point": [
{
"tick": 86880,
"left_pos": 28672,
"right_pos": 53248,
"tick": 86880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3472,9 +3472,9 @@
},
"long_point": [
{
"tick": 87840,
"left_pos": 32768,
"right_pos": 57344,
"tick": 87840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3495,9 +3495,9 @@
},
"long_point": [
{
"tick": 87840,
"left_pos": 8192,
"right_pos": 32768,
"tick": 87840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3518,9 +3518,9 @@
},
"long_point": [
{
"tick": 88800,
"left_pos": 24576,
"right_pos": 49152,
"tick": 88800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3541,9 +3541,9 @@
},
"long_point": [
{
"tick": 88800,
"left_pos": 16384,
"right_pos": 40960,
"tick": 88800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3564,9 +3564,9 @@
},
"long_point": [
{
"tick": 89760,
"left_pos": 32768,
"right_pos": 57344,
"tick": 89760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3587,9 +3587,9 @@
},
"long_point": [
{
"tick": 89760,
"left_pos": 8192,
"right_pos": 32768,
"tick": 89760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3610,9 +3610,9 @@
},
"long_point": [
{
"tick": 90720,
"left_pos": 16384,
"right_pos": 40960,
"tick": 90720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3633,9 +3633,9 @@
},
"long_point": [
{
"tick": 90720,
"left_pos": 24576,
"right_pos": 49152,
"tick": 90720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3656,9 +3656,9 @@
},
"long_point": [
{
"tick": 91680,
"left_pos": 40960,
"right_pos": 65536,
"tick": 91680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3679,9 +3679,9 @@
},
"long_point": [
{
"tick": 91680,
"left_pos": 0,
"right_pos": 24576,
"tick": 91680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3762,9 +3762,9 @@
},
"long_point": [
{
"tick": 94560,
"left_pos": 20480,
"right_pos": 45056,
"tick": 94560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3785,9 +3785,9 @@
},
"long_point": [
{
"left_pos": 20480,
"right_pos": 45056,
"tick": 94560,
"left_pos": 20480,
"right_pos": 45056,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3808,9 +3808,9 @@
},
"long_point": [
{
"tick": 95520,
"left_pos": 16384,
"right_pos": 40960,
"tick": 95520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3831,9 +3831,9 @@
},
"long_point": [
{
"tick": 95520,
"left_pos": 24576,
"right_pos": 49152,
"tick": 95520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3854,9 +3854,9 @@
},
"long_point": [
{
"tick": 96480,
"left_pos": 20480,
"right_pos": 45056,
"tick": 96480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3877,9 +3877,9 @@
},
"long_point": [
{
"tick": 96480,
"left_pos": 20480,
"right_pos": 45056,
"tick": 96480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3900,9 +3900,9 @@
},
"long_point": [
{
"tick": 97440,
"left_pos": 32768,
"right_pos": 57344,
"tick": 97440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3923,9 +3923,9 @@
},
"long_point": [
{
"tick": 97440,
"left_pos": 8192,
"right_pos": 32768,
"tick": 97440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4486,9 +4486,9 @@
},
"long_point": [
{
"tick": 109920,
"left_pos": 40960,
"right_pos": 65536,
"tick": 109920,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -4509,9 +4509,9 @@
},
"long_point": [
{
"tick": 109920,
"left_pos": 0,
"right_pos": 24576,
"tick": 109920,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -4532,9 +4532,9 @@
},
"long_point": [
{
"tick": 110880,
"left_pos": 0,
"right_pos": 24576,
"tick": 110880,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -4555,9 +4555,9 @@
},
"long_point": [
{
"tick": 110880,
"left_pos": 40960,
"right_pos": 65536,
"tick": 110880,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -4578,9 +4578,9 @@
},
"long_point": [
{
"tick": 112320,
"left_pos": 16384,
"right_pos": 40960,
"tick": 112320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4601,9 +4601,9 @@
},
"long_point": [
{
"tick": 112320,
"left_pos": 24576,
"right_pos": 49152,
"tick": 112320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4654,9 +4654,9 @@
},
"long_point": [
{
"tick": 113760,
"left_pos": 32768,
"right_pos": 57344,
"tick": 113760,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4677,9 +4677,9 @@
},
"long_point": [
{
"tick": 113760,
"left_pos": 8192,
"right_pos": 32768,
"tick": 113760,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4700,9 +4700,9 @@
},
"long_point": [
{
"tick": 114720,
"left_pos": 32768,
"right_pos": 57344,
"tick": 114720,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4723,9 +4723,9 @@
},
"long_point": [
{
"tick": 114720,
"left_pos": 8192,
"right_pos": 32768,
"tick": 114720,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4746,9 +4746,9 @@
},
"long_point": [
{
"tick": 116160,
"left_pos": 24576,
"right_pos": 49152,
"tick": 116160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4769,9 +4769,9 @@
},
"long_point": [
{
"tick": 116160,
"left_pos": 16384,
"right_pos": 40960,
"tick": 116160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5092,9 +5092,9 @@
},
"long_point": [
{
"tick": 123840,
"left_pos": 28672,
"right_pos": 53248,
"tick": 123840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5115,9 +5115,9 @@
},
"long_point": [
{
"tick": 123840,
"left_pos": 12288,
"right_pos": 36864,
"tick": 123840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5138,9 +5138,9 @@
},
"long_point": [
{
"tick": 126720,
"left_pos": 28672,
"right_pos": 53248,
"tick": 126720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5161,9 +5161,9 @@
},
"long_point": [
{
"tick": 126720,
"left_pos": 0,
"right_pos": 24576,
"tick": 126720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5184,9 +5184,9 @@
},
"long_point": [
{
"tick": 126720,
"left_pos": 40960,
"right_pos": 65536,
"tick": 126720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5207,9 +5207,9 @@
},
"long_point": [
{
"tick": 126720,
"left_pos": 12288,
"right_pos": 36864,
"tick": 126720,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -36,9 +36,9 @@
},
"long_point": [
{
"tick": 2400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 2400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -59,9 +59,9 @@
},
"long_point": [
{
"tick": 3360,
"left_pos": 4096,
"right_pos": 28672,
"tick": 3360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -82,9 +82,9 @@
},
"long_point": [
{
"tick": 4320,
"left_pos": 36864,
"right_pos": 61440,
"tick": 4320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -105,9 +105,9 @@
},
"long_point": [
{
"tick": 5280,
"left_pos": 28672,
"right_pos": 53248,
"tick": 5280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -128,9 +128,9 @@
},
"long_point": [
{
"tick": 5280,
"left_pos": 12288,
"right_pos": 36864,
"tick": 5280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -151,9 +151,9 @@
},
"long_point": [
{
"tick": 6240,
"left_pos": 4096,
"right_pos": 28672,
"tick": 6240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -174,9 +174,9 @@
},
"long_point": [
{
"tick": 7200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 7200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -197,9 +197,9 @@
},
"long_point": [
{
"tick": 8160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 8160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -220,9 +220,9 @@
},
"long_point": [
{
"tick": 9120,
"left_pos": 12288,
"right_pos": 36864,
"tick": 9120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -243,9 +243,9 @@
},
"long_point": [
{
"tick": 9120,
"left_pos": 28672,
"right_pos": 53248,
"tick": 9120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -266,9 +266,9 @@
},
"long_point": [
{
"tick": 10080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 10080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -289,9 +289,9 @@
},
"long_point": [
{
"tick": 10080,
"left_pos": 36864,
"right_pos": 61440,
"tick": 10080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -312,9 +312,9 @@
},
"long_point": [
{
"tick": 11040,
"left_pos": 28672,
"right_pos": 53248,
"tick": 11040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -335,9 +335,9 @@
},
"long_point": [
{
"tick": 11040,
"left_pos": 12288,
"right_pos": 36864,
"tick": 11040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -358,9 +358,9 @@
},
"long_point": [
{
"tick": 12000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 12000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -381,9 +381,9 @@
},
"long_point": [
{
"tick": 12960,
"left_pos": 4096,
"right_pos": 28672,
"tick": 12960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -614,9 +614,9 @@
},
"long_point": [
{
"tick": 19680,
"left_pos": 36864,
"right_pos": 61440,
"tick": 19680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -652,9 +652,9 @@
},
"long_point": [
{
"tick": 20640,
"left_pos": 4096,
"right_pos": 28672,
"tick": 20640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -750,9 +750,9 @@
},
"long_point": [
{
"tick": 23520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 23520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -788,9 +788,9 @@
},
"long_point": [
{
"tick": 24480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 24480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1066,9 +1066,9 @@
},
"long_point": [
{
"tick": 33120,
"left_pos": 36864,
"right_pos": 61440,
"tick": 33120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1089,9 +1089,9 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 34080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1172,16 +1172,16 @@
},
"long_point": [
{
"tick": 36960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 36960,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 37440,
"left_pos": 28672,
"right_pos": 53248,
"tick": 37440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1202,16 +1202,16 @@
},
"long_point": [
{
"tick": 37920,
"left_pos": 36864,
"right_pos": 61440,
"tick": 37920,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 38400,
"left_pos": 28672,
"right_pos": 53248,
"tick": 38400,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1292,16 +1292,16 @@
},
"long_point": [
{
"tick": 40800,
"left_pos": 4096,
"right_pos": 28672,
"tick": 40800,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 41280,
"left_pos": 12288,
"right_pos": 36864,
"tick": 41280,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1322,16 +1322,16 @@
},
"long_point": [
{
"tick": 41760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 41760,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 42240,
"left_pos": 12288,
"right_pos": 36864,
"tick": 42240,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1412,9 +1412,9 @@
},
"long_point": [
{
"tick": 44640,
"left_pos": 36864,
"right_pos": 61440,
"tick": 44640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1450,9 +1450,9 @@
},
"long_point": [
{
"tick": 45600,
"left_pos": 4096,
"right_pos": 28672,
"tick": 45600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1578,9 +1578,9 @@
},
"long_point": [
{
"tick": 49920,
"left_pos": 4096,
"right_pos": 28672,
"tick": 49920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1706,9 +1706,9 @@
},
"long_point": [
{
"tick": 53760,
"left_pos": 36864,
"right_pos": 61440,
"tick": 53760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1834,9 +1834,9 @@
},
"long_point": [
{
"tick": 56160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 56160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1857,9 +1857,9 @@
},
"long_point": [
{
"tick": 56160,
"left_pos": 36864,
"right_pos": 61440,
"tick": 56160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1880,9 +1880,9 @@
},
"long_point": [
{
"tick": 57120,
"left_pos": 12288,
"right_pos": 36864,
"tick": 57120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1903,9 +1903,9 @@
},
"long_point": [
{
"tick": 57120,
"left_pos": 28672,
"right_pos": 53248,
"tick": 57120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1926,9 +1926,9 @@
},
"long_point": [
{
"tick": 58080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 58080,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1949,9 +1949,9 @@
},
"long_point": [
{
"tick": 59040,
"left_pos": 36864,
"right_pos": 61440,
"tick": 59040,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2122,9 +2122,9 @@
},
"long_point": [
{
"tick": 63840,
"left_pos": 4096,
"right_pos": 28672,
"tick": 63840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2145,9 +2145,9 @@
},
"long_point": [
{
"tick": 64800,
"left_pos": 36864,
"right_pos": 61440,
"tick": 64800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2168,9 +2168,9 @@
},
"long_point": [
{
"tick": 65760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 65760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2191,9 +2191,9 @@
},
"long_point": [
{
"tick": 66720,
"left_pos": 12288,
"right_pos": 36864,
"tick": 66720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2214,9 +2214,9 @@
},
"long_point": [
{
"tick": 66720,
"left_pos": 28672,
"right_pos": 53248,
"tick": 66720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2237,9 +2237,9 @@
},
"long_point": [
{
"tick": 67680,
"left_pos": 36864,
"right_pos": 61440,
"tick": 67680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2260,9 +2260,9 @@
},
"long_point": [
{
"tick": 68640,
"left_pos": 4096,
"right_pos": 28672,
"tick": 68640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2283,9 +2283,9 @@
},
"long_point": [
{
"tick": 69600,
"left_pos": 36864,
"right_pos": 61440,
"tick": 69600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2306,9 +2306,9 @@
},
"long_point": [
{
"tick": 70560,
"left_pos": 12288,
"right_pos": 36864,
"tick": 70560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2329,9 +2329,9 @@
},
"long_point": [
{
"tick": 70560,
"left_pos": 28672,
"right_pos": 53248,
"tick": 70560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2397,9 +2397,9 @@
},
"long_point": [
{
"tick": 72480,
"left_pos": 28672,
"right_pos": 53248,
"tick": 72480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2420,9 +2420,9 @@
},
"long_point": [
{
"tick": 72480,
"left_pos": 12288,
"right_pos": 36864,
"tick": 72480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2533,9 +2533,9 @@
},
"long_point": [
{
"tick": 76320,
"left_pos": 28672,
"right_pos": 53248,
"tick": 76320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2556,9 +2556,9 @@
},
"long_point": [
{
"tick": 76320,
"left_pos": 12288,
"right_pos": 36864,
"tick": 76320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2879,16 +2879,16 @@
},
"long_point": [
{
"tick": 86880,
"left_pos": 4096,
"right_pos": 28672,
"tick": 86880,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 87360,
"left_pos": 12288,
"right_pos": 36864,
"tick": 87360,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2909,16 +2909,16 @@
},
"long_point": [
{
"tick": 87840,
"left_pos": 4096,
"right_pos": 28672,
"tick": 87840,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 88320,
"left_pos": 12288,
"right_pos": 36864,
"tick": 88320,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2939,16 +2939,16 @@
},
"long_point": [
{
"tick": 88800,
"left_pos": 4096,
"right_pos": 28672,
"tick": 88800,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 89280,
"left_pos": 12288,
"right_pos": 36864,
"tick": 89280,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2969,16 +2969,16 @@
},
"long_point": [
{
"tick": 89760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 89760,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 90240,
"left_pos": 12288,
"right_pos": 36864,
"tick": 90240,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2999,9 +2999,9 @@
},
"long_point": [
{
"tick": 92160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 92160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3052,9 +3052,9 @@
},
"long_point": [
{
"tick": 92640,
"left_pos": 36864,
"right_pos": 61440,
"tick": 92640,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3075,9 +3075,9 @@
},
"long_point": [
{
"tick": 93600,
"left_pos": 4096,
"right_pos": 28672,
"tick": 93600,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3098,16 +3098,16 @@
},
"long_point": [
{
"tick": 94560,
"left_pos": 36864,
"right_pos": 61440,
"tick": 94560,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 95040,
"left_pos": 28672,
"right_pos": 53248,
"tick": 95040,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3128,16 +3128,16 @@
},
"long_point": [
{
"tick": 95520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 95520,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 96000,
"left_pos": 28672,
"right_pos": 53248,
"tick": 96000,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3158,16 +3158,16 @@
},
"long_point": [
{
"tick": 96480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 96480,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 96960,
"left_pos": 28672,
"right_pos": 53248,
"tick": 96960,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3188,16 +3188,16 @@
},
"long_point": [
{
"tick": 97440,
"left_pos": 36864,
"right_pos": 61440,
"tick": 97440,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 97920,
"left_pos": 28672,
"right_pos": 53248,
"tick": 97920,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3308,9 +3308,9 @@
},
"long_point": [
{
"tick": 100320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 100320,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3331,9 +3331,9 @@
},
"long_point": [
{
"tick": 101280,
"left_pos": 36864,
"right_pos": 61440,
"tick": 101280,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3414,9 +3414,9 @@
},
"long_point": [
{
"tick": 104160,
"left_pos": 36864,
"right_pos": 61440,
"tick": 104160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3452,9 +3452,9 @@
},
"long_point": [
{
"tick": 105120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 105120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3550,9 +3550,9 @@
},
"long_point": [
{
"tick": 108000,
"left_pos": 4096,
"right_pos": 28672,
"tick": 108000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3588,9 +3588,9 @@
},
"long_point": [
{
"tick": 108960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 108960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3626,9 +3626,9 @@
},
"long_point": [
{
"tick": 109920,
"left_pos": 4096,
"right_pos": 28672,
"tick": 109920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3649,9 +3649,9 @@
},
"long_point": [
{
"tick": 110400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 110400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3672,9 +3672,9 @@
},
"long_point": [
{
"tick": 110880,
"left_pos": 12288,
"right_pos": 36864,
"tick": 110880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3695,9 +3695,9 @@
},
"long_point": [
{
"tick": 111360,
"left_pos": 28672,
"right_pos": 53248,
"tick": 111360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3778,9 +3778,9 @@
},
"long_point": [
{
"tick": 113760,
"left_pos": 36864,
"right_pos": 61440,
"tick": 113760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3816,9 +3816,9 @@
},
"long_point": [
{
"tick": 114720,
"left_pos": 4096,
"right_pos": 28672,
"tick": 114720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3854,9 +3854,9 @@
},
"long_point": [
{
"tick": 115680,
"left_pos": 36864,
"right_pos": 61440,
"tick": 115680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3877,9 +3877,9 @@
},
"long_point": [
{
"tick": 115680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 115680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3900,9 +3900,9 @@
},
"long_point": [
{
"tick": 117120,
"left_pos": 28672,
"right_pos": 53248,
"tick": 117120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3923,9 +3923,9 @@
},
"long_point": [
{
"tick": 117120,
"left_pos": 12288,
"right_pos": 36864,
"tick": 117120,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -276,9 +276,9 @@
},
"long_point": [
{
"tick": 11520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 11520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -344,9 +344,9 @@
},
"long_point": [
{
"tick": 13440,
"left_pos": 4096,
"right_pos": 28672,
"tick": 13440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -472,9 +472,9 @@
},
"long_point": [
{
"tick": 16800,
"left_pos": 36864,
"right_pos": 61440,
"tick": 16800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -510,9 +510,9 @@
},
"long_point": [
{
"tick": 19200,
"left_pos": 8192,
"right_pos": 32768,
"tick": 19200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -563,9 +563,9 @@
},
"long_point": [
{
"tick": 21120,
"left_pos": 32768,
"right_pos": 57344,
"tick": 21120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -616,9 +616,9 @@
},
"long_point": [
{
"tick": 22080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 22080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -654,9 +654,9 @@
},
"long_point": [
{
"tick": 24000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 24000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -692,9 +692,9 @@
},
"long_point": [
{
"tick": 26880,
"left_pos": 32768,
"right_pos": 57344,
"tick": 26880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -745,9 +745,9 @@
},
"long_point": [
{
"tick": 28800,
"left_pos": 8192,
"right_pos": 32768,
"tick": 28800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -798,9 +798,9 @@
},
"long_point": [
{
"tick": 29760,
"left_pos": 36864,
"right_pos": 61440,
"tick": 29760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -836,9 +836,9 @@
},
"long_point": [
{
"tick": 31680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 31680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1054,9 +1054,9 @@
},
"long_point": [
{
"tick": 38880,
"left_pos": 28672,
"right_pos": 53248,
"tick": 38880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1077,9 +1077,9 @@
},
"long_point": [
{
"tick": 38880,
"left_pos": 12288,
"right_pos": 36864,
"tick": 38880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1100,9 +1100,9 @@
},
"long_point": [
{
"tick": 39840,
"left_pos": 4096,
"right_pos": 28672,
"tick": 39840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1123,9 +1123,9 @@
},
"long_point": [
{
"tick": 39840,
"left_pos": 36864,
"right_pos": 61440,
"tick": 39840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1326,9 +1326,9 @@
},
"long_point": [
{
"tick": 46560,
"left_pos": 28672,
"right_pos": 53248,
"tick": 46560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1349,9 +1349,9 @@
},
"long_point": [
{
"tick": 46560,
"left_pos": 12288,
"right_pos": 36864,
"tick": 46560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1372,9 +1372,9 @@
},
"long_point": [
{
"tick": 47520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 47520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1395,9 +1395,9 @@
},
"long_point": [
{
"tick": 47520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 47520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1538,16 +1538,16 @@
},
"long_point": [
{
"tick": 52320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 52320,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 52800,
"left_pos": 12288,
"right_pos": 36864,
"tick": 52800,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1568,16 +1568,16 @@
},
"long_point": [
{
"tick": 53280,
"left_pos": 4096,
"right_pos": 28672,
"tick": 53280,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 53760,
"left_pos": 12288,
"right_pos": 36864,
"tick": 53760,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1808,16 +1808,16 @@
},
"long_point": [
{
"tick": 60000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 60000,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 60480,
"left_pos": 28672,
"right_pos": 53248,
"tick": 60480,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1838,16 +1838,16 @@
},
"long_point": [
{
"tick": 60960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 60960,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 61440,
"left_pos": 28672,
"right_pos": 53248,
"tick": 61440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1958,9 +1958,9 @@
},
"long_point": [
{
"tick": 63840,
"left_pos": 4096,
"right_pos": 28672,
"tick": 63840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2011,9 +2011,9 @@
},
"long_point": [
{
"tick": 65760,
"left_pos": 36864,
"right_pos": 61440,
"tick": 65760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2064,9 +2064,9 @@
},
"long_point": [
{
"tick": 67680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 67680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2117,9 +2117,9 @@
},
"long_point": [
{
"tick": 69600,
"left_pos": 36864,
"right_pos": 61440,
"tick": 69600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2380,9 +2380,9 @@
},
"long_point": [
{
"tick": 79200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 79200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2403,9 +2403,9 @@
},
"long_point": [
{
"tick": 80160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 80160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2516,16 +2516,16 @@
},
"long_point": [
{
"tick": 83040,
"left_pos": 36864,
"right_pos": 61440,
"tick": 83040,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 83520,
"left_pos": 28672,
"right_pos": 53248,
"tick": 83520,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2546,16 +2546,16 @@
},
"long_point": [
{
"tick": 84000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 84000,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 84480,
"left_pos": 28672,
"right_pos": 53248,
"tick": 84480,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2636,16 +2636,16 @@
},
"long_point": [
{
"tick": 86880,
"left_pos": 4096,
"right_pos": 28672,
"tick": 86880,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 87360,
"left_pos": 12288,
"right_pos": 36864,
"tick": 87360,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2666,16 +2666,16 @@
},
"long_point": [
{
"tick": 87840,
"left_pos": 4096,
"right_pos": 28672,
"tick": 87840,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 88320,
"left_pos": 12288,
"right_pos": 36864,
"tick": 88320,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2756,9 +2756,9 @@
},
"long_point": [
{
"tick": 91200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 91200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2854,9 +2854,9 @@
},
"long_point": [
{
"tick": 95040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 95040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2892,9 +2892,9 @@
},
"long_point": [
{
"tick": 96960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 96960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2930,16 +2930,16 @@
},
"long_point": [
{
"tick": 98400,
"left_pos": 4096,
"right_pos": 28672,
"tick": 98400,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 98880,
"left_pos": 12288,
"right_pos": 36864,
"tick": 98880,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2960,16 +2960,16 @@
},
"long_point": [
{
"tick": 99360,
"left_pos": 4096,
"right_pos": 28672,
"tick": 99360,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 99840,
"left_pos": 12288,
"right_pos": 36864,
"tick": 99840,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3050,16 +3050,16 @@
},
"long_point": [
{
"tick": 102240,
"left_pos": 36864,
"right_pos": 61440,
"tick": 102240,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 102720,
"left_pos": 28672,
"right_pos": 53248,
"tick": 102720,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3080,16 +3080,16 @@
},
"long_point": [
{
"tick": 103200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 103200,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 103680,
"left_pos": 28672,
"right_pos": 53248,
"tick": 103680,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3170,9 +3170,9 @@
},
"long_point": [
{
"tick": 106560,
"left_pos": 4096,
"right_pos": 28672,
"tick": 106560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3268,9 +3268,9 @@
},
"long_point": [
{
"tick": 110400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 110400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3306,9 +3306,9 @@
},
"long_point": [
{
"tick": 112320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 112320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3479,9 +3479,9 @@
},
"long_point": [
{
"tick": 119520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 119520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3517,9 +3517,9 @@
},
"long_point": [
{
"tick": 120480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 120480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3555,9 +3555,9 @@
},
"long_point": [
{
"tick": 121440,
"left_pos": 36864,
"right_pos": 61440,
"tick": 121440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3578,9 +3578,9 @@
},
"long_point": [
{
"tick": 121440,
"left_pos": 4096,
"right_pos": 28672,
"tick": 121440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3601,9 +3601,9 @@
},
"long_point": [
{
"tick": 122400,
"left_pos": 12288,
"right_pos": 36864,
"tick": 122400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3624,9 +3624,9 @@
},
"long_point": [
{
"tick": 122400,
"left_pos": 28672,
"right_pos": 53248,
"tick": 122400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3767,9 +3767,9 @@
},
"long_point": [
{
"tick": 127200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 127200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3805,9 +3805,9 @@
},
"long_point": [
{
"tick": 128160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 128160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3843,9 +3843,9 @@
},
"long_point": [
{
"tick": 129120,
"left_pos": 36864,
"right_pos": 61440,
"tick": 129120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3866,9 +3866,9 @@
},
"long_point": [
{
"tick": 129120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 129120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3889,9 +3889,9 @@
},
"long_point": [
{
"tick": 130080,
"left_pos": 28672,
"right_pos": 53248,
"tick": 130080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3912,9 +3912,9 @@
},
"long_point": [
{
"tick": 130080,
"left_pos": 12288,
"right_pos": 36864,
"tick": 130080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3935,9 +3935,9 @@
},
"long_point": [
{
"tick": 131040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 131040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3958,9 +3958,9 @@
},
"long_point": [
{
"tick": 132000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 132000,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -36,9 +36,9 @@
},
"long_point": [
{
"tick": 2880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 2880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -74,9 +74,9 @@
},
"long_point": [
{
"tick": 4800,
"left_pos": 4096,
"right_pos": 28672,
"tick": 4800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -112,9 +112,9 @@
},
"long_point": [
{
"tick": 6720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 6720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -150,9 +150,9 @@
},
"long_point": [
{
"tick": 8640,
"left_pos": 4096,
"right_pos": 28672,
"tick": 8640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -188,9 +188,9 @@
},
"long_point": [
{
"tick": 11520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 11520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -256,9 +256,9 @@
},
"long_point": [
{
"tick": 13440,
"left_pos": 4096,
"right_pos": 28672,
"tick": 13440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -534,9 +534,9 @@
},
"long_point": [
{
"tick": 19680,
"left_pos": 36864,
"right_pos": 61440,
"tick": 19680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -572,9 +572,9 @@
},
"long_point": [
{
"tick": 20640,
"left_pos": 4096,
"right_pos": 28672,
"tick": 20640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -670,9 +670,9 @@
},
"long_point": [
{
"tick": 23520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 23520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -708,9 +708,9 @@
},
"long_point": [
{
"tick": 24480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 24480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -746,9 +746,9 @@
},
"long_point": [
{
"tick": 25920,
"left_pos": 4096,
"right_pos": 28672,
"tick": 25920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -769,9 +769,9 @@
},
"long_point": [
{
"tick": 26880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 26880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -882,9 +882,9 @@
},
"long_point": [
{
"tick": 29760,
"left_pos": 36864,
"right_pos": 61440,
"tick": 29760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -920,9 +920,9 @@
},
"long_point": [
{
"tick": 31680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 31680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -958,9 +958,9 @@
},
"long_point": [
{
"tick": 33600,
"left_pos": 36864,
"right_pos": 61440,
"tick": 33600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -981,9 +981,9 @@
},
"long_point": [
{
"tick": 34560,
"left_pos": 4096,
"right_pos": 28672,
"tick": 34560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1004,9 +1004,9 @@
},
"long_point": [
{
"tick": 36480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 36480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1072,9 +1072,9 @@
},
"long_point": [
{
"tick": 37440,
"left_pos": 4096,
"right_pos": 28672,
"tick": 37440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1095,9 +1095,9 @@
},
"long_point": [
{
"tick": 38400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 38400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1118,9 +1118,9 @@
},
"long_point": [
{
"tick": 40320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1201,9 +1201,9 @@
},
"long_point": [
{
"tick": 41760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 41760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1269,9 +1269,9 @@
},
"long_point": [
{
"tick": 43680,
"left_pos": 36864,
"right_pos": 61440,
"tick": 43680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1367,9 +1367,9 @@
},
"long_point": [
{
"tick": 47040,
"left_pos": 36864,
"right_pos": 61440,
"tick": 47040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1390,9 +1390,9 @@
},
"long_point": [
{
"tick": 47040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 47040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1428,16 +1428,16 @@
},
"long_point": [
{
"tick": 48480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 48480,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 48960,
"left_pos": 28672,
"right_pos": 53248,
"tick": 48960,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1458,16 +1458,16 @@
},
"long_point": [
{
"tick": 49440,
"left_pos": 36864,
"right_pos": 61440,
"tick": 49440,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 49920,
"left_pos": 28672,
"right_pos": 53248,
"tick": 49920,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1488,16 +1488,16 @@
},
"long_point": [
{
"tick": 50400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 50400,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 50880,
"left_pos": 28672,
"right_pos": 53248,
"tick": 50880,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1518,16 +1518,16 @@
},
"long_point": [
{
"tick": 51360,
"left_pos": 36864,
"right_pos": 61440,
"tick": 51360,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 51840,
"left_pos": 28672,
"right_pos": 53248,
"tick": 51840,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1668,9 +1668,9 @@
},
"long_point": [
{
"tick": 56160,
"left_pos": 36864,
"right_pos": 61440,
"tick": 56160,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1691,9 +1691,9 @@
},
"long_point": [
{
"tick": 57120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 57120,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1864,9 +1864,9 @@
},
"long_point": [
{
"tick": 61920,
"left_pos": 36864,
"right_pos": 61440,
"tick": 61920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1902,9 +1902,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 4096,
"right_pos": 28672,
"tick": 62880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2075,9 +2075,9 @@
},
"long_point": [
{
"tick": 67680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 67680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2113,9 +2113,9 @@
},
"long_point": [
{
"tick": 68640,
"left_pos": 36864,
"right_pos": 61440,
"tick": 68640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2241,9 +2241,9 @@
},
"long_point": [
{
"tick": 72960,
"left_pos": 4096,
"right_pos": 28672,
"tick": 72960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2309,9 +2309,9 @@
},
"long_point": [
{
"tick": 74880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 74880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2377,9 +2377,9 @@
},
"long_point": [
{
"tick": 75840,
"left_pos": 4096,
"right_pos": 28672,
"tick": 75840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2400,9 +2400,9 @@
},
"long_point": [
{
"tick": 76800,
"left_pos": 36864,
"right_pos": 61440,
"tick": 76800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2423,9 +2423,9 @@
},
"long_point": [
{
"tick": 77760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 77760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2446,9 +2446,9 @@
},
"long_point": [
{
"tick": 77760,
"left_pos": 36864,
"right_pos": 61440,
"tick": 77760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2514,9 +2514,9 @@
},
"long_point": [
{
"tick": 83520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 83520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2537,9 +2537,9 @@
},
"long_point": [
{
"tick": 84480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 84480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2560,9 +2560,9 @@
},
"long_point": [
{
"tick": 85440,
"left_pos": 4096,
"right_pos": 28672,
"tick": 85440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2583,9 +2583,9 @@
},
"long_point": [
{
"tick": 86400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 86400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2606,9 +2606,9 @@
},
"long_point": [
{
"tick": 87360,
"left_pos": 4096,
"right_pos": 28672,
"tick": 87360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2644,9 +2644,9 @@
},
"long_point": [
{
"tick": 89280,
"left_pos": 36864,
"right_pos": 61440,
"tick": 89280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2682,9 +2682,9 @@
},
"long_point": [
{
"tick": 90720,
"left_pos": 4096,
"right_pos": 28672,
"tick": 90720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2720,9 +2720,9 @@
},
"long_point": [
{
"tick": 91680,
"left_pos": 36864,
"right_pos": 61440,
"tick": 91680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2758,9 +2758,9 @@
},
"long_point": [
{
"tick": 92640,
"left_pos": 12288,
"right_pos": 36864,
"tick": 92640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2796,9 +2796,9 @@
},
"long_point": [
{
"tick": 93600,
"left_pos": 28672,
"right_pos": 53248,
"tick": 93600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2834,9 +2834,9 @@
},
"long_point": [
{
"tick": 95040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 95040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2857,9 +2857,9 @@
},
"long_point": [
{
"tick": 96000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 96000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2970,16 +2970,16 @@
},
"long_point": [
{
"tick": 98400,
"left_pos": 4096,
"right_pos": 28672,
"tick": 98400,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 98880,
"left_pos": 12288,
"right_pos": 36864,
"tick": 98880,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3000,16 +3000,16 @@
},
"long_point": [
{
"tick": 99360,
"left_pos": 4096,
"right_pos": 28672,
"tick": 99360,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 99840,
"left_pos": 12288,
"right_pos": 36864,
"tick": 99840,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3030,16 +3030,16 @@
},
"long_point": [
{
"tick": 100320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 100320,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 100800,
"left_pos": 12288,
"right_pos": 36864,
"tick": 100800,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3060,16 +3060,16 @@
},
"long_point": [
{
"tick": 101280,
"left_pos": 4096,
"right_pos": 28672,
"tick": 101280,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 101760,
"left_pos": 12288,
"right_pos": 36864,
"tick": 101760,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3210,9 +3210,9 @@
},
"long_point": [
{
"tick": 106080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 106080,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3233,9 +3233,9 @@
},
"long_point": [
{
"tick": 107040,
"left_pos": 36864,
"right_pos": 61440,
"tick": 107040,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3406,9 +3406,9 @@
},
"long_point": [
{
"tick": 111840,
"left_pos": 4096,
"right_pos": 28672,
"tick": 111840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3444,9 +3444,9 @@
},
"long_point": [
{
"tick": 112800,
"left_pos": 36864,
"right_pos": 61440,
"tick": 112800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3482,9 +3482,9 @@
},
"long_point": [
{
"tick": 115200,
"left_pos": 4096,
"right_pos": 28672,
"tick": 115200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3505,9 +3505,9 @@
},
"long_point": [
{
"tick": 117120,
"left_pos": 36864,
"right_pos": 61440,
"tick": 117120,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+109 -109
View File
@@ -66,9 +66,9 @@
},
"long_point": [
{
"tick": 6240,
"left_pos": 32768,
"right_pos": 53248,
"tick": 6240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -89,9 +89,9 @@
},
"long_point": [
{
"tick": 6240,
"left_pos": 12288,
"right_pos": 32768,
"tick": 6240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -217,9 +217,9 @@
},
"long_point": [
{
"tick": 10080,
"left_pos": 32768,
"right_pos": 53248,
"tick": 10080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -240,9 +240,9 @@
},
"long_point": [
{
"tick": 10080,
"left_pos": 12288,
"right_pos": 32768,
"tick": 10080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -278,9 +278,9 @@
},
"long_point": [
{
"tick": 12000,
"left_pos": 4096,
"right_pos": 24576,
"tick": 12000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -316,9 +316,9 @@
},
"long_point": [
{
"tick": 12960,
"left_pos": 40960,
"right_pos": 61440,
"tick": 12960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -414,9 +414,9 @@
},
"long_point": [
{
"tick": 16800,
"left_pos": 16384,
"right_pos": 36864,
"tick": 16800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -437,9 +437,9 @@
},
"long_point": [
{
"tick": 16800,
"left_pos": 28672,
"right_pos": 49152,
"tick": 16800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -520,9 +520,9 @@
},
"long_point": [
{
"tick": 18720,
"left_pos": 16384,
"right_pos": 36864,
"tick": 18720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -543,9 +543,9 @@
},
"long_point": [
{
"tick": 18720,
"left_pos": 28672,
"right_pos": 49152,
"tick": 18720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -581,9 +581,9 @@
},
"long_point": [
{
"tick": 20160,
"left_pos": 40960,
"right_pos": 61440,
"tick": 20160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -634,9 +634,9 @@
},
"long_point": [
{
"tick": 22080,
"left_pos": 4096,
"right_pos": 24576,
"tick": 22080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -837,9 +837,9 @@
},
"long_point": [
{
"tick": 27840,
"left_pos": 4096,
"right_pos": 24576,
"tick": 27840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -890,9 +890,9 @@
},
"long_point": [
{
"tick": 29760,
"left_pos": 40960,
"right_pos": 61440,
"tick": 29760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1138,9 +1138,9 @@
},
"long_point": [
{
"tick": 36960,
"left_pos": 20480,
"right_pos": 40960,
"tick": 36960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1161,9 +1161,9 @@
},
"long_point": [
{
"tick": 37440,
"left_pos": 40960,
"right_pos": 61440,
"tick": 37440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1214,9 +1214,9 @@
},
"long_point": [
{
"tick": 40320,
"left_pos": 8192,
"right_pos": 28672,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1282,9 +1282,9 @@
},
"long_point": [
{
"tick": 40800,
"left_pos": 36864,
"right_pos": 57344,
"tick": 40800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1395,9 +1395,9 @@
},
"long_point": [
{
"tick": 44640,
"left_pos": 24576,
"right_pos": 45056,
"tick": 44640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1418,9 +1418,9 @@
},
"long_point": [
{
"tick": 45120,
"left_pos": 4096,
"right_pos": 24576,
"tick": 45120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1471,9 +1471,9 @@
},
"long_point": [
{
"tick": 48000,
"left_pos": 36864,
"right_pos": 57344,
"tick": 48000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1539,9 +1539,9 @@
},
"long_point": [
{
"tick": 48480,
"left_pos": 8192,
"right_pos": 28672,
"tick": 48480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1577,9 +1577,9 @@
},
"long_point": [
{
"tick": 49440,
"left_pos": 36864,
"right_pos": 57344,
"tick": 49440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1615,9 +1615,9 @@
},
"long_point": [
{
"tick": 51840,
"left_pos": 12288,
"right_pos": 32768,
"tick": 51840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1683,9 +1683,9 @@
},
"long_point": [
{
"tick": 53760,
"left_pos": 32768,
"right_pos": 53248,
"tick": 53760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1751,9 +1751,9 @@
},
"long_point": [
{
"tick": 54240,
"left_pos": 12288,
"right_pos": 32768,
"tick": 54240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1789,9 +1789,9 @@
},
"long_point": [
{
"tick": 55200,
"left_pos": 32768,
"right_pos": 53248,
"tick": 55200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1827,44 +1827,44 @@
},
"long_point": [
{
"left_pos": 32768,
"right_pos": 53248,
"tick": 55920,
"left_pos": 32768,
"right_pos": 53248,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 28672,
"right_pos": 49152,
"tick": 56160,
"left_pos": 28672,
"right_pos": 49152,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 28672,
"right_pos": 49152,
"tick": 56400,
"left_pos": 28672,
"right_pos": 49152,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 32768,
"right_pos": 53248,
"tick": 56640,
"left_pos": 32768,
"right_pos": 53248,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 32768,
"right_pos": 53248,
"tick": 56880,
"left_pos": 32768,
"right_pos": 53248,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 57120,
"left_pos": 28672,
"right_pos": 49152,
"tick": 57120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1885,44 +1885,44 @@
},
"long_point": [
{
"left_pos": 12288,
"right_pos": 32768,
"tick": 55920,
"left_pos": 12288,
"right_pos": 32768,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 8192,
"right_pos": 28672,
"tick": 56160,
"left_pos": 8192,
"right_pos": 28672,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 8192,
"right_pos": 28672,
"tick": 56400,
"left_pos": 8192,
"right_pos": 28672,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 12288,
"right_pos": 32768,
"tick": 56640,
"left_pos": 12288,
"right_pos": 32768,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 12288,
"right_pos": 32768,
"tick": 56880,
"left_pos": 12288,
"right_pos": 32768,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 57120,
"left_pos": 8192,
"right_pos": 28672,
"tick": 57120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2258,9 +2258,9 @@
},
"long_point": [
{
"tick": 64800,
"left_pos": 28672,
"right_pos": 49152,
"tick": 64800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2281,9 +2281,9 @@
},
"long_point": [
{
"tick": 64800,
"left_pos": 16384,
"right_pos": 36864,
"tick": 64800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2319,16 +2319,16 @@
},
"long_point": [
{
"tick": 65520,
"left_pos": 40960,
"right_pos": 61440,
"tick": 65520,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 65760,
"left_pos": 32768,
"right_pos": 53248,
"tick": 65760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2364,16 +2364,16 @@
},
"long_point": [
{
"tick": 66480,
"left_pos": 40960,
"right_pos": 61440,
"tick": 66480,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 66720,
"left_pos": 32768,
"right_pos": 53248,
"tick": 66720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2409,16 +2409,16 @@
},
"long_point": [
{
"tick": 67440,
"left_pos": 40960,
"right_pos": 61440,
"tick": 67440,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 67680,
"left_pos": 32768,
"right_pos": 53248,
"tick": 67680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2454,16 +2454,16 @@
},
"long_point": [
{
"tick": 68400,
"left_pos": 40960,
"right_pos": 61440,
"tick": 68400,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 68640,
"left_pos": 32768,
"right_pos": 53248,
"tick": 68640,
"left_end_pos": 24576,
"right_end_pos": 45056
}
@@ -2484,9 +2484,9 @@
},
"long_point": [
{
"tick": 68880,
"left_pos": 40960,
"right_pos": 61440,
"tick": 68880,
"left_end_pos": 32768,
"right_end_pos": 53248
}
@@ -2507,16 +2507,16 @@
},
"long_point": [
{
"tick": 69360,
"left_pos": 4096,
"right_pos": 24576,
"tick": 69360,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 69600,
"left_pos": 12288,
"right_pos": 32768,
"tick": 69600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2552,16 +2552,16 @@
},
"long_point": [
{
"tick": 70320,
"left_pos": 4096,
"right_pos": 24576,
"tick": 70320,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 70560,
"left_pos": 12288,
"right_pos": 32768,
"tick": 70560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2597,9 +2597,9 @@
},
"long_point": [
{
"tick": 71520,
"left_pos": 16384,
"right_pos": 32768,
"tick": 71520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2635,9 +2635,9 @@
},
"long_point": [
{
"tick": 72480,
"left_pos": 32768,
"right_pos": 49152,
"tick": 72480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2673,16 +2673,16 @@
},
"long_point": [
{
"tick": 73200,
"left_pos": 4096,
"right_pos": 24576,
"tick": 73200,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 73440,
"left_pos": 12288,
"right_pos": 32768,
"tick": 73440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2718,16 +2718,16 @@
},
"long_point": [
{
"tick": 74160,
"left_pos": 4096,
"right_pos": 24576,
"tick": 74160,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 74400,
"left_pos": 12288,
"right_pos": 32768,
"tick": 74400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2763,16 +2763,16 @@
},
"long_point": [
{
"tick": 75120,
"left_pos": 4096,
"right_pos": 24576,
"tick": 75120,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 75360,
"left_pos": 12288,
"right_pos": 32768,
"tick": 75360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2808,16 +2808,16 @@
},
"long_point": [
{
"tick": 76080,
"left_pos": 4096,
"right_pos": 24576,
"tick": 76080,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 76320,
"left_pos": 12288,
"right_pos": 32768,
"tick": 76320,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -2838,9 +2838,9 @@
},
"long_point": [
{
"tick": 76560,
"left_pos": 4096,
"right_pos": 24576,
"tick": 76560,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -2861,16 +2861,16 @@
},
"long_point": [
{
"tick": 77040,
"left_pos": 40960,
"right_pos": 61440,
"tick": 77040,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 77280,
"left_pos": 32768,
"right_pos": 53248,
"tick": 77280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2906,16 +2906,16 @@
},
"long_point": [
{
"tick": 78000,
"left_pos": 40960,
"right_pos": 61440,
"tick": 78000,
"left_end_pos": 32768,
"right_end_pos": 53248
},
{
"tick": 78240,
"left_pos": 32768,
"right_pos": 53248,
"tick": 78240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2981,9 +2981,9 @@
},
"long_point": [
{
"tick": 80160,
"left_pos": 12288,
"right_pos": 32768,
"tick": 80160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3004,9 +3004,9 @@
},
"long_point": [
{
"tick": 80160,
"left_pos": 32768,
"right_pos": 53248,
"tick": 80160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3042,16 +3042,16 @@
},
"long_point": [
{
"tick": 81120,
"left_pos": 40960,
"right_pos": 61440,
"tick": 81120,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 82560,
"left_pos": 28672,
"right_pos": 49152,
"tick": 82560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3117,16 +3117,16 @@
},
"long_point": [
{
"tick": 83040,
"left_pos": 4096,
"right_pos": 24576,
"tick": 83040,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 84480,
"left_pos": 16384,
"right_pos": 36864,
"tick": 84480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3192,16 +3192,16 @@
},
"long_point": [
{
"tick": 84960,
"left_pos": 32768,
"right_pos": 53248,
"tick": 84960,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 86400,
"left_pos": 20480,
"right_pos": 40960,
"tick": 86400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3327,16 +3327,16 @@
},
"long_point": [
{
"tick": 88800,
"left_pos": 4096,
"right_pos": 24576,
"tick": 88800,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 90240,
"left_pos": 16384,
"right_pos": 36864,
"tick": 90240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3402,16 +3402,16 @@
},
"long_point": [
{
"tick": 90720,
"left_pos": 40960,
"right_pos": 61440,
"tick": 90720,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 92160,
"left_pos": 28672,
"right_pos": 49152,
"tick": 92160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3477,16 +3477,16 @@
},
"long_point": [
{
"tick": 92640,
"left_pos": 12288,
"right_pos": 32768,
"tick": 92640,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 94080,
"left_pos": 24576,
"right_pos": 45056,
"tick": 94080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3642,9 +3642,9 @@
},
"long_point": [
{
"tick": 96960,
"left_pos": 40960,
"right_pos": 61440,
"tick": 96960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3680,9 +3680,9 @@
},
"long_point": [
{
"tick": 98400,
"left_pos": 12288,
"right_pos": 32768,
"tick": 98400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3703,9 +3703,9 @@
},
"long_point": [
{
"tick": 98400,
"left_pos": 32768,
"right_pos": 53248,
"tick": 98400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3801,9 +3801,9 @@
},
"long_point": [
{
"tick": 100800,
"left_pos": 4096,
"right_pos": 24576,
"tick": 100800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3899,9 +3899,9 @@
},
"long_point": [
{
"tick": 103200,
"left_pos": 16384,
"right_pos": 36864,
"tick": 103200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3922,9 +3922,9 @@
},
"long_point": [
{
"tick": 103200,
"left_pos": 28672,
"right_pos": 49152,
"tick": 103200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3960,9 +3960,9 @@
},
"long_point": [
{
"tick": 104160,
"left_pos": 32768,
"right_pos": 49152,
"tick": 104160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3998,9 +3998,9 @@
},
"long_point": [
{
"tick": 105120,
"left_pos": 16384,
"right_pos": 32768,
"tick": 105120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4036,9 +4036,9 @@
},
"long_point": [
{
"tick": 105840,
"left_pos": 40960,
"right_pos": 61440,
"tick": 105840,
"left_end_pos": 32768,
"right_end_pos": 53248
}
@@ -4059,9 +4059,9 @@
},
"long_point": [
{
"tick": 106320,
"left_pos": 4096,
"right_pos": 24576,
"tick": 106320,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -4082,9 +4082,9 @@
},
"long_point": [
{
"tick": 106800,
"left_pos": 40960,
"right_pos": 61440,
"tick": 106800,
"left_end_pos": 32768,
"right_end_pos": 53248
}
@@ -4105,9 +4105,9 @@
},
"long_point": [
{
"tick": 107280,
"left_pos": 4096,
"right_pos": 24576,
"tick": 107280,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -4128,9 +4128,9 @@
},
"long_point": [
{
"tick": 108000,
"left_pos": 32768,
"right_pos": 53248,
"tick": 108000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4166,9 +4166,9 @@
},
"long_point": [
{
"tick": 108960,
"left_pos": 12288,
"right_pos": 32768,
"tick": 108960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4204,9 +4204,9 @@
},
"long_point": [
{
"tick": 110880,
"left_pos": 40960,
"right_pos": 61440,
"tick": 110880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4242,9 +4242,9 @@
},
"long_point": [
{
"tick": 110880,
"left_pos": 8192,
"right_pos": 28672,
"tick": 110880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -186,9 +186,9 @@
},
"long_point": [
{
"tick": 12000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 12000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -209,9 +209,9 @@
},
"long_point": [
{
"tick": 12960,
"left_pos": 4096,
"right_pos": 28672,
"tick": 12960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -292,9 +292,9 @@
},
"long_point": [
{
"tick": 15840,
"left_pos": 36864,
"right_pos": 61440,
"tick": 15840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -315,9 +315,9 @@
},
"long_point": [
{
"tick": 16800,
"left_pos": 4096,
"right_pos": 28672,
"tick": 16800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -338,9 +338,9 @@
},
"long_point": [
{
"tick": 18720,
"left_pos": 32768,
"right_pos": 57344,
"tick": 18720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -361,9 +361,9 @@
},
"long_point": [
{
"tick": 18720,
"left_pos": 8192,
"right_pos": 32768,
"tick": 18720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -399,9 +399,9 @@
},
"long_point": [
{
"tick": 20160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 20160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -437,9 +437,9 @@
},
"long_point": [
{
"tick": 22080,
"left_pos": 36864,
"right_pos": 61440,
"tick": 22080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -475,9 +475,9 @@
},
"long_point": [
{
"tick": 23520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 23520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -498,9 +498,9 @@
},
"long_point": [
{
"tick": 24480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 24480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -551,9 +551,9 @@
},
"long_point": [
{
"tick": 26400,
"left_pos": 12288,
"right_pos": 36864,
"tick": 26400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -574,9 +574,9 @@
},
"long_point": [
{
"tick": 26400,
"left_pos": 28672,
"right_pos": 53248,
"tick": 26400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -597,9 +597,9 @@
},
"long_point": [
{
"tick": 27840,
"left_pos": 36864,
"right_pos": 61440,
"tick": 27840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -635,9 +635,9 @@
},
"long_point": [
{
"tick": 29760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 29760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -673,9 +673,9 @@
},
"long_point": [
{
"tick": 31200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 31200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -696,9 +696,9 @@
},
"long_point": [
{
"tick": 32160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 32160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -749,9 +749,9 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 12288,
"right_pos": 36864,
"tick": 34080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -772,9 +772,9 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 28672,
"right_pos": 53248,
"tick": 34080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -795,9 +795,9 @@
},
"long_point": [
{
"tick": 35520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 35520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -833,9 +833,9 @@
},
"long_point": [
{
"tick": 37440,
"left_pos": 36864,
"right_pos": 61440,
"tick": 37440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -916,9 +916,9 @@
},
"long_point": [
{
"tick": 41760,
"left_pos": 36864,
"right_pos": 61440,
"tick": 41760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -939,9 +939,9 @@
},
"long_point": [
{
"tick": 41760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 41760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -962,9 +962,9 @@
},
"long_point": [
{
"tick": 43200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 43200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1000,9 +1000,9 @@
},
"long_point": [
{
"tick": 45120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 45120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1158,9 +1158,9 @@
},
"long_point": [
{
"tick": 49440,
"left_pos": 32768,
"right_pos": 57344,
"tick": 49440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1181,9 +1181,9 @@
},
"long_point": [
{
"tick": 49440,
"left_pos": 8192,
"right_pos": 32768,
"tick": 49440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1204,9 +1204,9 @@
},
"long_point": [
{
"tick": 51840,
"left_pos": 36864,
"right_pos": 61440,
"tick": 51840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1272,9 +1272,9 @@
},
"long_point": [
{
"tick": 53760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 53760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1430,9 +1430,9 @@
},
"long_point": [
{
"tick": 57120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 57120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1453,9 +1453,9 @@
},
"long_point": [
{
"tick": 57120,
"left_pos": 36864,
"right_pos": 61440,
"tick": 57120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1896,9 +1896,9 @@
},
"long_point": [
{
"tick": 69600,
"left_pos": 36864,
"right_pos": 61440,
"tick": 69600,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1919,9 +1919,9 @@
},
"long_point": [
{
"tick": 70560,
"left_pos": 4096,
"right_pos": 28672,
"tick": 70560,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2152,9 +2152,9 @@
},
"long_point": [
{
"tick": 77280,
"left_pos": 4096,
"right_pos": 28672,
"tick": 77280,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2175,9 +2175,9 @@
},
"long_point": [
{
"tick": 78240,
"left_pos": 36864,
"right_pos": 61440,
"tick": 78240,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2228,9 +2228,9 @@
},
"long_point": [
{
"tick": 80160,
"left_pos": 12288,
"right_pos": 36864,
"tick": 80160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2251,9 +2251,9 @@
},
"long_point": [
{
"tick": 80160,
"left_pos": 28672,
"right_pos": 53248,
"tick": 80160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2274,9 +2274,9 @@
},
"long_point": [
{
"tick": 81120,
"left_pos": 12288,
"right_pos": 36864,
"tick": 81120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2312,9 +2312,9 @@
},
"long_point": [
{
"tick": 82080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 82080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2350,9 +2350,9 @@
},
"long_point": [
{
"tick": 83040,
"left_pos": 28672,
"right_pos": 53248,
"tick": 83040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2388,9 +2388,9 @@
},
"long_point": [
{
"tick": 84000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 84000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2576,9 +2576,9 @@
},
"long_point": [
{
"tick": 88800,
"left_pos": 28672,
"right_pos": 53248,
"tick": 88800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2614,9 +2614,9 @@
},
"long_point": [
{
"tick": 89760,
"left_pos": 36864,
"right_pos": 61440,
"tick": 89760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2652,9 +2652,9 @@
},
"long_point": [
{
"tick": 90720,
"left_pos": 12288,
"right_pos": 36864,
"tick": 90720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2690,9 +2690,9 @@
},
"long_point": [
{
"tick": 91680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 91680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3088,9 +3088,9 @@
},
"long_point": [
{
"tick": 104640,
"left_pos": 36864,
"right_pos": 61440,
"tick": 104640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3126,9 +3126,9 @@
},
"long_point": [
{
"tick": 106560,
"left_pos": 4096,
"right_pos": 28672,
"tick": 106560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3164,9 +3164,9 @@
},
"long_point": [
{
"tick": 108000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 108000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3202,9 +3202,9 @@
},
"long_point": [
{
"tick": 108960,
"left_pos": 4096,
"right_pos": 28672,
"tick": 108960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3240,9 +3240,9 @@
},
"long_point": [
{
"tick": 110880,
"left_pos": 32768,
"right_pos": 57344,
"tick": 110880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3263,9 +3263,9 @@
},
"long_point": [
{
"tick": 110880,
"left_pos": 8192,
"right_pos": 32768,
"tick": 110880,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -516,16 +516,16 @@
},
"long_point": [
{
"tick": 19200,
"left_pos": 16384,
"right_pos": 36864,
"tick": 19200,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 21120,
"left_pos": 45056,
"right_pos": 65536,
"tick": 21120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -651,16 +651,16 @@
},
"long_point": [
{
"tick": 23040,
"left_pos": 0,
"right_pos": 20480,
"tick": 23040,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 24480,
"left_pos": 20480,
"right_pos": 40960,
"tick": 24480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1131,16 +1131,16 @@
},
"long_point": [
{
"tick": 33120,
"left_pos": 45056,
"right_pos": 65536,
"tick": 33120,
"left_end_pos": 28672,
"right_end_pos": 49152
},
{
"tick": 33600,
"left_pos": 28672,
"right_pos": 49152,
"tick": 33600,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -1176,30 +1176,30 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 45056,
"right_pos": 65536,
"tick": 34080,
"left_end_pos": 28672,
"right_end_pos": 49152
},
{
"tick": 34560,
"left_pos": 28672,
"right_pos": 49152,
"tick": 34560,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"tick": 35040,
"left_pos": 28672,
"right_pos": 49152,
"tick": 35040,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 35520,
"left_pos": 12288,
"right_pos": 32768,
"tick": 35520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1235,9 +1235,9 @@
},
"long_point": [
{
"tick": 36480,
"left_pos": 45056,
"right_pos": 65536,
"tick": 36480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1288,16 +1288,16 @@
},
"long_point": [
{
"tick": 37920,
"left_pos": 45056,
"right_pos": 65536,
"tick": 37920,
"left_end_pos": 28672,
"right_end_pos": 49152
},
{
"tick": 38400,
"left_pos": 28672,
"right_pos": 49152,
"tick": 38400,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -1318,16 +1318,16 @@
},
"long_point": [
{
"tick": 38880,
"left_pos": 45056,
"right_pos": 65536,
"tick": 38880,
"left_end_pos": 28672,
"right_end_pos": 49152
},
{
"tick": 39360,
"left_pos": 28672,
"right_pos": 49152,
"tick": 39360,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -1348,16 +1348,16 @@
},
"long_point": [
{
"tick": 39840,
"left_pos": 28672,
"right_pos": 49152,
"tick": 39840,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 40320,
"left_pos": 45056,
"right_pos": 65536,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1378,9 +1378,9 @@
},
"long_point": [
{
"tick": 41280,
"left_pos": 4096,
"right_pos": 24576,
"tick": 41280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1401,23 +1401,23 @@
},
"long_point": [
{
"tick": 42240,
"left_pos": 45056,
"right_pos": 65536,
"tick": 42240,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 42720,
"left_pos": 45056,
"right_pos": 65536,
"tick": 42720,
"left_end_pos": 28672,
"right_end_pos": 49152
},
{
"tick": 43200,
"left_pos": 28672,
"right_pos": 49152,
"tick": 43200,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -1453,16 +1453,16 @@
},
"long_point": [
{
"tick": 43680,
"left_pos": 45056,
"right_pos": 65536,
"tick": 43680,
"left_end_pos": 28672,
"right_end_pos": 49152
},
{
"tick": 44160,
"left_pos": 28672,
"right_pos": 49152,
"tick": 44160,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -1513,9 +1513,9 @@
},
"long_point": [
{
"tick": 46080,
"left_pos": 20480,
"right_pos": 40960,
"tick": 46080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1536,16 +1536,16 @@
},
"long_point": [
{
"tick": 46560,
"left_pos": 0,
"right_pos": 20480,
"tick": 46560,
"left_end_pos": 16384,
"right_end_pos": 36864
},
{
"tick": 47040,
"left_pos": 16384,
"right_pos": 36864,
"tick": 47040,
"left_end_pos": 32768,
"right_end_pos": 53248
}
@@ -1566,16 +1566,16 @@
},
"long_point": [
{
"tick": 47520,
"left_pos": 0,
"right_pos": 20480,
"tick": 47520,
"left_end_pos": 16384,
"right_end_pos": 36864
},
{
"tick": 48000,
"left_pos": 16384,
"right_pos": 36864,
"tick": 48000,
"left_end_pos": 32768,
"right_end_pos": 53248
}
@@ -1641,30 +1641,30 @@
},
"long_point": [
{
"tick": 49920,
"left_pos": 16384,
"right_pos": 36864,
"tick": 49920,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 45056,
"right_pos": 65536,
"tick": 51840,
"left_pos": 45056,
"right_pos": 65536,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 52320,
"left_pos": 45056,
"right_pos": 65536,
"tick": 52320,
"left_end_pos": 28672,
"right_end_pos": 49152
},
{
"tick": 52800,
"left_pos": 28672,
"right_pos": 49152,
"tick": 52800,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -1730,44 +1730,44 @@
},
"long_point": [
{
"tick": 53280,
"left_pos": 45056,
"right_pos": 65536,
"tick": 53280,
"left_end_pos": 28672,
"right_end_pos": 49152
},
{
"tick": 53760,
"left_pos": 28672,
"right_pos": 49152,
"tick": 53760,
"left_end_pos": 12288,
"right_end_pos": 32768
},
{
"left_pos": 20480,
"right_pos": 40960,
"tick": 54000,
"left_pos": 20480,
"right_pos": 40960,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 12288,
"right_pos": 32768,
"tick": 54240,
"left_pos": 12288,
"right_pos": 32768,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 54480,
"left_pos": 20480,
"right_pos": 40960,
"tick": 54480,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 54720,
"left_pos": 12288,
"right_pos": 32768,
"tick": 54720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1848,9 +1848,9 @@
},
"long_point": [
{
"tick": 57600,
"left_pos": 12288,
"right_pos": 32768,
"tick": 57600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1886,16 +1886,16 @@
},
"long_point": [
{
"tick": 58080,
"left_pos": 0,
"right_pos": 20480,
"tick": 58080,
"left_end_pos": 16384,
"right_end_pos": 36864
},
{
"tick": 58560,
"left_pos": 16384,
"right_pos": 36864,
"tick": 58560,
"left_end_pos": 32768,
"right_end_pos": 53248
}
@@ -1916,16 +1916,16 @@
},
"long_point": [
{
"tick": 59040,
"left_pos": 0,
"right_pos": 20480,
"tick": 59040,
"left_end_pos": 16384,
"right_end_pos": 36864
},
{
"tick": 59520,
"left_pos": 16384,
"right_pos": 36864,
"tick": 59520,
"left_end_pos": 32768,
"right_end_pos": 53248
}
@@ -1976,16 +1976,16 @@
},
"long_point": [
{
"tick": 61440,
"left_pos": 24576,
"right_pos": 45056,
"tick": 61440,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 62400,
"left_pos": 0,
"right_pos": 20480,
"tick": 62400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2516,16 +2516,16 @@
},
"long_point": [
{
"tick": 80640,
"left_pos": 28672,
"right_pos": 49152,
"tick": 80640,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 82560,
"left_pos": 0,
"right_pos": 20480,
"tick": 82560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2651,16 +2651,16 @@
},
"long_point": [
{
"tick": 84480,
"left_pos": 45056,
"right_pos": 65536,
"tick": 84480,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 85920,
"left_pos": 24576,
"right_pos": 45056,
"tick": 85920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3086,58 +3086,58 @@
},
"long_point": [
{
"left_pos": 12288,
"right_pos": 32768,
"tick": 94560,
"left_pos": 12288,
"right_pos": 32768,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 0,
"right_pos": 20480,
"tick": 95040,
"left_pos": 0,
"right_pos": 20480,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 12288,
"right_pos": 32768,
"tick": 95520,
"left_pos": 12288,
"right_pos": 32768,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 0,
"right_pos": 20480,
"tick": 96000,
"left_pos": 0,
"right_pos": 20480,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 12288,
"right_pos": 32768,
"tick": 96480,
"left_pos": 12288,
"right_pos": 32768,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 0,
"right_pos": 20480,
"tick": 96960,
"left_pos": 0,
"right_pos": 20480,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 97440,
"left_pos": 12288,
"right_pos": 32768,
"tick": 97440,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 97920,
"left_pos": 0,
"right_pos": 20480,
"tick": 97920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3443,16 +3443,16 @@
},
"long_point": [
{
"tick": 102240,
"left_pos": 45056,
"right_pos": 65536,
"tick": 102240,
"left_end_pos": 28672,
"right_end_pos": 49152
},
{
"tick": 102720,
"left_pos": 28672,
"right_pos": 49152,
"tick": 102720,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -3488,16 +3488,16 @@
},
"long_point": [
{
"tick": 103200,
"left_pos": 45056,
"right_pos": 65536,
"tick": 103200,
"left_end_pos": 28672,
"right_end_pos": 49152
},
{
"tick": 103680,
"left_pos": 28672,
"right_pos": 49152,
"tick": 103680,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -3518,16 +3518,16 @@
},
"long_point": [
{
"tick": 104160,
"left_pos": 45056,
"right_pos": 65536,
"tick": 104160,
"left_end_pos": 28672,
"right_end_pos": 49152
},
{
"tick": 104640,
"left_pos": 28672,
"right_pos": 49152,
"tick": 104640,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -3578,16 +3578,16 @@
},
"long_point": [
{
"tick": 105120,
"left_pos": 45056,
"right_pos": 65536,
"tick": 105120,
"left_end_pos": 28672,
"right_end_pos": 49152
},
{
"tick": 105600,
"left_pos": 28672,
"right_pos": 49152,
"tick": 105600,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -3623,16 +3623,16 @@
},
"long_point": [
{
"tick": 106080,
"left_pos": 45056,
"right_pos": 65536,
"tick": 106080,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 107520,
"left_pos": 16384,
"right_pos": 36864,
"tick": 107520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3743,9 +3743,9 @@
},
"long_point": [
{
"tick": 113520,
"left_pos": 0,
"right_pos": 20480,
"tick": 113520,
"left_end_pos": 16384,
"right_end_pos": 36864
}
@@ -3766,9 +3766,9 @@
},
"long_point": [
{
"tick": 114000,
"left_pos": 0,
"right_pos": 20480,
"tick": 114000,
"left_end_pos": 16384,
"right_end_pos": 36864
}
@@ -3789,9 +3789,9 @@
},
"long_point": [
{
"tick": 114480,
"left_pos": 0,
"right_pos": 20480,
"tick": 114480,
"left_end_pos": 16384,
"right_end_pos": 36864
}
@@ -3812,9 +3812,9 @@
},
"long_point": [
{
"tick": 114960,
"left_pos": 0,
"right_pos": 20480,
"tick": 114960,
"left_end_pos": 16384,
"right_end_pos": 36864
}
@@ -3835,16 +3835,16 @@
},
"long_point": [
{
"tick": 115680,
"left_pos": 0,
"right_pos": 20480,
"tick": 115680,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 117120,
"left_pos": 28672,
"right_pos": 49152,
"tick": 117120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3910,9 +3910,9 @@
},
"long_point": [
{
"tick": 117360,
"left_pos": 45056,
"right_pos": 65536,
"tick": 117360,
"left_end_pos": 28672,
"right_end_pos": 49152
}
@@ -3933,9 +3933,9 @@
},
"long_point": [
{
"tick": 117840,
"left_pos": 45056,
"right_pos": 65536,
"tick": 117840,
"left_end_pos": 28672,
"right_end_pos": 49152
}
@@ -3956,9 +3956,9 @@
},
"long_point": [
{
"tick": 118320,
"left_pos": 45056,
"right_pos": 65536,
"tick": 118320,
"left_end_pos": 28672,
"right_end_pos": 49152
}
@@ -3979,9 +3979,9 @@
},
"long_point": [
{
"tick": 118800,
"left_pos": 45056,
"right_pos": 65536,
"tick": 118800,
"left_end_pos": 28672,
"right_end_pos": 49152
}
@@ -4002,16 +4002,16 @@
},
"long_point": [
{
"tick": 119520,
"left_pos": 45056,
"right_pos": 65536,
"tick": 119520,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 120960,
"left_pos": 16384,
"right_pos": 36864,
"tick": 120960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4092,9 +4092,9 @@
},
"long_point": [
{
"tick": 121680,
"left_pos": 32768,
"right_pos": 53248,
"tick": 121680,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -4115,9 +4115,9 @@
},
"long_point": [
{
"tick": 122160,
"left_pos": 0,
"right_pos": 20480,
"tick": 122160,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -4138,9 +4138,9 @@
},
"long_point": [
{
"tick": 122640,
"left_pos": 32768,
"right_pos": 53248,
"tick": 122640,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -4161,9 +4161,9 @@
},
"long_point": [
{
"tick": 123120,
"left_pos": 0,
"right_pos": 20480,
"tick": 123120,
"left_end_pos": 12288,
"right_end_pos": 32768
}
@@ -4184,9 +4184,9 @@
},
"long_point": [
{
"tick": 123600,
"left_pos": 32768,
"right_pos": 53248,
"tick": 123600,
"left_end_pos": 20480,
"right_end_pos": 40960
}
@@ -726,9 +726,9 @@
},
"long_point": [
{
"tick": 33120,
"left_pos": 36864,
"right_pos": 61440,
"tick": 33120,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -749,9 +749,9 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 36864,
"right_pos": 61440,
"tick": 34080,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -802,9 +802,9 @@
},
"long_point": [
{
"tick": 36960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 36960,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -825,9 +825,9 @@
},
"long_point": [
{
"tick": 37920,
"left_pos": 36864,
"right_pos": 61440,
"tick": 37920,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -878,9 +878,9 @@
},
"long_point": [
{
"tick": 42240,
"left_pos": 16384,
"right_pos": 40960,
"tick": 42240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -946,9 +946,9 @@
},
"long_point": [
{
"tick": 46080,
"left_pos": 24576,
"right_pos": 49152,
"tick": 46080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1044,9 +1044,9 @@
},
"long_point": [
{
"tick": 50400,
"left_pos": 4096,
"right_pos": 28672,
"tick": 50400,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1067,9 +1067,9 @@
},
"long_point": [
{
"tick": 51360,
"left_pos": 4096,
"right_pos": 28672,
"tick": 51360,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1120,9 +1120,9 @@
},
"long_point": [
{
"tick": 54240,
"left_pos": 4096,
"right_pos": 28672,
"tick": 54240,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1143,9 +1143,9 @@
},
"long_point": [
{
"tick": 55200,
"left_pos": 4096,
"right_pos": 28672,
"tick": 55200,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1166,9 +1166,9 @@
},
"long_point": [
{
"tick": 57600,
"left_pos": 24576,
"right_pos": 49152,
"tick": 57600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1234,9 +1234,9 @@
},
"long_point": [
{
"tick": 60000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 60000,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1257,9 +1257,9 @@
},
"long_point": [
{
"tick": 60960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 60960,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1280,9 +1280,9 @@
},
"long_point": [
{
"tick": 61920,
"left_pos": 36864,
"right_pos": 61440,
"tick": 61920,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1303,9 +1303,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 62880,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2001,9 +2001,9 @@
},
"long_point": [
{
"tick": 94560,
"left_pos": 36864,
"right_pos": 61440,
"tick": 94560,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2024,9 +2024,9 @@
},
"long_point": [
{
"tick": 95520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 95520,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2047,9 +2047,9 @@
},
"long_point": [
{
"tick": 96480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 96480,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2070,9 +2070,9 @@
},
"long_point": [
{
"tick": 97440,
"left_pos": 36864,
"right_pos": 61440,
"tick": 97440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2093,9 +2093,9 @@
},
"long_point": [
{
"tick": 99840,
"left_pos": 16384,
"right_pos": 40960,
"tick": 99840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2131,9 +2131,9 @@
},
"long_point": [
{
"tick": 101760,
"left_pos": 24576,
"right_pos": 49152,
"tick": 101760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2169,9 +2169,9 @@
},
"long_point": [
{
"tick": 103680,
"left_pos": 16384,
"right_pos": 40960,
"tick": 103680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2207,9 +2207,9 @@
},
"long_point": [
{
"tick": 105600,
"left_pos": 24576,
"right_pos": 49152,
"tick": 105600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2245,9 +2245,9 @@
},
"long_point": [
{
"tick": 106080,
"left_pos": 36864,
"right_pos": 61440,
"tick": 106080,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2268,9 +2268,9 @@
},
"long_point": [
{
"tick": 107040,
"left_pos": 36864,
"right_pos": 61440,
"tick": 107040,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2291,9 +2291,9 @@
},
"long_point": [
{
"tick": 108000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 108000,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2314,9 +2314,9 @@
},
"long_point": [
{
"tick": 108960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 108960,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2397,9 +2397,9 @@
},
"long_point": [
{
"tick": 113760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 113760,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2420,9 +2420,9 @@
},
"long_point": [
{
"tick": 114720,
"left_pos": 4096,
"right_pos": 28672,
"tick": 114720,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2443,9 +2443,9 @@
},
"long_point": [
{
"tick": 115680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 115680,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2466,9 +2466,9 @@
},
"long_point": [
{
"tick": 116640,
"left_pos": 4096,
"right_pos": 28672,
"tick": 116640,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2489,9 +2489,9 @@
},
"long_point": [
{
"tick": 117600,
"left_pos": 4096,
"right_pos": 28672,
"tick": 117600,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2512,9 +2512,9 @@
},
"long_point": [
{
"tick": 118560,
"left_pos": 4096,
"right_pos": 28672,
"tick": 118560,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2535,9 +2535,9 @@
},
"long_point": [
{
"tick": 119520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 119520,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2558,9 +2558,9 @@
},
"long_point": [
{
"tick": 120480,
"left_pos": 4096,
"right_pos": 28672,
"tick": 120480,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2581,9 +2581,9 @@
},
"long_point": [
{
"tick": 122880,
"left_pos": 24576,
"right_pos": 49152,
"tick": 122880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2619,9 +2619,9 @@
},
"long_point": [
{
"tick": 123840,
"left_pos": 24576,
"right_pos": 49152,
"tick": 123840,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
@@ -1416,9 +1416,9 @@
},
"long_point": [
{
"tick": 33120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 33120,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1439,9 +1439,9 @@
},
"long_point": [
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 33120,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1462,9 +1462,9 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 36864,
"right_pos": 61440,
"tick": 34080,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1485,9 +1485,9 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 34080,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1568,9 +1568,9 @@
},
"long_point": [
{
"tick": 36960,
"left_pos": 4096,
"right_pos": 28672,
"tick": 36960,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1591,9 +1591,9 @@
},
"long_point": [
{
"tick": 36960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 36960,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1614,9 +1614,9 @@
},
"long_point": [
{
"tick": 37920,
"left_pos": 4096,
"right_pos": 28672,
"tick": 37920,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1637,9 +1637,9 @@
},
"long_point": [
{
"tick": 37920,
"left_pos": 36864,
"right_pos": 61440,
"tick": 37920,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1720,9 +1720,9 @@
},
"long_point": [
{
"tick": 42240,
"left_pos": 24576,
"right_pos": 49152,
"tick": 42240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1743,9 +1743,9 @@
},
"long_point": [
{
"tick": 42240,
"left_pos": 16384,
"right_pos": 40960,
"tick": 42240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1856,9 +1856,9 @@
},
"long_point": [
{
"tick": 46080,
"left_pos": 24576,
"right_pos": 49152,
"tick": 46080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1879,9 +1879,9 @@
},
"long_point": [
{
"tick": 46080,
"left_pos": 16384,
"right_pos": 40960,
"tick": 46080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2052,9 +2052,9 @@
},
"long_point": [
{
"tick": 50400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 50400,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2075,9 +2075,9 @@
},
"long_point": [
{
"left_pos": 4096,
"right_pos": 28672,
"tick": 50400,
"left_pos": 4096,
"right_pos": 28672,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2098,9 +2098,9 @@
},
"long_point": [
{
"tick": 51360,
"left_pos": 36864,
"right_pos": 61440,
"tick": 51360,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2121,9 +2121,9 @@
},
"long_point": [
{
"tick": 51360,
"left_pos": 4096,
"right_pos": 28672,
"tick": 51360,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2204,9 +2204,9 @@
},
"long_point": [
{
"tick": 54240,
"left_pos": 4096,
"right_pos": 28672,
"tick": 54240,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2227,9 +2227,9 @@
},
"long_point": [
{
"tick": 54240,
"left_pos": 36864,
"right_pos": 61440,
"tick": 54240,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2250,9 +2250,9 @@
},
"long_point": [
{
"tick": 55200,
"left_pos": 4096,
"right_pos": 28672,
"tick": 55200,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2273,9 +2273,9 @@
},
"long_point": [
{
"tick": 55200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 55200,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2296,9 +2296,9 @@
},
"long_point": [
{
"tick": 57600,
"left_pos": 16384,
"right_pos": 40960,
"tick": 57600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2319,9 +2319,9 @@
},
"long_point": [
{
"tick": 57600,
"left_pos": 24576,
"right_pos": 49152,
"tick": 57600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2432,9 +2432,9 @@
},
"long_point": [
{
"tick": 60000,
"left_pos": 4096,
"right_pos": 28672,
"tick": 60000,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2455,9 +2455,9 @@
},
"long_point": [
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 60000,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2478,9 +2478,9 @@
},
"long_point": [
{
"tick": 60960,
"left_pos": 4096,
"right_pos": 28672,
"tick": 60960,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2501,9 +2501,9 @@
},
"long_point": [
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 60960,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2524,9 +2524,9 @@
},
"long_point": [
{
"tick": 61920,
"left_pos": 4096,
"right_pos": 28672,
"tick": 61920,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2547,9 +2547,9 @@
},
"long_point": [
{
"tick": 61920,
"left_pos": 36864,
"right_pos": 61440,
"tick": 61920,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2570,9 +2570,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 62880,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2593,9 +2593,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 4096,
"right_pos": 28672,
"tick": 62880,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3951,9 +3951,9 @@
},
"long_point": [
{
"tick": 94560,
"left_pos": 4096,
"right_pos": 28672,
"tick": 94560,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3974,9 +3974,9 @@
},
"long_point": [
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 94560,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3997,9 +3997,9 @@
},
"long_point": [
{
"tick": 95520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 95520,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4020,9 +4020,9 @@
},
"long_point": [
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 95520,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4043,9 +4043,9 @@
},
"long_point": [
{
"tick": 96480,
"left_pos": 4096,
"right_pos": 28672,
"tick": 96480,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4066,9 +4066,9 @@
},
"long_point": [
{
"tick": 96480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 96480,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4089,9 +4089,9 @@
},
"long_point": [
{
"tick": 97440,
"left_pos": 4096,
"right_pos": 28672,
"tick": 97440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4112,9 +4112,9 @@
},
"long_point": [
{
"tick": 97440,
"left_pos": 36864,
"right_pos": 61440,
"tick": 97440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4135,9 +4135,9 @@
},
"long_point": [
{
"tick": 99840,
"left_pos": 20480,
"right_pos": 45056,
"tick": 99840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4158,9 +4158,9 @@
},
"long_point": [
{
"tick": 99840,
"left_pos": 20480,
"right_pos": 45056,
"tick": 99840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4211,9 +4211,9 @@
},
"long_point": [
{
"tick": 101760,
"left_pos": 28672,
"right_pos": 53248,
"tick": 101760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4234,9 +4234,9 @@
},
"long_point": [
{
"tick": 101760,
"left_pos": 12288,
"right_pos": 36864,
"tick": 101760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4287,9 +4287,9 @@
},
"long_point": [
{
"tick": 103680,
"left_pos": 20480,
"right_pos": 45056,
"tick": 103680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4310,9 +4310,9 @@
},
"long_point": [
{
"tick": 103680,
"left_pos": 20480,
"right_pos": 45056,
"tick": 103680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4363,9 +4363,9 @@
},
"long_point": [
{
"tick": 105600,
"left_pos": 28672,
"right_pos": 53248,
"tick": 105600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4386,9 +4386,9 @@
},
"long_point": [
{
"tick": 105600,
"left_pos": 12288,
"right_pos": 36864,
"tick": 105600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4439,9 +4439,9 @@
},
"long_point": [
{
"tick": 106080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 106080,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4462,9 +4462,9 @@
},
"long_point": [
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 106080,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4485,9 +4485,9 @@
},
"long_point": [
{
"tick": 107040,
"left_pos": 36864,
"right_pos": 61440,
"tick": 107040,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4508,9 +4508,9 @@
},
"long_point": [
{
"left_pos": 4096,
"right_pos": 28672,
"tick": 107040,
"left_pos": 4096,
"right_pos": 28672,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4531,9 +4531,9 @@
},
"long_point": [
{
"tick": 108000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 108000,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4554,9 +4554,9 @@
},
"long_point": [
{
"tick": 108000,
"left_pos": 4096,
"right_pos": 28672,
"tick": 108000,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4577,9 +4577,9 @@
},
"long_point": [
{
"tick": 108960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 108960,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4600,9 +4600,9 @@
},
"long_point": [
{
"tick": 108960,
"left_pos": 4096,
"right_pos": 28672,
"tick": 108960,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4743,9 +4743,9 @@
},
"long_point": [
{
"tick": 113760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 113760,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4766,9 +4766,9 @@
},
"long_point": [
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 113760,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4789,9 +4789,9 @@
},
"long_point": [
{
"tick": 114720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 114720,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4812,9 +4812,9 @@
},
"long_point": [
{
"left_pos": 4096,
"right_pos": 28672,
"tick": 114720,
"left_pos": 4096,
"right_pos": 28672,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4835,9 +4835,9 @@
},
"long_point": [
{
"tick": 115680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 115680,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4858,9 +4858,9 @@
},
"long_point": [
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 115680,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4881,9 +4881,9 @@
},
"long_point": [
{
"tick": 116640,
"left_pos": 4096,
"right_pos": 28672,
"tick": 116640,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4904,9 +4904,9 @@
},
"long_point": [
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 116640,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4927,9 +4927,9 @@
},
"long_point": [
{
"tick": 117600,
"left_pos": 36864,
"right_pos": 61440,
"tick": 117600,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4950,9 +4950,9 @@
},
"long_point": [
{
"left_pos": 4096,
"right_pos": 28672,
"tick": 117600,
"left_pos": 4096,
"right_pos": 28672,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4973,9 +4973,9 @@
},
"long_point": [
{
"tick": 118560,
"left_pos": 36864,
"right_pos": 61440,
"tick": 118560,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -4996,9 +4996,9 @@
},
"long_point": [
{
"left_pos": 4096,
"right_pos": 28672,
"tick": 118560,
"left_pos": 4096,
"right_pos": 28672,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -5019,9 +5019,9 @@
},
"long_point": [
{
"tick": 119520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 119520,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -5042,9 +5042,9 @@
},
"long_point": [
{
"tick": 119520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 119520,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -5065,9 +5065,9 @@
},
"long_point": [
{
"tick": 120480,
"left_pos": 4096,
"right_pos": 28672,
"tick": 120480,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -5088,9 +5088,9 @@
},
"long_point": [
{
"tick": 120480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 120480,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -5111,9 +5111,9 @@
},
"long_point": [
{
"tick": 122880,
"left_pos": 24576,
"right_pos": 49152,
"tick": 122880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5134,9 +5134,9 @@
},
"long_point": [
{
"tick": 122880,
"left_pos": 16384,
"right_pos": 40960,
"tick": 122880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5187,9 +5187,9 @@
},
"long_point": [
{
"tick": 123840,
"left_pos": 12288,
"right_pos": 36864,
"tick": 123840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5210,9 +5210,9 @@
},
"long_point": [
{
"tick": 123840,
"left_pos": 28672,
"right_pos": 53248,
"tick": 123840,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -246,9 +246,9 @@
},
"long_point": [
{
"tick": 10080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 10080,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -269,9 +269,9 @@
},
"long_point": [
{
"tick": 11040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 11040,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -457,9 +457,9 @@
},
"long_point": [
{
"tick": 17760,
"left_pos": 36864,
"right_pos": 61440,
"tick": 17760,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -480,9 +480,9 @@
},
"long_point": [
{
"tick": 18720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 18720,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -788,9 +788,9 @@
},
"long_point": [
{
"tick": 29280,
"left_pos": 28672,
"right_pos": 53248,
"tick": 29280,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -826,9 +826,9 @@
},
"long_point": [
{
"tick": 31200,
"left_pos": 28672,
"right_pos": 53248,
"tick": 31200,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -984,9 +984,9 @@
},
"long_point": [
{
"tick": 36960,
"left_pos": 12288,
"right_pos": 36864,
"tick": 36960,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1022,9 +1022,9 @@
},
"long_point": [
{
"tick": 38880,
"left_pos": 12288,
"right_pos": 36864,
"tick": 38880,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1180,9 +1180,9 @@
},
"long_point": [
{
"tick": 44640,
"left_pos": 20480,
"right_pos": 45056,
"tick": 44640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1203,9 +1203,9 @@
},
"long_point": [
{
"tick": 45120,
"left_pos": 20480,
"right_pos": 45056,
"tick": 45120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1226,9 +1226,9 @@
},
"long_point": [
{
"tick": 45600,
"left_pos": 20480,
"right_pos": 45056,
"tick": 45600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1249,9 +1249,9 @@
},
"long_point": [
{
"tick": 46080,
"left_pos": 20480,
"right_pos": 45056,
"tick": 46080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1452,9 +1452,9 @@
},
"long_point": [
{
"tick": 52320,
"left_pos": 20480,
"right_pos": 45056,
"tick": 52320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1475,9 +1475,9 @@
},
"long_point": [
{
"tick": 52800,
"left_pos": 20480,
"right_pos": 45056,
"tick": 52800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1498,9 +1498,9 @@
},
"long_point": [
{
"tick": 53280,
"left_pos": 20480,
"right_pos": 45056,
"tick": 53280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1521,9 +1521,9 @@
},
"long_point": [
{
"tick": 53760,
"left_pos": 20480,
"right_pos": 45056,
"tick": 53760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1634,9 +1634,9 @@
},
"long_point": [
{
"tick": 59520,
"left_pos": 20480,
"right_pos": 45056,
"tick": 59520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1912,9 +1912,9 @@
},
"long_point": [
{
"tick": 72000,
"left_pos": 40960,
"right_pos": 65536,
"tick": 72000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1935,9 +1935,9 @@
},
"long_point": [
{
"tick": 73920,
"left_pos": 4096,
"right_pos": 28672,
"tick": 73920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1958,9 +1958,9 @@
},
"long_point": [
{
"tick": 75360,
"left_pos": 36864,
"right_pos": 61440,
"tick": 75360,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1981,9 +1981,9 @@
},
"long_point": [
{
"tick": 76320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 76320,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2049,9 +2049,9 @@
},
"long_point": [
{
"tick": 79200,
"left_pos": 4096,
"right_pos": 28672,
"tick": 79200,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2072,9 +2072,9 @@
},
"long_point": [
{
"tick": 80160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 80160,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2260,9 +2260,9 @@
},
"long_point": [
{
"tick": 86880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 86880,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2283,9 +2283,9 @@
},
"long_point": [
{
"tick": 87840,
"left_pos": 36864,
"right_pos": 61440,
"tick": 87840,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2591,9 +2591,9 @@
},
"long_point": [
{
"tick": 98400,
"left_pos": 28672,
"right_pos": 53248,
"tick": 98400,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2629,9 +2629,9 @@
},
"long_point": [
{
"tick": 100320,
"left_pos": 28672,
"right_pos": 53248,
"tick": 100320,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2787,9 +2787,9 @@
},
"long_point": [
{
"tick": 106080,
"left_pos": 12288,
"right_pos": 36864,
"tick": 106080,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2810,9 +2810,9 @@
},
"long_point": [
{
"tick": 107040,
"left_pos": 12288,
"right_pos": 36864,
"tick": 107040,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2833,9 +2833,9 @@
},
"long_point": [
{
"tick": 108000,
"left_pos": 12288,
"right_pos": 36864,
"tick": 108000,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2856,9 +2856,9 @@
},
"long_point": [
{
"tick": 108960,
"left_pos": 12288,
"right_pos": 36864,
"tick": 108960,
"left_end_pos": 20480,
"right_end_pos": 45056
}
File diff suppressed because it is too large Load Diff
@@ -456,9 +456,9 @@
},
"long_point": [
{
"tick": 10080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 10080,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -479,9 +479,9 @@
},
"long_point": [
{
"tick": 10080,
"left_pos": 36864,
"right_pos": 61440,
"tick": 10080,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -502,9 +502,9 @@
},
"long_point": [
{
"tick": 11040,
"left_pos": 36864,
"right_pos": 61440,
"tick": 11040,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -525,9 +525,9 @@
},
"long_point": [
{
"tick": 11040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 11040,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -863,9 +863,9 @@
},
"long_point": [
{
"tick": 17760,
"left_pos": 36864,
"right_pos": 61440,
"tick": 17760,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -886,9 +886,9 @@
},
"long_point": [
{
"tick": 17760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 17760,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -909,9 +909,9 @@
},
"long_point": [
{
"tick": 18720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 18720,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -932,9 +932,9 @@
},
"long_point": [
{
"tick": 18720,
"left_pos": 4096,
"right_pos": 28672,
"tick": 18720,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1510,9 +1510,9 @@
},
"long_point": [
{
"tick": 29280,
"left_pos": 8192,
"right_pos": 32768,
"tick": 29280,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1533,9 +1533,9 @@
},
"long_point": [
{
"left_pos": 32768,
"right_pos": 57344,
"tick": 29280,
"left_pos": 32768,
"right_pos": 57344,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1586,9 +1586,9 @@
},
"long_point": [
{
"tick": 31200,
"left_pos": 32768,
"right_pos": 57344,
"tick": 31200,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1609,9 +1609,9 @@
},
"long_point": [
{
"tick": 31200,
"left_pos": 8192,
"right_pos": 32768,
"tick": 31200,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1902,9 +1902,9 @@
},
"long_point": [
{
"tick": 36960,
"left_pos": 8192,
"right_pos": 32768,
"tick": 36960,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1925,9 +1925,9 @@
},
"long_point": [
{
"left_pos": 32768,
"right_pos": 57344,
"tick": 36960,
"left_pos": 32768,
"right_pos": 57344,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1978,9 +1978,9 @@
},
"long_point": [
{
"tick": 38880,
"left_pos": 32768,
"right_pos": 57344,
"tick": 38880,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -2001,9 +2001,9 @@
},
"long_point": [
{
"tick": 38880,
"left_pos": 8192,
"right_pos": 32768,
"tick": 38880,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2294,9 +2294,9 @@
},
"long_point": [
{
"tick": 44640,
"left_pos": 12288,
"right_pos": 36864,
"tick": 44640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2317,9 +2317,9 @@
},
"long_point": [
{
"left_pos": 28672,
"right_pos": 53248,
"tick": 44640,
"left_pos": 28672,
"right_pos": 53248,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2340,9 +2340,9 @@
},
"long_point": [
{
"tick": 45120,
"left_pos": 12288,
"right_pos": 36864,
"tick": 45120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2363,9 +2363,9 @@
},
"long_point": [
{
"left_pos": 28672,
"right_pos": 53248,
"tick": 45120,
"left_pos": 28672,
"right_pos": 53248,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2386,9 +2386,9 @@
},
"long_point": [
{
"tick": 45600,
"left_pos": 28672,
"right_pos": 53248,
"tick": 45600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2409,9 +2409,9 @@
},
"long_point": [
{
"tick": 45600,
"left_pos": 12288,
"right_pos": 36864,
"tick": 45600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2432,9 +2432,9 @@
},
"long_point": [
{
"tick": 46080,
"left_pos": 12288,
"right_pos": 36864,
"tick": 46080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2455,9 +2455,9 @@
},
"long_point": [
{
"tick": 46080,
"left_pos": 28672,
"right_pos": 53248,
"tick": 46080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2838,9 +2838,9 @@
},
"long_point": [
{
"tick": 52320,
"left_pos": 28672,
"right_pos": 53248,
"tick": 52320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2861,9 +2861,9 @@
},
"long_point": [
{
"left_pos": 12288,
"right_pos": 36864,
"tick": 52320,
"left_pos": 12288,
"right_pos": 36864,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2884,9 +2884,9 @@
},
"long_point": [
{
"tick": 52800,
"left_pos": 12288,
"right_pos": 36864,
"tick": 52800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2907,9 +2907,9 @@
},
"long_point": [
{
"left_pos": 28672,
"right_pos": 53248,
"tick": 52800,
"left_pos": 28672,
"right_pos": 53248,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2930,9 +2930,9 @@
},
"long_point": [
{
"tick": 53280,
"left_pos": 12288,
"right_pos": 36864,
"tick": 53280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2953,9 +2953,9 @@
},
"long_point": [
{
"tick": 53280,
"left_pos": 28672,
"right_pos": 53248,
"tick": 53280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2976,9 +2976,9 @@
},
"long_point": [
{
"tick": 53760,
"left_pos": 12288,
"right_pos": 36864,
"tick": 53760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2999,9 +2999,9 @@
},
"long_point": [
{
"tick": 53760,
"left_pos": 28672,
"right_pos": 53248,
"tick": 53760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3187,9 +3187,9 @@
},
"long_point": [
{
"tick": 59520,
"left_pos": 24576,
"right_pos": 49152,
"tick": 59520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3210,9 +3210,9 @@
},
"long_point": [
{
"tick": 59520,
"left_pos": 16384,
"right_pos": 40960,
"tick": 59520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3728,9 +3728,9 @@
},
"long_point": [
{
"tick": 72000,
"left_pos": 40960,
"right_pos": 65536,
"tick": 72000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3751,9 +3751,9 @@
},
"long_point": [
{
"tick": 72000,
"left_pos": 0,
"right_pos": 24576,
"tick": 72000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3774,9 +3774,9 @@
},
"long_point": [
{
"tick": 73920,
"left_pos": 8192,
"right_pos": 32768,
"tick": 73920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3797,9 +3797,9 @@
},
"long_point": [
{
"tick": 73920,
"left_pos": 32768,
"right_pos": 57344,
"tick": 73920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3820,9 +3820,9 @@
},
"long_point": [
{
"tick": 75360,
"left_pos": 0,
"right_pos": 24576,
"tick": 75360,
"left_end_pos": 8192,
"right_end_pos": 32768
}
@@ -3843,9 +3843,9 @@
},
"long_point": [
{
"tick": 75360,
"left_pos": 40960,
"right_pos": 65536,
"tick": 75360,
"left_end_pos": 32768,
"right_end_pos": 57344
}
@@ -3866,9 +3866,9 @@
},
"long_point": [
{
"tick": 76320,
"left_pos": 32768,
"right_pos": 57344,
"tick": 76320,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -3889,9 +3889,9 @@
},
"long_point": [
{
"tick": 76320,
"left_pos": 8192,
"right_pos": 32768,
"tick": 76320,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -3987,9 +3987,9 @@
},
"long_point": [
{
"tick": 79200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 79200,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -4010,9 +4010,9 @@
},
"long_point": [
{
"tick": 79200,
"left_pos": 4096,
"right_pos": 28672,
"tick": 79200,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -4033,9 +4033,9 @@
},
"long_point": [
{
"tick": 80160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 80160,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -4056,9 +4056,9 @@
},
"long_point": [
{
"tick": 80160,
"left_pos": 36864,
"right_pos": 61440,
"tick": 80160,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -4394,9 +4394,9 @@
},
"long_point": [
{
"tick": 86880,
"left_pos": 4096,
"right_pos": 28672,
"tick": 86880,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -4417,9 +4417,9 @@
},
"long_point": [
{
"tick": 86880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 86880,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -4440,9 +4440,9 @@
},
"long_point": [
{
"tick": 87840,
"left_pos": 36864,
"right_pos": 61440,
"tick": 87840,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -4463,9 +4463,9 @@
},
"long_point": [
{
"tick": 87840,
"left_pos": 4096,
"right_pos": 28672,
"tick": 87840,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -5041,9 +5041,9 @@
},
"long_point": [
{
"tick": 98400,
"left_pos": 8192,
"right_pos": 32768,
"tick": 98400,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -5064,9 +5064,9 @@
},
"long_point": [
{
"left_pos": 32768,
"right_pos": 57344,
"tick": 98400,
"left_pos": 32768,
"right_pos": 57344,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -5117,9 +5117,9 @@
},
"long_point": [
{
"tick": 100320,
"left_pos": 8192,
"right_pos": 32768,
"tick": 100320,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -5140,9 +5140,9 @@
},
"long_point": [
{
"tick": 100320,
"left_pos": 32768,
"right_pos": 57344,
"tick": 100320,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -5433,9 +5433,9 @@
},
"long_point": [
{
"tick": 106080,
"left_pos": 32768,
"right_pos": 57344,
"tick": 106080,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -5456,9 +5456,9 @@
},
"long_point": [
{
"left_pos": 8192,
"right_pos": 32768,
"tick": 106080,
"left_pos": 8192,
"right_pos": 32768,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -5479,9 +5479,9 @@
},
"long_point": [
{
"tick": 107040,
"left_pos": 32768,
"right_pos": 57344,
"tick": 107040,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -5502,9 +5502,9 @@
},
"long_point": [
{
"left_pos": 8192,
"right_pos": 32768,
"tick": 107040,
"left_pos": 8192,
"right_pos": 32768,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -5525,9 +5525,9 @@
},
"long_point": [
{
"tick": 108000,
"left_pos": 32768,
"right_pos": 57344,
"tick": 108000,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -5548,9 +5548,9 @@
},
"long_point": [
{
"tick": 108000,
"left_pos": 8192,
"right_pos": 32768,
"tick": 108000,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -5571,9 +5571,9 @@
},
"long_point": [
{
"tick": 108960,
"left_pos": 32768,
"right_pos": 57344,
"tick": 108960,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -5594,9 +5594,9 @@
},
"long_point": [
{
"tick": 108960,
"left_pos": 8192,
"right_pos": 32768,
"tick": 108960,
"left_end_pos": 16384,
"right_end_pos": 40960
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -36,9 +36,9 @@
},
"long_point": [
{
"tick": 2880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 2880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -74,9 +74,9 @@
},
"long_point": [
{
"tick": 4800,
"left_pos": 4096,
"right_pos": 28672,
"tick": 4800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -112,9 +112,9 @@
},
"long_point": [
{
"tick": 6720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 6720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -150,9 +150,9 @@
},
"long_point": [
{
"tick": 8640,
"left_pos": 4096,
"right_pos": 28672,
"tick": 8640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -188,9 +188,9 @@
},
"long_point": [
{
"tick": 11520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 11520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -256,9 +256,9 @@
},
"long_point": [
{
"tick": 13440,
"left_pos": 4096,
"right_pos": 28672,
"tick": 13440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -564,9 +564,9 @@
},
"long_point": [
{
"tick": 20640,
"left_pos": 16384,
"right_pos": 40960,
"tick": 20640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -692,9 +692,9 @@
},
"long_point": [
{
"tick": 24480,
"left_pos": 24576,
"right_pos": 49152,
"tick": 24480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -850,9 +850,9 @@
},
"long_point": [
{
"tick": 29280,
"left_pos": 36864,
"right_pos": 61440,
"tick": 29280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -888,9 +888,9 @@
},
"long_point": [
{
"tick": 30240,
"left_pos": 4096,
"right_pos": 28672,
"tick": 30240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -956,9 +956,9 @@
},
"long_point": [
{
"tick": 32160,
"left_pos": 12288,
"right_pos": 36864,
"tick": 32160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -979,9 +979,9 @@
},
"long_point": [
{
"tick": 32160,
"left_pos": 28672,
"right_pos": 53248,
"tick": 32160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1032,9 +1032,9 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 36864,
"right_pos": 61440,
"tick": 34080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1100,9 +1100,9 @@
},
"long_point": [
{
"tick": 36000,
"left_pos": 4096,
"right_pos": 28672,
"tick": 36000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1138,9 +1138,9 @@
},
"long_point": [
{
"tick": 38400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 38400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1206,9 +1206,9 @@
},
"long_point": [
{
"tick": 40320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1274,9 +1274,9 @@
},
"long_point": [
{
"tick": 41280,
"left_pos": 36864,
"right_pos": 61440,
"tick": 41280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1312,9 +1312,9 @@
},
"long_point": [
{
"tick": 43200,
"left_pos": 4096,
"right_pos": 28672,
"tick": 43200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1440,9 +1440,9 @@
},
"long_point": [
{
"tick": 47040,
"left_pos": 28672,
"right_pos": 53248,
"tick": 47040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1463,9 +1463,9 @@
},
"long_point": [
{
"tick": 47040,
"left_pos": 12288,
"right_pos": 36864,
"tick": 47040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1621,9 +1621,9 @@
},
"long_point": [
{
"tick": 51360,
"left_pos": 24576,
"right_pos": 49152,
"tick": 51360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1749,9 +1749,9 @@
},
"long_point": [
{
"tick": 55200,
"left_pos": 16384,
"right_pos": 40960,
"tick": 55200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1907,9 +1907,9 @@
},
"long_point": [
{
"tick": 60000,
"left_pos": 4096,
"right_pos": 28672,
"tick": 60000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1945,9 +1945,9 @@
},
"long_point": [
{
"tick": 60960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 60960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2013,9 +2013,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 12288,
"right_pos": 36864,
"tick": 62880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2036,9 +2036,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 28672,
"right_pos": 53248,
"tick": 62880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2149,9 +2149,9 @@
},
"long_point": [
{
"tick": 66720,
"left_pos": 4096,
"right_pos": 28672,
"tick": 66720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2202,9 +2202,9 @@
},
"long_point": [
{
"tick": 67680,
"left_pos": 36864,
"right_pos": 61440,
"tick": 67680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2240,9 +2240,9 @@
},
"long_point": [
{
"tick": 68640,
"left_pos": 4096,
"right_pos": 28672,
"tick": 68640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2443,9 +2443,9 @@
},
"long_point": [
{
"tick": 74400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 74400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2496,9 +2496,9 @@
},
"long_point": [
{
"tick": 75360,
"left_pos": 4096,
"right_pos": 28672,
"tick": 75360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2534,9 +2534,9 @@
},
"long_point": [
{
"tick": 76320,
"left_pos": 36864,
"right_pos": 61440,
"tick": 76320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2662,9 +2662,9 @@
},
"long_point": [
{
"tick": 80640,
"left_pos": 36864,
"right_pos": 61440,
"tick": 80640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2715,9 +2715,9 @@
},
"long_point": [
{
"tick": 82560,
"left_pos": 4096,
"right_pos": 28672,
"tick": 82560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2768,9 +2768,9 @@
},
"long_point": [
{
"tick": 84480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 84480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2821,9 +2821,9 @@
},
"long_point": [
{
"tick": 86400,
"left_pos": 4096,
"right_pos": 28672,
"tick": 86400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2874,9 +2874,9 @@
},
"long_point": [
{
"tick": 87360,
"left_pos": 36864,
"right_pos": 61440,
"tick": 87360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2912,9 +2912,9 @@
},
"long_point": [
{
"tick": 89280,
"left_pos": 4096,
"right_pos": 28672,
"tick": 89280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2950,9 +2950,9 @@
},
"long_point": [
{
"tick": 91200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 91200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3048,9 +3048,9 @@
},
"long_point": [
{
"tick": 94080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 94080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3071,9 +3071,9 @@
},
"long_point": [
{
"tick": 94080,
"left_pos": 36864,
"right_pos": 61440,
"tick": 94080,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
@@ -36,9 +36,9 @@
},
"long_point": [
{
"tick": 2880,
"left_pos": 40960,
"right_pos": 65536,
"tick": 2880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -59,9 +59,9 @@
},
"long_point": [
{
"left_pos": 0,
"right_pos": 24576,
"tick": 2880,
"left_pos": 0,
"right_pos": 24576,
"left_end_pos": null,
"right_end_pos": null
}
@@ -112,9 +112,9 @@
},
"long_point": [
{
"tick": 4800,
"left_pos": 24576,
"right_pos": 49152,
"tick": 4800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -135,9 +135,9 @@
},
"long_point": [
{
"tick": 4800,
"left_pos": 16384,
"right_pos": 40960,
"tick": 4800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -188,9 +188,9 @@
},
"long_point": [
{
"tick": 6720,
"left_pos": 0,
"right_pos": 24576,
"tick": 6720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -211,9 +211,9 @@
},
"long_point": [
{
"tick": 6720,
"left_pos": 40960,
"right_pos": 65536,
"tick": 6720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -264,9 +264,9 @@
},
"long_point": [
{
"tick": 8640,
"left_pos": 16384,
"right_pos": 40960,
"tick": 8640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -287,9 +287,9 @@
},
"long_point": [
{
"tick": 8640,
"left_pos": 24576,
"right_pos": 49152,
"tick": 8640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -340,9 +340,9 @@
},
"long_point": [
{
"tick": 11520,
"left_pos": 40960,
"right_pos": 65536,
"tick": 11520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -363,9 +363,9 @@
},
"long_point": [
{
"tick": 11520,
"left_pos": 0,
"right_pos": 24576,
"tick": 11520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -476,9 +476,9 @@
},
"long_point": [
{
"tick": 13440,
"left_pos": 12288,
"right_pos": 36864,
"tick": 13440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -499,9 +499,9 @@
},
"long_point": [
{
"tick": 13440,
"left_pos": 28672,
"right_pos": 53248,
"tick": 13440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1092,9 +1092,9 @@
},
"long_point": [
{
"tick": 20640,
"left_pos": 16384,
"right_pos": 40960,
"tick": 20640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1115,9 +1115,9 @@
},
"long_point": [
{
"tick": 20640,
"left_pos": 24576,
"right_pos": 49152,
"tick": 20640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1348,9 +1348,9 @@
},
"long_point": [
{
"tick": 24480,
"left_pos": 16384,
"right_pos": 40960,
"tick": 24480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1371,9 +1371,9 @@
},
"long_point": [
{
"tick": 24480,
"left_pos": 24576,
"right_pos": 49152,
"tick": 24480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1664,9 +1664,9 @@
},
"long_point": [
{
"tick": 29280,
"left_pos": 40960,
"right_pos": 65536,
"tick": 29280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1687,9 +1687,9 @@
},
"long_point": [
{
"tick": 29280,
"left_pos": 0,
"right_pos": 24576,
"tick": 29280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1740,9 +1740,9 @@
},
"long_point": [
{
"tick": 30240,
"left_pos": 24576,
"right_pos": 49152,
"tick": 30240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1763,9 +1763,9 @@
},
"long_point": [
{
"tick": 30240,
"left_pos": 16384,
"right_pos": 40960,
"tick": 30240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1876,9 +1876,9 @@
},
"long_point": [
{
"tick": 32160,
"left_pos": 20480,
"right_pos": 45056,
"tick": 32160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1899,9 +1899,9 @@
},
"long_point": [
{
"tick": 32160,
"left_pos": 36864,
"right_pos": 61440,
"tick": 32160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1922,9 +1922,9 @@
},
"long_point": [
{
"tick": 32160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 32160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1945,9 +1945,9 @@
},
"long_point": [
{
"tick": 32160,
"left_pos": 20480,
"right_pos": 45056,
"tick": 32160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2028,9 +2028,9 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 40960,
"right_pos": 65536,
"tick": 34080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2051,9 +2051,9 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 0,
"right_pos": 24576,
"tick": 34080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2164,9 +2164,9 @@
},
"long_point": [
{
"tick": 36000,
"left_pos": 24576,
"right_pos": 49152,
"tick": 36000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2187,9 +2187,9 @@
},
"long_point": [
{
"tick": 36000,
"left_pos": 16384,
"right_pos": 40960,
"tick": 36000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2240,9 +2240,9 @@
},
"long_point": [
{
"tick": 38400,
"left_pos": 0,
"right_pos": 24576,
"tick": 38400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2263,9 +2263,9 @@
},
"long_point": [
{
"tick": 38400,
"left_pos": 40960,
"right_pos": 65536,
"tick": 38400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2376,9 +2376,9 @@
},
"long_point": [
{
"tick": 40320,
"left_pos": 28672,
"right_pos": 53248,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2399,9 +2399,9 @@
},
"long_point": [
{
"tick": 40320,
"left_pos": 12288,
"right_pos": 36864,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2512,9 +2512,9 @@
},
"long_point": [
{
"tick": 41280,
"left_pos": 40960,
"right_pos": 65536,
"tick": 41280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2535,9 +2535,9 @@
},
"long_point": [
{
"tick": 41280,
"left_pos": 0,
"right_pos": 24576,
"tick": 41280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2588,9 +2588,9 @@
},
"long_point": [
{
"tick": 43200,
"left_pos": 16384,
"right_pos": 40960,
"tick": 43200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2611,9 +2611,9 @@
},
"long_point": [
{
"tick": 43200,
"left_pos": 24576,
"right_pos": 49152,
"tick": 43200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2844,9 +2844,9 @@
},
"long_point": [
{
"tick": 47040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 47040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2867,9 +2867,9 @@
},
"long_point": [
{
"tick": 47040,
"left_pos": 36864,
"right_pos": 61440,
"tick": 47040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2890,9 +2890,9 @@
},
"long_point": [
{
"tick": 47040,
"left_pos": 20480,
"right_pos": 45056,
"tick": 47040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2913,9 +2913,9 @@
},
"long_point": [
{
"tick": 47040,
"left_pos": 20480,
"right_pos": 45056,
"tick": 47040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3191,9 +3191,9 @@
},
"long_point": [
{
"tick": 51360,
"left_pos": 16384,
"right_pos": 40960,
"tick": 51360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3214,9 +3214,9 @@
},
"long_point": [
{
"tick": 51360,
"left_pos": 24576,
"right_pos": 49152,
"tick": 51360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3447,9 +3447,9 @@
},
"long_point": [
{
"tick": 55200,
"left_pos": 16384,
"right_pos": 40960,
"tick": 55200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3470,9 +3470,9 @@
},
"long_point": [
{
"tick": 55200,
"left_pos": 24576,
"right_pos": 49152,
"tick": 55200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3763,9 +3763,9 @@
},
"long_point": [
{
"tick": 60000,
"left_pos": 0,
"right_pos": 24576,
"tick": 60000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3786,9 +3786,9 @@
},
"long_point": [
{
"tick": 60000,
"left_pos": 40960,
"right_pos": 65536,
"tick": 60000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3839,9 +3839,9 @@
},
"long_point": [
{
"tick": 60960,
"left_pos": 16384,
"right_pos": 40960,
"tick": 60960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3862,9 +3862,9 @@
},
"long_point": [
{
"tick": 60960,
"left_pos": 24576,
"right_pos": 49152,
"tick": 60960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3975,9 +3975,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 4096,
"right_pos": 28672,
"tick": 62880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3998,9 +3998,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 20480,
"right_pos": 45056,
"tick": 62880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4021,9 +4021,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 20480,
"right_pos": 45056,
"tick": 62880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4044,9 +4044,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 62880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4232,9 +4232,9 @@
},
"long_point": [
{
"tick": 66720,
"left_pos": 0,
"right_pos": 24576,
"tick": 66720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4255,9 +4255,9 @@
},
"long_point": [
{
"left_pos": 40960,
"right_pos": 65536,
"tick": 66720,
"left_pos": 40960,
"right_pos": 65536,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4338,9 +4338,9 @@
},
"long_point": [
{
"tick": 67680,
"left_pos": 16384,
"right_pos": 40960,
"tick": 67680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4361,9 +4361,9 @@
},
"long_point": [
{
"tick": 67680,
"left_pos": 24576,
"right_pos": 49152,
"tick": 67680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4414,9 +4414,9 @@
},
"long_point": [
{
"tick": 68640,
"left_pos": 0,
"right_pos": 24576,
"tick": 68640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4437,9 +4437,9 @@
},
"long_point": [
{
"tick": 68640,
"left_pos": 40960,
"right_pos": 65536,
"tick": 68640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4820,9 +4820,9 @@
},
"long_point": [
{
"tick": 74400,
"left_pos": 24576,
"right_pos": 49152,
"tick": 74400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4843,9 +4843,9 @@
},
"long_point": [
{
"left_pos": 16384,
"right_pos": 40960,
"tick": 74400,
"left_pos": 16384,
"right_pos": 40960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4926,9 +4926,9 @@
},
"long_point": [
{
"tick": 75360,
"left_pos": 40960,
"right_pos": 65536,
"tick": 75360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4949,9 +4949,9 @@
},
"long_point": [
{
"tick": 75360,
"left_pos": 0,
"right_pos": 24576,
"tick": 75360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5002,9 +5002,9 @@
},
"long_point": [
{
"tick": 76320,
"left_pos": 16384,
"right_pos": 40960,
"tick": 76320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5025,9 +5025,9 @@
},
"long_point": [
{
"tick": 76320,
"left_pos": 24576,
"right_pos": 49152,
"tick": 76320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5258,9 +5258,9 @@
},
"long_point": [
{
"tick": 80640,
"left_pos": 16384,
"right_pos": 40960,
"tick": 80640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5281,9 +5281,9 @@
},
"long_point": [
{
"left_pos": 24576,
"right_pos": 49152,
"tick": 80640,
"left_pos": 24576,
"right_pos": 49152,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5364,9 +5364,9 @@
},
"long_point": [
{
"tick": 82560,
"left_pos": 40960,
"right_pos": 65536,
"tick": 82560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5387,9 +5387,9 @@
},
"long_point": [
{
"left_pos": 0,
"right_pos": 24576,
"tick": 82560,
"left_pos": 0,
"right_pos": 24576,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5470,9 +5470,9 @@
},
"long_point": [
{
"tick": 84480,
"left_pos": 16384,
"right_pos": 40960,
"tick": 84480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5493,9 +5493,9 @@
},
"long_point": [
{
"left_pos": 24576,
"right_pos": 49152,
"tick": 84480,
"left_pos": 24576,
"right_pos": 49152,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5576,9 +5576,9 @@
},
"long_point": [
{
"tick": 86400,
"left_pos": 40960,
"right_pos": 65536,
"tick": 86400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5599,9 +5599,9 @@
},
"long_point": [
{
"tick": 86400,
"left_pos": 0,
"right_pos": 24576,
"tick": 86400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5682,9 +5682,9 @@
},
"long_point": [
{
"tick": 87360,
"left_pos": 16384,
"right_pos": 40960,
"tick": 87360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5705,9 +5705,9 @@
},
"long_point": [
{
"tick": 87360,
"left_pos": 24576,
"right_pos": 49152,
"tick": 87360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5758,9 +5758,9 @@
},
"long_point": [
{
"tick": 89280,
"left_pos": 0,
"right_pos": 24576,
"tick": 89280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5781,9 +5781,9 @@
},
"long_point": [
{
"tick": 89280,
"left_pos": 40960,
"right_pos": 65536,
"tick": 89280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5834,9 +5834,9 @@
},
"long_point": [
{
"tick": 91200,
"left_pos": 24576,
"right_pos": 49152,
"tick": 91200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -5857,9 +5857,9 @@
},
"long_point": [
{
"tick": 91200,
"left_pos": 16384,
"right_pos": 40960,
"tick": 91200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -6030,9 +6030,9 @@
},
"long_point": [
{
"tick": 94080,
"left_pos": 24576,
"right_pos": 49152,
"tick": 94080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -6053,9 +6053,9 @@
},
"long_point": [
{
"tick": 94080,
"left_pos": 40960,
"right_pos": 65536,
"tick": 94080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -6076,9 +6076,9 @@
},
"long_point": [
{
"tick": 94080,
"left_pos": 0,
"right_pos": 24576,
"tick": 94080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -6099,9 +6099,9 @@
},
"long_point": [
{
"tick": 94080,
"left_pos": 16384,
"right_pos": 40960,
"tick": 94080,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -51,23 +51,23 @@
},
"long_point": [
{
"left_pos": 12288,
"right_pos": 36864,
"tick": 2880,
"left_pos": 12288,
"right_pos": 36864,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 12288,
"right_pos": 36864,
"tick": 3360,
"left_pos": 12288,
"right_pos": 36864,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 3840,
"left_pos": 36864,
"right_pos": 61440,
"tick": 3840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -133,23 +133,23 @@
},
"long_point": [
{
"left_pos": 28672,
"right_pos": 53248,
"tick": 6720,
"left_pos": 28672,
"right_pos": 53248,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 28672,
"right_pos": 53248,
"tick": 7200,
"left_pos": 28672,
"right_pos": 53248,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 7680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 7680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -200,23 +200,23 @@
},
"long_point": [
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 10560,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 11040,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 11520,
"left_pos": 24576,
"right_pos": 49152,
"tick": 11520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -267,23 +267,23 @@
},
"long_point": [
{
"left_pos": 4096,
"right_pos": 28672,
"tick": 14400,
"left_pos": 4096,
"right_pos": 28672,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 4096,
"right_pos": 28672,
"tick": 14880,
"left_pos": 4096,
"right_pos": 28672,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 15360,
"left_pos": 16384,
"right_pos": 40960,
"tick": 15360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -694,9 +694,9 @@
},
"long_point": [
{
"tick": 29280,
"left_pos": 36864,
"right_pos": 61440,
"tick": 29280,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -717,9 +717,9 @@
},
"long_point": [
{
"tick": 30240,
"left_pos": 4096,
"right_pos": 28672,
"tick": 30240,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -770,9 +770,9 @@
},
"long_point": [
{
"tick": 33360,
"left_pos": 36864,
"right_pos": 61440,
"tick": 33360,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -808,9 +808,9 @@
},
"long_point": [
{
"tick": 33840,
"left_pos": 36864,
"right_pos": 61440,
"tick": 33840,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -861,9 +861,9 @@
},
"long_point": [
{
"tick": 35280,
"left_pos": 4096,
"right_pos": 28672,
"tick": 35280,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -884,9 +884,9 @@
},
"long_point": [
{
"tick": 35760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 35760,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -937,9 +937,9 @@
},
"long_point": [
{
"tick": 37920,
"left_pos": 20480,
"right_pos": 45056,
"tick": 37920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1005,9 +1005,9 @@
},
"long_point": [
{
"tick": 39840,
"left_pos": 20480,
"right_pos": 45056,
"tick": 39840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1073,9 +1073,9 @@
},
"long_point": [
{
"tick": 41040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 41040,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1096,9 +1096,9 @@
},
"long_point": [
{
"tick": 41520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 41520,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1134,9 +1134,9 @@
},
"long_point": [
{
"tick": 43200,
"left_pos": 20480,
"right_pos": 45056,
"tick": 43200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1217,9 +1217,9 @@
},
"long_point": [
{
"tick": 44880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 44880,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1240,9 +1240,9 @@
},
"long_point": [
{
"tick": 45360,
"left_pos": 36864,
"right_pos": 61440,
"tick": 45360,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1278,9 +1278,9 @@
},
"long_point": [
{
"tick": 47040,
"left_pos": 20480,
"right_pos": 45056,
"tick": 47040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1616,9 +1616,9 @@
},
"long_point": [
{
"tick": 57600,
"left_pos": 16384,
"right_pos": 40960,
"tick": 57600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1744,9 +1744,9 @@
},
"long_point": [
{
"tick": 61440,
"left_pos": 24576,
"right_pos": 49152,
"tick": 61440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2502,16 +2502,16 @@
},
"long_point": [
{
"tick": 95040,
"left_pos": 32768,
"right_pos": 57344,
"tick": 95040,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 95520,
"left_pos": 40960,
"right_pos": 65536,
"tick": 95520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2532,9 +2532,9 @@
},
"long_point": [
{
"tick": 97440,
"left_pos": 16384,
"right_pos": 40960,
"tick": 97440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2600,9 +2600,9 @@
},
"long_point": [
{
"tick": 98160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 98160,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2623,9 +2623,9 @@
},
"long_point": [
{
"tick": 98640,
"left_pos": 4096,
"right_pos": 28672,
"tick": 98640,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2676,9 +2676,9 @@
},
"long_point": [
{
"tick": 101280,
"left_pos": 24576,
"right_pos": 49152,
"tick": 101280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2759,9 +2759,9 @@
},
"long_point": [
{
"tick": 102480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 102480,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2782,9 +2782,9 @@
},
"long_point": [
{
"tick": 102960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 102960,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2820,9 +2820,9 @@
},
"long_point": [
{
"tick": 105120,
"left_pos": 16384,
"right_pos": 40960,
"tick": 105120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2903,9 +2903,9 @@
},
"long_point": [
{
"tick": 106320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 106320,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2926,9 +2926,9 @@
},
"long_point": [
{
"tick": 106800,
"left_pos": 4096,
"right_pos": 28672,
"tick": 106800,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2964,9 +2964,9 @@
},
"long_point": [
{
"tick": 108000,
"left_pos": 4096,
"right_pos": 28672,
"tick": 108000,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2987,9 +2987,9 @@
},
"long_point": [
{
"tick": 108960,
"left_pos": 36864,
"right_pos": 61440,
"tick": 108960,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -3040,9 +3040,9 @@
},
"long_point": [
{
"tick": 110160,
"left_pos": 36864,
"right_pos": 61440,
"tick": 110160,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3063,9 +3063,9 @@
},
"long_point": [
{
"tick": 110640,
"left_pos": 36864,
"right_pos": 61440,
"tick": 110640,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3116,9 +3116,9 @@
},
"long_point": [
{
"tick": 112080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 112080,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3139,9 +3139,9 @@
},
"long_point": [
{
"tick": 112560,
"left_pos": 4096,
"right_pos": 28672,
"tick": 112560,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3192,9 +3192,9 @@
},
"long_point": [
{
"tick": 114720,
"left_pos": 20480,
"right_pos": 45056,
"tick": 114720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3260,9 +3260,9 @@
},
"long_point": [
{
"tick": 116640,
"left_pos": 20480,
"right_pos": 45056,
"tick": 116640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3328,9 +3328,9 @@
},
"long_point": [
{
"tick": 117840,
"left_pos": 4096,
"right_pos": 28672,
"tick": 117840,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3351,9 +3351,9 @@
},
"long_point": [
{
"tick": 118320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 118320,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3389,9 +3389,9 @@
},
"long_point": [
{
"tick": 120000,
"left_pos": 20480,
"right_pos": 45056,
"tick": 120000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3472,9 +3472,9 @@
},
"long_point": [
{
"tick": 122400,
"left_pos": 16384,
"right_pos": 40960,
"tick": 122400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3525,9 +3525,9 @@
},
"long_point": [
{
"tick": 123120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 123120,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3548,9 +3548,9 @@
},
"long_point": [
{
"tick": 123600,
"left_pos": 32768,
"right_pos": 57344,
"tick": 123600,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -3571,9 +3571,9 @@
},
"long_point": [
{
"tick": 124080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 124080,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3594,9 +3594,9 @@
},
"long_point": [
{
"tick": 124560,
"left_pos": 32768,
"right_pos": 57344,
"tick": 124560,
"left_end_pos": 24576,
"right_end_pos": 49152
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -36,9 +36,9 @@
},
"long_point": [
{
"tick": 2880,
"left_pos": 12288,
"right_pos": 36864,
"tick": 2880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -59,9 +59,9 @@
},
"long_point": [
{
"tick": 4800,
"left_pos": 40960,
"right_pos": 65536,
"tick": 4800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -82,9 +82,9 @@
},
"long_point": [
{
"tick": 6720,
"left_pos": 28672,
"right_pos": 53248,
"tick": 6720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -105,9 +105,9 @@
},
"long_point": [
{
"tick": 8640,
"left_pos": 28672,
"right_pos": 53248,
"tick": 8640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -128,9 +128,9 @@
},
"long_point": [
{
"tick": 10560,
"left_pos": 4096,
"right_pos": 28672,
"tick": 10560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -151,9 +151,9 @@
},
"long_point": [
{
"tick": 12480,
"left_pos": 8192,
"right_pos": 32768,
"tick": 12480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -174,9 +174,9 @@
},
"long_point": [
{
"tick": 14400,
"left_pos": 20480,
"right_pos": 45056,
"tick": 14400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -197,9 +197,9 @@
},
"long_point": [
{
"tick": 16320,
"left_pos": 40960,
"right_pos": 65536,
"tick": 16320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -685,9 +685,9 @@
},
"long_point": [
{
"tick": 40800,
"left_pos": 12288,
"right_pos": 36864,
"tick": 40800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -708,9 +708,9 @@
},
"long_point": [
{
"tick": 41760,
"left_pos": 32768,
"right_pos": 57344,
"tick": 41760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -731,9 +731,9 @@
},
"long_point": [
{
"tick": 42720,
"left_pos": 8192,
"right_pos": 32768,
"tick": 42720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -754,9 +754,9 @@
},
"long_point": [
{
"tick": 43680,
"left_pos": 36864,
"right_pos": 61440,
"tick": 43680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -777,9 +777,9 @@
},
"long_point": [
{
"tick": 44640,
"left_pos": 12288,
"right_pos": 36864,
"tick": 44640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -800,9 +800,9 @@
},
"long_point": [
{
"tick": 45600,
"left_pos": 32768,
"right_pos": 57344,
"tick": 45600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -823,9 +823,9 @@
},
"long_point": [
{
"tick": 46560,
"left_pos": 16384,
"right_pos": 40960,
"tick": 46560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -846,9 +846,9 @@
},
"long_point": [
{
"tick": 47520,
"left_pos": 28672,
"right_pos": 53248,
"tick": 47520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1334,9 +1334,9 @@
},
"long_point": [
{
"tick": 64320,
"left_pos": 36864,
"right_pos": 61440,
"tick": 64320,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1357,9 +1357,9 @@
},
"long_point": [
{
"tick": 66240,
"left_pos": 36864,
"right_pos": 61440,
"tick": 66240,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1380,9 +1380,9 @@
},
"long_point": [
{
"tick": 67680,
"left_pos": 40960,
"right_pos": 65536,
"tick": 67680,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1403,9 +1403,9 @@
},
"long_point": [
{
"tick": 68640,
"left_pos": 40960,
"right_pos": 65536,
"tick": 68640,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1426,9 +1426,9 @@
},
"long_point": [
{
"tick": 71040,
"left_pos": 12288,
"right_pos": 36864,
"tick": 71040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1464,9 +1464,9 @@
},
"long_point": [
{
"tick": 71520,
"left_pos": 0,
"right_pos": 24576,
"tick": 71520,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1487,9 +1487,9 @@
},
"long_point": [
{
"tick": 72480,
"left_pos": 0,
"right_pos": 24576,
"tick": 72480,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1510,9 +1510,9 @@
},
"long_point": [
{
"tick": 74880,
"left_pos": 28672,
"right_pos": 53248,
"tick": 74880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1548,9 +1548,9 @@
},
"long_point": [
{
"tick": 76800,
"left_pos": 12288,
"right_pos": 36864,
"tick": 76800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1646,9 +1646,9 @@
},
"long_point": [
{
"tick": 80640,
"left_pos": 28672,
"right_pos": 53248,
"tick": 80640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1684,9 +1684,9 @@
},
"long_point": [
{
"tick": 82560,
"left_pos": 12288,
"right_pos": 36864,
"tick": 82560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1722,9 +1722,9 @@
},
"long_point": [
{
"tick": 83040,
"left_pos": 0,
"right_pos": 24576,
"tick": 83040,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1745,9 +1745,9 @@
},
"long_point": [
{
"tick": 84000,
"left_pos": 0,
"right_pos": 24576,
"tick": 84000,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -1828,9 +1828,9 @@
},
"long_point": [
{
"tick": 88320,
"left_pos": 28672,
"right_pos": 53248,
"tick": 88320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1866,9 +1866,9 @@
},
"long_point": [
{
"tick": 90240,
"left_pos": 12288,
"right_pos": 36864,
"tick": 90240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1904,16 +1904,16 @@
},
"long_point": [
{
"tick": 91200,
"left_pos": 0,
"right_pos": 24576,
"tick": 91200,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 92160,
"left_pos": 20480,
"right_pos": 45056,
"tick": 92160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1964,9 +1964,9 @@
},
"long_point": [
{
"tick": 95040,
"left_pos": 28672,
"right_pos": 53248,
"tick": 95040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1987,9 +1987,9 @@
},
"long_point": [
{
"tick": 96960,
"left_pos": 8192,
"right_pos": 32768,
"tick": 96960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2010,9 +2010,9 @@
},
"long_point": [
{
"tick": 98880,
"left_pos": 32768,
"right_pos": 57344,
"tick": 98880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2033,9 +2033,9 @@
},
"long_point": [
{
"tick": 100800,
"left_pos": 24576,
"right_pos": 49152,
"tick": 100800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2056,9 +2056,9 @@
},
"long_point": [
{
"tick": 102720,
"left_pos": 28672,
"right_pos": 53248,
"tick": 102720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2079,9 +2079,9 @@
},
"long_point": [
{
"tick": 104640,
"left_pos": 4096,
"right_pos": 28672,
"tick": 104640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2102,9 +2102,9 @@
},
"long_point": [
{
"tick": 106560,
"left_pos": 32768,
"right_pos": 57344,
"tick": 106560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2125,9 +2125,9 @@
},
"long_point": [
{
"tick": 108480,
"left_pos": 4096,
"right_pos": 28672,
"tick": 108480,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
@@ -36,9 +36,9 @@
},
"long_point": [
{
"tick": 2880,
"left_pos": 24576,
"right_pos": 49152,
"tick": 2880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -59,9 +59,9 @@
},
"long_point": [
{
"tick": 2880,
"left_pos": 16384,
"right_pos": 40960,
"tick": 2880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -82,9 +82,9 @@
},
"long_point": [
{
"tick": 4800,
"left_pos": 0,
"right_pos": 24576,
"tick": 4800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -105,9 +105,9 @@
},
"long_point": [
{
"tick": 4800,
"left_pos": 40960,
"right_pos": 65536,
"tick": 4800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -128,9 +128,9 @@
},
"long_point": [
{
"tick": 6720,
"left_pos": 12288,
"right_pos": 36864,
"tick": 6720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -151,9 +151,9 @@
},
"long_point": [
{
"tick": 6720,
"left_pos": 28672,
"right_pos": 53248,
"tick": 6720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -174,9 +174,9 @@
},
"long_point": [
{
"tick": 8640,
"left_pos": 12288,
"right_pos": 36864,
"tick": 8640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -197,9 +197,9 @@
},
"long_point": [
{
"tick": 8640,
"left_pos": 28672,
"right_pos": 53248,
"tick": 8640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -220,9 +220,9 @@
},
"long_point": [
{
"tick": 10560,
"left_pos": 16384,
"right_pos": 40960,
"tick": 10560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -243,9 +243,9 @@
},
"long_point": [
{
"tick": 10560,
"left_pos": 24576,
"right_pos": 49152,
"tick": 10560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -266,9 +266,9 @@
},
"long_point": [
{
"tick": 12480,
"left_pos": 20480,
"right_pos": 45056,
"tick": 12480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -289,9 +289,9 @@
},
"long_point": [
{
"tick": 12480,
"left_pos": 20480,
"right_pos": 45056,
"tick": 12480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -312,9 +312,9 @@
},
"long_point": [
{
"tick": 14400,
"left_pos": 8192,
"right_pos": 32768,
"tick": 14400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -335,9 +335,9 @@
},
"long_point": [
{
"tick": 14400,
"left_pos": 32768,
"right_pos": 57344,
"tick": 14400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -358,9 +358,9 @@
},
"long_point": [
{
"tick": 16320,
"left_pos": 0,
"right_pos": 24576,
"tick": 16320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -381,9 +381,9 @@
},
"long_point": [
{
"tick": 16320,
"left_pos": 40960,
"right_pos": 65536,
"tick": 16320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1319,9 +1319,9 @@
},
"long_point": [
{
"tick": 40800,
"left_pos": 20480,
"right_pos": 45056,
"tick": 40800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1342,9 +1342,9 @@
},
"long_point": [
{
"tick": 40800,
"left_pos": 20480,
"right_pos": 45056,
"tick": 40800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1365,9 +1365,9 @@
},
"long_point": [
{
"tick": 41760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 41760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1388,9 +1388,9 @@
},
"long_point": [
{
"tick": 41760,
"left_pos": 36864,
"right_pos": 61440,
"tick": 41760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1411,9 +1411,9 @@
},
"long_point": [
{
"tick": 42720,
"left_pos": 16384,
"right_pos": 40960,
"tick": 42720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1434,9 +1434,9 @@
},
"long_point": [
{
"tick": 42720,
"left_pos": 24576,
"right_pos": 49152,
"tick": 42720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1457,9 +1457,9 @@
},
"long_point": [
{
"tick": 43680,
"left_pos": 0,
"right_pos": 24576,
"tick": 43680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1480,9 +1480,9 @@
},
"long_point": [
{
"tick": 43680,
"left_pos": 40960,
"right_pos": 65536,
"tick": 43680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1503,9 +1503,9 @@
},
"long_point": [
{
"tick": 44640,
"left_pos": 20480,
"right_pos": 45056,
"tick": 44640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1526,9 +1526,9 @@
},
"long_point": [
{
"tick": 44640,
"left_pos": 20480,
"right_pos": 45056,
"tick": 44640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1549,9 +1549,9 @@
},
"long_point": [
{
"tick": 45600,
"left_pos": 32768,
"right_pos": 57344,
"tick": 45600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1572,9 +1572,9 @@
},
"long_point": [
{
"tick": 45600,
"left_pos": 8192,
"right_pos": 32768,
"tick": 45600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1595,9 +1595,9 @@
},
"long_point": [
{
"tick": 46560,
"left_pos": 16384,
"right_pos": 40960,
"tick": 46560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1618,9 +1618,9 @@
},
"long_point": [
{
"tick": 46560,
"left_pos": 24576,
"right_pos": 49152,
"tick": 46560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1641,9 +1641,9 @@
},
"long_point": [
{
"tick": 47520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 47520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1664,9 +1664,9 @@
},
"long_point": [
{
"tick": 47520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 47520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2602,9 +2602,9 @@
},
"long_point": [
{
"tick": 64320,
"left_pos": 40960,
"right_pos": 65536,
"tick": 64320,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2625,9 +2625,9 @@
},
"long_point": [
{
"left_pos": 0,
"right_pos": 24576,
"tick": 64320,
"left_pos": 0,
"right_pos": 24576,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2648,9 +2648,9 @@
},
"long_point": [
{
"tick": 66240,
"left_pos": 40960,
"right_pos": 65536,
"tick": 66240,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2671,9 +2671,9 @@
},
"long_point": [
{
"tick": 66240,
"left_pos": 0,
"right_pos": 24576,
"tick": 66240,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2694,9 +2694,9 @@
},
"long_point": [
{
"tick": 67680,
"left_pos": 40960,
"right_pos": 65536,
"tick": 67680,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -2717,9 +2717,9 @@
},
"long_point": [
{
"tick": 67680,
"left_pos": 0,
"right_pos": 24576,
"tick": 67680,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2740,9 +2740,9 @@
},
"long_point": [
{
"tick": 68640,
"left_pos": 40960,
"right_pos": 65536,
"tick": 68640,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -2763,9 +2763,9 @@
},
"long_point": [
{
"tick": 68640,
"left_pos": 0,
"right_pos": 24576,
"tick": 68640,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2786,9 +2786,9 @@
},
"long_point": [
{
"tick": 71040,
"left_pos": 28672,
"right_pos": 53248,
"tick": 71040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2809,9 +2809,9 @@
},
"long_point": [
{
"tick": 71040,
"left_pos": 12288,
"right_pos": 36864,
"tick": 71040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2862,9 +2862,9 @@
},
"long_point": [
{
"tick": 71520,
"left_pos": 0,
"right_pos": 24576,
"tick": 71520,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2885,9 +2885,9 @@
},
"long_point": [
{
"tick": 71520,
"left_pos": 40960,
"right_pos": 65536,
"tick": 71520,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -2908,9 +2908,9 @@
},
"long_point": [
{
"tick": 72480,
"left_pos": 0,
"right_pos": 24576,
"tick": 72480,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2931,9 +2931,9 @@
},
"long_point": [
{
"tick": 72480,
"left_pos": 40960,
"right_pos": 65536,
"tick": 72480,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -2954,9 +2954,9 @@
},
"long_point": [
{
"tick": 74880,
"left_pos": 12288,
"right_pos": 36864,
"tick": 74880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2977,9 +2977,9 @@
},
"long_point": [
{
"tick": 74880,
"left_pos": 28672,
"right_pos": 53248,
"tick": 74880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3030,9 +3030,9 @@
},
"long_point": [
{
"tick": 76800,
"left_pos": 12288,
"right_pos": 36864,
"tick": 76800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3053,9 +3053,9 @@
},
"long_point": [
{
"tick": 76800,
"left_pos": 28672,
"right_pos": 53248,
"tick": 76800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3226,9 +3226,9 @@
},
"long_point": [
{
"tick": 80640,
"left_pos": 12288,
"right_pos": 36864,
"tick": 80640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3249,9 +3249,9 @@
},
"long_point": [
{
"left_pos": 28672,
"right_pos": 53248,
"tick": 80640,
"left_pos": 28672,
"right_pos": 53248,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3302,9 +3302,9 @@
},
"long_point": [
{
"tick": 82560,
"left_pos": 12288,
"right_pos": 36864,
"tick": 82560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3325,9 +3325,9 @@
},
"long_point": [
{
"tick": 82560,
"left_pos": 28672,
"right_pos": 53248,
"tick": 82560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3378,9 +3378,9 @@
},
"long_point": [
{
"tick": 83040,
"left_pos": 0,
"right_pos": 24576,
"tick": 83040,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -3401,9 +3401,9 @@
},
"long_point": [
{
"tick": 83040,
"left_pos": 40960,
"right_pos": 65536,
"tick": 83040,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -3424,9 +3424,9 @@
},
"long_point": [
{
"tick": 84000,
"left_pos": 40960,
"right_pos": 65536,
"tick": 84000,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -3447,9 +3447,9 @@
},
"long_point": [
{
"tick": 84000,
"left_pos": 0,
"right_pos": 24576,
"tick": 84000,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -3590,9 +3590,9 @@
},
"long_point": [
{
"tick": 88320,
"left_pos": 12288,
"right_pos": 36864,
"tick": 88320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3613,9 +3613,9 @@
},
"long_point": [
{
"tick": 88320,
"left_pos": 28672,
"right_pos": 53248,
"tick": 88320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3666,9 +3666,9 @@
},
"long_point": [
{
"tick": 90240,
"left_pos": 12288,
"right_pos": 36864,
"tick": 90240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3689,9 +3689,9 @@
},
"long_point": [
{
"tick": 90240,
"left_pos": 28672,
"right_pos": 53248,
"tick": 90240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3742,16 +3742,16 @@
},
"long_point": [
{
"tick": 91200,
"left_pos": 0,
"right_pos": 24576,
"tick": 91200,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 92160,
"left_pos": 8192,
"right_pos": 32768,
"tick": 92160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3772,16 +3772,16 @@
},
"long_point": [
{
"tick": 91200,
"left_pos": 40960,
"right_pos": 65536,
"tick": 91200,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 92160,
"left_pos": 32768,
"right_pos": 57344,
"tick": 92160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3847,9 +3847,9 @@
},
"long_point": [
{
"tick": 95040,
"left_pos": 20480,
"right_pos": 45056,
"tick": 95040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3870,9 +3870,9 @@
},
"long_point": [
{
"tick": 95040,
"left_pos": 20480,
"right_pos": 45056,
"tick": 95040,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3893,9 +3893,9 @@
},
"long_point": [
{
"tick": 96960,
"left_pos": 40960,
"right_pos": 65536,
"tick": 96960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3916,9 +3916,9 @@
},
"long_point": [
{
"tick": 96960,
"left_pos": 0,
"right_pos": 24576,
"tick": 96960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3939,9 +3939,9 @@
},
"long_point": [
{
"tick": 98880,
"left_pos": 20480,
"right_pos": 45056,
"tick": 98880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3962,9 +3962,9 @@
},
"long_point": [
{
"tick": 98880,
"left_pos": 20480,
"right_pos": 45056,
"tick": 98880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3985,9 +3985,9 @@
},
"long_point": [
{
"tick": 100800,
"left_pos": 28672,
"right_pos": 53248,
"tick": 100800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4008,9 +4008,9 @@
},
"long_point": [
{
"tick": 100800,
"left_pos": 12288,
"right_pos": 36864,
"tick": 100800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4031,9 +4031,9 @@
},
"long_point": [
{
"tick": 102720,
"left_pos": 8192,
"right_pos": 32768,
"tick": 102720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4054,9 +4054,9 @@
},
"long_point": [
{
"tick": 102720,
"left_pos": 32768,
"right_pos": 57344,
"tick": 102720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4077,9 +4077,9 @@
},
"long_point": [
{
"tick": 104640,
"left_pos": 40960,
"right_pos": 65536,
"tick": 104640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4100,9 +4100,9 @@
},
"long_point": [
{
"tick": 104640,
"left_pos": 0,
"right_pos": 24576,
"tick": 104640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4123,9 +4123,9 @@
},
"long_point": [
{
"tick": 106560,
"left_pos": 24576,
"right_pos": 49152,
"tick": 106560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4146,9 +4146,9 @@
},
"long_point": [
{
"tick": 106560,
"left_pos": 16384,
"right_pos": 40960,
"tick": 106560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4169,9 +4169,9 @@
},
"long_point": [
{
"tick": 108480,
"left_pos": 4096,
"right_pos": 28672,
"tick": 108480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4192,9 +4192,9 @@
},
"long_point": [
{
"tick": 108480,
"left_pos": 36864,
"right_pos": 61440,
"tick": 108480,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -306,9 +306,9 @@
},
"long_point": [
{
"tick": 20160,
"left_pos": 20480,
"right_pos": 45056,
"tick": 20160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -344,9 +344,9 @@
},
"long_point": [
{
"tick": 22080,
"left_pos": 20480,
"right_pos": 45056,
"tick": 22080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -382,9 +382,9 @@
},
"long_point": [
{
"tick": 24000,
"left_pos": 20480,
"right_pos": 45056,
"tick": 24000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -420,9 +420,9 @@
},
"long_point": [
{
"tick": 25920,
"left_pos": 20480,
"right_pos": 45056,
"tick": 25920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -458,30 +458,30 @@
},
"long_point": [
{
"left_pos": 20480,
"right_pos": 45056,
"tick": 27840,
"left_pos": 20480,
"right_pos": 45056,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 36864,
"right_pos": 61440,
"tick": 28800,
"left_pos": 36864,
"right_pos": 61440,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 29760,
"left_pos": 20480,
"right_pos": 45056,
"tick": 29760,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 30720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 30720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -622,9 +622,9 @@
},
"long_point": [
{
"tick": 35040,
"left_pos": 40960,
"right_pos": 65536,
"tick": 35040,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -645,9 +645,9 @@
},
"long_point": [
{
"tick": 36000,
"left_pos": 40960,
"right_pos": 65536,
"tick": 36000,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -668,9 +668,9 @@
},
"long_point": [
{
"tick": 36960,
"left_pos": 40960,
"right_pos": 65536,
"tick": 36960,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -691,9 +691,9 @@
},
"long_point": [
{
"tick": 37920,
"left_pos": 40960,
"right_pos": 65536,
"tick": 37920,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -714,9 +714,9 @@
},
"long_point": [
{
"tick": 41280,
"left_pos": 16384,
"right_pos": 40960,
"tick": 41280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -782,9 +782,9 @@
},
"long_point": [
{
"tick": 42720,
"left_pos": 0,
"right_pos": 24576,
"tick": 42720,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -805,9 +805,9 @@
},
"long_point": [
{
"tick": 43680,
"left_pos": 0,
"right_pos": 24576,
"tick": 43680,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -828,9 +828,9 @@
},
"long_point": [
{
"tick": 44640,
"left_pos": 0,
"right_pos": 24576,
"tick": 44640,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -851,9 +851,9 @@
},
"long_point": [
{
"tick": 45600,
"left_pos": 0,
"right_pos": 24576,
"tick": 45600,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -874,9 +874,9 @@
},
"long_point": [
{
"tick": 48960,
"left_pos": 24576,
"right_pos": 49152,
"tick": 48960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -942,9 +942,9 @@
},
"long_point": [
{
"tick": 52800,
"left_pos": 8192,
"right_pos": 32768,
"tick": 52800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1010,9 +1010,9 @@
},
"long_point": [
{
"tick": 56640,
"left_pos": 32768,
"right_pos": 57344,
"tick": 56640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1078,9 +1078,9 @@
},
"long_point": [
{
"tick": 58080,
"left_pos": 40960,
"right_pos": 65536,
"tick": 58080,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1101,9 +1101,9 @@
},
"long_point": [
{
"tick": 59040,
"left_pos": 40960,
"right_pos": 65536,
"tick": 59040,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1124,9 +1124,9 @@
},
"long_point": [
{
"tick": 60000,
"left_pos": 40960,
"right_pos": 65536,
"tick": 60000,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1147,9 +1147,9 @@
},
"long_point": [
{
"tick": 60960,
"left_pos": 40960,
"right_pos": 65536,
"tick": 60960,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1170,23 +1170,23 @@
},
"long_point": [
{
"tick": 62400,
"left_pos": 28672,
"right_pos": 53248,
"tick": 62400,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 63360,
"left_pos": 40960,
"right_pos": 65536,
"tick": 63360,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 64320,
"left_pos": 28672,
"right_pos": 53248,
"tick": 64320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1627,9 +1627,9 @@
},
"long_point": [
{
"tick": 80880,
"left_pos": 40960,
"right_pos": 65536,
"tick": 80880,
"left_end_pos": 32768,
"right_end_pos": 57344
}
@@ -1650,9 +1650,9 @@
},
"long_point": [
{
"tick": 81360,
"left_pos": 40960,
"right_pos": 65536,
"tick": 81360,
"left_end_pos": 32768,
"right_end_pos": 57344
}
@@ -1703,9 +1703,9 @@
},
"long_point": [
{
"tick": 84000,
"left_pos": 16384,
"right_pos": 40960,
"tick": 84000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1771,9 +1771,9 @@
},
"long_point": [
{
"tick": 84720,
"left_pos": 0,
"right_pos": 24576,
"tick": 84720,
"left_end_pos": 8192,
"right_end_pos": 32768
}
@@ -1794,9 +1794,9 @@
},
"long_point": [
{
"tick": 85200,
"left_pos": 0,
"right_pos": 24576,
"tick": 85200,
"left_end_pos": 8192,
"right_end_pos": 32768
}
@@ -1847,9 +1847,9 @@
},
"long_point": [
{
"tick": 87840,
"left_pos": 24576,
"right_pos": 49152,
"tick": 87840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1915,16 +1915,16 @@
},
"long_point": [
{
"tick": 90240,
"left_pos": 8192,
"right_pos": 32768,
"tick": 90240,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 91680,
"left_pos": 28672,
"right_pos": 53248,
"tick": 91680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2050,16 +2050,16 @@
},
"long_point": [
{
"tick": 94080,
"left_pos": 32768,
"right_pos": 57344,
"tick": 94080,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 95520,
"left_pos": 12288,
"right_pos": 36864,
"tick": 95520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2185,9 +2185,9 @@
},
"long_point": [
{
"tick": 96480,
"left_pos": 0,
"right_pos": 24576,
"tick": 96480,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2208,9 +2208,9 @@
},
"long_point": [
{
"tick": 97440,
"left_pos": 0,
"right_pos": 24576,
"tick": 97440,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2231,9 +2231,9 @@
},
"long_point": [
{
"tick": 98160,
"left_pos": 0,
"right_pos": 24576,
"tick": 98160,
"left_end_pos": 8192,
"right_end_pos": 32768
}
@@ -2254,9 +2254,9 @@
},
"long_point": [
{
"tick": 98640,
"left_pos": 0,
"right_pos": 24576,
"tick": 98640,
"left_end_pos": 8192,
"right_end_pos": 32768
}
@@ -2277,9 +2277,9 @@
},
"long_point": [
{
"tick": 99120,
"left_pos": 0,
"right_pos": 24576,
"tick": 99120,
"left_end_pos": 8192,
"right_end_pos": 32768
}
@@ -2300,9 +2300,9 @@
},
"long_point": [
{
"tick": 99600,
"left_pos": 0,
"right_pos": 24576,
"tick": 99600,
"left_end_pos": 8192,
"right_end_pos": 32768
}
@@ -2323,16 +2323,16 @@
},
"long_point": [
{
"tick": 101760,
"left_pos": 12288,
"right_pos": 36864,
"tick": 101760,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 103200,
"left_pos": 32768,
"right_pos": 57344,
"tick": 103200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2428,9 +2428,9 @@
},
"long_point": [
{
"tick": 104160,
"left_pos": 40960,
"right_pos": 65536,
"tick": 104160,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2451,9 +2451,9 @@
},
"long_point": [
{
"tick": 105120,
"left_pos": 40960,
"right_pos": 65536,
"tick": 105120,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2474,9 +2474,9 @@
},
"long_point": [
{
"tick": 105840,
"left_pos": 40960,
"right_pos": 65536,
"tick": 105840,
"left_end_pos": 32768,
"right_end_pos": 57344
}
@@ -2497,9 +2497,9 @@
},
"long_point": [
{
"tick": 106320,
"left_pos": 40960,
"right_pos": 65536,
"tick": 106320,
"left_end_pos": 32768,
"right_end_pos": 57344
}
@@ -2520,9 +2520,9 @@
},
"long_point": [
{
"tick": 106800,
"left_pos": 40960,
"right_pos": 65536,
"tick": 106800,
"left_end_pos": 32768,
"right_end_pos": 57344
}
@@ -2543,9 +2543,9 @@
},
"long_point": [
{
"tick": 107280,
"left_pos": 40960,
"right_pos": 65536,
"tick": 107280,
"left_end_pos": 32768,
"right_end_pos": 57344
}
@@ -2566,16 +2566,16 @@
},
"long_point": [
{
"tick": 109440,
"left_pos": 28672,
"right_pos": 53248,
"tick": 109440,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 110880,
"left_pos": 8192,
"right_pos": 32768,
"tick": 110880,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -36,9 +36,9 @@
},
"long_point": [
{
"tick": 2160,
"left_pos": 40960,
"right_pos": 65536,
"tick": 2160,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -59,9 +59,9 @@
},
"long_point": [
{
"tick": 2640,
"left_pos": 40960,
"right_pos": 65536,
"tick": 2640,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -97,9 +97,9 @@
},
"long_point": [
{
"tick": 4800,
"left_pos": 16384,
"right_pos": 40960,
"tick": 4800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -150,9 +150,9 @@
},
"long_point": [
{
"tick": 6000,
"left_pos": 0,
"right_pos": 24576,
"tick": 6000,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -173,9 +173,9 @@
},
"long_point": [
{
"tick": 6480,
"left_pos": 0,
"right_pos": 24576,
"tick": 6480,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -226,9 +226,9 @@
},
"long_point": [
{
"tick": 8640,
"left_pos": 24576,
"right_pos": 49152,
"tick": 8640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -279,9 +279,9 @@
},
"long_point": [
{
"tick": 9840,
"left_pos": 36864,
"right_pos": 61440,
"tick": 9840,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -302,9 +302,9 @@
},
"long_point": [
{
"tick": 10320,
"left_pos": 8192,
"right_pos": 32768,
"tick": 10320,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -325,9 +325,9 @@
},
"long_point": [
{
"tick": 10800,
"left_pos": 36864,
"right_pos": 61440,
"tick": 10800,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -348,9 +348,9 @@
},
"long_point": [
{
"tick": 11760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 11760,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -371,9 +371,9 @@
},
"long_point": [
{
"tick": 12240,
"left_pos": 32768,
"right_pos": 57344,
"tick": 12240,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -394,9 +394,9 @@
},
"long_point": [
{
"tick": 12720,
"left_pos": 4096,
"right_pos": 28672,
"tick": 12720,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -507,9 +507,9 @@
},
"long_point": [
{
"tick": 17520,
"left_pos": 0,
"right_pos": 24576,
"tick": 17520,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -530,9 +530,9 @@
},
"long_point": [
{
"tick": 18000,
"left_pos": 0,
"right_pos": 24576,
"tick": 18000,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -553,9 +553,9 @@
},
"long_point": [
{
"tick": 18480,
"left_pos": 0,
"right_pos": 24576,
"tick": 18480,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -576,9 +576,9 @@
},
"long_point": [
{
"tick": 18960,
"left_pos": 0,
"right_pos": 24576,
"tick": 18960,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -599,9 +599,9 @@
},
"long_point": [
{
"tick": 19440,
"left_pos": 0,
"right_pos": 24576,
"tick": 19440,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -622,9 +622,9 @@
},
"long_point": [
{
"tick": 19920,
"left_pos": 0,
"right_pos": 24576,
"tick": 19920,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -660,9 +660,9 @@
},
"long_point": [
{
"tick": 24000,
"left_pos": 20480,
"right_pos": 45056,
"tick": 24000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -773,9 +773,9 @@
},
"long_point": [
{
"tick": 25200,
"left_pos": 40960,
"right_pos": 65536,
"tick": 25200,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -796,9 +796,9 @@
},
"long_point": [
{
"tick": 25680,
"left_pos": 40960,
"right_pos": 65536,
"tick": 25680,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -819,9 +819,9 @@
},
"long_point": [
{
"tick": 26160,
"left_pos": 40960,
"right_pos": 65536,
"tick": 26160,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -842,9 +842,9 @@
},
"long_point": [
{
"tick": 26640,
"left_pos": 40960,
"right_pos": 65536,
"tick": 26640,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -865,9 +865,9 @@
},
"long_point": [
{
"tick": 27120,
"left_pos": 40960,
"right_pos": 65536,
"tick": 27120,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -888,9 +888,9 @@
},
"long_point": [
{
"tick": 27600,
"left_pos": 40960,
"right_pos": 65536,
"tick": 27600,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -926,9 +926,9 @@
},
"long_point": [
{
"tick": 30720,
"left_pos": 24576,
"right_pos": 49152,
"tick": 30720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1024,9 +1024,9 @@
},
"long_point": [
{
"tick": 32880,
"left_pos": 40960,
"right_pos": 65536,
"tick": 32880,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1047,9 +1047,9 @@
},
"long_point": [
{
"tick": 33360,
"left_pos": 40960,
"right_pos": 65536,
"tick": 33360,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1070,9 +1070,9 @@
},
"long_point": [
{
"tick": 33840,
"left_pos": 40960,
"right_pos": 65536,
"tick": 33840,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1093,9 +1093,9 @@
},
"long_point": [
{
"tick": 34320,
"left_pos": 40960,
"right_pos": 65536,
"tick": 34320,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1116,9 +1116,9 @@
},
"long_point": [
{
"tick": 34800,
"left_pos": 40960,
"right_pos": 65536,
"tick": 34800,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1139,9 +1139,9 @@
},
"long_point": [
{
"tick": 35280,
"left_pos": 40960,
"right_pos": 65536,
"tick": 35280,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1177,9 +1177,9 @@
},
"long_point": [
{
"tick": 39360,
"left_pos": 20480,
"right_pos": 45056,
"tick": 39360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1290,9 +1290,9 @@
},
"long_point": [
{
"tick": 40560,
"left_pos": 0,
"right_pos": 24576,
"tick": 40560,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1313,9 +1313,9 @@
},
"long_point": [
{
"tick": 41040,
"left_pos": 0,
"right_pos": 24576,
"tick": 41040,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1336,9 +1336,9 @@
},
"long_point": [
{
"tick": 41520,
"left_pos": 0,
"right_pos": 24576,
"tick": 41520,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1359,9 +1359,9 @@
},
"long_point": [
{
"tick": 42000,
"left_pos": 0,
"right_pos": 24576,
"tick": 42000,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1382,9 +1382,9 @@
},
"long_point": [
{
"tick": 42480,
"left_pos": 0,
"right_pos": 24576,
"tick": 42480,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1405,9 +1405,9 @@
},
"long_point": [
{
"tick": 42960,
"left_pos": 0,
"right_pos": 24576,
"tick": 42960,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1443,9 +1443,9 @@
},
"long_point": [
{
"tick": 46080,
"left_pos": 16384,
"right_pos": 40960,
"tick": 46080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1556,9 +1556,9 @@
},
"long_point": [
{
"tick": 50880,
"left_pos": 40960,
"right_pos": 65536,
"tick": 50880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1579,9 +1579,9 @@
},
"long_point": [
{
"tick": 52800,
"left_pos": 12288,
"right_pos": 36864,
"tick": 52800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1602,9 +1602,9 @@
},
"long_point": [
{
"tick": 54720,
"left_pos": 28672,
"right_pos": 53248,
"tick": 54720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1625,9 +1625,9 @@
},
"long_point": [
{
"tick": 56640,
"left_pos": 8192,
"right_pos": 32768,
"tick": 56640,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1648,9 +1648,9 @@
},
"long_point": [
{
"tick": 58560,
"left_pos": 32768,
"right_pos": 57344,
"tick": 58560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1671,9 +1671,9 @@
},
"long_point": [
{
"tick": 60480,
"left_pos": 20480,
"right_pos": 45056,
"tick": 60480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1694,9 +1694,9 @@
},
"long_point": [
{
"tick": 62400,
"left_pos": 40960,
"right_pos": 65536,
"tick": 62400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1717,9 +1717,9 @@
},
"long_point": [
{
"tick": 64320,
"left_pos": 12288,
"right_pos": 36864,
"tick": 64320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1740,9 +1740,9 @@
},
"long_point": [
{
"tick": 66240,
"left_pos": 28672,
"right_pos": 53248,
"tick": 66240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1763,9 +1763,9 @@
},
"long_point": [
{
"tick": 68160,
"left_pos": 4096,
"right_pos": 28672,
"tick": 68160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1786,9 +1786,9 @@
},
"long_point": [
{
"tick": 70080,
"left_pos": 24576,
"right_pos": 49152,
"tick": 70080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2169,9 +2169,9 @@
},
"long_point": [
{
"tick": 86640,
"left_pos": 0,
"right_pos": 24576,
"tick": 86640,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2192,9 +2192,9 @@
},
"long_point": [
{
"tick": 87120,
"left_pos": 0,
"right_pos": 24576,
"tick": 87120,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2230,9 +2230,9 @@
},
"long_point": [
{
"tick": 89280,
"left_pos": 24576,
"right_pos": 49152,
"tick": 89280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2283,9 +2283,9 @@
},
"long_point": [
{
"tick": 90480,
"left_pos": 40960,
"right_pos": 65536,
"tick": 90480,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2306,9 +2306,9 @@
},
"long_point": [
{
"tick": 90960,
"left_pos": 40960,
"right_pos": 65536,
"tick": 90960,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2359,9 +2359,9 @@
},
"long_point": [
{
"tick": 93120,
"left_pos": 16384,
"right_pos": 40960,
"tick": 93120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2412,9 +2412,9 @@
},
"long_point": [
{
"tick": 94320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 94320,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2435,9 +2435,9 @@
},
"long_point": [
{
"tick": 94800,
"left_pos": 32768,
"right_pos": 57344,
"tick": 94800,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -2458,9 +2458,9 @@
},
"long_point": [
{
"tick": 95280,
"left_pos": 4096,
"right_pos": 28672,
"tick": 95280,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2481,9 +2481,9 @@
},
"long_point": [
{
"tick": 96240,
"left_pos": 36864,
"right_pos": 61440,
"tick": 96240,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2504,9 +2504,9 @@
},
"long_point": [
{
"tick": 96720,
"left_pos": 8192,
"right_pos": 32768,
"tick": 96720,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2527,9 +2527,9 @@
},
"long_point": [
{
"tick": 97200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 97200,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2640,9 +2640,9 @@
},
"long_point": [
{
"tick": 105600,
"left_pos": 24576,
"right_pos": 49152,
"tick": 105600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2768,9 +2768,9 @@
},
"long_point": [
{
"tick": 109440,
"left_pos": 16384,
"right_pos": 40960,
"tick": 109440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2896,9 +2896,9 @@
},
"long_point": [
{
"tick": 109680,
"left_pos": 0,
"right_pos": 24576,
"tick": 109680,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -2919,9 +2919,9 @@
},
"long_point": [
{
"tick": 110160,
"left_pos": 0,
"right_pos": 24576,
"tick": 110160,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3032,9 +3032,9 @@
},
"long_point": [
{
"tick": 113520,
"left_pos": 40960,
"right_pos": 65536,
"tick": 113520,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3055,9 +3055,9 @@
},
"long_point": [
{
"tick": 114000,
"left_pos": 40960,
"right_pos": 65536,
"tick": 114000,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3138,9 +3138,9 @@
},
"long_point": [
{
"tick": 117360,
"left_pos": 40960,
"right_pos": 65536,
"tick": 117360,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3161,9 +3161,9 @@
},
"long_point": [
{
"tick": 117840,
"left_pos": 40960,
"right_pos": 65536,
"tick": 117840,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3214,9 +3214,9 @@
},
"long_point": [
{
"tick": 120000,
"left_pos": 16384,
"right_pos": 40960,
"tick": 120000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3282,9 +3282,9 @@
},
"long_point": [
{
"tick": 121200,
"left_pos": 0,
"right_pos": 24576,
"tick": 121200,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3305,9 +3305,9 @@
},
"long_point": [
{
"tick": 121680,
"left_pos": 0,
"right_pos": 24576,
"tick": 121680,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3358,9 +3358,9 @@
},
"long_point": [
{
"tick": 123840,
"left_pos": 24576,
"right_pos": 49152,
"tick": 123840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3426,9 +3426,9 @@
},
"long_point": [
{
"tick": 125040,
"left_pos": 40960,
"right_pos": 65536,
"tick": 125040,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3449,9 +3449,9 @@
},
"long_point": [
{
"tick": 125520,
"left_pos": 40960,
"right_pos": 65536,
"tick": 125520,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3472,9 +3472,9 @@
},
"long_point": [
{
"tick": 126000,
"left_pos": 40960,
"right_pos": 65536,
"tick": 126000,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3495,9 +3495,9 @@
},
"long_point": [
{
"tick": 126480,
"left_pos": 40960,
"right_pos": 65536,
"tick": 126480,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3518,9 +3518,9 @@
},
"long_point": [
{
"tick": 126960,
"left_pos": 40960,
"right_pos": 65536,
"tick": 126960,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3541,9 +3541,9 @@
},
"long_point": [
{
"tick": 127440,
"left_pos": 40960,
"right_pos": 65536,
"tick": 127440,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3564,9 +3564,9 @@
},
"long_point": [
{
"tick": 127920,
"left_pos": 40960,
"right_pos": 65536,
"tick": 127920,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3587,9 +3587,9 @@
},
"long_point": [
{
"tick": 128400,
"left_pos": 40960,
"right_pos": 65536,
"tick": 128400,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3610,9 +3610,9 @@
},
"long_point": [
{
"tick": 128880,
"left_pos": 40960,
"right_pos": 65536,
"tick": 128880,
"left_end_pos": 32768,
"right_end_pos": 57344
}
@@ -3633,9 +3633,9 @@
},
"long_point": [
{
"tick": 129360,
"left_pos": 12288,
"right_pos": 36864,
"tick": 129360,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -3656,9 +3656,9 @@
},
"long_point": [
{
"tick": 129840,
"left_pos": 40960,
"right_pos": 65536,
"tick": 129840,
"left_end_pos": 32768,
"right_end_pos": 57344
}
@@ -3679,9 +3679,9 @@
},
"long_point": [
{
"tick": 130320,
"left_pos": 12288,
"right_pos": 36864,
"tick": 130320,
"left_end_pos": 20480,
"right_end_pos": 45056
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -36,9 +36,9 @@
},
"long_point": [
{
"tick": 3840,
"left_pos": 36864,
"right_pos": 61440,
"tick": 3840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -59,9 +59,9 @@
},
"long_point": [
{
"tick": 5760,
"left_pos": 4096,
"right_pos": 28672,
"tick": 5760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -82,9 +82,9 @@
},
"long_point": [
{
"tick": 6720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 6720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -105,9 +105,9 @@
},
"long_point": [
{
"tick": 7680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 7680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -188,9 +188,9 @@
},
"long_point": [
{
"tick": 10560,
"left_pos": 36864,
"right_pos": 61440,
"tick": 10560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -211,9 +211,9 @@
},
"long_point": [
{
"tick": 11520,
"left_pos": 4096,
"right_pos": 28672,
"tick": 11520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -294,9 +294,9 @@
},
"long_point": [
{
"tick": 14400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 14400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -332,9 +332,9 @@
},
"long_point": [
{
"tick": 16320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 16320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -370,9 +370,9 @@
},
"long_point": [
{
"tick": 19200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 19200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -438,9 +438,9 @@
},
"long_point": [
{
"tick": 21120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 21120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -656,16 +656,16 @@
},
"long_point": [
{
"tick": 25440,
"left_pos": 36864,
"right_pos": 61440,
"tick": 25440,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 25920,
"left_pos": 28672,
"right_pos": 53248,
"tick": 25920,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -686,16 +686,16 @@
},
"long_point": [
{
"tick": 26400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 26400,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 26880,
"left_pos": 28672,
"right_pos": 53248,
"tick": 26880,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -716,16 +716,16 @@
},
"long_point": [
{
"tick": 27360,
"left_pos": 36864,
"right_pos": 61440,
"tick": 27360,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 27840,
"left_pos": 28672,
"right_pos": 53248,
"tick": 27840,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -746,16 +746,16 @@
},
"long_point": [
{
"tick": 28320,
"left_pos": 36864,
"right_pos": 61440,
"tick": 28320,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 28800,
"left_pos": 28672,
"right_pos": 53248,
"tick": 28800,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -926,16 +926,16 @@
},
"long_point": [
{
"tick": 33120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 33120,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 33600,
"left_pos": 12288,
"right_pos": 36864,
"tick": 33600,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -956,16 +956,16 @@
},
"long_point": [
{
"tick": 34080,
"left_pos": 4096,
"right_pos": 28672,
"tick": 34080,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 34560,
"left_pos": 12288,
"right_pos": 36864,
"tick": 34560,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -986,16 +986,16 @@
},
"long_point": [
{
"tick": 35040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 35040,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 35520,
"left_pos": 12288,
"right_pos": 36864,
"tick": 35520,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1016,16 +1016,16 @@
},
"long_point": [
{
"tick": 36000,
"left_pos": 4096,
"right_pos": 28672,
"tick": 36000,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 36480,
"left_pos": 12288,
"right_pos": 36864,
"tick": 36480,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -1166,9 +1166,9 @@
},
"long_point": [
{
"tick": 40320,
"left_pos": 36864,
"right_pos": 61440,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1189,9 +1189,9 @@
},
"long_point": [
{
"tick": 40320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1707,9 +1707,9 @@
},
"long_point": [
{
"tick": 55680,
"left_pos": 36864,
"right_pos": 61440,
"tick": 55680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1730,9 +1730,9 @@
},
"long_point": [
{
"tick": 55680,
"left_pos": 4096,
"right_pos": 28672,
"tick": 55680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1813,9 +1813,9 @@
},
"long_point": [
{
"tick": 67200,
"left_pos": 4096,
"right_pos": 28672,
"tick": 67200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1836,9 +1836,9 @@
},
"long_point": [
{
"tick": 69120,
"left_pos": 36864,
"right_pos": 61440,
"tick": 69120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1979,9 +1979,9 @@
},
"long_point": [
{
"tick": 76800,
"left_pos": 4096,
"right_pos": 28672,
"tick": 76800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2047,9 +2047,9 @@
},
"long_point": [
{
"tick": 78720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 78720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2265,16 +2265,16 @@
},
"long_point": [
{
"tick": 83040,
"left_pos": 4096,
"right_pos": 28672,
"tick": 83040,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 83520,
"left_pos": 12288,
"right_pos": 36864,
"tick": 83520,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2295,16 +2295,16 @@
},
"long_point": [
{
"tick": 84000,
"left_pos": 4096,
"right_pos": 28672,
"tick": 84000,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 84480,
"left_pos": 12288,
"right_pos": 36864,
"tick": 84480,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2325,16 +2325,16 @@
},
"long_point": [
{
"tick": 84960,
"left_pos": 4096,
"right_pos": 28672,
"tick": 84960,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 85440,
"left_pos": 12288,
"right_pos": 36864,
"tick": 85440,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2355,16 +2355,16 @@
},
"long_point": [
{
"tick": 85920,
"left_pos": 4096,
"right_pos": 28672,
"tick": 85920,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 86400,
"left_pos": 12288,
"right_pos": 36864,
"tick": 86400,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2535,16 +2535,16 @@
},
"long_point": [
{
"tick": 90720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 90720,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 91200,
"left_pos": 28672,
"right_pos": 53248,
"tick": 91200,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2565,16 +2565,16 @@
},
"long_point": [
{
"tick": 91680,
"left_pos": 36864,
"right_pos": 61440,
"tick": 91680,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 92160,
"left_pos": 28672,
"right_pos": 53248,
"tick": 92160,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2595,16 +2595,16 @@
},
"long_point": [
{
"tick": 92640,
"left_pos": 36864,
"right_pos": 61440,
"tick": 92640,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 93120,
"left_pos": 28672,
"right_pos": 53248,
"tick": 93120,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2625,16 +2625,16 @@
},
"long_point": [
{
"tick": 93600,
"left_pos": 36864,
"right_pos": 61440,
"tick": 93600,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 94080,
"left_pos": 28672,
"right_pos": 53248,
"tick": 94080,
"left_end_pos": 20480,
"right_end_pos": 45056
}
@@ -2775,9 +2775,9 @@
},
"long_point": [
{
"tick": 97920,
"left_pos": 36864,
"right_pos": 61440,
"tick": 97920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2798,9 +2798,9 @@
},
"long_point": [
{
"tick": 97920,
"left_pos": 4096,
"right_pos": 28672,
"tick": 97920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3316,9 +3316,9 @@
},
"long_point": [
{
"tick": 113280,
"left_pos": 4096,
"right_pos": 28672,
"tick": 113280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3339,9 +3339,9 @@
},
"long_point": [
{
"tick": 113280,
"left_pos": 36864,
"right_pos": 61440,
"tick": 113280,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -591,30 +591,30 @@
},
"long_point": [
{
"left_pos": 12288,
"right_pos": 36864,
"tick": 27840,
"left_pos": 12288,
"right_pos": 36864,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 32768,
"right_pos": 57344,
"tick": 28800,
"left_pos": 32768,
"right_pos": 57344,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 29760,
"left_pos": 12288,
"right_pos": 36864,
"tick": 29760,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 30720,
"left_pos": 32768,
"right_pos": 57344,
"tick": 30720,
"left_end_pos": null,
"right_end_pos": null
}
@@ -680,30 +680,30 @@
},
"long_point": [
{
"left_pos": 0,
"right_pos": 24576,
"tick": 31680,
"left_pos": 0,
"right_pos": 24576,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 24576,
"right_pos": 49152,
"tick": 32640,
"left_pos": 24576,
"right_pos": 49152,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 33600,
"left_pos": 0,
"right_pos": 24576,
"tick": 33600,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 34560,
"left_pos": 24576,
"right_pos": 49152,
"tick": 34560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -769,16 +769,16 @@
},
"long_point": [
{
"tick": 35040,
"left_pos": 40960,
"right_pos": 65536,
"tick": 35040,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 35520,
"left_pos": 28672,
"right_pos": 53248,
"tick": 35520,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -799,16 +799,16 @@
},
"long_point": [
{
"tick": 36000,
"left_pos": 40960,
"right_pos": 65536,
"tick": 36000,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 36480,
"left_pos": 28672,
"right_pos": 53248,
"tick": 36480,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -829,16 +829,16 @@
},
"long_point": [
{
"tick": 36960,
"left_pos": 40960,
"right_pos": 65536,
"tick": 36960,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 37440,
"left_pos": 28672,
"right_pos": 53248,
"tick": 37440,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -859,16 +859,16 @@
},
"long_point": [
{
"tick": 37920,
"left_pos": 40960,
"right_pos": 65536,
"tick": 37920,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 38400,
"left_pos": 28672,
"right_pos": 53248,
"tick": 38400,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -889,9 +889,9 @@
},
"long_point": [
{
"tick": 40320,
"left_pos": 16384,
"right_pos": 40960,
"tick": 40320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -987,16 +987,16 @@
},
"long_point": [
{
"tick": 42720,
"left_pos": 0,
"right_pos": 24576,
"tick": 42720,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 43200,
"left_pos": 12288,
"right_pos": 36864,
"tick": 43200,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1017,16 +1017,16 @@
},
"long_point": [
{
"tick": 43680,
"left_pos": 0,
"right_pos": 24576,
"tick": 43680,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 44160,
"left_pos": 12288,
"right_pos": 36864,
"tick": 44160,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1047,16 +1047,16 @@
},
"long_point": [
{
"tick": 44640,
"left_pos": 0,
"right_pos": 24576,
"tick": 44640,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 45120,
"left_pos": 12288,
"right_pos": 36864,
"tick": 45120,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1077,16 +1077,16 @@
},
"long_point": [
{
"tick": 45600,
"left_pos": 0,
"right_pos": 24576,
"tick": 45600,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 46080,
"left_pos": 12288,
"right_pos": 36864,
"tick": 46080,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -1107,30 +1107,30 @@
},
"long_point": [
{
"tick": 47040,
"left_pos": 24576,
"right_pos": 49152,
"tick": 47040,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 48000,
"left_pos": 4096,
"right_pos": 28672,
"tick": 48000,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 48960,
"left_pos": 24576,
"right_pos": 49152,
"tick": 48960,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 49920,
"left_pos": 0,
"right_pos": 24576,
"tick": 49920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1406,9 +1406,9 @@
},
"long_point": [
{
"tick": 57600,
"left_pos": 4096,
"right_pos": 28672,
"tick": 57600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1429,9 +1429,9 @@
},
"long_point": [
{
"tick": 57600,
"left_pos": 36864,
"right_pos": 61440,
"tick": 57600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2232,16 +2232,16 @@
},
"long_point": [
{
"tick": 92640,
"left_pos": 40960,
"right_pos": 65536,
"tick": 92640,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 93120,
"left_pos": 28672,
"right_pos": 53248,
"tick": 93120,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2262,16 +2262,16 @@
},
"long_point": [
{
"tick": 93600,
"left_pos": 40960,
"right_pos": 65536,
"tick": 93600,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 94080,
"left_pos": 28672,
"right_pos": 53248,
"tick": 94080,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2292,16 +2292,16 @@
},
"long_point": [
{
"tick": 94560,
"left_pos": 40960,
"right_pos": 65536,
"tick": 94560,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 95040,
"left_pos": 28672,
"right_pos": 53248,
"tick": 95040,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2322,16 +2322,16 @@
},
"long_point": [
{
"tick": 95520,
"left_pos": 40960,
"right_pos": 65536,
"tick": 95520,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 96000,
"left_pos": 28672,
"right_pos": 53248,
"tick": 96000,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2352,23 +2352,23 @@
},
"long_point": [
{
"tick": 96960,
"left_pos": 16384,
"right_pos": 40960,
"tick": 96960,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 97920,
"left_pos": 36864,
"right_pos": 61440,
"tick": 97920,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 98880,
"left_pos": 16384,
"right_pos": 40960,
"tick": 98880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2434,30 +2434,30 @@
},
"long_point": [
{
"left_pos": 0,
"right_pos": 24576,
"tick": 100800,
"left_pos": 0,
"right_pos": 24576,
"left_end_pos": null,
"right_end_pos": null
},
{
"left_pos": 24576,
"right_pos": 49152,
"tick": 101760,
"left_pos": 24576,
"right_pos": 49152,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 102720,
"left_pos": 0,
"right_pos": 24576,
"tick": 102720,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 103680,
"left_pos": 24576,
"right_pos": 49152,
"tick": 103680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2523,16 +2523,16 @@
},
"long_point": [
{
"tick": 104160,
"left_pos": 40960,
"right_pos": 65536,
"tick": 104160,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 104640,
"left_pos": 28672,
"right_pos": 53248,
"tick": 104640,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2553,16 +2553,16 @@
},
"long_point": [
{
"tick": 105120,
"left_pos": 40960,
"right_pos": 65536,
"tick": 105120,
"left_end_pos": 28672,
"right_end_pos": 53248
},
{
"tick": 105600,
"left_pos": 28672,
"right_pos": 53248,
"tick": 105600,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -2643,9 +2643,9 @@
},
"long_point": [
{
"tick": 109440,
"left_pos": 16384,
"right_pos": 40960,
"tick": 109440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2741,16 +2741,16 @@
},
"long_point": [
{
"tick": 111840,
"left_pos": 0,
"right_pos": 24576,
"tick": 111840,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 112320,
"left_pos": 12288,
"right_pos": 36864,
"tick": 112320,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -2771,16 +2771,16 @@
},
"long_point": [
{
"tick": 112800,
"left_pos": 0,
"right_pos": 24576,
"tick": 112800,
"left_end_pos": 12288,
"right_end_pos": 36864
},
{
"tick": 113280,
"left_pos": 12288,
"right_pos": 36864,
"tick": 113280,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -2861,30 +2861,30 @@
},
"long_point": [
{
"tick": 116160,
"left_pos": 24576,
"right_pos": 49152,
"tick": 116160,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 117120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 117120,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 118080,
"left_pos": 24576,
"right_pos": 49152,
"tick": 118080,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 119040,
"left_pos": 0,
"right_pos": 24576,
"tick": 119040,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
@@ -169,9 +169,9 @@
},
"long_point": [
{
"tick": 6240,
"left_pos": 12288,
"right_pos": 36864,
"tick": 6240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -192,9 +192,9 @@
},
"long_point": [
{
"tick": 7200,
"left_pos": 28672,
"right_pos": 53248,
"tick": 7200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -245,9 +245,9 @@
},
"long_point": [
{
"tick": 10080,
"left_pos": 32768,
"right_pos": 57344,
"tick": 10080,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -268,9 +268,9 @@
},
"long_point": [
{
"tick": 11040,
"left_pos": 32768,
"right_pos": 57344,
"tick": 11040,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -291,9 +291,9 @@
},
"long_point": [
{
"tick": 12480,
"left_pos": 32768,
"right_pos": 57344,
"tick": 12480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -314,9 +314,9 @@
},
"long_point": [
{
"tick": 13920,
"left_pos": 8192,
"right_pos": 32768,
"tick": 13920,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -337,9 +337,9 @@
},
"long_point": [
{
"tick": 14880,
"left_pos": 8192,
"right_pos": 32768,
"tick": 14880,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -360,9 +360,9 @@
},
"long_point": [
{
"tick": 16320,
"left_pos": 8192,
"right_pos": 32768,
"tick": 16320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -383,9 +383,9 @@
},
"long_point": [
{
"tick": 18240,
"left_pos": 36864,
"right_pos": 61440,
"tick": 18240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -406,9 +406,9 @@
},
"long_point": [
{
"tick": 19200,
"left_pos": 16384,
"right_pos": 40960,
"tick": 19200,
"left_end_pos": null,
"right_end_pos": null
}
@@ -429,9 +429,9 @@
},
"long_point": [
{
"tick": 20160,
"left_pos": 28672,
"right_pos": 53248,
"tick": 20160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -452,9 +452,9 @@
},
"long_point": [
{
"tick": 21600,
"left_pos": 8192,
"right_pos": 32768,
"tick": 21600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -475,9 +475,9 @@
},
"long_point": [
{
"tick": 21600,
"left_pos": 24576,
"right_pos": 49152,
"tick": 21600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -528,9 +528,9 @@
},
"long_point": [
{
"tick": 24000,
"left_pos": 8192,
"right_pos": 32768,
"tick": 24000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -551,9 +551,9 @@
},
"long_point": [
{
"tick": 24000,
"left_pos": 32768,
"right_pos": 57344,
"tick": 24000,
"left_end_pos": null,
"right_end_pos": null
}
@@ -664,9 +664,9 @@
},
"long_point": [
{
"tick": 29280,
"left_pos": 12288,
"right_pos": 36864,
"tick": 29280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -687,9 +687,9 @@
},
"long_point": [
{
"tick": 30240,
"left_pos": 28672,
"right_pos": 53248,
"tick": 30240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -800,9 +800,9 @@
},
"long_point": [
{
"tick": 35520,
"left_pos": 28672,
"right_pos": 53248,
"tick": 35520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -838,9 +838,9 @@
},
"long_point": [
{
"tick": 37440,
"left_pos": 12288,
"right_pos": 36864,
"tick": 37440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -876,9 +876,9 @@
},
"long_point": [
{
"tick": 39360,
"left_pos": 28672,
"right_pos": 53248,
"tick": 39360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -914,9 +914,9 @@
},
"long_point": [
{
"tick": 41280,
"left_pos": 12288,
"right_pos": 36864,
"tick": 41280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1087,9 +1087,9 @@
},
"long_point": [
{
"tick": 47520,
"left_pos": 24576,
"right_pos": 49152,
"tick": 47520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1125,9 +1125,9 @@
},
"long_point": [
{
"tick": 50400,
"left_pos": 36864,
"right_pos": 61440,
"tick": 50400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1163,9 +1163,9 @@
},
"long_point": [
{
"tick": 51360,
"left_pos": 36864,
"right_pos": 61440,
"tick": 51360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1201,9 +1201,9 @@
},
"long_point": [
{
"tick": 52320,
"left_pos": 4096,
"right_pos": 28672,
"tick": 52320,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1239,9 +1239,9 @@
},
"long_point": [
{
"tick": 53280,
"left_pos": 4096,
"right_pos": 28672,
"tick": 53280,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1277,9 +1277,9 @@
},
"long_point": [
{
"tick": 54240,
"left_pos": 36864,
"right_pos": 61440,
"tick": 54240,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1300,9 +1300,9 @@
},
"long_point": [
{
"tick": 55200,
"left_pos": 4096,
"right_pos": 28672,
"tick": 55200,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1323,9 +1323,9 @@
},
"long_point": [
{
"tick": 56160,
"left_pos": 36864,
"right_pos": 61440,
"tick": 56160,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -1346,9 +1346,9 @@
},
"long_point": [
{
"tick": 57120,
"left_pos": 4096,
"right_pos": 28672,
"tick": 57120,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -1369,9 +1369,9 @@
},
"long_point": [
{
"tick": 58560,
"left_pos": 24576,
"right_pos": 49152,
"tick": 58560,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1407,9 +1407,9 @@
},
"long_point": [
{
"tick": 59520,
"left_pos": 16384,
"right_pos": 40960,
"tick": 59520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1445,9 +1445,9 @@
},
"long_point": [
{
"tick": 60480,
"left_pos": 24576,
"right_pos": 49152,
"tick": 60480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1483,9 +1483,9 @@
},
"long_point": [
{
"tick": 61440,
"left_pos": 16384,
"right_pos": 40960,
"tick": 61440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1521,9 +1521,9 @@
},
"long_point": [
{
"tick": 61920,
"left_pos": 24576,
"right_pos": 49152,
"tick": 61920,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1544,9 +1544,9 @@
},
"long_point": [
{
"tick": 62880,
"left_pos": 16384,
"right_pos": 40960,
"tick": 62880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1567,9 +1567,9 @@
},
"long_point": [
{
"tick": 63840,
"left_pos": 24576,
"right_pos": 49152,
"tick": 63840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1590,9 +1590,9 @@
},
"long_point": [
{
"tick": 64800,
"left_pos": 16384,
"right_pos": 40960,
"tick": 64800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -1973,9 +1973,9 @@
},
"long_point": [
{
"tick": 84480,
"left_pos": 24576,
"right_pos": 49152,
"tick": 84480,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2026,9 +2026,9 @@
},
"long_point": [
{
"tick": 86400,
"left_pos": 16384,
"right_pos": 40960,
"tick": 86400,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2079,9 +2079,9 @@
},
"long_point": [
{
"tick": 87840,
"left_pos": 24576,
"right_pos": 49152,
"tick": 87840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2132,16 +2132,16 @@
},
"long_point": [
{
"tick": 88800,
"left_pos": 36864,
"right_pos": 61440,
"tick": 88800,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 90240,
"left_pos": 24576,
"right_pos": 49152,
"tick": 90240,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2192,9 +2192,9 @@
},
"long_point": [
{
"tick": 92160,
"left_pos": 16384,
"right_pos": 40960,
"tick": 92160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2245,9 +2245,9 @@
},
"long_point": [
{
"tick": 94080,
"left_pos": 24576,
"right_pos": 49152,
"tick": 94080,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2433,9 +2433,9 @@
},
"long_point": [
{
"tick": 98880,
"left_pos": 16384,
"right_pos": 40960,
"tick": 98880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2486,9 +2486,9 @@
},
"long_point": [
{
"tick": 100800,
"left_pos": 24576,
"right_pos": 49152,
"tick": 100800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2644,9 +2644,9 @@
},
"long_point": [
{
"tick": 109440,
"left_pos": 16384,
"right_pos": 40960,
"tick": 109440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2697,9 +2697,9 @@
},
"long_point": [
{
"tick": 111360,
"left_pos": 24576,
"right_pos": 49152,
"tick": 111360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -2900,9 +2900,9 @@
},
"long_point": [
{
"tick": 117600,
"left_pos": 36864,
"right_pos": 61440,
"tick": 117600,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2923,9 +2923,9 @@
},
"long_point": [
{
"tick": 118560,
"left_pos": 36864,
"right_pos": 61440,
"tick": 118560,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -2946,9 +2946,9 @@
},
"long_point": [
{
"tick": 119520,
"left_pos": 36864,
"right_pos": 61440,
"tick": 119520,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3104,9 +3104,9 @@
},
"long_point": [
{
"tick": 125280,
"left_pos": 4096,
"right_pos": 28672,
"tick": 125280,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3127,9 +3127,9 @@
},
"long_point": [
{
"tick": 126240,
"left_pos": 4096,
"right_pos": 28672,
"tick": 126240,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3150,9 +3150,9 @@
},
"long_point": [
{
"tick": 126960,
"left_pos": 4096,
"right_pos": 28672,
"tick": 126960,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3173,9 +3173,9 @@
},
"long_point": [
{
"tick": 127440,
"left_pos": 4096,
"right_pos": 28672,
"tick": 127440,
"left_end_pos": 12288,
"right_end_pos": 36864
}
@@ -3241,16 +3241,16 @@
},
"long_point": [
{
"tick": 131040,
"left_pos": 24576,
"right_pos": 49152,
"tick": 131040,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 131520,
"left_pos": 32768,
"right_pos": 57344,
"tick": 131520,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3286,16 +3286,16 @@
},
"long_point": [
{
"tick": 132960,
"left_pos": 16384,
"right_pos": 40960,
"tick": 132960,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 133440,
"left_pos": 8192,
"right_pos": 32768,
"tick": 133440,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3331,16 +3331,16 @@
},
"long_point": [
{
"tick": 134880,
"left_pos": 4096,
"right_pos": 28672,
"tick": 134880,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 135360,
"left_pos": 12288,
"right_pos": 36864,
"tick": 135360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3361,16 +3361,16 @@
},
"long_point": [
{
"tick": 134880,
"left_pos": 36864,
"right_pos": 61440,
"tick": 134880,
"left_end_pos": null,
"right_end_pos": null
},
{
"tick": 135360,
"left_pos": 28672,
"right_pos": 53248,
"tick": 135360,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3421,9 +3421,9 @@
},
"long_point": [
{
"tick": 138720,
"left_pos": 32768,
"right_pos": 57344,
"tick": 138720,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -3444,9 +3444,9 @@
},
"long_point": [
{
"tick": 139680,
"left_pos": 32768,
"right_pos": 57344,
"tick": 139680,
"left_end_pos": 24576,
"right_end_pos": 49152
}
@@ -3467,9 +3467,9 @@
},
"long_point": [
{
"tick": 141120,
"left_pos": 16384,
"right_pos": 40960,
"tick": 141120,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3490,9 +3490,9 @@
},
"long_point": [
{
"tick": 142560,
"left_pos": 8192,
"right_pos": 32768,
"tick": 142560,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -3513,9 +3513,9 @@
},
"long_point": [
{
"tick": 143520,
"left_pos": 8192,
"right_pos": 32768,
"tick": 143520,
"left_end_pos": 16384,
"right_end_pos": 40960
}
@@ -3536,9 +3536,9 @@
},
"long_point": [
{
"tick": 144960,
"left_pos": 24576,
"right_pos": 49152,
"tick": 144960,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3559,9 +3559,9 @@
},
"long_point": [
{
"tick": 146880,
"left_pos": 32768,
"right_pos": 57344,
"tick": 146880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3597,9 +3597,9 @@
},
"long_point": [
{
"tick": 147840,
"left_pos": 8192,
"right_pos": 32768,
"tick": 147840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3635,9 +3635,9 @@
},
"long_point": [
{
"tick": 148800,
"left_pos": 24576,
"right_pos": 49152,
"tick": 148800,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3673,9 +3673,9 @@
},
"long_point": [
{
"tick": 149760,
"left_pos": 16384,
"right_pos": 40960,
"tick": 149760,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3726,9 +3726,9 @@
},
"long_point": [
{
"tick": 151680,
"left_pos": 32768,
"right_pos": 57344,
"tick": 151680,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3764,9 +3764,9 @@
},
"long_point": [
{
"tick": 153600,
"left_pos": 4096,
"right_pos": 28672,
"tick": 153600,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3802,9 +3802,9 @@
},
"long_point": [
{
"tick": 155040,
"left_pos": 36864,
"right_pos": 61440,
"tick": 155040,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3825,9 +3825,9 @@
},
"long_point": [
{
"tick": 156000,
"left_pos": 36864,
"right_pos": 61440,
"tick": 156000,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3848,9 +3848,9 @@
},
"long_point": [
{
"tick": 156720,
"left_pos": 36864,
"right_pos": 61440,
"tick": 156720,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3871,9 +3871,9 @@
},
"long_point": [
{
"tick": 157200,
"left_pos": 36864,
"right_pos": 61440,
"tick": 157200,
"left_end_pos": 28672,
"right_end_pos": 53248
}
@@ -3924,9 +3924,9 @@
},
"long_point": [
{
"tick": 158880,
"left_pos": 16384,
"right_pos": 40960,
"tick": 158880,
"left_end_pos": null,
"right_end_pos": null
}
@@ -3962,9 +3962,9 @@
},
"long_point": [
{
"tick": 159840,
"left_pos": 24576,
"right_pos": 49152,
"tick": 159840,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4030,9 +4030,9 @@
},
"long_point": [
{
"tick": 164160,
"left_pos": 32768,
"right_pos": 65536,
"tick": 164160,
"left_end_pos": null,
"right_end_pos": null
}
@@ -4053,9 +4053,9 @@
},
"long_point": [
{
"tick": 164160,
"left_pos": 0,
"right_pos": 32768,
"tick": 164160,
"left_end_pos": null,
"right_end_pos": null
}
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff

Some files were not shown because too many files have changed in this diff Show More